@coursebuilder/core
Version:
Core package for Course Builder
22 lines (19 loc) • 579 B
text/typescript
import { z } from 'zod';
declare const MerchantSessionSchema: z.ZodObject<{
id: z.ZodString;
organizationId: z.ZodNullable<z.ZodString>;
identifier: z.ZodString;
merchantAccountId: z.ZodString;
}, "strip", z.ZodTypeAny, {
id: string;
organizationId: string | null;
identifier: string;
merchantAccountId: string;
}, {
id: string;
organizationId: string | null;
identifier: string;
merchantAccountId: string;
}>;
type MerchantSession = z.infer<typeof MerchantSessionSchema>;
export { type MerchantSession, MerchantSessionSchema };