85 lines
2.7 KiB
TypeScript
85 lines
2.7 KiB
TypeScript
import * as z from 'zod';
|
|
export declare const ClaimInputSchema: z.ZodObject<{
|
|
id: z.ZodNumber;
|
|
patientId: z.ZodNumber;
|
|
appointmentId: z.ZodNumber;
|
|
userId: z.ZodNumber;
|
|
staffId: z.ZodNumber;
|
|
patientName: z.ZodString;
|
|
memberId: z.ZodString;
|
|
dateOfBirth: z.ZodDate;
|
|
remarks: z.ZodString;
|
|
missingTeethStatus: z.ZodEnum<["No_missing", "endentulous", "Yes_missing"]>;
|
|
missingTeeth: z.ZodNullable<z.ZodOptional<z.ZodUnknown>>;
|
|
serviceDate: z.ZodDate;
|
|
insuranceProvider: z.ZodString;
|
|
createdAt: z.ZodDate;
|
|
updatedAt: z.ZodDate;
|
|
status: z.ZodEnum<["PENDING", "APPROVED", "CANCELLED", "REVIEW", "VOID"]>;
|
|
claimNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
npiProviderId: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
patient: z.ZodUnknown;
|
|
appointment: z.ZodUnknown;
|
|
user: z.ZodNullable<z.ZodOptional<z.ZodUnknown>>;
|
|
staff: z.ZodNullable<z.ZodOptional<z.ZodUnknown>>;
|
|
npiProvider: z.ZodNullable<z.ZodOptional<z.ZodUnknown>>;
|
|
serviceLines: z.ZodArray<z.ZodUnknown, "many">;
|
|
claimFiles: z.ZodArray<z.ZodUnknown, "many">;
|
|
payment: z.ZodNullable<z.ZodOptional<z.ZodUnknown>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
status: "PENDING" | "APPROVED" | "CANCELLED" | "REVIEW" | "VOID";
|
|
id: number;
|
|
createdAt: Date;
|
|
patientId: number;
|
|
appointmentId: number;
|
|
userId: number;
|
|
staffId: number;
|
|
updatedAt: Date;
|
|
serviceLines: unknown[];
|
|
patientName: string;
|
|
memberId: string;
|
|
dateOfBirth: Date;
|
|
remarks: string;
|
|
missingTeethStatus: "No_missing" | "endentulous" | "Yes_missing";
|
|
serviceDate: Date;
|
|
insuranceProvider: string;
|
|
claimFiles: unknown[];
|
|
patient?: unknown;
|
|
npiProviderId?: number | null | undefined;
|
|
appointment?: unknown;
|
|
npiProvider?: unknown;
|
|
user?: unknown;
|
|
staff?: unknown;
|
|
payment?: unknown;
|
|
missingTeeth?: unknown;
|
|
claimNumber?: string | null | undefined;
|
|
}, {
|
|
status: "PENDING" | "APPROVED" | "CANCELLED" | "REVIEW" | "VOID";
|
|
id: number;
|
|
createdAt: Date;
|
|
patientId: number;
|
|
appointmentId: number;
|
|
userId: number;
|
|
staffId: number;
|
|
updatedAt: Date;
|
|
serviceLines: unknown[];
|
|
patientName: string;
|
|
memberId: string;
|
|
dateOfBirth: Date;
|
|
remarks: string;
|
|
missingTeethStatus: "No_missing" | "endentulous" | "Yes_missing";
|
|
serviceDate: Date;
|
|
insuranceProvider: string;
|
|
claimFiles: unknown[];
|
|
patient?: unknown;
|
|
npiProviderId?: number | null | undefined;
|
|
appointment?: unknown;
|
|
npiProvider?: unknown;
|
|
user?: unknown;
|
|
staff?: unknown;
|
|
payment?: unknown;
|
|
missingTeeth?: unknown;
|
|
claimNumber?: string | null | undefined;
|
|
}>;
|
|
export type ClaimInputType = z.infer<typeof ClaimInputSchema>;
|
|
//# sourceMappingURL=Claim.input.d.ts.map
|