Files
cfw-autumn/shared/internal/checkout/getCheckoutResponse.ts
2026-03-12 20:52:17 +00:00

9 lines
272 B
TypeScript

import { z } from "zod/v4";
import { CheckoutResponseBaseSchema } from "./checkoutResponseCommon";
export const GetCheckoutResponseSchema = z.object({
...CheckoutResponseBaseSchema.shape,
});
export type GetCheckoutResponse = z.infer<typeof GetCheckoutResponseSchema>;