13 lines
570 B
TypeScript
13 lines
570 B
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
|
|
|
|
const makeSchema = () => z.object({
|
|
id: z.number().int().optional(),
|
|
npiNumber: z.string(),
|
|
providerName: z.string(),
|
|
createdAt: z.coerce.date().optional()
|
|
}).strict();
|
|
export const NpiProviderUncheckedCreateWithoutUserInputObjectSchema: z.ZodType<Prisma.NpiProviderUncheckedCreateWithoutUserInput> = makeSchema() as unknown as z.ZodType<Prisma.NpiProviderUncheckedCreateWithoutUserInput>;
|
|
export const NpiProviderUncheckedCreateWithoutUserInputObjectZodSchema = makeSchema();
|