- Adjusted .prettierrc to ensure consistent formatting with a newline at the end of the file. - Reformatted eslint.config.mjs for improved readability by aligning array elements. - Updated pnpm-lock.yaml to use single quotes for consistency across dependencies. - Simplified worktree setup in .cursor/worktrees.json for cleaner configuration. - Enhanced documentation in .cursor/plans to clarify architecture refactoring. - Refactored various service files for improved readability and maintainability, including rate-limiting and auth services. - Updated imports and exports across multiple files for consistency and clarity. - Improved error handling and logging in service methods to enhance debugging capabilities. - Streamlined utility functions for better performance and maintainability across the domain packages.
13 lines
388 B
TypeScript
13 lines
388 B
TypeScript
/**
|
|
* Orders Domain - Checkout Types
|
|
*
|
|
* Minimal type definitions for checkout flow.
|
|
* Frontend handles its own URL param serialization.
|
|
*/
|
|
|
|
// This file is intentionally minimal after cleanup.
|
|
// The build/derive/normalize functions were removed as they were
|
|
// unnecessary abstractions that should be handled by the frontend.
|
|
//
|
|
// See CLEANUP_PROPOSAL_NORMALIZERS.md for details.
|