2025-10-03 14:26:55 +09:00
|
|
|
/**
|
|
|
|
|
* Payments Domain
|
2025-12-25 17:30:02 +09:00
|
|
|
*
|
2025-12-26 17:27:22 +09:00
|
|
|
* Exports payments contracts + schemas.
|
|
|
|
|
*
|
|
|
|
|
* Provider adapters (BFF-only) live under: `@customer-portal/domain/payments/providers`.
|
2025-12-25 17:30:02 +09:00
|
|
|
*
|
2025-10-08 10:33:33 +09:00
|
|
|
* Types are derived from Zod schemas (Schema-First Approach)
|
2025-10-03 14:26:55 +09:00
|
|
|
*/
|
|
|
|
|
|
2025-10-08 10:33:33 +09:00
|
|
|
// Constants
|
2025-12-26 13:04:15 +09:00
|
|
|
export { PAYMENT_METHOD_TYPE, PAYMENT_GATEWAY_TYPE } from "./contract.js";
|
2025-10-08 10:33:33 +09:00
|
|
|
|
|
|
|
|
// Schemas (includes derived types)
|
2025-12-10 15:22:10 +09:00
|
|
|
export * from "./schema.js";
|