2025-12-17 14:07:22 +09:00
|
|
|
/**
|
|
|
|
|
* Checkout Domain
|
|
|
|
|
*
|
|
|
|
|
* Types and schemas for unified checkout flow.
|
|
|
|
|
*/
|
|
|
|
|
|
2026-01-13 14:25:14 +09:00
|
|
|
// Contracts (constants, helpers)
|
|
|
|
|
export {
|
|
|
|
|
ORDER_TYPE,
|
|
|
|
|
CHECKOUT_ORDER_TYPE,
|
|
|
|
|
type OrderTypeValue,
|
|
|
|
|
type CheckoutOrderTypeValue,
|
|
|
|
|
} from "./contract.js";
|
|
|
|
|
|
|
|
|
|
// Schemas and schema-derived types
|
|
|
|
|
export {
|
|
|
|
|
checkoutOrderTypeSchema,
|
|
|
|
|
priceBreakdownItemSchema,
|
|
|
|
|
cartItemSchema,
|
|
|
|
|
type OrderType,
|
|
|
|
|
type PriceBreakdownItem,
|
|
|
|
|
type CartItem,
|
|
|
|
|
} from "./schema.js";
|