UNPKG

@coursebuilder/core

Version:

Core package for Course Builder

22 lines (19 loc) 579 B
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; merchantAccountId: string; identifier: string; }, { id: string; organizationId: string | null; merchantAccountId: string; identifier: string; }>; type MerchantSession = z.infer<typeof MerchantSessionSchema>; export { type MerchantSession, MerchantSessionSchema };