20 lines
721 B
TypeScript
20 lines
721 B
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const InsuranceCredentialCreateManyUserInputObjectSchema: z.ZodType<Prisma.InsuranceCredentialCreateManyUserInput>;
|
|
export declare const InsuranceCredentialCreateManyUserInputObjectZodSchema: z.ZodObject<{
|
|
id: z.ZodOptional<z.ZodNumber>;
|
|
siteKey: z.ZodString;
|
|
username: z.ZodString;
|
|
password: z.ZodString;
|
|
}, "strict", z.ZodTypeAny, {
|
|
siteKey: string;
|
|
username: string;
|
|
password: string;
|
|
id?: number | undefined;
|
|
}, {
|
|
siteKey: string;
|
|
username: string;
|
|
password: string;
|
|
id?: number | undefined;
|
|
}>;
|
|
//# sourceMappingURL=InsuranceCredentialCreateManyUserInput.schema.d.ts.map
|