Files
DentalManagementMHAprilgg/packages/db/shared/schemas/objects/InsuranceCredentialCreateInput.schema.d.ts
2026-04-04 22:13:55 -04:00

20 lines
901 B
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const InsuranceCredentialCreateInputObjectSchema: z.ZodType<Prisma.InsuranceCredentialCreateInput>;
export declare const InsuranceCredentialCreateInputObjectZodSchema: z.ZodObject<{
siteKey: z.ZodString;
username: z.ZodString;
password: z.ZodString;
user: z.ZodLazy<z.ZodType<Prisma.UserCreateNestedOneWithoutInsuranceCredentialsInput, z.ZodTypeDef, Prisma.UserCreateNestedOneWithoutInsuranceCredentialsInput>>;
}, "strict", z.ZodTypeAny, {
user: Prisma.UserCreateNestedOneWithoutInsuranceCredentialsInput;
siteKey: string;
username: string;
password: string;
}, {
user: Prisma.UserCreateNestedOneWithoutInsuranceCredentialsInput;
siteKey: string;
username: string;
password: string;
}>;
//# sourceMappingURL=InsuranceCredentialCreateInput.schema.d.ts.map