@coursebuilder/core
Version:
Core package for Course Builder
28 lines (25 loc) • 720 B
TypeScript
import { z } from 'zod';
declare const merchantCustomerSchema: z.ZodObject<{
id: z.ZodString;
userId: z.ZodString;
merchantAccountId: z.ZodString;
identifier: z.ZodString;
createdAt: z.ZodNullable<z.ZodDate>;
status: z.ZodDefault<z.ZodNumber>;
}, "strip", z.ZodTypeAny, {
id: string;
createdAt: Date | null;
status: number;
identifier: string;
merchantAccountId: string;
userId: string;
}, {
id: string;
createdAt: Date | null;
identifier: string;
merchantAccountId: string;
userId: string;
status?: number | undefined;
}>;
type MerchantCustomer = z.infer<typeof merchantCustomerSchema>;
export { type MerchantCustomer, merchantCustomerSchema };