- Removed the domain mappings module, consolidating related types and schemas into the id-mappings feature. - Updated import paths across the BFF to reflect the new structure, ensuring compliance with import hygiene rules. - Cleaned up unused files and optimized the codebase for better maintainability and clarity.
17 lines
386 B
TypeScript
17 lines
386 B
TypeScript
/**
|
|
* Billing Domain
|
|
*
|
|
* Exports billing contracts + schemas.
|
|
*
|
|
* Provider adapters (BFF-only) live under: `@customer-portal/domain/billing/providers`.
|
|
*
|
|
* Types are derived from Zod schemas (Schema-First Approach)
|
|
*/
|
|
|
|
// Constants
|
|
export { INVOICE_STATUS } from "./contract.js";
|
|
export * from "./constants.js";
|
|
|
|
// Schemas (includes derived types)
|
|
export * from "./schema.js";
|