- Integrated CheckoutRegistrationModule into the application for handling checkout-related functionalities. - Updated router configuration to include the new CheckoutRegistrationModule for API routing. - Enhanced SalesforceAccountService with methods for account creation and email lookup to support checkout registration. - Implemented public contact form functionality in SupportController, allowing unauthenticated users to submit inquiries. - Added rate limiting to the public contact form to prevent spam submissions. - Updated CatalogController and CheckoutController to allow public access for browsing and cart validation without authentication.
8 lines
108 B
TypeScript
8 lines
108 B
TypeScript
/**
|
|
* Checkout Domain
|
|
*
|
|
* Types and schemas for unified checkout flow.
|
|
*/
|
|
|
|
export * from "./schema.js";
|