initial commit
This commit is contained in:
62
packages/db/shared/schemas/objects/PatientCreateManyUserInput.schema.d.ts
vendored
Normal file
62
packages/db/shared/schemas/objects/PatientCreateManyUserInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,62 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const PatientCreateManyUserInputObjectSchema: z.ZodType<Prisma.PatientCreateManyUserInput>;
|
||||
export declare const PatientCreateManyUserInputObjectZodSchema: z.ZodObject<{
|
||||
id: z.ZodOptional<z.ZodNumber>;
|
||||
firstName: z.ZodString;
|
||||
lastName: z.ZodString;
|
||||
dateOfBirth: z.ZodDate;
|
||||
gender: z.ZodString;
|
||||
phone: z.ZodString;
|
||||
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
||||
address: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
||||
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
||||
zipCode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
||||
insuranceProvider: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
||||
insuranceId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
||||
groupNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
||||
policyHolder: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
||||
allergies: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
||||
medicalConditions: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
||||
status: z.ZodOptional<z.ZodEnum<["ACTIVE", "INACTIVE", "UNKNOWN"]>>;
|
||||
createdAt: z.ZodOptional<z.ZodDate>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
phone: string;
|
||||
dateOfBirth: Date;
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
gender: string;
|
||||
status?: "ACTIVE" | "INACTIVE" | "UNKNOWN" | undefined;
|
||||
createdAt?: Date | undefined;
|
||||
id?: number | undefined;
|
||||
email?: string | null | undefined;
|
||||
insuranceProvider?: string | null | undefined;
|
||||
address?: string | null | undefined;
|
||||
city?: string | null | undefined;
|
||||
zipCode?: string | null | undefined;
|
||||
insuranceId?: string | null | undefined;
|
||||
groupNumber?: string | null | undefined;
|
||||
policyHolder?: string | null | undefined;
|
||||
allergies?: string | null | undefined;
|
||||
medicalConditions?: string | null | undefined;
|
||||
}, {
|
||||
phone: string;
|
||||
dateOfBirth: Date;
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
gender: string;
|
||||
status?: "ACTIVE" | "INACTIVE" | "UNKNOWN" | undefined;
|
||||
createdAt?: Date | undefined;
|
||||
id?: number | undefined;
|
||||
email?: string | null | undefined;
|
||||
insuranceProvider?: string | null | undefined;
|
||||
address?: string | null | undefined;
|
||||
city?: string | null | undefined;
|
||||
zipCode?: string | null | undefined;
|
||||
insuranceId?: string | null | undefined;
|
||||
groupNumber?: string | null | undefined;
|
||||
policyHolder?: string | null | undefined;
|
||||
allergies?: string | null | undefined;
|
||||
medicalConditions?: string | null | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=PatientCreateManyUserInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user