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

13 lines
579 B
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
const makeSchema = () => z.object({
id: z.number().int().optional(),
siteKey: z.string(),
username: z.string(),
password: z.string()
}).strict();
export const InsuranceCredentialUncheckedCreateWithoutUserInputObjectSchema: z.ZodType<Prisma.InsuranceCredentialUncheckedCreateWithoutUserInput> = makeSchema() as unknown as z.ZodType<Prisma.InsuranceCredentialUncheckedCreateWithoutUserInput>;
export const InsuranceCredentialUncheckedCreateWithoutUserInputObjectZodSchema = makeSchema();