- 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.
22 lines
834 B
TypeScript
22 lines
834 B
TypeScript
/**
|
|
* @customer-portal/domain
|
|
* Unified domain package with Provider-Aware Structure.
|
|
*/
|
|
|
|
// Re-export domain modules
|
|
export * as Billing from "./billing/index.js";
|
|
export * as Catalog from "./catalog/index.js";
|
|
export * as Checkout from "./checkout/index.js";
|
|
export * as Common from "./common/index.js";
|
|
export * as Customer from "./customer/index.js";
|
|
export * as Dashboard from "./dashboard/index.js";
|
|
export * as Auth from "./auth/index.js";
|
|
export * as Mappings from "./mappings/index.js";
|
|
export * as Orders from "./orders/index.js";
|
|
export * as Payments from "./payments/index.js";
|
|
export * as Realtime from "./realtime/index.js";
|
|
export * as Sim from "./sim/index.js";
|
|
export * as Subscriptions from "./subscriptions/index.js";
|
|
export * as Support from "./support/index.js";
|
|
export * as Toolkit from "./toolkit/index.js";
|