2025-10-03 14:26:55 +09:00
|
|
|
/**
|
|
|
|
|
* Billing Domain
|
2025-12-25 17:30:02 +09:00
|
|
|
*
|
2025-10-08 10:33:33 +09:00
|
|
|
* Exports all billing-related contracts, schemas, and provider mappers.
|
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-10 15:22:10 +09:00
|
|
|
export { INVOICE_STATUS } from "./contract.js";
|
|
|
|
|
export * from "./constants.js";
|
2025-10-03 14:26:55 +09:00
|
|
|
|
2025-10-08 10:33:33 +09:00
|
|
|
// Schemas (includes derived types)
|
2025-12-10 15:22:10 +09:00
|
|
|
export * from "./schema.js";
|
2025-10-03 14:26:55 +09:00
|
|
|
|
2025-10-08 10:33:33 +09:00
|
|
|
// Re-export types for convenience
|
|
|
|
|
export type {
|
2025-12-26 14:53:03 +09:00
|
|
|
Currency,
|
2025-10-08 10:33:33 +09:00
|
|
|
InvoiceStatus,
|
|
|
|
|
InvoiceItem,
|
|
|
|
|
Invoice,
|
2025-12-26 13:40:10 +09:00
|
|
|
InvoiceIdParam,
|
2025-10-08 10:33:33 +09:00
|
|
|
InvoicePagination,
|
|
|
|
|
InvoiceList,
|
|
|
|
|
InvoiceSsoLink,
|
|
|
|
|
PaymentInvoiceRequest,
|
|
|
|
|
BillingSummary,
|
|
|
|
|
InvoiceQueryParams,
|
|
|
|
|
InvoiceListQuery,
|
2025-12-26 13:04:15 +09:00
|
|
|
InvoiceSsoQuery,
|
|
|
|
|
InvoicePaymentLinkQuery,
|
2025-12-25 17:30:02 +09:00
|
|
|
} from "./schema.js";
|