Files
DentalManagementMHAprilgg/packages/db/shared/schemas/findFirstClaim.schema.d.ts
2026-04-04 22:13:55 -04:00

112 lines
6.9 KiB
TypeScript

import type { Prisma } from '../../generated/prisma';
import * as z from 'zod';
export declare const ClaimFindFirstSelectSchema: z.ZodType<Prisma.ClaimSelect>;
export declare const ClaimFindFirstSelectZodSchema: z.ZodObject<{
id: z.ZodOptional<z.ZodBoolean>;
patientId: z.ZodOptional<z.ZodBoolean>;
appointmentId: z.ZodOptional<z.ZodBoolean>;
userId: z.ZodOptional<z.ZodBoolean>;
staffId: z.ZodOptional<z.ZodBoolean>;
patientName: z.ZodOptional<z.ZodBoolean>;
memberId: z.ZodOptional<z.ZodBoolean>;
dateOfBirth: z.ZodOptional<z.ZodBoolean>;
remarks: z.ZodOptional<z.ZodBoolean>;
missingTeethStatus: z.ZodOptional<z.ZodBoolean>;
missingTeeth: z.ZodOptional<z.ZodBoolean>;
serviceDate: z.ZodOptional<z.ZodBoolean>;
insuranceProvider: z.ZodOptional<z.ZodBoolean>;
createdAt: z.ZodOptional<z.ZodBoolean>;
updatedAt: z.ZodOptional<z.ZodBoolean>;
status: z.ZodOptional<z.ZodBoolean>;
claimNumber: z.ZodOptional<z.ZodBoolean>;
patient: z.ZodOptional<z.ZodBoolean>;
appointment: z.ZodOptional<z.ZodBoolean>;
user: z.ZodOptional<z.ZodBoolean>;
staff: z.ZodOptional<z.ZodBoolean>;
serviceLines: z.ZodOptional<z.ZodBoolean>;
claimFiles: z.ZodOptional<z.ZodBoolean>;
payment: z.ZodOptional<z.ZodBoolean>;
_count: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
status?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
user?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | undefined;
appointmentId?: boolean | undefined;
appointment?: boolean | undefined;
staff?: boolean | undefined;
staffId?: boolean | undefined;
payment?: boolean | undefined;
updatedAt?: boolean | undefined;
serviceLines?: boolean | undefined;
patientName?: boolean | undefined;
memberId?: boolean | undefined;
dateOfBirth?: boolean | undefined;
remarks?: boolean | undefined;
missingTeethStatus?: boolean | undefined;
missingTeeth?: boolean | undefined;
serviceDate?: boolean | undefined;
insuranceProvider?: boolean | undefined;
claimNumber?: boolean | undefined;
claimFiles?: boolean | undefined;
_count?: boolean | undefined;
}, {
status?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
user?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | undefined;
appointmentId?: boolean | undefined;
appointment?: boolean | undefined;
staff?: boolean | undefined;
staffId?: boolean | undefined;
payment?: boolean | undefined;
updatedAt?: boolean | undefined;
serviceLines?: boolean | undefined;
patientName?: boolean | undefined;
memberId?: boolean | undefined;
dateOfBirth?: boolean | undefined;
remarks?: boolean | undefined;
missingTeethStatus?: boolean | undefined;
missingTeeth?: boolean | undefined;
serviceDate?: boolean | undefined;
insuranceProvider?: boolean | undefined;
claimNumber?: boolean | undefined;
claimFiles?: boolean | undefined;
_count?: boolean | undefined;
}>;
export declare const ClaimFindFirstSchema: z.ZodType<Prisma.ClaimFindFirstArgs>;
export declare const ClaimFindFirstZodSchema: z.ZodObject<{
select: z.ZodOptional<z.ZodType<Prisma.ClaimSelect<import("../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.ClaimSelect<import("../../generated/prisma/runtime/client").DefaultArgs>>>;
include: z.ZodLazy<z.ZodOptional<z.ZodType<Prisma.ClaimInclude<import("../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.ClaimInclude<import("../../generated/prisma/runtime/client").DefaultArgs>>>>;
orderBy: z.ZodOptional<z.ZodUnion<[z.ZodType<Prisma.ClaimOrderByWithRelationInput, z.ZodTypeDef, Prisma.ClaimOrderByWithRelationInput>, z.ZodArray<z.ZodType<Prisma.ClaimOrderByWithRelationInput, z.ZodTypeDef, Prisma.ClaimOrderByWithRelationInput>, "many">]>>;
where: z.ZodOptional<z.ZodType<Prisma.ClaimWhereInput, z.ZodTypeDef, Prisma.ClaimWhereInput>>;
cursor: z.ZodOptional<z.ZodType<Prisma.ClaimWhereUniqueInput, z.ZodTypeDef, Prisma.ClaimWhereUniqueInput>>;
take: z.ZodOptional<z.ZodNumber>;
skip: z.ZodOptional<z.ZodNumber>;
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "patientId", "appointmentId", "userId", "staffId", "patientName", "memberId", "dateOfBirth", "remarks", "missingTeethStatus", "missingTeeth", "serviceDate", "insuranceProvider", "createdAt", "updatedAt", "status", "claimNumber"]>, z.ZodArray<z.ZodEnum<["id", "patientId", "appointmentId", "userId", "staffId", "patientName", "memberId", "dateOfBirth", "remarks", "missingTeethStatus", "missingTeeth", "serviceDate", "insuranceProvider", "createdAt", "updatedAt", "status", "claimNumber"]>, "many">]>>;
}, "strict", z.ZodTypeAny, {
where?: Prisma.ClaimWhereInput | undefined;
include?: Prisma.ClaimInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
select?: Prisma.ClaimSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
orderBy?: Prisma.ClaimOrderByWithRelationInput | Prisma.ClaimOrderByWithRelationInput[] | undefined;
cursor?: Prisma.ClaimWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "status" | "createdAt" | "id" | "userId" | "patientId" | "appointmentId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber" | ("status" | "createdAt" | "id" | "userId" | "patientId" | "appointmentId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber")[] | undefined;
}, {
where?: Prisma.ClaimWhereInput | undefined;
include?: Prisma.ClaimInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
select?: Prisma.ClaimSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
orderBy?: Prisma.ClaimOrderByWithRelationInput | Prisma.ClaimOrderByWithRelationInput[] | undefined;
cursor?: Prisma.ClaimWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "status" | "createdAt" | "id" | "userId" | "patientId" | "appointmentId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber" | ("status" | "createdAt" | "id" | "userId" | "patientId" | "appointmentId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber")[] | undefined;
}>;
//# sourceMappingURL=findFirstClaim.schema.d.ts.map