barsa d9734b0c82 Enhance Signup Workflow and Update Catalog Components
- Refactored the SignupWorkflowService to throw a DomainHttpException for legacy account conflicts, improving error handling.
- Updated the SignupForm component to include initialEmail and showFooterLinks props, enhancing user experience during account creation.
- Improved the AccountStep in the SignupForm to allow users to add optional details, such as date of birth and gender, for a more personalized signup process.
- Enhanced the PasswordStep to include terms acceptance and marketing consent options, ensuring compliance and user engagement.
- Updated various catalog views to improve layout and user guidance, streamlining the onboarding process for new users.
2025-12-22 18:59:38 +09:00

23 lines
889 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 Opportunity from "./opportunity/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";