initial commit
This commit is contained in:
62
packages/db/shared/schemas/objects/ClaimCreateWithoutClaimFilesInput.schema.d.ts
vendored
Normal file
62
packages/db/shared/schemas/objects/ClaimCreateWithoutClaimFilesInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,62 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const ClaimCreateWithoutClaimFilesInputObjectSchema: z.ZodType<Prisma.ClaimCreateWithoutClaimFilesInput>;
|
||||
export declare const ClaimCreateWithoutClaimFilesInputObjectZodSchema: z.ZodObject<{
|
||||
patientName: z.ZodString;
|
||||
memberId: z.ZodString;
|
||||
dateOfBirth: z.ZodDate;
|
||||
remarks: z.ZodString;
|
||||
missingTeethStatus: z.ZodOptional<z.ZodEnum<["No_missing", "endentulous", "Yes_missing"]>>;
|
||||
missingTeeth: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["DbNull", "JsonNull"]>, z.ZodType<import("../../helpers/json-helpers").JsonValue, z.ZodTypeDef, import("../../helpers/json-helpers").JsonValue>]>>;
|
||||
serviceDate: z.ZodDate;
|
||||
insuranceProvider: z.ZodString;
|
||||
createdAt: z.ZodOptional<z.ZodDate>;
|
||||
updatedAt: z.ZodOptional<z.ZodDate>;
|
||||
status: z.ZodOptional<z.ZodEnum<["PENDING", "APPROVED", "CANCELLED", "REVIEW", "VOID"]>>;
|
||||
claimNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
||||
patient: z.ZodLazy<z.ZodType<Prisma.PatientCreateNestedOneWithoutClaimsInput, z.ZodTypeDef, Prisma.PatientCreateNestedOneWithoutClaimsInput>>;
|
||||
appointment: z.ZodLazy<z.ZodType<Prisma.AppointmentCreateNestedOneWithoutClaimsInput, z.ZodTypeDef, Prisma.AppointmentCreateNestedOneWithoutClaimsInput>>;
|
||||
user: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.UserCreateNestedOneWithoutClaimsInput, z.ZodTypeDef, Prisma.UserCreateNestedOneWithoutClaimsInput>>>;
|
||||
staff: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.StaffCreateNestedOneWithoutClaimsInput, z.ZodTypeDef, Prisma.StaffCreateNestedOneWithoutClaimsInput>>>;
|
||||
serviceLines: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ServiceLineCreateNestedManyWithoutClaimInput, z.ZodTypeDef, Prisma.ServiceLineCreateNestedManyWithoutClaimInput>>>;
|
||||
payment: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PaymentCreateNestedOneWithoutClaimInput, z.ZodTypeDef, Prisma.PaymentCreateNestedOneWithoutClaimInput>>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
patient: Prisma.PatientCreateNestedOneWithoutClaimsInput;
|
||||
appointment: Prisma.AppointmentCreateNestedOneWithoutClaimsInput;
|
||||
patientName: string;
|
||||
memberId: string;
|
||||
dateOfBirth: Date;
|
||||
remarks: string;
|
||||
serviceDate: Date;
|
||||
insuranceProvider: string;
|
||||
status?: "PENDING" | "APPROVED" | "CANCELLED" | "REVIEW" | "VOID" | undefined;
|
||||
createdAt?: Date | undefined;
|
||||
user?: Prisma.UserCreateNestedOneWithoutClaimsInput | undefined;
|
||||
staff?: Prisma.StaffCreateNestedOneWithoutClaimsInput | undefined;
|
||||
payment?: Prisma.PaymentCreateNestedOneWithoutClaimInput | undefined;
|
||||
updatedAt?: Date | undefined;
|
||||
serviceLines?: Prisma.ServiceLineCreateNestedManyWithoutClaimInput | undefined;
|
||||
missingTeethStatus?: "No_missing" | "endentulous" | "Yes_missing" | undefined;
|
||||
missingTeeth?: import("../../helpers/json-helpers").JsonValue | undefined;
|
||||
claimNumber?: string | null | undefined;
|
||||
}, {
|
||||
patient: Prisma.PatientCreateNestedOneWithoutClaimsInput;
|
||||
appointment: Prisma.AppointmentCreateNestedOneWithoutClaimsInput;
|
||||
patientName: string;
|
||||
memberId: string;
|
||||
dateOfBirth: Date;
|
||||
remarks: string;
|
||||
serviceDate: Date;
|
||||
insuranceProvider: string;
|
||||
status?: "PENDING" | "APPROVED" | "CANCELLED" | "REVIEW" | "VOID" | undefined;
|
||||
createdAt?: Date | undefined;
|
||||
user?: Prisma.UserCreateNestedOneWithoutClaimsInput | undefined;
|
||||
staff?: Prisma.StaffCreateNestedOneWithoutClaimsInput | undefined;
|
||||
payment?: Prisma.PaymentCreateNestedOneWithoutClaimInput | undefined;
|
||||
updatedAt?: Date | undefined;
|
||||
serviceLines?: Prisma.ServiceLineCreateNestedManyWithoutClaimInput | undefined;
|
||||
missingTeethStatus?: "No_missing" | "endentulous" | "Yes_missing" | undefined;
|
||||
missingTeeth?: import("../../helpers/json-helpers").JsonValue | undefined;
|
||||
claimNumber?: string | null | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=ClaimCreateWithoutClaimFilesInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user