9 lines
272 B
TypeScript
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>;
|