62 lines
3.8 KiB
TypeScript
62 lines
3.8 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const ClaimCreateWithoutStaffInputObjectSchema: z.ZodType<Prisma.ClaimCreateWithoutStaffInput>;
|
|
export declare const ClaimCreateWithoutStaffInputObjectZodSchema: 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>>>;
|
|
serviceLines: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ServiceLineCreateNestedManyWithoutClaimInput, z.ZodTypeDef, Prisma.ServiceLineCreateNestedManyWithoutClaimInput>>>;
|
|
claimFiles: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ClaimFileCreateNestedManyWithoutClaimInput, z.ZodTypeDef, Prisma.ClaimFileCreateNestedManyWithoutClaimInput>>>;
|
|
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;
|
|
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;
|
|
claimFiles?: Prisma.ClaimFileCreateNestedManyWithoutClaimInput | 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;
|
|
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;
|
|
claimFiles?: Prisma.ClaimFileCreateNestedManyWithoutClaimInput | undefined;
|
|
}>;
|
|
//# sourceMappingURL=ClaimCreateWithoutStaffInput.schema.d.ts.map
|