fix: fix remote browser socket connection and related updates

This commit is contained in:
Gitead
2026-04-30 11:52:58 -04:00
parent 441cfcc8e3
commit d8f852741a
959 changed files with 13338 additions and 2208 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@@ -167,6 +167,14 @@ exports.Prisma.AppointmentScalarFieldEnum = {
eligibilityStatus: 'eligibilityStatus'
};
exports.Prisma.AppointmentFileScalarFieldEnum = {
id: 'id',
appointmentId: 'appointmentId',
filename: 'filename',
mimeType: 'mimeType',
filePath: 'filePath'
};
exports.Prisma.StaffScalarFieldEnum = {
id: 'id',
userId: 'userId',
@@ -509,6 +517,7 @@ exports.Prisma.ModelName = {
User: 'User',
Patient: 'Patient',
Appointment: 'Appointment',
AppointmentFile: 'AppointmentFile',
Staff: 'Staff',
NpiProvider: 'NpiProvider',
AppointmentProcedure: 'AppointmentProcedure',

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@@ -1,5 +1,5 @@
{
"name": "prisma-client-03b178e8b877a1598bedb0c5599737211871b1d3d6ccc3ed144f5a7924b0deb0",
"name": "prisma-client-5a1566e0d7b9ed84a3b9f5a3202c04d4a144585980b9909674457730d45add6e",
"main": "index.js",
"types": "index.d.ts",
"browser": "default.js",

View File

@@ -101,11 +101,24 @@ model Appointment {
staff Staff? @relation(fields: [staffId], references: [id])
procedures AppointmentProcedure[]
claims Claim[]
files AppointmentFile[]
@@index([patientId])
@@index([date])
}
model AppointmentFile {
id Int @id @default(autoincrement())
appointmentId Int
filename String
mimeType String?
filePath String?
appointment Appointment @relation(fields: [appointmentId], references: [id], onDelete: Cascade)
@@index([appointmentId])
}
model Staff {
id Int @id @default(autoincrement())
userId Int

View File

@@ -101,11 +101,24 @@ model Appointment {
staff Staff? @relation(fields: [staffId], references: [id])
procedures AppointmentProcedure[]
claims Claim[]
files AppointmentFile[]
@@index([patientId])
@@index([date])
}
model AppointmentFile {
id Int @id @default(autoincrement())
appointmentId Int
filename String
mimeType String?
filePath String?
appointment Appointment @relation(fields: [appointmentId], references: [id], onDelete: Cascade)
@@index([appointmentId])
}
model Staff {
id Int @id @default(autoincrement())
userId Int

View File

@@ -1,13 +1,14 @@
{
"version": "1.0",
"generatorVersion": "1.0.0",
"generatedAt": "2026-04-26T03:55:08.606Z",
"generatedAt": "2026-04-29T04:19:07.524Z",
"outputPath": "/home/ee/Desktop/DentalManagementMH04/packages/db/shared",
"files": [
"schemas/enums/TransactionIsolationLevel.schema.ts",
"schemas/enums/UserScalarFieldEnum.schema.ts",
"schemas/enums/PatientScalarFieldEnum.schema.ts",
"schemas/enums/AppointmentScalarFieldEnum.schema.ts",
"schemas/enums/AppointmentFileScalarFieldEnum.schema.ts",
"schemas/enums/StaffScalarFieldEnum.schema.ts",
"schemas/enums/NpiProviderScalarFieldEnum.schema.ts",
"schemas/enums/AppointmentProcedureScalarFieldEnum.schema.ts",
@@ -60,6 +61,11 @@
"schemas/objects/AppointmentWhereUniqueInput.schema.ts",
"schemas/objects/AppointmentOrderByWithAggregationInput.schema.ts",
"schemas/objects/AppointmentScalarWhereWithAggregatesInput.schema.ts",
"schemas/objects/AppointmentFileWhereInput.schema.ts",
"schemas/objects/AppointmentFileOrderByWithRelationInput.schema.ts",
"schemas/objects/AppointmentFileWhereUniqueInput.schema.ts",
"schemas/objects/AppointmentFileOrderByWithAggregationInput.schema.ts",
"schemas/objects/AppointmentFileScalarWhereWithAggregatesInput.schema.ts",
"schemas/objects/StaffWhereInput.schema.ts",
"schemas/objects/StaffOrderByWithRelationInput.schema.ts",
"schemas/objects/StaffWhereUniqueInput.schema.ts",
@@ -181,6 +187,13 @@
"schemas/objects/AppointmentCreateManyInput.schema.ts",
"schemas/objects/AppointmentUpdateManyMutationInput.schema.ts",
"schemas/objects/AppointmentUncheckedUpdateManyInput.schema.ts",
"schemas/objects/AppointmentFileCreateInput.schema.ts",
"schemas/objects/AppointmentFileUncheckedCreateInput.schema.ts",
"schemas/objects/AppointmentFileUpdateInput.schema.ts",
"schemas/objects/AppointmentFileUncheckedUpdateInput.schema.ts",
"schemas/objects/AppointmentFileCreateManyInput.schema.ts",
"schemas/objects/AppointmentFileUpdateManyMutationInput.schema.ts",
"schemas/objects/AppointmentFileUncheckedUpdateManyInput.schema.ts",
"schemas/objects/StaffCreateInput.schema.ts",
"schemas/objects/StaffUncheckedCreateInput.schema.ts",
"schemas/objects/StaffUpdateInput.schema.ts",
@@ -381,11 +394,19 @@
"schemas/objects/DateTimeWithAggregatesFilter.schema.ts",
"schemas/objects/PatientScalarRelationFilter.schema.ts",
"schemas/objects/StaffNullableScalarRelationFilter.schema.ts",
"schemas/objects/AppointmentFileListRelationFilter.schema.ts",
"schemas/objects/AppointmentFileOrderByRelationAggregateInput.schema.ts",
"schemas/objects/AppointmentCountOrderByAggregateInput.schema.ts",
"schemas/objects/AppointmentAvgOrderByAggregateInput.schema.ts",
"schemas/objects/AppointmentMaxOrderByAggregateInput.schema.ts",
"schemas/objects/AppointmentMinOrderByAggregateInput.schema.ts",
"schemas/objects/AppointmentSumOrderByAggregateInput.schema.ts",
"schemas/objects/AppointmentScalarRelationFilter.schema.ts",
"schemas/objects/AppointmentFileCountOrderByAggregateInput.schema.ts",
"schemas/objects/AppointmentFileAvgOrderByAggregateInput.schema.ts",
"schemas/objects/AppointmentFileMaxOrderByAggregateInput.schema.ts",
"schemas/objects/AppointmentFileMinOrderByAggregateInput.schema.ts",
"schemas/objects/AppointmentFileSumOrderByAggregateInput.schema.ts",
"schemas/objects/UserNullableScalarRelationFilter.schema.ts",
"schemas/objects/StaffCountOrderByAggregateInput.schema.ts",
"schemas/objects/StaffAvgOrderByAggregateInput.schema.ts",
@@ -401,7 +422,6 @@
"schemas/objects/IntNullableFilter.schema.ts",
"schemas/objects/DecimalNullableFilter.schema.ts",
"schemas/objects/EnumProcedureSourceFilter.schema.ts",
"schemas/objects/AppointmentScalarRelationFilter.schema.ts",
"schemas/objects/NpiProviderNullableScalarRelationFilter.schema.ts",
"schemas/objects/AppointmentProcedureCountOrderByAggregateInput.schema.ts",
"schemas/objects/AppointmentProcedureAvgOrderByAggregateInput.schema.ts",
@@ -639,15 +659,21 @@
"schemas/objects/StaffCreateNestedOneWithoutAppointmentsInput.schema.ts",
"schemas/objects/AppointmentProcedureCreateNestedManyWithoutAppointmentInput.schema.ts",
"schemas/objects/ClaimCreateNestedManyWithoutAppointmentInput.schema.ts",
"schemas/objects/AppointmentFileCreateNestedManyWithoutAppointmentInput.schema.ts",
"schemas/objects/AppointmentProcedureUncheckedCreateNestedManyWithoutAppointmentInput.schema.ts",
"schemas/objects/ClaimUncheckedCreateNestedManyWithoutAppointmentInput.schema.ts",
"schemas/objects/AppointmentFileUncheckedCreateNestedManyWithoutAppointmentInput.schema.ts",
"schemas/objects/PatientUpdateOneRequiredWithoutAppointmentsNestedInput.schema.ts",
"schemas/objects/UserUpdateOneRequiredWithoutAppointmentsNestedInput.schema.ts",
"schemas/objects/StaffUpdateOneWithoutAppointmentsNestedInput.schema.ts",
"schemas/objects/AppointmentProcedureUpdateManyWithoutAppointmentNestedInput.schema.ts",
"schemas/objects/ClaimUpdateManyWithoutAppointmentNestedInput.schema.ts",
"schemas/objects/AppointmentFileUpdateManyWithoutAppointmentNestedInput.schema.ts",
"schemas/objects/AppointmentProcedureUncheckedUpdateManyWithoutAppointmentNestedInput.schema.ts",
"schemas/objects/ClaimUncheckedUpdateManyWithoutAppointmentNestedInput.schema.ts",
"schemas/objects/AppointmentFileUncheckedUpdateManyWithoutAppointmentNestedInput.schema.ts",
"schemas/objects/AppointmentCreateNestedOneWithoutFilesInput.schema.ts",
"schemas/objects/AppointmentUpdateOneRequiredWithoutFilesNestedInput.schema.ts",
"schemas/objects/UserCreateNestedOneWithoutStaffInput.schema.ts",
"schemas/objects/AppointmentCreateNestedManyWithoutStaffInput.schema.ts",
"schemas/objects/ClaimCreateNestedManyWithoutStaffInput.schema.ts",
@@ -1013,6 +1039,10 @@
"schemas/objects/ClaimUncheckedCreateWithoutAppointmentInput.schema.ts",
"schemas/objects/ClaimCreateOrConnectWithoutAppointmentInput.schema.ts",
"schemas/objects/ClaimCreateManyAppointmentInputEnvelope.schema.ts",
"schemas/objects/AppointmentFileCreateWithoutAppointmentInput.schema.ts",
"schemas/objects/AppointmentFileUncheckedCreateWithoutAppointmentInput.schema.ts",
"schemas/objects/AppointmentFileCreateOrConnectWithoutAppointmentInput.schema.ts",
"schemas/objects/AppointmentFileCreateManyAppointmentInputEnvelope.schema.ts",
"schemas/objects/PatientUpsertWithoutAppointmentsInput.schema.ts",
"schemas/objects/PatientUpdateToOneWithWhereWithoutAppointmentsInput.schema.ts",
"schemas/objects/PatientUpdateWithoutAppointmentsInput.schema.ts",
@@ -1031,6 +1061,17 @@
"schemas/objects/ClaimUpsertWithWhereUniqueWithoutAppointmentInput.schema.ts",
"schemas/objects/ClaimUpdateWithWhereUniqueWithoutAppointmentInput.schema.ts",
"schemas/objects/ClaimUpdateManyWithWhereWithoutAppointmentInput.schema.ts",
"schemas/objects/AppointmentFileUpsertWithWhereUniqueWithoutAppointmentInput.schema.ts",
"schemas/objects/AppointmentFileUpdateWithWhereUniqueWithoutAppointmentInput.schema.ts",
"schemas/objects/AppointmentFileUpdateManyWithWhereWithoutAppointmentInput.schema.ts",
"schemas/objects/AppointmentFileScalarWhereInput.schema.ts",
"schemas/objects/AppointmentCreateWithoutFilesInput.schema.ts",
"schemas/objects/AppointmentUncheckedCreateWithoutFilesInput.schema.ts",
"schemas/objects/AppointmentCreateOrConnectWithoutFilesInput.schema.ts",
"schemas/objects/AppointmentUpsertWithoutFilesInput.schema.ts",
"schemas/objects/AppointmentUpdateToOneWithWhereWithoutFilesInput.schema.ts",
"schemas/objects/AppointmentUpdateWithoutFilesInput.schema.ts",
"schemas/objects/AppointmentUncheckedUpdateWithoutFilesInput.schema.ts",
"schemas/objects/UserCreateWithoutStaffInput.schema.ts",
"schemas/objects/UserUncheckedCreateWithoutStaffInput.schema.ts",
"schemas/objects/UserCreateOrConnectWithoutStaffInput.schema.ts",
@@ -1440,12 +1481,16 @@
"schemas/objects/PatientDocumentUncheckedUpdateManyWithoutPatientInput.schema.ts",
"schemas/objects/AppointmentProcedureCreateManyAppointmentInput.schema.ts",
"schemas/objects/ClaimCreateManyAppointmentInput.schema.ts",
"schemas/objects/AppointmentFileCreateManyAppointmentInput.schema.ts",
"schemas/objects/AppointmentProcedureUpdateWithoutAppointmentInput.schema.ts",
"schemas/objects/AppointmentProcedureUncheckedUpdateWithoutAppointmentInput.schema.ts",
"schemas/objects/AppointmentProcedureUncheckedUpdateManyWithoutAppointmentInput.schema.ts",
"schemas/objects/ClaimUpdateWithoutAppointmentInput.schema.ts",
"schemas/objects/ClaimUncheckedUpdateWithoutAppointmentInput.schema.ts",
"schemas/objects/ClaimUncheckedUpdateManyWithoutAppointmentInput.schema.ts",
"schemas/objects/AppointmentFileUpdateWithoutAppointmentInput.schema.ts",
"schemas/objects/AppointmentFileUncheckedUpdateWithoutAppointmentInput.schema.ts",
"schemas/objects/AppointmentFileUncheckedUpdateManyWithoutAppointmentInput.schema.ts",
"schemas/objects/AppointmentCreateManyStaffInput.schema.ts",
"schemas/objects/ClaimCreateManyStaffInput.schema.ts",
"schemas/objects/AppointmentUpdateWithoutStaffInput.schema.ts",
@@ -1513,6 +1558,11 @@
"schemas/objects/AppointmentSumAggregateInput.schema.ts",
"schemas/objects/AppointmentMinAggregateInput.schema.ts",
"schemas/objects/AppointmentMaxAggregateInput.schema.ts",
"schemas/objects/AppointmentFileCountAggregateInput.schema.ts",
"schemas/objects/AppointmentFileAvgAggregateInput.schema.ts",
"schemas/objects/AppointmentFileSumAggregateInput.schema.ts",
"schemas/objects/AppointmentFileMinAggregateInput.schema.ts",
"schemas/objects/AppointmentFileMaxAggregateInput.schema.ts",
"schemas/objects/StaffCountAggregateInput.schema.ts",
"schemas/objects/StaffAvgAggregateInput.schema.ts",
"schemas/objects/StaffSumAggregateInput.schema.ts",
@@ -1649,6 +1699,7 @@
"schemas/objects/AppointmentCountOutputTypeArgs.schema.ts",
"schemas/objects/AppointmentCountOutputTypeCountProceduresArgs.schema.ts",
"schemas/objects/AppointmentCountOutputTypeCountClaimsArgs.schema.ts",
"schemas/objects/AppointmentCountOutputTypeCountFilesArgs.schema.ts",
"schemas/objects/StaffCountOutputTypeArgs.schema.ts",
"schemas/objects/StaffCountOutputTypeCountAppointmentsArgs.schema.ts",
"schemas/objects/StaffCountOutputTypeCountClaimsArgs.schema.ts",
@@ -1673,6 +1724,7 @@
"schemas/objects/UserSelect.schema.ts",
"schemas/objects/PatientSelect.schema.ts",
"schemas/objects/AppointmentSelect.schema.ts",
"schemas/objects/AppointmentFileSelect.schema.ts",
"schemas/objects/StaffSelect.schema.ts",
"schemas/objects/NpiProviderSelect.schema.ts",
"schemas/objects/AppointmentProcedureSelect.schema.ts",
@@ -1696,6 +1748,7 @@
"schemas/objects/UserArgs.schema.ts",
"schemas/objects/PatientArgs.schema.ts",
"schemas/objects/AppointmentArgs.schema.ts",
"schemas/objects/AppointmentFileArgs.schema.ts",
"schemas/objects/StaffArgs.schema.ts",
"schemas/objects/NpiProviderArgs.schema.ts",
"schemas/objects/AppointmentProcedureArgs.schema.ts",
@@ -1719,6 +1772,7 @@
"schemas/objects/UserInclude.schema.ts",
"schemas/objects/PatientInclude.schema.ts",
"schemas/objects/AppointmentInclude.schema.ts",
"schemas/objects/AppointmentFileInclude.schema.ts",
"schemas/objects/StaffInclude.schema.ts",
"schemas/objects/NpiProviderInclude.schema.ts",
"schemas/objects/AppointmentProcedureInclude.schema.ts",
@@ -1789,6 +1843,23 @@
"schemas/upsertOneAppointment.schema.ts",
"schemas/aggregateAppointment.schema.ts",
"schemas/groupByAppointment.schema.ts",
"schemas/findUniqueAppointmentFile.schema.ts",
"schemas/findUniqueOrThrowAppointmentFile.schema.ts",
"schemas/findFirstAppointmentFile.schema.ts",
"schemas/findFirstOrThrowAppointmentFile.schema.ts",
"schemas/findManyAppointmentFile.schema.ts",
"schemas/countAppointmentFile.schema.ts",
"schemas/createOneAppointmentFile.schema.ts",
"schemas/createManyAppointmentFile.schema.ts",
"schemas/createManyAndReturnAppointmentFile.schema.ts",
"schemas/deleteOneAppointmentFile.schema.ts",
"schemas/deleteManyAppointmentFile.schema.ts",
"schemas/updateOneAppointmentFile.schema.ts",
"schemas/updateManyAppointmentFile.schema.ts",
"schemas/updateManyAndReturnAppointmentFile.schema.ts",
"schemas/upsertOneAppointmentFile.schema.ts",
"schemas/aggregateAppointmentFile.schema.ts",
"schemas/groupByAppointmentFile.schema.ts",
"schemas/findUniqueStaff.schema.ts",
"schemas/findUniqueOrThrowStaff.schema.ts",
"schemas/findFirstStaff.schema.ts",
@@ -2168,6 +2239,19 @@
"schemas/results/AppointmentAggregateResult.schema.ts",
"schemas/results/AppointmentGroupByResult.schema.ts",
"schemas/results/AppointmentCountResult.schema.ts",
"schemas/results/AppointmentFileFindUniqueResult.schema.ts",
"schemas/results/AppointmentFileFindFirstResult.schema.ts",
"schemas/results/AppointmentFileFindManyResult.schema.ts",
"schemas/results/AppointmentFileCreateResult.schema.ts",
"schemas/results/AppointmentFileCreateManyResult.schema.ts",
"schemas/results/AppointmentFileUpdateResult.schema.ts",
"schemas/results/AppointmentFileUpdateManyResult.schema.ts",
"schemas/results/AppointmentFileUpsertResult.schema.ts",
"schemas/results/AppointmentFileDeleteResult.schema.ts",
"schemas/results/AppointmentFileDeleteManyResult.schema.ts",
"schemas/results/AppointmentFileAggregateResult.schema.ts",
"schemas/results/AppointmentFileGroupByResult.schema.ts",
"schemas/results/AppointmentFileCountResult.schema.ts",
"schemas/results/StaffFindUniqueResult.schema.ts",
"schemas/results/StaffFindFirstResult.schema.ts",
"schemas/results/StaffFindManyResult.schema.ts",
@@ -2433,6 +2517,7 @@
"schemas/variants/pure/User.pure.ts",
"schemas/variants/pure/Patient.pure.ts",
"schemas/variants/pure/Appointment.pure.ts",
"schemas/variants/pure/AppointmentFile.pure.ts",
"schemas/variants/pure/Staff.pure.ts",
"schemas/variants/pure/NpiProvider.pure.ts",
"schemas/variants/pure/AppointmentProcedure.pure.ts",
@@ -2457,6 +2542,7 @@
"schemas/variants/input/User.input.ts",
"schemas/variants/input/Patient.input.ts",
"schemas/variants/input/Appointment.input.ts",
"schemas/variants/input/AppointmentFile.input.ts",
"schemas/variants/input/Staff.input.ts",
"schemas/variants/input/NpiProvider.input.ts",
"schemas/variants/input/AppointmentProcedure.input.ts",
@@ -2481,6 +2567,7 @@
"schemas/variants/result/User.result.ts",
"schemas/variants/result/Patient.result.ts",
"schemas/variants/result/Appointment.result.ts",
"schemas/variants/result/AppointmentFile.result.ts",
"schemas/variants/result/Staff.result.ts",
"schemas/variants/result/NpiProvider.result.ts",
"schemas/variants/result/AppointmentProcedure.result.ts",

View File

@@ -0,0 +1,14 @@
import type { Prisma } from '../../generated/prisma';
import * as z from 'zod';
import { AppointmentFileOrderByWithRelationInputObjectSchema as AppointmentFileOrderByWithRelationInputObjectSchema } from './objects/AppointmentFileOrderByWithRelationInput.schema';
import { AppointmentFileWhereInputObjectSchema as AppointmentFileWhereInputObjectSchema } from './objects/AppointmentFileWhereInput.schema';
import { AppointmentFileWhereUniqueInputObjectSchema as AppointmentFileWhereUniqueInputObjectSchema } from './objects/AppointmentFileWhereUniqueInput.schema';
import { AppointmentFileCountAggregateInputObjectSchema as AppointmentFileCountAggregateInputObjectSchema } from './objects/AppointmentFileCountAggregateInput.schema';
import { AppointmentFileMinAggregateInputObjectSchema as AppointmentFileMinAggregateInputObjectSchema } from './objects/AppointmentFileMinAggregateInput.schema';
import { AppointmentFileMaxAggregateInputObjectSchema as AppointmentFileMaxAggregateInputObjectSchema } from './objects/AppointmentFileMaxAggregateInput.schema';
import { AppointmentFileAvgAggregateInputObjectSchema as AppointmentFileAvgAggregateInputObjectSchema } from './objects/AppointmentFileAvgAggregateInput.schema';
import { AppointmentFileSumAggregateInputObjectSchema as AppointmentFileSumAggregateInputObjectSchema } from './objects/AppointmentFileSumAggregateInput.schema';
export const AppointmentFileAggregateSchema: z.ZodType<Prisma.AppointmentFileAggregateArgs> = z.object({ orderBy: z.union([AppointmentFileOrderByWithRelationInputObjectSchema, AppointmentFileOrderByWithRelationInputObjectSchema.array()]).optional(), where: AppointmentFileWhereInputObjectSchema.optional(), cursor: AppointmentFileWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), AppointmentFileCountAggregateInputObjectSchema ]).optional(), _min: AppointmentFileMinAggregateInputObjectSchema.optional(), _max: AppointmentFileMaxAggregateInputObjectSchema.optional(), _avg: AppointmentFileAvgAggregateInputObjectSchema.optional(), _sum: AppointmentFileSumAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType<Prisma.AppointmentFileAggregateArgs>;
export const AppointmentFileAggregateZodSchema = z.object({ orderBy: z.union([AppointmentFileOrderByWithRelationInputObjectSchema, AppointmentFileOrderByWithRelationInputObjectSchema.array()]).optional(), where: AppointmentFileWhereInputObjectSchema.optional(), cursor: AppointmentFileWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), AppointmentFileCountAggregateInputObjectSchema ]).optional(), _min: AppointmentFileMinAggregateInputObjectSchema.optional(), _max: AppointmentFileMaxAggregateInputObjectSchema.optional(), _avg: AppointmentFileAvgAggregateInputObjectSchema.optional(), _sum: AppointmentFileSumAggregateInputObjectSchema.optional() }).strict();

View File

@@ -0,0 +1,10 @@
import type { Prisma } from '../../generated/prisma';
import * as z from 'zod';
import { AppointmentFileOrderByWithRelationInputObjectSchema as AppointmentFileOrderByWithRelationInputObjectSchema } from './objects/AppointmentFileOrderByWithRelationInput.schema';
import { AppointmentFileWhereInputObjectSchema as AppointmentFileWhereInputObjectSchema } from './objects/AppointmentFileWhereInput.schema';
import { AppointmentFileWhereUniqueInputObjectSchema as AppointmentFileWhereUniqueInputObjectSchema } from './objects/AppointmentFileWhereUniqueInput.schema';
import { AppointmentFileCountAggregateInputObjectSchema as AppointmentFileCountAggregateInputObjectSchema } from './objects/AppointmentFileCountAggregateInput.schema';
export const AppointmentFileCountSchema: z.ZodType<Prisma.AppointmentFileCountArgs> = z.object({ orderBy: z.union([AppointmentFileOrderByWithRelationInputObjectSchema, AppointmentFileOrderByWithRelationInputObjectSchema.array()]).optional(), where: AppointmentFileWhereInputObjectSchema.optional(), cursor: AppointmentFileWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), AppointmentFileCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType<Prisma.AppointmentFileCountArgs>;
export const AppointmentFileCountZodSchema = z.object({ orderBy: z.union([AppointmentFileOrderByWithRelationInputObjectSchema, AppointmentFileOrderByWithRelationInputObjectSchema.array()]).optional(), where: AppointmentFileWhereInputObjectSchema.optional(), cursor: AppointmentFileWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), AppointmentFileCountAggregateInputObjectSchema ]).optional() }).strict();

View File

@@ -0,0 +1,8 @@
import type { Prisma } from '../../generated/prisma';
import * as z from 'zod';
import { AppointmentFileSelectObjectSchema as AppointmentFileSelectObjectSchema } from './objects/AppointmentFileSelect.schema';
import { AppointmentFileCreateManyInputObjectSchema as AppointmentFileCreateManyInputObjectSchema } from './objects/AppointmentFileCreateManyInput.schema';
export const AppointmentFileCreateManyAndReturnSchema: z.ZodType<Prisma.AppointmentFileCreateManyAndReturnArgs> = z.object({ select: AppointmentFileSelectObjectSchema.optional(), data: z.union([ AppointmentFileCreateManyInputObjectSchema, z.array(AppointmentFileCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType<Prisma.AppointmentFileCreateManyAndReturnArgs>;
export const AppointmentFileCreateManyAndReturnZodSchema = z.object({ select: AppointmentFileSelectObjectSchema.optional(), data: z.union([ AppointmentFileCreateManyInputObjectSchema, z.array(AppointmentFileCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict();

View File

@@ -0,0 +1,7 @@
import type { Prisma } from '../../generated/prisma';
import * as z from 'zod';
import { AppointmentFileCreateManyInputObjectSchema as AppointmentFileCreateManyInputObjectSchema } from './objects/AppointmentFileCreateManyInput.schema';
export const AppointmentFileCreateManySchema: z.ZodType<Prisma.AppointmentFileCreateManyArgs> = z.object({ data: z.union([ AppointmentFileCreateManyInputObjectSchema, z.array(AppointmentFileCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType<Prisma.AppointmentFileCreateManyArgs>;
export const AppointmentFileCreateManyZodSchema = z.object({ data: z.union([ AppointmentFileCreateManyInputObjectSchema, z.array(AppointmentFileCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict();

View File

@@ -0,0 +1,10 @@
import type { Prisma } from '../../generated/prisma';
import * as z from 'zod';
import { AppointmentFileSelectObjectSchema as AppointmentFileSelectObjectSchema } from './objects/AppointmentFileSelect.schema';
import { AppointmentFileIncludeObjectSchema as AppointmentFileIncludeObjectSchema } from './objects/AppointmentFileInclude.schema';
import { AppointmentFileCreateInputObjectSchema as AppointmentFileCreateInputObjectSchema } from './objects/AppointmentFileCreateInput.schema';
import { AppointmentFileUncheckedCreateInputObjectSchema as AppointmentFileUncheckedCreateInputObjectSchema } from './objects/AppointmentFileUncheckedCreateInput.schema';
export const AppointmentFileCreateOneSchema: z.ZodType<Prisma.AppointmentFileCreateArgs> = z.object({ select: AppointmentFileSelectObjectSchema.optional(), include: AppointmentFileIncludeObjectSchema.optional(), data: z.union([AppointmentFileCreateInputObjectSchema, AppointmentFileUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType<Prisma.AppointmentFileCreateArgs>;
export const AppointmentFileCreateOneZodSchema = z.object({ select: AppointmentFileSelectObjectSchema.optional(), include: AppointmentFileIncludeObjectSchema.optional(), data: z.union([AppointmentFileCreateInputObjectSchema, AppointmentFileUncheckedCreateInputObjectSchema]) }).strict();

View File

@@ -0,0 +1,7 @@
import type { Prisma } from '../../generated/prisma';
import * as z from 'zod';
import { AppointmentFileWhereInputObjectSchema as AppointmentFileWhereInputObjectSchema } from './objects/AppointmentFileWhereInput.schema';
export const AppointmentFileDeleteManySchema: z.ZodType<Prisma.AppointmentFileDeleteManyArgs> = z.object({ where: AppointmentFileWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType<Prisma.AppointmentFileDeleteManyArgs>;
export const AppointmentFileDeleteManyZodSchema = z.object({ where: AppointmentFileWhereInputObjectSchema.optional() }).strict();

View File

@@ -0,0 +1,9 @@
import type { Prisma } from '../../generated/prisma';
import * as z from 'zod';
import { AppointmentFileSelectObjectSchema as AppointmentFileSelectObjectSchema } from './objects/AppointmentFileSelect.schema';
import { AppointmentFileIncludeObjectSchema as AppointmentFileIncludeObjectSchema } from './objects/AppointmentFileInclude.schema';
import { AppointmentFileWhereUniqueInputObjectSchema as AppointmentFileWhereUniqueInputObjectSchema } from './objects/AppointmentFileWhereUniqueInput.schema';
export const AppointmentFileDeleteOneSchema: z.ZodType<Prisma.AppointmentFileDeleteArgs> = z.object({ select: AppointmentFileSelectObjectSchema.optional(), include: AppointmentFileIncludeObjectSchema.optional(), where: AppointmentFileWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType<Prisma.AppointmentFileDeleteArgs>;
export const AppointmentFileDeleteOneZodSchema = z.object({ select: AppointmentFileSelectObjectSchema.optional(), include: AppointmentFileIncludeObjectSchema.optional(), where: AppointmentFileWhereUniqueInputObjectSchema }).strict();

View File

@@ -0,0 +1,5 @@
import * as z from 'zod';
export const AppointmentFileScalarFieldEnumSchema = z.enum(['id', 'appointmentId', 'filename', 'mimeType', 'filePath'])
export type AppointmentFileScalarFieldEnum = z.infer<typeof AppointmentFileScalarFieldEnumSchema>;

View File

@@ -1,4 +1,4 @@
import * as z from 'zod';
export declare const AppointmentProcedureScalarFieldEnumSchema: z.ZodEnum<["id", "appointmentId", "patientId", "procedureCode", "procedureLabel", "fee", "category", "toothNumber", "toothSurface", "oralCavityArea", "source", "comboKey", "createdAt"]>;
export declare const AppointmentProcedureScalarFieldEnumSchema: z.ZodEnum<["id", "appointmentId", "patientId", "npiProviderId", "procedureCode", "procedureLabel", "fee", "category", "toothNumber", "toothSurface", "oralCavityArea", "source", "comboKey", "createdAt"]>;
export type AppointmentProcedureScalarFieldEnum = z.infer<typeof AppointmentProcedureScalarFieldEnumSchema>;
//# sourceMappingURL=AppointmentProcedureScalarFieldEnum.schema.d.ts.map

View File

@@ -1 +1 @@
{"version":3,"file":"AppointmentProcedureScalarFieldEnum.schema.d.ts","sourceRoot":"","sources":["AppointmentProcedureScalarFieldEnum.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,yCAAyC,2LAAyL,CAAA;AAE/O,MAAM,MAAM,mCAAmC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yCAAyC,CAAC,CAAC"}
{"version":3,"file":"AppointmentProcedureScalarFieldEnum.schema.d.ts","sourceRoot":"","sources":["AppointmentProcedureScalarFieldEnum.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,yCAAyC,4MAA0M,CAAA;AAEhQ,MAAM,MAAM,mCAAmC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yCAAyC,CAAC,CAAC"}

View File

@@ -35,4 +35,4 @@ var __importStar = (this && this.__importStar) || (function () {
Object.defineProperty(exports, "__esModule", { value: true });
exports.AppointmentProcedureScalarFieldEnumSchema = void 0;
const z = __importStar(require("zod"));
exports.AppointmentProcedureScalarFieldEnumSchema = z.enum(['id', 'appointmentId', 'patientId', 'procedureCode', 'procedureLabel', 'fee', 'category', 'toothNumber', 'toothSurface', 'oralCavityArea', 'source', 'comboKey', 'createdAt']);
exports.AppointmentProcedureScalarFieldEnumSchema = z.enum(['id', 'appointmentId', 'patientId', 'npiProviderId', 'procedureCode', 'procedureLabel', 'fee', 'category', 'toothNumber', 'toothSurface', 'oralCavityArea', 'source', 'comboKey', 'createdAt']);

View File

@@ -1,4 +1,4 @@
import * as z from 'zod';
export declare const ClaimFileScalarFieldEnumSchema: z.ZodEnum<["id", "claimId", "filename", "mimeType"]>;
export declare const ClaimFileScalarFieldEnumSchema: z.ZodEnum<["id", "claimId", "filename", "mimeType", "filePath"]>;
export type ClaimFileScalarFieldEnum = z.infer<typeof ClaimFileScalarFieldEnumSchema>;
//# sourceMappingURL=ClaimFileScalarFieldEnum.schema.d.ts.map

View File

@@ -1 +1 @@
{"version":3,"file":"ClaimFileScalarFieldEnum.schema.d.ts","sourceRoot":"","sources":["ClaimFileScalarFieldEnum.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,8BAA8B,sDAAoD,CAAA;AAE/F,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,8BAA8B,CAAC,CAAC"}
{"version":3,"file":"ClaimFileScalarFieldEnum.schema.d.ts","sourceRoot":"","sources":["ClaimFileScalarFieldEnum.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,8BAA8B,kEAAgE,CAAA;AAE3G,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,8BAA8B,CAAC,CAAC"}

View File

@@ -35,4 +35,4 @@ var __importStar = (this && this.__importStar) || (function () {
Object.defineProperty(exports, "__esModule", { value: true });
exports.ClaimFileScalarFieldEnumSchema = void 0;
const z = __importStar(require("zod"));
exports.ClaimFileScalarFieldEnumSchema = z.enum(['id', 'claimId', 'filename', 'mimeType']);
exports.ClaimFileScalarFieldEnumSchema = z.enum(['id', 'claimId', 'filename', 'mimeType', 'filePath']);

View File

@@ -1,4 +1,4 @@
import * as z from 'zod';
export declare const ClaimScalarFieldEnumSchema: z.ZodEnum<["id", "patientId", "appointmentId", "userId", "staffId", "patientName", "memberId", "dateOfBirth", "remarks", "missingTeethStatus", "missingTeeth", "serviceDate", "insuranceProvider", "createdAt", "updatedAt", "status", "claimNumber"]>;
export declare const ClaimScalarFieldEnumSchema: z.ZodEnum<["id", "patientId", "appointmentId", "userId", "staffId", "patientName", "memberId", "dateOfBirth", "remarks", "missingTeethStatus", "missingTeeth", "serviceDate", "insuranceProvider", "createdAt", "updatedAt", "status", "claimNumber", "npiProviderId"]>;
export type ClaimScalarFieldEnum = z.infer<typeof ClaimScalarFieldEnumSchema>;
//# sourceMappingURL=ClaimScalarFieldEnum.schema.d.ts.map

View File

@@ -1 +1 @@
{"version":3,"file":"ClaimScalarFieldEnum.schema.d.ts","sourceRoot":"","sources":["ClaimScalarFieldEnum.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,0BAA0B,wPAAsP,CAAA;AAE7R,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC"}
{"version":3,"file":"ClaimScalarFieldEnum.schema.d.ts","sourceRoot":"","sources":["ClaimScalarFieldEnum.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,0BAA0B,yQAAuQ,CAAA;AAE9S,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC"}

View File

@@ -35,4 +35,4 @@ var __importStar = (this && this.__importStar) || (function () {
Object.defineProperty(exports, "__esModule", { value: true });
exports.ClaimScalarFieldEnumSchema = void 0;
const z = __importStar(require("zod"));
exports.ClaimScalarFieldEnumSchema = z.enum(['id', 'patientId', 'appointmentId', 'userId', 'staffId', 'patientName', 'memberId', 'dateOfBirth', 'remarks', 'missingTeethStatus', 'missingTeeth', 'serviceDate', 'insuranceProvider', 'createdAt', 'updatedAt', 'status', 'claimNumber']);
exports.ClaimScalarFieldEnumSchema = z.enum(['id', 'patientId', 'appointmentId', 'userId', 'staffId', 'patientName', 'memberId', 'dateOfBirth', 'remarks', 'missingTeethStatus', 'missingTeeth', 'serviceDate', 'insuranceProvider', 'createdAt', 'updatedAt', 'status', 'claimNumber', 'npiProviderId']);

View File

@@ -1,4 +1,4 @@
import * as z from 'zod';
export declare const CloudFileScalarFieldEnumSchema: z.ZodEnum<["id", "userId", "name", "mimeType", "fileSize", "folderId", "isComplete", "totalChunks", "createdAt", "updatedAt"]>;
export declare const CloudFileScalarFieldEnumSchema: z.ZodEnum<["id", "userId", "name", "mimeType", "fileSize", "folderId", "isComplete", "totalChunks", "diskPath", "createdAt", "updatedAt"]>;
export type CloudFileScalarFieldEnum = z.infer<typeof CloudFileScalarFieldEnumSchema>;
//# sourceMappingURL=CloudFileScalarFieldEnum.schema.d.ts.map

View File

@@ -1 +1 @@
{"version":3,"file":"CloudFileScalarFieldEnum.schema.d.ts","sourceRoot":"","sources":["CloudFileScalarFieldEnum.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,8BAA8B,gIAA8H,CAAA;AAEzK,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,8BAA8B,CAAC,CAAC"}
{"version":3,"file":"CloudFileScalarFieldEnum.schema.d.ts","sourceRoot":"","sources":["CloudFileScalarFieldEnum.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,8BAA8B,4IAA0I,CAAA;AAErL,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,8BAA8B,CAAC,CAAC"}

View File

@@ -35,4 +35,4 @@ var __importStar = (this && this.__importStar) || (function () {
Object.defineProperty(exports, "__esModule", { value: true });
exports.CloudFileScalarFieldEnumSchema = void 0;
const z = __importStar(require("zod"));
exports.CloudFileScalarFieldEnumSchema = z.enum(['id', 'userId', 'name', 'mimeType', 'fileSize', 'folderId', 'isComplete', 'totalChunks', 'createdAt', 'updatedAt']);
exports.CloudFileScalarFieldEnumSchema = z.enum(['id', 'userId', 'name', 'mimeType', 'fileSize', 'folderId', 'isComplete', 'totalChunks', 'diskPath', 'createdAt', 'updatedAt']);

View File

@@ -25,12 +25,10 @@ export declare const AppointmentFindFirstSelectZodSchema: z.ZodObject<{
}, "strict", z.ZodTypeAny, {
type?: boolean | undefined;
status?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
user?: boolean | undefined;
date?: boolean | undefined;
title?: boolean | undefined;
createdAt?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | undefined;
startTime?: boolean | undefined;
@@ -38,20 +36,20 @@ export declare const AppointmentFindFirstSelectZodSchema: z.ZodObject<{
notes?: boolean | undefined;
procedureCodeNotes?: boolean | undefined;
eligibilityStatus?: boolean | undefined;
user?: boolean | undefined;
staff?: boolean | undefined;
procedures?: boolean | undefined;
userId?: boolean | undefined;
staffId?: boolean | undefined;
claims?: boolean | undefined;
_count?: boolean | undefined;
}, {
type?: boolean | undefined;
status?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
user?: boolean | undefined;
date?: boolean | undefined;
title?: boolean | undefined;
createdAt?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | undefined;
startTime?: boolean | undefined;
@@ -59,8 +57,10 @@ export declare const AppointmentFindFirstSelectZodSchema: z.ZodObject<{
notes?: boolean | undefined;
procedureCodeNotes?: boolean | undefined;
eligibilityStatus?: boolean | undefined;
user?: boolean | undefined;
staff?: boolean | undefined;
procedures?: boolean | undefined;
userId?: boolean | undefined;
staffId?: boolean | undefined;
claims?: boolean | undefined;
_count?: boolean | undefined;
@@ -83,7 +83,7 @@ export declare const AppointmentFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.AppointmentWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "type" | "status" | "createdAt" | "id" | "userId" | "date" | "title" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "staffId" | ("type" | "status" | "createdAt" | "id" | "userId" | "date" | "title" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "staffId")[] | undefined;
distinct?: "type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "userId" | "staffId" | ("type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "userId" | "staffId")[] | undefined;
}, {
where?: Prisma.AppointmentWhereInput | undefined;
include?: Prisma.AppointmentInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -92,6 +92,6 @@ export declare const AppointmentFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.AppointmentWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "type" | "status" | "createdAt" | "id" | "userId" | "date" | "title" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "staffId" | ("type" | "status" | "createdAt" | "id" | "userId" | "date" | "title" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "staffId")[] | undefined;
distinct?: "type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "userId" | "staffId" | ("type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "userId" | "staffId")[] | undefined;
}>;
//# sourceMappingURL=findFirstAppointment.schema.d.ts.map

View File

@@ -29,6 +29,7 @@ export const AppointmentFindFirstSelectSchema: z.ZodType<Prisma.AppointmentSelec
staff: z.boolean().optional(),
procedures: z.boolean().optional(),
claims: z.boolean().optional(),
files: z.boolean().optional(),
_count: z.boolean().optional()
}).strict() as unknown as z.ZodType<Prisma.AppointmentSelect>;
@@ -52,6 +53,7 @@ export const AppointmentFindFirstSelectZodSchema = z.object({
staff: z.boolean().optional(),
procedures: z.boolean().optional(),
claims: z.boolean().optional(),
files: z.boolean().optional(),
_count: z.boolean().optional()
}).strict();

View File

@@ -0,0 +1,32 @@
import type { Prisma } from '../../generated/prisma';
import * as z from 'zod';
import { AppointmentFileIncludeObjectSchema as AppointmentFileIncludeObjectSchema } from './objects/AppointmentFileInclude.schema';
import { AppointmentFileOrderByWithRelationInputObjectSchema as AppointmentFileOrderByWithRelationInputObjectSchema } from './objects/AppointmentFileOrderByWithRelationInput.schema';
import { AppointmentFileWhereInputObjectSchema as AppointmentFileWhereInputObjectSchema } from './objects/AppointmentFileWhereInput.schema';
import { AppointmentFileWhereUniqueInputObjectSchema as AppointmentFileWhereUniqueInputObjectSchema } from './objects/AppointmentFileWhereUniqueInput.schema';
import { AppointmentFileScalarFieldEnumSchema } from './enums/AppointmentFileScalarFieldEnum.schema';
// Select schema needs to be in file to prevent circular imports
//------------------------------------------------------
export const AppointmentFileFindFirstSelectSchema: z.ZodType<Prisma.AppointmentFileSelect> = z.object({
id: z.boolean().optional(),
appointmentId: z.boolean().optional(),
filename: z.boolean().optional(),
mimeType: z.boolean().optional(),
filePath: z.boolean().optional(),
appointment: z.boolean().optional()
}).strict() as unknown as z.ZodType<Prisma.AppointmentFileSelect>;
export const AppointmentFileFindFirstSelectZodSchema = z.object({
id: z.boolean().optional(),
appointmentId: z.boolean().optional(),
filename: z.boolean().optional(),
mimeType: z.boolean().optional(),
filePath: z.boolean().optional(),
appointment: z.boolean().optional()
}).strict();
export const AppointmentFileFindFirstSchema: z.ZodType<Prisma.AppointmentFileFindFirstArgs> = z.object({ select: AppointmentFileFindFirstSelectSchema.optional(), include: z.lazy(() => AppointmentFileIncludeObjectSchema.optional()), orderBy: z.union([AppointmentFileOrderByWithRelationInputObjectSchema, AppointmentFileOrderByWithRelationInputObjectSchema.array()]).optional(), where: AppointmentFileWhereInputObjectSchema.optional(), cursor: AppointmentFileWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AppointmentFileScalarFieldEnumSchema, AppointmentFileScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType<Prisma.AppointmentFileFindFirstArgs>;
export const AppointmentFileFindFirstZodSchema = z.object({ select: AppointmentFileFindFirstSelectSchema.optional(), include: z.lazy(() => AppointmentFileIncludeObjectSchema.optional()), orderBy: z.union([AppointmentFileOrderByWithRelationInputObjectSchema, AppointmentFileOrderByWithRelationInputObjectSchema.array()]).optional(), where: AppointmentFileWhereInputObjectSchema.optional(), cursor: AppointmentFileWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AppointmentFileScalarFieldEnumSchema, AppointmentFileScalarFieldEnumSchema.array()]).optional() }).strict();

View File

@@ -5,6 +5,7 @@ export declare const AppointmentProcedureFindFirstSelectZodSchema: z.ZodObject<{
id: z.ZodOptional<z.ZodBoolean>;
appointmentId: z.ZodOptional<z.ZodBoolean>;
patientId: z.ZodOptional<z.ZodBoolean>;
npiProviderId: z.ZodOptional<z.ZodBoolean>;
procedureCode: z.ZodOptional<z.ZodBoolean>;
procedureLabel: z.ZodOptional<z.ZodBoolean>;
fee: z.ZodOptional<z.ZodBoolean>;
@@ -17,11 +18,13 @@ export declare const AppointmentProcedureFindFirstSelectZodSchema: z.ZodObject<{
createdAt: z.ZodOptional<z.ZodBoolean>;
appointment: z.ZodOptional<z.ZodBoolean>;
patient: z.ZodOptional<z.ZodBoolean>;
npiProvider: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
createdAt?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | undefined;
npiProviderId?: boolean | undefined;
procedureCode?: boolean | undefined;
procedureLabel?: boolean | undefined;
fee?: boolean | undefined;
@@ -33,11 +36,13 @@ export declare const AppointmentProcedureFindFirstSelectZodSchema: z.ZodObject<{
comboKey?: boolean | undefined;
appointmentId?: boolean | undefined;
appointment?: boolean | undefined;
npiProvider?: boolean | undefined;
}, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
createdAt?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | undefined;
npiProviderId?: boolean | undefined;
procedureCode?: boolean | undefined;
procedureLabel?: boolean | undefined;
fee?: boolean | undefined;
@@ -49,6 +54,7 @@ export declare const AppointmentProcedureFindFirstSelectZodSchema: z.ZodObject<{
comboKey?: boolean | undefined;
appointmentId?: boolean | undefined;
appointment?: boolean | undefined;
npiProvider?: boolean | undefined;
}>;
export declare const AppointmentProcedureFindFirstSchema: z.ZodType<Prisma.AppointmentProcedureFindFirstArgs>;
export declare const AppointmentProcedureFindFirstZodSchema: z.ZodObject<{
@@ -59,7 +65,7 @@ export declare const AppointmentProcedureFindFirstZodSchema: z.ZodObject<{
cursor: z.ZodOptional<z.ZodType<Prisma.AppointmentProcedureWhereUniqueInput, z.ZodTypeDef, Prisma.AppointmentProcedureWhereUniqueInput>>;
take: z.ZodOptional<z.ZodNumber>;
skip: z.ZodOptional<z.ZodNumber>;
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "appointmentId", "patientId", "procedureCode", "procedureLabel", "fee", "category", "toothNumber", "toothSurface", "oralCavityArea", "source", "comboKey", "createdAt"]>, z.ZodArray<z.ZodEnum<["id", "appointmentId", "patientId", "procedureCode", "procedureLabel", "fee", "category", "toothNumber", "toothSurface", "oralCavityArea", "source", "comboKey", "createdAt"]>, "many">]>>;
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "appointmentId", "patientId", "npiProviderId", "procedureCode", "procedureLabel", "fee", "category", "toothNumber", "toothSurface", "oralCavityArea", "source", "comboKey", "createdAt"]>, z.ZodArray<z.ZodEnum<["id", "appointmentId", "patientId", "npiProviderId", "procedureCode", "procedureLabel", "fee", "category", "toothNumber", "toothSurface", "oralCavityArea", "source", "comboKey", "createdAt"]>, "many">]>>;
}, "strict", z.ZodTypeAny, {
where?: Prisma.AppointmentProcedureWhereInput | undefined;
include?: Prisma.AppointmentProcedureInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -68,7 +74,7 @@ export declare const AppointmentProcedureFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.AppointmentProcedureWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "patientId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId" | ("createdAt" | "id" | "patientId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId")[] | undefined;
distinct?: "id" | "createdAt" | "patientId" | "npiProviderId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId" | ("id" | "createdAt" | "patientId" | "npiProviderId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId")[] | undefined;
}, {
where?: Prisma.AppointmentProcedureWhereInput | undefined;
include?: Prisma.AppointmentProcedureInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -77,6 +83,6 @@ export declare const AppointmentProcedureFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.AppointmentProcedureWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "patientId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId" | ("createdAt" | "id" | "patientId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId")[] | undefined;
distinct?: "id" | "createdAt" | "patientId" | "npiProviderId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId" | ("id" | "createdAt" | "patientId" | "npiProviderId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId")[] | undefined;
}>;
//# sourceMappingURL=findFirstAppointmentProcedure.schema.d.ts.map

View File

@@ -1 +1 @@
{"version":3,"file":"findFirstAppointmentProcedure.schema.d.ts","sourceRoot":"","sources":["findFirstAppointmentProcedure.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,yCAAyC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,0BAA0B,CAgB3B,CAAC;AAEzE,eAAO,MAAM,4CAA4C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgB5C,CAAC;AAEd,eAAO,MAAM,mCAAmC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,iCAAiC,CAA0rB,CAAC;AAE/xB,eAAO,MAAM,sCAAsC;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAunB,CAAC"}
{"version":3,"file":"findFirstAppointmentProcedure.schema.d.ts","sourceRoot":"","sources":["findFirstAppointmentProcedure.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,yCAAyC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,0BAA0B,CAkB3B,CAAC;AAEzE,eAAO,MAAM,4CAA4C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkB5C,CAAC;AAEd,eAAO,MAAM,mCAAmC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,iCAAiC,CAA0rB,CAAC;AAE/xB,eAAO,MAAM,sCAAsC;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAunB,CAAC"}

View File

@@ -46,6 +46,7 @@ exports.AppointmentProcedureFindFirstSelectSchema = z.object({
id: z.boolean().optional(),
appointmentId: z.boolean().optional(),
patientId: z.boolean().optional(),
npiProviderId: z.boolean().optional(),
procedureCode: z.boolean().optional(),
procedureLabel: z.boolean().optional(),
fee: z.boolean().optional(),
@@ -57,12 +58,14 @@ exports.AppointmentProcedureFindFirstSelectSchema = z.object({
comboKey: z.boolean().optional(),
createdAt: z.boolean().optional(),
appointment: z.boolean().optional(),
patient: z.boolean().optional()
patient: z.boolean().optional(),
npiProvider: z.boolean().optional()
}).strict();
exports.AppointmentProcedureFindFirstSelectZodSchema = z.object({
id: z.boolean().optional(),
appointmentId: z.boolean().optional(),
patientId: z.boolean().optional(),
npiProviderId: z.boolean().optional(),
procedureCode: z.boolean().optional(),
procedureLabel: z.boolean().optional(),
fee: z.boolean().optional(),
@@ -74,7 +77,8 @@ exports.AppointmentProcedureFindFirstSelectZodSchema = z.object({
comboKey: z.boolean().optional(),
createdAt: z.boolean().optional(),
appointment: z.boolean().optional(),
patient: z.boolean().optional()
patient: z.boolean().optional(),
npiProvider: z.boolean().optional()
}).strict();
exports.AppointmentProcedureFindFirstSchema = z.object({ select: exports.AppointmentProcedureFindFirstSelectSchema.optional(), include: z.lazy(() => AppointmentProcedureInclude_schema_1.AppointmentProcedureIncludeObjectSchema.optional()), orderBy: z.union([AppointmentProcedureOrderByWithRelationInput_schema_1.AppointmentProcedureOrderByWithRelationInputObjectSchema, AppointmentProcedureOrderByWithRelationInput_schema_1.AppointmentProcedureOrderByWithRelationInputObjectSchema.array()]).optional(), where: AppointmentProcedureWhereInput_schema_1.AppointmentProcedureWhereInputObjectSchema.optional(), cursor: AppointmentProcedureWhereUniqueInput_schema_1.AppointmentProcedureWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AppointmentProcedureScalarFieldEnum_schema_1.AppointmentProcedureScalarFieldEnumSchema, AppointmentProcedureScalarFieldEnum_schema_1.AppointmentProcedureScalarFieldEnumSchema.array()]).optional() }).strict();
exports.AppointmentProcedureFindFirstZodSchema = z.object({ select: exports.AppointmentProcedureFindFirstSelectSchema.optional(), include: z.lazy(() => AppointmentProcedureInclude_schema_1.AppointmentProcedureIncludeObjectSchema.optional()), orderBy: z.union([AppointmentProcedureOrderByWithRelationInput_schema_1.AppointmentProcedureOrderByWithRelationInputObjectSchema, AppointmentProcedureOrderByWithRelationInput_schema_1.AppointmentProcedureOrderByWithRelationInputObjectSchema.array()]).optional(), where: AppointmentProcedureWhereInput_schema_1.AppointmentProcedureWhereInputObjectSchema.optional(), cursor: AppointmentProcedureWhereUniqueInput_schema_1.AppointmentProcedureWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AppointmentProcedureScalarFieldEnum_schema_1.AppointmentProcedureScalarFieldEnumSchema, AppointmentProcedureScalarFieldEnum_schema_1.AppointmentProcedureScalarFieldEnumSchema.array()]).optional() }).strict();

View File

@@ -10,17 +10,17 @@ export declare const BackupDestinationFindFirstSelectZodSchema: z.ZodObject<{
user: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
path?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
createdAt?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
isActive?: boolean | undefined;
}, {
path?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
createdAt?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
isActive?: boolean | undefined;
}>;
export declare const BackupDestinationFindFirstSchema: z.ZodType<Prisma.BackupDestinationFindFirstArgs>;
@@ -41,7 +41,7 @@ export declare const BackupDestinationFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.BackupDestinationWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "path" | "createdAt" | "id" | "userId" | "isActive" | ("path" | "createdAt" | "id" | "userId" | "isActive")[] | undefined;
distinct?: "path" | "id" | "createdAt" | "userId" | "isActive" | ("path" | "id" | "createdAt" | "userId" | "isActive")[] | undefined;
}, {
where?: Prisma.BackupDestinationWhereInput | undefined;
include?: Prisma.BackupDestinationInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -50,6 +50,6 @@ export declare const BackupDestinationFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.BackupDestinationWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "path" | "createdAt" | "id" | "userId" | "isActive" | ("path" | "createdAt" | "id" | "userId" | "isActive")[] | undefined;
distinct?: "path" | "id" | "createdAt" | "userId" | "isActive" | ("path" | "id" | "createdAt" | "userId" | "isActive")[] | undefined;
}>;
//# sourceMappingURL=findFirstBackupDestination.schema.d.ts.map

View File

@@ -19,25 +19,29 @@ export declare const ClaimFindFirstSelectZodSchema: z.ZodObject<{
updatedAt: z.ZodOptional<z.ZodBoolean>;
status: z.ZodOptional<z.ZodBoolean>;
claimNumber: z.ZodOptional<z.ZodBoolean>;
npiProviderId: z.ZodOptional<z.ZodBoolean>;
patient: z.ZodOptional<z.ZodBoolean>;
appointment: z.ZodOptional<z.ZodBoolean>;
user: z.ZodOptional<z.ZodBoolean>;
staff: z.ZodOptional<z.ZodBoolean>;
npiProvider: 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;
createdAt?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | undefined;
npiProviderId?: boolean | undefined;
appointmentId?: boolean | undefined;
appointment?: boolean | undefined;
npiProvider?: boolean | undefined;
user?: boolean | undefined;
staff?: boolean | undefined;
userId?: boolean | undefined;
staffId?: boolean | undefined;
payment?: boolean | undefined;
updatedAt?: boolean | undefined;
@@ -55,15 +59,17 @@ export declare const ClaimFindFirstSelectZodSchema: z.ZodObject<{
_count?: boolean | undefined;
}, {
status?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
user?: boolean | undefined;
createdAt?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | undefined;
npiProviderId?: boolean | undefined;
appointmentId?: boolean | undefined;
appointment?: boolean | undefined;
npiProvider?: boolean | undefined;
user?: boolean | undefined;
staff?: boolean | undefined;
userId?: boolean | undefined;
staffId?: boolean | undefined;
payment?: boolean | undefined;
updatedAt?: boolean | undefined;
@@ -89,7 +95,7 @@ export declare const ClaimFindFirstZodSchema: z.ZodObject<{
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">]>>;
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "patientId", "appointmentId", "userId", "staffId", "patientName", "memberId", "dateOfBirth", "remarks", "missingTeethStatus", "missingTeeth", "serviceDate", "insuranceProvider", "createdAt", "updatedAt", "status", "claimNumber", "npiProviderId"]>, z.ZodArray<z.ZodEnum<["id", "patientId", "appointmentId", "userId", "staffId", "patientName", "memberId", "dateOfBirth", "remarks", "missingTeethStatus", "missingTeeth", "serviceDate", "insuranceProvider", "createdAt", "updatedAt", "status", "claimNumber", "npiProviderId"]>, "many">]>>;
}, "strict", z.ZodTypeAny, {
where?: Prisma.ClaimWhereInput | undefined;
include?: Prisma.ClaimInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -98,7 +104,7 @@ export declare const ClaimFindFirstZodSchema: z.ZodObject<{
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;
distinct?: "status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber" | ("status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "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;
@@ -107,6 +113,6 @@ export declare const ClaimFindFirstZodSchema: z.ZodObject<{
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;
distinct?: "status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber" | ("status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber")[] | undefined;
}>;
//# sourceMappingURL=findFirstClaim.schema.d.ts.map

View File

@@ -1 +1 @@
{"version":3,"file":"findFirstClaim.schema.d.ts","sourceRoot":"","sources":["findFirstClaim.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,WAAW,CA0BZ,CAAC;AAE1D,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0B7B,CAAC;AAEd,eAAO,MAAM,oBAAoB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,kBAAkB,CAAmjB,CAAC;AAE1nB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA+f,CAAC"}
{"version":3,"file":"findFirstClaim.schema.d.ts","sourceRoot":"","sources":["findFirstClaim.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,WAAW,CA4BZ,CAAC;AAE1D,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4B7B,CAAC;AAEd,eAAO,MAAM,oBAAoB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,kBAAkB,CAAmjB,CAAC;AAE1nB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA+f,CAAC"}

View File

@@ -60,10 +60,12 @@ exports.ClaimFindFirstSelectSchema = z.object({
updatedAt: z.boolean().optional(),
status: z.boolean().optional(),
claimNumber: z.boolean().optional(),
npiProviderId: z.boolean().optional(),
patient: z.boolean().optional(),
appointment: z.boolean().optional(),
user: z.boolean().optional(),
staff: z.boolean().optional(),
npiProvider: z.boolean().optional(),
serviceLines: z.boolean().optional(),
claimFiles: z.boolean().optional(),
payment: z.boolean().optional(),
@@ -87,10 +89,12 @@ exports.ClaimFindFirstSelectZodSchema = z.object({
updatedAt: z.boolean().optional(),
status: z.boolean().optional(),
claimNumber: z.boolean().optional(),
npiProviderId: z.boolean().optional(),
patient: z.boolean().optional(),
appointment: z.boolean().optional(),
user: z.boolean().optional(),
staff: z.boolean().optional(),
npiProvider: z.boolean().optional(),
serviceLines: z.boolean().optional(),
claimFiles: z.boolean().optional(),
payment: z.boolean().optional(),

View File

@@ -6,17 +6,20 @@ export declare const ClaimFileFindFirstSelectZodSchema: z.ZodObject<{
claimId: z.ZodOptional<z.ZodBoolean>;
filename: z.ZodOptional<z.ZodBoolean>;
mimeType: z.ZodOptional<z.ZodBoolean>;
filePath: z.ZodOptional<z.ZodBoolean>;
claim: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
id?: boolean | undefined;
filename?: boolean | undefined;
id?: boolean | undefined;
mimeType?: boolean | undefined;
filePath?: boolean | undefined;
claimId?: boolean | undefined;
claim?: boolean | undefined;
}, {
id?: boolean | undefined;
filename?: boolean | undefined;
id?: boolean | undefined;
mimeType?: boolean | undefined;
filePath?: boolean | undefined;
claimId?: boolean | undefined;
claim?: boolean | undefined;
}>;
@@ -29,7 +32,7 @@ export declare const ClaimFileFindFirstZodSchema: z.ZodObject<{
cursor: z.ZodOptional<z.ZodType<Prisma.ClaimFileWhereUniqueInput, z.ZodTypeDef, Prisma.ClaimFileWhereUniqueInput>>;
take: z.ZodOptional<z.ZodNumber>;
skip: z.ZodOptional<z.ZodNumber>;
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "claimId", "filename", "mimeType"]>, z.ZodArray<z.ZodEnum<["id", "claimId", "filename", "mimeType"]>, "many">]>>;
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "claimId", "filename", "mimeType", "filePath"]>, z.ZodArray<z.ZodEnum<["id", "claimId", "filename", "mimeType", "filePath"]>, "many">]>>;
}, "strict", z.ZodTypeAny, {
where?: Prisma.ClaimFileWhereInput | undefined;
include?: Prisma.ClaimFileInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -38,7 +41,7 @@ export declare const ClaimFileFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.ClaimFileWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "id" | "filename" | "mimeType" | "claimId" | ("id" | "filename" | "mimeType" | "claimId")[] | undefined;
distinct?: "filename" | "id" | "mimeType" | "filePath" | "claimId" | ("filename" | "id" | "mimeType" | "filePath" | "claimId")[] | undefined;
}, {
where?: Prisma.ClaimFileWhereInput | undefined;
include?: Prisma.ClaimFileInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -47,6 +50,6 @@ export declare const ClaimFileFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.ClaimFileWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "id" | "filename" | "mimeType" | "claimId" | ("id" | "filename" | "mimeType" | "claimId")[] | undefined;
distinct?: "filename" | "id" | "mimeType" | "filePath" | "claimId" | ("filename" | "id" | "mimeType" | "filePath" | "claimId")[] | undefined;
}>;
//# sourceMappingURL=findFirstClaimFile.schema.d.ts.map

View File

@@ -1 +1 @@
{"version":3,"file":"findFirstClaimFile.schema.d.ts","sourceRoot":"","sources":["findFirstClaimFile.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,8BAA8B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,eAAe,CAMhB,CAAC;AAE9D,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;EAMjC,CAAC;AAEd,eAAO,MAAM,wBAAwB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,sBAAsB,CAAulB,CAAC;AAEtqB,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA+hB,CAAC"}
{"version":3,"file":"findFirstClaimFile.schema.d.ts","sourceRoot":"","sources":["findFirstClaimFile.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,8BAA8B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,eAAe,CAOhB,CAAC;AAE9D,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;EAOjC,CAAC;AAEd,eAAO,MAAM,wBAAwB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,sBAAsB,CAAulB,CAAC;AAEtqB,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA+hB,CAAC"}

View File

@@ -47,6 +47,7 @@ exports.ClaimFileFindFirstSelectSchema = z.object({
claimId: z.boolean().optional(),
filename: z.boolean().optional(),
mimeType: z.boolean().optional(),
filePath: z.boolean().optional(),
claim: z.boolean().optional()
}).strict();
exports.ClaimFileFindFirstSelectZodSchema = z.object({
@@ -54,6 +55,7 @@ exports.ClaimFileFindFirstSelectZodSchema = z.object({
claimId: z.boolean().optional(),
filename: z.boolean().optional(),
mimeType: z.boolean().optional(),
filePath: z.boolean().optional(),
claim: z.boolean().optional()
}).strict();
exports.ClaimFileFindFirstSchema = z.object({ select: exports.ClaimFileFindFirstSelectSchema.optional(), include: z.lazy(() => ClaimFileInclude_schema_1.ClaimFileIncludeObjectSchema.optional()), orderBy: z.union([ClaimFileOrderByWithRelationInput_schema_1.ClaimFileOrderByWithRelationInputObjectSchema, ClaimFileOrderByWithRelationInput_schema_1.ClaimFileOrderByWithRelationInputObjectSchema.array()]).optional(), where: ClaimFileWhereInput_schema_1.ClaimFileWhereInputObjectSchema.optional(), cursor: ClaimFileWhereUniqueInput_schema_1.ClaimFileWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ClaimFileScalarFieldEnum_schema_1.ClaimFileScalarFieldEnumSchema, ClaimFileScalarFieldEnum_schema_1.ClaimFileScalarFieldEnumSchema.array()]).optional() }).strict();

View File

@@ -10,6 +10,7 @@ export declare const CloudFileFindFirstSelectZodSchema: z.ZodObject<{
folderId: z.ZodOptional<z.ZodBoolean>;
isComplete: z.ZodOptional<z.ZodBoolean>;
totalChunks: z.ZodOptional<z.ZodBoolean>;
diskPath: z.ZodOptional<z.ZodBoolean>;
createdAt: z.ZodOptional<z.ZodBoolean>;
updatedAt: z.ZodOptional<z.ZodBoolean>;
user: z.ZodOptional<z.ZodBoolean>;
@@ -17,31 +18,33 @@ export declare const CloudFileFindFirstSelectZodSchema: z.ZodObject<{
chunks: z.ZodOptional<z.ZodBoolean>;
_count: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
createdAt?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
name?: boolean | undefined;
mimeType?: boolean | undefined;
updatedAt?: boolean | undefined;
fileSize?: boolean | undefined;
isComplete?: boolean | undefined;
totalChunks?: boolean | undefined;
diskPath?: boolean | undefined;
chunks?: boolean | undefined;
folderId?: boolean | undefined;
folder?: boolean | undefined;
_count?: boolean | undefined;
}, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
createdAt?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
name?: boolean | undefined;
mimeType?: boolean | undefined;
updatedAt?: boolean | undefined;
fileSize?: boolean | undefined;
isComplete?: boolean | undefined;
totalChunks?: boolean | undefined;
diskPath?: boolean | undefined;
chunks?: boolean | undefined;
folderId?: boolean | undefined;
folder?: boolean | undefined;
@@ -56,7 +59,7 @@ export declare const CloudFileFindFirstZodSchema: z.ZodObject<{
cursor: z.ZodOptional<z.ZodType<Prisma.CloudFileWhereUniqueInput, z.ZodTypeDef, Prisma.CloudFileWhereUniqueInput>>;
take: z.ZodOptional<z.ZodNumber>;
skip: z.ZodOptional<z.ZodNumber>;
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "userId", "name", "mimeType", "fileSize", "folderId", "isComplete", "totalChunks", "createdAt", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "userId", "name", "mimeType", "fileSize", "folderId", "isComplete", "totalChunks", "createdAt", "updatedAt"]>, "many">]>>;
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "userId", "name", "mimeType", "fileSize", "folderId", "isComplete", "totalChunks", "diskPath", "createdAt", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "userId", "name", "mimeType", "fileSize", "folderId", "isComplete", "totalChunks", "diskPath", "createdAt", "updatedAt"]>, "many">]>>;
}, "strict", z.ZodTypeAny, {
where?: Prisma.CloudFileWhereInput | undefined;
include?: Prisma.CloudFileInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -65,7 +68,7 @@ export declare const CloudFileFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.CloudFileWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "folderId" | ("createdAt" | "id" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "folderId")[] | undefined;
distinct?: "id" | "createdAt" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "diskPath" | "folderId" | ("id" | "createdAt" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "diskPath" | "folderId")[] | undefined;
}, {
where?: Prisma.CloudFileWhereInput | undefined;
include?: Prisma.CloudFileInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -74,6 +77,6 @@ export declare const CloudFileFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.CloudFileWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "folderId" | ("createdAt" | "id" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "folderId")[] | undefined;
distinct?: "id" | "createdAt" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "diskPath" | "folderId" | ("id" | "createdAt" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "diskPath" | "folderId")[] | undefined;
}>;
//# sourceMappingURL=findFirstCloudFile.schema.d.ts.map

View File

@@ -1 +1 @@
{"version":3,"file":"findFirstCloudFile.schema.d.ts","sourceRoot":"","sources":["findFirstCloudFile.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,8BAA8B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,eAAe,CAehB,CAAC;AAE9D,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAejC,CAAC;AAEd,eAAO,MAAM,wBAAwB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,sBAAsB,CAAulB,CAAC;AAEtqB,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA+hB,CAAC"}
{"version":3,"file":"findFirstCloudFile.schema.d.ts","sourceRoot":"","sources":["findFirstCloudFile.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,8BAA8B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,eAAe,CAgBhB,CAAC;AAE9D,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgBjC,CAAC;AAEd,eAAO,MAAM,wBAAwB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,sBAAsB,CAAulB,CAAC;AAEtqB,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA+hB,CAAC"}

View File

@@ -51,6 +51,7 @@ exports.CloudFileFindFirstSelectSchema = z.object({
folderId: z.boolean().optional(),
isComplete: z.boolean().optional(),
totalChunks: z.boolean().optional(),
diskPath: z.boolean().optional(),
createdAt: z.boolean().optional(),
updatedAt: z.boolean().optional(),
user: z.boolean().optional(),
@@ -67,6 +68,7 @@ exports.CloudFileFindFirstSelectZodSchema = z.object({
folderId: z.boolean().optional(),
isComplete: z.boolean().optional(),
totalChunks: z.boolean().optional(),
diskPath: z.boolean().optional(),
createdAt: z.boolean().optional(),
updatedAt: z.boolean().optional(),
user: z.boolean().optional(),

View File

@@ -9,16 +9,16 @@ export declare const CloudFileChunkFindFirstSelectZodSchema: z.ZodObject<{
createdAt: z.ZodOptional<z.ZodBoolean>;
file: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
data?: boolean | undefined;
createdAt?: boolean | undefined;
seq?: boolean | undefined;
fileId?: boolean | undefined;
file?: boolean | undefined;
}, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
data?: boolean | undefined;
createdAt?: boolean | undefined;
seq?: boolean | undefined;
fileId?: boolean | undefined;
file?: boolean | undefined;
@@ -41,7 +41,7 @@ export declare const CloudFileChunkFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.CloudFileChunkWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "data" | "seq" | "fileId" | ("createdAt" | "id" | "data" | "seq" | "fileId")[] | undefined;
distinct?: "id" | "data" | "createdAt" | "seq" | "fileId" | ("id" | "data" | "createdAt" | "seq" | "fileId")[] | undefined;
}, {
where?: Prisma.CloudFileChunkWhereInput | undefined;
include?: Prisma.CloudFileChunkInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -50,6 +50,6 @@ export declare const CloudFileChunkFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.CloudFileChunkWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "data" | "seq" | "fileId" | ("createdAt" | "id" | "data" | "seq" | "fileId")[] | undefined;
distinct?: "id" | "data" | "createdAt" | "seq" | "fileId" | ("id" | "data" | "createdAt" | "seq" | "fileId")[] | undefined;
}>;
//# sourceMappingURL=findFirstCloudFileChunk.schema.d.ts.map

View File

@@ -14,10 +14,10 @@ export declare const CloudFolderFindFirstSelectZodSchema: z.ZodObject<{
updatedAt: z.ZodOptional<z.ZodBoolean>;
_count: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
createdAt?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
name?: boolean | undefined;
updatedAt?: boolean | undefined;
children?: boolean | undefined;
@@ -26,10 +26,10 @@ export declare const CloudFolderFindFirstSelectZodSchema: z.ZodObject<{
parent?: boolean | undefined;
_count?: boolean | undefined;
}, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
createdAt?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
name?: boolean | undefined;
updatedAt?: boolean | undefined;
children?: boolean | undefined;
@@ -56,7 +56,7 @@ export declare const CloudFolderFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.CloudFolderWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "userId" | "name" | "updatedAt" | "parentId" | ("createdAt" | "id" | "userId" | "name" | "updatedAt" | "parentId")[] | undefined;
distinct?: "id" | "createdAt" | "userId" | "name" | "updatedAt" | "parentId" | ("id" | "createdAt" | "userId" | "name" | "updatedAt" | "parentId")[] | undefined;
}, {
where?: Prisma.CloudFolderWhereInput | undefined;
include?: Prisma.CloudFolderInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -65,6 +65,6 @@ export declare const CloudFolderFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.CloudFolderWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "userId" | "name" | "updatedAt" | "parentId" | ("createdAt" | "id" | "userId" | "name" | "updatedAt" | "parentId")[] | undefined;
distinct?: "id" | "createdAt" | "userId" | "name" | "updatedAt" | "parentId" | ("id" | "createdAt" | "userId" | "name" | "updatedAt" | "parentId")[] | undefined;
}>;
//# sourceMappingURL=findFirstCloudFolder.schema.d.ts.map

View File

@@ -16,12 +16,12 @@ export declare const CommunicationFindFirstSelectZodSchema: z.ZodObject<{
user: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
status?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
user?: boolean | undefined;
createdAt?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
channel?: boolean | undefined;
direction?: boolean | undefined;
body?: boolean | undefined;
@@ -29,12 +29,12 @@ export declare const CommunicationFindFirstSelectZodSchema: z.ZodObject<{
twilioSid?: boolean | undefined;
}, {
status?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
user?: boolean | undefined;
createdAt?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
channel?: boolean | undefined;
direction?: boolean | undefined;
body?: boolean | undefined;
@@ -59,7 +59,7 @@ export declare const CommunicationFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.CommunicationWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "status" | "createdAt" | "id" | "userId" | "patientId" | "channel" | "direction" | "body" | "callDuration" | "twilioSid" | ("status" | "createdAt" | "id" | "userId" | "patientId" | "channel" | "direction" | "body" | "callDuration" | "twilioSid")[] | undefined;
distinct?: "status" | "id" | "createdAt" | "patientId" | "userId" | "channel" | "direction" | "body" | "callDuration" | "twilioSid" | ("status" | "id" | "createdAt" | "patientId" | "userId" | "channel" | "direction" | "body" | "callDuration" | "twilioSid")[] | undefined;
}, {
where?: Prisma.CommunicationWhereInput | undefined;
include?: Prisma.CommunicationInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -68,6 +68,6 @@ export declare const CommunicationFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.CommunicationWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "status" | "createdAt" | "id" | "userId" | "patientId" | "channel" | "direction" | "body" | "callDuration" | "twilioSid" | ("status" | "createdAt" | "id" | "userId" | "patientId" | "channel" | "direction" | "body" | "callDuration" | "twilioSid")[] | undefined;
distinct?: "status" | "id" | "createdAt" | "patientId" | "userId" | "channel" | "direction" | "body" | "callDuration" | "twilioSid" | ("status" | "id" | "createdAt" | "patientId" | "userId" | "channel" | "direction" | "body" | "callDuration" | "twilioSid")[] | undefined;
}>;
//# sourceMappingURL=findFirstCommunication.schema.d.ts.map

View File

@@ -7,15 +7,15 @@ export declare const DatabaseBackupFindFirstSelectZodSchema: z.ZodObject<{
createdAt: z.ZodOptional<z.ZodBoolean>;
user: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
createdAt?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
}, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
createdAt?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
}>;
export declare const DatabaseBackupFindFirstSchema: z.ZodType<Prisma.DatabaseBackupFindFirstArgs>;
export declare const DatabaseBackupFindFirstZodSchema: z.ZodObject<{
@@ -35,7 +35,7 @@ export declare const DatabaseBackupFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.DatabaseBackupWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "userId" | ("createdAt" | "id" | "userId")[] | undefined;
distinct?: "id" | "createdAt" | "userId" | ("id" | "createdAt" | "userId")[] | undefined;
}, {
where?: Prisma.DatabaseBackupWhereInput | undefined;
include?: Prisma.DatabaseBackupInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -44,6 +44,6 @@ export declare const DatabaseBackupFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.DatabaseBackupWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "userId" | ("createdAt" | "id" | "userId")[] | undefined;
distinct?: "id" | "createdAt" | "userId" | ("id" | "createdAt" | "userId")[] | undefined;
}>;
//# sourceMappingURL=findFirstDatabaseBackup.schema.d.ts.map

View File

@@ -10,15 +10,15 @@ export declare const InsuranceCredentialFindFirstSelectZodSchema: z.ZodObject<{
user: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
id?: boolean | undefined;
userId?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
siteKey?: boolean | undefined;
username?: boolean | undefined;
password?: boolean | undefined;
}, {
id?: boolean | undefined;
userId?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
siteKey?: boolean | undefined;
username?: boolean | undefined;
password?: boolean | undefined;

View File

@@ -12,18 +12,18 @@ export declare const NotificationFindFirstSelectZodSchema: z.ZodObject<{
}, "strict", z.ZodTypeAny, {
message?: boolean | undefined;
type?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
createdAt?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
read?: boolean | undefined;
}, {
message?: boolean | undefined;
type?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
createdAt?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
read?: boolean | undefined;
}>;
export declare const NotificationFindFirstSchema: z.ZodType<Prisma.NotificationFindFirstArgs>;
@@ -44,7 +44,7 @@ export declare const NotificationFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.NotificationWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "message" | "type" | "createdAt" | "id" | "userId" | "read" | ("message" | "type" | "createdAt" | "id" | "userId" | "read")[] | undefined;
distinct?: "message" | "type" | "id" | "createdAt" | "userId" | "read" | ("message" | "type" | "id" | "createdAt" | "userId" | "read")[] | undefined;
}, {
where?: Prisma.NotificationWhereInput | undefined;
include?: Prisma.NotificationInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -53,6 +53,6 @@ export declare const NotificationFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.NotificationWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "message" | "type" | "createdAt" | "id" | "userId" | "read" | ("message" | "type" | "createdAt" | "id" | "userId" | "read")[] | undefined;
distinct?: "message" | "type" | "id" | "createdAt" | "userId" | "read" | ("message" | "type" | "id" | "createdAt" | "userId" | "read")[] | undefined;
}>;
//# sourceMappingURL=findFirstNotification.schema.d.ts.map

View File

@@ -8,20 +8,29 @@ export declare const NpiProviderFindFirstSelectZodSchema: z.ZodObject<{
providerName: z.ZodOptional<z.ZodBoolean>;
createdAt: z.ZodOptional<z.ZodBoolean>;
user: z.ZodOptional<z.ZodBoolean>;
claims: z.ZodOptional<z.ZodBoolean>;
appointmentProcedures: z.ZodOptional<z.ZodBoolean>;
_count: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
id?: boolean | undefined;
createdAt?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
claims?: boolean | undefined;
npiNumber?: boolean | undefined;
providerName?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
user?: boolean | undefined;
appointmentProcedures?: boolean | undefined;
_count?: boolean | undefined;
}, {
id?: boolean | undefined;
createdAt?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
claims?: boolean | undefined;
npiNumber?: boolean | undefined;
providerName?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
user?: boolean | undefined;
appointmentProcedures?: boolean | undefined;
_count?: boolean | undefined;
}>;
export declare const NpiProviderFindFirstSchema: z.ZodType<Prisma.NpiProviderFindFirstArgs>;
export declare const NpiProviderFindFirstZodSchema: z.ZodObject<{
@@ -41,7 +50,7 @@ export declare const NpiProviderFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.NpiProviderWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "npiNumber" | "providerName" | "createdAt" | "id" | "userId" | ("npiNumber" | "providerName" | "createdAt" | "id" | "userId")[] | undefined;
distinct?: "id" | "createdAt" | "userId" | "npiNumber" | "providerName" | ("id" | "createdAt" | "userId" | "npiNumber" | "providerName")[] | undefined;
}, {
where?: Prisma.NpiProviderWhereInput | undefined;
include?: Prisma.NpiProviderInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -50,6 +59,6 @@ export declare const NpiProviderFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.NpiProviderWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "npiNumber" | "providerName" | "createdAt" | "id" | "userId" | ("npiNumber" | "providerName" | "createdAt" | "id" | "userId")[] | undefined;
distinct?: "id" | "createdAt" | "userId" | "npiNumber" | "providerName" | ("id" | "createdAt" | "userId" | "npiNumber" | "providerName")[] | undefined;
}>;
//# sourceMappingURL=findFirstNpiProvider.schema.d.ts.map

View File

@@ -1 +1 @@
{"version":3,"file":"findFirstNpiProvider.schema.d.ts","sourceRoot":"","sources":["findFirstNpiProvider.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,gCAAgC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,iBAAiB,CAOlB,CAAC;AAEhE,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;EAOnC,CAAC;AAEd,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,wBAAwB,CAAymB,CAAC;AAE5rB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA+iB,CAAC"}
{"version":3,"file":"findFirstNpiProvider.schema.d.ts","sourceRoot":"","sources":["findFirstNpiProvider.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,gCAAgC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,iBAAiB,CAUlB,CAAC;AAEhE,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUnC,CAAC;AAEd,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,wBAAwB,CAAymB,CAAC;AAE5rB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA+iB,CAAC"}

View File

@@ -48,7 +48,10 @@ exports.NpiProviderFindFirstSelectSchema = z.object({
npiNumber: z.boolean().optional(),
providerName: z.boolean().optional(),
createdAt: z.boolean().optional(),
user: z.boolean().optional()
user: z.boolean().optional(),
claims: z.boolean().optional(),
appointmentProcedures: z.boolean().optional(),
_count: z.boolean().optional()
}).strict();
exports.NpiProviderFindFirstSelectZodSchema = z.object({
id: z.boolean().optional(),
@@ -56,7 +59,10 @@ exports.NpiProviderFindFirstSelectZodSchema = z.object({
npiNumber: z.boolean().optional(),
providerName: z.boolean().optional(),
createdAt: z.boolean().optional(),
user: z.boolean().optional()
user: z.boolean().optional(),
claims: z.boolean().optional(),
appointmentProcedures: z.boolean().optional(),
_count: z.boolean().optional()
}).strict();
exports.NpiProviderFindFirstSchema = z.object({ select: exports.NpiProviderFindFirstSelectSchema.optional(), include: z.lazy(() => NpiProviderInclude_schema_1.NpiProviderIncludeObjectSchema.optional()), orderBy: z.union([NpiProviderOrderByWithRelationInput_schema_1.NpiProviderOrderByWithRelationInputObjectSchema, NpiProviderOrderByWithRelationInput_schema_1.NpiProviderOrderByWithRelationInputObjectSchema.array()]).optional(), where: NpiProviderWhereInput_schema_1.NpiProviderWhereInputObjectSchema.optional(), cursor: NpiProviderWhereUniqueInput_schema_1.NpiProviderWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([NpiProviderScalarFieldEnum_schema_1.NpiProviderScalarFieldEnumSchema, NpiProviderScalarFieldEnum_schema_1.NpiProviderScalarFieldEnumSchema.array()]).optional() }).strict();
exports.NpiProviderFindFirstZodSchema = z.object({ select: exports.NpiProviderFindFirstSelectSchema.optional(), include: z.lazy(() => NpiProviderInclude_schema_1.NpiProviderIncludeObjectSchema.optional()), orderBy: z.union([NpiProviderOrderByWithRelationInput_schema_1.NpiProviderOrderByWithRelationInputObjectSchema, NpiProviderOrderByWithRelationInput_schema_1.NpiProviderOrderByWithRelationInputObjectSchema.array()]).optional(), where: NpiProviderWhereInput_schema_1.NpiProviderWhereInputObjectSchema.optional(), cursor: NpiProviderWhereUniqueInput_schema_1.NpiProviderWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([NpiProviderScalarFieldEnum_schema_1.NpiProviderScalarFieldEnumSchema, NpiProviderScalarFieldEnum_schema_1.NpiProviderScalarFieldEnumSchema.array()]).optional() }).strict();

View File

@@ -25,12 +25,10 @@ export declare const AppointmentFindFirstOrThrowSelectZodSchema: z.ZodObject<{
}, "strict", z.ZodTypeAny, {
type?: boolean | undefined;
status?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
user?: boolean | undefined;
date?: boolean | undefined;
title?: boolean | undefined;
createdAt?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | undefined;
startTime?: boolean | undefined;
@@ -38,20 +36,20 @@ export declare const AppointmentFindFirstOrThrowSelectZodSchema: z.ZodObject<{
notes?: boolean | undefined;
procedureCodeNotes?: boolean | undefined;
eligibilityStatus?: boolean | undefined;
user?: boolean | undefined;
staff?: boolean | undefined;
procedures?: boolean | undefined;
userId?: boolean | undefined;
staffId?: boolean | undefined;
claims?: boolean | undefined;
_count?: boolean | undefined;
}, {
type?: boolean | undefined;
status?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
user?: boolean | undefined;
date?: boolean | undefined;
title?: boolean | undefined;
createdAt?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | undefined;
startTime?: boolean | undefined;
@@ -59,8 +57,10 @@ export declare const AppointmentFindFirstOrThrowSelectZodSchema: z.ZodObject<{
notes?: boolean | undefined;
procedureCodeNotes?: boolean | undefined;
eligibilityStatus?: boolean | undefined;
user?: boolean | undefined;
staff?: boolean | undefined;
procedures?: boolean | undefined;
userId?: boolean | undefined;
staffId?: boolean | undefined;
claims?: boolean | undefined;
_count?: boolean | undefined;
@@ -83,7 +83,7 @@ export declare const AppointmentFindFirstOrThrowZodSchema: z.ZodObject<{
cursor?: Prisma.AppointmentWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "type" | "status" | "createdAt" | "id" | "userId" | "date" | "title" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "staffId" | ("type" | "status" | "createdAt" | "id" | "userId" | "date" | "title" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "staffId")[] | undefined;
distinct?: "type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "userId" | "staffId" | ("type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "userId" | "staffId")[] | undefined;
}, {
where?: Prisma.AppointmentWhereInput | undefined;
include?: Prisma.AppointmentInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -92,6 +92,6 @@ export declare const AppointmentFindFirstOrThrowZodSchema: z.ZodObject<{
cursor?: Prisma.AppointmentWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "type" | "status" | "createdAt" | "id" | "userId" | "date" | "title" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "staffId" | ("type" | "status" | "createdAt" | "id" | "userId" | "date" | "title" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "staffId")[] | undefined;
distinct?: "type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "userId" | "staffId" | ("type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "userId" | "staffId")[] | undefined;
}>;
//# sourceMappingURL=findFirstOrThrowAppointment.schema.d.ts.map

View File

@@ -29,6 +29,7 @@ export const AppointmentFindFirstOrThrowSelectSchema: z.ZodType<Prisma.Appointme
staff: z.boolean().optional(),
procedures: z.boolean().optional(),
claims: z.boolean().optional(),
files: z.boolean().optional(),
_count: z.boolean().optional()
}).strict() as unknown as z.ZodType<Prisma.AppointmentSelect>;
@@ -52,6 +53,7 @@ export const AppointmentFindFirstOrThrowSelectZodSchema = z.object({
staff: z.boolean().optional(),
procedures: z.boolean().optional(),
claims: z.boolean().optional(),
files: z.boolean().optional(),
_count: z.boolean().optional()
}).strict();

View File

@@ -0,0 +1,32 @@
import type { Prisma } from '../../generated/prisma';
import * as z from 'zod';
import { AppointmentFileIncludeObjectSchema as AppointmentFileIncludeObjectSchema } from './objects/AppointmentFileInclude.schema';
import { AppointmentFileOrderByWithRelationInputObjectSchema as AppointmentFileOrderByWithRelationInputObjectSchema } from './objects/AppointmentFileOrderByWithRelationInput.schema';
import { AppointmentFileWhereInputObjectSchema as AppointmentFileWhereInputObjectSchema } from './objects/AppointmentFileWhereInput.schema';
import { AppointmentFileWhereUniqueInputObjectSchema as AppointmentFileWhereUniqueInputObjectSchema } from './objects/AppointmentFileWhereUniqueInput.schema';
import { AppointmentFileScalarFieldEnumSchema } from './enums/AppointmentFileScalarFieldEnum.schema';
// Select schema needs to be in file to prevent circular imports
//------------------------------------------------------
export const AppointmentFileFindFirstOrThrowSelectSchema: z.ZodType<Prisma.AppointmentFileSelect> = z.object({
id: z.boolean().optional(),
appointmentId: z.boolean().optional(),
filename: z.boolean().optional(),
mimeType: z.boolean().optional(),
filePath: z.boolean().optional(),
appointment: z.boolean().optional()
}).strict() as unknown as z.ZodType<Prisma.AppointmentFileSelect>;
export const AppointmentFileFindFirstOrThrowSelectZodSchema = z.object({
id: z.boolean().optional(),
appointmentId: z.boolean().optional(),
filename: z.boolean().optional(),
mimeType: z.boolean().optional(),
filePath: z.boolean().optional(),
appointment: z.boolean().optional()
}).strict();
export const AppointmentFileFindFirstOrThrowSchema: z.ZodType<Prisma.AppointmentFileFindFirstOrThrowArgs> = z.object({ select: AppointmentFileFindFirstOrThrowSelectSchema.optional(), include: z.lazy(() => AppointmentFileIncludeObjectSchema.optional()), orderBy: z.union([AppointmentFileOrderByWithRelationInputObjectSchema, AppointmentFileOrderByWithRelationInputObjectSchema.array()]).optional(), where: AppointmentFileWhereInputObjectSchema.optional(), cursor: AppointmentFileWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AppointmentFileScalarFieldEnumSchema, AppointmentFileScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType<Prisma.AppointmentFileFindFirstOrThrowArgs>;
export const AppointmentFileFindFirstOrThrowZodSchema = z.object({ select: AppointmentFileFindFirstOrThrowSelectSchema.optional(), include: z.lazy(() => AppointmentFileIncludeObjectSchema.optional()), orderBy: z.union([AppointmentFileOrderByWithRelationInputObjectSchema, AppointmentFileOrderByWithRelationInputObjectSchema.array()]).optional(), where: AppointmentFileWhereInputObjectSchema.optional(), cursor: AppointmentFileWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AppointmentFileScalarFieldEnumSchema, AppointmentFileScalarFieldEnumSchema.array()]).optional() }).strict();

View File

@@ -5,6 +5,7 @@ export declare const AppointmentProcedureFindFirstOrThrowSelectZodSchema: z.ZodO
id: z.ZodOptional<z.ZodBoolean>;
appointmentId: z.ZodOptional<z.ZodBoolean>;
patientId: z.ZodOptional<z.ZodBoolean>;
npiProviderId: z.ZodOptional<z.ZodBoolean>;
procedureCode: z.ZodOptional<z.ZodBoolean>;
procedureLabel: z.ZodOptional<z.ZodBoolean>;
fee: z.ZodOptional<z.ZodBoolean>;
@@ -17,11 +18,13 @@ export declare const AppointmentProcedureFindFirstOrThrowSelectZodSchema: z.ZodO
createdAt: z.ZodOptional<z.ZodBoolean>;
appointment: z.ZodOptional<z.ZodBoolean>;
patient: z.ZodOptional<z.ZodBoolean>;
npiProvider: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
createdAt?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | undefined;
npiProviderId?: boolean | undefined;
procedureCode?: boolean | undefined;
procedureLabel?: boolean | undefined;
fee?: boolean | undefined;
@@ -33,11 +36,13 @@ export declare const AppointmentProcedureFindFirstOrThrowSelectZodSchema: z.ZodO
comboKey?: boolean | undefined;
appointmentId?: boolean | undefined;
appointment?: boolean | undefined;
npiProvider?: boolean | undefined;
}, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
createdAt?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | undefined;
npiProviderId?: boolean | undefined;
procedureCode?: boolean | undefined;
procedureLabel?: boolean | undefined;
fee?: boolean | undefined;
@@ -49,6 +54,7 @@ export declare const AppointmentProcedureFindFirstOrThrowSelectZodSchema: z.ZodO
comboKey?: boolean | undefined;
appointmentId?: boolean | undefined;
appointment?: boolean | undefined;
npiProvider?: boolean | undefined;
}>;
export declare const AppointmentProcedureFindFirstOrThrowSchema: z.ZodType<Prisma.AppointmentProcedureFindFirstOrThrowArgs>;
export declare const AppointmentProcedureFindFirstOrThrowZodSchema: z.ZodObject<{
@@ -59,7 +65,7 @@ export declare const AppointmentProcedureFindFirstOrThrowZodSchema: z.ZodObject<
cursor: z.ZodOptional<z.ZodType<Prisma.AppointmentProcedureWhereUniqueInput, z.ZodTypeDef, Prisma.AppointmentProcedureWhereUniqueInput>>;
take: z.ZodOptional<z.ZodNumber>;
skip: z.ZodOptional<z.ZodNumber>;
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "appointmentId", "patientId", "procedureCode", "procedureLabel", "fee", "category", "toothNumber", "toothSurface", "oralCavityArea", "source", "comboKey", "createdAt"]>, z.ZodArray<z.ZodEnum<["id", "appointmentId", "patientId", "procedureCode", "procedureLabel", "fee", "category", "toothNumber", "toothSurface", "oralCavityArea", "source", "comboKey", "createdAt"]>, "many">]>>;
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "appointmentId", "patientId", "npiProviderId", "procedureCode", "procedureLabel", "fee", "category", "toothNumber", "toothSurface", "oralCavityArea", "source", "comboKey", "createdAt"]>, z.ZodArray<z.ZodEnum<["id", "appointmentId", "patientId", "npiProviderId", "procedureCode", "procedureLabel", "fee", "category", "toothNumber", "toothSurface", "oralCavityArea", "source", "comboKey", "createdAt"]>, "many">]>>;
}, "strict", z.ZodTypeAny, {
where?: Prisma.AppointmentProcedureWhereInput | undefined;
include?: Prisma.AppointmentProcedureInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -68,7 +74,7 @@ export declare const AppointmentProcedureFindFirstOrThrowZodSchema: z.ZodObject<
cursor?: Prisma.AppointmentProcedureWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "patientId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId" | ("createdAt" | "id" | "patientId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId")[] | undefined;
distinct?: "id" | "createdAt" | "patientId" | "npiProviderId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId" | ("id" | "createdAt" | "patientId" | "npiProviderId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId")[] | undefined;
}, {
where?: Prisma.AppointmentProcedureWhereInput | undefined;
include?: Prisma.AppointmentProcedureInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -77,6 +83,6 @@ export declare const AppointmentProcedureFindFirstOrThrowZodSchema: z.ZodObject<
cursor?: Prisma.AppointmentProcedureWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "patientId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId" | ("createdAt" | "id" | "patientId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId")[] | undefined;
distinct?: "id" | "createdAt" | "patientId" | "npiProviderId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId" | ("id" | "createdAt" | "patientId" | "npiProviderId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId")[] | undefined;
}>;
//# sourceMappingURL=findFirstOrThrowAppointmentProcedure.schema.d.ts.map

View File

@@ -1 +1 @@
{"version":3,"file":"findFirstOrThrowAppointmentProcedure.schema.d.ts","sourceRoot":"","sources":["findFirstOrThrowAppointmentProcedure.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,gDAAgD,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,0BAA0B,CAgBlC,CAAC;AAEzE,eAAO,MAAM,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgBnD,CAAC;AAEd,eAAO,MAAM,0CAA0C,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,wCAAwC,CAAwsB,CAAC;AAE3zB,eAAO,MAAM,6CAA6C;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA8nB,CAAC"}
{"version":3,"file":"findFirstOrThrowAppointmentProcedure.schema.d.ts","sourceRoot":"","sources":["findFirstOrThrowAppointmentProcedure.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,gDAAgD,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,0BAA0B,CAkBlC,CAAC;AAEzE,eAAO,MAAM,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkBnD,CAAC;AAEd,eAAO,MAAM,0CAA0C,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,wCAAwC,CAAwsB,CAAC;AAE3zB,eAAO,MAAM,6CAA6C;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA8nB,CAAC"}

View File

@@ -46,6 +46,7 @@ exports.AppointmentProcedureFindFirstOrThrowSelectSchema = z.object({
id: z.boolean().optional(),
appointmentId: z.boolean().optional(),
patientId: z.boolean().optional(),
npiProviderId: z.boolean().optional(),
procedureCode: z.boolean().optional(),
procedureLabel: z.boolean().optional(),
fee: z.boolean().optional(),
@@ -57,12 +58,14 @@ exports.AppointmentProcedureFindFirstOrThrowSelectSchema = z.object({
comboKey: z.boolean().optional(),
createdAt: z.boolean().optional(),
appointment: z.boolean().optional(),
patient: z.boolean().optional()
patient: z.boolean().optional(),
npiProvider: z.boolean().optional()
}).strict();
exports.AppointmentProcedureFindFirstOrThrowSelectZodSchema = z.object({
id: z.boolean().optional(),
appointmentId: z.boolean().optional(),
patientId: z.boolean().optional(),
npiProviderId: z.boolean().optional(),
procedureCode: z.boolean().optional(),
procedureLabel: z.boolean().optional(),
fee: z.boolean().optional(),
@@ -74,7 +77,8 @@ exports.AppointmentProcedureFindFirstOrThrowSelectZodSchema = z.object({
comboKey: z.boolean().optional(),
createdAt: z.boolean().optional(),
appointment: z.boolean().optional(),
patient: z.boolean().optional()
patient: z.boolean().optional(),
npiProvider: z.boolean().optional()
}).strict();
exports.AppointmentProcedureFindFirstOrThrowSchema = z.object({ select: exports.AppointmentProcedureFindFirstOrThrowSelectSchema.optional(), include: z.lazy(() => AppointmentProcedureInclude_schema_1.AppointmentProcedureIncludeObjectSchema.optional()), orderBy: z.union([AppointmentProcedureOrderByWithRelationInput_schema_1.AppointmentProcedureOrderByWithRelationInputObjectSchema, AppointmentProcedureOrderByWithRelationInput_schema_1.AppointmentProcedureOrderByWithRelationInputObjectSchema.array()]).optional(), where: AppointmentProcedureWhereInput_schema_1.AppointmentProcedureWhereInputObjectSchema.optional(), cursor: AppointmentProcedureWhereUniqueInput_schema_1.AppointmentProcedureWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AppointmentProcedureScalarFieldEnum_schema_1.AppointmentProcedureScalarFieldEnumSchema, AppointmentProcedureScalarFieldEnum_schema_1.AppointmentProcedureScalarFieldEnumSchema.array()]).optional() }).strict();
exports.AppointmentProcedureFindFirstOrThrowZodSchema = z.object({ select: exports.AppointmentProcedureFindFirstOrThrowSelectSchema.optional(), include: z.lazy(() => AppointmentProcedureInclude_schema_1.AppointmentProcedureIncludeObjectSchema.optional()), orderBy: z.union([AppointmentProcedureOrderByWithRelationInput_schema_1.AppointmentProcedureOrderByWithRelationInputObjectSchema, AppointmentProcedureOrderByWithRelationInput_schema_1.AppointmentProcedureOrderByWithRelationInputObjectSchema.array()]).optional(), where: AppointmentProcedureWhereInput_schema_1.AppointmentProcedureWhereInputObjectSchema.optional(), cursor: AppointmentProcedureWhereUniqueInput_schema_1.AppointmentProcedureWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AppointmentProcedureScalarFieldEnum_schema_1.AppointmentProcedureScalarFieldEnumSchema, AppointmentProcedureScalarFieldEnum_schema_1.AppointmentProcedureScalarFieldEnumSchema.array()]).optional() }).strict();

View File

@@ -10,17 +10,17 @@ export declare const BackupDestinationFindFirstOrThrowSelectZodSchema: z.ZodObje
user: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
path?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
createdAt?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
isActive?: boolean | undefined;
}, {
path?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
createdAt?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
isActive?: boolean | undefined;
}>;
export declare const BackupDestinationFindFirstOrThrowSchema: z.ZodType<Prisma.BackupDestinationFindFirstOrThrowArgs>;
@@ -41,7 +41,7 @@ export declare const BackupDestinationFindFirstOrThrowZodSchema: z.ZodObject<{
cursor?: Prisma.BackupDestinationWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "path" | "createdAt" | "id" | "userId" | "isActive" | ("path" | "createdAt" | "id" | "userId" | "isActive")[] | undefined;
distinct?: "path" | "id" | "createdAt" | "userId" | "isActive" | ("path" | "id" | "createdAt" | "userId" | "isActive")[] | undefined;
}, {
where?: Prisma.BackupDestinationWhereInput | undefined;
include?: Prisma.BackupDestinationInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -50,6 +50,6 @@ export declare const BackupDestinationFindFirstOrThrowZodSchema: z.ZodObject<{
cursor?: Prisma.BackupDestinationWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "path" | "createdAt" | "id" | "userId" | "isActive" | ("path" | "createdAt" | "id" | "userId" | "isActive")[] | undefined;
distinct?: "path" | "id" | "createdAt" | "userId" | "isActive" | ("path" | "id" | "createdAt" | "userId" | "isActive")[] | undefined;
}>;
//# sourceMappingURL=findFirstOrThrowBackupDestination.schema.d.ts.map

View File

@@ -19,25 +19,29 @@ export declare const ClaimFindFirstOrThrowSelectZodSchema: z.ZodObject<{
updatedAt: z.ZodOptional<z.ZodBoolean>;
status: z.ZodOptional<z.ZodBoolean>;
claimNumber: z.ZodOptional<z.ZodBoolean>;
npiProviderId: z.ZodOptional<z.ZodBoolean>;
patient: z.ZodOptional<z.ZodBoolean>;
appointment: z.ZodOptional<z.ZodBoolean>;
user: z.ZodOptional<z.ZodBoolean>;
staff: z.ZodOptional<z.ZodBoolean>;
npiProvider: 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;
createdAt?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | undefined;
npiProviderId?: boolean | undefined;
appointmentId?: boolean | undefined;
appointment?: boolean | undefined;
npiProvider?: boolean | undefined;
user?: boolean | undefined;
staff?: boolean | undefined;
userId?: boolean | undefined;
staffId?: boolean | undefined;
payment?: boolean | undefined;
updatedAt?: boolean | undefined;
@@ -55,15 +59,17 @@ export declare const ClaimFindFirstOrThrowSelectZodSchema: z.ZodObject<{
_count?: boolean | undefined;
}, {
status?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
user?: boolean | undefined;
createdAt?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | undefined;
npiProviderId?: boolean | undefined;
appointmentId?: boolean | undefined;
appointment?: boolean | undefined;
npiProvider?: boolean | undefined;
user?: boolean | undefined;
staff?: boolean | undefined;
userId?: boolean | undefined;
staffId?: boolean | undefined;
payment?: boolean | undefined;
updatedAt?: boolean | undefined;
@@ -89,7 +95,7 @@ export declare const ClaimFindFirstOrThrowZodSchema: z.ZodObject<{
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">]>>;
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "patientId", "appointmentId", "userId", "staffId", "patientName", "memberId", "dateOfBirth", "remarks", "missingTeethStatus", "missingTeeth", "serviceDate", "insuranceProvider", "createdAt", "updatedAt", "status", "claimNumber", "npiProviderId"]>, z.ZodArray<z.ZodEnum<["id", "patientId", "appointmentId", "userId", "staffId", "patientName", "memberId", "dateOfBirth", "remarks", "missingTeethStatus", "missingTeeth", "serviceDate", "insuranceProvider", "createdAt", "updatedAt", "status", "claimNumber", "npiProviderId"]>, "many">]>>;
}, "strict", z.ZodTypeAny, {
where?: Prisma.ClaimWhereInput | undefined;
include?: Prisma.ClaimInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -98,7 +104,7 @@ export declare const ClaimFindFirstOrThrowZodSchema: z.ZodObject<{
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;
distinct?: "status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber" | ("status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "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;
@@ -107,6 +113,6 @@ export declare const ClaimFindFirstOrThrowZodSchema: z.ZodObject<{
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;
distinct?: "status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber" | ("status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber")[] | undefined;
}>;
//# sourceMappingURL=findFirstOrThrowClaim.schema.d.ts.map

View File

@@ -1 +1 @@
{"version":3,"file":"findFirstOrThrowClaim.schema.d.ts","sourceRoot":"","sources":["findFirstOrThrowClaim.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,iCAAiC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,WAAW,CA0BnB,CAAC;AAE1D,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0BpC,CAAC;AAEd,eAAO,MAAM,2BAA2B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,yBAAyB,CAAikB,CAAC;AAEtpB,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAsgB,CAAC"}
{"version":3,"file":"findFirstOrThrowClaim.schema.d.ts","sourceRoot":"","sources":["findFirstOrThrowClaim.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,iCAAiC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,WAAW,CA4BnB,CAAC;AAE1D,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4BpC,CAAC;AAEd,eAAO,MAAM,2BAA2B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,yBAAyB,CAAikB,CAAC;AAEtpB,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAsgB,CAAC"}

View File

@@ -60,10 +60,12 @@ exports.ClaimFindFirstOrThrowSelectSchema = z.object({
updatedAt: z.boolean().optional(),
status: z.boolean().optional(),
claimNumber: z.boolean().optional(),
npiProviderId: z.boolean().optional(),
patient: z.boolean().optional(),
appointment: z.boolean().optional(),
user: z.boolean().optional(),
staff: z.boolean().optional(),
npiProvider: z.boolean().optional(),
serviceLines: z.boolean().optional(),
claimFiles: z.boolean().optional(),
payment: z.boolean().optional(),
@@ -87,10 +89,12 @@ exports.ClaimFindFirstOrThrowSelectZodSchema = z.object({
updatedAt: z.boolean().optional(),
status: z.boolean().optional(),
claimNumber: z.boolean().optional(),
npiProviderId: z.boolean().optional(),
patient: z.boolean().optional(),
appointment: z.boolean().optional(),
user: z.boolean().optional(),
staff: z.boolean().optional(),
npiProvider: z.boolean().optional(),
serviceLines: z.boolean().optional(),
claimFiles: z.boolean().optional(),
payment: z.boolean().optional(),

View File

@@ -6,17 +6,20 @@ export declare const ClaimFileFindFirstOrThrowSelectZodSchema: z.ZodObject<{
claimId: z.ZodOptional<z.ZodBoolean>;
filename: z.ZodOptional<z.ZodBoolean>;
mimeType: z.ZodOptional<z.ZodBoolean>;
filePath: z.ZodOptional<z.ZodBoolean>;
claim: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
id?: boolean | undefined;
filename?: boolean | undefined;
id?: boolean | undefined;
mimeType?: boolean | undefined;
filePath?: boolean | undefined;
claimId?: boolean | undefined;
claim?: boolean | undefined;
}, {
id?: boolean | undefined;
filename?: boolean | undefined;
id?: boolean | undefined;
mimeType?: boolean | undefined;
filePath?: boolean | undefined;
claimId?: boolean | undefined;
claim?: boolean | undefined;
}>;
@@ -29,7 +32,7 @@ export declare const ClaimFileFindFirstOrThrowZodSchema: z.ZodObject<{
cursor: z.ZodOptional<z.ZodType<Prisma.ClaimFileWhereUniqueInput, z.ZodTypeDef, Prisma.ClaimFileWhereUniqueInput>>;
take: z.ZodOptional<z.ZodNumber>;
skip: z.ZodOptional<z.ZodNumber>;
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "claimId", "filename", "mimeType"]>, z.ZodArray<z.ZodEnum<["id", "claimId", "filename", "mimeType"]>, "many">]>>;
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "claimId", "filename", "mimeType", "filePath"]>, z.ZodArray<z.ZodEnum<["id", "claimId", "filename", "mimeType", "filePath"]>, "many">]>>;
}, "strict", z.ZodTypeAny, {
where?: Prisma.ClaimFileWhereInput | undefined;
include?: Prisma.ClaimFileInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -38,7 +41,7 @@ export declare const ClaimFileFindFirstOrThrowZodSchema: z.ZodObject<{
cursor?: Prisma.ClaimFileWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "id" | "filename" | "mimeType" | "claimId" | ("id" | "filename" | "mimeType" | "claimId")[] | undefined;
distinct?: "filename" | "id" | "mimeType" | "filePath" | "claimId" | ("filename" | "id" | "mimeType" | "filePath" | "claimId")[] | undefined;
}, {
where?: Prisma.ClaimFileWhereInput | undefined;
include?: Prisma.ClaimFileInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -47,6 +50,6 @@ export declare const ClaimFileFindFirstOrThrowZodSchema: z.ZodObject<{
cursor?: Prisma.ClaimFileWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "id" | "filename" | "mimeType" | "claimId" | ("id" | "filename" | "mimeType" | "claimId")[] | undefined;
distinct?: "filename" | "id" | "mimeType" | "filePath" | "claimId" | ("filename" | "id" | "mimeType" | "filePath" | "claimId")[] | undefined;
}>;
//# sourceMappingURL=findFirstOrThrowClaimFile.schema.d.ts.map

View File

@@ -1 +1 @@
{"version":3,"file":"findFirstOrThrowClaimFile.schema.d.ts","sourceRoot":"","sources":["findFirstOrThrowClaimFile.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,qCAAqC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,eAAe,CAMvB,CAAC;AAE9D,eAAO,MAAM,wCAAwC;;;;;;;;;;;;;;;;;;EAMxC,CAAC;AAEd,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,6BAA6B,CAAqmB,CAAC;AAElsB,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAsiB,CAAC"}
{"version":3,"file":"findFirstOrThrowClaimFile.schema.d.ts","sourceRoot":"","sources":["findFirstOrThrowClaimFile.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,qCAAqC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,eAAe,CAOvB,CAAC;AAE9D,eAAO,MAAM,wCAAwC;;;;;;;;;;;;;;;;;;;;;EAOxC,CAAC;AAEd,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,6BAA6B,CAAqmB,CAAC;AAElsB,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAsiB,CAAC"}

View File

@@ -47,6 +47,7 @@ exports.ClaimFileFindFirstOrThrowSelectSchema = z.object({
claimId: z.boolean().optional(),
filename: z.boolean().optional(),
mimeType: z.boolean().optional(),
filePath: z.boolean().optional(),
claim: z.boolean().optional()
}).strict();
exports.ClaimFileFindFirstOrThrowSelectZodSchema = z.object({
@@ -54,6 +55,7 @@ exports.ClaimFileFindFirstOrThrowSelectZodSchema = z.object({
claimId: z.boolean().optional(),
filename: z.boolean().optional(),
mimeType: z.boolean().optional(),
filePath: z.boolean().optional(),
claim: z.boolean().optional()
}).strict();
exports.ClaimFileFindFirstOrThrowSchema = z.object({ select: exports.ClaimFileFindFirstOrThrowSelectSchema.optional(), include: z.lazy(() => ClaimFileInclude_schema_1.ClaimFileIncludeObjectSchema.optional()), orderBy: z.union([ClaimFileOrderByWithRelationInput_schema_1.ClaimFileOrderByWithRelationInputObjectSchema, ClaimFileOrderByWithRelationInput_schema_1.ClaimFileOrderByWithRelationInputObjectSchema.array()]).optional(), where: ClaimFileWhereInput_schema_1.ClaimFileWhereInputObjectSchema.optional(), cursor: ClaimFileWhereUniqueInput_schema_1.ClaimFileWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ClaimFileScalarFieldEnum_schema_1.ClaimFileScalarFieldEnumSchema, ClaimFileScalarFieldEnum_schema_1.ClaimFileScalarFieldEnumSchema.array()]).optional() }).strict();

View File

@@ -10,6 +10,7 @@ export declare const CloudFileFindFirstOrThrowSelectZodSchema: z.ZodObject<{
folderId: z.ZodOptional<z.ZodBoolean>;
isComplete: z.ZodOptional<z.ZodBoolean>;
totalChunks: z.ZodOptional<z.ZodBoolean>;
diskPath: z.ZodOptional<z.ZodBoolean>;
createdAt: z.ZodOptional<z.ZodBoolean>;
updatedAt: z.ZodOptional<z.ZodBoolean>;
user: z.ZodOptional<z.ZodBoolean>;
@@ -17,31 +18,33 @@ export declare const CloudFileFindFirstOrThrowSelectZodSchema: z.ZodObject<{
chunks: z.ZodOptional<z.ZodBoolean>;
_count: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
createdAt?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
name?: boolean | undefined;
mimeType?: boolean | undefined;
updatedAt?: boolean | undefined;
fileSize?: boolean | undefined;
isComplete?: boolean | undefined;
totalChunks?: boolean | undefined;
diskPath?: boolean | undefined;
chunks?: boolean | undefined;
folderId?: boolean | undefined;
folder?: boolean | undefined;
_count?: boolean | undefined;
}, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
createdAt?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
name?: boolean | undefined;
mimeType?: boolean | undefined;
updatedAt?: boolean | undefined;
fileSize?: boolean | undefined;
isComplete?: boolean | undefined;
totalChunks?: boolean | undefined;
diskPath?: boolean | undefined;
chunks?: boolean | undefined;
folderId?: boolean | undefined;
folder?: boolean | undefined;
@@ -56,7 +59,7 @@ export declare const CloudFileFindFirstOrThrowZodSchema: z.ZodObject<{
cursor: z.ZodOptional<z.ZodType<Prisma.CloudFileWhereUniqueInput, z.ZodTypeDef, Prisma.CloudFileWhereUniqueInput>>;
take: z.ZodOptional<z.ZodNumber>;
skip: z.ZodOptional<z.ZodNumber>;
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "userId", "name", "mimeType", "fileSize", "folderId", "isComplete", "totalChunks", "createdAt", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "userId", "name", "mimeType", "fileSize", "folderId", "isComplete", "totalChunks", "createdAt", "updatedAt"]>, "many">]>>;
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "userId", "name", "mimeType", "fileSize", "folderId", "isComplete", "totalChunks", "diskPath", "createdAt", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "userId", "name", "mimeType", "fileSize", "folderId", "isComplete", "totalChunks", "diskPath", "createdAt", "updatedAt"]>, "many">]>>;
}, "strict", z.ZodTypeAny, {
where?: Prisma.CloudFileWhereInput | undefined;
include?: Prisma.CloudFileInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -65,7 +68,7 @@ export declare const CloudFileFindFirstOrThrowZodSchema: z.ZodObject<{
cursor?: Prisma.CloudFileWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "folderId" | ("createdAt" | "id" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "folderId")[] | undefined;
distinct?: "id" | "createdAt" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "diskPath" | "folderId" | ("id" | "createdAt" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "diskPath" | "folderId")[] | undefined;
}, {
where?: Prisma.CloudFileWhereInput | undefined;
include?: Prisma.CloudFileInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -74,6 +77,6 @@ export declare const CloudFileFindFirstOrThrowZodSchema: z.ZodObject<{
cursor?: Prisma.CloudFileWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "folderId" | ("createdAt" | "id" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "folderId")[] | undefined;
distinct?: "id" | "createdAt" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "diskPath" | "folderId" | ("id" | "createdAt" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "diskPath" | "folderId")[] | undefined;
}>;
//# sourceMappingURL=findFirstOrThrowCloudFile.schema.d.ts.map

View File

@@ -1 +1 @@
{"version":3,"file":"findFirstOrThrowCloudFile.schema.d.ts","sourceRoot":"","sources":["findFirstOrThrowCloudFile.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,qCAAqC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,eAAe,CAevB,CAAC;AAE9D,eAAO,MAAM,wCAAwC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAexC,CAAC;AAEd,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,6BAA6B,CAAqmB,CAAC;AAElsB,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAsiB,CAAC"}
{"version":3,"file":"findFirstOrThrowCloudFile.schema.d.ts","sourceRoot":"","sources":["findFirstOrThrowCloudFile.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,qCAAqC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,eAAe,CAgBvB,CAAC;AAE9D,eAAO,MAAM,wCAAwC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgBxC,CAAC;AAEd,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,6BAA6B,CAAqmB,CAAC;AAElsB,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAsiB,CAAC"}

View File

@@ -51,6 +51,7 @@ exports.CloudFileFindFirstOrThrowSelectSchema = z.object({
folderId: z.boolean().optional(),
isComplete: z.boolean().optional(),
totalChunks: z.boolean().optional(),
diskPath: z.boolean().optional(),
createdAt: z.boolean().optional(),
updatedAt: z.boolean().optional(),
user: z.boolean().optional(),
@@ -67,6 +68,7 @@ exports.CloudFileFindFirstOrThrowSelectZodSchema = z.object({
folderId: z.boolean().optional(),
isComplete: z.boolean().optional(),
totalChunks: z.boolean().optional(),
diskPath: z.boolean().optional(),
createdAt: z.boolean().optional(),
updatedAt: z.boolean().optional(),
user: z.boolean().optional(),

View File

@@ -9,16 +9,16 @@ export declare const CloudFileChunkFindFirstOrThrowSelectZodSchema: z.ZodObject<
createdAt: z.ZodOptional<z.ZodBoolean>;
file: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
data?: boolean | undefined;
createdAt?: boolean | undefined;
seq?: boolean | undefined;
fileId?: boolean | undefined;
file?: boolean | undefined;
}, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
data?: boolean | undefined;
createdAt?: boolean | undefined;
seq?: boolean | undefined;
fileId?: boolean | undefined;
file?: boolean | undefined;
@@ -41,7 +41,7 @@ export declare const CloudFileChunkFindFirstOrThrowZodSchema: z.ZodObject<{
cursor?: Prisma.CloudFileChunkWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "data" | "seq" | "fileId" | ("createdAt" | "id" | "data" | "seq" | "fileId")[] | undefined;
distinct?: "id" | "data" | "createdAt" | "seq" | "fileId" | ("id" | "data" | "createdAt" | "seq" | "fileId")[] | undefined;
}, {
where?: Prisma.CloudFileChunkWhereInput | undefined;
include?: Prisma.CloudFileChunkInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -50,6 +50,6 @@ export declare const CloudFileChunkFindFirstOrThrowZodSchema: z.ZodObject<{
cursor?: Prisma.CloudFileChunkWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "data" | "seq" | "fileId" | ("createdAt" | "id" | "data" | "seq" | "fileId")[] | undefined;
distinct?: "id" | "data" | "createdAt" | "seq" | "fileId" | ("id" | "data" | "createdAt" | "seq" | "fileId")[] | undefined;
}>;
//# sourceMappingURL=findFirstOrThrowCloudFileChunk.schema.d.ts.map

View File

@@ -14,10 +14,10 @@ export declare const CloudFolderFindFirstOrThrowSelectZodSchema: z.ZodObject<{
updatedAt: z.ZodOptional<z.ZodBoolean>;
_count: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
createdAt?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
name?: boolean | undefined;
updatedAt?: boolean | undefined;
children?: boolean | undefined;
@@ -26,10 +26,10 @@ export declare const CloudFolderFindFirstOrThrowSelectZodSchema: z.ZodObject<{
parent?: boolean | undefined;
_count?: boolean | undefined;
}, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
createdAt?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
name?: boolean | undefined;
updatedAt?: boolean | undefined;
children?: boolean | undefined;
@@ -56,7 +56,7 @@ export declare const CloudFolderFindFirstOrThrowZodSchema: z.ZodObject<{
cursor?: Prisma.CloudFolderWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "userId" | "name" | "updatedAt" | "parentId" | ("createdAt" | "id" | "userId" | "name" | "updatedAt" | "parentId")[] | undefined;
distinct?: "id" | "createdAt" | "userId" | "name" | "updatedAt" | "parentId" | ("id" | "createdAt" | "userId" | "name" | "updatedAt" | "parentId")[] | undefined;
}, {
where?: Prisma.CloudFolderWhereInput | undefined;
include?: Prisma.CloudFolderInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -65,6 +65,6 @@ export declare const CloudFolderFindFirstOrThrowZodSchema: z.ZodObject<{
cursor?: Prisma.CloudFolderWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "userId" | "name" | "updatedAt" | "parentId" | ("createdAt" | "id" | "userId" | "name" | "updatedAt" | "parentId")[] | undefined;
distinct?: "id" | "createdAt" | "userId" | "name" | "updatedAt" | "parentId" | ("id" | "createdAt" | "userId" | "name" | "updatedAt" | "parentId")[] | undefined;
}>;
//# sourceMappingURL=findFirstOrThrowCloudFolder.schema.d.ts.map

View File

@@ -16,12 +16,12 @@ export declare const CommunicationFindFirstOrThrowSelectZodSchema: z.ZodObject<{
user: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
status?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
user?: boolean | undefined;
createdAt?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
channel?: boolean | undefined;
direction?: boolean | undefined;
body?: boolean | undefined;
@@ -29,12 +29,12 @@ export declare const CommunicationFindFirstOrThrowSelectZodSchema: z.ZodObject<{
twilioSid?: boolean | undefined;
}, {
status?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
user?: boolean | undefined;
createdAt?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
channel?: boolean | undefined;
direction?: boolean | undefined;
body?: boolean | undefined;
@@ -59,7 +59,7 @@ export declare const CommunicationFindFirstOrThrowZodSchema: z.ZodObject<{
cursor?: Prisma.CommunicationWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "status" | "createdAt" | "id" | "userId" | "patientId" | "channel" | "direction" | "body" | "callDuration" | "twilioSid" | ("status" | "createdAt" | "id" | "userId" | "patientId" | "channel" | "direction" | "body" | "callDuration" | "twilioSid")[] | undefined;
distinct?: "status" | "id" | "createdAt" | "patientId" | "userId" | "channel" | "direction" | "body" | "callDuration" | "twilioSid" | ("status" | "id" | "createdAt" | "patientId" | "userId" | "channel" | "direction" | "body" | "callDuration" | "twilioSid")[] | undefined;
}, {
where?: Prisma.CommunicationWhereInput | undefined;
include?: Prisma.CommunicationInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -68,6 +68,6 @@ export declare const CommunicationFindFirstOrThrowZodSchema: z.ZodObject<{
cursor?: Prisma.CommunicationWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "status" | "createdAt" | "id" | "userId" | "patientId" | "channel" | "direction" | "body" | "callDuration" | "twilioSid" | ("status" | "createdAt" | "id" | "userId" | "patientId" | "channel" | "direction" | "body" | "callDuration" | "twilioSid")[] | undefined;
distinct?: "status" | "id" | "createdAt" | "patientId" | "userId" | "channel" | "direction" | "body" | "callDuration" | "twilioSid" | ("status" | "id" | "createdAt" | "patientId" | "userId" | "channel" | "direction" | "body" | "callDuration" | "twilioSid")[] | undefined;
}>;
//# sourceMappingURL=findFirstOrThrowCommunication.schema.d.ts.map

View File

@@ -7,15 +7,15 @@ export declare const DatabaseBackupFindFirstOrThrowSelectZodSchema: z.ZodObject<
createdAt: z.ZodOptional<z.ZodBoolean>;
user: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
createdAt?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
}, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
createdAt?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
}>;
export declare const DatabaseBackupFindFirstOrThrowSchema: z.ZodType<Prisma.DatabaseBackupFindFirstOrThrowArgs>;
export declare const DatabaseBackupFindFirstOrThrowZodSchema: z.ZodObject<{
@@ -35,7 +35,7 @@ export declare const DatabaseBackupFindFirstOrThrowZodSchema: z.ZodObject<{
cursor?: Prisma.DatabaseBackupWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "userId" | ("createdAt" | "id" | "userId")[] | undefined;
distinct?: "id" | "createdAt" | "userId" | ("id" | "createdAt" | "userId")[] | undefined;
}, {
where?: Prisma.DatabaseBackupWhereInput | undefined;
include?: Prisma.DatabaseBackupInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -44,6 +44,6 @@ export declare const DatabaseBackupFindFirstOrThrowZodSchema: z.ZodObject<{
cursor?: Prisma.DatabaseBackupWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "userId" | ("createdAt" | "id" | "userId")[] | undefined;
distinct?: "id" | "createdAt" | "userId" | ("id" | "createdAt" | "userId")[] | undefined;
}>;
//# sourceMappingURL=findFirstOrThrowDatabaseBackup.schema.d.ts.map

View File

@@ -10,15 +10,15 @@ export declare const InsuranceCredentialFindFirstOrThrowSelectZodSchema: z.ZodOb
user: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
id?: boolean | undefined;
userId?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
siteKey?: boolean | undefined;
username?: boolean | undefined;
password?: boolean | undefined;
}, {
id?: boolean | undefined;
userId?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
siteKey?: boolean | undefined;
username?: boolean | undefined;
password?: boolean | undefined;

View File

@@ -12,18 +12,18 @@ export declare const NotificationFindFirstOrThrowSelectZodSchema: z.ZodObject<{
}, "strict", z.ZodTypeAny, {
message?: boolean | undefined;
type?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
createdAt?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
read?: boolean | undefined;
}, {
message?: boolean | undefined;
type?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
createdAt?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
read?: boolean | undefined;
}>;
export declare const NotificationFindFirstOrThrowSchema: z.ZodType<Prisma.NotificationFindFirstOrThrowArgs>;
@@ -44,7 +44,7 @@ export declare const NotificationFindFirstOrThrowZodSchema: z.ZodObject<{
cursor?: Prisma.NotificationWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "message" | "type" | "createdAt" | "id" | "userId" | "read" | ("message" | "type" | "createdAt" | "id" | "userId" | "read")[] | undefined;
distinct?: "message" | "type" | "id" | "createdAt" | "userId" | "read" | ("message" | "type" | "id" | "createdAt" | "userId" | "read")[] | undefined;
}, {
where?: Prisma.NotificationWhereInput | undefined;
include?: Prisma.NotificationInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -53,6 +53,6 @@ export declare const NotificationFindFirstOrThrowZodSchema: z.ZodObject<{
cursor?: Prisma.NotificationWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "message" | "type" | "createdAt" | "id" | "userId" | "read" | ("message" | "type" | "createdAt" | "id" | "userId" | "read")[] | undefined;
distinct?: "message" | "type" | "id" | "createdAt" | "userId" | "read" | ("message" | "type" | "id" | "createdAt" | "userId" | "read")[] | undefined;
}>;
//# sourceMappingURL=findFirstOrThrowNotification.schema.d.ts.map

View File

@@ -8,20 +8,29 @@ export declare const NpiProviderFindFirstOrThrowSelectZodSchema: z.ZodObject<{
providerName: z.ZodOptional<z.ZodBoolean>;
createdAt: z.ZodOptional<z.ZodBoolean>;
user: z.ZodOptional<z.ZodBoolean>;
claims: z.ZodOptional<z.ZodBoolean>;
appointmentProcedures: z.ZodOptional<z.ZodBoolean>;
_count: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
id?: boolean | undefined;
createdAt?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
claims?: boolean | undefined;
npiNumber?: boolean | undefined;
providerName?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
user?: boolean | undefined;
appointmentProcedures?: boolean | undefined;
_count?: boolean | undefined;
}, {
id?: boolean | undefined;
createdAt?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
claims?: boolean | undefined;
npiNumber?: boolean | undefined;
providerName?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
user?: boolean | undefined;
appointmentProcedures?: boolean | undefined;
_count?: boolean | undefined;
}>;
export declare const NpiProviderFindFirstOrThrowSchema: z.ZodType<Prisma.NpiProviderFindFirstOrThrowArgs>;
export declare const NpiProviderFindFirstOrThrowZodSchema: z.ZodObject<{
@@ -41,7 +50,7 @@ export declare const NpiProviderFindFirstOrThrowZodSchema: z.ZodObject<{
cursor?: Prisma.NpiProviderWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "npiNumber" | "providerName" | "createdAt" | "id" | "userId" | ("npiNumber" | "providerName" | "createdAt" | "id" | "userId")[] | undefined;
distinct?: "id" | "createdAt" | "userId" | "npiNumber" | "providerName" | ("id" | "createdAt" | "userId" | "npiNumber" | "providerName")[] | undefined;
}, {
where?: Prisma.NpiProviderWhereInput | undefined;
include?: Prisma.NpiProviderInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -50,6 +59,6 @@ export declare const NpiProviderFindFirstOrThrowZodSchema: z.ZodObject<{
cursor?: Prisma.NpiProviderWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "npiNumber" | "providerName" | "createdAt" | "id" | "userId" | ("npiNumber" | "providerName" | "createdAt" | "id" | "userId")[] | undefined;
distinct?: "id" | "createdAt" | "userId" | "npiNumber" | "providerName" | ("id" | "createdAt" | "userId" | "npiNumber" | "providerName")[] | undefined;
}>;
//# sourceMappingURL=findFirstOrThrowNpiProvider.schema.d.ts.map

View File

@@ -1 +1 @@
{"version":3,"file":"findFirstOrThrowNpiProvider.schema.d.ts","sourceRoot":"","sources":["findFirstOrThrowNpiProvider.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,uCAAuC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,iBAAiB,CAOzB,CAAC;AAEhE,eAAO,MAAM,0CAA0C;;;;;;;;;;;;;;;;;;;;;EAO1C,CAAC;AAEd,eAAO,MAAM,iCAAiC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,+BAA+B,CAAunB,CAAC;AAExtB,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAsjB,CAAC"}
{"version":3,"file":"findFirstOrThrowNpiProvider.schema.d.ts","sourceRoot":"","sources":["findFirstOrThrowNpiProvider.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,uCAAuC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,iBAAiB,CAUzB,CAAC;AAEhE,eAAO,MAAM,0CAA0C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAU1C,CAAC;AAEd,eAAO,MAAM,iCAAiC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,+BAA+B,CAAunB,CAAC;AAExtB,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAsjB,CAAC"}

View File

@@ -48,7 +48,10 @@ exports.NpiProviderFindFirstOrThrowSelectSchema = z.object({
npiNumber: z.boolean().optional(),
providerName: z.boolean().optional(),
createdAt: z.boolean().optional(),
user: z.boolean().optional()
user: z.boolean().optional(),
claims: z.boolean().optional(),
appointmentProcedures: z.boolean().optional(),
_count: z.boolean().optional()
}).strict();
exports.NpiProviderFindFirstOrThrowSelectZodSchema = z.object({
id: z.boolean().optional(),
@@ -56,7 +59,10 @@ exports.NpiProviderFindFirstOrThrowSelectZodSchema = z.object({
npiNumber: z.boolean().optional(),
providerName: z.boolean().optional(),
createdAt: z.boolean().optional(),
user: z.boolean().optional()
user: z.boolean().optional(),
claims: z.boolean().optional(),
appointmentProcedures: z.boolean().optional(),
_count: z.boolean().optional()
}).strict();
exports.NpiProviderFindFirstOrThrowSchema = z.object({ select: exports.NpiProviderFindFirstOrThrowSelectSchema.optional(), include: z.lazy(() => NpiProviderInclude_schema_1.NpiProviderIncludeObjectSchema.optional()), orderBy: z.union([NpiProviderOrderByWithRelationInput_schema_1.NpiProviderOrderByWithRelationInputObjectSchema, NpiProviderOrderByWithRelationInput_schema_1.NpiProviderOrderByWithRelationInputObjectSchema.array()]).optional(), where: NpiProviderWhereInput_schema_1.NpiProviderWhereInputObjectSchema.optional(), cursor: NpiProviderWhereUniqueInput_schema_1.NpiProviderWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([NpiProviderScalarFieldEnum_schema_1.NpiProviderScalarFieldEnumSchema, NpiProviderScalarFieldEnum_schema_1.NpiProviderScalarFieldEnumSchema.array()]).optional() }).strict();
exports.NpiProviderFindFirstOrThrowZodSchema = z.object({ select: exports.NpiProviderFindFirstOrThrowSelectSchema.optional(), include: z.lazy(() => NpiProviderInclude_schema_1.NpiProviderIncludeObjectSchema.optional()), orderBy: z.union([NpiProviderOrderByWithRelationInput_schema_1.NpiProviderOrderByWithRelationInputObjectSchema, NpiProviderOrderByWithRelationInput_schema_1.NpiProviderOrderByWithRelationInputObjectSchema.array()]).optional(), where: NpiProviderWhereInput_schema_1.NpiProviderWhereInputObjectSchema.optional(), cursor: NpiProviderWhereUniqueInput_schema_1.NpiProviderWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([NpiProviderScalarFieldEnum_schema_1.NpiProviderScalarFieldEnumSchema, NpiProviderScalarFieldEnum_schema_1.NpiProviderScalarFieldEnumSchema.array()]).optional() }).strict();

View File

@@ -32,11 +32,11 @@ export declare const PatientFindFirstOrThrowSelectZodSchema: z.ZodObject<{
_count: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
status?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
createdAt?: boolean | undefined;
user?: boolean | undefined;
procedures?: boolean | undefined;
userId?: boolean | undefined;
claims?: boolean | undefined;
email?: boolean | undefined;
phone?: boolean | undefined;
@@ -61,11 +61,11 @@ export declare const PatientFindFirstOrThrowSelectZodSchema: z.ZodObject<{
_count?: boolean | undefined;
}, {
status?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
createdAt?: boolean | undefined;
user?: boolean | undefined;
procedures?: boolean | undefined;
userId?: boolean | undefined;
claims?: boolean | undefined;
email?: boolean | undefined;
phone?: boolean | undefined;
@@ -107,7 +107,7 @@ export declare const PatientFindFirstOrThrowZodSchema: z.ZodObject<{
cursor?: Prisma.PatientWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "status" | "createdAt" | "id" | "userId" | "email" | "phone" | "dateOfBirth" | "insuranceProvider" | "firstName" | "lastName" | "gender" | "address" | "city" | "zipCode" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions" | ("status" | "createdAt" | "id" | "userId" | "email" | "phone" | "dateOfBirth" | "insuranceProvider" | "firstName" | "lastName" | "gender" | "address" | "city" | "zipCode" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions")[] | undefined;
distinct?: "status" | "id" | "createdAt" | "userId" | "email" | "phone" | "dateOfBirth" | "insuranceProvider" | "firstName" | "lastName" | "gender" | "address" | "city" | "zipCode" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions" | ("status" | "id" | "createdAt" | "userId" | "email" | "phone" | "dateOfBirth" | "insuranceProvider" | "firstName" | "lastName" | "gender" | "address" | "city" | "zipCode" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions")[] | undefined;
}, {
where?: Prisma.PatientWhereInput | undefined;
include?: Prisma.PatientInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -116,6 +116,6 @@ export declare const PatientFindFirstOrThrowZodSchema: z.ZodObject<{
cursor?: Prisma.PatientWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "status" | "createdAt" | "id" | "userId" | "email" | "phone" | "dateOfBirth" | "insuranceProvider" | "firstName" | "lastName" | "gender" | "address" | "city" | "zipCode" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions" | ("status" | "createdAt" | "id" | "userId" | "email" | "phone" | "dateOfBirth" | "insuranceProvider" | "firstName" | "lastName" | "gender" | "address" | "city" | "zipCode" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions")[] | undefined;
distinct?: "status" | "id" | "createdAt" | "userId" | "email" | "phone" | "dateOfBirth" | "insuranceProvider" | "firstName" | "lastName" | "gender" | "address" | "city" | "zipCode" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions" | ("status" | "id" | "createdAt" | "userId" | "email" | "phone" | "dateOfBirth" | "insuranceProvider" | "firstName" | "lastName" | "gender" | "address" | "city" | "zipCode" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions")[] | undefined;
}>;
//# sourceMappingURL=findFirstOrThrowPatient.schema.d.ts.map

View File

@@ -13,27 +13,27 @@ export declare const PatientDocumentFindFirstOrThrowSelectZodSchema: z.ZodObject
updatedAt: z.ZodOptional<z.ZodBoolean>;
patient: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
id?: boolean | undefined;
filename?: boolean | undefined;
uploadedAt?: boolean | undefined;
id?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | undefined;
mimeType?: boolean | undefined;
filePath?: boolean | undefined;
updatedAt?: boolean | undefined;
originalName?: boolean | undefined;
fileSize?: boolean | undefined;
filePath?: boolean | undefined;
}, {
id?: boolean | undefined;
filename?: boolean | undefined;
uploadedAt?: boolean | undefined;
id?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | undefined;
mimeType?: boolean | undefined;
filePath?: boolean | undefined;
updatedAt?: boolean | undefined;
originalName?: boolean | undefined;
fileSize?: boolean | undefined;
filePath?: boolean | undefined;
}>;
export declare const PatientDocumentFindFirstOrThrowSchema: z.ZodType<Prisma.PatientDocumentFindFirstOrThrowArgs>;
export declare const PatientDocumentFindFirstOrThrowZodSchema: z.ZodObject<{
@@ -53,7 +53,7 @@ export declare const PatientDocumentFindFirstOrThrowZodSchema: z.ZodObject<{
cursor?: Prisma.PatientDocumentWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "id" | "filename" | "uploadedAt" | "patientId" | "mimeType" | "updatedAt" | "originalName" | "fileSize" | "filePath" | ("id" | "filename" | "uploadedAt" | "patientId" | "mimeType" | "updatedAt" | "originalName" | "fileSize" | "filePath")[] | undefined;
distinct?: "filename" | "uploadedAt" | "id" | "patientId" | "mimeType" | "filePath" | "updatedAt" | "originalName" | "fileSize" | ("filename" | "uploadedAt" | "id" | "patientId" | "mimeType" | "filePath" | "updatedAt" | "originalName" | "fileSize")[] | undefined;
}, {
where?: Prisma.PatientDocumentWhereInput | undefined;
include?: Prisma.PatientDocumentInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -62,6 +62,6 @@ export declare const PatientDocumentFindFirstOrThrowZodSchema: z.ZodObject<{
cursor?: Prisma.PatientDocumentWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "id" | "filename" | "uploadedAt" | "patientId" | "mimeType" | "updatedAt" | "originalName" | "fileSize" | "filePath" | ("id" | "filename" | "uploadedAt" | "patientId" | "mimeType" | "updatedAt" | "originalName" | "fileSize" | "filePath")[] | undefined;
distinct?: "filename" | "uploadedAt" | "id" | "patientId" | "mimeType" | "filePath" | "updatedAt" | "originalName" | "fileSize" | ("filename" | "uploadedAt" | "id" | "patientId" | "mimeType" | "filePath" | "updatedAt" | "originalName" | "fileSize")[] | undefined;
}>;
//# sourceMappingURL=findFirstOrThrowPatientDocument.schema.d.ts.map

View File

@@ -24,12 +24,12 @@ export declare const PaymentFindFirstOrThrowSelectZodSchema: z.ZodObject<{
_count: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
status?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
createdAt?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | undefined;
notes?: boolean | undefined;
userId?: boolean | undefined;
claimId?: boolean | undefined;
claim?: boolean | undefined;
totalBilled?: boolean | undefined;
@@ -45,12 +45,12 @@ export declare const PaymentFindFirstOrThrowSelectZodSchema: z.ZodObject<{
_count?: boolean | undefined;
}, {
status?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
createdAt?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | undefined;
notes?: boolean | undefined;
userId?: boolean | undefined;
claimId?: boolean | undefined;
claim?: boolean | undefined;
totalBilled?: boolean | undefined;
@@ -83,7 +83,7 @@ export declare const PaymentFindFirstOrThrowZodSchema: z.ZodObject<{
cursor?: Prisma.PaymentWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "status" | "createdAt" | "id" | "userId" | "patientId" | "notes" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById" | ("status" | "createdAt" | "id" | "userId" | "patientId" | "notes" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById")[] | undefined;
distinct?: "status" | "id" | "createdAt" | "patientId" | "notes" | "userId" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById" | ("status" | "id" | "createdAt" | "patientId" | "notes" | "userId" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById")[] | undefined;
}, {
where?: Prisma.PaymentWhereInput | undefined;
include?: Prisma.PaymentInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -92,6 +92,6 @@ export declare const PaymentFindFirstOrThrowZodSchema: z.ZodObject<{
cursor?: Prisma.PaymentWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "status" | "createdAt" | "id" | "userId" | "patientId" | "notes" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById" | ("status" | "createdAt" | "id" | "userId" | "patientId" | "notes" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById")[] | undefined;
distinct?: "status" | "id" | "createdAt" | "patientId" | "notes" | "userId" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById" | ("status" | "id" | "createdAt" | "patientId" | "notes" | "userId" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById")[] | undefined;
}>;
//# sourceMappingURL=findFirstOrThrowPayment.schema.d.ts.map

View File

@@ -9,17 +9,17 @@ export declare const PdfFileFindFirstOrThrowSelectZodSchema: z.ZodObject<{
groupId: z.ZodOptional<z.ZodBoolean>;
group: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
id?: boolean | undefined;
filename?: boolean | undefined;
pdfData?: boolean | undefined;
uploadedAt?: boolean | undefined;
id?: boolean | undefined;
groupId?: boolean | undefined;
group?: boolean | undefined;
}, {
id?: boolean | undefined;
filename?: boolean | undefined;
pdfData?: boolean | undefined;
uploadedAt?: boolean | undefined;
id?: boolean | undefined;
groupId?: boolean | undefined;
group?: boolean | undefined;
}>;
@@ -41,7 +41,7 @@ export declare const PdfFileFindFirstOrThrowZodSchema: z.ZodObject<{
cursor?: Prisma.PdfFileWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "id" | "filename" | "pdfData" | "uploadedAt" | "groupId" | ("id" | "filename" | "pdfData" | "uploadedAt" | "groupId")[] | undefined;
distinct?: "filename" | "pdfData" | "uploadedAt" | "id" | "groupId" | ("filename" | "pdfData" | "uploadedAt" | "id" | "groupId")[] | undefined;
}, {
where?: Prisma.PdfFileWhereInput | undefined;
include?: Prisma.PdfFileInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -50,6 +50,6 @@ export declare const PdfFileFindFirstOrThrowZodSchema: z.ZodObject<{
cursor?: Prisma.PdfFileWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "id" | "filename" | "pdfData" | "uploadedAt" | "groupId" | ("id" | "filename" | "pdfData" | "uploadedAt" | "groupId")[] | undefined;
distinct?: "filename" | "pdfData" | "uploadedAt" | "id" | "groupId" | ("filename" | "pdfData" | "uploadedAt" | "id" | "groupId")[] | undefined;
}>;
//# sourceMappingURL=findFirstOrThrowPdfFile.schema.d.ts.map

View File

@@ -11,19 +11,19 @@ export declare const PdfGroupFindFirstOrThrowSelectZodSchema: z.ZodObject<{
pdfs: z.ZodOptional<z.ZodBoolean>;
_count: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
title?: boolean | undefined;
titleKey?: boolean | undefined;
createdAt?: boolean | undefined;
pdfs?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | undefined;
_count?: boolean | undefined;
}, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
title?: boolean | undefined;
titleKey?: boolean | undefined;
createdAt?: boolean | undefined;
pdfs?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | undefined;
@@ -47,7 +47,7 @@ export declare const PdfGroupFindFirstOrThrowZodSchema: z.ZodObject<{
cursor?: Prisma.PdfGroupWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "title" | "titleKey" | "patientId" | ("createdAt" | "id" | "title" | "titleKey" | "patientId")[] | undefined;
distinct?: "id" | "title" | "titleKey" | "createdAt" | "patientId" | ("id" | "title" | "titleKey" | "createdAt" | "patientId")[] | undefined;
}, {
where?: Prisma.PdfGroupWhereInput | undefined;
include?: Prisma.PdfGroupInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -56,6 +56,6 @@ export declare const PdfGroupFindFirstOrThrowZodSchema: z.ZodObject<{
cursor?: Prisma.PdfGroupWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "title" | "titleKey" | "patientId" | ("createdAt" | "id" | "title" | "titleKey" | "patientId")[] | undefined;
distinct?: "id" | "title" | "titleKey" | "createdAt" | "patientId" | ("id" | "title" | "titleKey" | "createdAt" | "patientId")[] | undefined;
}>;
//# sourceMappingURL=findFirstOrThrowPdfGroup.schema.d.ts.map

View File

@@ -16,8 +16,8 @@ export declare const ServiceLineTransactionFindFirstOrThrowSelectZodSchema: z.Zo
payment: z.ZodOptional<z.ZodBoolean>;
serviceLine: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
createdAt?: boolean | undefined;
notes?: boolean | undefined;
paymentId?: boolean | undefined;
transactionId?: boolean | undefined;
@@ -30,8 +30,8 @@ export declare const ServiceLineTransactionFindFirstOrThrowSelectZodSchema: z.Zo
payment?: boolean | undefined;
serviceLine?: boolean | undefined;
}, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
createdAt?: boolean | undefined;
notes?: boolean | undefined;
paymentId?: boolean | undefined;
transactionId?: boolean | undefined;
@@ -62,7 +62,7 @@ export declare const ServiceLineTransactionFindFirstOrThrowZodSchema: z.ZodObjec
cursor?: Prisma.ServiceLineTransactionWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "notes" | "paymentId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "serviceLineId" | ("createdAt" | "id" | "notes" | "paymentId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "serviceLineId")[] | undefined;
distinct?: "id" | "createdAt" | "notes" | "paymentId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "serviceLineId" | ("id" | "createdAt" | "notes" | "paymentId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "serviceLineId")[] | undefined;
}, {
where?: Prisma.ServiceLineTransactionWhereInput | undefined;
include?: Prisma.ServiceLineTransactionInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -71,6 +71,6 @@ export declare const ServiceLineTransactionFindFirstOrThrowZodSchema: z.ZodObjec
cursor?: Prisma.ServiceLineTransactionWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "notes" | "paymentId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "serviceLineId" | ("createdAt" | "id" | "notes" | "paymentId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "serviceLineId")[] | undefined;
distinct?: "id" | "createdAt" | "notes" | "paymentId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "serviceLineId" | ("id" | "createdAt" | "notes" | "paymentId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "serviceLineId")[] | undefined;
}>;
//# sourceMappingURL=findFirstOrThrowServiceLineTransaction.schema.d.ts.map

View File

@@ -14,10 +14,10 @@ export declare const StaffFindFirstOrThrowSelectZodSchema: z.ZodObject<{
claims: z.ZodOptional<z.ZodBoolean>;
_count: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
createdAt?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
claims?: boolean | undefined;
name?: boolean | undefined;
email?: boolean | undefined;
@@ -26,10 +26,10 @@ export declare const StaffFindFirstOrThrowSelectZodSchema: z.ZodObject<{
appointments?: boolean | undefined;
_count?: boolean | undefined;
}, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
createdAt?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
claims?: boolean | undefined;
name?: boolean | undefined;
email?: boolean | undefined;
@@ -56,7 +56,7 @@ export declare const StaffFindFirstOrThrowZodSchema: z.ZodObject<{
cursor?: Prisma.StaffWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "userId" | "name" | "email" | "role" | "phone" | ("createdAt" | "id" | "userId" | "name" | "email" | "role" | "phone")[] | undefined;
distinct?: "id" | "createdAt" | "userId" | "name" | "email" | "role" | "phone" | ("id" | "createdAt" | "userId" | "name" | "email" | "role" | "phone")[] | undefined;
}, {
where?: Prisma.StaffWhereInput | undefined;
include?: Prisma.StaffInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -65,6 +65,6 @@ export declare const StaffFindFirstOrThrowZodSchema: z.ZodObject<{
cursor?: Prisma.StaffWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "userId" | "name" | "email" | "role" | "phone" | ("createdAt" | "id" | "userId" | "name" | "email" | "role" | "phone")[] | undefined;
distinct?: "id" | "createdAt" | "userId" | "name" | "email" | "role" | "phone" | ("id" | "createdAt" | "userId" | "name" | "email" | "role" | "phone")[] | undefined;
}>;
//# sourceMappingURL=findFirstOrThrowStaff.schema.d.ts.map

View File

@@ -32,11 +32,11 @@ export declare const PatientFindFirstSelectZodSchema: z.ZodObject<{
_count: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
status?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
createdAt?: boolean | undefined;
user?: boolean | undefined;
procedures?: boolean | undefined;
userId?: boolean | undefined;
claims?: boolean | undefined;
email?: boolean | undefined;
phone?: boolean | undefined;
@@ -61,11 +61,11 @@ export declare const PatientFindFirstSelectZodSchema: z.ZodObject<{
_count?: boolean | undefined;
}, {
status?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
createdAt?: boolean | undefined;
user?: boolean | undefined;
procedures?: boolean | undefined;
userId?: boolean | undefined;
claims?: boolean | undefined;
email?: boolean | undefined;
phone?: boolean | undefined;
@@ -107,7 +107,7 @@ export declare const PatientFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.PatientWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "status" | "createdAt" | "id" | "userId" | "email" | "phone" | "dateOfBirth" | "insuranceProvider" | "firstName" | "lastName" | "gender" | "address" | "city" | "zipCode" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions" | ("status" | "createdAt" | "id" | "userId" | "email" | "phone" | "dateOfBirth" | "insuranceProvider" | "firstName" | "lastName" | "gender" | "address" | "city" | "zipCode" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions")[] | undefined;
distinct?: "status" | "id" | "createdAt" | "userId" | "email" | "phone" | "dateOfBirth" | "insuranceProvider" | "firstName" | "lastName" | "gender" | "address" | "city" | "zipCode" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions" | ("status" | "id" | "createdAt" | "userId" | "email" | "phone" | "dateOfBirth" | "insuranceProvider" | "firstName" | "lastName" | "gender" | "address" | "city" | "zipCode" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions")[] | undefined;
}, {
where?: Prisma.PatientWhereInput | undefined;
include?: Prisma.PatientInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -116,6 +116,6 @@ export declare const PatientFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.PatientWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "status" | "createdAt" | "id" | "userId" | "email" | "phone" | "dateOfBirth" | "insuranceProvider" | "firstName" | "lastName" | "gender" | "address" | "city" | "zipCode" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions" | ("status" | "createdAt" | "id" | "userId" | "email" | "phone" | "dateOfBirth" | "insuranceProvider" | "firstName" | "lastName" | "gender" | "address" | "city" | "zipCode" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions")[] | undefined;
distinct?: "status" | "id" | "createdAt" | "userId" | "email" | "phone" | "dateOfBirth" | "insuranceProvider" | "firstName" | "lastName" | "gender" | "address" | "city" | "zipCode" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions" | ("status" | "id" | "createdAt" | "userId" | "email" | "phone" | "dateOfBirth" | "insuranceProvider" | "firstName" | "lastName" | "gender" | "address" | "city" | "zipCode" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions")[] | undefined;
}>;
//# sourceMappingURL=findFirstPatient.schema.d.ts.map

View File

@@ -13,27 +13,27 @@ export declare const PatientDocumentFindFirstSelectZodSchema: z.ZodObject<{
updatedAt: z.ZodOptional<z.ZodBoolean>;
patient: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
id?: boolean | undefined;
filename?: boolean | undefined;
uploadedAt?: boolean | undefined;
id?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | undefined;
mimeType?: boolean | undefined;
filePath?: boolean | undefined;
updatedAt?: boolean | undefined;
originalName?: boolean | undefined;
fileSize?: boolean | undefined;
filePath?: boolean | undefined;
}, {
id?: boolean | undefined;
filename?: boolean | undefined;
uploadedAt?: boolean | undefined;
id?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | undefined;
mimeType?: boolean | undefined;
filePath?: boolean | undefined;
updatedAt?: boolean | undefined;
originalName?: boolean | undefined;
fileSize?: boolean | undefined;
filePath?: boolean | undefined;
}>;
export declare const PatientDocumentFindFirstSchema: z.ZodType<Prisma.PatientDocumentFindFirstArgs>;
export declare const PatientDocumentFindFirstZodSchema: z.ZodObject<{
@@ -53,7 +53,7 @@ export declare const PatientDocumentFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.PatientDocumentWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "id" | "filename" | "uploadedAt" | "patientId" | "mimeType" | "updatedAt" | "originalName" | "fileSize" | "filePath" | ("id" | "filename" | "uploadedAt" | "patientId" | "mimeType" | "updatedAt" | "originalName" | "fileSize" | "filePath")[] | undefined;
distinct?: "filename" | "uploadedAt" | "id" | "patientId" | "mimeType" | "filePath" | "updatedAt" | "originalName" | "fileSize" | ("filename" | "uploadedAt" | "id" | "patientId" | "mimeType" | "filePath" | "updatedAt" | "originalName" | "fileSize")[] | undefined;
}, {
where?: Prisma.PatientDocumentWhereInput | undefined;
include?: Prisma.PatientDocumentInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -62,6 +62,6 @@ export declare const PatientDocumentFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.PatientDocumentWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "id" | "filename" | "uploadedAt" | "patientId" | "mimeType" | "updatedAt" | "originalName" | "fileSize" | "filePath" | ("id" | "filename" | "uploadedAt" | "patientId" | "mimeType" | "updatedAt" | "originalName" | "fileSize" | "filePath")[] | undefined;
distinct?: "filename" | "uploadedAt" | "id" | "patientId" | "mimeType" | "filePath" | "updatedAt" | "originalName" | "fileSize" | ("filename" | "uploadedAt" | "id" | "patientId" | "mimeType" | "filePath" | "updatedAt" | "originalName" | "fileSize")[] | undefined;
}>;
//# sourceMappingURL=findFirstPatientDocument.schema.d.ts.map

View File

@@ -24,12 +24,12 @@ export declare const PaymentFindFirstSelectZodSchema: z.ZodObject<{
_count: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
status?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
createdAt?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | undefined;
notes?: boolean | undefined;
userId?: boolean | undefined;
claimId?: boolean | undefined;
claim?: boolean | undefined;
totalBilled?: boolean | undefined;
@@ -45,12 +45,12 @@ export declare const PaymentFindFirstSelectZodSchema: z.ZodObject<{
_count?: boolean | undefined;
}, {
status?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
createdAt?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | undefined;
notes?: boolean | undefined;
userId?: boolean | undefined;
claimId?: boolean | undefined;
claim?: boolean | undefined;
totalBilled?: boolean | undefined;
@@ -83,7 +83,7 @@ export declare const PaymentFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.PaymentWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "status" | "createdAt" | "id" | "userId" | "patientId" | "notes" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById" | ("status" | "createdAt" | "id" | "userId" | "patientId" | "notes" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById")[] | undefined;
distinct?: "status" | "id" | "createdAt" | "patientId" | "notes" | "userId" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById" | ("status" | "id" | "createdAt" | "patientId" | "notes" | "userId" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById")[] | undefined;
}, {
where?: Prisma.PaymentWhereInput | undefined;
include?: Prisma.PaymentInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -92,6 +92,6 @@ export declare const PaymentFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.PaymentWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "status" | "createdAt" | "id" | "userId" | "patientId" | "notes" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById" | ("status" | "createdAt" | "id" | "userId" | "patientId" | "notes" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById")[] | undefined;
distinct?: "status" | "id" | "createdAt" | "patientId" | "notes" | "userId" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById" | ("status" | "id" | "createdAt" | "patientId" | "notes" | "userId" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById")[] | undefined;
}>;
//# sourceMappingURL=findFirstPayment.schema.d.ts.map

View File

@@ -9,17 +9,17 @@ export declare const PdfFileFindFirstSelectZodSchema: z.ZodObject<{
groupId: z.ZodOptional<z.ZodBoolean>;
group: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
id?: boolean | undefined;
filename?: boolean | undefined;
pdfData?: boolean | undefined;
uploadedAt?: boolean | undefined;
id?: boolean | undefined;
groupId?: boolean | undefined;
group?: boolean | undefined;
}, {
id?: boolean | undefined;
filename?: boolean | undefined;
pdfData?: boolean | undefined;
uploadedAt?: boolean | undefined;
id?: boolean | undefined;
groupId?: boolean | undefined;
group?: boolean | undefined;
}>;
@@ -41,7 +41,7 @@ export declare const PdfFileFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.PdfFileWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "id" | "filename" | "pdfData" | "uploadedAt" | "groupId" | ("id" | "filename" | "pdfData" | "uploadedAt" | "groupId")[] | undefined;
distinct?: "filename" | "pdfData" | "uploadedAt" | "id" | "groupId" | ("filename" | "pdfData" | "uploadedAt" | "id" | "groupId")[] | undefined;
}, {
where?: Prisma.PdfFileWhereInput | undefined;
include?: Prisma.PdfFileInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -50,6 +50,6 @@ export declare const PdfFileFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.PdfFileWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "id" | "filename" | "pdfData" | "uploadedAt" | "groupId" | ("id" | "filename" | "pdfData" | "uploadedAt" | "groupId")[] | undefined;
distinct?: "filename" | "pdfData" | "uploadedAt" | "id" | "groupId" | ("filename" | "pdfData" | "uploadedAt" | "id" | "groupId")[] | undefined;
}>;
//# sourceMappingURL=findFirstPdfFile.schema.d.ts.map

View File

@@ -11,19 +11,19 @@ export declare const PdfGroupFindFirstSelectZodSchema: z.ZodObject<{
pdfs: z.ZodOptional<z.ZodBoolean>;
_count: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
title?: boolean | undefined;
titleKey?: boolean | undefined;
createdAt?: boolean | undefined;
pdfs?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | undefined;
_count?: boolean | undefined;
}, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
title?: boolean | undefined;
titleKey?: boolean | undefined;
createdAt?: boolean | undefined;
pdfs?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | undefined;
@@ -47,7 +47,7 @@ export declare const PdfGroupFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.PdfGroupWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "title" | "titleKey" | "patientId" | ("createdAt" | "id" | "title" | "titleKey" | "patientId")[] | undefined;
distinct?: "id" | "title" | "titleKey" | "createdAt" | "patientId" | ("id" | "title" | "titleKey" | "createdAt" | "patientId")[] | undefined;
}, {
where?: Prisma.PdfGroupWhereInput | undefined;
include?: Prisma.PdfGroupInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -56,6 +56,6 @@ export declare const PdfGroupFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.PdfGroupWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "title" | "titleKey" | "patientId" | ("createdAt" | "id" | "title" | "titleKey" | "patientId")[] | undefined;
distinct?: "id" | "title" | "titleKey" | "createdAt" | "patientId" | ("id" | "title" | "titleKey" | "createdAt" | "patientId")[] | undefined;
}>;
//# sourceMappingURL=findFirstPdfGroup.schema.d.ts.map

View File

@@ -16,8 +16,8 @@ export declare const ServiceLineTransactionFindFirstSelectZodSchema: z.ZodObject
payment: z.ZodOptional<z.ZodBoolean>;
serviceLine: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
createdAt?: boolean | undefined;
notes?: boolean | undefined;
paymentId?: boolean | undefined;
transactionId?: boolean | undefined;
@@ -30,8 +30,8 @@ export declare const ServiceLineTransactionFindFirstSelectZodSchema: z.ZodObject
payment?: boolean | undefined;
serviceLine?: boolean | undefined;
}, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
createdAt?: boolean | undefined;
notes?: boolean | undefined;
paymentId?: boolean | undefined;
transactionId?: boolean | undefined;
@@ -62,7 +62,7 @@ export declare const ServiceLineTransactionFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.ServiceLineTransactionWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "notes" | "paymentId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "serviceLineId" | ("createdAt" | "id" | "notes" | "paymentId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "serviceLineId")[] | undefined;
distinct?: "id" | "createdAt" | "notes" | "paymentId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "serviceLineId" | ("id" | "createdAt" | "notes" | "paymentId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "serviceLineId")[] | undefined;
}, {
where?: Prisma.ServiceLineTransactionWhereInput | undefined;
include?: Prisma.ServiceLineTransactionInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -71,6 +71,6 @@ export declare const ServiceLineTransactionFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.ServiceLineTransactionWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "notes" | "paymentId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "serviceLineId" | ("createdAt" | "id" | "notes" | "paymentId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "serviceLineId")[] | undefined;
distinct?: "id" | "createdAt" | "notes" | "paymentId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "serviceLineId" | ("id" | "createdAt" | "notes" | "paymentId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "serviceLineId")[] | undefined;
}>;
//# sourceMappingURL=findFirstServiceLineTransaction.schema.d.ts.map

View File

@@ -14,10 +14,10 @@ export declare const StaffFindFirstSelectZodSchema: z.ZodObject<{
claims: z.ZodOptional<z.ZodBoolean>;
_count: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
createdAt?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
claims?: boolean | undefined;
name?: boolean | undefined;
email?: boolean | undefined;
@@ -26,10 +26,10 @@ export declare const StaffFindFirstSelectZodSchema: z.ZodObject<{
appointments?: boolean | undefined;
_count?: boolean | undefined;
}, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
createdAt?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
claims?: boolean | undefined;
name?: boolean | undefined;
email?: boolean | undefined;
@@ -56,7 +56,7 @@ export declare const StaffFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.StaffWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "userId" | "name" | "email" | "role" | "phone" | ("createdAt" | "id" | "userId" | "name" | "email" | "role" | "phone")[] | undefined;
distinct?: "id" | "createdAt" | "userId" | "name" | "email" | "role" | "phone" | ("id" | "createdAt" | "userId" | "name" | "email" | "role" | "phone")[] | undefined;
}, {
where?: Prisma.StaffWhereInput | undefined;
include?: Prisma.StaffInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -65,6 +65,6 @@ export declare const StaffFindFirstZodSchema: z.ZodObject<{
cursor?: Prisma.StaffWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "userId" | "name" | "email" | "role" | "phone" | ("createdAt" | "id" | "userId" | "name" | "email" | "role" | "phone")[] | undefined;
distinct?: "id" | "createdAt" | "userId" | "name" | "email" | "role" | "phone" | ("id" | "createdAt" | "userId" | "name" | "email" | "role" | "phone")[] | undefined;
}>;
//# sourceMappingURL=findFirstStaff.schema.d.ts.map

View File

@@ -25,12 +25,10 @@ export declare const AppointmentFindManySelectZodSchema: z.ZodObject<{
}, "strict", z.ZodTypeAny, {
type?: boolean | undefined;
status?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
user?: boolean | undefined;
date?: boolean | undefined;
title?: boolean | undefined;
createdAt?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | undefined;
startTime?: boolean | undefined;
@@ -38,20 +36,20 @@ export declare const AppointmentFindManySelectZodSchema: z.ZodObject<{
notes?: boolean | undefined;
procedureCodeNotes?: boolean | undefined;
eligibilityStatus?: boolean | undefined;
user?: boolean | undefined;
staff?: boolean | undefined;
procedures?: boolean | undefined;
userId?: boolean | undefined;
staffId?: boolean | undefined;
claims?: boolean | undefined;
_count?: boolean | undefined;
}, {
type?: boolean | undefined;
status?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
user?: boolean | undefined;
date?: boolean | undefined;
title?: boolean | undefined;
createdAt?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | undefined;
startTime?: boolean | undefined;
@@ -59,8 +57,10 @@ export declare const AppointmentFindManySelectZodSchema: z.ZodObject<{
notes?: boolean | undefined;
procedureCodeNotes?: boolean | undefined;
eligibilityStatus?: boolean | undefined;
user?: boolean | undefined;
staff?: boolean | undefined;
procedures?: boolean | undefined;
userId?: boolean | undefined;
staffId?: boolean | undefined;
claims?: boolean | undefined;
_count?: boolean | undefined;
@@ -83,7 +83,7 @@ export declare const AppointmentFindManyZodSchema: z.ZodObject<{
cursor?: Prisma.AppointmentWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "type" | "status" | "createdAt" | "id" | "userId" | "date" | "title" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "staffId" | ("type" | "status" | "createdAt" | "id" | "userId" | "date" | "title" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "staffId")[] | undefined;
distinct?: "type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "userId" | "staffId" | ("type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "userId" | "staffId")[] | undefined;
}, {
where?: Prisma.AppointmentWhereInput | undefined;
include?: Prisma.AppointmentInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -92,6 +92,6 @@ export declare const AppointmentFindManyZodSchema: z.ZodObject<{
cursor?: Prisma.AppointmentWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "type" | "status" | "createdAt" | "id" | "userId" | "date" | "title" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "staffId" | ("type" | "status" | "createdAt" | "id" | "userId" | "date" | "title" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "staffId")[] | undefined;
distinct?: "type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "userId" | "staffId" | ("type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "userId" | "staffId")[] | undefined;
}>;
//# sourceMappingURL=findManyAppointment.schema.d.ts.map

View File

@@ -29,6 +29,7 @@ export const AppointmentFindManySelectSchema: z.ZodType<Prisma.AppointmentSelect
staff: z.boolean().optional(),
procedures: z.boolean().optional(),
claims: z.boolean().optional(),
files: z.boolean().optional(),
_count: z.boolean().optional()
}).strict() as unknown as z.ZodType<Prisma.AppointmentSelect>;
@@ -52,6 +53,7 @@ export const AppointmentFindManySelectZodSchema = z.object({
staff: z.boolean().optional(),
procedures: z.boolean().optional(),
claims: z.boolean().optional(),
files: z.boolean().optional(),
_count: z.boolean().optional()
}).strict();

View File

@@ -0,0 +1,32 @@
import type { Prisma } from '../../generated/prisma';
import * as z from 'zod';
import { AppointmentFileIncludeObjectSchema as AppointmentFileIncludeObjectSchema } from './objects/AppointmentFileInclude.schema';
import { AppointmentFileOrderByWithRelationInputObjectSchema as AppointmentFileOrderByWithRelationInputObjectSchema } from './objects/AppointmentFileOrderByWithRelationInput.schema';
import { AppointmentFileWhereInputObjectSchema as AppointmentFileWhereInputObjectSchema } from './objects/AppointmentFileWhereInput.schema';
import { AppointmentFileWhereUniqueInputObjectSchema as AppointmentFileWhereUniqueInputObjectSchema } from './objects/AppointmentFileWhereUniqueInput.schema';
import { AppointmentFileScalarFieldEnumSchema } from './enums/AppointmentFileScalarFieldEnum.schema';
// Select schema needs to be in file to prevent circular imports
//------------------------------------------------------
export const AppointmentFileFindManySelectSchema: z.ZodType<Prisma.AppointmentFileSelect> = z.object({
id: z.boolean().optional(),
appointmentId: z.boolean().optional(),
filename: z.boolean().optional(),
mimeType: z.boolean().optional(),
filePath: z.boolean().optional(),
appointment: z.boolean().optional()
}).strict() as unknown as z.ZodType<Prisma.AppointmentFileSelect>;
export const AppointmentFileFindManySelectZodSchema = z.object({
id: z.boolean().optional(),
appointmentId: z.boolean().optional(),
filename: z.boolean().optional(),
mimeType: z.boolean().optional(),
filePath: z.boolean().optional(),
appointment: z.boolean().optional()
}).strict();
export const AppointmentFileFindManySchema: z.ZodType<Prisma.AppointmentFileFindManyArgs> = z.object({ select: AppointmentFileFindManySelectSchema.optional(), include: z.lazy(() => AppointmentFileIncludeObjectSchema.optional()), orderBy: z.union([AppointmentFileOrderByWithRelationInputObjectSchema, AppointmentFileOrderByWithRelationInputObjectSchema.array()]).optional(), where: AppointmentFileWhereInputObjectSchema.optional(), cursor: AppointmentFileWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AppointmentFileScalarFieldEnumSchema, AppointmentFileScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType<Prisma.AppointmentFileFindManyArgs>;
export const AppointmentFileFindManyZodSchema = z.object({ select: AppointmentFileFindManySelectSchema.optional(), include: z.lazy(() => AppointmentFileIncludeObjectSchema.optional()), orderBy: z.union([AppointmentFileOrderByWithRelationInputObjectSchema, AppointmentFileOrderByWithRelationInputObjectSchema.array()]).optional(), where: AppointmentFileWhereInputObjectSchema.optional(), cursor: AppointmentFileWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AppointmentFileScalarFieldEnumSchema, AppointmentFileScalarFieldEnumSchema.array()]).optional() }).strict();

View File

@@ -5,6 +5,7 @@ export declare const AppointmentProcedureFindManySelectZodSchema: z.ZodObject<{
id: z.ZodOptional<z.ZodBoolean>;
appointmentId: z.ZodOptional<z.ZodBoolean>;
patientId: z.ZodOptional<z.ZodBoolean>;
npiProviderId: z.ZodOptional<z.ZodBoolean>;
procedureCode: z.ZodOptional<z.ZodBoolean>;
procedureLabel: z.ZodOptional<z.ZodBoolean>;
fee: z.ZodOptional<z.ZodBoolean>;
@@ -17,11 +18,13 @@ export declare const AppointmentProcedureFindManySelectZodSchema: z.ZodObject<{
createdAt: z.ZodOptional<z.ZodBoolean>;
appointment: z.ZodOptional<z.ZodBoolean>;
patient: z.ZodOptional<z.ZodBoolean>;
npiProvider: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
createdAt?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | undefined;
npiProviderId?: boolean | undefined;
procedureCode?: boolean | undefined;
procedureLabel?: boolean | undefined;
fee?: boolean | undefined;
@@ -33,11 +36,13 @@ export declare const AppointmentProcedureFindManySelectZodSchema: z.ZodObject<{
comboKey?: boolean | undefined;
appointmentId?: boolean | undefined;
appointment?: boolean | undefined;
npiProvider?: boolean | undefined;
}, {
createdAt?: boolean | undefined;
id?: boolean | undefined;
createdAt?: boolean | undefined;
patientId?: boolean | undefined;
patient?: boolean | undefined;
npiProviderId?: boolean | undefined;
procedureCode?: boolean | undefined;
procedureLabel?: boolean | undefined;
fee?: boolean | undefined;
@@ -49,6 +54,7 @@ export declare const AppointmentProcedureFindManySelectZodSchema: z.ZodObject<{
comboKey?: boolean | undefined;
appointmentId?: boolean | undefined;
appointment?: boolean | undefined;
npiProvider?: boolean | undefined;
}>;
export declare const AppointmentProcedureFindManySchema: z.ZodType<Prisma.AppointmentProcedureFindManyArgs>;
export declare const AppointmentProcedureFindManyZodSchema: z.ZodObject<{
@@ -59,7 +65,7 @@ export declare const AppointmentProcedureFindManyZodSchema: z.ZodObject<{
cursor: z.ZodOptional<z.ZodType<Prisma.AppointmentProcedureWhereUniqueInput, z.ZodTypeDef, Prisma.AppointmentProcedureWhereUniqueInput>>;
take: z.ZodOptional<z.ZodNumber>;
skip: z.ZodOptional<z.ZodNumber>;
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "appointmentId", "patientId", "procedureCode", "procedureLabel", "fee", "category", "toothNumber", "toothSurface", "oralCavityArea", "source", "comboKey", "createdAt"]>, z.ZodArray<z.ZodEnum<["id", "appointmentId", "patientId", "procedureCode", "procedureLabel", "fee", "category", "toothNumber", "toothSurface", "oralCavityArea", "source", "comboKey", "createdAt"]>, "many">]>>;
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "appointmentId", "patientId", "npiProviderId", "procedureCode", "procedureLabel", "fee", "category", "toothNumber", "toothSurface", "oralCavityArea", "source", "comboKey", "createdAt"]>, z.ZodArray<z.ZodEnum<["id", "appointmentId", "patientId", "npiProviderId", "procedureCode", "procedureLabel", "fee", "category", "toothNumber", "toothSurface", "oralCavityArea", "source", "comboKey", "createdAt"]>, "many">]>>;
}, "strict", z.ZodTypeAny, {
where?: Prisma.AppointmentProcedureWhereInput | undefined;
include?: Prisma.AppointmentProcedureInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -68,7 +74,7 @@ export declare const AppointmentProcedureFindManyZodSchema: z.ZodObject<{
cursor?: Prisma.AppointmentProcedureWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "patientId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId" | ("createdAt" | "id" | "patientId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId")[] | undefined;
distinct?: "id" | "createdAt" | "patientId" | "npiProviderId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId" | ("id" | "createdAt" | "patientId" | "npiProviderId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId")[] | undefined;
}, {
where?: Prisma.AppointmentProcedureWhereInput | undefined;
include?: Prisma.AppointmentProcedureInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -77,6 +83,6 @@ export declare const AppointmentProcedureFindManyZodSchema: z.ZodObject<{
cursor?: Prisma.AppointmentProcedureWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "createdAt" | "id" | "patientId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId" | ("createdAt" | "id" | "patientId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId")[] | undefined;
distinct?: "id" | "createdAt" | "patientId" | "npiProviderId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId" | ("id" | "createdAt" | "patientId" | "npiProviderId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId")[] | undefined;
}>;
//# sourceMappingURL=findManyAppointmentProcedure.schema.d.ts.map

View File

@@ -1 +1 @@
{"version":3,"file":"findManyAppointmentProcedure.schema.d.ts","sourceRoot":"","sources":["findManyAppointmentProcedure.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,wCAAwC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,0BAA0B,CAgB1B,CAAC;AAEzE,eAAO,MAAM,2CAA2C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgB3C,CAAC;AAEd,eAAO,MAAM,kCAAkC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,gCAAgC,CAAwrB,CAAC;AAE3xB,eAAO,MAAM,qCAAqC;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAsnB,CAAC"}
{"version":3,"file":"findManyAppointmentProcedure.schema.d.ts","sourceRoot":"","sources":["findManyAppointmentProcedure.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,wCAAwC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,0BAA0B,CAkB1B,CAAC;AAEzE,eAAO,MAAM,2CAA2C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkB3C,CAAC;AAEd,eAAO,MAAM,kCAAkC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,gCAAgC,CAAwrB,CAAC;AAE3xB,eAAO,MAAM,qCAAqC;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAsnB,CAAC"}

View File

@@ -46,6 +46,7 @@ exports.AppointmentProcedureFindManySelectSchema = z.object({
id: z.boolean().optional(),
appointmentId: z.boolean().optional(),
patientId: z.boolean().optional(),
npiProviderId: z.boolean().optional(),
procedureCode: z.boolean().optional(),
procedureLabel: z.boolean().optional(),
fee: z.boolean().optional(),
@@ -57,12 +58,14 @@ exports.AppointmentProcedureFindManySelectSchema = z.object({
comboKey: z.boolean().optional(),
createdAt: z.boolean().optional(),
appointment: z.boolean().optional(),
patient: z.boolean().optional()
patient: z.boolean().optional(),
npiProvider: z.boolean().optional()
}).strict();
exports.AppointmentProcedureFindManySelectZodSchema = z.object({
id: z.boolean().optional(),
appointmentId: z.boolean().optional(),
patientId: z.boolean().optional(),
npiProviderId: z.boolean().optional(),
procedureCode: z.boolean().optional(),
procedureLabel: z.boolean().optional(),
fee: z.boolean().optional(),
@@ -74,7 +77,8 @@ exports.AppointmentProcedureFindManySelectZodSchema = z.object({
comboKey: z.boolean().optional(),
createdAt: z.boolean().optional(),
appointment: z.boolean().optional(),
patient: z.boolean().optional()
patient: z.boolean().optional(),
npiProvider: z.boolean().optional()
}).strict();
exports.AppointmentProcedureFindManySchema = z.object({ select: exports.AppointmentProcedureFindManySelectSchema.optional(), include: z.lazy(() => AppointmentProcedureInclude_schema_1.AppointmentProcedureIncludeObjectSchema.optional()), orderBy: z.union([AppointmentProcedureOrderByWithRelationInput_schema_1.AppointmentProcedureOrderByWithRelationInputObjectSchema, AppointmentProcedureOrderByWithRelationInput_schema_1.AppointmentProcedureOrderByWithRelationInputObjectSchema.array()]).optional(), where: AppointmentProcedureWhereInput_schema_1.AppointmentProcedureWhereInputObjectSchema.optional(), cursor: AppointmentProcedureWhereUniqueInput_schema_1.AppointmentProcedureWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AppointmentProcedureScalarFieldEnum_schema_1.AppointmentProcedureScalarFieldEnumSchema, AppointmentProcedureScalarFieldEnum_schema_1.AppointmentProcedureScalarFieldEnumSchema.array()]).optional() }).strict();
exports.AppointmentProcedureFindManyZodSchema = z.object({ select: exports.AppointmentProcedureFindManySelectSchema.optional(), include: z.lazy(() => AppointmentProcedureInclude_schema_1.AppointmentProcedureIncludeObjectSchema.optional()), orderBy: z.union([AppointmentProcedureOrderByWithRelationInput_schema_1.AppointmentProcedureOrderByWithRelationInputObjectSchema, AppointmentProcedureOrderByWithRelationInput_schema_1.AppointmentProcedureOrderByWithRelationInputObjectSchema.array()]).optional(), where: AppointmentProcedureWhereInput_schema_1.AppointmentProcedureWhereInputObjectSchema.optional(), cursor: AppointmentProcedureWhereUniqueInput_schema_1.AppointmentProcedureWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AppointmentProcedureScalarFieldEnum_schema_1.AppointmentProcedureScalarFieldEnumSchema, AppointmentProcedureScalarFieldEnum_schema_1.AppointmentProcedureScalarFieldEnumSchema.array()]).optional() }).strict();

View File

@@ -10,17 +10,17 @@ export declare const BackupDestinationFindManySelectZodSchema: z.ZodObject<{
user: z.ZodOptional<z.ZodBoolean>;
}, "strict", z.ZodTypeAny, {
path?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
createdAt?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
isActive?: boolean | undefined;
}, {
path?: boolean | undefined;
createdAt?: boolean | undefined;
id?: boolean | undefined;
userId?: boolean | undefined;
createdAt?: boolean | undefined;
user?: boolean | undefined;
userId?: boolean | undefined;
isActive?: boolean | undefined;
}>;
export declare const BackupDestinationFindManySchema: z.ZodType<Prisma.BackupDestinationFindManyArgs>;
@@ -41,7 +41,7 @@ export declare const BackupDestinationFindManyZodSchema: z.ZodObject<{
cursor?: Prisma.BackupDestinationWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "path" | "createdAt" | "id" | "userId" | "isActive" | ("path" | "createdAt" | "id" | "userId" | "isActive")[] | undefined;
distinct?: "path" | "id" | "createdAt" | "userId" | "isActive" | ("path" | "id" | "createdAt" | "userId" | "isActive")[] | undefined;
}, {
where?: Prisma.BackupDestinationWhereInput | undefined;
include?: Prisma.BackupDestinationInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
@@ -50,6 +50,6 @@ export declare const BackupDestinationFindManyZodSchema: z.ZodObject<{
cursor?: Prisma.BackupDestinationWhereUniqueInput | undefined;
take?: number | undefined;
skip?: number | undefined;
distinct?: "path" | "createdAt" | "id" | "userId" | "isActive" | ("path" | "createdAt" | "id" | "userId" | "isActive")[] | undefined;
distinct?: "path" | "id" | "createdAt" | "userId" | "isActive" | ("path" | "id" | "createdAt" | "userId" | "isActive")[] | undefined;
}>;
//# sourceMappingURL=findManyBackupDestination.schema.d.ts.map

Some files were not shown because too many files have changed in this diff Show More