16 lines
384 B
TypeScript
Raw Normal View History

/**
* Payments Domain
*
* Exports payments contracts + schemas.
*
* Provider adapters (BFF-only) live under: `@customer-portal/domain/payments/providers`.
*
* Types are derived from Zod schemas (Schema-First Approach)
*/
// Constants
export { PAYMENT_METHOD_TYPE, PAYMENT_GATEWAY_TYPE } from "./contract.js";
// Schemas (includes derived types)
export * from "./schema.js";