- Added Cache-Control headers to various endpoints in CatalogController and SubscriptionsController to improve caching behavior and reduce server load. - Updated response structures to ensure consistent caching strategies across different API endpoints. - Improved overall performance by implementing throttling and caching mechanisms for better request management.
13 lines
390 B
TypeScript
13 lines
390 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.
|