diff --git a/apps/Backend/src/routes/appointments.ts b/apps/Backend/src/routes/appointments.ts index 37e556dd..df83212e 100755 --- a/apps/Backend/src/routes/appointments.ts +++ b/apps/Backend/src/routes/appointments.ts @@ -428,6 +428,7 @@ router.put( if (rawTypeLocked !== undefined) updatePayload.typeLocked = Boolean(rawTypeLocked); if (appointmentData.status !== undefined) updatePayload.status = appointmentData.status; if (appointmentData.notes !== undefined) updatePayload.notes = appointmentData.notes; + if ("npiProviderId" in appointmentData) updatePayload.npiProviderId = appointmentData.npiProviderId ?? null; if (isDateChanged) updatePayload.eligibilityStatus = "UNKNOWN"; // Update appointment diff --git a/apps/Backend/src/routes/claims.ts b/apps/Backend/src/routes/claims.ts index a63fa5c8..a60c0352 100755 --- a/apps/Backend/src/routes/claims.ts +++ b/apps/Backend/src/routes/claims.ts @@ -758,14 +758,13 @@ router.post( const npiProviders = await storage.getNpiProvidersByUser(req.user.id); const npiProvider = npiProviders[0] ?? null; - // procNpiProviderId = user's explicit choice saved via "Select Procedures" form - // This ALWAYS wins over any previously stored claim npiProviderId + // procNpiProviderId = user's explicit choice saved via "Select Procedures" form (legacy manual flow) const procNpiProviderId = (apptProcedures as any[]).find((p) => p.npiProviderId)?.npiProviderId ?? null; - // Priority: Select Procedures choice > existing claim > first provider - const claimNpiProviderId = procNpiProviderId ?? activeClaim?.npiProviderId ?? npiProvider?.id ?? null; + // Priority: appointment's Provider field (set in Edit Appointment) > Select Procedures choice > existing claim > first provider + const claimNpiProviderId = (apt as any).npiProviderId ?? procNpiProviderId ?? activeClaim?.npiProviderId ?? npiProvider?.id ?? null; - console.log(`[batch-column] apt=${apt.id} siteKey=${siteKey} procNpiId=${procNpiProviderId} claimNpiId=${activeClaim?.npiProviderId} resolved=${claimNpiProviderId}`); + console.log(`[batch-column] apt=${apt.id} siteKey=${siteKey} aptNpiId=${(apt as any).npiProviderId} procNpiId=${procNpiProviderId} claimNpiId=${activeClaim?.npiProviderId} resolved=${claimNpiProviderId}`); const patientName = `${patient.firstName ?? ""} ${patient.lastName ?? ""}`.trim(); @@ -773,8 +772,8 @@ router.post( let claimId: number; if (activeClaim?.id) { claimId = activeClaim.id; - if (procNpiProviderId && activeClaim.npiProviderId !== procNpiProviderId) { - await storage.updateClaim(claimId, { npiProviderId: procNpiProviderId }); + if (claimNpiProviderId && activeClaim.npiProviderId !== claimNpiProviderId) { + await storage.updateClaim(claimId, { npiProviderId: claimNpiProviderId }); } } else { // Validate required integer fields before sending to Prisma diff --git a/apps/Frontend/src/components/appointments/appointment-form.tsx b/apps/Frontend/src/components/appointments/appointment-form.tsx index 8670c34a..b9d86cae 100755 --- a/apps/Frontend/src/components/appointments/appointment-form.tsx +++ b/apps/Frontend/src/components/appointments/appointment-form.tsx @@ -30,6 +30,7 @@ import { Appointment, InsertAppointment, insertAppointmentSchema, + NpiProvider, Patient, Staff, UpdateAppointment, @@ -94,6 +95,15 @@ export function AppointmentForm({ enabled: !!user, }); + const { data: npiProviders = [] as NpiProvider[] } = useQuery({ + queryKey: ["/api/npiProviders/"], + queryFn: async () => { + const res = await apiRequest("GET", "/api/npiProviders/"); + return res.json(); + }, + enabled: !!user, + }); + const colorMap: Record = { "Dr. Kai Gao": "bg-blue-600", "Dr. Jane Smith": "bg-emerald-600", @@ -120,6 +130,10 @@ export function AppointmentForm({ typeof appointment.staffId === "number" ? appointment.staffId : undefined, + npiProviderId: + typeof appointment.npiProviderId === "number" + ? appointment.npiProviderId + : undefined, } : prefillData ? { @@ -614,6 +628,47 @@ export function AppointmentForm({ )} /> + ( + + + Provider{" "} + + (used by AI to select the rendering provider on insurance claims) + + + + + + )} + /> + root\n isComplete Boolean @default(false) // upload completed?\n totalChunks Int? // optional: expected number of chunks\n diskPath String? // relative path on disk under uploads/\n createdAt DateTime @default(now())\n updatedAt DateTime @updatedAt\n user User @relation(fields: [userId], references: [id])\n folder CloudFolder? @relation(fields: [folderId], references: [id], onDelete: SetNull)\n\n chunks CloudFileChunk[]\n\n @@index([folderId])\n}\n\nmodel CloudFileChunk {\n id Int @id @default(autoincrement())\n fileId Int\n seq Int\n data Bytes\n createdAt DateTime @default(now())\n\n file CloudFile @relation(fields: [fileId], references: [id], onDelete: Cascade)\n\n @@unique([fileId, seq])\n @@index([fileId, seq])\n}\n\n// patient-connection-\nenum CommunicationChannel {\n sms\n voice\n}\n\nenum CommunicationDirection {\n outbound\n inbound\n}\n\nenum CommunicationStatus {\n queued\n sent\n delivered\n failed\n completed\n busy\n no_answer\n}\n\nmodel Communication {\n id Int @id @default(autoincrement())\n patientId Int\n userId Int?\n\n channel CommunicationChannel\n direction CommunicationDirection\n status CommunicationStatus\n\n body String?\n callDuration Int?\n twilioSid String?\n\n createdAt DateTime @default(now())\n\n // Relations\n patient Patient @relation(fields: [patientId], references: [id])\n user User? @relation(fields: [userId], references: [id])\n\n @@map(\"communications\")\n}\n\nmodel PatientDocument {\n id Int @id @default(autoincrement())\n patientId Int\n filename String\n originalName String\n mimeType String\n fileSize BigInt\n filePath String\n uploadedAt DateTime @default(now())\n updatedAt DateTime @updatedAt\n patient Patient @relation(fields: [patientId], references: [id], onDelete: Cascade)\n\n @@index([patientId])\n @@index([uploadedAt])\n}\n\nmodel TwilioSettings {\n id Int @id @default(autoincrement())\n userId Int @unique\n accountSid String\n authToken String\n phoneNumber String\n greetingMessage String?\n templates Json?\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@map(\"twilio_settings\")\n}\n\nmodel AiSettings {\n id Int @id @default(autoincrement())\n userId Int @unique\n apiKey String\n aiEnabled Boolean @default(true)\n openAiKey String @default(\"\")\n openAiEnabled Boolean @default(false)\n claudeAiKey String @default(\"\")\n claudeAiEnabled Boolean @default(false)\n claudeAiModel String @default(\"claude-haiku-4-5-20251001\")\n openAiModel String @default(\"gpt-5.2\")\n googleAiModel String @default(\"gemini-2.5-flash\")\n dentalMgmtKey String @default(\"\")\n dentalMgmtEnabled Boolean @default(false)\n afterHoursEnabled Boolean @default(true)\n openPhoneReply Boolean @default(false)\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@map(\"ai_settings\")\n}\n\nmodel OfficeHours {\n id Int @id @default(autoincrement())\n userId Int @unique\n data Json\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@map(\"office_hours\")\n}\n\nmodel OfficeContact {\n id Int @id @default(autoincrement())\n userId Int @unique\n officeName String?\n receptionistName String?\n dentistName String?\n phoneNumber String?\n email String?\n fax String?\n streetAddress String?\n city String?\n state String?\n zipCode String?\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@map(\"office_contact\")\n}\n\nmodel InsuranceContact {\n id Int @id @default(autoincrement())\n userId Int\n name String\n phoneNumber String?\n createdAt DateTime @default(now())\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@map(\"insurance_contact\")\n}\n\nmodel ProcedureTimeslot {\n id Int @id @default(autoincrement())\n userId Int @unique\n data Json\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@map(\"procedure_timeslot\")\n}\n\nmodel PatientConversation {\n id Int @id @default(autoincrement())\n patientId Int @unique\n userId Int\n stage String @default(\"initial\")\n aiHandoff Boolean @default(true)\n updatedAt DateTime @updatedAt\n\n patient Patient @relation(fields: [patientId], references: [id], onDelete: Cascade)\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@map(\"patient_conversation\")\n}\n\nmodel LabRxTemplate {\n id Int @id @default(autoincrement())\n userId Int\n name String\n labName String?\n labPhone String?\n labFax String?\n labAddress String?\n labAccount String?\n caseType String?\n material String?\n instructions String?\n sortOrder Int @default(0)\n createdAt DateTime @default(now())\n updatedAt DateTime @updatedAt\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@index([userId])\n @@map(\"lab_rx_template\")\n}\n\n// Commission tracking\nmodel CommissionBatch {\n id Int @id @default(autoincrement())\n npiProviderId Int\n totalCollection Decimal @db.Decimal(14, 2)\n commissionAmount Decimal @db.Decimal(14, 2)\n notes String?\n createdAt DateTime @default(now())\n\n npiProvider NpiProvider @relation(fields: [npiProviderId], references: [id])\n items CommissionBatchItem[]\n\n @@index([npiProviderId])\n}\n\nmodel CommissionBatchItem {\n id Int @id @default(autoincrement())\n commissionBatchId Int\n paymentId Int\n collectionAmount Decimal @db.Decimal(14, 2)\n\n commissionBatch CommissionBatch @relation(fields: [commissionBatchId], references: [id], onDelete: Cascade)\n payment Payment @relation(fields: [paymentId], references: [id])\n\n @@unique([commissionBatchId, paymentId])\n @@index([paymentId])\n}\n\nmodel SeleniumSettings {\n id Int @id @default(autoincrement())\n userId Int @unique\n paymentGroupId String @default(\"\")\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@map(\"selenium_settings\")\n}\n" + "inlineSchema": "// This is your Prisma schema file,\n// learn more about it in the docs: https://pris.ly/d/prisma-schema\n\n// Looking for ways to speed up your queries, or scale easily with your serverless or edge functions?\n// Try Prisma Accelerate: https://pris.ly/cli/accelerate-init\n\ngenerator client {\n provider = \"prisma-client-js\"\n output = \"../generated/prisma\"\n}\n\ngenerator zod {\n provider = \"prisma-zod-generator\"\n output = \"../shared/\" // Zod schemas will be generated here inside `db/shared`\n}\n\ndatasource db {\n provider = \"postgresql\"\n}\n\nmodel User {\n id Int @id @default(autoincrement())\n username String @unique\n password String\n autoBackupEnabled Boolean @default(true)\n autoBackupHour Int @default(20)\n usbBackupEnabled Boolean @default(false)\n usbBackupHour Int @default(21)\n autoMhCheckEnabled Boolean @default(false)\n autoMhCheckDayOfWeek Int @default(1)\n autoMhCheckHour Int @default(13)\n patients Patient[]\n appointments Appointment[]\n staff Staff[]\n npiProviders NpiProvider[]\n claims Claim[]\n insuranceCredentials InsuranceCredential[]\n shoppingVendors ShoppingVendor[]\n updatedPayments Payment[] @relation(\"PaymentUpdatedBy\")\n backups DatabaseBackup[]\n backupDestinations BackupDestination[]\n notifications Notification[]\n cloudFolders CloudFolder[]\n cloudFiles CloudFile[]\n communications Communication[]\n twilioSettings TwilioSettings?\n aiSettings AiSettings?\n officeHours OfficeHours?\n officeContact OfficeContact?\n procedureTimeslot ProcedureTimeslot?\n insuranceContacts InsuranceContact[]\n patientConversations PatientConversation[]\n labRxTemplates LabRxTemplate[]\n seleniumSettings SeleniumSettings?\n}\n\nmodel Patient {\n id Int @id @default(autoincrement())\n firstName String\n lastName String\n dateOfBirth DateTime? @db.Date\n gender String\n phone String\n email String?\n address String?\n city String?\n zipCode String?\n insuranceProvider String?\n insuranceId String?\n groupNumber String?\n policyHolder String?\n allergies String?\n medicalConditions String?\n preferredLanguage String? @default(\"English\")\n status PatientStatus @default(UNKNOWN)\n userId Int\n createdAt DateTime @default(now())\n updatedAt DateTime @updatedAt\n user User @relation(fields: [userId], references: [id])\n appointments Appointment[]\n procedures AppointmentProcedure[]\n claims Claim[]\n groups PdfGroup[]\n payment Payment[]\n communications Communication[]\n documents PatientDocument[]\n conversation PatientConversation?\n cloudFolders CloudFolder[] @relation(\"PatientCloudFolder\")\n\n @@index([insuranceId])\n @@index([createdAt])\n}\n\nenum PatientStatus {\n ACTIVE\n INACTIVE\n UNKNOWN\n PLAN_NOT_ACCEPTED\n}\n\nmodel Appointment {\n id Int @id @default(autoincrement())\n patientId Int\n userId Int\n staffId Int\n npiProviderId Int?\n title String\n date DateTime @db.Date\n startTime String // Store time as \"hh:mm\"\n endTime String // Store time as \"hh:mm\"\n type String // e.g., \"checkup\", \"cleaning\", \"filling\", etc.\n typeLocked Boolean @default(false) // true = user manually set; auto-sync will not overwrite\n notes String?\n procedureCodeNotes String?\n status String @default(\"scheduled\") // \"scheduled\", \"completed\", \"cancelled\", \"no-show\"\n movedByAi Boolean @default(false)\n createdAt DateTime @default(now())\n\n eligibilityStatus PatientStatus @default(UNKNOWN)\n\n patient Patient @relation(fields: [patientId], references: [id], onDelete: Cascade)\n user User @relation(fields: [userId], references: [id])\n staff Staff? @relation(fields: [staffId], references: [id])\n npiProvider NpiProvider? @relation(fields: [npiProviderId], references: [id])\n procedures AppointmentProcedure[]\n claims Claim[]\n files AppointmentFile[]\n\n @@index([patientId])\n @@index([date])\n}\n\nmodel AppointmentFile {\n id Int @id @default(autoincrement())\n appointmentId Int\n filename String\n mimeType String?\n filePath String?\n\n appointment Appointment @relation(fields: [appointmentId], references: [id], onDelete: Cascade)\n\n @@index([appointmentId])\n}\n\nmodel Staff {\n id Int @id @default(autoincrement())\n userId Int\n name String\n email String?\n role String // e.g., \"Dentist\", \"Hygienist\", \"Assistant\"\n phone String?\n createdAt DateTime @default(now())\n user User? @relation(fields: [userId], references: [id], onDelete: Cascade)\n appointments Appointment[]\n claims Claim[] @relation(\"ClaimStaff\")\n}\n\nmodel NpiProvider {\n id Int @id @default(autoincrement())\n userId Int\n npiNumber String\n providerName String\n sortOrder Int @default(0)\n createdAt DateTime @default(now())\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n claims Claim[]\n payments Payment[]\n commissionBatches CommissionBatch[]\n appointmentProcedures AppointmentProcedure[]\n appointments Appointment[]\n\n @@unique([userId, npiNumber])\n @@index([userId])\n}\n\nenum ProcedureSource {\n COMBO\n MANUAL\n}\n\nmodel AppointmentProcedure {\n id Int @id @default(autoincrement())\n appointmentId Int\n patientId Int\n npiProviderId Int?\n\n procedureCode String\n procedureLabel String?\n fee Decimal? @db.Decimal(10, 2)\n\n category String?\n\n toothNumber String?\n toothSurface String?\n oralCavityArea String?\n\n source ProcedureSource @default(MANUAL)\n comboKey String?\n\n createdAt DateTime @default(now())\n\n appointment Appointment @relation(fields: [appointmentId], references: [id], onDelete: Cascade)\n patient Patient @relation(fields: [patientId], references: [id], onDelete: Cascade)\n npiProvider NpiProvider? @relation(fields: [npiProviderId], references: [id])\n\n @@index([appointmentId])\n @@index([patientId])\n}\n\nmodel Claim {\n id Int @id @default(autoincrement())\n patientId Int\n /// @zod.number.int().nullable().optional()\n appointmentId Int?\n userId Int\n staffId Int\n patientName String\n memberId String\n dateOfBirth DateTime @db.Date\n remarks String\n missingTeethStatus MissingTeethStatus @default(No_missing)\n missingTeeth Json? // { \"T_14\": \"X\", \"T_G\": \"O\", ... }\n serviceDate DateTime\n insuranceProvider String // e.g., \"Delta MA\"\n createdAt DateTime @default(now())\n updatedAt DateTime @updatedAt\n status ClaimStatus @default(PENDING)\n claimNumber String?\n preAuthNumber String?\n npiProviderId Int?\n\n patient Patient @relation(fields: [patientId], references: [id], onDelete: Cascade)\n appointment Appointment? @relation(fields: [appointmentId], references: [id], onDelete: Cascade)\n user User? @relation(fields: [userId], references: [id])\n staff Staff? @relation(\"ClaimStaff\", fields: [staffId], references: [id])\n npiProvider NpiProvider? @relation(fields: [npiProviderId], references: [id])\n\n serviceLines ServiceLine[]\n claimFiles ClaimFile[]\n payment Payment?\n}\n\nenum ClaimStatus {\n PENDING\n APPROVED\n CANCELLED\n REVIEW\n VOID\n PREAUTH\n}\n\nenum MissingTeethStatus {\n No_missing\n endentulous\n Yes_missing\n}\n\nmodel ServiceLine {\n id Int @id @default(autoincrement())\n claimId Int?\n paymentId Int?\n procedureCode String\n procedureDate DateTime @db.Date\n quad String?\n arch String?\n toothNumber String?\n toothSurface String?\n icn String?\n paidCode String?\n allowedAmount Decimal? @db.Decimal(10, 2)\n totalBilled Decimal @db.Decimal(10, 2)\n totalPaid Decimal @default(0.00) @db.Decimal(10, 2)\n totalAdjusted Decimal @default(0.00) @db.Decimal(10, 2)\n totalDue Decimal @default(0.00) @db.Decimal(10, 2)\n status ServiceLineStatus @default(UNPAID)\n\n claim Claim? @relation(fields: [claimId], references: [id], onDelete: Cascade)\n payment Payment? @relation(fields: [paymentId], references: [id], onDelete: Cascade)\n\n serviceLineTransactions ServiceLineTransaction[]\n}\n\nenum ServiceLineStatus {\n PENDING\n PARTIALLY_PAID\n PAID\n UNPAID\n ADJUSTED\n OVERPAID\n DENIED\n}\n\nmodel ClaimFile {\n id Int @id @default(autoincrement())\n claimId Int\n filename String\n mimeType String\n filePath String?\n\n claim Claim @relation(fields: [claimId], references: [id], onDelete: Cascade)\n}\n\nmodel InsuranceCredential {\n id Int @id @default(autoincrement())\n userId Int\n siteKey String\n username String\n password String\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@unique([userId, siteKey])\n @@index([userId])\n}\n\nmodel ShoppingVendor {\n id Int @id @default(autoincrement())\n userId Int\n vendorName String\n websiteUrl String\n loginUsername String\n loginPassword String\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@index([userId])\n}\n\nmodel PdfGroup {\n id Int @id @default(autoincrement())\n title String\n titleKey PdfTitleKey @default(OTHER)\n createdAt DateTime @default(now())\n patientId Int\n patient Patient @relation(fields: [patientId], references: [id], onDelete: Cascade)\n pdfs PdfFile[]\n\n @@index([patientId])\n @@index([titleKey])\n}\n\nmodel PdfFile {\n id Int @id @default(autoincrement())\n filename String\n pdfData Bytes\n uploadedAt DateTime @default(now())\n groupId Int\n group PdfGroup @relation(fields: [groupId], references: [id], onDelete: Cascade)\n\n @@index([groupId])\n}\n\nenum PdfTitleKey {\n INSURANCE_CLAIM\n INSURANCE_CLAIM_PREAUTH\n ELIGIBILITY_STATUS\n CLAIM_STATUS\n OTHER\n}\n\nmodel Payment {\n id Int @id @default(autoincrement())\n claimId Int? @unique\n patientId Int\n userId Int\n updatedById Int?\n npiProviderId Int?\n totalBilled Decimal @db.Decimal(10, 2)\n totalPaid Decimal @default(0.00) @db.Decimal(10, 2)\n totalAdjusted Decimal @default(0.00) @db.Decimal(10, 2)\n totalDue Decimal @db.Decimal(10, 2)\n mhPaidAmount Decimal? @db.Decimal(10, 2)\n copayment Decimal @default(0.00) @db.Decimal(10, 2)\n adjustment Decimal @default(0.00) @db.Decimal(10, 2)\n status PaymentStatus @default(PENDING)\n notes String?\n icn String?\n createdAt DateTime @default(now())\n updatedAt DateTime @updatedAt\n\n claim Claim? @relation(fields: [claimId], references: [id], onDelete: Cascade)\n patient Patient @relation(fields: [patientId], references: [id], onDelete: Cascade)\n updatedBy User? @relation(\"PaymentUpdatedBy\", fields: [updatedById], references: [id])\n npiProvider NpiProvider? @relation(fields: [npiProviderId], references: [id])\n serviceLineTransactions ServiceLineTransaction[]\n serviceLines ServiceLine[]\n commissionBatchItems CommissionBatchItem[]\n\n @@index([claimId])\n @@index([patientId])\n @@index([createdAt])\n}\n\nmodel ServiceLineTransaction {\n id Int @id @default(autoincrement())\n paymentId Int\n serviceLineId Int\n transactionId String?\n paidAmount Decimal @db.Decimal(10, 2)\n adjustedAmount Decimal @default(0.00) @db.Decimal(10, 2)\n method PaymentMethod\n receivedDate DateTime\n payerName String?\n notes String?\n createdAt DateTime @default(now())\n\n payment Payment @relation(fields: [paymentId], references: [id], onDelete: Cascade)\n serviceLine ServiceLine @relation(fields: [serviceLineId], references: [id], onDelete: Cascade)\n\n @@index([paymentId])\n @@index([serviceLineId])\n}\n\nenum PaymentStatus {\n PENDING\n PARTIALLY_PAID\n PAID\n OVERPAID\n DENIED\n VOID\n}\n\nenum PaymentMethod {\n EFT\n CHECK\n CASH\n CARD\n OTHER\n}\n\n// Database management page\nmodel DatabaseBackup {\n id Int @id @default(autoincrement())\n userId Int\n createdAt DateTime @default(now())\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@index([userId])\n @@index([createdAt])\n}\n\nmodel BackupDestination {\n id Int @id @default(autoincrement())\n userId Int\n path String\n isActive Boolean @default(true)\n createdAt DateTime @default(now())\n\n user User @relation(fields: [userId], references: [id])\n}\n\nmodel Notification {\n id Int @id @default(autoincrement())\n userId Int\n type NotificationTypes\n message String\n createdAt DateTime @default(now())\n read Boolean @default(false)\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@index([userId])\n @@index([createdAt])\n}\n\nenum NotificationTypes {\n BACKUP\n CLAIM\n PAYMENT\n ETC\n}\n\n// Cron job execution log\nmodel CronJobLog {\n id Int @id @default(autoincrement())\n jobName String // e.g. \"local-backup\", \"usb-backup\"\n status String // \"success\" | \"failed\" | \"skipped\"\n startedAt DateTime\n completedAt DateTime?\n durationMs Int?\n errorMessage String?\n\n @@index([jobName])\n @@index([startedAt])\n @@index([status])\n}\n\nmodel CloudFolder {\n id Int @id @default(autoincrement())\n userId Int\n name String\n parentId Int?\n patientId Int?\n parent CloudFolder? @relation(\"FolderChildren\", fields: [parentId], references: [id], onDelete: Cascade)\n children CloudFolder[] @relation(\"FolderChildren\")\n user User @relation(fields: [userId], references: [id])\n patient Patient? @relation(\"PatientCloudFolder\", fields: [patientId], references: [id], onDelete: SetNull)\n files CloudFile[]\n createdAt DateTime @default(now())\n updatedAt DateTime @updatedAt\n\n @@unique([userId, parentId, name]) // prevents sibling folder name duplicates\n @@index([parentId])\n @@index([patientId])\n}\n\nmodel CloudFile {\n id Int @id @default(autoincrement())\n userId Int\n name String\n mimeType String?\n fileSize BigInt @db.BigInt\n folderId Int? // optional: null => root\n isComplete Boolean @default(false) // upload completed?\n totalChunks Int? // optional: expected number of chunks\n diskPath String? // relative path on disk under uploads/\n createdAt DateTime @default(now())\n updatedAt DateTime @updatedAt\n user User @relation(fields: [userId], references: [id])\n folder CloudFolder? @relation(fields: [folderId], references: [id], onDelete: SetNull)\n\n chunks CloudFileChunk[]\n\n @@index([folderId])\n}\n\nmodel CloudFileChunk {\n id Int @id @default(autoincrement())\n fileId Int\n seq Int\n data Bytes\n createdAt DateTime @default(now())\n\n file CloudFile @relation(fields: [fileId], references: [id], onDelete: Cascade)\n\n @@unique([fileId, seq])\n @@index([fileId, seq])\n}\n\n// patient-connection-\nenum CommunicationChannel {\n sms\n voice\n}\n\nenum CommunicationDirection {\n outbound\n inbound\n}\n\nenum CommunicationStatus {\n queued\n sent\n delivered\n failed\n completed\n busy\n no_answer\n}\n\nmodel Communication {\n id Int @id @default(autoincrement())\n patientId Int\n userId Int?\n\n channel CommunicationChannel\n direction CommunicationDirection\n status CommunicationStatus\n\n body String?\n callDuration Int?\n twilioSid String?\n\n createdAt DateTime @default(now())\n\n // Relations\n patient Patient @relation(fields: [patientId], references: [id])\n user User? @relation(fields: [userId], references: [id])\n\n @@map(\"communications\")\n}\n\nmodel PatientDocument {\n id Int @id @default(autoincrement())\n patientId Int\n filename String\n originalName String\n mimeType String\n fileSize BigInt\n filePath String\n uploadedAt DateTime @default(now())\n updatedAt DateTime @updatedAt\n patient Patient @relation(fields: [patientId], references: [id], onDelete: Cascade)\n\n @@index([patientId])\n @@index([uploadedAt])\n}\n\nmodel TwilioSettings {\n id Int @id @default(autoincrement())\n userId Int @unique\n accountSid String\n authToken String\n phoneNumber String\n greetingMessage String?\n templates Json?\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@map(\"twilio_settings\")\n}\n\nmodel AiSettings {\n id Int @id @default(autoincrement())\n userId Int @unique\n apiKey String\n aiEnabled Boolean @default(true)\n openAiKey String @default(\"\")\n openAiEnabled Boolean @default(false)\n claudeAiKey String @default(\"\")\n claudeAiEnabled Boolean @default(false)\n claudeAiModel String @default(\"claude-haiku-4-5-20251001\")\n openAiModel String @default(\"gpt-5.2\")\n googleAiModel String @default(\"gemini-2.5-flash\")\n dentalMgmtKey String @default(\"\")\n dentalMgmtEnabled Boolean @default(false)\n afterHoursEnabled Boolean @default(true)\n openPhoneReply Boolean @default(false)\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@map(\"ai_settings\")\n}\n\nmodel OfficeHours {\n id Int @id @default(autoincrement())\n userId Int @unique\n data Json\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@map(\"office_hours\")\n}\n\nmodel OfficeContact {\n id Int @id @default(autoincrement())\n userId Int @unique\n officeName String?\n receptionistName String?\n dentistName String?\n phoneNumber String?\n email String?\n fax String?\n streetAddress String?\n city String?\n state String?\n zipCode String?\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@map(\"office_contact\")\n}\n\nmodel InsuranceContact {\n id Int @id @default(autoincrement())\n userId Int\n name String\n phoneNumber String?\n createdAt DateTime @default(now())\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@map(\"insurance_contact\")\n}\n\nmodel ProcedureTimeslot {\n id Int @id @default(autoincrement())\n userId Int @unique\n data Json\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@map(\"procedure_timeslot\")\n}\n\nmodel PatientConversation {\n id Int @id @default(autoincrement())\n patientId Int @unique\n userId Int\n stage String @default(\"initial\")\n aiHandoff Boolean @default(true)\n updatedAt DateTime @updatedAt\n\n patient Patient @relation(fields: [patientId], references: [id], onDelete: Cascade)\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@map(\"patient_conversation\")\n}\n\nmodel LabRxTemplate {\n id Int @id @default(autoincrement())\n userId Int\n name String\n labName String?\n labPhone String?\n labFax String?\n labAddress String?\n labAccount String?\n caseType String?\n material String?\n instructions String?\n sortOrder Int @default(0)\n createdAt DateTime @default(now())\n updatedAt DateTime @updatedAt\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@index([userId])\n @@map(\"lab_rx_template\")\n}\n\n// Commission tracking\nmodel CommissionBatch {\n id Int @id @default(autoincrement())\n npiProviderId Int\n totalCollection Decimal @db.Decimal(14, 2)\n commissionAmount Decimal @db.Decimal(14, 2)\n notes String?\n createdAt DateTime @default(now())\n\n npiProvider NpiProvider @relation(fields: [npiProviderId], references: [id])\n items CommissionBatchItem[]\n\n @@index([npiProviderId])\n}\n\nmodel CommissionBatchItem {\n id Int @id @default(autoincrement())\n commissionBatchId Int\n paymentId Int\n collectionAmount Decimal @db.Decimal(14, 2)\n\n commissionBatch CommissionBatch @relation(fields: [commissionBatchId], references: [id], onDelete: Cascade)\n payment Payment @relation(fields: [paymentId], references: [id])\n\n @@unique([commissionBatchId, paymentId])\n @@index([paymentId])\n}\n\nmodel SeleniumSettings {\n id Int @id @default(autoincrement())\n userId Int @unique\n paymentGroupId String @default(\"\")\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@map(\"selenium_settings\")\n}\n" } -config.runtimeDataModel = JSON.parse("{\"models\":{\"User\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"username\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"password\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"autoBackupEnabled\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"autoBackupHour\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"usbBackupEnabled\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"usbBackupHour\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"autoMhCheckEnabled\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"autoMhCheckDayOfWeek\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"autoMhCheckHour\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patients\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"PatientToUser\"},{\"name\":\"appointments\",\"kind\":\"object\",\"type\":\"Appointment\",\"relationName\":\"AppointmentToUser\"},{\"name\":\"staff\",\"kind\":\"object\",\"type\":\"Staff\",\"relationName\":\"StaffToUser\"},{\"name\":\"npiProviders\",\"kind\":\"object\",\"type\":\"NpiProvider\",\"relationName\":\"NpiProviderToUser\"},{\"name\":\"claims\",\"kind\":\"object\",\"type\":\"Claim\",\"relationName\":\"ClaimToUser\"},{\"name\":\"insuranceCredentials\",\"kind\":\"object\",\"type\":\"InsuranceCredential\",\"relationName\":\"InsuranceCredentialToUser\"},{\"name\":\"shoppingVendors\",\"kind\":\"object\",\"type\":\"ShoppingVendor\",\"relationName\":\"ShoppingVendorToUser\"},{\"name\":\"updatedPayments\",\"kind\":\"object\",\"type\":\"Payment\",\"relationName\":\"PaymentUpdatedBy\"},{\"name\":\"backups\",\"kind\":\"object\",\"type\":\"DatabaseBackup\",\"relationName\":\"DatabaseBackupToUser\"},{\"name\":\"backupDestinations\",\"kind\":\"object\",\"type\":\"BackupDestination\",\"relationName\":\"BackupDestinationToUser\"},{\"name\":\"notifications\",\"kind\":\"object\",\"type\":\"Notification\",\"relationName\":\"NotificationToUser\"},{\"name\":\"cloudFolders\",\"kind\":\"object\",\"type\":\"CloudFolder\",\"relationName\":\"CloudFolderToUser\"},{\"name\":\"cloudFiles\",\"kind\":\"object\",\"type\":\"CloudFile\",\"relationName\":\"CloudFileToUser\"},{\"name\":\"communications\",\"kind\":\"object\",\"type\":\"Communication\",\"relationName\":\"CommunicationToUser\"},{\"name\":\"twilioSettings\",\"kind\":\"object\",\"type\":\"TwilioSettings\",\"relationName\":\"TwilioSettingsToUser\"},{\"name\":\"aiSettings\",\"kind\":\"object\",\"type\":\"AiSettings\",\"relationName\":\"AiSettingsToUser\"},{\"name\":\"officeHours\",\"kind\":\"object\",\"type\":\"OfficeHours\",\"relationName\":\"OfficeHoursToUser\"},{\"name\":\"officeContact\",\"kind\":\"object\",\"type\":\"OfficeContact\",\"relationName\":\"OfficeContactToUser\"},{\"name\":\"procedureTimeslot\",\"kind\":\"object\",\"type\":\"ProcedureTimeslot\",\"relationName\":\"ProcedureTimeslotToUser\"},{\"name\":\"insuranceContacts\",\"kind\":\"object\",\"type\":\"InsuranceContact\",\"relationName\":\"InsuranceContactToUser\"},{\"name\":\"patientConversations\",\"kind\":\"object\",\"type\":\"PatientConversation\",\"relationName\":\"PatientConversationToUser\"},{\"name\":\"labRxTemplates\",\"kind\":\"object\",\"type\":\"LabRxTemplate\",\"relationName\":\"LabRxTemplateToUser\"},{\"name\":\"seleniumSettings\",\"kind\":\"object\",\"type\":\"SeleniumSettings\",\"relationName\":\"SeleniumSettingsToUser\"}],\"dbName\":null},\"Patient\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"firstName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"lastName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"dateOfBirth\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"gender\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"phone\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"email\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"address\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"city\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"zipCode\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"insuranceProvider\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"insuranceId\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"groupNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"policyHolder\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"allergies\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"medicalConditions\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"preferredLanguage\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"enum\",\"type\":\"PatientStatus\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updatedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"PatientToUser\"},{\"name\":\"appointments\",\"kind\":\"object\",\"type\":\"Appointment\",\"relationName\":\"AppointmentToPatient\"},{\"name\":\"procedures\",\"kind\":\"object\",\"type\":\"AppointmentProcedure\",\"relationName\":\"AppointmentProcedureToPatient\"},{\"name\":\"claims\",\"kind\":\"object\",\"type\":\"Claim\",\"relationName\":\"ClaimToPatient\"},{\"name\":\"groups\",\"kind\":\"object\",\"type\":\"PdfGroup\",\"relationName\":\"PatientToPdfGroup\"},{\"name\":\"payment\",\"kind\":\"object\",\"type\":\"Payment\",\"relationName\":\"PatientToPayment\"},{\"name\":\"communications\",\"kind\":\"object\",\"type\":\"Communication\",\"relationName\":\"CommunicationToPatient\"},{\"name\":\"documents\",\"kind\":\"object\",\"type\":\"PatientDocument\",\"relationName\":\"PatientToPatientDocument\"},{\"name\":\"conversation\",\"kind\":\"object\",\"type\":\"PatientConversation\",\"relationName\":\"PatientToPatientConversation\"},{\"name\":\"cloudFolders\",\"kind\":\"object\",\"type\":\"CloudFolder\",\"relationName\":\"PatientCloudFolder\"}],\"dbName\":null},\"Appointment\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"staffId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"title\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"date\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"startTime\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"endTime\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"typeLocked\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"notes\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"procedureCodeNotes\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"movedByAi\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"eligibilityStatus\",\"kind\":\"enum\",\"type\":\"PatientStatus\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"AppointmentToPatient\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"AppointmentToUser\"},{\"name\":\"staff\",\"kind\":\"object\",\"type\":\"Staff\",\"relationName\":\"AppointmentToStaff\"},{\"name\":\"procedures\",\"kind\":\"object\",\"type\":\"AppointmentProcedure\",\"relationName\":\"AppointmentToAppointmentProcedure\"},{\"name\":\"claims\",\"kind\":\"object\",\"type\":\"Claim\",\"relationName\":\"AppointmentToClaim\"},{\"name\":\"files\",\"kind\":\"object\",\"type\":\"AppointmentFile\",\"relationName\":\"AppointmentToAppointmentFile\"}],\"dbName\":null},\"AppointmentFile\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"appointmentId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"filename\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"mimeType\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"filePath\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"appointment\",\"kind\":\"object\",\"type\":\"Appointment\",\"relationName\":\"AppointmentToAppointmentFile\"}],\"dbName\":null},\"Staff\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"email\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"role\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"phone\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"StaffToUser\"},{\"name\":\"appointments\",\"kind\":\"object\",\"type\":\"Appointment\",\"relationName\":\"AppointmentToStaff\"},{\"name\":\"claims\",\"kind\":\"object\",\"type\":\"Claim\",\"relationName\":\"ClaimStaff\"}],\"dbName\":null},\"NpiProvider\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"npiNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"providerName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"sortOrder\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"NpiProviderToUser\"},{\"name\":\"claims\",\"kind\":\"object\",\"type\":\"Claim\",\"relationName\":\"ClaimToNpiProvider\"},{\"name\":\"payments\",\"kind\":\"object\",\"type\":\"Payment\",\"relationName\":\"NpiProviderToPayment\"},{\"name\":\"commissionBatches\",\"kind\":\"object\",\"type\":\"CommissionBatch\",\"relationName\":\"CommissionBatchToNpiProvider\"},{\"name\":\"appointmentProcedures\",\"kind\":\"object\",\"type\":\"AppointmentProcedure\",\"relationName\":\"AppointmentProcedureToNpiProvider\"}],\"dbName\":null},\"AppointmentProcedure\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"appointmentId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"npiProviderId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"procedureCode\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"procedureLabel\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"fee\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"category\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"toothNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"toothSurface\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"oralCavityArea\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"source\",\"kind\":\"enum\",\"type\":\"ProcedureSource\"},{\"name\":\"comboKey\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"appointment\",\"kind\":\"object\",\"type\":\"Appointment\",\"relationName\":\"AppointmentToAppointmentProcedure\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"AppointmentProcedureToPatient\"},{\"name\":\"npiProvider\",\"kind\":\"object\",\"type\":\"NpiProvider\",\"relationName\":\"AppointmentProcedureToNpiProvider\"}],\"dbName\":null},\"Claim\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"appointmentId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"staffId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"memberId\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"dateOfBirth\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"remarks\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"missingTeethStatus\",\"kind\":\"enum\",\"type\":\"MissingTeethStatus\"},{\"name\":\"missingTeeth\",\"kind\":\"scalar\",\"type\":\"Json\"},{\"name\":\"serviceDate\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"insuranceProvider\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updatedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"status\",\"kind\":\"enum\",\"type\":\"ClaimStatus\"},{\"name\":\"claimNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"preAuthNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"npiProviderId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"ClaimToPatient\"},{\"name\":\"appointment\",\"kind\":\"object\",\"type\":\"Appointment\",\"relationName\":\"AppointmentToClaim\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"ClaimToUser\"},{\"name\":\"staff\",\"kind\":\"object\",\"type\":\"Staff\",\"relationName\":\"ClaimStaff\"},{\"name\":\"npiProvider\",\"kind\":\"object\",\"type\":\"NpiProvider\",\"relationName\":\"ClaimToNpiProvider\"},{\"name\":\"serviceLines\",\"kind\":\"object\",\"type\":\"ServiceLine\",\"relationName\":\"ClaimToServiceLine\"},{\"name\":\"claimFiles\",\"kind\":\"object\",\"type\":\"ClaimFile\",\"relationName\":\"ClaimToClaimFile\"},{\"name\":\"payment\",\"kind\":\"object\",\"type\":\"Payment\",\"relationName\":\"ClaimToPayment\"}],\"dbName\":null},\"ServiceLine\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"claimId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"paymentId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"procedureCode\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"procedureDate\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"quad\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"arch\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"toothNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"toothSurface\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"icn\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"paidCode\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"allowedAmount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"totalBilled\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"totalPaid\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"totalAdjusted\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"totalDue\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"status\",\"kind\":\"enum\",\"type\":\"ServiceLineStatus\"},{\"name\":\"claim\",\"kind\":\"object\",\"type\":\"Claim\",\"relationName\":\"ClaimToServiceLine\"},{\"name\":\"payment\",\"kind\":\"object\",\"type\":\"Payment\",\"relationName\":\"PaymentToServiceLine\"},{\"name\":\"serviceLineTransactions\",\"kind\":\"object\",\"type\":\"ServiceLineTransaction\",\"relationName\":\"ServiceLineToServiceLineTransaction\"}],\"dbName\":null},\"ClaimFile\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"claimId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"filename\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"mimeType\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"filePath\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"claim\",\"kind\":\"object\",\"type\":\"Claim\",\"relationName\":\"ClaimToClaimFile\"}],\"dbName\":null},\"InsuranceCredential\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"siteKey\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"username\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"password\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"InsuranceCredentialToUser\"}],\"dbName\":null},\"ShoppingVendor\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"vendorName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"websiteUrl\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"loginUsername\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"loginPassword\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"ShoppingVendorToUser\"}],\"dbName\":null},\"PdfGroup\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"title\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"titleKey\",\"kind\":\"enum\",\"type\":\"PdfTitleKey\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"PatientToPdfGroup\"},{\"name\":\"pdfs\",\"kind\":\"object\",\"type\":\"PdfFile\",\"relationName\":\"PdfFileToPdfGroup\"}],\"dbName\":null},\"PdfFile\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"filename\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"pdfData\",\"kind\":\"scalar\",\"type\":\"Bytes\"},{\"name\":\"uploadedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"groupId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"group\",\"kind\":\"object\",\"type\":\"PdfGroup\",\"relationName\":\"PdfFileToPdfGroup\"}],\"dbName\":null},\"Payment\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"claimId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"updatedById\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"npiProviderId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"totalBilled\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"totalPaid\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"totalAdjusted\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"totalDue\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"mhPaidAmount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"copayment\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"adjustment\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"status\",\"kind\":\"enum\",\"type\":\"PaymentStatus\"},{\"name\":\"notes\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"icn\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updatedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"claim\",\"kind\":\"object\",\"type\":\"Claim\",\"relationName\":\"ClaimToPayment\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"PatientToPayment\"},{\"name\":\"updatedBy\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"PaymentUpdatedBy\"},{\"name\":\"npiProvider\",\"kind\":\"object\",\"type\":\"NpiProvider\",\"relationName\":\"NpiProviderToPayment\"},{\"name\":\"serviceLineTransactions\",\"kind\":\"object\",\"type\":\"ServiceLineTransaction\",\"relationName\":\"PaymentToServiceLineTransaction\"},{\"name\":\"serviceLines\",\"kind\":\"object\",\"type\":\"ServiceLine\",\"relationName\":\"PaymentToServiceLine\"},{\"name\":\"commissionBatchItems\",\"kind\":\"object\",\"type\":\"CommissionBatchItem\",\"relationName\":\"CommissionBatchItemToPayment\"}],\"dbName\":null},\"ServiceLineTransaction\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"paymentId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"serviceLineId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"transactionId\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"paidAmount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"adjustedAmount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"method\",\"kind\":\"enum\",\"type\":\"PaymentMethod\"},{\"name\":\"receivedDate\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"payerName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"notes\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"payment\",\"kind\":\"object\",\"type\":\"Payment\",\"relationName\":\"PaymentToServiceLineTransaction\"},{\"name\":\"serviceLine\",\"kind\":\"object\",\"type\":\"ServiceLine\",\"relationName\":\"ServiceLineToServiceLineTransaction\"}],\"dbName\":null},\"DatabaseBackup\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"DatabaseBackupToUser\"}],\"dbName\":null},\"BackupDestination\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"path\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"isActive\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"BackupDestinationToUser\"}],\"dbName\":null},\"Notification\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"type\",\"kind\":\"enum\",\"type\":\"NotificationTypes\"},{\"name\":\"message\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"read\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"NotificationToUser\"}],\"dbName\":null},\"CronJobLog\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"jobName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"startedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"completedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"durationMs\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"errorMessage\",\"kind\":\"scalar\",\"type\":\"String\"}],\"dbName\":null},\"CloudFolder\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"parentId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"parent\",\"kind\":\"object\",\"type\":\"CloudFolder\",\"relationName\":\"FolderChildren\"},{\"name\":\"children\",\"kind\":\"object\",\"type\":\"CloudFolder\",\"relationName\":\"FolderChildren\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"CloudFolderToUser\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"PatientCloudFolder\"},{\"name\":\"files\",\"kind\":\"object\",\"type\":\"CloudFile\",\"relationName\":\"CloudFileToCloudFolder\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updatedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"}],\"dbName\":null},\"CloudFile\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"mimeType\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"fileSize\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"folderId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"isComplete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"totalChunks\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"diskPath\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updatedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"CloudFileToUser\"},{\"name\":\"folder\",\"kind\":\"object\",\"type\":\"CloudFolder\",\"relationName\":\"CloudFileToCloudFolder\"},{\"name\":\"chunks\",\"kind\":\"object\",\"type\":\"CloudFileChunk\",\"relationName\":\"CloudFileToCloudFileChunk\"}],\"dbName\":null},\"CloudFileChunk\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"fileId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"seq\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"data\",\"kind\":\"scalar\",\"type\":\"Bytes\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"file\",\"kind\":\"object\",\"type\":\"CloudFile\",\"relationName\":\"CloudFileToCloudFileChunk\"}],\"dbName\":null},\"Communication\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"channel\",\"kind\":\"enum\",\"type\":\"CommunicationChannel\"},{\"name\":\"direction\",\"kind\":\"enum\",\"type\":\"CommunicationDirection\"},{\"name\":\"status\",\"kind\":\"enum\",\"type\":\"CommunicationStatus\"},{\"name\":\"body\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"callDuration\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"twilioSid\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"CommunicationToPatient\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"CommunicationToUser\"}],\"dbName\":\"communications\"},\"PatientDocument\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"filename\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"originalName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"mimeType\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"fileSize\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"filePath\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"uploadedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updatedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"PatientToPatientDocument\"}],\"dbName\":null},\"TwilioSettings\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"accountSid\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"authToken\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"phoneNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"greetingMessage\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"templates\",\"kind\":\"scalar\",\"type\":\"Json\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"TwilioSettingsToUser\"}],\"dbName\":\"twilio_settings\"},\"AiSettings\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"apiKey\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"aiEnabled\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"openAiKey\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"openAiEnabled\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"claudeAiKey\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"claudeAiEnabled\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"claudeAiModel\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"openAiModel\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"googleAiModel\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"dentalMgmtKey\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"dentalMgmtEnabled\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"afterHoursEnabled\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"openPhoneReply\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"AiSettingsToUser\"}],\"dbName\":\"ai_settings\"},\"OfficeHours\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"data\",\"kind\":\"scalar\",\"type\":\"Json\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"OfficeHoursToUser\"}],\"dbName\":\"office_hours\"},\"OfficeContact\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"officeName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"receptionistName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"dentistName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"phoneNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"email\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"fax\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"streetAddress\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"city\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"state\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"zipCode\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"OfficeContactToUser\"}],\"dbName\":\"office_contact\"},\"InsuranceContact\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"phoneNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"InsuranceContactToUser\"}],\"dbName\":\"insurance_contact\"},\"ProcedureTimeslot\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"data\",\"kind\":\"scalar\",\"type\":\"Json\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"ProcedureTimeslotToUser\"}],\"dbName\":\"procedure_timeslot\"},\"PatientConversation\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"stage\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"aiHandoff\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"updatedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"PatientToPatientConversation\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"PatientConversationToUser\"}],\"dbName\":\"patient_conversation\"},\"LabRxTemplate\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"labName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"labPhone\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"labFax\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"labAddress\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"labAccount\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"caseType\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"material\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"instructions\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"sortOrder\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updatedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"LabRxTemplateToUser\"}],\"dbName\":\"lab_rx_template\"},\"CommissionBatch\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"npiProviderId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"totalCollection\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"commissionAmount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"notes\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"npiProvider\",\"kind\":\"object\",\"type\":\"NpiProvider\",\"relationName\":\"CommissionBatchToNpiProvider\"},{\"name\":\"items\",\"kind\":\"object\",\"type\":\"CommissionBatchItem\",\"relationName\":\"CommissionBatchToCommissionBatchItem\"}],\"dbName\":null},\"CommissionBatchItem\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"commissionBatchId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"paymentId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"collectionAmount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"commissionBatch\",\"kind\":\"object\",\"type\":\"CommissionBatch\",\"relationName\":\"CommissionBatchToCommissionBatchItem\"},{\"name\":\"payment\",\"kind\":\"object\",\"type\":\"Payment\",\"relationName\":\"CommissionBatchItemToPayment\"}],\"dbName\":null},\"SeleniumSettings\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"paymentGroupId\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"SeleniumSettingsToUser\"}],\"dbName\":\"selenium_settings\"}},\"enums\":{},\"types\":{}}") +config.runtimeDataModel = JSON.parse("{\"models\":{\"User\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"username\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"password\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"autoBackupEnabled\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"autoBackupHour\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"usbBackupEnabled\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"usbBackupHour\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"autoMhCheckEnabled\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"autoMhCheckDayOfWeek\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"autoMhCheckHour\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patients\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"PatientToUser\"},{\"name\":\"appointments\",\"kind\":\"object\",\"type\":\"Appointment\",\"relationName\":\"AppointmentToUser\"},{\"name\":\"staff\",\"kind\":\"object\",\"type\":\"Staff\",\"relationName\":\"StaffToUser\"},{\"name\":\"npiProviders\",\"kind\":\"object\",\"type\":\"NpiProvider\",\"relationName\":\"NpiProviderToUser\"},{\"name\":\"claims\",\"kind\":\"object\",\"type\":\"Claim\",\"relationName\":\"ClaimToUser\"},{\"name\":\"insuranceCredentials\",\"kind\":\"object\",\"type\":\"InsuranceCredential\",\"relationName\":\"InsuranceCredentialToUser\"},{\"name\":\"shoppingVendors\",\"kind\":\"object\",\"type\":\"ShoppingVendor\",\"relationName\":\"ShoppingVendorToUser\"},{\"name\":\"updatedPayments\",\"kind\":\"object\",\"type\":\"Payment\",\"relationName\":\"PaymentUpdatedBy\"},{\"name\":\"backups\",\"kind\":\"object\",\"type\":\"DatabaseBackup\",\"relationName\":\"DatabaseBackupToUser\"},{\"name\":\"backupDestinations\",\"kind\":\"object\",\"type\":\"BackupDestination\",\"relationName\":\"BackupDestinationToUser\"},{\"name\":\"notifications\",\"kind\":\"object\",\"type\":\"Notification\",\"relationName\":\"NotificationToUser\"},{\"name\":\"cloudFolders\",\"kind\":\"object\",\"type\":\"CloudFolder\",\"relationName\":\"CloudFolderToUser\"},{\"name\":\"cloudFiles\",\"kind\":\"object\",\"type\":\"CloudFile\",\"relationName\":\"CloudFileToUser\"},{\"name\":\"communications\",\"kind\":\"object\",\"type\":\"Communication\",\"relationName\":\"CommunicationToUser\"},{\"name\":\"twilioSettings\",\"kind\":\"object\",\"type\":\"TwilioSettings\",\"relationName\":\"TwilioSettingsToUser\"},{\"name\":\"aiSettings\",\"kind\":\"object\",\"type\":\"AiSettings\",\"relationName\":\"AiSettingsToUser\"},{\"name\":\"officeHours\",\"kind\":\"object\",\"type\":\"OfficeHours\",\"relationName\":\"OfficeHoursToUser\"},{\"name\":\"officeContact\",\"kind\":\"object\",\"type\":\"OfficeContact\",\"relationName\":\"OfficeContactToUser\"},{\"name\":\"procedureTimeslot\",\"kind\":\"object\",\"type\":\"ProcedureTimeslot\",\"relationName\":\"ProcedureTimeslotToUser\"},{\"name\":\"insuranceContacts\",\"kind\":\"object\",\"type\":\"InsuranceContact\",\"relationName\":\"InsuranceContactToUser\"},{\"name\":\"patientConversations\",\"kind\":\"object\",\"type\":\"PatientConversation\",\"relationName\":\"PatientConversationToUser\"},{\"name\":\"labRxTemplates\",\"kind\":\"object\",\"type\":\"LabRxTemplate\",\"relationName\":\"LabRxTemplateToUser\"},{\"name\":\"seleniumSettings\",\"kind\":\"object\",\"type\":\"SeleniumSettings\",\"relationName\":\"SeleniumSettingsToUser\"}],\"dbName\":null},\"Patient\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"firstName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"lastName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"dateOfBirth\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"gender\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"phone\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"email\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"address\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"city\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"zipCode\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"insuranceProvider\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"insuranceId\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"groupNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"policyHolder\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"allergies\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"medicalConditions\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"preferredLanguage\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"enum\",\"type\":\"PatientStatus\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updatedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"PatientToUser\"},{\"name\":\"appointments\",\"kind\":\"object\",\"type\":\"Appointment\",\"relationName\":\"AppointmentToPatient\"},{\"name\":\"procedures\",\"kind\":\"object\",\"type\":\"AppointmentProcedure\",\"relationName\":\"AppointmentProcedureToPatient\"},{\"name\":\"claims\",\"kind\":\"object\",\"type\":\"Claim\",\"relationName\":\"ClaimToPatient\"},{\"name\":\"groups\",\"kind\":\"object\",\"type\":\"PdfGroup\",\"relationName\":\"PatientToPdfGroup\"},{\"name\":\"payment\",\"kind\":\"object\",\"type\":\"Payment\",\"relationName\":\"PatientToPayment\"},{\"name\":\"communications\",\"kind\":\"object\",\"type\":\"Communication\",\"relationName\":\"CommunicationToPatient\"},{\"name\":\"documents\",\"kind\":\"object\",\"type\":\"PatientDocument\",\"relationName\":\"PatientToPatientDocument\"},{\"name\":\"conversation\",\"kind\":\"object\",\"type\":\"PatientConversation\",\"relationName\":\"PatientToPatientConversation\"},{\"name\":\"cloudFolders\",\"kind\":\"object\",\"type\":\"CloudFolder\",\"relationName\":\"PatientCloudFolder\"}],\"dbName\":null},\"Appointment\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"staffId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"npiProviderId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"title\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"date\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"startTime\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"endTime\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"typeLocked\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"notes\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"procedureCodeNotes\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"movedByAi\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"eligibilityStatus\",\"kind\":\"enum\",\"type\":\"PatientStatus\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"AppointmentToPatient\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"AppointmentToUser\"},{\"name\":\"staff\",\"kind\":\"object\",\"type\":\"Staff\",\"relationName\":\"AppointmentToStaff\"},{\"name\":\"npiProvider\",\"kind\":\"object\",\"type\":\"NpiProvider\",\"relationName\":\"AppointmentToNpiProvider\"},{\"name\":\"procedures\",\"kind\":\"object\",\"type\":\"AppointmentProcedure\",\"relationName\":\"AppointmentToAppointmentProcedure\"},{\"name\":\"claims\",\"kind\":\"object\",\"type\":\"Claim\",\"relationName\":\"AppointmentToClaim\"},{\"name\":\"files\",\"kind\":\"object\",\"type\":\"AppointmentFile\",\"relationName\":\"AppointmentToAppointmentFile\"}],\"dbName\":null},\"AppointmentFile\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"appointmentId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"filename\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"mimeType\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"filePath\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"appointment\",\"kind\":\"object\",\"type\":\"Appointment\",\"relationName\":\"AppointmentToAppointmentFile\"}],\"dbName\":null},\"Staff\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"email\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"role\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"phone\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"StaffToUser\"},{\"name\":\"appointments\",\"kind\":\"object\",\"type\":\"Appointment\",\"relationName\":\"AppointmentToStaff\"},{\"name\":\"claims\",\"kind\":\"object\",\"type\":\"Claim\",\"relationName\":\"ClaimStaff\"}],\"dbName\":null},\"NpiProvider\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"npiNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"providerName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"sortOrder\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"NpiProviderToUser\"},{\"name\":\"claims\",\"kind\":\"object\",\"type\":\"Claim\",\"relationName\":\"ClaimToNpiProvider\"},{\"name\":\"payments\",\"kind\":\"object\",\"type\":\"Payment\",\"relationName\":\"NpiProviderToPayment\"},{\"name\":\"commissionBatches\",\"kind\":\"object\",\"type\":\"CommissionBatch\",\"relationName\":\"CommissionBatchToNpiProvider\"},{\"name\":\"appointmentProcedures\",\"kind\":\"object\",\"type\":\"AppointmentProcedure\",\"relationName\":\"AppointmentProcedureToNpiProvider\"},{\"name\":\"appointments\",\"kind\":\"object\",\"type\":\"Appointment\",\"relationName\":\"AppointmentToNpiProvider\"}],\"dbName\":null},\"AppointmentProcedure\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"appointmentId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"npiProviderId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"procedureCode\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"procedureLabel\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"fee\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"category\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"toothNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"toothSurface\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"oralCavityArea\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"source\",\"kind\":\"enum\",\"type\":\"ProcedureSource\"},{\"name\":\"comboKey\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"appointment\",\"kind\":\"object\",\"type\":\"Appointment\",\"relationName\":\"AppointmentToAppointmentProcedure\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"AppointmentProcedureToPatient\"},{\"name\":\"npiProvider\",\"kind\":\"object\",\"type\":\"NpiProvider\",\"relationName\":\"AppointmentProcedureToNpiProvider\"}],\"dbName\":null},\"Claim\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"appointmentId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"staffId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"memberId\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"dateOfBirth\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"remarks\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"missingTeethStatus\",\"kind\":\"enum\",\"type\":\"MissingTeethStatus\"},{\"name\":\"missingTeeth\",\"kind\":\"scalar\",\"type\":\"Json\"},{\"name\":\"serviceDate\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"insuranceProvider\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updatedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"status\",\"kind\":\"enum\",\"type\":\"ClaimStatus\"},{\"name\":\"claimNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"preAuthNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"npiProviderId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"ClaimToPatient\"},{\"name\":\"appointment\",\"kind\":\"object\",\"type\":\"Appointment\",\"relationName\":\"AppointmentToClaim\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"ClaimToUser\"},{\"name\":\"staff\",\"kind\":\"object\",\"type\":\"Staff\",\"relationName\":\"ClaimStaff\"},{\"name\":\"npiProvider\",\"kind\":\"object\",\"type\":\"NpiProvider\",\"relationName\":\"ClaimToNpiProvider\"},{\"name\":\"serviceLines\",\"kind\":\"object\",\"type\":\"ServiceLine\",\"relationName\":\"ClaimToServiceLine\"},{\"name\":\"claimFiles\",\"kind\":\"object\",\"type\":\"ClaimFile\",\"relationName\":\"ClaimToClaimFile\"},{\"name\":\"payment\",\"kind\":\"object\",\"type\":\"Payment\",\"relationName\":\"ClaimToPayment\"}],\"dbName\":null},\"ServiceLine\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"claimId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"paymentId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"procedureCode\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"procedureDate\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"quad\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"arch\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"toothNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"toothSurface\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"icn\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"paidCode\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"allowedAmount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"totalBilled\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"totalPaid\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"totalAdjusted\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"totalDue\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"status\",\"kind\":\"enum\",\"type\":\"ServiceLineStatus\"},{\"name\":\"claim\",\"kind\":\"object\",\"type\":\"Claim\",\"relationName\":\"ClaimToServiceLine\"},{\"name\":\"payment\",\"kind\":\"object\",\"type\":\"Payment\",\"relationName\":\"PaymentToServiceLine\"},{\"name\":\"serviceLineTransactions\",\"kind\":\"object\",\"type\":\"ServiceLineTransaction\",\"relationName\":\"ServiceLineToServiceLineTransaction\"}],\"dbName\":null},\"ClaimFile\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"claimId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"filename\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"mimeType\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"filePath\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"claim\",\"kind\":\"object\",\"type\":\"Claim\",\"relationName\":\"ClaimToClaimFile\"}],\"dbName\":null},\"InsuranceCredential\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"siteKey\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"username\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"password\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"InsuranceCredentialToUser\"}],\"dbName\":null},\"ShoppingVendor\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"vendorName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"websiteUrl\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"loginUsername\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"loginPassword\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"ShoppingVendorToUser\"}],\"dbName\":null},\"PdfGroup\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"title\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"titleKey\",\"kind\":\"enum\",\"type\":\"PdfTitleKey\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"PatientToPdfGroup\"},{\"name\":\"pdfs\",\"kind\":\"object\",\"type\":\"PdfFile\",\"relationName\":\"PdfFileToPdfGroup\"}],\"dbName\":null},\"PdfFile\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"filename\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"pdfData\",\"kind\":\"scalar\",\"type\":\"Bytes\"},{\"name\":\"uploadedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"groupId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"group\",\"kind\":\"object\",\"type\":\"PdfGroup\",\"relationName\":\"PdfFileToPdfGroup\"}],\"dbName\":null},\"Payment\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"claimId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"updatedById\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"npiProviderId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"totalBilled\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"totalPaid\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"totalAdjusted\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"totalDue\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"mhPaidAmount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"copayment\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"adjustment\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"status\",\"kind\":\"enum\",\"type\":\"PaymentStatus\"},{\"name\":\"notes\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"icn\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updatedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"claim\",\"kind\":\"object\",\"type\":\"Claim\",\"relationName\":\"ClaimToPayment\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"PatientToPayment\"},{\"name\":\"updatedBy\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"PaymentUpdatedBy\"},{\"name\":\"npiProvider\",\"kind\":\"object\",\"type\":\"NpiProvider\",\"relationName\":\"NpiProviderToPayment\"},{\"name\":\"serviceLineTransactions\",\"kind\":\"object\",\"type\":\"ServiceLineTransaction\",\"relationName\":\"PaymentToServiceLineTransaction\"},{\"name\":\"serviceLines\",\"kind\":\"object\",\"type\":\"ServiceLine\",\"relationName\":\"PaymentToServiceLine\"},{\"name\":\"commissionBatchItems\",\"kind\":\"object\",\"type\":\"CommissionBatchItem\",\"relationName\":\"CommissionBatchItemToPayment\"}],\"dbName\":null},\"ServiceLineTransaction\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"paymentId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"serviceLineId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"transactionId\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"paidAmount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"adjustedAmount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"method\",\"kind\":\"enum\",\"type\":\"PaymentMethod\"},{\"name\":\"receivedDate\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"payerName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"notes\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"payment\",\"kind\":\"object\",\"type\":\"Payment\",\"relationName\":\"PaymentToServiceLineTransaction\"},{\"name\":\"serviceLine\",\"kind\":\"object\",\"type\":\"ServiceLine\",\"relationName\":\"ServiceLineToServiceLineTransaction\"}],\"dbName\":null},\"DatabaseBackup\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"DatabaseBackupToUser\"}],\"dbName\":null},\"BackupDestination\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"path\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"isActive\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"BackupDestinationToUser\"}],\"dbName\":null},\"Notification\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"type\",\"kind\":\"enum\",\"type\":\"NotificationTypes\"},{\"name\":\"message\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"read\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"NotificationToUser\"}],\"dbName\":null},\"CronJobLog\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"jobName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"startedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"completedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"durationMs\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"errorMessage\",\"kind\":\"scalar\",\"type\":\"String\"}],\"dbName\":null},\"CloudFolder\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"parentId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"parent\",\"kind\":\"object\",\"type\":\"CloudFolder\",\"relationName\":\"FolderChildren\"},{\"name\":\"children\",\"kind\":\"object\",\"type\":\"CloudFolder\",\"relationName\":\"FolderChildren\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"CloudFolderToUser\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"PatientCloudFolder\"},{\"name\":\"files\",\"kind\":\"object\",\"type\":\"CloudFile\",\"relationName\":\"CloudFileToCloudFolder\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updatedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"}],\"dbName\":null},\"CloudFile\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"mimeType\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"fileSize\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"folderId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"isComplete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"totalChunks\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"diskPath\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updatedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"CloudFileToUser\"},{\"name\":\"folder\",\"kind\":\"object\",\"type\":\"CloudFolder\",\"relationName\":\"CloudFileToCloudFolder\"},{\"name\":\"chunks\",\"kind\":\"object\",\"type\":\"CloudFileChunk\",\"relationName\":\"CloudFileToCloudFileChunk\"}],\"dbName\":null},\"CloudFileChunk\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"fileId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"seq\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"data\",\"kind\":\"scalar\",\"type\":\"Bytes\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"file\",\"kind\":\"object\",\"type\":\"CloudFile\",\"relationName\":\"CloudFileToCloudFileChunk\"}],\"dbName\":null},\"Communication\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"channel\",\"kind\":\"enum\",\"type\":\"CommunicationChannel\"},{\"name\":\"direction\",\"kind\":\"enum\",\"type\":\"CommunicationDirection\"},{\"name\":\"status\",\"kind\":\"enum\",\"type\":\"CommunicationStatus\"},{\"name\":\"body\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"callDuration\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"twilioSid\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"CommunicationToPatient\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"CommunicationToUser\"}],\"dbName\":\"communications\"},\"PatientDocument\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"filename\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"originalName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"mimeType\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"fileSize\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"filePath\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"uploadedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updatedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"PatientToPatientDocument\"}],\"dbName\":null},\"TwilioSettings\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"accountSid\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"authToken\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"phoneNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"greetingMessage\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"templates\",\"kind\":\"scalar\",\"type\":\"Json\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"TwilioSettingsToUser\"}],\"dbName\":\"twilio_settings\"},\"AiSettings\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"apiKey\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"aiEnabled\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"openAiKey\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"openAiEnabled\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"claudeAiKey\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"claudeAiEnabled\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"claudeAiModel\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"openAiModel\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"googleAiModel\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"dentalMgmtKey\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"dentalMgmtEnabled\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"afterHoursEnabled\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"openPhoneReply\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"AiSettingsToUser\"}],\"dbName\":\"ai_settings\"},\"OfficeHours\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"data\",\"kind\":\"scalar\",\"type\":\"Json\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"OfficeHoursToUser\"}],\"dbName\":\"office_hours\"},\"OfficeContact\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"officeName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"receptionistName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"dentistName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"phoneNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"email\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"fax\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"streetAddress\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"city\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"state\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"zipCode\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"OfficeContactToUser\"}],\"dbName\":\"office_contact\"},\"InsuranceContact\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"phoneNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"InsuranceContactToUser\"}],\"dbName\":\"insurance_contact\"},\"ProcedureTimeslot\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"data\",\"kind\":\"scalar\",\"type\":\"Json\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"ProcedureTimeslotToUser\"}],\"dbName\":\"procedure_timeslot\"},\"PatientConversation\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"stage\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"aiHandoff\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"updatedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"PatientToPatientConversation\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"PatientConversationToUser\"}],\"dbName\":\"patient_conversation\"},\"LabRxTemplate\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"labName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"labPhone\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"labFax\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"labAddress\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"labAccount\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"caseType\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"material\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"instructions\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"sortOrder\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updatedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"LabRxTemplateToUser\"}],\"dbName\":\"lab_rx_template\"},\"CommissionBatch\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"npiProviderId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"totalCollection\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"commissionAmount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"notes\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"npiProvider\",\"kind\":\"object\",\"type\":\"NpiProvider\",\"relationName\":\"CommissionBatchToNpiProvider\"},{\"name\":\"items\",\"kind\":\"object\",\"type\":\"CommissionBatchItem\",\"relationName\":\"CommissionBatchToCommissionBatchItem\"}],\"dbName\":null},\"CommissionBatchItem\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"commissionBatchId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"paymentId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"collectionAmount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"commissionBatch\",\"kind\":\"object\",\"type\":\"CommissionBatch\",\"relationName\":\"CommissionBatchToCommissionBatchItem\"},{\"name\":\"payment\",\"kind\":\"object\",\"type\":\"Payment\",\"relationName\":\"CommissionBatchItemToPayment\"}],\"dbName\":null},\"SeleniumSettings\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"paymentGroupId\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"SeleniumSettingsToUser\"}],\"dbName\":\"selenium_settings\"}},\"enums\":{},\"types\":{}}") defineDmmfProperty(exports.Prisma, config.runtimeDataModel) config.parameterizationSchema = { strings: JSON.parse("[\"where\",\"orderBy\",\"cursor\",\"user\",\"patient\",\"appointments\",\"appointment\",\"staff\",\"claims\",\"claim\",\"updatedBy\",\"npiProvider\",\"payment\",\"serviceLineTransactions\",\"_count\",\"serviceLine\",\"serviceLines\",\"items\",\"commissionBatch\",\"commissionBatchItems\",\"payments\",\"commissionBatches\",\"appointmentProcedures\",\"claimFiles\",\"procedures\",\"files\",\"group\",\"pdfs\",\"groups\",\"communications\",\"documents\",\"conversation\",\"parent\",\"children\",\"folder\",\"file\",\"chunks\",\"cloudFolders\",\"patients\",\"npiProviders\",\"insuranceCredentials\",\"shoppingVendors\",\"updatedPayments\",\"backups\",\"backupDestinations\",\"notifications\",\"cloudFiles\",\"twilioSettings\",\"aiSettings\",\"officeHours\",\"officeContact\",\"procedureTimeslot\",\"insuranceContacts\",\"patientConversations\",\"labRxTemplates\",\"seleniumSettings\",\"User.findUnique\",\"User.findUniqueOrThrow\",\"User.findFirst\",\"User.findFirstOrThrow\",\"User.findMany\",\"data\",\"User.createOne\",\"User.createMany\",\"User.createManyAndReturn\",\"User.updateOne\",\"User.updateMany\",\"User.updateManyAndReturn\",\"create\",\"update\",\"User.upsertOne\",\"User.deleteOne\",\"User.deleteMany\",\"having\",\"_avg\",\"_sum\",\"_min\",\"_max\",\"User.groupBy\",\"User.aggregate\",\"Patient.findUnique\",\"Patient.findUniqueOrThrow\",\"Patient.findFirst\",\"Patient.findFirstOrThrow\",\"Patient.findMany\",\"Patient.createOne\",\"Patient.createMany\",\"Patient.createManyAndReturn\",\"Patient.updateOne\",\"Patient.updateMany\",\"Patient.updateManyAndReturn\",\"Patient.upsertOne\",\"Patient.deleteOne\",\"Patient.deleteMany\",\"Patient.groupBy\",\"Patient.aggregate\",\"Appointment.findUnique\",\"Appointment.findUniqueOrThrow\",\"Appointment.findFirst\",\"Appointment.findFirstOrThrow\",\"Appointment.findMany\",\"Appointment.createOne\",\"Appointment.createMany\",\"Appointment.createManyAndReturn\",\"Appointment.updateOne\",\"Appointment.updateMany\",\"Appointment.updateManyAndReturn\",\"Appointment.upsertOne\",\"Appointment.deleteOne\",\"Appointment.deleteMany\",\"Appointment.groupBy\",\"Appointment.aggregate\",\"AppointmentFile.findUnique\",\"AppointmentFile.findUniqueOrThrow\",\"AppointmentFile.findFirst\",\"AppointmentFile.findFirstOrThrow\",\"AppointmentFile.findMany\",\"AppointmentFile.createOne\",\"AppointmentFile.createMany\",\"AppointmentFile.createManyAndReturn\",\"AppointmentFile.updateOne\",\"AppointmentFile.updateMany\",\"AppointmentFile.updateManyAndReturn\",\"AppointmentFile.upsertOne\",\"AppointmentFile.deleteOne\",\"AppointmentFile.deleteMany\",\"AppointmentFile.groupBy\",\"AppointmentFile.aggregate\",\"Staff.findUnique\",\"Staff.findUniqueOrThrow\",\"Staff.findFirst\",\"Staff.findFirstOrThrow\",\"Staff.findMany\",\"Staff.createOne\",\"Staff.createMany\",\"Staff.createManyAndReturn\",\"Staff.updateOne\",\"Staff.updateMany\",\"Staff.updateManyAndReturn\",\"Staff.upsertOne\",\"Staff.deleteOne\",\"Staff.deleteMany\",\"Staff.groupBy\",\"Staff.aggregate\",\"NpiProvider.findUnique\",\"NpiProvider.findUniqueOrThrow\",\"NpiProvider.findFirst\",\"NpiProvider.findFirstOrThrow\",\"NpiProvider.findMany\",\"NpiProvider.createOne\",\"NpiProvider.createMany\",\"NpiProvider.createManyAndReturn\",\"NpiProvider.updateOne\",\"NpiProvider.updateMany\",\"NpiProvider.updateManyAndReturn\",\"NpiProvider.upsertOne\",\"NpiProvider.deleteOne\",\"NpiProvider.deleteMany\",\"NpiProvider.groupBy\",\"NpiProvider.aggregate\",\"AppointmentProcedure.findUnique\",\"AppointmentProcedure.findUniqueOrThrow\",\"AppointmentProcedure.findFirst\",\"AppointmentProcedure.findFirstOrThrow\",\"AppointmentProcedure.findMany\",\"AppointmentProcedure.createOne\",\"AppointmentProcedure.createMany\",\"AppointmentProcedure.createManyAndReturn\",\"AppointmentProcedure.updateOne\",\"AppointmentProcedure.updateMany\",\"AppointmentProcedure.updateManyAndReturn\",\"AppointmentProcedure.upsertOne\",\"AppointmentProcedure.deleteOne\",\"AppointmentProcedure.deleteMany\",\"AppointmentProcedure.groupBy\",\"AppointmentProcedure.aggregate\",\"Claim.findUnique\",\"Claim.findUniqueOrThrow\",\"Claim.findFirst\",\"Claim.findFirstOrThrow\",\"Claim.findMany\",\"Claim.createOne\",\"Claim.createMany\",\"Claim.createManyAndReturn\",\"Claim.updateOne\",\"Claim.updateMany\",\"Claim.updateManyAndReturn\",\"Claim.upsertOne\",\"Claim.deleteOne\",\"Claim.deleteMany\",\"Claim.groupBy\",\"Claim.aggregate\",\"ServiceLine.findUnique\",\"ServiceLine.findUniqueOrThrow\",\"ServiceLine.findFirst\",\"ServiceLine.findFirstOrThrow\",\"ServiceLine.findMany\",\"ServiceLine.createOne\",\"ServiceLine.createMany\",\"ServiceLine.createManyAndReturn\",\"ServiceLine.updateOne\",\"ServiceLine.updateMany\",\"ServiceLine.updateManyAndReturn\",\"ServiceLine.upsertOne\",\"ServiceLine.deleteOne\",\"ServiceLine.deleteMany\",\"ServiceLine.groupBy\",\"ServiceLine.aggregate\",\"ClaimFile.findUnique\",\"ClaimFile.findUniqueOrThrow\",\"ClaimFile.findFirst\",\"ClaimFile.findFirstOrThrow\",\"ClaimFile.findMany\",\"ClaimFile.createOne\",\"ClaimFile.createMany\",\"ClaimFile.createManyAndReturn\",\"ClaimFile.updateOne\",\"ClaimFile.updateMany\",\"ClaimFile.updateManyAndReturn\",\"ClaimFile.upsertOne\",\"ClaimFile.deleteOne\",\"ClaimFile.deleteMany\",\"ClaimFile.groupBy\",\"ClaimFile.aggregate\",\"InsuranceCredential.findUnique\",\"InsuranceCredential.findUniqueOrThrow\",\"InsuranceCredential.findFirst\",\"InsuranceCredential.findFirstOrThrow\",\"InsuranceCredential.findMany\",\"InsuranceCredential.createOne\",\"InsuranceCredential.createMany\",\"InsuranceCredential.createManyAndReturn\",\"InsuranceCredential.updateOne\",\"InsuranceCredential.updateMany\",\"InsuranceCredential.updateManyAndReturn\",\"InsuranceCredential.upsertOne\",\"InsuranceCredential.deleteOne\",\"InsuranceCredential.deleteMany\",\"InsuranceCredential.groupBy\",\"InsuranceCredential.aggregate\",\"ShoppingVendor.findUnique\",\"ShoppingVendor.findUniqueOrThrow\",\"ShoppingVendor.findFirst\",\"ShoppingVendor.findFirstOrThrow\",\"ShoppingVendor.findMany\",\"ShoppingVendor.createOne\",\"ShoppingVendor.createMany\",\"ShoppingVendor.createManyAndReturn\",\"ShoppingVendor.updateOne\",\"ShoppingVendor.updateMany\",\"ShoppingVendor.updateManyAndReturn\",\"ShoppingVendor.upsertOne\",\"ShoppingVendor.deleteOne\",\"ShoppingVendor.deleteMany\",\"ShoppingVendor.groupBy\",\"ShoppingVendor.aggregate\",\"PdfGroup.findUnique\",\"PdfGroup.findUniqueOrThrow\",\"PdfGroup.findFirst\",\"PdfGroup.findFirstOrThrow\",\"PdfGroup.findMany\",\"PdfGroup.createOne\",\"PdfGroup.createMany\",\"PdfGroup.createManyAndReturn\",\"PdfGroup.updateOne\",\"PdfGroup.updateMany\",\"PdfGroup.updateManyAndReturn\",\"PdfGroup.upsertOne\",\"PdfGroup.deleteOne\",\"PdfGroup.deleteMany\",\"PdfGroup.groupBy\",\"PdfGroup.aggregate\",\"PdfFile.findUnique\",\"PdfFile.findUniqueOrThrow\",\"PdfFile.findFirst\",\"PdfFile.findFirstOrThrow\",\"PdfFile.findMany\",\"PdfFile.createOne\",\"PdfFile.createMany\",\"PdfFile.createManyAndReturn\",\"PdfFile.updateOne\",\"PdfFile.updateMany\",\"PdfFile.updateManyAndReturn\",\"PdfFile.upsertOne\",\"PdfFile.deleteOne\",\"PdfFile.deleteMany\",\"PdfFile.groupBy\",\"PdfFile.aggregate\",\"Payment.findUnique\",\"Payment.findUniqueOrThrow\",\"Payment.findFirst\",\"Payment.findFirstOrThrow\",\"Payment.findMany\",\"Payment.createOne\",\"Payment.createMany\",\"Payment.createManyAndReturn\",\"Payment.updateOne\",\"Payment.updateMany\",\"Payment.updateManyAndReturn\",\"Payment.upsertOne\",\"Payment.deleteOne\",\"Payment.deleteMany\",\"Payment.groupBy\",\"Payment.aggregate\",\"ServiceLineTransaction.findUnique\",\"ServiceLineTransaction.findUniqueOrThrow\",\"ServiceLineTransaction.findFirst\",\"ServiceLineTransaction.findFirstOrThrow\",\"ServiceLineTransaction.findMany\",\"ServiceLineTransaction.createOne\",\"ServiceLineTransaction.createMany\",\"ServiceLineTransaction.createManyAndReturn\",\"ServiceLineTransaction.updateOne\",\"ServiceLineTransaction.updateMany\",\"ServiceLineTransaction.updateManyAndReturn\",\"ServiceLineTransaction.upsertOne\",\"ServiceLineTransaction.deleteOne\",\"ServiceLineTransaction.deleteMany\",\"ServiceLineTransaction.groupBy\",\"ServiceLineTransaction.aggregate\",\"DatabaseBackup.findUnique\",\"DatabaseBackup.findUniqueOrThrow\",\"DatabaseBackup.findFirst\",\"DatabaseBackup.findFirstOrThrow\",\"DatabaseBackup.findMany\",\"DatabaseBackup.createOne\",\"DatabaseBackup.createMany\",\"DatabaseBackup.createManyAndReturn\",\"DatabaseBackup.updateOne\",\"DatabaseBackup.updateMany\",\"DatabaseBackup.updateManyAndReturn\",\"DatabaseBackup.upsertOne\",\"DatabaseBackup.deleteOne\",\"DatabaseBackup.deleteMany\",\"DatabaseBackup.groupBy\",\"DatabaseBackup.aggregate\",\"BackupDestination.findUnique\",\"BackupDestination.findUniqueOrThrow\",\"BackupDestination.findFirst\",\"BackupDestination.findFirstOrThrow\",\"BackupDestination.findMany\",\"BackupDestination.createOne\",\"BackupDestination.createMany\",\"BackupDestination.createManyAndReturn\",\"BackupDestination.updateOne\",\"BackupDestination.updateMany\",\"BackupDestination.updateManyAndReturn\",\"BackupDestination.upsertOne\",\"BackupDestination.deleteOne\",\"BackupDestination.deleteMany\",\"BackupDestination.groupBy\",\"BackupDestination.aggregate\",\"Notification.findUnique\",\"Notification.findUniqueOrThrow\",\"Notification.findFirst\",\"Notification.findFirstOrThrow\",\"Notification.findMany\",\"Notification.createOne\",\"Notification.createMany\",\"Notification.createManyAndReturn\",\"Notification.updateOne\",\"Notification.updateMany\",\"Notification.updateManyAndReturn\",\"Notification.upsertOne\",\"Notification.deleteOne\",\"Notification.deleteMany\",\"Notification.groupBy\",\"Notification.aggregate\",\"CronJobLog.findUnique\",\"CronJobLog.findUniqueOrThrow\",\"CronJobLog.findFirst\",\"CronJobLog.findFirstOrThrow\",\"CronJobLog.findMany\",\"CronJobLog.createOne\",\"CronJobLog.createMany\",\"CronJobLog.createManyAndReturn\",\"CronJobLog.updateOne\",\"CronJobLog.updateMany\",\"CronJobLog.updateManyAndReturn\",\"CronJobLog.upsertOne\",\"CronJobLog.deleteOne\",\"CronJobLog.deleteMany\",\"CronJobLog.groupBy\",\"CronJobLog.aggregate\",\"CloudFolder.findUnique\",\"CloudFolder.findUniqueOrThrow\",\"CloudFolder.findFirst\",\"CloudFolder.findFirstOrThrow\",\"CloudFolder.findMany\",\"CloudFolder.createOne\",\"CloudFolder.createMany\",\"CloudFolder.createManyAndReturn\",\"CloudFolder.updateOne\",\"CloudFolder.updateMany\",\"CloudFolder.updateManyAndReturn\",\"CloudFolder.upsertOne\",\"CloudFolder.deleteOne\",\"CloudFolder.deleteMany\",\"CloudFolder.groupBy\",\"CloudFolder.aggregate\",\"CloudFile.findUnique\",\"CloudFile.findUniqueOrThrow\",\"CloudFile.findFirst\",\"CloudFile.findFirstOrThrow\",\"CloudFile.findMany\",\"CloudFile.createOne\",\"CloudFile.createMany\",\"CloudFile.createManyAndReturn\",\"CloudFile.updateOne\",\"CloudFile.updateMany\",\"CloudFile.updateManyAndReturn\",\"CloudFile.upsertOne\",\"CloudFile.deleteOne\",\"CloudFile.deleteMany\",\"CloudFile.groupBy\",\"CloudFile.aggregate\",\"CloudFileChunk.findUnique\",\"CloudFileChunk.findUniqueOrThrow\",\"CloudFileChunk.findFirst\",\"CloudFileChunk.findFirstOrThrow\",\"CloudFileChunk.findMany\",\"CloudFileChunk.createOne\",\"CloudFileChunk.createMany\",\"CloudFileChunk.createManyAndReturn\",\"CloudFileChunk.updateOne\",\"CloudFileChunk.updateMany\",\"CloudFileChunk.updateManyAndReturn\",\"CloudFileChunk.upsertOne\",\"CloudFileChunk.deleteOne\",\"CloudFileChunk.deleteMany\",\"CloudFileChunk.groupBy\",\"CloudFileChunk.aggregate\",\"Communication.findUnique\",\"Communication.findUniqueOrThrow\",\"Communication.findFirst\",\"Communication.findFirstOrThrow\",\"Communication.findMany\",\"Communication.createOne\",\"Communication.createMany\",\"Communication.createManyAndReturn\",\"Communication.updateOne\",\"Communication.updateMany\",\"Communication.updateManyAndReturn\",\"Communication.upsertOne\",\"Communication.deleteOne\",\"Communication.deleteMany\",\"Communication.groupBy\",\"Communication.aggregate\",\"PatientDocument.findUnique\",\"PatientDocument.findUniqueOrThrow\",\"PatientDocument.findFirst\",\"PatientDocument.findFirstOrThrow\",\"PatientDocument.findMany\",\"PatientDocument.createOne\",\"PatientDocument.createMany\",\"PatientDocument.createManyAndReturn\",\"PatientDocument.updateOne\",\"PatientDocument.updateMany\",\"PatientDocument.updateManyAndReturn\",\"PatientDocument.upsertOne\",\"PatientDocument.deleteOne\",\"PatientDocument.deleteMany\",\"PatientDocument.groupBy\",\"PatientDocument.aggregate\",\"TwilioSettings.findUnique\",\"TwilioSettings.findUniqueOrThrow\",\"TwilioSettings.findFirst\",\"TwilioSettings.findFirstOrThrow\",\"TwilioSettings.findMany\",\"TwilioSettings.createOne\",\"TwilioSettings.createMany\",\"TwilioSettings.createManyAndReturn\",\"TwilioSettings.updateOne\",\"TwilioSettings.updateMany\",\"TwilioSettings.updateManyAndReturn\",\"TwilioSettings.upsertOne\",\"TwilioSettings.deleteOne\",\"TwilioSettings.deleteMany\",\"TwilioSettings.groupBy\",\"TwilioSettings.aggregate\",\"AiSettings.findUnique\",\"AiSettings.findUniqueOrThrow\",\"AiSettings.findFirst\",\"AiSettings.findFirstOrThrow\",\"AiSettings.findMany\",\"AiSettings.createOne\",\"AiSettings.createMany\",\"AiSettings.createManyAndReturn\",\"AiSettings.updateOne\",\"AiSettings.updateMany\",\"AiSettings.updateManyAndReturn\",\"AiSettings.upsertOne\",\"AiSettings.deleteOne\",\"AiSettings.deleteMany\",\"AiSettings.groupBy\",\"AiSettings.aggregate\",\"OfficeHours.findUnique\",\"OfficeHours.findUniqueOrThrow\",\"OfficeHours.findFirst\",\"OfficeHours.findFirstOrThrow\",\"OfficeHours.findMany\",\"OfficeHours.createOne\",\"OfficeHours.createMany\",\"OfficeHours.createManyAndReturn\",\"OfficeHours.updateOne\",\"OfficeHours.updateMany\",\"OfficeHours.updateManyAndReturn\",\"OfficeHours.upsertOne\",\"OfficeHours.deleteOne\",\"OfficeHours.deleteMany\",\"OfficeHours.groupBy\",\"OfficeHours.aggregate\",\"OfficeContact.findUnique\",\"OfficeContact.findUniqueOrThrow\",\"OfficeContact.findFirst\",\"OfficeContact.findFirstOrThrow\",\"OfficeContact.findMany\",\"OfficeContact.createOne\",\"OfficeContact.createMany\",\"OfficeContact.createManyAndReturn\",\"OfficeContact.updateOne\",\"OfficeContact.updateMany\",\"OfficeContact.updateManyAndReturn\",\"OfficeContact.upsertOne\",\"OfficeContact.deleteOne\",\"OfficeContact.deleteMany\",\"OfficeContact.groupBy\",\"OfficeContact.aggregate\",\"InsuranceContact.findUnique\",\"InsuranceContact.findUniqueOrThrow\",\"InsuranceContact.findFirst\",\"InsuranceContact.findFirstOrThrow\",\"InsuranceContact.findMany\",\"InsuranceContact.createOne\",\"InsuranceContact.createMany\",\"InsuranceContact.createManyAndReturn\",\"InsuranceContact.updateOne\",\"InsuranceContact.updateMany\",\"InsuranceContact.updateManyAndReturn\",\"InsuranceContact.upsertOne\",\"InsuranceContact.deleteOne\",\"InsuranceContact.deleteMany\",\"InsuranceContact.groupBy\",\"InsuranceContact.aggregate\",\"ProcedureTimeslot.findUnique\",\"ProcedureTimeslot.findUniqueOrThrow\",\"ProcedureTimeslot.findFirst\",\"ProcedureTimeslot.findFirstOrThrow\",\"ProcedureTimeslot.findMany\",\"ProcedureTimeslot.createOne\",\"ProcedureTimeslot.createMany\",\"ProcedureTimeslot.createManyAndReturn\",\"ProcedureTimeslot.updateOne\",\"ProcedureTimeslot.updateMany\",\"ProcedureTimeslot.updateManyAndReturn\",\"ProcedureTimeslot.upsertOne\",\"ProcedureTimeslot.deleteOne\",\"ProcedureTimeslot.deleteMany\",\"ProcedureTimeslot.groupBy\",\"ProcedureTimeslot.aggregate\",\"PatientConversation.findUnique\",\"PatientConversation.findUniqueOrThrow\",\"PatientConversation.findFirst\",\"PatientConversation.findFirstOrThrow\",\"PatientConversation.findMany\",\"PatientConversation.createOne\",\"PatientConversation.createMany\",\"PatientConversation.createManyAndReturn\",\"PatientConversation.updateOne\",\"PatientConversation.updateMany\",\"PatientConversation.updateManyAndReturn\",\"PatientConversation.upsertOne\",\"PatientConversation.deleteOne\",\"PatientConversation.deleteMany\",\"PatientConversation.groupBy\",\"PatientConversation.aggregate\",\"LabRxTemplate.findUnique\",\"LabRxTemplate.findUniqueOrThrow\",\"LabRxTemplate.findFirst\",\"LabRxTemplate.findFirstOrThrow\",\"LabRxTemplate.findMany\",\"LabRxTemplate.createOne\",\"LabRxTemplate.createMany\",\"LabRxTemplate.createManyAndReturn\",\"LabRxTemplate.updateOne\",\"LabRxTemplate.updateMany\",\"LabRxTemplate.updateManyAndReturn\",\"LabRxTemplate.upsertOne\",\"LabRxTemplate.deleteOne\",\"LabRxTemplate.deleteMany\",\"LabRxTemplate.groupBy\",\"LabRxTemplate.aggregate\",\"CommissionBatch.findUnique\",\"CommissionBatch.findUniqueOrThrow\",\"CommissionBatch.findFirst\",\"CommissionBatch.findFirstOrThrow\",\"CommissionBatch.findMany\",\"CommissionBatch.createOne\",\"CommissionBatch.createMany\",\"CommissionBatch.createManyAndReturn\",\"CommissionBatch.updateOne\",\"CommissionBatch.updateMany\",\"CommissionBatch.updateManyAndReturn\",\"CommissionBatch.upsertOne\",\"CommissionBatch.deleteOne\",\"CommissionBatch.deleteMany\",\"CommissionBatch.groupBy\",\"CommissionBatch.aggregate\",\"CommissionBatchItem.findUnique\",\"CommissionBatchItem.findUniqueOrThrow\",\"CommissionBatchItem.findFirst\",\"CommissionBatchItem.findFirstOrThrow\",\"CommissionBatchItem.findMany\",\"CommissionBatchItem.createOne\",\"CommissionBatchItem.createMany\",\"CommissionBatchItem.createManyAndReturn\",\"CommissionBatchItem.updateOne\",\"CommissionBatchItem.updateMany\",\"CommissionBatchItem.updateManyAndReturn\",\"CommissionBatchItem.upsertOne\",\"CommissionBatchItem.deleteOne\",\"CommissionBatchItem.deleteMany\",\"CommissionBatchItem.groupBy\",\"CommissionBatchItem.aggregate\",\"SeleniumSettings.findUnique\",\"SeleniumSettings.findUniqueOrThrow\",\"SeleniumSettings.findFirst\",\"SeleniumSettings.findFirstOrThrow\",\"SeleniumSettings.findMany\",\"SeleniumSettings.createOne\",\"SeleniumSettings.createMany\",\"SeleniumSettings.createManyAndReturn\",\"SeleniumSettings.updateOne\",\"SeleniumSettings.updateMany\",\"SeleniumSettings.updateManyAndReturn\",\"SeleniumSettings.upsertOne\",\"SeleniumSettings.deleteOne\",\"SeleniumSettings.deleteMany\",\"SeleniumSettings.groupBy\",\"SeleniumSettings.aggregate\",\"AND\",\"OR\",\"NOT\",\"id\",\"userId\",\"paymentGroupId\",\"equals\",\"in\",\"notIn\",\"lt\",\"lte\",\"gt\",\"gte\",\"contains\",\"startsWith\",\"endsWith\",\"not\",\"commissionBatchId\",\"paymentId\",\"collectionAmount\",\"npiProviderId\",\"totalCollection\",\"commissionAmount\",\"notes\",\"createdAt\",\"name\",\"labName\",\"labPhone\",\"labFax\",\"labAddress\",\"labAccount\",\"caseType\",\"material\",\"instructions\",\"sortOrder\",\"updatedAt\",\"patientId\",\"stage\",\"aiHandoff\",\"string_contains\",\"string_starts_with\",\"string_ends_with\",\"array_starts_with\",\"array_ends_with\",\"array_contains\",\"phoneNumber\",\"officeName\",\"receptionistName\",\"dentistName\",\"email\",\"fax\",\"streetAddress\",\"city\",\"state\",\"zipCode\",\"apiKey\",\"aiEnabled\",\"openAiKey\",\"openAiEnabled\",\"claudeAiKey\",\"claudeAiEnabled\",\"claudeAiModel\",\"openAiModel\",\"googleAiModel\",\"dentalMgmtKey\",\"dentalMgmtEnabled\",\"afterHoursEnabled\",\"openPhoneReply\",\"accountSid\",\"authToken\",\"greetingMessage\",\"templates\",\"filename\",\"originalName\",\"mimeType\",\"fileSize\",\"filePath\",\"uploadedAt\",\"CommunicationChannel\",\"channel\",\"CommunicationDirection\",\"direction\",\"CommunicationStatus\",\"status\",\"body\",\"callDuration\",\"twilioSid\",\"fileId\",\"seq\",\"folderId\",\"isComplete\",\"totalChunks\",\"diskPath\",\"parentId\",\"jobName\",\"startedAt\",\"completedAt\",\"durationMs\",\"errorMessage\",\"NotificationTypes\",\"type\",\"message\",\"read\",\"path\",\"isActive\",\"serviceLineId\",\"transactionId\",\"paidAmount\",\"adjustedAmount\",\"PaymentMethod\",\"method\",\"receivedDate\",\"payerName\",\"claimId\",\"updatedById\",\"totalBilled\",\"totalPaid\",\"totalAdjusted\",\"totalDue\",\"mhPaidAmount\",\"copayment\",\"adjustment\",\"PaymentStatus\",\"icn\",\"pdfData\",\"groupId\",\"title\",\"PdfTitleKey\",\"titleKey\",\"vendorName\",\"websiteUrl\",\"loginUsername\",\"loginPassword\",\"siteKey\",\"username\",\"password\",\"procedureCode\",\"procedureDate\",\"quad\",\"arch\",\"toothNumber\",\"toothSurface\",\"paidCode\",\"allowedAmount\",\"ServiceLineStatus\",\"appointmentId\",\"staffId\",\"patientName\",\"memberId\",\"dateOfBirth\",\"remarks\",\"MissingTeethStatus\",\"missingTeethStatus\",\"missingTeeth\",\"serviceDate\",\"insuranceProvider\",\"ClaimStatus\",\"claimNumber\",\"preAuthNumber\",\"procedureLabel\",\"fee\",\"category\",\"oralCavityArea\",\"ProcedureSource\",\"source\",\"comboKey\",\"npiNumber\",\"providerName\",\"role\",\"phone\",\"date\",\"startTime\",\"endTime\",\"typeLocked\",\"procedureCodeNotes\",\"movedByAi\",\"PatientStatus\",\"eligibilityStatus\",\"firstName\",\"lastName\",\"gender\",\"address\",\"insuranceId\",\"groupNumber\",\"policyHolder\",\"allergies\",\"medicalConditions\",\"preferredLanguage\",\"autoBackupEnabled\",\"autoBackupHour\",\"usbBackupEnabled\",\"usbBackupHour\",\"autoMhCheckEnabled\",\"autoMhCheckDayOfWeek\",\"autoMhCheckHour\",\"userId_siteKey\",\"userId_npiNumber\",\"every\",\"some\",\"none\",\"fileId_seq\",\"userId_parentId_name\",\"commissionBatchId_paymentId\",\"is\",\"isNot\",\"connectOrCreate\",\"upsert\",\"createMany\",\"set\",\"disconnect\",\"delete\",\"connect\",\"updateMany\",\"deleteMany\",\"increment\",\"decrement\",\"multiply\",\"divide\"]"), - graph: "khT1AsAEJAUAAKoJACAHAADlCQAgCAAApAkAIB0AAOwJACAlAAC1CQAgJgAA5AkAICcAAOYJACAoAADnCQAgKQAA6AkAICoAAKUJACArAADpCQAgLAAA6gkAIC0AAOsJACAuAAC3CQAgLwAA7QkAIDAAAO4JACAxAADvCQAgMgAA8AkAIDMAAPEJACA0AADyCQAgNQAA8wkAIDYAAPQJACA3AAD1CQAggAUAAOMJADCBBQAADQAQggUAAOMJADCDBQIAAAABhgYBAAAAAYcGAQCgCAAhvAYgAMAIACG9BgIA4ggAIb4GIADACAAhvwYCAOIIACHABiAAwAgAIcEGAgDiCAAhwgYCAOIIACEBAAAAAQAgIgMAAKEIACAFAACqCQAgCAAApAkAIAwAAKUJACAYAACnCQAgHAAA-gkAIB0AAOwJACAeAAD7CQAgHwAA_AkAICUAALUJACCABQAA-QkAMIEFAAADABCCBQAA-QkAMIMFAgDiCAAhhAUCAOIIACGYBUAA4wgAIaMFQADjCAAhsQUBALsIACG0BQEAuwgAIbYFAQC7CAAh0wUAAPcJsQYilQZAAOQIACGbBgEAuwgAIakGAQCgCAAhsgYBAKAIACGzBgEAoAgAIbQGAQCgCAAhtQYBALsIACG2BgEAuwgAIbcGAQC7CAAhuAYBALsIACG5BgEAuwgAIboGAQC7CAAhuwYBALsIACEWAwAAhgoAIAUAALARACAIAACzEQAgDAAAthEAIBgAAMgRACAcAADaEQAgHQAAvBEAIB4AANsRACAfAADcEQAgJQAAuhEAILEFAACRCgAgtAUAAJEKACC2BQAAkQoAIJUGAACRCgAgmwYAAJEKACC1BgAAkQoAILYGAACRCgAgtwYAAJEKACC4BgAAkQoAILkGAACRCgAgugYAAJEKACC7BgAAkQoAICIDAAChCAAgBQAAqgkAIAgAAKQJACAMAAClCQAgGAAApwkAIBwAAPoJACAdAADsCQAgHgAA-wkAIB8AAPwJACAlAAC1CQAggAUAAPkJADCBBQAAAwAQggUAAPkJADCDBQIAAAABhAUCAOIIACGYBUAA4wgAIaMFQADjCAAhsQUBALsIACG0BQEAuwgAIbYFAQC7CAAh0wUAAPcJsQYilQZAAOQIACGbBgEAuwgAIakGAQCgCAAhsgYBAKAIACGzBgEAoAgAIbQGAQCgCAAhtQYBALsIACG2BgEAuwgAIbcGAQC7CAAhuAYBALsIACG5BgEAuwgAIboGAQC7CAAhuwYBALsIACEDAAAAAwAgAQAABAAwAgAABQAgGQMAAKEIACAEAACZCQAgBwAA4QkAIAgAAKQJACAYAACnCQAgGQAA-AkAIIAFAAD2CQAwgQUAAAcAEIIFAAD2CQAwgwUCAOIIACGEBQIA4ggAIZcFAQC7CAAhmAVAAOMIACGkBQIA4ggAIdMFAQCgCAAh5AUBAKAIACH-BQEAoAgAIZIGAgDiCAAhqgZAAOMIACGrBgEAoAgAIawGAQCgCAAhrQYgAMAIACGuBgEAuwgAIa8GIADACAAhsQYAAPcJsQYiCAMAAIYKACAEAADGEQAgBwAA1xEAIAgAALMRACAYAADIEQAgGQAA2REAIJcFAACRCgAgrgYAAJEKACAZAwAAoQgAIAQAAJkJACAHAADhCQAgCAAApAkAIBgAAKcJACAZAAD4CQAggAUAAPYJADCBBQAABwAQggUAAPYJADCDBQIAAAABhAUCAOIIACGXBQEAuwgAIZgFQADjCAAhpAUCAOIIACHTBQEAoAgAIeQFAQCgCAAh_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AAtABCCBQAAzwkAMIMFAgDiCAAhkQUCAOIIACGSBQIA4ggAIZMFEADLCQAhAgwAANMRACASAADSEQAgCgwAANEJACASAADQCQAggAUAAM8JADCBBQAALQAQggUAAM8JADCDBQIAAAABkQUCAOIIACGSBQIA4ggAIZMFEADLCQAhygYAAM4JACADAAAALQAgAQAALgAwAgAALwAgAwAAAC0AIAEAAC4AMAIAAC8AIAEAAAAtACABAAAAIQAgAQAAACkAIAEAAAAtACALCwAAzAkAIBEAAM0JACCABQAAygkAMIEFAAA2ABCCBQAAygkAMIMFAgDiCAAhlAUCAOIIACGVBRAAywkAIZYFEADLCQAhlwUBALsIACGYBUAA4wgAIQMLAADQEQAgEQAA0REAIJcFAACRCgAgCwsAAMwJACARAADNCQAggAUAAMoJADCBBQAANgAQggUAAMoJADCDBQIAAAABlAUCAOIIACGVBRAAywkAIZYFEADLCQAhlwUBALsIACGYBUAA4wgAIQMAAAA2ACABAAA3ADACAAA4ACAUBAAAmQkAIAYAAMMJACALAADJCQAggAUAAMYJADCBBQAAOgAQggUAAMYJADCDBQIA4ggAIZQFAgDlCAAhmAVAAOMIACGkBQIA4ggAIYgGAQCgCAAhjAYBALsIACGNBgEAuwgAIZEGAgDiCAAhnwYBALsIACGgBhAAxwkAIaEGAQC7CAAhogYBALsIACGkBgAAyAmkBiKlBgEAuwgAIQsEAADGEQAgBgAAzhEAIAsAANARACCUBQAAkQoAIIwGAACRCgAgjQYAAJEKACCfBgAAkQoAIKAGAACRCgAgoQYAAJEKACCiBgAAkQoAIKUGAACRCgAgFAQAAJkJACAGAADDCQAgCwAAyQkAIIAFAADGCQAwgQUAADoAEIIFAADGCQAwgwUCAAAAAZQFAgDlCAAhmAVAAOMIACGkBQIA4ggAIYgGAQCgCAAhjAYBALsIACGNBgEAuwgAIZEGAgDiCAAhnwYBALsIACGgBhAAxwkAIaEGAQC7CAAhogYBALsIACGkBgAAyAmkBiKlBgEAuwgAIQMAAAA6ACABAAA7ADACAAA8ACABAAAAFwAgAQAAABAAIAEAAAAaACABAAAANgAgAQAAADoAIAMAAAApACABAAAqADACAAArACAJCQAAxQkAIIAFA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ALsIACGbBQEAuwgAIZwFAQC7CAAhnQUBALsIACGeBQEAuwgAIZ8FAQC7CAAhoAUBALsIACGhBQEAuwgAIaIFAgDiCAAhowVAAOMIACEDAAAAuQEAIAEAALoBADACAAC7AQAgBwMAAKEIACCABQAAnwgAMIEFAAC9AQAQggUAAJ8IADCDBQIA4ggAIYQFAgDiCAAhhQUBAKAIACEBAAAAvQEAIAEAAAADACABAAAABwAgAQAAAAsAIAEAAAAXACABAAAAEAAgAQAAAJABACABAAAAlAEAIAEAAAAaACABAAAAmQEAIAEAAACdAQAgAQAAAKEBACABAAAAbQAgAQAAAHQAIAEAAABiACABAAAAsgEAIAEAAABrACABAAAAuQEAIAEAAAABACAXBQAAsBEAIAcAALERACAIAACzEQAgHQAAvBEAICUAALoRACAmAACvEQAgJwAAshEAICgAALQRACApAAC1EQAgKgAAthEAICsAALcRACAsAAC4EQAgLQAAuREAIC4AALsRACAvAAC9EQAgMAAAvhEAIDEAAL8RACAyAADAEQAgMwAAwREAIDQAAMIRACA1AADDEQAgNgAAxBEAIDcAAMURACADAAAADQAgAQAA0QEAMAIAAAEAIAMAAAANACABAADRAQAwAgAAAQAgAwAAAA0AIAEAANEBADACAAABACAhBQAAmREAIAcAAJoRACAIAACcEQAgHQAApREAICUAAKMRACAmAACYEQAgJwAAmxEAICgAAJ0RACApAACeEQAgKgAAnxEAICsAAKARACAsAAChEQAgLQAAohEAIC4AAKQRACAvAACmEQAgMAAApxEAIDEAAKgRACAyAACpEQAgMwAAqhEAIDQAAKsRACA1AACsEQAgNgAArREAIDcAAK4RACCDBQIAAAABhgYBAAAAAYcGAQAAAAG8BiAAAAABvQYCAAAAAb4GIAAAAAG_BgIAAAABwAYgAAAAAcEGAgAAAAHCBgIAAAABAT0AANUBACAKgwUCAAAAAYYGAQAAAAGHBgEAAAABvAYgAAAAAb0GAgAAAAG-BiAAAAABvwYCAAAAAcAGIAAAAAHBBgIAAAABwgYCAAAAAQE9AADXAQAwAT0AANcBADAhBQAAqg8AIAcAAKsPACAIAACtDwAgHQAAtg8AICUAALQPACAmAACpDwAgJwAArA8AICgAAK4PACApAACvDwAgKgAAsA8AICsAALEPACAsAACyDwAgLQAAsw8AIC4AALUPACAvAAC3DwAgMAAAuA8AIDEAALkPACAyAAC6DwAgMwAAuw8AIDQAALwPACA1AAC9DwAgNgAAvg8AIDcAAL8PACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_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-w0AIAcAALMOACAIAAD-DQAgGAAA_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_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_gIAIBODBQIAgwoAIYQFAgCDCgAhlAUCAPQKACGYBUAAmAoAIaMFQACYCgAhpAUCAIMKACHTBQAA6AydBiKRBgIA9AoAIZIGAgCDCgAhkwYBAIIKACGUBgEAggoAIZUGQACYCgAhlgYBAIIKACGYBgAA5wyYBiKZBoAAAAABmgZAAJgKACGbBgEAggoAIZ0GAQCXCgAhngYBAJcKACECAAAAEAAgPQAAgAMAIAIAAAAQACA9AACAAwAgAQAAAAcAIAEAAAANACABAAAACwAgAQAAABcAIAMAAAASACBEAAD1AgAgRQAA_gIAIAEAAAASACABAAAAEAAgCg4AAOIMACBKAADjDAAgSwAA5gwAIEwAAOUMACBNAADkDAAglAUAAJEKACCRBgAAkQoAIJkGAACRCgAgnQYAAJEKACCeBgAAkQoAIBaABQAAgwkAMIEFAACLAwAQggUAAIMJADCDBQIAmAgAIYQFAgCYCAAhlAUCAMsIACGYBUAAqAgAIaMFQACoCAAhpAUCAJgIACHTBQAAhQmdBiKRBgIAywgAIZIGAgCYCAAhkwYBAJkIACGUBgEAmQgAIZUGQACoCAAhlgYBAJkIACGYBgAAhAmYBiKZBgAAwggAIJoGQACoCAAhmwYBAJkIACGdBgEApwgAIZ4GAQCnCAAhAwAAABAAIAEAAIoDADBJAACLAwAgAwAAABAAIAEAABEAMAIAABIAIAEAAAArACABAAAAKwAgAwAAACkAIAEAACoAMAIAACsAIAMAAAApACABAAAqADACAAArACADAAAAKQAgAQAAKgAwAgAAKwAgFAkAAJcMACAMAADhDAAgDQAAmAwAIIMFAgAAAAGSBQIAAAAB0wUAAACRBgLxBQIAAAAB8wUQAAAAAfQFEAAAAAH1BRAAAAAB9gUQAAAAAfsFAQAAAAGIBgEAAAABiQZAAAAAAYoGAQAAAAGLBgEAAAABjAYBAAAAAY0GAQAAAAGOBgEAAAABjwYQAAAAAQE9AACTAwAgEYMFAgAAAAGSBQIAAAAB0wUAAACRBgLxBQIAAAAB8wUQAAAAAfQFEAAAAAH1BRAAAAAB9gUQAAAAAfsFAQAAAAGIBgEAAAABiQZAAAAAAYoGAQAAAAGLBgEAAAABjAYBAAAAAY0GAQAAAAGOBgEAAAABjwYQAAAAAQE9AACVAwAwAT0AAJUDADABAAAAEAAgAQAAABoAIBQJAACIDAAgDAAA4AwAIA0AAIkMACCDBQIAgwoAIZIFAgD0CgAh0wUAAIYMkQYi8QUCAPQKACHzBRAAjAoAIfQFEACMCgAh9QUQAIwKACH2BRAAjAoAIfsFAQCXCgAhiAYBAIIKACGJBkAAmAoAIYoGAQCXCgAhiwYBAJcKACGMBgEAlwoAIY0GAQCXCgAhjgYBAJcKACGPBhAA6gsAIQIAAAArACA9AACaAwAgEYMFAgCDCgAhkgUCAPQKACHTBQAAhgyRBiLxBQIA9AoAIfMFEACMCgAh9AUQAIwKACH1BRAAjAoAIfYFEACMCgAh-wUBAJcKACGIBgEAggoAIYkGQACYCgAhigYBAJcKACGLBgEAlwoAIYwGAQCXCgAhjQYBAJcKACGOBgEAlwoAIY8GEADqCwAhAgAAACkAID0AAJwDACACAAAAKQAgPQAAnAMAIAEAAAAQACABAAAAGgAgAwAAACsAIEQAAJMDACBFAACaAwAgAQAAACsAIAEAAAApACAODgAA2wwAIEoAANwMACBLAADfDAAgTAAA3gwAIE0AAN0MACCSBQAAkQoAIPEFAACRCgAg-wUAAJEKACCKBgAAkQoAIIsGAACRCgAgjAYAAJEKACCNBgAAkQoAII4GAACRCgAgjwYAAJEKACAUgAUAAP8IADCBBQAApQMAEIIFAAD_CAAwgwUCAJgIACGSBQIAywgAIdMFAACACZEGIvEFAgDLCAAh8wUQAKMIACH0BRAAowgAIfUFEACjCAAh9gUQAKMIACH7BQEApwgAIYgGAQCZCAAhiQZAAKgIACGKBgEApwgAIYsGAQCnCAAhjAYBAKcIACGNBgEApwgAIY4GAQCnCAAhjwYQAPEIACEDAAAAKQAgAQAApAMAMEkAAKUDACADAAAAKQAgAQAAKgAwAgAAKwAgAQAAAEYAIAEAAABGACADAAAARAAgAQAARQAwAgAARgAgAwAAAEQAIAEAAEUAMAIAAEYAIAMAAABEACABAABFADACAABGACAGCQAA2gwAIIMFAgAAAAHIBQEAAAABygUBAAAAAcwFAQAAAAHxBQIAAAABAT0AAK0DACAFgwUCAAAAAcgFAQAAAAHKBQEAAAABzAUBAAAAAfEFAgAAAAEBPQAArwMAMAE9AACvAwAwBgkAANkMACCDBQIAgwoAIcgFAQCCCgAhygUBAIIKACHMBQEAlwoAIfEFAgCDCgAhAgAAAEYAID0AALIDACAFgwUCAIMKACHIBQEAggoAIcoFAQCCCgAhzAUBAJcKACHxBQIAgwoAIQIAAABEACA9AAC0AwAgAgAAAEQAID0AALQDACADAAAARgAgRAAArQMAIEUAALIDACABAAAARgAgAQAAAEQAIAYOAADUDAAgSgAA1QwAIEsAANgMACBMAADXDAAgTQAA1gwAIMwFAACRCgAgCIAFAAD-CAAwgQUAALsDABCCBQAA_ggAMIMFAgCYCAAhyAUBAJkIACHKBQEAmQgAIcwFAQCnCAAh8QUCAJgIACEDAAAARAAgAQAAugMAMEkAALsDACADAAAARAAgAQAARQAwAgAARgAgAQAAAJIBACABAAAAkgEAIAMAAACQAQAgAQAAkQEAMAIAAJIBACADAAAAkAEAIAEAAJEBADACAACSAQAgAwAAAJABACABAACRAQAwAgAAkgEAIAYDAADTDAAggwUCAAAAAYQFAgAAAAGFBgEAAAABhgYBAAAAAYcGAQAAAAEBPQAAwwMAIAWDBQIAAAABhAUCAAAAAYUGAQAAAAGGBgEAAAABhwYBAAAAAQE9AADFAwAwAT0AAMUDADAGAwAA0gwAIIMFAgCDCgAhhAUCAIMKACGFBgEAggoAIYYGAQCCCgAhhwYBAIIKACECAAAAkgEAID0AAMgDACAFgwUCAIMKACGEBQIAgwoAIYUGAQCCCgAhhgYBAIIKACGHBgEAggoAIQIAAACQAQAgPQAAygMAIAIAAACQAQAgPQAAygMAIAMAAACSAQAgRAAAwwMAIEUAAMgDACABAAAAkgEAIAEAAACQAQAgBQ4AAM0MACBKAADODAAgSwAA0QwAIEwAANAMACBNAADPDAAgCIAFAAD9CAAwgQUAANEDABCCBQAA_QgAMIMFAgCYCAAhhAUCAJgIACGFBgEAmQgAIYYGAQCZCAAhhwYBAJkIACEDAAAAkAEAIAEAANADADBJAADRAwAgAwAAAJABACABAACRAQAwAgAAkgEAIAEAAACWAQAgAQAAAJYBACADAAAAlAEAIAEAAJUBADACAACWAQAgAwAAAJQBACABAACVAQAwAgAAlgEAIAMAAACUAQAgAQAAlQEAMAIAAJYBACAHAwAAzAwAIIMFAgAAAAGEBQIAAAABgQYBAAAAAYIGAQAAAAGDBgEAAAABhAYBAAAAAQE9AADZAwAgBoMFAgAAAAGEBQIAAAABgQYBAAAAAYIGAQAAAAGDBgEAAAABhAYBAAAAAQE9AADbAwAwAT0AANsDADAHAwAAywwAIIMFAgCDCgAhhAUCAIMKACGBBgEAggoAIYIGAQCCCgAhgwYBAIIKACGEBgEAggoAIQIAAACWAQAgPQAA3gMAIAaDBQIAgwoAIYQFAgCDCgAhgQYBAIIKACGCBgEAggoAIYMGAQCCCgAhhAYBAIIKACECAAAAlAEAID0AAOADACACAAAAlAEAID0AAOADACADAAAAlgEAIEQAANkDACBFAADeAwAgAQAAAJYBACABAAAAlAEAIAUOAADGDAAgSgAAxwwAIEsAAMoMACBMAADJDAAgTQAAyAwAIAmABQAA_AgAMIEFAADnAwAQggUAAPwIADCDBQIAmAgAIYQFAgCYCAAhgQYBAJkIACGCBgEAmQgAIYMGAQCZCAAhhAYBAJkIACEDAAAAlAEAIAEAAOYDADBJAADnAwAgAwAAAJQBACABAACVAQAwAgAAlgEAIAEAAABaACABAAAAWgAgAwAAAFgAIAEAAFkAMAIAAFoAIAMAAABYACABAABZADACAABaACADAAAAWAAgAQAAWQAwAgAAWgAgBwQAAMQMACAbAADFDAAggwUCAAAAAZgFQAAAAAGkBQIAAAAB_gUBAAAAAYAGAAAAgAYCAT0AAO8DACAFgwUCAAAAAZgFQAAAAAGkBQIAAAAB_gUBAAAAAYAGAAAAgAYCAT0AAPEDADABPQAA8QMAMAcEAAC2DAAgGwAAtwwAIIMFAgCDCgAhmAVAAJgKACGkBQIAgwoAIf4FAQCCCgAhgAYAALUMgAYiAgAAAFoAID0AAPQDACAFgwUCAIMKACGYBUAAmAoAIaQFAgCDCgAh_gUBAIIKACGABgAAtQyABiICAAAAWAAgPQAA9gMAIAIAAABYACA9AAD2AwAgAwAAAFoAIEQAAO8DACBFAAD0AwAgAQAAAFoAIAEAAABYACAFDgAAsAwAIEoAALEMACBLAAC0DAAgTAAAswwAIE0AALIMACAIgAUAAPgIADCBBQAA_QMAEIIFAAD4CAAwgwUCAJgIACGYBUAAqAgAIaQFAgCYCAAh_gUBAJkIACGABgAA-QiABiIDAAAAWAAgAQAA_AMAMEkAAP0DACADAAAAWAAgAQAAWQAwAgAAWgAgAQAAAF4AIAEAAABeACADAAAAXAAgAQAAXQAwAgAAXgAgAwAAAFwAIAEAAF0AMAIAAF4AIAMAAABcACABAABdADACAABeACAGGgAArwwAIIMFAgAAAAHIBQEAAAABzQVAAAAAAfwFAAEAAAH9BQIAAAABAT0AAIUEACAFgwUCAAAAAcgFAQAAAAHNBUAAAAAB_AUAAQAAAf0FAgAAAAEBPQAAhwQAMAE9AACHBAAwBhoAAK4MACCDBQIAgwoAIcgFAQCCCgAhzQVAAJgKACH8BQAB_goAIf0FAgCDCgAhAgAAAF4AID0AAIoEACAFgwUCAIMKACHIBQEAggoAIc0FQACYCgAh_AUAAf4KACH9BQIAgwoAIQIAAABcACA9AACMBAAgAgAAAFwAID0AAIwEACADAAAAXgAgRAAAhQQAIEUAAIoEACABAAAAXgAgAQAAAFwAIAUOAACpDAAgSgAAqgwAIEsAAK0MACBMAACsDAAgTQAAqwwAIAiABQAA9wgAMIEFAACTBAAQggUAAPcIADCDBQIAmAgAIcgFAQCZCAAhzQVAAKgIACH8BQAB2AgAIf0FAgCYCAAhAwAAAFwAIAEAAJIEADBJAACTBAAgAwAAAFwAIAEAAF0AMAIAAF4AIAEAAAAcACABAAAAHAAgAwAAABoAIAEAABsAMAIAABwAIAMAAAAaACABAAAbADACAAAcACADAAAAGgAgAQAAGwAwAgAAHAAgGQQAAKMMACAJAACiDAAgCgAApAwAIAsAAKUMACANAACmDAAgEAAApwwAIBMAAKgMACCDBQIAAAABhAUCAAAAAZQFAgAAAAGXBQEAAAABmAVAAAAAAaMFQAAAAAGkBQIAAAAB0wUAAAD7BQLxBQIAAAAB8gUCAAAAAfMFEAAAAAH0BRAAAAAB9QUQAAAAAfYFEAAAAAH3BRAAAAAB-AUQAAAAAfkFEAAAAAH7BQEAAAABAT0AAJsEACASgwUCAAAAAYQFAgAAAAGUBQIAAAABlwUBAAAAAZgFQAAAAAGjBUAAAAABpAUCAAAAAdMFAAAA-wUC8QUCAAAAAfIFAgAAAAHzBRAAAAAB9AUQAAAAAfUFEAAAAAH2BRAAAAAB9wUQAAAAAfgFEAAAAAH5BRAAAAAB-wUBAAAAAQE9AACdBAAwAT0AAJ0EADABAAAAEAAgAQAAAA0AIAEAAAAXACAZBAAA7QsAIAkAAOwLACAKAADuCwAgCwAA7wsAIA0AAPALACAQAADxCwAgEwAA8gsAIIMFAgCDCgAhhAUCAIMKACGUBQIA9AoAIZcFAQCXCgAhmAVAAJgKACGjBUAAmAoAIaQFAgCDCgAh0wUAAOsL-wUi8QUCAPQKACHyBQIA9AoAIfMFEACMCgAh9AUQAIwKACH1BRAAjAoAIfYFEACMCgAh9wUQAOoLACH4BRAAjAoAIfkFEACMCgAh-wUBAJcKACECAAAAHAAgPQAAowQAIBKDBQIAgwoAIYQFAgCDCgAhlAUCAPQKACGXBQEAlwoAIZgFQACYCgAhowVAAJgKACGkBQIAgwoAIdMFAADrC_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-QoAIEoAAPoKACBLAAD9CgAgTAAA_AoAIE0AAPsKACAIPQAB2AgAIYAFAADXCAAwgQUAAOgFABCCBQAA1wgAMIMFAgCYCAAhmAVAAKgIACHXBQIAmAgAIdgFAgCYCAAhAwAAAHkAIAEAAOcFADBJAADoBQAgAwAAAHkAIAEAAHoAMAIAAHsAIAEAAABkACABAAAAZAAgAwAAAGIAIAEAAGMAMAIAAGQAIAMAAABiACABAABjADACAABkACADAAAAYgAgAQAAYwAwAgAAZAAgDAMAAPgKACAEAAD3CgAggwUCAAAAAYQFAgAAAAGYBUAAAAABpAUCAAAAAc8FAAAAzwUC0QUAAADRBQLTBQAAANMFAtQFAQAAAAHVBQIAAAAB1gUBAAAAAQE9AADwBQAgCoMFAgAAAAGEBQIAAAABmAVAAAAAAaQFAgAAAAHPBQAAAM8FAtEFAAAA0QUC0wUAAADTBQLUBQEAAAAB1QUCAAAAAdYFAQAAAAEBPQAA8gUAMAE9AADyBQAwAQAAAA0AIAwDAAD2CgAgBAAA9QoAIIMFAgCDCgAhhAUCAPQKACGYBUAAmAoAIaQFAgCDCgAhzwUAAPEKzwUi0QUAAPIK0QUi0wUAAPMK0wUi1AUBAJcKACHVBQIA9AoAIdYFAQCXCgAhAgAAAGQAID0AAPYFACAKgwUCAIMKACGEBQIA9AoAIZgFQACYCgAhpAUCAIMKACHPBQAA8QrPBSLRBQAA8grRBSLTBQAA8wrTBSLUBQEAlwoAIdUFAgD0CgAh1gUBAJcKACECAAAAYgAgPQAA-AUAIAIAAABiACA9AAD4BQAgAQAAAA0AIAMAAABkACBEAADwBQAgRQAA9gUAIAEAAABkACABAAAAYgAgCQ4AAOwKACBKAADtCgAgSwAA8AoAIEwAAO8KACBNAADuCgAghAUAAJEKACDUBQAAkQoAINUFAACRCgAg1gUAAJEKACANgAUAAMoIADCBBQAAgAYAEIIFAADKCAAwgwUCAJgIACGEBQIAywgAIZgFQACoCAAhpAUCAJgIACHPBQAAzAjPBSLRBQAAzQjRBSLTBQAAzgjTBSLUBQEApwgAIdUFAgDLCAAh1gUBAKcIACEDAAAAYgAgAQAA_wUAMEkAAIAGACADAAAAYgAgAQAAYwAwAgAAZAAgAQAAAGkAIAEAAABpACADAAAAZwAgAQAAaAAwAgAAaQAgAwAAAGcAIAEAAGgAMAIAAGkAIAMAAABnACABAABoADACAABpACAKBAAA6woAIIMFAgAAAAGjBUAAAAABpAUCAAAAAcgFAQAAAAHJBQEAAAABygUBAAAAAcsFBAAAAAHMBQEAAAABzQVAAAAAAQE9AACIBgAgCYMFAgAAAAGjBUAAAAABpAUCAAAAAcgFAQAAAAHJBQEAAAABygUBAAAAAcsFBAAAAAHMBQEAAAABzQVAAAAAAQE9AACKBgAwAT0AAIoGADAKBAAA6goAIIMFAgCDCgAhowVAAJgKACGkBQIAgwoAIcgFAQCCCgAhyQUBAIIKACHKBQEAggoAIcsFBADpCgAhzAUBAIIKACHNBUAAmAoAIQIAAABpACA9AACNBgAgCYMFAgCDCgAhowVAAJgKACGkBQIAgwoAIcgFAQCCCgAhyQUBAIIKACHKBQEAggoAIcsFBADpCgAhzAUBAIIKACHNBUAAmAoAIQIAAABnACA9AACPBgAgAgAAAGcAID0AAI8GACADAAAAaQAgRAAAiAYAIEUAAI0GACABAAAAaQAgAQAAAGcAIAUOAADkCgAgSgAA5QoAIEsAAOgKACBMAADnCgAgTQAA5goAIAyABQAAxggAMIEFAACWBgAQggUAAMYIADCDBQIAmAgAIaMFQACoCAAhpAUCAJgIACHIBQEAmQgAIckFAQCZCAAhygUBAJkIACHLBQQAxwgAIcwFAQCZCAAhzQVAAKgIACEDAAAAZwAgAQAAlQYAMEkAAJYGACADAAAAZwAgAQAAaAAwAgAAaQAgCwMAAKEIACCABQAAxAgAMIEFAACoAQAQggUAAMQIADCDBQIAAAABhAUCAAAAAa0FAQCgCAAhxAUBAKAIACHFBQEAoAgAIcYFAQC7CAAhxwUAAMUIACABAAAAmQYAIAEAAACZBgAgAwMAAIYKACDGBQAAkQoAIMcFAACRCgAgAwAAAKgBACABAACcBgAwAgAAmQYAIAMAAACoAQAgAQAAnAYAMAIAAJkGACADAAAAqAEAIAEAAJwGADACAACZBgAgCAMAAOMKACCDBQIAAAABhAUCAAAAAa0FAQAAAAHEBQEAAAABxQUBAAAAAcYFAQAAAAHHBYAAAAABAT0AAKAGACAHgwUCAAAAAYQFAgAAAAGtBQEAAAABxAUBAAAAAcUFAQAAAAHGBQEAAAABxwWAAAAAAQE9AACiBgAwAT0AAKIGADAIAwAA4goAIIMFAgCDCgAhhAUCAIMKACGtBQEAggoAIcQFAQCCCgAhxQUBAIIKACHGBQEAlwoAIccFgAAAAAECAAAAmQYAID0AAKUGACAHgwUCAIMKACGEBQIAgwoAIa0FAQCCCgAhxAUBAIIKACHFBQEAggoAIcYFAQCXCgAhxwWAAAAAAQIAAACoAQAgPQAApwYAIAIAAACoAQAgPQAApwYAIAMAAACZBgAgRAAAoAYAIEUAAKUGACABAAAAmQYAIAEAAACoAQAgBw4AAN0KACBKAADeCgAgSwAA4QoAIEwAAOAKACBNAADfCgAgxgUAAJEKACDHBQAAkQoAIAqABQAAwQgAMIEFAACuBgAQggUAAMEIADCDBQIAmAgAIYQFAgCYCAAhrQUBAJkIACHEBQEAmQgAIcUFAQCZCAAhxgUBAKcIACHHBQAAwggAIAMAAACoAQAgAQAArQYAMEkAAK4GACADAAAAqAEAIAEAAJwGADACAACZBgAgEwMAAKEIACCABQAAvwgAMIEFAACqAQAQggUAAL8IADCDBQIAAAABhAUCAAAAAbcFAQCgCAAhuAUgAMAIACG5BQEAoAgAIboFIADACAAhuwUBAKAIACG8BSAAwAgAIb0FAQCgCAAhvgUBAKAIACG_BQEAoAgAIcAFAQCgCAAhwQUgAMAIACHCBSAAwAgAIcMFIADACAAhAQAAALEGACABAAAAsQYAIAEDAACGCgAgAwAAAKoBACABAAC0BgAwAgAAsQYAIAMAAACqAQAgAQAAtAYAMAIAALEGACADAAAAqgEAIAEAALQGADACAACxBgAgEAMAANwKACCDBQIAAAABhAUCAAAAAbcFAQAAAAG4BSAAAAABuQUBAAAAAboFIAAAAAG7BQEAAAABvAUgAAAAAb0FAQAAAAG-BQEAAAABvwUBAAAAAcAFAQAAAAHBBSAAAAABwgUgAAAAAcMFIAAAAAEBPQAAuAYAIA-DBQIAAAABhAUCAAAAAbcFAQAAAAG4BSAAAAABuQUBAAAAAboFIAAAAAG7BQEAAAABvAUgAAAAAb0FAQAAAAG-BQEAAAABvwUBAAAAAcAFAQAAAAHBBSAAAAABwgUgAAAAAcMFIAAAAAEBPQAAugYAMAE9AAC6BgAwEAMAANsKACCDBQIAgwoAIYQFAgCDCgAhtwUBAIIKACG4BSAAtQoAIbkFAQCCCgAhugUgALUKACG7BQEAggoAIbwFIAC1CgAhvQUBAIIKACG-BQEAggoAIb8FAQCCCgAhwAUBAIIKACHBBSAAtQoAIcIFIAC1CgAhwwUgALUKACECAAAAsQYAID0AAL0GACAPgwUCAIMKACGEBQIAgwoAIbcFAQCCCgAhuAUgALUKACG5BQEAggoAIboFIAC1CgAhuwUBAIIKACG8BSAAtQoAIb0FAQCCCgAhvgUBAIIKACG_BQEAggoAIcAFAQCCCgAhwQUgALUKACHCBSAAtQoAIcMFIAC1CgAhAgAAAKoBACA9AAC_BgAgAgAAAKoBACA9AAC_BgAgAwAAALEGACBEAAC4BgAgRQAAvQYAIAEAAACxBgAgAQAAAKoBACAFDgAA1goAIEoAANcKACBLAADaCgAgTAAA2QoAIE0AANgKACASgAUAAL4IADCBBQAAxgYAEIIFAAC-CAAwgwUCAJgIACGEBQIAmAgAIbcFAQCZCAAhuAUgALAIACG5BQEAmQgAIboFIACwCAAhuwUBAJkIACG8BSAAsAgAIb0FAQCZCAAhvgUBAJkIACG_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_AcAEIIFAACiCAAwgwUCAJgIACGRBQIAmAgAIZIFAgCYCAAhkwUQAKMIACEDAAAALQAgAQAA-wcAMEkAAPwHACADAAAALQAgAQAALgAwAgAALwAgBwMAAKEIACCABQAAnwgAMIEFAAC9AQAQggUAAJ8IADCDBQIAAAABhAUCAAAAAYUFAQCgCAAhAQAAAP8HACABAAAA_wcAIAEDAACGCgAgAwAAAL0BACABAACCCAAwAgAA_wcAIAMAAAC9AQAgAQAAgggAMAIAAP8HACADAAAAvQEAIAEAAIIIADACAAD_BwAgBAMAAIUKACCDBQIAAAABhAUCAAAAAYUFAQAAAAEBPQAAhggAIAODBQIAAAABhAUCAAAAAYUFAQAAAAEBPQAAiAgAMAE9AACICAAwBAMAAIQKACCDBQIAgwoAIYQFAgCDCgAhhQUBAIIKACECAAAA_wcAID0AAIsIACADgwUCAIMKACGEBQIAgwoAIYUFAQCCCgAhAgAAAL0BACA9AACNCAAgAgAAAL0BACA9AACNCAAgAwAAAP8HACBEAACGCAAgRQAAiwgAIAEAAAD_BwAgAQAAAL0BACAFDgAA_QkAIEoAAP4JACBLAACBCgAgTAAAgAoAIE0AAP8JACAGgAUAAJcIADCBBQAAlAgAEIIFAACXCAAwgwUCAJgIACGEBQIAmAgAIYUFAQCZCAAhAwAAAL0BACABAACTCAAwSQAAlAgAIAMAAAC9AQAgAQAAgggAMAIAAP8HACAGgAUAAJcIADCBBQAAlAgAEIIFAACXCAAwgwUCAJgIACGEBQIAmAgAIYUFAQCZCAAhDQ4AAJsIACBKAACeCAAgSwAAmwgAIEwAAJsIACBNAACbCAAghgUCAAAAAYcFAgAAAASIBQIAAAAEiQUCAAAAAYoFAgAAAAGLBQIAAAABjAUCAAAAAZAFAgCdCAAhDg4AAJsIACBMAACcCAAgTQAAnAgAIIYFAQAAAAGHBQEAAAAEiAUBAAAABIkFAQAAAAGKBQEAAAABiwUBAAAAAYwFAQAAAAGNBQEAAAABjgUBAAAAAY8FAQAAAAGQBQEAmggAIQ4OAACbCAAgTAAAnAgAIE0AAJwIACCGBQEAAAABhwUBAAAABIgFAQAAAASJBQEAAAABigUBAAAAAYsFAQAAAAGMBQEAAAABjQUBAAAAAY4FAQAAAAGPBQEAAAABkAUBAJoIACEIhgUCAAAAAYcFAgAAAASIBQIAAAAEiQUCAAAAAYoFAgAAAAGLBQIAAAABjAUCAAAAAZAFAgCbCAAhC4YFAQAAAAGHBQEAAAAEiAUBAAAABIkFAQAAAAGKBQEAAAABiwUBAAAAAYwFAQAAAAGNBQEAAAABjgUBAAAAAY8FAQAAAAGQBQEAnAgAIQ0OAACbCAAgSgAAnggAIEsAAJsIACBMAACbCAAgTQAAmwgAIIYFAgAAAAGHBQIAAAAEiAUCAAAABIkFAgAAAAGKBQIAAAABiwUCAAAAAYwFAgAAAAGQBQIAnQgAIQiGBQgAAAABhwUIAAAABIgFCAAAAASJBQgAAAABigUIAAAAAYsFCAAAAAGMBQgAAAABkAUIAJ4IACEHAwAAoQgAIIAFAACfCAAwgQUAAL0BABCCBQAAnwgAMIMFAgDiCAAhhAUCAOIIACGFBQEAoAgAIQuGBQEAAAABhwUBAAAABIgFAQAAAASJBQEAAAABigUBAAAAAYsFAQAAAAGMBQEAAAABjQUBAAAAAY4FAQAAAAGPBQEAAAABkAUBAJwIACEmBQAAqgkAIAcAAOUJACAIAACkCQAgHQAA7AkAICUAALUJACAmAADkCQAgJwAA5gkAICgAAOcJACApAADoCQAgKgAApQkAICsAAOkJACAsAADqCQAgLQAA6wkAIC4AALcJACAvAADtCQAgMAAA7gkAIDEAAO8JACAyAADwCQAgMwAA8QkAIDQAAPIJACA1AADzCQAgNgAA9AkAIDcAAPUJACCABQAA4wkAMIEFAAANABCCBQAA4wkAMIMFAgDiCAAhhgYBAKAIACGHBgEAoAgAIbwGIADACAAhvQYCAOIIACG-BiAAwAgAIb8GAgDiCAAhwAYgAMAIACHBBgIA4ggAIcIGAgDiCAAhywYAAA0AIMwGAAANACAHgAUAAKIIADCBBQAA_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_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-wUIkAUAAPMI-wUiBw4AAJsIACBMAAD0CAAgTQAA9AgAIIYFAAAA-wUChwUAAAD7BQiIBQAAAPsFCJAFAADzCPsFIgSGBQAAAPsFAocFAAAA-wUIiAUAAAD7BQiQBQAA9Aj7BSINDgAArAgAIEoAAPYIACBLAAD2CAAgTAAA9ggAIE0AAPYIACCGBRAAAAABhwUQAAAABYgFEAAAAAWJBRAAAAABigUQAAAAAYsFEAAAAAGMBRAAAAABkAUQAPUIACEIhgUQAAAAAYcFEAAAAAWIBRAAAAAFiQUQAAAAAYoFEAAAAAGLBRAAAAABjAUQAAAAAZAFEAD2CAAhCIAFAAD3CAAwgQUAAJMEABCCBQAA9wgAMIMFAgCYCAAhyAUBAJkIACHNBUAAqAgAIfwFAAHYCAAh_QUCAJgIACEIgAUAAPgIADCBBQAA_QMAEIIFAAD4CAAwgwUCAJgIACGYBUAAqAgAIaQFAgCYCAAh_gUBAJkIACGABgAA-QiABiIHDgAAmwgAIEwAAPsIACBNAAD7CAAghgUAAACABgKHBQAAAIAGCIgFAAAAgAYIkAUAAPoIgAYiBw4AAJsIACBMAAD7CAAgTQAA-wgAIIYFAAAAgAYChwUAAACABgiIBQAAAIAGCJAFAAD6CIAGIgSGBQAAAIAGAocFAAAAgAYIiAUAAACABgiQBQAA-wiABiIJgAUAAPwIADCBBQAA5wMAEIIFAAD8CAAwgwUCAJgIACGEBQIAmAgAIYEGAQCZCAAhggYBAJkIACGDBgEAmQgAIYQGAQCZCAAhCIAFAAD9CAAwgQUAANEDABCCBQAA_QgAMIMFAgCYCAAhhAUCAJgIACGFBgEAmQgAIYYGAQCZCAAhhwYBAJkIACEIgAUAAP4IADCBBQAAuwMAEIIFAAD-CAAwgwUCAJgIACHIBQEAmQgAIcoFAQCZCAAhzAUBAKcIACHxBQIAmAgAIRSABQAA_wgAMIEFAAClAwAQggUAAP8IADCDBQIAmAgAIZIFAgDLCAAh0wUAAIAJkQYi8QUCAMsIACHzBRAAowgAIfQFEACjCAAh9QUQAKMIACH2BRAAowgAIfsFAQCnCAAhiAYBAJkIACGJBkAAqAgAIYoGAQCnCAAhiwYBAKcIACGMBgEApwgAIY0GAQCnCAAhjgYBAKcIACGPBhAA8QgAIQcOAACbCAAgTAAAggkAIE0AAIIJACCGBQAAAJEGAocFAAAAkQYIiAUAAACRBgiQBQAAgQmRBiIHDgAAmwgAIEwAAIIJACBNAACCCQAghgUAAACRBgKHBQAAAJEGCIgFAAAAkQYIkAUAAIEJkQYiBIYFAAAAkQYChwUAAACRBgiIBQAAAJEGCJAFAACCCZEGIhaABQAAgwkAMIEFAACLAwAQggUAAIMJADCDBQIAmAgAIYQFAgCYCAAhlAUCAMsIACGYBUAAqAgAIaMFQACoCAAhpAUCAJgIACHTBQAAhQmdBiKRBgIAywgAIZIGAgCYCAAhkwYBAJkIACGUBgEAmQgAIZUGQACoCAAhlgYBAJkIACGYBgAAhAmYBiKZBgAAwggAIJoGQACoCAAhmwYBAJkIACGdBgEApwgAIZ4GAQCnCAAhBw4AAJsIACBMAACJCQAgTQAAiQkAIIYFAAAAmAYChwUAAACYBgiIBQAAAJgGCJAFAACICZgGIgcOAACbCAAgTAAAhwkAIE0AAIcJACCGBQAAAJ0GAocFAAAAnQYIiAUAAACdBgiQBQAAhgmdBiIHDgAAmwgAIEwAAIcJACBNAACHCQAghgUAAACdBgKHBQAAAJ0GCIgFAAAAnQYIkAUAAIYJnQYiBIYFAAAAnQYChwUAAACdBgiIBQAAAJ0GCJAFAACHCZ0GIgcOAACbCAAgTAAAiQkAIE0AAIkJACCGBQAAAJgGAocFAAAAmAYIiAUAAACYBgiQBQAAiAmYBiIEhgUAAACYBgKHBQAAAJgGCIgFAAAAmAYIkAUAAIkJmAYiEYAFAACKCQAwgQUAAO0CABCCBQAAigkAMIMFAgCYCAAhlAUCAMsIACGYBUAAqAgAIaQFAgCYCAAhiAYBAJkIACGMBgEApwgAIY0GAQCnCAAhkQYCAJgIACGfBgEApwgAIaAGEADxCAAhoQYBAKcIACGiBgEApwgAIaQGAACLCaQGIqUGAQCnCAAhBw4AAJsIACBMAACNCQAgTQAAjQkAIIYFAAAApAYChwUAAACkBgiIBQAAAKQGCJAFAACMCaQGIgcOAACbCAAgTAAAjQkAIE0AAI0JACCGBQAAAKQGAocFAAAApAYIiAUAAACkBgiQBQAAjAmkBiIEhgUAAACkBgKHBQAAAKQGCIgFAAAApAYIkAUAAI0JpAYiCYAFAACOCQAwgQUAANUCABCCBQAAjgkAMIMFAgCYCAAhhAUCAJgIACGYBUAAqAgAIaIFAgCYCAAhpgYBAJkIACGnBgEAmQgAIQqABQAAjwkAMIEFAAC_AgAQggUAAI8JADCDBQIAmAgAIYQFAgCYCAAhmAVAAKgIACGZBQEAmQgAIbEFAQCnCAAhqAYBAJkIACGpBgEApwgAIQiABQAAkAkAMIEFAACnAgAQggUAAJAJADCDBQIAmAgAIcgFAQCZCAAhygUBAKcIACHMBQEApwgAIZEGAgCYCAAhE4AFAACRCQAwgQUAAJECABCCBQAAkQkAMIMFAgCYCAAhhAUCAJgIACGXBQEApwgAIZgFQACoCAAhpAUCAJgIACHTBQEAmQgAIeQFAQCZCAAh_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-gkAIB0AAOwJACAeAAD7CQAgHwAA_AkAICUAALUJACCABQAA-QkAMIEFAAADABCCBQAA-QkAMIMFAgDiCAAhhAUCAOIIACGYBUAA4wgAIaMFQADjCAAhsQUBALsIACG0BQEAuwgAIbYFAQC7CAAh0wUAAPcJsQYilQZAAOQIACGbBgEAuwgAIakGAQCgCAAhsgYBAKAIACGzBgEAoAgAIbQGAQCgCAAhtQYBALsIACG2BgEAuwgAIbcGAQC7CAAhuAYBALsIACG5BgEAuwgAIboGAQC7CAAhuwYBALsIACHLBgAAAwAgzAYAAAMAIAPFBgAAdAAgxgYAAHQAIMcGAAB0ACANBAAAmQkAIIAFAAC4CQAwgQUAAGcAEIIFAAC4CQAwgwUCAOIIACGjBUAA4wgAIaQFAgDiCAAhyAUBAKAIACHJBQEAoAgAIcoFAQCgCAAhywUEALAJACHMBQEAoAgAIc0FQADjCAAhDwMAAKkJACAEAACZCQAggAUAALkJADCBBQAAYgAQggUAALkJADCDBQIA4ggAIYQFAgDlCAAhmAVAAOMIACGkBQIA4ggAIc8FAAC6Cc8FItEFAAC7CdEFItMFAAC8CdMFItQFAQC7CAAh1QUCAOUIACHWBQEAuwgAIQSGBQAAAM8FAocFAAAAzwUIiAUAAADPBQiQBQAA1AjPBSIEhgUAAADRBQKHBQAAANEFCIgFAAAA0QUIkAUAANII0QUiBIYFAAAA0wUChwUAAADTBQiIBQAAANMFCJAFAADQCNMFIgkaAAC-CQAggAUAAL0JADCBBQAAXAAQggUAAL0JADCDBQIA4ggAIcgFAQCgCAAhzQVAAOMIACH8BQABrQkAIf0FAgDiCAAhDAQAAJkJACAbAADBCQAggAUAAL8JADCBBQAAWAAQggUAAL8JADCDBQIA4ggAIZgFQADjCAAhpAUCAOIIACH-BQEAoAgAIYAGAADACYAGIssGAABYACDMBgAAWAAgCgQAAJkJACAbAADBCQAggAUAAL8JADCBBQAAWAAQggUAAL8JADCDBQIA4ggAIZgFQADjCAAhpAUCAOIIACH-BQEAoAgAIYAGAADACYAGIgSGBQAAAIAGAocFAAAAgAYIiAUAAACABgiQBQAA-wiABiIDxQYAAFwAIMYGAABcACDHBgAAXAAgCQYAAMMJACCABQAAwgkAMIEFAABPABCCBQAAwgkAMIMFAgDiCAAhyAUBAKAIACHKBQEAuwgAIcwFAQC7CAAhkQYCAOIIACEbAwAAoQgAIAQAAJkJACAHAADhCQAgCAAApAkAIBgAAKcJACAZAAD4CQAggAUAAPYJADCBBQAABwAQggUAAPYJADCDBQIA4ggAIYQFAgDiCAAhlwUBALsIACGYBUAA4wgAIaQFAgDiCAAh0wUBAKAIACHkBQEAoAgAIf4FAQCgCAAhkgYCAOIIACGqBkAA4wgAIasGAQCgCAAhrAYBAKAIACGtBiAAwAgAIa4GAQC7CAAhrwYgAMAIACGxBgAA9wmxBiLLBgAABwAgzAYAAAcAIAkJAADFCQAggAUAAMQJADCBBQAARAAQggUAAMQJADCDBQIA4ggAIcgFAQCgCAAhygUBAKAIACHMBQEAuwgAIfEFAgDiCAAhIAMAAKkJACAEAACZCQAgBgAA4AkAIAcAAOEJACALAADJCQAgDAAA1QkAIBAAANwJACAXAADiCQAggAUAAN0JADCBBQAAEAAQggUAAN0JADCDBQIA4ggAIYQFAgDiCAAhlAUCAOUIACGYBUAA4wgAIaMFQADjCAAhpAUCAOIIACHTBQAA3wmdBiKRBgIA5QgAIZIGAgDiCAAhkwYBAKAIACGUBgEAoAgAIZUGQADjCAAhlgYBAKAIACGYBgAA3gmYBiKZBgAAxQgAIJoGQADjCAAhmwYBAKAIACGdBgEAuwgAIZ4GAQC7CAAhywYAABAAIMwGAAAQACAUBAAAmQkAIAYAAMMJACALAADJCQAggAUAAMYJADCBBQAAOgAQggUAAMYJADCDBQIA4ggAIZQFAgDlCAAhmAVAAOMIACGkBQIA4ggAIYgGAQCgCAAhjAYBALsIACGNBgEAuwgAIZEGAgDiCAAhnwYBALsIACGgBhAAxwkAIaEGAQC7CAAhogYBALsIACGkBgAAyAmkBiKlBgEAuwgAIQiGBRAAAAABhwUQAAAABYgFEAAAAAWJBRAAAAABigUQAAAAAYsFEAAAAAGMBRAAAAABkAUQAPYIACEEhgUAAACkBgKHBQAAAKQGCIgFAAAApAYIkAUAAI0JpAYiEAMAAKEIACAIAACkCQAgFAAApQkAIBUAA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-AUQAMsJACH5BRAAywkAIfsFAQC7CAAhBIYFAAAA-wUChwUAAAD7BQiIBQAAAPsFCJAFAAD0CPsFIgPFBgAAKQAgxgYAACkAIMcGAAApACAeAwAAqQkAIAQAAJkJACAGAADgCQAgBwAA4QkAIAsAAMkJACAMAADVCQAgEAAA3AkAIBcAAOIJACCABQAA3QkAMIEFAAAQABCCBQAA3QkAMIMFAgDiCAAhhAUCAOIIACGUBQIA5QgAIZgFQADjCAAhowVAAOMIACGkBQIA4ggAIdMFAADfCZ0GIpEGAgDlCAAhkgYCAOIIACGTBgEAoAgAIZQGAQCgCAAhlQZAAOMIACGWBgEAoAgAIZgGAADeCZgGIpkGAADFCAAgmgZAAOMIACGbBgEAoAgAIZ0GAQC7CAAhngYBALsIACEEhgUAAACYBgKHBQAAAJgGCIgFAAAAmAYIkAUAAIkJmAYiBIYFAAAAnQYChwUAAACdBgiIBQAAAJ0GCJAFAACHCZ0GIhsDAAChCAAgBAAAmQkAIAcAAOEJACAIAACkCQAgGAAApwkAIBkAAPgJACCABQAA9gkAMIEFAAAHABCCBQAA9gkAMIMFAgDiCAAhhAUCAOIIACGXBQEAuwgAIZgFQADjCAAhpAUCAOIIACHTBQEAoAgAIeQFAQCgCAAh_gUBAKAIACGSBgIA4ggAIaoGQADjCAAhqwYBAKAIACGsBgEAoAgAIa0GIADACAAhrgYBALsIACGvBiAAwAgAIbEGAAD3CbEGIssGAAAHACDMBgAABwAgDwMAAKkJACAFAACqCQAgCAAApAkAIIAFAACoCQAwgQUAAAsAEIIFAACoCQAwgwUCAOIIACGEBQIA4ggAIZgFQADjCAAhmQUBAKAIACGxBQEAuwgAIagGAQCgCAAhqQYBALsIACHLBgAACwAgzAYAAAsAIAPFBgAARAAgxgYAAEQAIMcGAABEACAkBQAAqgkAIAcAAOUJACAIAACkCQAgHQAA7AkAICUAALUJACAmAADkCQAgJwAA5gkAICgAAOcJACApAADoCQAgKgAApQkAICsAAOkJACAsAADqCQAgLQAA6wkAIC4AALcJACAvAADtCQAgMAAA7gkAIDEAAO8JACAyAADwCQAgMwAA8QkAIDQAAPIJACA1AADzCQAgNgAA9AkAIDcAAPUJACCABQAA4wkAMIEFAAANABCCBQAA4wkAMIMFAgDiCAAhhgYBAKAIACGHBgEAoAgAIbwGIADACAAhvQYCAOIIACG-BiAAwAgAIb8GAgDiCAAhwAYgAMAIACHBBgIA4ggAIcIGAgDiCAAhA8UGAAADACDGBgAAAwAgxwYAAAMAIAPFBgAACwAgxgYAAAsAIMcGAAALACADxQYAABcAIMYGAAAXACDHBgAAFwAgA8UGAACQAQAgxgYAAJABACDHBgAAkAEAIAPFBgAAlAEAIMYGAACUAQAgxwYAAJQBACADxQYAAJkBACDGBgAAmQEAIMcGAACZAQAgA8UGAACdAQAgxgYAAJ0BACDHBgAAnQEAIAPFBgAAoQEAIMYGAAChAQAgxwYAAKEBACADxQYAAGIAIMYGAABiACDHBgAAYgAgDQMAAKEIACCABQAAxAgAMIEFAACoAQAQggUAAMQIADCDBQIA4ggAIYQFAgDiCAAhrQUBAKAIACHEBQEAoAgAIcUFAQCgCAAhxgUBALsIACHHBQAAxQgAIMsGAACoAQAgzAYAAKgBACAVAwAAoQgAIIAFAAC_CAAwgQUAAKoBABCCBQAAvwgAMIMFAgDiCAAhhAUCAOIIACG3BQEAoAgAIbgFIADACAAhuQUBAKAIACG6BSAAwAgAIbsFAQCgCAAhvAUgAMAIACG9BQEAoAgAIb4FAQCgCAAhvwUBAKAIACHABQEAoAgAIcEFIADACAAhwgUgAMAIACHDBSAAwAgAIcsGAACqAQAgzAYAAKoBACAJAwAAoQgAID0AALcIACCABQAAvQgAMIEFAACsAQAQggUAAL0IADCDBQIA4ggAIYQFAgDiCAAhywYAAKwBACDMBgAArAEAIBIDAAChCAAggAUAALoIADCBBQAArgEAEIIFAAC6CAAwgwUCAOIIACGEBQIA4ggAIa0FAQC7CAAhrgUBALsIACGvBQEAuwgAIbAFAQC7CAAhsQUBALsIACGyBQEAuwgAIbMFAQC7CAAhtAUBALsIACG1BQEAuwgAIbYFAQC7CAAhywYAAK4BACDMBgAArgEAIAkDAAChCAAgPQAAtwgAIIAFAAC2CAAwgQUAALABABCCBQAAtggAMIMFAgDiCAAhhAUCAOIIACHLBgAAsAEAIMwGAACwAQAgA8UGAACyAQAgxgYAALIBACDHBgAAsgEAIAPFBgAAawAgxgYAAGsAIMcGAABrACADxQYAALkBACDGBgAAuQEAIMcGAAC5AQAgCQMAAKEIACCABQAAnwgAMIEFAAC9AQAQggUAAJ8IADCDBQIA4ggAIYQFAgDiCAAhhQUBAKAIACHLBgAAvQEAIMwGAAC9AQAgGQMAAKEIACAEAACZCQAgBwAA4QkAIAgAAKQJACAYAACnCQAgGQAA-AkAIIAFAAD2CQAwgQUAAAcAEIIFAAD2CQAwgwUCAOIIACGEBQIA4ggAIZcFAQC7CAAhmAVAAOMIACGkBQIA4ggAIdMFAQCgCAAh5AUBAKAIACH-BQEAoAgAIZIGAgDiCAAhqgZAAOMIACGrBgEAoAgAIawGAQCgCAAhrQYgAMAIACGuBgEAuwgAIa8GIADACAAhsQYAAPcJsQYiBIYFAAAAsQYChwUAAACxBgiIBQAAALEGCJAFAACUCbEGIgPFBgAATwAgxgYAAE8AIMcGAABPACAiAwAAoQgAIAUAAKoJACAIAACkCQAgDAAApQkAIBgAAKcJACAcAAD6CQAgHQAA7AkAIB4AAPsJACAfAAD8CQAgJQAAtQkAIIAFAAD5CQAwgQUAAAMAEIIFAAD5CQAwgwUCAOIIACGEBQIA4ggAIZgFQADjCAAhowVAAOMIACGxBQEAuwgAIbQFAQC7CAAhtgUBALsIACHTBQAA9wmxBiKVBkAA5AgAIZsGAQC7CAAhqQYBAKAIACGyBgEAoAgAIbMGAQCgCAAhtAYBAKAIACG1BgEAuwgAIbYGAQC7CAAhtwYBALsIACG4BgEAuwgAIbkGAQC7CAAhugYBALsIACG7BgEAuwgAIQPFBgAAWAAgxgYAAFgAIMcGAABYACADxQYAAGcAIMYGAABnACDHBgAAZwAgDQMAAKEIACAEAACZCQAggAUAAJgJADCBBQAAawAQggUAAJgJADCDBQIA4ggAIYQFAgDiCAAhowVAAOMIACGkBQIA4ggAIaUFAQCgCAAhpgUgAMAIACHLBgAAawAgzAYAAGsAIAAAAAAAAdAGAQAAAAEF0AYCAAAAAdYGAgAAAAHXBgIAAAAB2AYCAAAAAdkGAgAAAAEFRAAAjhQAIEUAAJEUACDNBgAAjxQAIM4GAACQFAAg0wYAAAEAIANEAACOFAAgzQYAAI8UACDTBgAAAQAgFwUAALARACAHAACxEQAgCAAAsxEAIB0AALwRACAlAAC6EQAgJgAArxEAICcAALIRACAoAAC0EQAgKQAAtREAICoAALYRACArAAC3EQAgLAAAuBEAIC0AALkRACAuAAC7EQAgLwAAvREAIDAAAL4RACAxAAC_EQAgMgAAwBEAIDMAAMERACA0AADCEQAgNQAAwxEAIDYAAMQRACA3AADFEQAgAAAAAAAF0AYQAAAAAdYGEAAAAAHXBhAAAAAB2AYQAAAAAdkGEAAAAAEFRAAAhhQAIEUAAIwUACDNBgAAhxQAIM4GAACLFAAg0wYAADgAIAVEAACEFAAgRQAAiRQAIM0GAACFFAAgzgYAAIgUACDTBgAAHAAgA0QAAIYUACDNBgAAhxQAINMGAAA4ACADRAAAhBQAIM0GAACFFAAg0wYAABwAIAAAAAAAAAHQBgEAAAABAdAGQAAAAAEFRAAA_hMAIEUAAIIUACDNBgAA_xMAIM4GAACBFAAg0wYAAI0BACALRAAAmwoAMEUAAKAKADDNBgAAnAoAMM4GAACdCgAwzwYAAJ4KACDQBgAAnwoAMNEGAACfCgAw0gYAAJ8KADDTBgAAnwoAMNQGAAChCgAw1QYAAKIKADAEDAAAkAoAIIMFAgAAAAGSBQIAAAABkwUQAAAAAQIAAAAvACBEAACmCgAgAwAAAC8AIEQAAKYKACBFAAClCgAgAT0AAIAUADAKDAAA0QkAIBIAANAJACCABQAAzwkAMIEFAAAtABCCBQAAzwkAMIMFAgAAAAGRBQIA4ggAIZIFAgDiCAAhkwUQAMsJACHKBgAAzgkAIAIAAAAvACA9AAClCgAgAgAAAKMKACA9AACkCgAgB4AFAACiCgAwgQUAAKMKABCCBQAAogoAMIMFAgDiCAAhkQUCAOIIACGSBQIA4ggAIZMFEADLCQAhB4AFAACiCgAwgQUAAKMKABCCBQAAogoAMIMFAgDiCAAhkQUCAOIIACGSBQIA4ggAIZMFEADLCQAhA4MFAgCDCgAhkgUCAIMKACGTBRAAjAoAIQQMAACOCgAggwUCAIMKACGSBQIAgwoAIZMFEACMCgAhBAwAAJAKACCDBQIAAAABkgUCAAAAAZMFEAAAAAEDRAAA_hMAIM0GAAD_EwAg0wYAAI0BACAERAAAmwoAMM0GAACcCgAwzwYAAJ4KACDTBgAAnwoAMAAAAAAABUQAAPkTACBFAAD8EwAgzQYAAPoTACDOBgAA-xMAINMGAAABACADRAAA-RMAIM0GAAD6EwAg0wYAAAEAIAAAAAAAAdAGIAAAAAEFRAAA8RMAIEUAAPcTACDNBgAA8hMAIM4GAAD2EwAg0wYAAAUAIAVEAADvEwAgRQAA9BMAIM0GAADwEwAgzgYAAPMTACDTBgAAAQAgA0QAAPETACDNBgAA8hMAINMGAAAFACADRAAA7xMAIM0GAADwEwAg0wYAAAEAIAAAAAAABUQAAOoTACBFAADtEwAgzQYAAOsTACDOBgAA7BMAINMGAAABACADRAAA6hMAIM0GAADrEwAg0wYAAAEAIAAAAAAABUQAAOUTACBFAADoEwAgzQYAAOYTACDOBgAA5xMAINMGAAABACADRAAA5RMAIM0GAADmEwAg0wYAAAEAIAAAAAAABUQAAOATACBFAADjEwAgzQYAAOETACDOBgAA4hMAINMGAAABACADRAAA4BMAIM0GAADhEwAg0wYAAAEAIAAAAAAABUQAANsTACBFAADeEwAgzQYAANwTACDOBgAA3RMAINMGAAABACADRAAA2xMAIM0GAADcEwAg0wYAAAEAIAAAAAAABUQAANYTACBFAADZEwAgzQYAANcTACDOBgAA2BMAINMGAAABACADRAAA1hMAIM0GAADXEwAg0wYAAAEAIAAAAAAABUQAANETACBFAADUEwAgzQYAANITACDOBgAA0xMAINMGAAABACADRAAA0RMAIM0GAADSEwAg0wYAAAEAIAAAAAAABdAGBAAAAAHWBgQAAAAB1wYEAAAAAdgGBAAAAAHZBgQAAAABBUQAAMwTACBFAADPEwAgzQYAAM0TACDOBgAAzhMAINMGAAAFACADRAAAzBMAIM0GAADNEwAg0wYAAAUAIAAAAAAAAdAGAAAAzwUCAdAGAAAA0QUCAdAGAAAA0wUCBdAGAgAAAAHWBgIAAAAB1wYCAAAAAdgGAgAAAAHZBgIAAAABBUQAAMQTACBFAADKEwAgzQYAAMUTACDOBgAAyRMAINMGAAAFACAHRAAAwhMAIEUAAMcTACDNBgAAwxMAIM4GAADGEwAg0QYAAA0AINIGAAANACDTBgAAAQAgA0QAAMQTACDNBgAAxRMAINMGAAAFACADRAAAwhMAIM0GAADDEwAg0wYAAAEAIAAAAAAAAdAGAAEAAAEFRAAAvRMAIEUAAMATACDNBgAAvhMAIM4GAAC_EwAg0wYAAHYAIANEAAC9EwAgzQYAAL4TACDTBgAAdgAgAAAAAAAFRAAAtBMAIEUAALsTACDNBgAAtRMAIM4GAAC6EwAg0wYAAAEAIAdEAACyEwAgRQAAuBMAIM0GAACzEwAgzgYAALcTACDRBgAAbQAg0gYAAG0AINMGAABvACALRAAAiQsAMEUAAI4LADDNBgAAigsAMM4GAACLCwAwzwYAAIwLACDQBgAAjQsAMNEGAACNCwAw0gYAAI0LADDTBgAAjQsAMNQGAACPCwAw1QYAAJALADAEPQABAAABgwUCAAAAAZgFQAAAAAHYBQIAAAABAgAAAHsAIEQAAJQLACADAAAAewAgRAAAlAsAIEUAAJMLACABPQAAthMAMAojAACuCQAgPQABrQkAIYAFAACsCQAwgQUAAHkAEIIFAACsCQAwgwUCAAAAAZgFQADjCAAh1wUCAOIIACHYBQIA4ggAIcgGAACrCQAgAgAAAHsAID0AAJMLACACAAAAkQsAID0AAJILACAIPQABrQkAIYAFAACQCwAwgQUAAJELABCCBQAAkAsAMIMFAgDiCAAhmAVAAOMIACHXBQIA4ggAIdgFAgDiCAAhCD0AAa0JACGABQAAkAsAMIEFAACRCwAQggUAAJALADCDBQIA4ggAIZgFQADjCAAh1wUCAOIIACHYBQIA4ggAIQQ9AAH-CgAhgwUCAIMKACGYBUAAmAoAIdgFAgCDCgAhBD0AAf4KACGDBQIAgwoAIZgFQACYCgAh2AUCAIMKACEEPQABAAABgwUCAAAAAZgFQAAAAAHYBQIAAAABA0QAALQTACDNBgAAtRMAINMGAAABACADRAAAshMAIM0GAACzEwAg0wYAAG8AIAREAACJCwAwzQYAAIoLADDPBgAAjAsAINMGAACNCwAwAAAAAAAHRAAAoRMAIEUAALATACDNBgAAohMAIM4GAACvEwAg0QYAAG0AINIGAABtACDTBgAAbwAgC0QAAK4LADBFAACzCwAwzQYAAK8LADDOBgAAsAsAMM8GAACxCwAg0AYAALILADDRBgAAsgsAMNIGAACyCwAw0wYAALILADDUBgAAtAsAMNUGAAC1CwAwBUQAAKUTACBFAACtEwAgzQYAAKYTACDOBgAArBMAINMGAAABACAHRAAAoxMAIEUAAKoTACDNBgAApBMAIM4GAACpEwAg0QYAAAMAINIGAAADACDTBgAABQAgC0QAAKILADBFAACnCwAwzQYAAKMLADDOBgAApAsAMM8GAAClCwAg0AYAAKYLADDRBgAApgsAMNIGAACmCwAw0wYAAKYLADDUBgAAqAsAMNUGAACpCwAwDAMAAJULACAkAACXCwAggwUCAAAAAYQFAgAAAAGYBUAAAAABmQUBAAAAAaMFQAAAAAHKBQEAAAABywUEAAAAAdoFIAAAAAHbBQIAAAAB3AUBAAAAAQIAAAB2ACBEAACtCwAgAwAAAHYAIEQAAK0LACBFAACsCwAgAT0AAKgTADARAwAAoQgAICIAALEJACAkAACyCQAggAUAAK8JADCBBQAAdAAQggUAAK8JADCDBQIAAAABhAUCAOIIACGYBUAA4wgAIZkFAQCgCAAhowVAAOMIACHKBQEAuwgAIcsFBACwCQAh2QUCAOUIACHaBSAAwAgAIdsFAgDlCAAh3AUBALsIACECAAAAdgAgPQAArAsAIAIAAACqCwAgPQAAqwsAIA6ABQAAqQsAMIEFAACqCwAQggUAAKkLADCDBQIA4ggAIYQFAgDiCAAhmAVAAOMIACGZBQEAoAgAIaMFQADjCAAhygUBALsIACHLBQQAsAkAIdkFAgDlCAAh2gUgAMAIACHbBQIA5QgAIdwFAQC7CAAhDoAFAACpCwAwgQUAAKoLABCCBQAAqQsAMIMFAgDiCAAhhAUCAOIIACGYBUAA4wgAIZkFAQCgCAAhowVAAOMIACHKBQEAuwgAIcsFBACwCQAh2QUCAOUIACHaBSAAwAgAIdsFAgDlCAAh3AUBALsIACEKgwUCAIMKACGEBQIAgwoAIZgFQACYCgAhmQUBAIIKACGjBUAAmAoAIcoFAQCXCgAhywUEAOkKACHaBSAAtQoAIdsFAgD0CgAh3AUBAJcKACEMAwAAhgsAICQAAIgLACCDBQIAgwoAIYQFAgCDCgAhmAVAAJgKACGZBQEAggoAIaMFQACYCgAhygUBAJcKACHLBQQA6QoAIdoFIAC1CgAh2wUCAPQKACHcBQEAlwoAIQwDAACVCwAgJAAAlwsAIIMFAgAAAAGEBQIAAAABmAVAAAAAAZkFAQAAAAGjBUAAAAABygUBAAAAAcsFBAAAAAHaBSAAAAAB2wUCAAAAAdwFAQAAAAEKAwAAuwsAIAQAALwLACAZAAC9CwAgIQAAugsAIIMFAgAAAAGEBQIAAAABmAVAAAAAAZkFAQAAAAGjBUAAAAABpAUCAAAAAQIAAABvACBEAAC5CwAgAwAAAG8AIEQAALkLACBFAAC4CwAgAT0AAKcTADAQAwAAoQgAIAQAALYJACAZAAC3CQAgIAAAsQkAICEAALUJACCABQAAtAkAMIEFAABtABCCBQAAtAkAMIMFAgAAAAGEBQIA4ggAIZgFQADjCAAhmQUBAKAIACGjBUAA4wgAIaQFAgDlCAAh3QUCAOUIACHJBgAAswkAIAIAAABvACA9AAC4CwAgAgAAALYLACA9AAC3CwAgCoAFAAC1CwAwgQUAALYLABCCBQAAtQsAMIMFAgDiCAAhhAUCAOIIACGYBUAA4wgAIZkFAQCgCAAhowVAAOMIACGkBQIA5QgAId0FAgDlCAAhCoAFAAC1CwAwgQUAALYLABCCBQAAtQsAMIMFAgDiCAAhhAUCAOIIACGYBUAA4wgAIZkFAQCgCAAhowVAAOMIACGkBQIA5QgAId0FAgDlCAAhBoMFAgCDCgAhhAUCAIMKACGYBUAAmAoAIZkFAQCCCgAhowVAAJgKACGkBQIA9AoAIQoDAACfCwAgBAAAoAsAIBkAAKELACAhAACeCwAggwUCAIMKACGEBQIAgwoAIZgFQACYCgAhmQUBAIIKACGjBUAAmAoAIaQFAgD0CgAhCgMAALsLACAEAAC8CwAgGQAAvQsAICEAALoLACCDBQIAAAABhAUCAAAAAZgFQAAAAAGZBQEAAAABowVAAAAAAaQFAgAAAAEERAAArgsAMM0GAACvCwAwzwYAALELACDTBgAAsgsAMANEAAClEwAgzQYAAKYTACDTBgAAAQAgA0QAAKMTACDNBgAApBMAINMGAAAFACAERAAAogsAMM0GAACjCwAwzwYAAKULACDTBgAApgsAMANEAAChEwAgzQYAAKITACDTBgAAbwAgAAAAAAAB0AZAAAAAAQAAAAAAAdAGAAAA5AUCBUQAAJwTACBFAACfEwAgzQYAAJ0TACDOBgAAnhMAINMGAAABACADRAAAnBMAIM0GAACdEwAg0wYAAAEAIAAAAAAABUQAAJcTACBFAACaEwAgzQYAAJgTACDOBgAAmRMAINMGAAABACADRAAAlxMAIM0GAACYEwAg0wYAAAEAIAAAAAAABUQAAJITACBFAACVEwAgzQYAAJMTACDOBgAAlBMAINMGAAABACADRAAAkhMAIM0GAACTEwAg0wYAAAEAIAAAAAAAAdAGAAAA7gUCBUQAAIoTACBFAACQEwAgzQYAAIsTACDOBgAAjxMAINMGAAAcACAFRAAAiBMAIEUAAI0TACDNBgAAiRMAIM4GAACMEwAg0wYAACsAIANEAACKEwAgzQYAAIsTACDTBgAAHAAgA0QAAIgTACDNBgAAiRMAINMGAAArACAAAAAAAAXQBhAAAAAB1gYQAAAAAdcGEAAAAAHYBhAAAAAB2QYQAAAAAQHQBgAAAPsFAgdEAADxEgAgRQAAhhMAIM0GAADyEgAgzgYAAIUTACDRBgAAEAAg0gYAABAAINMGAAASACAFRAAA7xIAIEUAAIMTACDNBgAA8BIAIM4GAACCEwAg0wYAAAUAIAdEAADtEgAgRQAAgBMAIM0GAADuEgAgzgYAAP8SACDRBgAADQAg0gYAAA0AINMGAAABACAHRAAA6xIAIEUAAP0SACDNBgAA7BIAIM4GAAD8EgAg0QYAABcAINIGAAAXACDTBgAAjQEAIAtEAACZDAAwRQAAnQwAMM0GAACaDAAwzgYAAJsMADDPBgAAnAwAINAGAACODAAw0QYAAI4MADDSBgAAjgwAMNMGAACODAAw1AYAAJ4MADDVBgAAkQwAMAtEAAD8CwAwRQAAgQwAMM0GAAD9CwAwzgYAAP4LADDPBgAA_wsAINAGAACADAAw0QYAAIAMADDSBgAAgAwAMNMGAACADAAw1AYAAIIMADDVBgAAgwwAMAtEAADzCwAwRQAA9wsAMM0GAAD0CwAwzgYAAPULADDPBgAA9gsAINAGAACfCgAw0QYAAJ8KADDSBgAAnwoAMNMGAACfCgAw1AYAAPgLADDVBgAAogoAMAQSAACPCgAggwUCAAAAAZEFAgAAAAGTBRAAAAABAgAAAC8AIEQAAPsLACADAAAALwAgRAAA-wsAIEUAAPoLACABPQAA-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_wsAINMGAACADAAwBEQAAPMLADDNBgAA9AsAMM8GAAD2CwAg0wYAAJ8KADAAAAAAAAVEAADmEgAgRQAA6RIAIM0GAADnEgAgzgYAAOgSACDTBgAAWgAgA0QAAOYSACDNBgAA5xIAINMGAABaACAAAAAAAAHQBgAAAIAGAgVEAADgEgAgRQAA5BIAIM0GAADhEgAgzgYAAOMSACDTBgAABQAgC0QAALgMADBFAAC9DAAwzQYAALkMADDOBgAAugwAMM8GAAC7DAAg0AYAALwMADDRBgAAvAwAMNIGAAC8DAAw0wYAALwMADDUBgAAvgwAMNUGAAC_DAAwBIMFAgAAAAHIBQEAAAABzQVAAAAAAfwFAAEAAAECAAAAXgAgRAAAwwwAIAMAAABeACBEAADDDAAgRQAAwgwAIAE9AADiEgAwCRoAAL4JACCABQAAvQkAMIEFAABcABCCBQAAvQkAMIMFAgAAAAHIBQEAoAgAIc0FQADjCAAh_AUAAa0JACH9BQIA4ggAIQIAAABeACA9AADCDAAgAgAAAMAMACA9AADBDAAgCIAFAAC_DAAwgQUAAMAMABCCBQAAvwwAMIMFAgDiCAAhyAUBAKAIACHNBUAA4wgAIfwFAAGtCQAh_QUCAOIIACEIgAUAAL8MADCBBQAAwAwAEIIFAAC_DAAwgwUCAOIIACHIBQEAoAgAIc0FQADjCAAh_AUAAa0JACH9BQIA4ggAIQSDBQIAgwoAIcgFAQCCCgAhzQVAAJgKACH8BQAB_goAIQSDBQIAgwoAIcgFAQCCCgAhzQVAAJgKACH8BQAB_goAIQSDBQIAAAAByAUBAAAAAc0FQAAAAAH8BQABAAABA0QAAOASACDNBgAA4RIAINMGAAAFACAERAAAuAwAMM0GAAC5DAAwzwYAALsMACDTBgAAvAwAMAAAAAAABUQAANsSACBFAADeEgAgzQYAANwSACDOBgAA3RIAINMGAAABACADRAAA2xIAIM0GAADcEgAg0wYAAAEAIAAAAAAABUQAANYSACBFAADZEgAgzQYAANcSACDOBgAA2BIAINMGAAABACADRAAA1hIAIM0GAADXEgAg0wYAAAEAIAAAAAAABUQAANESACBFAADUEgAgzQYAANISACDOBgAA0xIAINMGAAASACADRAAA0RIAIM0GAADSEgAg0wYAABIAIAAAAAAAB0QAAMwSACBFAADPEgAgzQYAAM0SACDOBgAAzhIAINEGAAAaACDSBgAAGgAg0wYAABwAIANEAADMEgAgzQYAAM0SACDTBgAAHAAgAAAAAAAB0AYAAACYBgIB0AYAAACdBgIFRAAAuRIAIEUAAMoSACDNBgAAuhIAIM4GAADJEgAg0wYAAAUAIAdEAAC3EgAgRQAAxxIAIM0GAAC4EgAgzgYAAMYSACDRBgAABwAg0gYAAAcAINMGAAAJACAHRAAAtRIAIEUAAMQSACDNBgAAthIAIM4GAADDEgAg0QYAAA0AINIGAAANACDTBgAAAQAgB0QAALMSACBFAADBEgAgzQYAALQSACDOBgAAwBIAINEGAAALACDSBgAACwAg0wYAAIoBACAHRAAAsRIAIEUAAL4SACDNBgAAshIAIM4GAAC9EgAg0QYAABcAINIGAAAXACDTBgAAjQEAIAtEAACCDQAwRQAAhg0AMM0GAACDDQAwzgYAAIQNADDPBgAAhQ0AINAGAACADAAw0QYAAIAMADDSBgAAgAwAMNMGAACADAAw1AYAAIcNADDVBgAAgwwAMAtEAAD2DAAwRQAA-wwAMM0GAAD3DAAwzgYAAPgMADDPBgAA-QwAINAGAAD6DAAw0QYAAPoMADDSBgAA-gwAMNMGAAD6DAAw1AYAAPwMADDVBgAA_QwAMAdEAADxDAAgRQAA9AwAIM0GAADyDAAgzgYAAPMMACDRBgAAGgAg0gYAABoAINMGAAAcACAXBAAAowwAIAoAAKQMACALAAClDAAgDQAApgwAIBAAAKcMACATAACoDAAggwUCAAAAAYQFAgAAAAGUBQIAAAABlwUBAAAAAZgFQAAAAAGjBUAAAAABpAUCAAAAAdMFAAAA-wUC8gUCAAAAAfMFEAAAAAH0BRAAAAAB9QUQAAAAAfYFEAAAAAH3BRAAAAAB-AUQAAAAAfkFEAAAAAH7BQEAAAABAgAAABwAIEQAAPEMACADAAAAGgAgRAAA8QwAIEUAAPUMACAZAAAAGgAgBAAA7QsAIAoAAO4LACALAADvCwAgDQAA8AsAIBAAAPELACATAADyCwAgPQAA9QwAIIMFAgCDCgAhhAUCAIMKACGUBQIA9AoAIZcFAQCXCgAhmAVAAJgKACGjBUAAmAoAIaQFAgCDCgAh0wUAAOsL-wUi8gUCAPQKACHzBRAAjAoAIfQFEACMCgAh9QUQAIwKACH2BRAAjAoAIfcFEADqCwAh-AUQAIwKACH5BRAAjAoAIfsFAQCXCgAhFwQAAO0LACAKAADuCwAgCwAA7wsAIA0AAPALACAQAADxCwAgEwAA8gsAIIMFAgCDCgAhhAUCAIMKACGUBQIA9AoAIZcFAQCXCgAhmAVAAJgKACGjBUAAmAoAIaQFAgCDCgAh0wUAAOsL-wUi8gUCAPQKACHzBRAAjAoAIfQFEACMCgAh9QUQAIwKACH2BRAAjAoAIfcFEADqCwAh-AUQAIwKACH5BRAAjAoAIfsFAQCXCgAhBIMFAgAAAAHIBQEAAAABygUBAAAAAcwFAQAAAAECAAAARgAgRAAAgQ0AIAMAAABGACBEAACBDQAgRQAAgA0AIAE9AAC8EgAwCQkAAMUJACCABQAAxAkAMIEFAABEABCCBQAAxAkAMIMFAgAAAAHIBQEAoAgAIcoFAQCgCAAhzAUBALsIACHxBQIA4ggAIQIAAABGACA9AACADQAgAgAAAP4MACA9AAD_DAAgCIAFAAD9DAAwgQUAAP4MABCCBQAA_QwAMIMFAgDiCAAhyAUBAKAIACHKBQEAoAgAIcwFAQC7CAAh8QUCAOIIACEIgAUAAP0MADCBBQAA_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_DQAgAT0AAJ0SADALCwAAzAkAIBEAAM0JACCABQAAygkAMIEFAAA2ABCCBQAAygkAMIMFAgAAAAGUBQIA4ggAIZUFEADLCQAhlgUQAMsJACGXBQEAuwgAIZgFQADjCAAhAgAAADgAID0AAL8NACACAAAAvQ0AID0AAL4NACAJgAUAALwNADCBBQAAvQ0AEIIFAAC8DQAwgwUCAOIIACGUBQIA4ggAIZUFEADLCQAhlgUQAMsJACGXBQEAuwgAIZgFQADjCAAhCYAFAAC8DQAwgQUAAL0NABCCBQAAvA0AMIMFAgDiCAAhlAUCAOIIACGVBRAAywkAIZYFEADLCQAhlwUBALsIACGYBUAA4wgAIQWDBQIAgwoAIZUFEACMCgAhlgUQAIwKACGXBQEAlwoAIZgFQACYCgAhBhEAAJoKACCDBQIAgwoAIZUFEACMCgAhlgUQAIwKACGXBQEAlwoAIZgFQACYCgAhBhEAAKgKACCDBQIAAAABlQUQAAAAAZYFEAAAAAGXBQEAAAABmAVAAAAAARcEAACjDAAgCQAAogwAIAoAAKQMACANAACmDAAgEAAApwwAIBMAAKgMACCDBQIAAAABhAUCAAAAAZcFAQAAAAGYBUAAAAABowVAAAAAAaQFAgAAAAHTBQAAAPsFAvEFAgAAAAHyBQIAAAAB8wUQAAAAAfQFEAAAAAH1BRAAAAAB9gUQAAAAAfcFEAAAAAH4BRAAAAAB-QUQAAAAAfsFAQAAAAECAAAAHAAgRAAAzA0AIAMAAAAcACBEAADMDQAgRQAAyw0AIAE9AACcEgAwHAQAAJkJACAJAADUCQAgCgAAqQkAIAsAAMkJACANAADWCQAgEAAA3AkAIBMAAM0JACCABQAA2gkAMIEFAAAaABCCBQAA2gkAMIMFAgAAAAGEBQIA4ggAIZQFAgDlCAAhlwUBALsIACGYBUAA4wgAIaMFQADjCAAhpAUCAOIIACHTBQAA2wn7BSLxBQIAAAAB8gUCAOUIACHzBRAAywkAIfQFEADLCQAh9QUQAMsJACH2BRAAywkAIfcFEADHCQAh-AUQAMsJACH5BRAAywkAIfsFAQC7CAAhAgAAABwAID0AAMsNACACAAAAyQ0AID0AAMoNACAVgAUAAMgNADCBBQAAyQ0AEIIFAADIDQAwgwUCAOIIACGEBQIA4ggAIZQFAgDlCAAhlwUBALsIACGYBUAA4wgAIaMFQADjCAAhpAUCAOIIACHTBQAA2wn7BSLxBQIA5QgAIfIFAgDlCAAh8wUQAMsJACH0BRAAywkAIfUFEADLCQAh9gUQAMsJACH3BRAAxwkAIfgFEADLCQAh-QUQAMsJACH7BQEAuwgAIRWABQAAyA0AMIEFAADJDQAQggUAAMgNADCDBQIA4ggAIYQFAgDiCAAhlAUCAOUIACGXBQEAuwgAIZgFQADjCAAhowVAAOMIACGkBQIA4ggAIdMFAADbCfsFIvEFAgDlCAAh8gUCAOUIACHzBRAAywkAIfQFEADLCQAh9QUQAMsJACH2BRAAywkAIfcFEADHCQAh-AUQAMsJACH5BRAAywkAIfsFAQC7CAAhEYMFAgCDCgAhhAUCAIMKACGXBQEAlwoAIZgFQACYCgAhowVAAJgKACGkBQIAgwoAIdMFAADrC_sFIvEFAgD0CgAh8gUCAPQKACHzBRAAjAoAIfQFEACMCgAh9QUQAIwKACH2BRAAjAoAIfcFEADqCwAh-AUQAIwKACH5BRAAjAoAIfsFAQCXCgAhFwQAAO0LACAJAADsCwAgCgAA7gsAIA0AAPALACAQAADxCwAgEwAA8gsAIIMFAgCDCgAhhAUCAIMKACGXBQEAlwoAIZgFQACYCgAhowVAAJgKACGkBQIAgwoAIdMFAADrC_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-g0AIAIAAAD3DQAgPQAA-A0AIBOABQAA9g0AMIEFAAD3DQAQggUAAPYNADCDBQIA4ggAIYQFAgDiCAAhlwUBALsIACGYBUAA4wgAIaQFAgDiCAAh0wUBAKAIACHkBQEAoAgAIf4FAQCgCAAhkgYCAOIIACGqBkAA4wgAIasGAQCgCAAhrAYBAKAIACGtBiAAwAgAIa4GAQC7CAAhrwYgAMAIACGxBgAA9wmxBiITgAUAAPYNADCBBQAA9w0AEIIFAAD2DQAwgwUCAOIIACGEBQIA4ggAIZcFAQC7CAAhmAVAAOMIACGkBQIA4ggAIdMFAQCgCAAh5AUBAKAIACH-BQEAoAgAIZIGAgDiCAAhqgZAAOMIACGrBgEAoAgAIawGAQCgCAAhrQYgAMAIACGuBgEAuwgAIa8GIADACAAhsQYAAPcJsQYiD4MFAgCDCgAhhAUCAIMKACGXBQEAlwoAIZgFQACYCgAhpAUCAIMKACHTBQEAggoAIeQFAQCCCgAh_gUBAIIKACGqBkAAmAoAIasGAQCCCgAhrAYBAIIKACGtBiAAtQoAIa4GAQCXCgAhrwYgALUKACGxBgAA-Q2xBiIB0AYAAACxBgIUAwAA_A0AIAQAAPsNACAIAAD-DQAgGAAA_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-xEAIEUAAP4RACDNBgAA_BEAIM4GAAD9EQAg0QYAAAsAINIGAAALACDTBgAAigEAIANEAAD7EQAgzQYAAPwRACDTBgAAigEAIAAAAAAABUQAAO4RACBFAAD5EQAgzQYAAO8RACDOBgAA-BEAINMGAAABACALRAAAkQ8AMEUAAJUPADDNBgAAkg8AMM4GAACTDwAwzwYAAJQPACDQBgAA8w0AMNEGAADzDQAw0gYAAPMNADDTBgAA8w0AMNQGAACWDwAw1QYAAPYNADALRAAAiA8AMEUAAIwPADDNBgAAiQ8AMM4GAACKDwAwzwYAAIsPACDQBgAArQ0AMNEGAACtDQAw0gYAAK0NADDTBgAArQ0AMNQGAACNDwAw1QYAALANADALRAAA_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_sFIvEFAgD0CgAh8gUCAPQKACHzBRAAjAoAIfQFEACMCgAh9QUQAIwKACH2BRAAjAoAIfcFEADqCwAh-AUQAIwKACH5BRAAjAoAIfsFAQCXCgAhFwkAAOwLACAKAADuCwAgCwAA7wsAIA0AAPALACAQAADxCwAgEwAA8gsAIIMFAgCDCgAhhAUCAIMKACGUBQIA9AoAIZcFAQCXCgAhmAVAAJgKACGjBUAAmAoAIdMFAADrC_sFIvEFAgD0CgAh8gUCAPQKACHzBRAAjAoAIfQFEACMCgAh9QUQAIwKACH2BRAAjAoAIfcFEADqCwAh-AUQAIwKACH5BRAAjAoAIfsFAQCXCgAhFwkAAKIMACAKAACkDAAgCwAApQwAIA0AAKYMACAQAACnDAAgEwAAqAwAIIMFAgAAAAGEBQIAAAABlAUCAAAAAZcFAQAAAAGYBUAAAAABowVAAAAAAdMFAAAA-wUC8QUCAAAAAfIFAgAAAAHzBRAAAAAB9AUQAAAAAfUFEAAAAAH2BRAAAAAB9wUQAAAAAfgFEAAAAAH5BRAAAAAB-wUBAAAAAQUbAADFDAAggwUCAAAAAZgFQAAAAAH-BQEAAAABgAYAAACABgICAAAAWgAgRAAA_g4AIAMAAABaACBEAAD-DgAgRQAA_Q4AIAE9AADzEQAwCgQAAJkJACAbAADBCQAggAUAAL8JADCBBQAAWAAQggUAAL8JADCDBQIAAAABmAVAAOMIACGkBQIA4ggAIf4FAQCgCAAhgAYAAMAJgAYiAgAAAFoAID0AAP0OACACAAAA-w4AID0AAPwOACAIgAUAAPoOADCBBQAA-w4AEIIFAAD6DgAwgwUCAOIIACGYBUAA4wgAIaQFAgDiCAAh_gUBAKAIACGABgAAwAmABiIIgAUAAPoOADCBBQAA-w4AEIIFAAD6DgAwgwUCAOIIACGYBUAA4wgAIaQFAgDiCAAh_gUBAKAIACGABgAAwAmABiIEgwUCAIMKACGYBUAAmAoAIf4FAQCCCgAhgAYAALUMgAYiBRsAALcMACCDBQIAgwoAIZgFQACYCgAh_gUBAIIKACGABgAAtQyABiIFGwAAxQwAIIMFAgAAAAGYBUAAAAAB_gUBAAAAAYAGAAAAgAYCGQMAAI0NACAGAACMDQAgBwAAjg0AIAsAAI8NACAMAACSDQAgEAAAkA0AIBcAAJENACCDBQIAAAABhAUCAAAAAZQFAgAAAAGYBUAAAAABowVAAAAAAdMFAAAAnQYCkQYCAAAAAZIGAgAAAAGTBgEAAAABlAYBAAAAAZUGQAAAAAGWBgEAAAABmAYAAACYBgKZBoAAAAABmgZAAAAAAZsGAQAAAAGdBgEAAAABngYBAAAAAQIAAAASACBEAACHDwAgAwAAABIAIEQAAIcPACBFAACGDwAgAT0AAPIRADACAAAAEgAgPQAAhg8AIAIAAADVDQAgPQAAhQ8AIBKDBQIAgwoAIYQFAgCDCgAhlAUCAPQKACGYBUAAmAoAIaMFQACYCgAh0wUAAOgMnQYikQYCAPQKACGSBgIAgwoAIZMGAQCCCgAhlAYBAIIKACGVBkAAmAoAIZYGAQCCCgAhmAYAAOcMmAYimQaAAAAAAZoGQACYCgAhmwYBAIIKACGdBgEAlwoAIZ4GAQCXCgAhGQMAAOsMACAGAADqDAAgBwAA7AwAIAsAAO0MACAMAADwDAAgEAAA7gwAIBcAAO8MACCDBQIAgwoAIYQFAgCDCgAhlAUCAPQKACGYBUAAmAoAIaMFQACYCgAh0wUAAOgMnQYikQYCAPQKACGSBgIAgwoAIZMGAQCCCgAhlAYBAIIKACGVBkAAmAoAIZYGAQCCCgAhmAYAAOcMmAYimQaAAAAAAZoGQACYCgAhmwYBAIIKACGdBgEAlwoAIZ4GAQCXCgAhGQMAAI0NACAGAACMDQAgBwAAjg0AIAsAAI8NACAMAACSDQAgEAAAkA0AIBcAAJENACCDBQIAAAABhAUCAAAAAZQFAgAAAAGYBUAAAAABowVAAAAAAdMFAAAAnQYCkQYCAAAAAZIGAgAAAAGTBgEAAAABlAYBAAAAAZUGQAAAAAGWBgEAAAABmAYAAACYBgKZBoAAAAABmgZAAAAAAZsGAQAAAAGdBgEAAAABngYBAAAAAQ8GAACcDQAgCwAAng0AIIMFAgAAAAGUBQIAAAABmAVAAAAAAYgGAQAAAAGMBgEAAAABjQYBAAAAAZEGAgAAAAGfBgEAAAABoAYQAAAAAaEGAQAAAAGiBgEAAAABpAYAAACkBgKlBgEAAAABAgAAADwAIEQAAJAPACADAAAAPAAgRAAAkA8AIEUAAI8PACABPQAA8REAMAIAAAA8ACA9AACPDwAgAgAAALENACA9AACODwAgDYMFAgCDCgAhlAUCAPQKACGYBUAAmAoAIYgGAQCCCgAhjAYBAJcKACGNBgEAlwoAIZEGAgCDCgAhnwYBAJcKACGgBhAA6gsAIaEGAQCXCgAhogYBAJcKACGkBgAAmA2kBiKlBgEAlwoAIQ8GAACZDQAgCwAAmw0AIIMFAgCDCgAhlAUCAPQKACGYBUAAmAoAIYgGAQCCCgAhjAYBAJcKACGNBgEAlwoAIZEGAgCDCgAhnwYBAJcKACGgBhAA6gsAIaEGAQCXCgAhogYBAJcKACGkBgAAmA2kBiKlBgEAlwoAIQ8GAACcDQAgCwAAng0AIIMFAgAAAAGUBQIAAAABmAVAAAAAAYgGAQAAAAGMBgEAAAABjQYBAAAAAZEGAgAAAAGfBgEAAAABoAYQAAAAAaEGAQAAAAGiBgEAAAABpAYAAACkBgKlBgEAAAABFAMAAKAOACAHAAC0DgAgCAAAog4AIBgAAKEOACAZAACjDgAggwUCAAAAAYQFAgAAAAGXBQEAAAABmAVAAAAAAdMFAQAAAAHkBQEAAAAB_gUBAAAAAZIGAgAAAAGqBkAAAAABqwYBAAAAAawGAQAAAAGtBiAAAAABrgYBAAAAAa8GIAAAAAGxBgAAALEGAgIAAAAJACBEAACZDwAgAwAAAAkAIEQAAJkPACBFAACYDwAgAT0AAPARADACAAAACQAgPQAAmA8AIAIAAAD3DQAgPQAAlw8AIA-DBQIAgwoAIYQFAgCDCgAhlwUBAJcKACGYBUAAmAoAIdMFAQCCCgAh5AUBAIIKACH-BQEAggoAIZIGAgCDCgAhqgZAAJgKACGrBgEAggoAIawGAQCCCgAhrQYgALUKACGuBgEAlwoAIa8GIAC1CgAhsQYAAPkNsQYiFAMAAPwNACAHAACzDgAgCAAA_g0AIBgAAP0NACAZAAD_DQAggwUCAIMKACGEBQIAgwoAIZcFAQCXCgAhmAVAAJgKACHTBQEAggoAIeQFAQCCCgAh_gUBAIIKACGSBgIAgwoAIaoGQACYCgAhqwYBAIIKACGsBgEAggoAIa0GIAC1CgAhrgYBAJcKACGvBiAAtQoAIbEGAAD5DbEGIhQDAACgDgAgBwAAtA4AIAgAAKIOACAYAAChDgAgGQAAow4AIIMFAgAAAAGEBQIAAAABlwUBAAAAAZgFQAAAAAHTBQEAAAAB5AUBAAAAAf4FAQAAAAGSBgIAAAABqgZAAAAAAasGAQAAAAGsBgEAAAABrQYgAAAAAa4GAQAAAAGvBiAAAAABsQYAAACxBgIDRAAA7hEAIM0GAADvEQAg0wYAAAEAIAREAACRDwAwzQYAAJIPADDPBgAAlA8AINMGAADzDQAwBEQAAIgPADDNBgAAiQ8AMM8GAACLDwAg0wYAAK0NADAERAAA_w4AMM0GAACADwAwzwYAAIIPACDTBgAA0Q0AMAREAADzDgAwzQYAAPQOADDPBgAA9g4AINMGAAD3DgAwBEQAAOoOADDNBgAA6w4AMM8GAADtDgAg0wYAAMUNADAERAAA3g4AMM0GAADfDgAwzwYAAOEOACDTBgAA4g4AMAREAADSDgAwzQYAANMOADDPBgAA1Q4AINMGAADWDgAwA0QAAM0OACDNBgAAzg4AINMGAAC3AQAgBEQAAMQOADDNBgAAxQ4AMM8GAADHDgAg0wYAALILADAAAAAAAAtEAACMEQAwRQAAkREAMM0GAACNEQAwzgYAAI4RADDPBgAAjxEAINAGAACQEQAw0QYAAJARADDSBgAAkBEAMNMGAACQEQAw1AYAAJIRADDVBgAAkxEAMAtEAACDEQAwRQAAhxEAMM0GAACEEQAwzgYAAIURADDPBgAAhhEAINAGAADzDQAw0QYAAPMNADDSBgAA8w0AMNMGAADzDQAw1AYAAIgRADDVBgAA9g0AMAtEAAD3EAAwRQAA_BAAMM0GAAD4EAAwzgYAAPkQADDPBgAA-hAAINAGAAD7EAAw0QYAAPsQADDSBgAA-xAAMNMGAAD7EAAw1AYAAP0QADDVBgAA_hAAMAtEAADrEAAwRQAA8BAAMM0GAADsEAAwzgYAAO0QADDPBgAA7hAAINAGAADvEAAw0QYAAO8QADDSBgAA7xAAMNMGAADvEAAw1AYAAPEQADDVBgAA8hAAMAtEAADiEAAwRQAA5hAAMM0GAADjEAAwzgYAAOQQADDPBgAA5RAAINAGAADRDQAw0QYAANENADDSBgAA0Q0AMNMGAADRDQAw1AYAAOcQADDVBgAA1A0AMAtEAADWEAAwRQAA2xAAMM0GAADXEAAwzgYAANgQADDPBgAA2RAAINAGAADaEAAw0QYAANoQADDSBgAA2hAAMNMGAADaEAAw1AYAANwQADDVBgAA3RAAMAtEAADKEAAwRQAAzxAAMM0GAADLEAAwzgYAAMwQADDPBgAAzRAAINAGAADOEAAw0QYAAM4QADDSBgAAzhAAMNMGAADOEAAw1AYAANAQADDVBgAA0RAAMAtEAADBEAAwRQAAxRAAMM0GAADCEAAwzgYAAMMQADDPBgAAxBAAINAGAADFDQAw0QYAAMUNADDSBgAAxQ0AMNMGAADFDQAw1AYAAMYQADDVBgAAyA0AMAtEAAC1EAAwRQAAuhAAMM0GAAC2EAAwzgYAALcQADDPBgAAuBAAINAGAAC5EAAw0QYAALkQADDSBgAAuRAAMNMGAAC5EAAw1AYAALsQADDVBgAAvBAAMAtEAACpEAAwRQAArhAAMM0GAACqEAAwzgYAAKsQADDPBgAArBAAINAGAACtEAAw0QYAAK0QADDSBgAArRAAMNMGAACtEAAw1AYAAK8QADDVBgAAsBAAMAtEAACdEAAwRQAAohAAMM0GAACeEAAwzgYAAJ8QADDPBgAAoBAAINAGAAChEAAw0QYAAKEQADDSBgAAoRAAMNMGAAChEAAw1AYAAKMQADDVBgAApBAAMAtEAACUEAAwRQAAmBAAMM0GAACVEAAwzgYAAJYQADDPBgAAlxAAINAGAACyCwAw0QYAALILADDSBgAAsgsAMNMGAACyCwAw1AYAAJkQADDVBgAAtQsAMAtEAACLEAAwRQAAjxAAMM0GAACMEAAwzgYAAI0QADDPBgAAjhAAINAGAACmCwAw0QYAAKYLADDSBgAApgsAMNMGAACmCwAw1AYAAJAQADDVBgAAqQsAMAtEAACCEAAwRQAAhhAAMM0GAACDEAAwzgYAAIQQADDPBgAAhRAAINAGAADiDgAw0QYAAOIOADDSBgAA4g4AMNMGAADiDgAw1AYAAIcQADDVBgAA5Q4AMAdEAAD9DwAgRQAAgBAAIM0GAAD-DwAgzgYAAP8PACDRBgAAqAEAINIGAACoAQAg0wYAAJkGACAHRAAA-A8AIEUAAPsPACDNBgAA-Q8AIM4GAAD6DwAg0QYAAKoBACDSBgAAqgEAINMGAACxBgAgB0QAAPMPACBFAAD2DwAgzQYAAPQPACDOBgAA9Q8AINEGAACsAQAg0gYAAKwBACDTBgAAyQYAIAdEAADuDwAgRQAA8Q8AIM0GAADvDwAgzgYAAPAPACDRBgAArgEAINIGAACuAQAg0wYAAOEGACAHRAAA6Q8AIEUAAOwPACDNBgAA6g8AIM4GAADrDwAg0QYAALABACDSBgAAsAEAINMGAACPBwAgC0QAAN0PADBFAADiDwAwzQYAAN4PADDOBgAA3w8AMM8GAADgDwAg0AYAAOEPADDRBgAA4Q8AMNIGAADhDwAw0wYAAOEPADDUBgAA4w8AMNUGAADkDwAwC0QAANEPADBFAADWDwAwzQYAANIPADDOBgAA0w8AMM8GAADUDwAg0AYAANUPADDRBgAA1Q8AMNIGAADVDwAw0wYAANUPADDUBgAA1w8AMNUGAADYDwAwC0QAAMUPADBFAADKDwAwzQYAAMYPADDOBgAAxw8AMM8GAADIDwAg0AYAAMkPADDRBgAAyQ8AMNIGAADJDwAw0wYAAMkPADDUBgAAyw8AMNUGAADMDwAwB0QAAMAPACBFAADDDwAgzQYAAMEPACDOBgAAwg8AINEGAAC9AQAg0gYAAL0BACDTBgAA_wcAIAKDBQIAAAABhQUBAAAAAQIAAAD_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_A8AIBAAAACqAQAgPQAA_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_EAAgAT0AAOURADAHAwAAoQgAIIAFAACeCQAwgQUAAJkBABCCBQAAngkAMIMFAgAAAAGEBQIA4ggAIZgFQADjCAAhAgAAAJsBACA9AAC_EAAgAgAAAL0QACA9AAC-EAAgBoAFAAC8EAAwgQUAAL0QABCCBQAAvBAAMIMFAgDiCAAhhAUCAOIIACGYBUAA4wgAIQaABQAAvBAAMIEFAAC9EAAQggUAALwQADCDBQIA4ggAIYQFAgDiCAAhmAVAAOMIACECgwUCAIMKACGYBUAAmAoAIQKDBQIAgwoAIZgFQACYCgAhAoMFAgAAAAGYBUAAAAABFwQAAKMMACAJAACiDAAgCwAApQwAIA0AAKYMACAQAACnDAAgEwAAqAwAIIMFAgAAAAGEBQIAAAABlAUCAAAAAZcFAQAAAAGYBUAAAAABowVAAAAAAaQFAgAAAAHTBQAAAPsFAvEFAgAAAAHzBRAAAAAB9AUQAAAAAfUFEAAAAAH2BRAAAAAB9wUQAAAAAfgFEAAAAAH5BRAAAAAB-wUBAAAAAQIAAAAcACBEAADJEAAgAwAAABwAIEQAAMkQACBFAADIEAAgAT0AAOQRADACAAAAHAAgPQAAyBAAIAIAAADJDQAgPQAAxxAAIBGDBQIAgwoAIYQFAgCDCgAhlAUCAPQKACGXBQEAlwoAIZgFQACYCgAhowVAAJgKACGkBQIAgwoAIdMFAADrC_sFIvEFAgD0CgAh8wUQAIwKACH0BRAAjAoAIfUFEACMCgAh9gUQAIwKACH3BRAA6gsAIfgFEACMCgAh-QUQAIwKACH7BQEAlwoAIRcEAADtCwAgCQAA7AsAIAsAAO8LACANAADwCwAgEAAA8QsAIBMAAPILACCDBQIAgwoAIYQFAgCDCgAhlAUCAPQKACGXBQEAlwoAIZgFQACYCgAhowVAAJgKACGkBQIAgwoAIdMFAADrC_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_xAAID0AAIARACAKgAUAAP4QADCBBQAA_xAAEIIFAAD-EAAwgwUCAOIIACGEBQIA4ggAIZgFQADjCAAhmQUBAKAIACGxBQEAuwgAIagGAQCgCAAhqQYBALsIACEKgAUAAP4QADCBBQAA_xAAEIIFAAD-EAAwgwUCAOIIACGEBQIA4ggAIZgFQADjCAAhmQUBAKAIACGxBQEAuwgAIagGAQCgCAAhqQYBALsIACEGgwUCAIMKACGYBUAAmAoAIZkFAQCCCgAhsQUBAJcKACGoBgEAggoAIakGAQCXCgAhCAUAAOQNACAIAADlDQAggwUCAIMKACGYBUAAmAoAIZkFAQCCCgAhsQUBAJcKACGoBgEAggoAIakGAQCXCgAhCAUAAKUOACAIAACmDgAggwUCAAAAAZgFQAAAAAGZBQEAAAABsQUBAAAAAagGAQAAAAGpBgEAAAABFAQAAJ8OACAHAAC0DgAgCAAAog4AIBgAAKEOACAZAACjDgAggwUCAAAAAZcFAQAAAAGYBUAAAAABpAUCAAAAAdMFAQAAAAHkBQEAAAAB_gUBAAAAAZIGAgAAAAGqBkAAAAABqwYBAAAAAawGAQAAAAGtBiAAAAABrgYBAAAAAa8GIAAAAAGxBgAAALEGAgIAAAAJACBEAACLEQAgAwAAAAkAIEQAAIsRACBFAACKEQAgAT0AAN4RADACAAAACQAgPQAAihEAIAIAAAD3DQAgPQAAiREAIA-DBQIAgwoAIZcFAQCXCgAhmAVAAJgKACGkBQIAgwoAIdMFAQCCCgAh5AUBAIIKACH-BQEAggoAIZIGAgCDCgAhqgZAAJgKACGrBgEAggoAIawGAQCCCgAhrQYgALUKACGuBgEAlwoAIa8GIAC1CgAhsQYAAPkNsQYiFAQAAPsNACAHAACzDgAgCAAA_g0AIBgAAP0NACAZAAD_DQAggwUCAIMKACGXBQEAlwoAIZgFQACYCgAhpAUCAIMKACHTBQEAggoAIeQFAQCCCgAh_gUBAIIKACGSBgIAgwoAIaoGQACYCgAhqwYBAIIKACGsBgEAggoAIa0GIAC1CgAhrgYBAJcKACGvBiAAtQoAIbEGAAD5DbEGIhQEAACfDgAgBwAAtA4AIAgAAKIOACAYAAChDgAgGQAAow4AIIMFAgAAAAGXBQEAAAABmAVAAAAAAaQFAgAAAAHTBQEAAAAB5AUBAAAAAf4FAQAAAAGSBgIAAAABqgZAAAAAAasGAQAAAAGsBgEAAAABrQYgAAAAAa4GAQAAAAGvBiAAAAABsQYAAACxBgIdBQAAmw8AIAgAAJ0PACAMAACfDwAgGAAAnA8AIBwAAJ4PACAdAACgDwAgHgAAoQ8AIB8AAKIPACAlAACjDwAggwUCAAAAAZgFQAAAAAGjBUAAAAABsQUBAAAAAbQFAQAAAAG2BQEAAAAB0wUAAACxBgKVBkAAAAABmwYBAAAAAakGAQAAAAGyBgEAAAABswYBAAAAAbQGAQAAAAG1BgEAAAABtgYBAAAAAbcGAQAAAAG4BgEAAAABuQYBAAAAAboGAQAAAAG7BgEAAAABAgAAAAUAIEQAAJcRACADAAAABQAgRAAAlxEAIEUAAJYRACABPQAA3REAMCIDAAChCAAgBQAAqgkAIAgAAKQJACAMAAClCQAgGAAApwkAIBwAAPoJACAdAADsCQAgHgAA-wkAIB8AAPwJACAlAAC1CQAggAUAAPkJADCBBQAAAwAQggUAAPkJADCDBQIAAAABhAUCAOIIACGYBUAA4wgAIaMFQADjCAAhsQUBALsIACG0BQEAuwgAIbYFAQC7CAAh0wUAAPcJsQYilQZAAOQIACGbBgEAuwgAIakGAQCgCAAhsgYBAKAIACGzBgEAoAgAIbQGAQCgCAAhtQYBALsIACG2BgEAuwgAIbcGAQC7CAAhuAYBALsIACG5BgEAuwgAIboGAQC7CAAhuwYBALsIACECAAAABQAgPQAAlhEAIAIAAACUEQAgPQAAlREAIBiABQAAkxEAMIEFAACUEQAQggUAAJMRADCDBQIA4ggAIYQFAgDiCAAhmAVAAOMIACGjBUAA4wgAIbEFAQC7CAAhtAUBALsIACG2BQEAuwgAIdMFAAD3CbEGIpUGQADkCAAhmwYBALsIACGpBgEAoAgAIbIGAQCgCAAhswYBAKAIACG0BgEAoAgAIbUGAQC7CAAhtgYBALsIACG3BgEAuwgAIbgGAQC7CAAhuQYBALsIACG6BgEAuwgAIbsGAQC7CAAhGIAFAACTEQAwgQUAAJQRABCCBQAAkxEAMIMFAgDiCAAhhAUCAOIIACGYBUAA4wgAIaMFQADjCAAhsQUBALsIACG0BQEAuwgAIbYFAQC7CAAh0wUAAPcJsQYilQZAAOQIACGbBgEAuwgAIakGAQCgCAAhsgYBAKAIACGzBgEAoAgAIbQGAQCgCAAhtQYBALsIACG2BgEAuwgAIbcGAQC7CAAhuAYBALsIACG5BgEAuwgAIboGAQC7CAAhuwYBALsIACEUgwUCAIMKACGYBUAAmAoAIaMFQACYCgAhsQUBAJcKACG0BQEAlwoAIbYFAQCXCgAh0wUAAPkNsQYilQZAAMQLACGbBgEAlwoAIakGAQCCCgAhsgYBAIIKACGzBgEAggoAIbQGAQCCCgAhtQYBAJcKACG2BgEAlwoAIbcGAQCXCgAhuAYBAJcKACG5BgEAlwoAIboGAQCXCgAhuwYBAJcKACEdBQAAuw4AIAgAAL0OACAMAAC_DgAgGAAAvA4AIBwAAL4OACAdAADADgAgHgAAwQ4AIB8AAMIOACAlAADDDgAggwUCAIMKACGYBUAAmAoAIaMFQACYCgAhsQUBAJcKACG0BQEAlwoAIbYFAQCXCgAh0wUAAPkNsQYilQZAAMQLACGbBgEAlwoAIakGAQCCCgAhsgYBAIIKACGzBgEAggoAIbQGAQCCCgAhtQYBAJcKACG2BgEAlwoAIbcGAQCXCgAhuAYBAJcKACG5BgEAlwoAIboGAQCXCgAhuwYBAJcKACEdBQAAmw8AIAgAAJ0PACAMAACfDwAgGAAAnA8AIBwAAJ4PACAdAACgDwAgHgAAoQ8AIB8AAKIPACAlAACjDwAggwUCAAAAAZgFQAAAAAGjBUAAAAABsQUBAAAAAbQFAQAAAAG2BQEAAAAB0wUAAACxBgKVBkAAAAABmwYBAAAAAakGAQAAAAGyBgEAAAABswYBAAAAAbQGAQAAAAG1BgEAAAABtgYBAAAAAbcGAQAAAAG4BgEAAAABuQYBAAAAAboGAQAAAAG7BgEAAAABBEQAAIwRADDNBgAAjREAMM8GAACPEQAg0wYAAJARADAERAAAgxEAMM0GAACEEQAwzwYAAIYRACDTBgAA8w0AMAREAAD3EAAwzQYAAPgQADDPBgAA-hAAINMGAAD7EAAwBEQAAOsQADDNBgAA7BAAMM8GAADuEAAg0wYAAO8QADAERAAA4hAAMM0GAADjEAAwzwYAAOUQACDTBgAA0Q0AMAREAADWEAAwzQYAANcQADDPBgAA2RAAINMGAADaEAAwBEQAAMoQADDNBgAAyxAAMM8GAADNEAAg0wYAAM4QADAERAAAwRAAMM0GAADCEAAwzwYAAMQQACDTBgAAxQ0AMAREAAC1EAAwzQYAALYQADDPBgAAuBAAINMGAAC5EAAwBEQAAKkQADDNBgAAqhAAMM8GAACsEAAg0wYAAK0QADAERAAAnRAAMM0GAACeEAAwzwYAAKAQACDTBgAAoRAAMAREAACUEAAwzQYAAJUQADDPBgAAlxAAINMGAACyCwAwBEQAAIsQADDNBgAAjBAAMM8GAACOEAAg0wYAAKYLADAERAAAghAAMM0GAACDEAAwzwYAAIUQACDTBgAA4g4AMANEAAD9DwAgzQYAAP4PACDTBgAAmQYAIANEAAD4DwAgzQYAAPkPACDTBgAAsQYAIANEAADzDwAgzQYAAPQPACDTBgAAyQYAIANEAADuDwAgzQYAAO8PACDTBgAA4QYAIANEAADpDwAgzQYAAOoPACDTBgAAjwcAIAREAADdDwAwzQYAAN4PADDPBgAA4A8AINMGAADhDwAwBEQAANEPADDNBgAA0g8AMM8GAADUDwAg0wYAANUPADAERAAAxQ8AMM0GAADGDwAwzwYAAMgPACDTBgAAyQ8AMANEAADADwAgzQYAAMEPACDTBgAA_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_BgIAAAABwAYgAAAAAcEGAgAAAAHCBgIAAAABAgAAAAEAIEQAAO4RACAPgwUCAAAAAYQFAgAAAAGXBQEAAAABmAVAAAAAAdMFAQAAAAHkBQEAAAAB_gUBAAAAAZIGAgAAAAGqBkAAAAABqwYBAAAAAawGAQAAAAGtBiAAAAABrgYBAAAAAa8GIAAAAAGxBgAAALEGAg2DBQIAAAABlAUCAAAAAZgFQAAAAAGIBgEAAAABjAYBAAAAAY0GAQAAAAGRBgIAAAABnwYBAAAAAaAGEAAAAAGhBgEAAAABogYBAAAAAaQGAAAApAYCpQYBAAAAARKDBQIAAAABhAUCAAAAAZQFAgAAAAGYBUAAAAABowVAAAAAAdMFAAAAnQYCkQYCAAAAAZIGAgAAAAGTBgEAAAABlAYBAAAAAZUGQAAAAAGWBgEAAAABmAYAAACYBgKZBoAAAAABmgZAAAAAAZsGAQAAAAGdBgEAAAABngYBAAAAAQSDBQIAAAABmAVAAAAAAf4FAQAAAAGABgAAAIAGAhGDBQIAAAABhAUCAAAAAZQFAgAAAAGXBQEAAAABmAVAAAAAAaMFQAAAAAHTBQAAAPsFAvEFAgAAAAHyBQIAAAAB8wUQAAAAAfQFEAAAAAH1BRAAAAAB9gUQAAAAAfcFEAAAAAH4BRAAAAAB-QUQAAAAAfsFAQAAAAEJgwUCAAAAAYQFAgAAAAGYBUAAAAABzwUAAADPBQLRBQAAANEFAtMFAAAA0wUC1AUBAAAAAdUFAgAAAAHWBQEAAAABCIMFAgAAAAGjBUAAAAAByAUBAAAAAckFAQAAAAHKBQEAAAABywUEAAAAAcwFAQAAAAHNBUAAAAABBoMFAgAAAAGEBQIAAAABmAVAAAAAAZkFAQAAAAGjBUAAAAAB3QUCAAAAAQMAAAANACBEAADuEQAgRQAA-hEAICIAAAANACAFAACqDwAgBwAAqw8AIAgAAK0PACAdAAC2DwAgJQAAtA8AICcAAKwPACAoAACuDwAgKQAArw8AICoAALAPACArAACxDwAgLAAAsg8AIC0AALMPACAuAAC1DwAgLwAAtw8AIDAAALgPACAxAAC5DwAgMgAAug8AIDMAALsPACA0AAC8DwAgNQAAvQ8AIDYAAL4PACA3AAC_DwAgPQAA-hEAIIMFAgCDCgAhhgYBAIIKACGHBgEAggoAIbwGIAC1CgAhvQYCAIMKACG-BiAAtQoAIb8GAgCDCgAhwAYgALUKACHBBgIAgwoAIcIGAgCDCgAhIAUAAKoPACAHAACrDwAgCAAArQ8AIB0AALYPACAlAAC0DwAgJwAArA8AICgAAK4PACApAACvDwAgKgAAsA8AICsAALEPACAsAACyDwAgLQAAsw8AIC4AALUPACAvAAC3DwAgMAAAuA8AIDEAALkPACAyAAC6DwAgMwAAuw8AIDQAALwPACA1AAC9DwAgNgAAvg8AIDcAAL8PACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_BgIAgwoAIcAGIAC1CgAhwQYCAIMKACHCBgIAgwoAIQkDAACkDgAgCAAApg4AIIMFAgAAAAGEBQIAAAABmAVAAAAAAZkFAQAAAAGxBQEAAAABqAYBAAAAAakGAQAAAAECAAAAigEAIEQAAPsRACADAAAACwAgRAAA-xEAIEUAAP8RACALAAAACwAgAwAA4w0AIAgAAOUNACA9AAD_EQAggwUCAIMKACGEBQIAgwoAIZgFQACYCgAhmQUBAIIKACGxBQEAlwoAIagGAQCCCgAhqQYBAJcKACEJAwAA4w0AIAgAAOUNACCDBQIAgwoAIYQFAgCDCgAhmAVAAJgKACGZBQEAggoAIbEFAQCXCgAhqAYBAIIKACGpBgEAlwoAIRUDAACgDgAgBAAAnw4AIAcAALQOACAIAACiDgAgGAAAoQ4AIIMFAgAAAAGEBQIAAAABlwUBAAAAAZgFQAAAAAGkBQIAAAAB0wUBAAAAAeQFAQAAAAH-BQEAAAABkgYCAAAAAaoGQAAAAAGrBgEAAAABrAYBAAAAAa0GIAAAAAGuBgEAAAABrwYgAAAAAbEGAAAAsQYCAgAAAAkAIEQAAIASACADAAAABwAgRAAAgBIAIEUAAIQSACAXAAAABwAgAwAA_A0AIAQAAPsNACAHAACzDgAgCAAA_g0AIBgAAP0NACA9AACEEgAggwUCAIMKACGEBQIAgwoAIZcFAQCXCgAhmAVAAJgKACGkBQIAgwoAIdMFAQCCCgAh5AUBAIIKACH-BQEAggoAIZIGAgCDCgAhqgZAAJgKACGrBgEAggoAIawGAQCCCgAhrQYgALUKACGuBgEAlwoAIa8GIAC1CgAhsQYAAPkNsQYiFQMAAPwNACAEAAD7DQAgBwAAsw4AIAgAAP4NACAYAAD9DQAggwUCAIMKACGEBQIAgwoAIZcFAQCXCgAhmAVAAJgKACGkBQIAgwoAIdMFAQCCCgAh5AUBAIIKACH-BQEAggoAIZIGAgCDCgAhqgZAAJgKACGrBgEAggoAIawGAQCCCgAhrQYgALUKACGuBgEAlwoAIa8GIAC1CgAhsQYAAPkNsQYiIAUAAJkRACAIAACcEQAgHQAApREAICUAAKMRACAmAACYEQAgJwAAmxEAICgAAJ0RACApAACeEQAgKgAAnxEAICsAAKARACAsAAChEQAgLQAAohEAIC4AAKQRACAvAACmEQAgMAAApxEAIDEAAKgRACAyAACpEQAgMwAAqhEAIDQAAKsRACA1AACsEQAgNgAArREAIDcAAK4RACCDBQIAAAABhgYBAAAAAYcGAQAAAAG8BiAAAAABvQYCAAAAAb4GIAAAAAG_BgIAAAABwAYgAAAAAcEGAgAAAAHCBgIAAAABAgAAAAEAIEQAAIUSACAgBwAAmhEAIAgAAJwRACAdAAClEQAgJQAAoxEAICYAAJgRACAnAACbEQAgKAAAnREAICkAAJ4RACAqAACfEQAgKwAAoBEAICwAAKERACAtAACiEQAgLgAApBEAIC8AAKYRACAwAACnEQAgMQAAqBEAIDIAAKkRACAzAACqEQAgNAAAqxEAIDUAAKwRACA2AACtEQAgNwAArhEAIIMFAgAAAAGGBgEAAAABhwYBAAAAAbwGIAAAAAG9BgIAAAABvgYgAAAAAb8GAgAAAAHABiAAAAABwQYCAAAAAcIGAgAAAAECAAAAAQAgRAAAhxIAIB4DAACaDwAgCAAAnQ8AIAwAAJ8PACAYAACcDwAgHAAAng8AIB0AAKAPACAeAAChDwAgHwAAog8AICUAAKMPACCDBQIAAAABhAUCAAAAAZgFQAAAAAGjBUAAAAABsQUBAAAAAbQFAQAAAAG2BQEAAAAB0wUAAACxBgKVBkAAAAABmwYBAAAAAakGAQAAAAGyBgEAAAABswYBAAAAAbQGAQAAAAG1BgEAAAABtgYBAAAAAbcGAQAAAAG4BgEAAAABuQYBAAAAAboGAQAAAAG7BgEAAAABAgAAAAUAIEQAAIkSACANgwUCAAAAAZQFAgAAAAGYBUAAAAABpAUCAAAAAYgGAQAAAAGMBgEAAAABjQYBAAAAAZ8GAQAAAAGgBhAAAAABoQYBAAAAAaIGAQAAAAGkBgAAAKQGAqUGAQAAAAESgwUCAAAAAYQFAgAAAAGUBQIAAAABmAVAAAAAAaMFQAAAAAGkBQIAAAAB0wUAAACdBgKSBgIAAAABkwYBAAAAAZQGAQAAAAGVBkAAAAABlgYBAAAAAZgGAAAAmAYCmQaAAAAAAZoGQAAAAAGbBgEAAAABnQYBAAAAAZ4GAQAAAAEEgwUCAAAAAcgFAQAAAAHKBQEAAAABzAUBAAAAAQMAAAANACBEAACHEgAgRQAAkBIAICIAAAANACAHAACrDwAgCAAArQ8AIB0AALYPACAlAAC0DwAgJgAAqQ8AICcAAKwPACAoAACuDwAgKQAArw8AICoAALAPACArAACxDwAgLAAAsg8AIC0AALMPACAuAAC1DwAgLwAAtw8AIDAAALgPACAxAAC5DwAgMgAAug8AIDMAALsPACA0AAC8DwAgNQAAvQ8AIDYAAL4PACA3AAC_DwAgPQAAkBIAIIMFAgCDCgAhhgYBAIIKACGHBgEAggoAIbwGIAC1CgAhvQYCAIMKACG-BiAAtQoAIb8GAgCDCgAhwAYgALUKACHBBgIAgwoAIcIGAgCDCgAhIAcAAKsPACAIAACtDwAgHQAAtg8AICUAALQPACAmAACpDwAgJwAArA8AICgAAK4PACApAACvDwAgKgAAsA8AICsAALEPACAsAACyDwAgLQAAsw8AIC4AALUPACAvAAC3DwAgMAAAuA8AIDEAALkPACAyAAC6DwAgMwAAuw8AIDQAALwPACA1AAC9DwAgNgAAvg8AIDcAAL8PACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_BgIAgwoAIcAGIAC1CgAhwQYCAIMKACHCBgIAgwoAIQMAAAADACBEAACJEgAgRQAAkxIAICAAAAADACADAAC6DgAgCAAAvQ4AIAwAAL8OACAYAAC8DgAgHAAAvg4AIB0AAMAOACAeAADBDgAgHwAAwg4AICUAAMMOACA9AACTEgAggwUCAIMKACGEBQIAgwoAIZgFQACYCgAhowVAAJgKACGxBQEAlwoAIbQFAQCXCgAhtgUBAJcKACHTBQAA-Q2xBiKVBkAAxAsAIZsGAQCXCgAhqQYBAIIKACGyBgEAggoAIbMGAQCCCgAhtAYBAIIKACG1BgEAlwoAIbYGAQCXCgAhtwYBAJcKACG4BgEAlwoAIbkGAQCXCgAhugYBAJcKACG7BgEAlwoAIR4DAAC6DgAgCAAAvQ4AIAwAAL8OACAYAAC8DgAgHAAAvg4AIB0AAMAOACAeAADBDgAgHwAAwg4AICUAAMMOACCDBQIAgwoAIYQFAgCDCgAhmAVAAJgKACGjBUAAmAoAIbEFAQCXCgAhtAUBAJcKACG2BQEAlwoAIdMFAAD5DbEGIpUGQADECwAhmwYBAJcKACGpBgEAggoAIbIGAQCCCgAhswYBAIIKACG0BgEAggoAIbUGAQCXCgAhtgYBAJcKACG3BgEAlwoAIbgGAQCXCgAhuQYBAJcKACG6BgEAlwoAIbsGAQCXCgAhD4MFAgAAAAGEBQIAAAABlwUBAAAAAZgFQAAAAAGkBQIAAAAB0wUBAAAAAeQFAQAAAAH-BQEAAAABqgZAAAAAAasGAQAAAAGsBgEAAAABrQYgAAAAAa4GAQAAAAGvBiAAAAABsQYAAACxBgISgwUCAAAAAYQFAgAAAAGUBQIAAAABmAVAAAAAAaMFQAAAAAGkBQIAAAAB0wUAAACdBgKRBgIAAAABkwYBAAAAAZQGAQAAAAGVBkAAAAABlgYBAAAAAZgGAAAAmAYCmQaAAAAAAZoGQAAAAAGbBgEAAAABnQYBAAAAAZ4GAQAAAAEDAAAADQAgRAAAhRIAIEUAAJgSACAiAAAADQAgBQAAqg8AIAgAAK0PACAdAAC2DwAgJQAAtA8AICYAAKkPACAnAACsDwAgKAAArg8AICkAAK8PACAqAACwDwAgKwAAsQ8AICwAALIPACAtAACzDwAgLgAAtQ8AIC8AALcPACAwAAC4DwAgMQAAuQ8AIDIAALoPACAzAAC7DwAgNAAAvA8AIDUAAL0PACA2AAC-DwAgNwAAvw8AID0AAJgSACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_BgIAgwoAIcAGIAC1CgAhwQYCAIMKACHCBgIAgwoAISAFAACqDwAgCAAArQ8AIB0AALYPACAlAAC0DwAgJgAAqQ8AICcAAKwPACAoAACuDwAgKQAArw8AICoAALAPACArAACxDwAgLAAAsg8AIC0AALMPACAuAAC1DwAgLwAAtw8AIDAAALgPACAxAAC5DwAgMgAAug8AIDMAALsPACA0AAC8DwAgNQAAvQ8AIDYAAL4PACA3AAC_DwAggwUCAIMKACGGBgEAggoAIYcGAQCCCgAhvAYgALUKACG9BgIAgwoAIb4GIAC1CgAhvwYCAIMKACHABiAAtQoAIcEGAgCDCgAhwgYCAIMKACEgBQAAmREAIAcAAJoRACAIAACcEQAgHQAApREAICUAAKMRACAmAACYEQAgKAAAnREAICkAAJ4RACAqAACfEQAgKwAAoBEAICwAAKERACAtAACiEQAgLgAApBEAIC8AAKYRACAwAACnEQAgMQAAqBEAIDIAAKkRACAzAACqEQAgNAAAqxEAIDUAAKwRACA2AACtEQAgNwAArhEAIIMFAgAAAAGGBgEAAAABhwYBAAAAAbwGIAAAAAG9BgIAAAABvgYgAAAAAb8GAgAAAAHABiAAAAABwQYCAAAAAcIGAgAAAAECAAAAAQAgRAAAmRIAIBKDBQIAAAABhAUCAAAAAZgFQAAAAAGjBUAAAAABpAUCAAAAAdMFAAAAnQYCkQYCAAAAAZIGAgAAAAGTBgEAAAABlAYBAAAAAZUGQAAAAAGWBgEAAAABmAYAAACYBgKZBoAAAAABmgZAAAAAAZsGAQAAAAGdBgEAAAABngYBAAAAARGDBQIAAAABhAUCAAAAAZcFAQAAAAGYBUAAAAABowVAAAAAAaQFAgAAAAHTBQAAAPsFAvEFAgAAAAHyBQIAAAAB8wUQAAAAAfQFEAAAAAH1BRAAAAAB9gUQAAAAAfcFEAAAAAH4BRAAAAAB-QUQAAAAAfsFAQAAAAEFgwUCAAAAAZUFEAAAAAGWBRAAAAABlwUBAAAAAZgFQAAAAAENgwUCAAAAAZgFQAAAAAGkBQIAAAABiAYBAAAAAYwGAQAAAAGNBgEAAAABkQYCAAAAAZ8GAQAAAAGgBhAAAAABoQYBAAAAAaIGAQAAAAGkBgAAAKQGAqUGAQAAAAEDAAAADQAgRAAAmRIAIEUAAKESACAiAAAADQAgBQAAqg8AIAcAAKsPACAIAACtDwAgHQAAtg8AICUAALQPACAmAACpDwAgKAAArg8AICkAAK8PACAqAACwDwAgKwAAsQ8AICwAALIPACAtAACzDwAgLgAAtQ8AIC8AALcPACAwAAC4DwAgMQAAuQ8AIDIAALoPACAzAAC7DwAgNAAAvA8AIDUAAL0PACA2AAC-DwAgNwAAvw8AID0AAKESACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_BgIAgwoAIcAGIAC1CgAhwQYCAIMKACHCBgIAgwoAISAFAACqDwAgBwAAqw8AIAgAAK0PACAdAAC2DwAgJQAAtA8AICYAAKkPACAoAACuDwAgKQAArw8AICoAALAPACArAACxDwAgLAAAsg8AIC0AALMPACAuAAC1DwAgLwAAtw8AIDAAALgPACAxAAC5DwAgMgAAug8AIDMAALsPACA0AAC8DwAgNQAAvQ8AIDYAAL4PACA3AAC_DwAggwUCAIMKACGGBgEAggoAIYcGAQCCCgAhvAYgALUKACG9BgIAgwoAIb4GIAC1CgAhvwYCAIMKACHABiAAtQoAIcEGAgCDCgAhwgYCAIMKACEKAwAA2Q0AIAgAANoNACAUAADbDQAgFQAA3A0AIIMFAgAAAAGEBQIAAAABmAVAAAAAAaIFAgAAAAGmBgEAAAABpwYBAAAAAQIAAACNAQAgRAAAohIAIB4DAACaDwAgBQAAmw8AIAgAAJ0PACAMAACfDwAgHAAAng8AIB0AAKAPACAeAAChDwAgHwAAog8AICUAAKMPACCDBQIAAAABhAUCAAAAAZgFQAAAAAGjBUAAAAABsQUBAAAAAbQFAQAAAAG2BQEAAAAB0wUAAACxBgKVBkAAAAABmwYBAAAAAakGAQAAAAGyBgEAAAABswYBAAAAAbQGAQAAAAG1BgEAAAABtgYBAAAAAbcGAQAAAAG4BgEAAAABuQYBAAAAAboGAQAAAAG7BgEAAAABAgAAAAUAIEQAAKQSACAVAwAAoA4AIAQAAJ8OACAHAAC0DgAgCAAAog4AIBkAAKMOACCDBQIAAAABhAUCAAAAAZcFAQAAAAGYBUAAAAABpAUCAAAAAdMFAQAAAAHkBQEAAAAB_gUBAAAAAZIGAgAAAAGqBkAAAAABqwYBAAAAAawGAQAAAAGtBiAAAAABrgYBAAAAAa8GIAAAAAGxBgAAALEGAgIAAAAJACBEAACmEgAgAwAAABcAIEQAAKISACBFAACqEgAgDAAAABcAIAMAAKQNACAIAAClDQAgFAAApg0AIBUAAKcNACA9AACqEgAggwUCAIMKACGEBQIAgwoAIZgFQACYCgAhogUCAIMKACGmBgEAggoAIacGAQCCCgAhCgMAAKQNACAIAAClDQAgFAAApg0AIBUAAKcNACCDBQIAgwoAIYQFAgCDCgAhmAVAAJgKACGiBQIAgwoAIaYGAQCCCgAhpwYBAIIKACEDAAAAAwAgRAAApBIAIEUAAK0SACAgAAAAAwAgAwAAug4AIAUAALsOACAIAAC9DgAgDAAAvw4AIBwAAL4OACAdAADADgAgHgAAwQ4AIB8AAMIOACAlAADDDgAgPQAArRIAIIMFAgCDCgAhhAUCAIMKACGYBUAAmAoAIaMFQACYCgAhsQUBAJcKACG0BQEAlwoAIbYFAQCXCgAh0wUAAPkNsQYilQZAAMQLACGbBgEAlwoAIakGAQCCCgAhsgYBAIIKACGzBgEAggoAIbQGAQCCCgAhtQYBAJcKACG2BgEAlwoAIbcGAQCXCgAhuAYBAJcKACG5BgEAlwoAIboGAQCXCgAhuwYBAJcKACEeAwAAug4AIAUAALsOACAIAAC9DgAgDAAAvw4AIBwAAL4OACAdAADADgAgHgAAwQ4AIB8AAMIOACAlAADDDgAggwUCAIMKACGEBQIAgwoAIZgFQACYCgAhowVAAJgKACGxBQEAlwoAIbQFAQCXCgAhtgUBAJcKACHTBQAA-Q2xBiKVBkAAxAsAIZsGAQCXCgAhqQYBAIIKACGyBgEAggoAIbMGAQCCCgAhtAYBAIIKACG1BgEAlwoAIbYGAQCXCgAhtwYBAJcKACG4BgEAlwoAIbkGAQCXCgAhugYBAJcKACG7BgEAlwoAIQMAAAAHACBEAACmEgAgRQAAsBIAIBcAAAAHACADAAD8DQAgBAAA-w0AIAcAALMOACAIAAD-DQAgGQAA_w0AID0AALASACCDBQIAgwoAIYQFAgCDCgAhlwUBAJcKACGYBUAAmAoAIaQFAgCDCgAh0wUBAIIKACHkBQEAggoAIf4FAQCCCgAhkgYCAIMKACGqBkAAmAoAIasGAQCCCgAhrAYBAIIKACGtBiAAtQoAIa4GAQCXCgAhrwYgALUKACGxBgAA-Q2xBiIVAwAA_A0AIAQAAPsNACAHAACzDgAgCAAA_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_DQAgPQAAyBIAIIMFAgCDCgAhhAUCAIMKACGXBQEAlwoAIZgFQACYCgAhpAUCAIMKACHTBQEAggoAIeQFAQCCCgAh_gUBAIIKACGSBgIAgwoAIaoGQACYCgAhqwYBAIIKACGsBgEAggoAIa0GIAC1CgAhrgYBAJcKACGvBiAAtQoAIbEGAAD5DbEGIhUDAAD8DQAgBAAA-w0AIAcAALMOACAYAAD9DQAgGQAA_w0AIIMFAgCDCgAhhAUCAIMKACGXBQEAlwoAIZgFQACYCgAhpAUCAIMKACHTBQEAggoAIeQFAQCCCgAh_gUBAIIKACGSBgIAgwoAIaoGQACYCgAhqwYBAIIKACGsBgEAggoAIa0GIAC1CgAhrgYBAJcKACGvBiAAtQoAIbEGAAD5DbEGIgMAAAADACBEAAC5EgAgRQAAyxIAICAAAAADACADAAC6DgAgBQAAuw4AIAwAAL8OACAYAAC8DgAgHAAAvg4AIB0AAMAOACAeAADBDgAgHwAAwg4AICUAAMMOACA9AADLEgAggwUCAIMKACGEBQIAgwoAIZgFQACYCgAhowVAAJgKACGxBQEAlwoAIbQFAQCXCgAhtgUBAJcKACHTBQAA-Q2xBiKVBkAAxAsAIZsGAQCXCgAhqQYBAIIKACGyBgEAggoAIbMGAQCCCgAhtAYBAIIKACG1BgEAlwoAIbYGAQCXCgAhtwYBAJcKACG4BgEAlwoAIbkGAQCXCgAhugYBAJcKACG7BgEAlwoAIR4DAAC6DgAgBQAAuw4AIAwAAL8OACAYAAC8DgAgHAAAvg4AIB0AAMAOACAeAADBDgAgHwAAwg4AICUAAMMOACCDBQIAgwoAIYQFAgCDCgAhmAVAAJgKACGjBUAAmAoAIbEFAQCXCgAhtAUBAJcKACG2BQEAlwoAIdMFAAD5DbEGIpUGQADECwAhmwYBAJcKACGpBgEAggoAIbIGAQCCCgAhswYBAIIKACG0BgEAggoAIbUGAQCXCgAhtgYBAJcKACG3BgEAlwoAIbgGAQCXCgAhuQYBAJcKACG6BgEAlwoAIbsGAQCXCgAhGAQAAKMMACAJAACiDAAgCgAApAwAIAsAAKUMACANAACmDAAgEwAAqAwAIIMFAgAAAAGEBQIAAAABlAUCAAAAAZcFAQAAAAGYBUAAAAABowVAAAAAAaQFAgAAAAHTBQAAAPsFAvEFAgAAAAHyBQIAAAAB8wUQAAAAAfQFEAAAAAH1BRAAAAAB9gUQAAAAAfcFEAAAAAH4BRAAAAAB-QUQAAAAAfsFAQAAAAECAAAAHAAgRAAAzBIAIAMAAAAaACBEAADMEgAgRQAA0BIAIBoAAAAaACAEAADtCwAgCQAA7AsAIAoAAO4LACALAADvCwAgDQAA8AsAIBMAAPILACA9AADQEgAggwUCAIMKACGEBQIAgwoAIZQFAgD0CgAhlwUBAJcKACGYBUAAmAoAIaMFQACYCgAhpAUCAIMKACHTBQAA6wv7BSLxBQIA9AoAIfIFAgD0CgAh8wUQAIwKACH0BRAAjAoAIfUFEACMCgAh9gUQAIwKACH3BRAA6gsAIfgFEACMCgAh-QUQAIwKACH7BQEAlwoAIRgEAADtCwAgCQAA7AsAIAoAAO4LACALAADvCwAgDQAA8AsAIBMAAPILACCDBQIAgwoAIYQFAgCDCgAhlAUCAPQKACGXBQEAlwoAIZgFQACYCgAhowVAAJgKACGkBQIAgwoAIdMFAADrC_sFIvEFAgD0CgAh8gUCAPQKACHzBRAAjAoAIfQFEACMCgAh9QUQAIwKACH2BRAAjAoAIfcFEADqCwAh-AUQAIwKACH5BRAAjAoAIfsFAQCXCgAhGgMAAI0NACAEAACLDQAgBgAAjA0AIAcAAI4NACALAACPDQAgDAAAkg0AIBAAAJANACCDBQIAAAABhAUCAAAAAZQFAgAAAAGYBUAAAAABowVAAAAAAaQFAgAAAAHTBQAAAJ0GApEGAgAAAAGSBgIAAAABkwYBAAAAAZQGAQAAAAGVBkAAAAABlgYBAAAAAZgGAAAAmAYCmQaAAAAAAZoGQAAAAAGbBgEAAAABnQYBAAAAAZ4GAQAAAAECAAAAEgAgRAAA0RIAIAMAAAAQACBEAADREgAgRQAA1RIAIBwAAAAQACADAADrDAAgBAAA6QwAIAYAAOoMACAHAADsDAAgCwAA7QwAIAwAAPAMACAQAADuDAAgPQAA1RIAIIMFAgCDCgAhhAUCAIMKACGUBQIA9AoAIZgFQACYCgAhowVAAJgKACGkBQIAgwoAIdMFAADoDJ0GIpEGAgD0CgAhkgYCAIMKACGTBgEAggoAIZQGAQCCCgAhlQZAAJgKACGWBgEAggoAIZgGAADnDJgGIpkGgAAAAAGaBkAAmAoAIZsGAQCCCgAhnQYBAJcKACGeBgEAlwoAIRoDAADrDAAgBAAA6QwAIAYAAOoMACAHAADsDAAgCwAA7QwAIAwAAPAMACAQAADuDAAggwUCAIMKACGEBQIAgwoAIZQFAgD0CgAhmAVAAJgKACGjBUAAmAoAIaQFAgCDCgAh0wUAAOgMnQYikQYCAPQKACGSBgIAgwoAIZMGAQCCCgAhlAYBAIIKACGVBkAAmAoAIZYGAQCCCgAhmAYAAOcMmAYimQaAAAAAAZoGQACYCgAhmwYBAIIKACGdBgEAlwoAIZ4GAQCXCgAhIAUAAJkRACAHAACaEQAgCAAAnBEAIB0AAKURACAlAACjEQAgJgAAmBEAICcAAJsRACApAACeEQAgKgAAnxEAICsAAKARACAsAAChEQAgLQAAohEAIC4AAKQRACAvAACmEQAgMAAApxEAIDEAAKgRACAyAACpEQAgMwAAqhEAIDQAAKsRACA1AACsEQAgNgAArREAIDcAAK4RACCDBQIAAAABhgYBAAAAAYcGAQAAAAG8BiAAAAABvQYCAAAAAb4GIAAAAAG_BgIAAAABwAYgAAAAAcEGAgAAAAHCBgIAAAABAgAAAAEAIEQAANYSACADAAAADQAgRAAA1hIAIEUAANoSACAiAAAADQAgBQAAqg8AIAcAAKsPACAIAACtDwAgHQAAtg8AICUAALQPACAmAACpDwAgJwAArA8AICkAAK8PACAqAACwDwAgKwAAsQ8AICwAALIPACAtAACzDwAgLgAAtQ8AIC8AALcPACAwAAC4DwAgMQAAuQ8AIDIAALoPACAzAAC7DwAgNAAAvA8AIDUAAL0PACA2AAC-DwAgNwAAvw8AID0AANoSACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_BgIAgwoAIcAGIAC1CgAhwQYCAIMKACHCBgIAgwoAISAFAACqDwAgBwAAqw8AIAgAAK0PACAdAAC2DwAgJQAAtA8AICYAAKkPACAnAACsDwAgKQAArw8AICoAALAPACArAACxDwAgLAAAsg8AIC0AALMPACAuAAC1DwAgLwAAtw8AIDAAALgPACAxAAC5DwAgMgAAug8AIDMAALsPACA0AAC8DwAgNQAAvQ8AIDYAAL4PACA3AAC_DwAggwUCAIMKACGGBgEAggoAIYcGAQCCCgAhvAYgALUKACG9BgIAgwoAIb4GIAC1CgAhvwYCAIMKACHABiAAtQoAIcEGAgCDCgAhwgYCAIMKACEgBQAAmREAIAcAAJoRACAIAACcEQAgHQAApREAICUAAKMRACAmAACYEQAgJwAAmxEAICgAAJ0RACAqAACfEQAgKwAAoBEAICwAAKERACAtAACiEQAgLgAApBEAIC8AAKYRACAwAACnEQAgMQAAqBEAIDIAAKkRACAzAACqEQAgNAAAqxEAIDUAAKwRACA2AACtEQAgNwAArhEAIIMFAgAAAAGGBgEAAAABhwYBAAAAAbwGIAAAAAG9BgIAAAABvgYgAAAAAb8GAgAAAAHABiAAAAABwQYCAAAAAcIGAgAAAAECAAAAAQAgRAAA2xIAIAMAAAANACBEAADbEgAgRQAA3xIAICIAAAANACAFAACqDwAgBwAAqw8AIAgAAK0PACAdAAC2DwAgJQAAtA8AICYAAKkPACAnAACsDwAgKAAArg8AICoAALAPACArAACxDwAgLAAAsg8AIC0AALMPACAuAAC1DwAgLwAAtw8AIDAAALgPACAxAAC5DwAgMgAAug8AIDMAALsPACA0AAC8DwAgNQAAvQ8AIDYAAL4PACA3AAC_DwAgPQAA3xIAIIMFAgCDCgAhhgYBAIIKACGHBgEAggoAIbwGIAC1CgAhvQYCAIMKACG-BiAAtQoAIb8GAgCDCgAhwAYgALUKACHBBgIAgwoAIcIGAgCDCgAhIAUAAKoPACAHAACrDwAgCAAArQ8AIB0AALYPACAlAAC0DwAgJgAAqQ8AICcAAKwPACAoAACuDwAgKgAAsA8AICsAALEPACAsAACyDwAgLQAAsw8AIC4AALUPACAvAAC3DwAgMAAAuA8AIDEAALkPACAyAAC6DwAgMwAAuw8AIDQAALwPACA1AAC9DwAgNgAAvg8AIDcAAL8PACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_BgIAgwoAIcAGIAC1CgAhwQYCAIMKACHCBgIAgwoAIR4DAACaDwAgBQAAmw8AIAgAAJ0PACAMAACfDwAgGAAAnA8AIB0AAKAPACAeAAChDwAgHwAAog8AICUAAKMPACCDBQIAAAABhAUCAAAAAZgFQAAAAAGjBUAAAAABsQUBAAAAAbQFAQAAAAG2BQEAAAAB0wUAAACxBgKVBkAAAAABmwYBAAAAAakGAQAAAAGyBgEAAAABswYBAAAAAbQGAQAAAAG1BgEAAAABtgYBAAAAAbcGAQAAAAG4BgEAAAABuQYBAAAAAboGAQAAAAG7BgEAAAABAgAAAAUAIEQAAOASACAEgwUCAAAAAcgFAQAAAAHNBUAAAAAB_AUAAQAAAQMAAAADACBEAADgEgAgRQAA5RIAICAAAAADACADAAC6DgAgBQAAuw4AIAgAAL0OACAMAAC_DgAgGAAAvA4AIB0AAMAOACAeAADBDgAgHwAAwg4AICUAAMMOACA9AADlEgAggwUCAIMKACGEBQIAgwoAIZgFQACYCgAhowVAAJgKACGxBQEAlwoAIbQFAQCXCgAhtgUBAJcKACHTBQAA-Q2xBiKVBkAAxAsAIZsGAQCXCgAhqQYBAIIKACGyBgEAggoAIbMGAQCCCgAhtAYBAIIKACG1BgEAlwoAIbYGAQCXCgAhtwYBAJcKACG4BgEAlwoAIbkGAQCXCgAhugYBAJcKACG7BgEAlwoAIR4DAAC6DgAgBQAAuw4AIAgAAL0OACAMAAC_DgAgGAAAvA4AIB0AAMAOACAeAADBDgAgHwAAwg4AICUAAMMOACCDBQIAgwoAIYQFAgCDCgAhmAVAAJgKACGjBUAAmAoAIbEFAQCXCgAhtAUBAJcKACG2BQEAlwoAIdMFAAD5DbEGIpUGQADECwAhmwYBAJcKACGpBgEAggoAIbIGAQCCCgAhswYBAIIKACG0BgEAggoAIbUGAQCXCgAhtgYBAJcKACG3BgEAlwoAIbgGAQCXCgAhuQYBAJcKACG6BgEAlwoAIbsGAQCXCgAhBgQAAMQMACCDBQIAAAABmAVAAAAAAaQFAgAAAAH-BQEAAAABgAYAAACABgICAAAAWgAgRAAA5hIAIAMAAABYACBEAADmEgAgRQAA6hIAIAgAAABYACAEAAC2DAAgPQAA6hIAIIMFAgCDCgAhmAVAAJgKACGkBQIAgwoAIf4FAQCCCgAhgAYAALUMgAYiBgQAALYMACCDBQIAgwoAIZgFQACYCgAhpAUCAIMKACH-BQEAggoAIYAGAAC1DIAGIgoDAADZDQAgCAAA2g0AIBUAANwNACAWAADdDQAggwUCAAAAAYQFAgAAAAGYBUAAAAABogUCAAAAAaYGAQAAAAGnBgEAAAABAgAAAI0BACBEAADrEgAgIAUAAJkRACAHAACaEQAgCAAAnBEAIB0AAKURACAlAACjEQAgJgAAmBEAICcAAJsRACAoAACdEQAgKQAAnhEAICsAAKARACAsAAChEQAgLQAAohEAIC4AAKQRACAvAACmEQAgMAAApxEAIDEAAKgRACAyAACpEQAgMwAAqhEAIDQAAKsRACA1AACsEQAgNgAArREAIDcAAK4RACCDBQIAAAABhgYBAAAAAYcGAQAAAAG8BiAAAAABvQYCAAAAAb4GIAAAAAG_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_DwAgPQAAgRMAIIMFAgCDCgAhhgYBAIIKACGHBgEAggoAIbwGIAC1CgAhvQYCAIMKACG-BiAAtQoAIb8GAgCDCgAhwAYgALUKACHBBgIAgwoAIcIGAgCDCgAhIAUAAKoPACAHAACrDwAgCAAArQ8AIB0AALYPACAlAAC0DwAgJgAAqQ8AICcAAKwPACAoAACuDwAgKQAArw8AICsAALEPACAsAACyDwAgLQAAsw8AIC4AALUPACAvAAC3DwAgMAAAuA8AIDEAALkPACAyAAC6DwAgMwAAuw8AIDQAALwPACA1AAC9DwAgNgAAvg8AIDcAAL8PACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_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_sFIvEFAgD0CgAh8gUCAPQKACHzBRAAjAoAIfQFEACMCgAh9QUQAIwKACH2BRAAjAoAIfcFEADqCwAh-AUQAIwKACH5BRAAjAoAIfsFAQCXCgAhIAUAAJkRACAHAACaEQAgCAAAnBEAIB0AAKURACAlAACjEQAgJgAAmBEAICcAAJsRACAoAACdEQAgKQAAnhEAICoAAJ8RACAsAAChEQAgLQAAohEAIC4AAKQRACAvAACmEQAgMAAApxEAIDEAAKgRACAyAACpEQAgMwAAqhEAIDQAAKsRACA1AACsEQAgNgAArREAIDcAAK4RACCDBQIAAAABhgYBAAAAAYcGAQAAAAG8BiAAAAABvQYCAAAAAb4GIAAAAAG_BgIAAAABwAYgAAAAAcEGAgAAAAHCBgIAAAABAgAAAAEAIEQAAJITACADAAAADQAgRAAAkhMAIEUAAJYTACAiAAAADQAgBQAAqg8AIAcAAKsPACAIAACtDwAgHQAAtg8AICUAALQPACAmAACpDwAgJwAArA8AICgAAK4PACApAACvDwAgKgAAsA8AICwAALIPACAtAACzDwAgLgAAtQ8AIC8AALcPACAwAAC4DwAgMQAAuQ8AIDIAALoPACAzAAC7DwAgNAAAvA8AIDUAAL0PACA2AAC-DwAgNwAAvw8AID0AAJYTACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_BgIAgwoAIcAGIAC1CgAhwQYCAIMKACHCBgIAgwoAISAFAACqDwAgBwAAqw8AIAgAAK0PACAdAAC2DwAgJQAAtA8AICYAAKkPACAnAACsDwAgKAAArg8AICkAAK8PACAqAACwDwAgLAAAsg8AIC0AALMPACAuAAC1DwAgLwAAtw8AIDAAALgPACAxAAC5DwAgMgAAug8AIDMAALsPACA0AAC8DwAgNQAAvQ8AIDYAAL4PACA3AAC_DwAggwUCAIMKACGGBgEAggoAIYcGAQCCCgAhvAYgALUKACG9BgIAgwoAIb4GIAC1CgAhvwYCAIMKACHABiAAtQoAIcEGAgCDCgAhwgYCAIMKACEgBQAAmREAIAcAAJoRACAIAACcEQAgHQAApREAICUAAKMRACAmAACYEQAgJwAAmxEAICgAAJ0RACApAACeEQAgKgAAnxEAICsAAKARACAtAACiEQAgLgAApBEAIC8AAKYRACAwAACnEQAgMQAAqBEAIDIAAKkRACAzAACqEQAgNAAAqxEAIDUAAKwRACA2AACtEQAgNwAArhEAIIMFAgAAAAGGBgEAAAABhwYBAAAAAbwGIAAAAAG9BgIAAAABvgYgAAAAAb8GAgAAAAHABiAAAAABwQYCAAAAAcIGAgAAAAECAAAAAQAgRAAAlxMAIAMAAAANACBEAACXEwAgRQAAmxMAICIAAAANACAFAACqDwAgBwAAqw8AIAgAAK0PACAdAAC2DwAgJQAAtA8AICYAAKkPACAnAACsDwAgKAAArg8AICkAAK8PACAqAACwDwAgKwAAsQ8AIC0AALMPACAuAAC1DwAgLwAAtw8AIDAAALgPACAxAAC5DwAgMgAAug8AIDMAALsPACA0AAC8DwAgNQAAvQ8AIDYAAL4PACA3AAC_DwAgPQAAmxMAIIMFAgCDCgAhhgYBAIIKACGHBgEAggoAIbwGIAC1CgAhvQYCAIMKACG-BiAAtQoAIb8GAgCDCgAhwAYgALUKACHBBgIAgwoAIcIGAgCDCgAhIAUAAKoPACAHAACrDwAgCAAArQ8AIB0AALYPACAlAAC0DwAgJgAAqQ8AICcAAKwPACAoAACuDwAgKQAArw8AICoAALAPACArAACxDwAgLQAAsw8AIC4AALUPACAvAAC3DwAgMAAAuA8AIDEAALkPACAyAAC6DwAgMwAAuw8AIDQAALwPACA1AAC9DwAgNgAAvg8AIDcAAL8PACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_BgIAgwoAIcAGIAC1CgAhwQYCAIMKACHCBgIAgwoAISAFAACZEQAgBwAAmhEAIAgAAJwRACAdAAClEQAgJQAAoxEAICYAAJgRACAnAACbEQAgKAAAnREAICkAAJ4RACAqAACfEQAgKwAAoBEAICwAAKERACAuAACkEQAgLwAAphEAIDAAAKcRACAxAACoEQAgMgAAqREAIDMAAKoRACA0AACrEQAgNQAArBEAIDYAAK0RACA3AACuEQAggwUCAAAAAYYGAQAAAAGHBgEAAAABvAYgAAAAAb0GAgAAAAG-BiAAAAABvwYCAAAAAcAGIAAAAAHBBgIAAAABwgYCAAAAAQIAAAABACBEAACcEwAgAwAAAA0AIEQAAJwTACBFAACgEwAgIgAAAA0AIAUAAKoPACAHAACrDwAgCAAArQ8AIB0AALYPACAlAAC0DwAgJgAAqQ8AICcAAKwPACAoAACuDwAgKQAArw8AICoAALAPACArAACxDwAgLAAAsg8AIC4AALUPACAvAAC3DwAgMAAAuA8AIDEAALkPACAyAAC6DwAgMwAAuw8AIDQAALwPACA1AAC9DwAgNgAAvg8AIDcAAL8PACA9AACgEwAggwUCAIMKACGGBgEAggoAIYcGAQCCCgAhvAYgALUKACG9BgIAgwoAIb4GIAC1CgAhvwYCAIMKACHABiAAtQoAIcEGAgCDCgAhwgYCAIMKACEgBQAAqg8AIAcAAKsPACAIAACtDwAgHQAAtg8AICUAALQPACAmAACpDwAgJwAArA8AICgAAK4PACApAACvDwAgKgAAsA8AICsAALEPACAsAACyDwAgLgAAtQ8AIC8AALcPACAwAAC4DwAgMQAAuQ8AIDIAALoPACAzAAC7DwAgNAAAvA8AIDUAAL0PACA2AAC-DwAgNwAAvw8AIIMFAgCDCgAhhgYBAIIKACGHBgEAggoAIbwGIAC1CgAhvQYCAIMKACG-BiAAtQoAIb8GAgCDCgAhwAYgALUKACHBBgIAgwoAIcIGAgCDCgAhCwMAALsLACAEAAC8CwAgGQAAvQsAICAAAL4LACCDBQIAAAABhAUCAAAAAZgFQAAAAAGZBQEAAAABowVAAAAAAaQFAgAAAAHdBQIAAAABAgAAAG8AIEQAAKETACAeAwAAmg8AIAUAAJsPACAIAACdDwAgDAAAnw8AIBgAAJwPACAcAACeDwAgHQAAoA8AIB4AAKEPACAfAACiDwAggwUCAAAAAYQFAgAAAAGYBUAAAAABowVAAAAAAbEFAQAAAAG0BQEAAAABtgUBAAAAAdMFAAAAsQYClQZAAAAAAZsGAQAAAAGpBgEAAAABsgYBAAAAAbMGAQAAAAG0BgEAAAABtQYBAAAAAbYGAQAAAAG3BgEAAAABuAYBAAAAAbkGAQAAAAG6BgEAAAABuwYBAAAAAQIAAAAFACBEAACjEwAgIAUAAJkRACAHAACaEQAgCAAAnBEAIB0AAKURACAmAACYEQAgJwAAmxEAICgAAJ0RACApAACeEQAgKgAAnxEAICsAAKARACAsAAChEQAgLQAAohEAIC4AAKQRACAvAACmEQAgMAAApxEAIDEAAKgRACAyAACpEQAgMwAAqhEAIDQAAKsRACA1AACsEQAgNgAArREAIDcAAK4RACCDBQIAAAABhgYBAAAAAYcGAQAAAAG8BiAAAAABvQYCAAAAAb4GIAAAAAG_BgIAAAABwAYgAAAAAcEGAgAAAAHCBgIAAAABAgAAAAEAIEQAAKUTACAGgwUCAAAAAYQFAgAAAAGYBUAAAAABmQUBAAAAAaMFQAAAAAGkBQIAAAABCoMFAgAAAAGEBQIAAAABmAVAAAAAAZkFAQAAAAGjBUAAAAABygUBAAAAAcsFBAAAAAHaBSAAAAAB2wUCAAAAAdwFAQAAAAEDAAAAAwAgRAAAoxMAIEUAAKsTACAgAAAAAwAgAwAAug4AIAUAALsOACAIAAC9DgAgDAAAvw4AIBgAALwOACAcAAC-DgAgHQAAwA4AIB4AAMEOACAfAADCDgAgPQAAqxMAIIMFAgCDCgAhhAUCAIMKACGYBUAAmAoAIaMFQACYCgAhsQUBAJcKACG0BQEAlwoAIbYFAQCXCgAh0wUAAPkNsQYilQZAAMQLACGbBgEAlwoAIakGAQCCCgAhsgYBAIIKACGzBgEAggoAIbQGAQCCCgAhtQYBAJcKACG2BgEAlwoAIbcGAQCXCgAhuAYBAJcKACG5BgEAlwoAIboGAQCXCgAhuwYBAJcKACEeAwAAug4AIAUAALsOACAIAAC9DgAgDAAAvw4AIBgAALwOACAcAAC-DgAgHQAAwA4AIB4AAMEOACAfAADCDgAggwUCAIMKACGEBQIAgwoAIZgFQACYCgAhowVAAJgKACGxBQEAlwoAIbQFAQCXCgAhtgUBAJcKACHTBQAA-Q2xBiKVBkAAxAsAIZsGAQCXCgAhqQYBAIIKACGyBgEAggoAIbMGAQCCCgAhtAYBAIIKACG1BgEAlwoAIbYGAQCXCgAhtwYBAJcKACG4BgEAlwoAIbkGAQCXCgAhugYBAJcKACG7BgEAlwoAIQMAAAANACBEAAClEwAgRQAArhMAICIAAAANACAFAACqDwAgBwAAqw8AIAgAAK0PACAdAAC2DwAgJgAAqQ8AICcAAKwPACAoAACuDwAgKQAArw8AICoAALAPACArAACxDwAgLAAAsg8AIC0AALMPACAuAAC1DwAgLwAAtw8AIDAAALgPACAxAAC5DwAgMgAAug8AIDMAALsPACA0AAC8DwAgNQAAvQ8AIDYAAL4PACA3AAC_DwAgPQAArhMAIIMFAgCDCgAhhgYBAIIKACGHBgEAggoAIbwGIAC1CgAhvQYCAIMKACG-BiAAtQoAIb8GAgCDCgAhwAYgALUKACHBBgIAgwoAIcIGAgCDCgAhIAUAAKoPACAHAACrDwAgCAAArQ8AIB0AALYPACAmAACpDwAgJwAArA8AICgAAK4PACApAACvDwAgKgAAsA8AICsAALEPACAsAACyDwAgLQAAsw8AIC4AALUPACAvAAC3DwAgMAAAuA8AIDEAALkPACAyAAC6DwAgMwAAuw8AIDQAALwPACA1AAC9DwAgNgAAvg8AIDcAAL8PACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_BgIAgwoAIcAGIAC1CgAhwQYCAIMKACHCBgIAgwoAIQMAAABtACBEAAChEwAgRQAAsRMAIA0AAABtACADAACfCwAgBAAAoAsAIBkAAKELACAgAACdCwAgPQAAsRMAIIMFAgCDCgAhhAUCAIMKACGYBUAAmAoAIZkFAQCCCgAhowVAAJgKACGkBQIA9AoAId0FAgD0CgAhCwMAAJ8LACAEAACgCwAgGQAAoQsAICAAAJ0LACCDBQIAgwoAIYQFAgCDCgAhmAVAAJgKACGZBQEAggoAIaMFQACYCgAhpAUCAPQKACHdBQIA9AoAIQsDAAC7CwAgBAAAvAsAICAAAL4LACAhAAC6CwAggwUCAAAAAYQFAgAAAAGYBUAAAAABmQUBAAAAAaMFQAAAAAGkBQIAAAAB3QUCAAAAAQIAAABvACBEAACyEwAgIAUAAJkRACAHAACaEQAgCAAAnBEAIB0AAKURACAlAACjEQAgJgAAmBEAICcAAJsRACAoAACdEQAgKQAAnhEAICoAAJ8RACArAACgEQAgLAAAoREAIC0AAKIRACAvAACmEQAgMAAApxEAIDEAAKgRACAyAACpEQAgMwAAqhEAIDQAAKsRACA1AACsEQAgNgAArREAIDcAAK4RACCDBQIAAAABhgYBAAAAAYcGAQAAAAG8BiAAAAABvQYCAAAAAb4GIAAAAAG_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_DwAgPQAAyBMAIIMFAgCDCgAhhgYBAIIKACGHBgEAggoAIbwGIAC1CgAhvQYCAIMKACG-BiAAtQoAIb8GAgCDCgAhwAYgALUKACHBBgIAgwoAIcIGAgCDCgAhIAUAAKoPACAHAACrDwAgCAAArQ8AICUAALQPACAmAACpDwAgJwAArA8AICgAAK4PACApAACvDwAgKgAAsA8AICsAALEPACAsAACyDwAgLQAAsw8AIC4AALUPACAvAAC3DwAgMAAAuA8AIDEAALkPACAyAAC6DwAgMwAAuw8AIDQAALwPACA1AAC9DwAgNgAAvg8AIDcAAL8PACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_BgIAgwoAIcAGIAC1CgAhwQYCAIMKACHCBgIAgwoAIQMAAAADACBEAADEEwAgRQAAyxMAICAAAAADACADAAC6DgAgBQAAuw4AIAgAAL0OACAMAAC_DgAgGAAAvA4AIBwAAL4OACAeAADBDgAgHwAAwg4AICUAAMMOACA9AADLEwAggwUCAIMKACGEBQIAgwoAIZgFQACYCgAhowVAAJgKACGxBQEAlwoAIbQFAQCXCgAhtgUBAJcKACHTBQAA-Q2xBiKVBkAAxAsAIZsGAQCXCgAhqQYBAIIKACGyBgEAggoAIbMGAQCCCgAhtAYBAIIKACG1BgEAlwoAIbYGAQCXCgAhtwYBAJcKACG4BgEAlwoAIbkGAQCXCgAhugYBAJcKACG7BgEAlwoAIR4DAAC6DgAgBQAAuw4AIAgAAL0OACAMAAC_DgAgGAAAvA4AIBwAAL4OACAeAADBDgAgHwAAwg4AICUAAMMOACCDBQIAgwoAIYQFAgCDCgAhmAVAAJgKACGjBUAAmAoAIbEFAQCXCgAhtAUBAJcKACG2BQEAlwoAIdMFAAD5DbEGIpUGQADECwAhmwYBAJcKACGpBgEAggoAIbIGAQCCCgAhswYBAIIKACG0BgEAggoAIbUGAQCXCgAhtgYBAJcKACG3BgEAlwoAIbgGAQCXCgAhuQYBAJcKACG6BgEAlwoAIbsGAQCXCgAhHgMAAJoPACAFAACbDwAgCAAAnQ8AIAwAAJ8PACAYAACcDwAgHAAAng8AIB0AAKAPACAfAACiDwAgJQAAow8AIIMFAgAAAAGEBQIAAAABmAVAAAAAAaMFQAAAAAGxBQEAAAABtAUBAAAAAbYFAQAAAAHTBQAAALEGApUGQAAAAAGbBgEAAAABqQYBAAAAAbIGAQAAAAGzBgEAAAABtAYBAAAAAbUGAQAAAAG2BgEAAAABtwYBAAAAAbgGAQAAAAG5BgEAAAABugYBAAAAAbsGAQAAAAECAAAABQAgRAAAzBMAIAMAAAADACBEAADMEwAgRQAA0BMAICAAAAADACADAAC6DgAgBQAAuw4AIAgAAL0OACAMAAC_DgAgGAAAvA4AIBwAAL4OACAdAADADgAgHwAAwg4AICUAAMMOACA9AADQEwAggwUCAIMKACGEBQIAgwoAIZgFQACYCgAhowVAAJgKACGxBQEAlwoAIbQFAQCXCgAhtgUBAJcKACHTBQAA-Q2xBiKVBkAAxAsAIZsGAQCXCgAhqQYBAIIKACGyBgEAggoAIbMGAQCCCgAhtAYBAIIKACG1BgEAlwoAIbYGAQCXCgAhtwYBAJcKACG4BgEAlwoAIbkGAQCXCgAhugYBAJcKACG7BgEAlwoAIR4DAAC6DgAgBQAAuw4AIAgAAL0OACAMAAC_DgAgGAAAvA4AIBwAAL4OACAdAADADgAgHwAAwg4AICUAAMMOACCDBQIAgwoAIYQFAgCDCgAhmAVAAJgKACGjBUAAmAoAIbEFAQCXCgAhtAUBAJcKACG2BQEAlwoAIdMFAAD5DbEGIpUGQADECwAhmwYBAJcKACGpBgEAggoAIbIGAQCCCgAhswYBAIIKACG0BgEAggoAIbUGAQCXCgAhtgYBAJcKACG3BgEAlwoAIbgGAQCXCgAhuQYBAJcKACG6BgEAlwoAIbsGAQCXCgAhIAUAAJkRACAHAACaEQAgCAAAnBEAIB0AAKURACAlAACjEQAgJgAAmBEAICcAAJsRACAoAACdEQAgKQAAnhEAICoAAJ8RACArAACgEQAgLAAAoREAIC0AAKIRACAuAACkEQAgMAAApxEAIDEAAKgRACAyAACpEQAgMwAAqhEAIDQAAKsRACA1AACsEQAgNgAArREAIDcAAK4RACCDBQIAAAABhgYBAAAAAYcGAQAAAAG8BiAAAAABvQYCAAAAAb4GIAAAAAG_BgIAAAABwAYgAAAAAcEGAgAAAAHCBgIAAAABAgAAAAEAIEQAANETACADAAAADQAgRAAA0RMAIEUAANUTACAiAAAADQAgBQAAqg8AIAcAAKsPACAIAACtDwAgHQAAtg8AICUAALQPACAmAACpDwAgJwAArA8AICgAAK4PACApAACvDwAgKgAAsA8AICsAALEPACAsAACyDwAgLQAAsw8AIC4AALUPACAwAAC4DwAgMQAAuQ8AIDIAALoPACAzAAC7DwAgNAAAvA8AIDUAAL0PACA2AAC-DwAgNwAAvw8AID0AANUTACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_BgIAgwoAIcAGIAC1CgAhwQYCAIMKACHCBgIAgwoAISAFAACqDwAgBwAAqw8AIAgAAK0PACAdAAC2DwAgJQAAtA8AICYAAKkPACAnAACsDwAgKAAArg8AICkAAK8PACAqAACwDwAgKwAAsQ8AICwAALIPACAtAACzDwAgLgAAtQ8AIDAAALgPACAxAAC5DwAgMgAAug8AIDMAALsPACA0AAC8DwAgNQAAvQ8AIDYAAL4PACA3AAC_DwAggwUCAIMKACGGBgEAggoAIYcGAQCCCgAhvAYgALUKACG9BgIAgwoAIb4GIAC1CgAhvwYCAIMKACHABiAAtQoAIcEGAgCDCgAhwgYCAIMKACEgBQAAmREAIAcAAJoRACAIAACcEQAgHQAApREAICUAAKMRACAmAACYEQAgJwAAmxEAICgAAJ0RACApAACeEQAgKgAAnxEAICsAAKARACAsAAChEQAgLQAAohEAIC4AAKQRACAvAACmEQAgMQAAqBEAIDIAAKkRACAzAACqEQAgNAAAqxEAIDUAAKwRACA2AACtEQAgNwAArhEAIIMFAgAAAAGGBgEAAAABhwYBAAAAAbwGIAAAAAG9BgIAAAABvgYgAAAAAb8GAgAAAAHABiAAAAABwQYCAAAAAcIGAgAAAAECAAAAAQAgRAAA1hMAIAMAAAANACBEAADWEwAgRQAA2hMAICIAAAANACAFAACqDwAgBwAAqw8AIAgAAK0PACAdAAC2DwAgJQAAtA8AICYAAKkPACAnAACsDwAgKAAArg8AICkAAK8PACAqAACwDwAgKwAAsQ8AICwAALIPACAtAACzDwAgLgAAtQ8AIC8AALcPACAxAAC5DwAgMgAAug8AIDMAALsPACA0AAC8DwAgNQAAvQ8AIDYAAL4PACA3AAC_DwAgPQAA2hMAIIMFAgCDCgAhhgYBAIIKACGHBgEAggoAIbwGIAC1CgAhvQYCAIMKACG-BiAAtQoAIb8GAgCDCgAhwAYgALUKACHBBgIAgwoAIcIGAgCDCgAhIAUAAKoPACAHAACrDwAgCAAArQ8AIB0AALYPACAlAAC0DwAgJgAAqQ8AICcAAKwPACAoAACuDwAgKQAArw8AICoAALAPACArAACxDwAgLAAAsg8AIC0AALMPACAuAAC1DwAgLwAAtw8AIDEAALkPACAyAAC6DwAgMwAAuw8AIDQAALwPACA1AAC9DwAgNgAAvg8AIDcAAL8PACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_BgIAgwoAIcAGIAC1CgAhwQYCAIMKACHCBgIAgwoAISAFAACZEQAgBwAAmhEAIAgAAJwRACAdAAClEQAgJQAAoxEAICYAAJgRACAnAACbEQAgKAAAnREAICkAAJ4RACAqAACfEQAgKwAAoBEAICwAAKERACAtAACiEQAgLgAApBEAIC8AAKYRACAwAACnEQAgMgAAqREAIDMAAKoRACA0AACrEQAgNQAArBEAIDYAAK0RACA3AACuEQAggwUCAAAAAYYGAQAAAAGHBgEAAAABvAYgAAAAAb0GAgAAAAG-BiAAAAABvwYCAAAAAcAGIAAAAAHBBgIAAAABwgYCAAAAAQIAAAABACBEAADbEwAgAwAAAA0AIEQAANsTACBFAADfEwAgIgAAAA0AIAUAAKoPACAHAACrDwAgCAAArQ8AIB0AALYPACAlAAC0DwAgJgAAqQ8AICcAAKwPACAoAACuDwAgKQAArw8AICoAALAPACArAACxDwAgLAAAsg8AIC0AALMPACAuAAC1DwAgLwAAtw8AIDAAALgPACAyAAC6DwAgMwAAuw8AIDQAALwPACA1AAC9DwAgNgAAvg8AIDcAAL8PACA9AADfEwAggwUCAIMKACGGBgEAggoAIYcGAQCCCgAhvAYgALUKACG9BgIAgwoAIb4GIAC1CgAhvwYCAIMKACHABiAAtQoAIcEGAgCDCgAhwgYCAIMKACEgBQAAqg8AIAcAAKsPACAIAACtDwAgHQAAtg8AICUAALQPACAmAACpDwAgJwAArA8AICgAAK4PACApAACvDwAgKgAAsA8AICsAALEPACAsAACyDwAgLQAAsw8AIC4AALUPACAvAAC3DwAgMAAAuA8AIDIAALoPACAzAAC7DwAgNAAAvA8AIDUAAL0PACA2AAC-DwAgNwAAvw8AIIMFAgCDCgAhhgYBAIIKACGHBgEAggoAIbwGIAC1CgAhvQYCAIMKACG-BiAAtQoAIb8GAgCDCgAhwAYgALUKACHBBgIAgwoAIcIGAgCDCgAhIAUAAJkRACAHAACaEQAgCAAAnBEAIB0AAKURACAlAACjEQAgJgAAmBEAICcAAJsRACAoAACdEQAgKQAAnhEAICoAAJ8RACArAACgEQAgLAAAoREAIC0AAKIRACAuAACkEQAgLwAAphEAIDAAAKcRACAxAACoEQAgMwAAqhEAIDQAAKsRACA1AACsEQAgNgAArREAIDcAAK4RACCDBQIAAAABhgYBAAAAAYcGAQAAAAG8BiAAAAABvQYCAAAAAb4GIAAAAAG_BgIAAAABwAYgAAAAAcEGAgAAAAHCBgIAAAABAgAAAAEAIEQAAOATACADAAAADQAgRAAA4BMAIEUAAOQTACAiAAAADQAgBQAAqg8AIAcAAKsPACAIAACtDwAgHQAAtg8AICUAALQPACAmAACpDwAgJwAArA8AICgAAK4PACApAACvDwAgKgAAsA8AICsAALEPACAsAACyDwAgLQAAsw8AIC4AALUPACAvAAC3DwAgMAAAuA8AIDEAALkPACAzAAC7DwAgNAAAvA8AIDUAAL0PACA2AAC-DwAgNwAAvw8AID0AAOQTACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_BgIAgwoAIcAGIAC1CgAhwQYCAIMKACHCBgIAgwoAISAFAACqDwAgBwAAqw8AIAgAAK0PACAdAAC2DwAgJQAAtA8AICYAAKkPACAnAACsDwAgKAAArg8AICkAAK8PACAqAACwDwAgKwAAsQ8AICwAALIPACAtAACzDwAgLgAAtQ8AIC8AALcPACAwAAC4DwAgMQAAuQ8AIDMAALsPACA0AAC8DwAgNQAAvQ8AIDYAAL4PACA3AAC_DwAggwUCAIMKACGGBgEAggoAIYcGAQCCCgAhvAYgALUKACG9BgIAgwoAIb4GIAC1CgAhvwYCAIMKACHABiAAtQoAIcEGAgCDCgAhwgYCAIMKACEgBQAAmREAIAcAAJoRACAIAACcEQAgHQAApREAICUAAKMRACAmAACYEQAgJwAAmxEAICgAAJ0RACApAACeEQAgKgAAnxEAICsAAKARACAsAAChEQAgLQAAohEAIC4AAKQRACAvAACmEQAgMAAApxEAIDEAAKgRACAyAACpEQAgMwAAqhEAIDUAAKwRACA2AACtEQAgNwAArhEAIIMFAgAAAAGGBgEAAAABhwYBAAAAAbwGIAAAAAG9BgIAAAABvgYgAAAAAb8GAgAAAAHABiAAAAABwQYCAAAAAcIGAgAAAAECAAAAAQAgRAAA5RMAIAMAAAANACBEAADlEwAgRQAA6RMAICIAAAANACAFAACqDwAgBwAAqw8AIAgAAK0PACAdAAC2DwAgJQAAtA8AICYAAKkPACAnAACsDwAgKAAArg8AICkAAK8PACAqAACwDwAgKwAAsQ8AICwAALIPACAtAACzDwAgLgAAtQ8AIC8AALcPACAwAAC4DwAgMQAAuQ8AIDIAALoPACAzAAC7DwAgNQAAvQ8AIDYAAL4PACA3AAC_DwAgPQAA6RMAIIMFAgCDCgAhhgYBAIIKACGHBgEAggoAIbwGIAC1CgAhvQYCAIMKACG-BiAAtQoAIb8GAgCDCgAhwAYgALUKACHBBgIAgwoAIcIGAgCDCgAhIAUAAKoPACAHAACrDwAgCAAArQ8AIB0AALYPACAlAAC0DwAgJgAAqQ8AICcAAKwPACAoAACuDwAgKQAArw8AICoAALAPACArAACxDwAgLAAAsg8AIC0AALMPACAuAAC1DwAgLwAAtw8AIDAAALgPACAxAAC5DwAgMgAAug8AIDMAALsPACA1AAC9DwAgNgAAvg8AIDcAAL8PACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_BgIAgwoAIcAGIAC1CgAhwQYCAIMKACHCBgIAgwoAISAFAACZEQAgBwAAmhEAIAgAAJwRACAdAAClEQAgJQAAoxEAICYAAJgRACAnAACbEQAgKAAAnREAICkAAJ4RACAqAACfEQAgKwAAoBEAICwAAKERACAtAACiEQAgLgAApBEAIC8AAKYRACAwAACnEQAgMQAAqBEAIDIAAKkRACA0AACrEQAgNQAArBEAIDYAAK0RACA3AACuEQAggwUCAAAAAYYGAQAAAAGHBgEAAAABvAYgAAAAAb0GAgAAAAG-BiAAAAABvwYCAAAAAcAGIAAAAAHBBgIAAAABwgYCAAAAAQIAAAABACBEAADqEwAgAwAAAA0AIEQAAOoTACBFAADuEwAgIgAAAA0AIAUAAKoPACAHAACrDwAgCAAArQ8AIB0AALYPACAlAAC0DwAgJgAAqQ8AICcAAKwPACAoAACuDwAgKQAArw8AICoAALAPACArAACxDwAgLAAAsg8AIC0AALMPACAuAAC1DwAgLwAAtw8AIDAAALgPACAxAAC5DwAgMgAAug8AIDQAALwPACA1AAC9DwAgNgAAvg8AIDcAAL8PACA9AADuEwAggwUCAIMKACGGBgEAggoAIYcGAQCCCgAhvAYgALUKACG9BgIAgwoAIb4GIAC1CgAhvwYCAIMKACHABiAAtQoAIcEGAgCDCgAhwgYCAIMKACEgBQAAqg8AIAcAAKsPACAIAACtDwAgHQAAtg8AICUAALQPACAmAACpDwAgJwAArA8AICgAAK4PACApAACvDwAgKgAAsA8AICsAALEPACAsAACyDwAgLQAAsw8AIC4AALUPACAvAAC3DwAgMAAAuA8AIDEAALkPACAyAAC6DwAgNAAAvA8AIDUAAL0PACA2AAC-DwAgNwAAvw8AIIMFAgCDCgAhhgYBAIIKACGHBgEAggoAIbwGIAC1CgAhvQYCAIMKACG-BiAAtQoAIb8GAgCDCgAhwAYgALUKACHBBgIAgwoAIcIGAgCDCgAhIAUAAJkRACAHAACaEQAgCAAAnBEAIB0AAKURACAlAACjEQAgJgAAmBEAICcAAJsRACAoAACdEQAgKQAAnhEAICoAAJ8RACArAACgEQAgLAAAoREAIC0AAKIRACAuAACkEQAgLwAAphEAIDAAAKcRACAxAACoEQAgMgAAqREAIDMAAKoRACA0AACrEQAgNgAArREAIDcAAK4RACCDBQIAAAABhgYBAAAAAYcGAQAAAAG8BiAAAAABvQYCAAAAAb4GIAAAAAG_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-RMAIAMAAAANACBEAAD5EwAgRQAA_RMAICIAAAANACAFAACqDwAgBwAAqw8AIAgAAK0PACAdAAC2DwAgJQAAtA8AICYAAKkPACAnAACsDwAgKAAArg8AICkAAK8PACAqAACwDwAgKwAAsQ8AICwAALIPACAtAACzDwAgLgAAtQ8AIC8AALcPACAwAAC4DwAgMQAAuQ8AIDIAALoPACAzAAC7DwAgNAAAvA8AIDUAAL0PACA3AAC_DwAgPQAA_RMAIIMFAgCDCgAhhgYBAIIKACGHBgEAggoAIbwGIAC1CgAhvQYCAIMKACG-BiAAtQoAIb8GAgCDCgAhwAYgALUKACHBBgIAgwoAIcIGAgCDCgAhIAUAAKoPACAHAACrDwAgCAAArQ8AIB0AALYPACAlAAC0DwAgJgAAqQ8AICcAAKwPACAoAACuDwAgKQAArw8AICoAALAPACArAACxDwAgLAAAsg8AIC0AALMPACAuAAC1DwAgLwAAtw8AIDAAALgPACAxAAC5DwAgMgAAug8AIDMAALsPACA0AAC8DwAgNQAAvQ8AIDcAAL8PACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_BgIAgwoAIcAGIAC1CgAhwQYCAIMKACHCBgIAgwoAIQoDAADZDQAgCAAA2g0AIBQAANsNACAWAADdDQAggwUCAAAAAYQFAgAAAAGYBUAAAAABogUCAAAAAaYGAQAAAAGnBgEAAAABAgAAAI0BACBEAAD-EwAgA4MFAgAAAAGSBQIAAAABkwUQAAAAAQMAAAAXACBEAAD-EwAgRQAAgxQAIAwAAAAXACADAACkDQAgCAAApQ0AIBQAAKYNACAWAACoDQAgPQAAgxQAIIMFAgCDCgAhhAUCAIMKACGYBUAAmAoAIaIFAgCDCgAhpgYBAIIKACGnBgEAggoAIQoDAACkDQAgCAAApQ0AIBQAAKYNACAWAACoDQAggwUCAIMKACGEBQIAgwoAIZgFQACYCgAhogUCAIMKACGmBgEAggoAIacGAQCCCgAhGAQAAKMMACAJAACiDAAgCgAApAwAIAsAAKUMACANAACmDAAgEAAApwwAIIMFAgAAAAGEBQIAAAABlAUCAAAAAZcFAQAAAAGYBUAAAAABowVAAAAAAaQFAgAAAAHTBQAAAPsFAvEFAgAAAAHyBQIAAAAB8wUQAAAAAfQFEAAAAAH1BRAAAAAB9gUQAAAAAfcFEAAAAAH4BRAAAAAB-QUQAAAAAfsFAQAAAAECAAAAHAAgRAAAhBQAIAcLAACnCgAggwUCAAAAAZQFAgAAAAGVBRAAAAABlgUQAAAAAZcFAQAAAAGYBUAAAAABAgAAADgAIEQAAIYUACADAAAAGgAgRAAAhBQAIEUAAIoUACAaAAAAGgAgBAAA7QsAIAkAAOwLACAKAADuCwAgCwAA7wsAIA0AAPALACAQAADxCwAgPQAAihQAIIMFAgCDCgAhhAUCAIMKACGUBQIA9AoAIZcFAQCXCgAhmAVAAJgKACGjBUAAmAoAIaQFAgCDCgAh0wUAAOsL-wUi8QUCAPQKACHyBQIA9AoAIfMFEACMCgAh9AUQAIwKACH1BRAAjAoAIfYFEACMCgAh9wUQAOoLACH4BRAAjAoAIfkFEACMCgAh-wUBAJcKACEYBAAA7QsAIAkAAOwLACAKAADuCwAgCwAA7wsAIA0AAPALACAQAADxCwAggwUCAIMKACGEBQIAgwoAIZQFAgD0CgAhlwUBAJcKACGYBUAAmAoAIaMFQACYCgAhpAUCAIMKACHTBQAA6wv7BSLxBQIA9AoAIfIFAgD0CgAh8wUQAIwKACH0BRAAjAoAIfUFEACMCgAh9gUQAIwKACH3BRAA6gsAIfgFEACMCgAh-QUQAIwKACH7BQEAlwoAIQMAAAA2ACBEAACGFAAgRQAAjRQAIAkAAAA2ACALAACZCgAgPQAAjRQAIIMFAgCDCgAhlAUCAIMKACGVBRAAjAoAIZYFEACMCgAhlwUBAJcKACGYBUAAmAoAIQcLAACZCgAggwUCAIMKACGUBQIAgwoAIZUFEACMCgAhlgUQAIwKACGXBQEAlwoAIZgFQACYCgAhIAUAAJkRACAHAACaEQAgCAAAnBEAIB0AAKURACAlAACjEQAgJgAAmBEAICcAAJsRACAoAACdEQAgKQAAnhEAICoAAJ8RACArAACgEQAgLAAAoREAIC0AAKIRACAuAACkEQAgLwAAphEAIDAAAKcRACAxAACoEQAgMgAAqREAIDMAAKoRACA0AACrEQAgNQAArBEAIDYAAK0RACCDBQIAAAABhgYBAAAAAYcGAQAAAAG8BiAAAAABvQYCAAAAAb4GIAAAAAG_BgIAAAABwAYgAAAAAcEGAgAAAAHCBgIAAAABAgAAAAEAIEQAAI4UACADAAAADQAgRAAAjhQAIEUAAJIUACAiAAAADQAgBQAAqg8AIAcAAKsPACAIAACtDwAgHQAAtg8AICUAALQPACAmAACpDwAgJwAArA8AICgAAK4PACApAACvDwAgKgAAsA8AICsAALEPACAsAACyDwAgLQAAsw8AIC4AALUPACAvAAC3DwAgMAAAuA8AIDEAALkPACAyAAC6DwAgMwAAuw8AIDQAALwPACA1AAC9DwAgNgAAvg8AID0AAJIUACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_BgIAgwoAIcAGIAC1CgAhwQYCAIMKACHCBgIAgwoAISAFAACqDwAgBwAAqw8AIAgAAK0PACAdAAC2DwAgJQAAtA8AICYAAKkPACAnAACsDwAgKAAArg8AICkAAK8PACAqAACwDwAgKwAAsQ8AICwAALIPACAtAACzDwAgLgAAtQ8AIC8AALcPACAwAAC4DwAgMQAAuQ8AIDIAALoPACAzAAC7DwAgNAAAvA8AIDUAAL0PACA2AAC-DwAggwUCAIMKACGGBgEAggoAIYcGAQCCCgAhvAYgALUKACG9BgIAgwoAIb4GIAC1CgAhvwYCAIMKACHABiAAtQoAIcEGAgCDCgAhwgYCAIMKACEYBYgBAweLAQQIjwEFDgAvHacBGSWlARwmBgInjgEGKJMBIimXASMqmAEHK5wBJCygASUtpAEmLqYBHS-pAScwqwEoMa0BKTKvASozsQErNLUBLDW4ARs2vAEtN74BLgsDAAEFCgMIVwUMYQcOACEYVg8cWxYdZRkeahofbBslcBwHAwABBAACBwwECE4FDgAVGE0PGVIUBAMOAQUPAwgTBQ4AEwkDFQEEAAIGFAMHFgQLGAYMSAcOABIQQwkXRxEGAwABCBkFDgAQFB0HFTkMFj0PCAQAAgkeBQofAQsgBg0kCA4ADhAsCRMwCwIMAAcPAAkECSUFDCYHDScIDgAKAQ0oAAIMAAcSAAwDCwAGDgANETELAREyAAMNMwAQNAATNQADBAACBgADCz4GBAg_ABRAABVBABZCAAEJAAUCEEkAF0oAAgVLAAhMAAEGAAMDCFQAGFMAGVUAAwQAAg4AGBtfFwEaABYBG2AAAgNmAQQAAgEEAAICAwABBAACBgMAAQRzAg4AIBl3HSBxHCFyHAQDAAEOAB8ieBwkfB4BIwAdASR9AAIZfwAhfgAIBYABAAiCAQAMhAEAGIEBAByDAQAdhQEAHoYBACWHAQABAwABAQMAAQEDAAEBAwABAQMAAQEDAAEBAwABAQMAAQEDAAEBAwABAQMAAQEDAAEBAwABEQXAAQAHwQEACMMBAB3MAQAlygEAJr8BACfCAQAoxAEAKcUBACrGAQArxwEALMgBAC3JAQAuywEANM0BADXOAQA2zwEAAAAABQ4ANEoANUsANkwAN00AOAAAAAAABQ4ANEoANUsANkwAN00AOAEDAAEBAwABBQ4APUoAPksAP0wAQE0AQQAAAAAABQ4APUoAPksAP0wAQE0AQQMDAAEEAAIHhgIEAwMAAQQAAgeMAgQFDgBGSgBHSwBITABJTQBKAAAAAAAFDgBGSgBHSwBITABJTQBKAQYAAwEGAAMFDgBPSgBQSwBRTABSTQBTAAAAAAAFDgBPSgBQSwBRTABSTQBTAQO0AgEBA7oCAQUOAFhKAFlLAFpMAFtNAFwAAAAAAAUOAFhKAFlLAFpMAFtNAFwBAwABAQMAAQUOAGFKAGJLAGNMAGRNAGUAAAAAAAUOAGFKAGJLAGNMAGRNAGUDBAACBgADC-ICBgMEAAIGAAML6AIGBQ4AakoAa0sAbEwAbU0AbgAAAAAABQ4AakoAa0sAbEwAbU0AbgUD-wIBBAACBvoCAwf8AgQL_QIGBQOEAwEEAAIGgwMDB4UDBAuGAwYFDgBzSgB0SwB1TAB2TQB3AAAAAAAFDgBzSgB0SwB1TAB2TQB3AgmYAwUMmQMHAgmfAwUMoAMHBQ4AfEoAfUsAfkwAf00AgAEAAAAAAAUOAHxKAH1LAH5MAH9NAIABAQkABQEJAAUFDgCFAUoAhgFLAIcBTACIAU0AiQEAAAAAAAUOAIUBSgCGAUsAhwFMAIgBTQCJAQEDAAEBAwABBQ4AjgFKAI8BSwCQAUwAkQFNAJIBAAAAAAAFDgCOAUoAjwFLAJABTACRAU0AkgEBAwABAQMAAQUOAJcBSgCYAUsAmQFMAJoBTQCbAQAAAAAABQ4AlwFKAJgBSwCZAUwAmgFNAJsBAQQAAgEEAAIFDgCgAUoAoQFLAKIBTACjAU0ApAEAAAAAAAUOAKABSgChAUsAogFMAKMBTQCkAQEaABYBGgAWBQ4AqQFKAKoBSwCrAUwArAFNAK0BAAAAAAAFDgCpAUoAqgFLAKsBTACsAU0ArQEEBAACCaAEBQqhBAELogQGBAQAAgmoBAUKqQQBC6oEBgUOALIBSgCzAUsAtAFMALUBTQC2AQAAAAAABQ4AsgFKALMBSwC0AUwAtQFNALYBAgwABw8ACQIMAAcPAAkFDgC7AUoAvAFLAL0BTAC-AU0AvwEAAAAAAAUOALsBSgC8AUsAvQFMAL4BTQC_AQEDAAEBAwABBQ4AxAFKAMUBSwDGAUwAxwFNAMgBAAAAAAAFDgDEAUoAxQFLAMYBTADHAU0AyAEBAwABAQMAAQUOAM0BSgDOAUsAzwFMANABTQDRAQAAAAAABQ4AzQFKAM4BSwDPAUwA0AFNANEBAQMAAQEDAAEFDgDWAUoA1wFLANgBTADZAU0A2gEAAAAAAAUOANYBSgDXAUsA2AFMANkBTQDaAQAAAAUOAOABSgDhAUsA4gFMAOMBTQDkAQAAAAAABQ4A4AFKAOEBSwDiAUwA4wFNAOQBAwMAAQSuBQIgrQUcAwMAAQS1BQIgtAUcBQ4A6QFKAOoBSwDrAUwA7AFNAO0BAAAAAAAFDgDpAUoA6gFLAOsBTADsAU0A7QECAwABIscFHAIDAAEizQUcBQ4A8gFKAPMBSwD0AUwA9QFNAPYBAAAAAAAFDgDyAUoA8wFLAPQBTAD1AU0A9gEBIwAdASMAHQUOAPsBSgD8AUsA_QFMAP4BTQD_AQAAAAAABQ4A-wFKAPwBSwD9AUwA_gFNAP8BAgP1BQEEAAICA_sFAQQAAgUOAIQCSgCFAksAhgJMAIcCTQCIAgAAAAAABQ4AhAJKAIUCSwCGAkwAhwJNAIgCAQQAAgEEAAIFDgCNAkoAjgJLAI8CTACQAk0AkQIAAAAAAAUOAI0CSgCOAksAjwJMAJACTQCRAgEDAAEBAwABBQ4AlgJKAJcCSwCYAkwAmQJNAJoCAAAAAAAFDgCWAkoAlwJLAJgCTACZAk0AmgIBAwABAQMAAQUOAJ8CSgCgAksAoQJMAKICTQCjAgAAAAAABQ4AnwJKAKACSwChAkwAogJNAKMCAQMAAQEDAAEFDgCoAkoAqQJLAKoCTACrAk0ArAIAAAAAAAUOAKgCSgCpAksAqgJMAKsCTQCsAgEDAAEBAwABBQ4AsQJKALICSwCzAkwAtAJNALUCAAAAAAAFDgCxAkoAsgJLALMCTAC0Ak0AtQIBAwABAQMAAQUOALoCSgC7AksAvAJMAL0CTQC-AgAAAAAABQ4AugJKALsCSwC8AkwAvQJNAL4CAQMAAQEDAAEFDgDDAkoAxAJLAMUCTADGAk0AxwIAAAAAAAUOAMMCSgDEAksAxQJMAMYCTQDHAgIDAAEEAAICAwABBAACBQ4AzAJKAM0CSwDOAkwAzwJNANACAAAAAAAFDgDMAkoAzQJLAM4CTADPAk0A0AIBAwABAQMAAQUOANUCSgDWAksA1wJMANgCTQDZAgAAAAAABQ4A1QJKANYCSwDXAkwA2AJNANkCAQsABgELAAYFDgDeAkoA3wJLAOACTADhAk0A4gIAAAAAAAUOAN4CSgDfAksA4AJMAOECTQDiAgIMAAcSAAwCDAAHEgAMBQ4A5wJKAOgCSwDpAkwA6gJNAOsCAAAAAAAFDgDnAkoA6AJLAOkCTADqAk0A6wIBAwABAQMAAQUOAPACSgDxAksA8gJMAPMCTQD0AgAAAAAABQ4A8AJKAPECSwDyAkwA8wJNAPQCOAIBOdABATrSAQE70wEBPNQBAT7WAQE_2AEwQNkBMUHbAQFC3QEwQ94BMkbfAQFH4AEBSOEBME7kATNP5QE5UOYBAlHnAQJS6AECU-kBAlTqAQJV7AECVu4BMFfvATpY8QECWfMBMFr0ATtb9QECXPYBAl33ATBe-gE8X_sBQmD8AQNh_QEDYv4BA2P_AQNkgAIDZYICA2aEAjBnhQJDaIgCA2mKAjBqiwJEa40CA2yOAgNtjwIwbpICRW-TAktwlAIUcZUCFHKWAhRzlwIUdJgCFHWaAhR2nAIwd50CTHifAhR5oQIweqICTXujAhR8pAIUfaUCMH6oAk5_qQJUgAGqAgSBAasCBIIBrAIEgwGtAgSEAa4CBIUBsAIEhgGyAjCHAbMCVYgBtgIEiQG4AjCKAbkCVosBuwIEjAG8AgSNAb0CMI4BwAJXjwHBAl2QAcICBpEBwwIGkgHEAgaTAcUCBpQBxgIGlQHIAgaWAcoCMJcBywJemAHNAgaZAc8CMJoB0AJfmwHRAgacAdICBp0B0wIwngHWAmCfAdcCZqAB2AIPoQHZAg-iAdoCD6MB2wIPpAHcAg-lAd4CD6YB4AIwpwHhAmeoAeQCD6kB5gIwqgHnAmirAekCD6wB6gIPrQHrAjCuAe4Caa8B7wJvsAHwAgWxAfECBbIB8gIFswHzAgW0AfQCBbUB9gIFtgH4AjC3AfkCcLgB_wIFuQGBAzC6AYIDcbsBhwMFvAGIAwW9AYkDML4BjANyvwGNA3jAAY4DCcEBjwMJwgGQAwnDAZEDCcQBkgMJxQGUAwnGAZYDMMcBlwN5yAGbAwnJAZ0DMMoBngN6ywGhAwnMAaIDCc0BowMwzgGmA3vPAacDgQHQAagDEdEBqQMR0gGqAxHTAasDEdQBrAMR1QGuAxHWAbADMNcBsQOCAdgBswMR2QG1AzDaAbYDgwHbAbcDEdwBuAMR3QG5AzDeAbwDhAHfAb0DigHgAb4DIuEBvwMi4gHAAyLjAcEDIuQBwgMi5QHEAyLmAcYDMOcBxwOLAegByQMi6QHLAzDqAcwDjAHrAc0DIuwBzgMi7QHPAzDuAdIDjQHvAdMDkwHwAdQDI_EB1QMj8gHWAyPzAdcDI_QB2AMj9QHaAyP2AdwDMPcB3QOUAfgB3wMj-QHhAzD6AeIDlQH7AeMDI_wB5AMj_QHlAzD-AegDlgH_AekDnAGAAuoDFoEC6wMWggLsAxaDAu0DFoQC7gMWhQLwAxaGAvIDMIcC8wOdAYgC9QMWiQL3AzCKAvgDngGLAvkDFowC-gMWjQL7AzCOAv4DnwGPAv8DpQGQAoAEF5ECgQQXkgKCBBeTAoMEF5QChAQXlQKGBBeWAogEMJcCiQSmAZgCiwQXmQKNBDCaAo4EpwGbAo8EF5wCkAQXnQKRBDCeApQEqAGfApUErgGgApYEB6EClwQHogKYBAejApkEB6QCmgQHpQKcBAemAp4EMKcCnwSvAagCpAQHqQKmBDCqAqcEsAGrAqsEB6wCrAQHrQKtBDCuArAEsQGvArEEtwGwArIECLECswQIsgK0BAizArUECLQCtgQItQK4BAi2AroEMLcCuwS4AbgCvQQIuQK_BDC6AsAEuQG7AsEECLwCwgQIvQLDBDC-AsYEugG_AscEwAHAAsgEJMECyQQkwgLKBCTDAssEJMQCzAQkxQLOBCTGAtAEMMcC0QTBAcgC0wQkyQLVBDDKAtYEwgHLAtcEJMwC2AQkzQLZBDDOAtwEwwHPAt0EyQHQAt4EJdEC3wQl0gLgBCXTAuEEJdQC4gQl1QLkBCXWAuYEMNcC5wTKAdgC6QQl2QLrBDDaAuwEywHbAu0EJdwC7gQl3QLvBDDeAvIEzAHfAvME0gHgAvQEJuEC9QQm4gL2BCbjAvcEJuQC-AQm5QL6BCbmAvwEMOcC_QTTAegC_wQm6QKBBTDqAoIF1AHrAoMFJuwChAUm7QKFBTDuAogF1QHvAokF2wHwAosF3AHxAowF3AHyAo8F3AHzApAF3AH0ApEF3AH1ApMF3AH2ApUFMPcClgXdAfgCmAXcAfkCmgUw-gKbBd4B-wKcBdwB_AKdBdwB_QKeBTD-AqEF3wH_AqIF5QGAA6MFHIEDpAUcggOlBRyDA6YFHIQDpwUchQOpBRyGA6sFMIcDrAXmAYgDsAUciQOyBTCKA7MF5wGLA7YFHIwDtwUcjQO4BTCOA7sF6AGPA7wF7gGQA70FHZEDvgUdkgO_BR2TA8AFHZQDwQUdlQPDBR2WA8UFMJcDxgXvAZgDyQUdmQPLBTCaA8wF8AGbA84FHZwDzwUdnQPQBTCeA9MF8QGfA9QF9wGgA9UFHqED1gUeogPXBR6jA9gFHqQD2QUepQPbBR6mA90FMKcD3gX4AagD4AUeqQPiBTCqA-MF-QGrA-QFHqwD5QUerQPmBTCuA-kF-gGvA-oFgAKwA-sFGbED7AUZsgPtBRmzA-4FGbQD7wUZtQPxBRm2A_MFMLcD9AWBArgD9wUZuQP5BTC6A_oFggK7A_wFGbwD_QUZvQP-BTC-A4EGgwK_A4IGiQLAA4MGGsEDhAYawgOFBhrDA4YGGsQDhwYaxQOJBhrGA4sGMMcDjAaKAsgDjgYayQOQBjDKA5EGiwLLA5IGGswDkwYazQOUBjDOA5cGjALPA5gGkgLQA5oGJ9EDmwYn0gOdBifTA54GJ9QDnwYn1QOhBifWA6MGMNcDpAaTAtgDpgYn2QOoBjDaA6kGlALbA6oGJ9wDqwYn3QOsBjDeA68GlQLfA7AGmwLgA7IGKOEDswYo4gO1BijjA7YGKOQDtwYo5QO5BijmA7sGMOcDvAacAugDvgYo6QPABjDqA8EGnQLrA8IGKOwDwwYo7QPEBjDuA8cGngLvA8gGpALwA8oGKfEDywYp8gPNBinzA84GKfQDzwYp9QPRBin2A9MGMPcD1AalAvgD1gYp-QPYBjD6A9kGpgL7A9oGKfwD2wYp_QPcBjD-A98GpwL_A-AGrQKABOIGKoEE4wYqggTlBiqDBOYGKoQE5wYqhQTpBiqGBOsGMIcE7AauAogE7gYqiQTwBjCKBPEGrwKLBPIGKowE8wYqjQT0BjCOBPcGsAKPBPgGtgKQBPkGLJEE-gYskgT7BiyTBPwGLJQE_QYslQT_BiyWBIEHMJcEgge3ApgEhAcsmQSGBzCaBIcHuAKbBIgHLJwEiQcsnQSKBzCeBI0HuQKfBI4HvwKgBJAHK6EEkQcrogSTByujBJQHK6QElQcrpQSXByumBJkHMKcEmgfAAqgEnAcrqQSeBzCqBJ8HwQKrBKAHK6wEoQcrrQSiBzCuBKUHwgKvBKYHyAKwBKcHG7EEqAcbsgSpBxuzBKoHG7QEqwcbtQStBxu2BK8HMLcEsAfJArgEsgcbuQS0BzC6BLUHygK7BLYHG7wEtwcbvQS4BzC-BLsHywK_BLwH0QLABL0HLcEEvgctwgS_By3DBMAHLcQEwQctxQTDBy3GBMUHMMcExgfSAsgEyActyQTKBzDKBMsH0wLLBMwHLcwEzQctzQTOBzDOBNEH1ALPBNIH2gLQBNMHDNEE1AcM0gTVBwzTBNYHDNQE1wcM1QTZBwzWBNsHMNcE3AfbAtgE3gcM2QTgBzDaBOEH3ALbBOIHDNwE4wcM3QTkBzDeBOcH3QLfBOgH4wLgBOkHC-EE6gcL4gTrBwvjBOwHC-QE7QcL5QTvBwvmBPEHMOcE8gfkAugE9AcL6QT2BzDqBPcH5QLrBPgHC-wE-QcL7QT6BzDuBP0H5gLvBP4H7ALwBIAILvEEgQgu8gSDCC7zBIQILvQEhQgu9QSHCC72BIkIMPcEigjtAvgEjAgu-QSOCDD6BI8I7gL7BJAILvwEkQgu_QSSCDD-BJUI7wL_BJYI9QI" + graph: "qhT1AsAEJAUAAK0JACAHAADqCQAgCAAAqQkAIB0AAPEJACAlAAC6CQAgJgAA6QkAICcAAOsJACAoAADsCQAgKQAA7QkAICoAAKoJACArAADuCQAgLAAA7wkAIC0AAPAJACAuAAC8CQAgLwAA8gkAIDAAAPMJACAxAAD0CQAgMgAA9QkAIDMAAPYJACA0AAD3CQAgNQAA-AkAIDYAAPkJACA3AAD6CQAggAUAAOgJADCBBQAADQAQggUAAOgJADCDBQIAAAABhgYBAAAAAYcGAQClCAAhvAYgAMUIACG9BgIA5wgAIb4GIADFCAAhvwYCAOcIACHABiAAxQgAIcEGAgDnCAAhwgYCAOcIACEBAAAAAQAgIgMAAKYIACAFAACtCQAgCAAAqQkAIAwAAKoJACAYAACsCQAgHAAA_wkAIB0AAPEJACAeAACACgAgHwAAgQoAICUAALoJACCABQAA_gkAMIEFAAADABCCBQAA_gkAMIMFAgDnCAAhhAUCAOcIACGYBUAA6AgAIaMFQADoCAAhsQUBAMAIACG0BQEAwAgAIbYFAQDACAAh0wUAAPwJsQYilQZAAOkIACGbBgEAwAgAIakGAQClCAAhsgYBAKUIACGzBgEApQgAIbQGAQClCAAhtQYBAMAIACG2BgEAwAgAIbcGAQDACAAhuAYBAMAIACG5BgEAwAgAIboGAQDACAAhuwYBAMAIACEWAwAAiwoAIAUAAMIRACAIAADFEQAgDAAAyBEAIBgAANoRACAcAADsEQAgHQAAzhEAIB4AAO0RACAfAADuEQAgJQAAzBEAILEFAACWCgAgtAUAAJYKACC2BQAAlgoAIJUGAACWCgAgmwYAAJYKACC1BgAAlgoAILYGAACWCgAgtwYAAJYKACC4BgAAlgoAILkGAACWCgAgugYAAJYKACC7BgAAlgoAICIDAACmCAAgBQAArQkAIAgAAKkJACAMAACqCQAgGAAArAkAIBwAAP8JACAdAADxCQAgHgAAgAoAIB8AAIEKACAlAAC6CQAggAUAAP4JADCBBQAAAwAQggUAAP4JADCDBQIAAAABhAUCAOcIACGYBUAA6AgAIaMFQADoCAAhsQUBAMAIACG0BQEAwAgAIbYFAQDACAAh0wUAAPwJsQYilQZAAOkIACGbBgEAwAgAIakGAQClCAAhsgYBAKUIACGzBgEApQgAIbQGAQClCAAhtQYBAMAIACG2BgEAwAgAIbcGAQDACAAhuAYBAMAIACG5BgEAwAgAIboGAQDACAAhuwYBAMAIACEDAAAAAwAgAQAABAAwAgAABQAgGwMAAKYIACAEAACeCQAgBwAA5gkAIAgAAKkJACALAADOCQAgGAAArAkAIBkAAP0JACCABQAA-wkAMIEFAAAHABCCBQAA-wkAMIMFAgDnCAAhhAUCAOcIACGUBQIA6ggAIZcFAQDACAAhmAVAAOgIACGkBQIA5wgAIdMFAQClCAAh5AUBAKUIACH-BQEApQgAIZIGAgDnCAAhqgZAAOgIACGrBgEApQgAIawGAQClCAAhrQYgAMUIACGuBgEAwAgAIa8GIADFCAAhsQYAAPwJsQYiCgMAAIsKACAEAADYEQAgBwAA6REAIAgAAMURACALAADiEQAgGAAA2hEAIBkAAOsRACCUBQAAlgoAIJcFAACWCgAgrgYAAJYKACAbAwAApggAIAQAAJ4JACAHAADmCQAgCAAAqQkAIAsAAM4JACAYAACsCQAgGQAA_QkAIIAFAAD7CQAwgQUAAAcAEIIFAAD7CQAwgwUCAAAAAYQFAgDnCAAhlAUCAOoIACGXBQEAwAgAIZgFQADoCAAhpAUCAOcIACHTBQEApQgAIeQFAQClCAAh_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_AUAAbIJACH9BQIA5wgAIQEaAADeEQAgCRoAAMMJACCABQAAwgkAMIEFAABfABCCBQAAwgkAMIMFAgAAAAHIBQEApQgAIc0FQADoCAAh_AUAAbIJACH9BQIA5wgAIQMAAABfACABAABgADACAABhACABAAAAXwAgAwAAABoAIAEAABsAMAIAABwAIA8DAACvCQAgBAAAngkAIIAFAAC-CQAwgQUAAGUAEIIFAAC-CQAwgwUCAOcIACGEBQIA6ggAIZgFQADoCAAhpAUCAOcIACHPBQAAvwnPBSLRBQAAwAnRBSLTBQAAwQnTBSLUBQEAwAgAIdUFAgDqCAAh1gUBAMAIACEGAwAAiwoAIAQAANgRACCEBQAAlgoAINQFAACWCgAg1QUAAJYKACDWBQAAlgoAIA8DAACvCQAgBAAAngkAIIAFAAC-CQAwgQUAAGUAEIIFAAC-CQAwgwUCAAAAAYQFAgDqCAAhmAVAAOgIACGkBQIA5wgAIc8FAAC_Cc8FItEFAADACdEFItMFAADBCdMFItQFAQDACAAh1QUCAOoIACHWBQEAwAgAIQMAAABlACABAABmADACAABnACABAAAADQAgDQQAAJ4JACCABQAAvQkAMIEFAABqABCCBQAAvQkAMIMFAgDnCAAhowVAAOgIACGkBQIA5wgAIcgFAQClCAAhyQUBAKUIACHKBQEApQgAIcsFBAC1CQAhzAUBAKUIACHNBUAA6AgAIQEEAADYEQAgDQQAAJ4JACCABQAAvQkAMIEFAABqABCCBQAAvQkAMIMFAgAAAAGjBUAA6AgAIaQFAgDnCAAhyAUBAKUIACHJBQEApQgAIcoFAQClCAAhywUEALUJACHMBQEApQgAIc0FQADoCAAhAwAAAGoAIAEAAGsAMAIAAGwAIAsDAACmCAAgBAAAngkAIIAFAACdCQAwgQUAAG4AEIIFAACdCQAwgwUCAOcIACGEBQIA5wgAIaMFQADoCAAhpAUCAOcIACGlBQEApQgAIaYFIADFCAAhAQAAAG4AIA8DAACmCAAgBAAAuwkAIBkAALwJACAgAAC2CQAgIQAAugkAIIAFAAC5CQAwgQUAAHAAEIIFAAC5CQAwgwUCAOcIACGEBQIA5wgAIZgFQADoCAAhmQUBAKUIACGjBUAA6AgAIaQFAgDqCAAh3QUCAOoIACEHAwAAiwoAIAQAANgRACAZAADNEQAgIAAA3BEAICEAAMwRACCkBQAAlgoAIN0FAACWCgAgEAMAAKYIACAEAAC7CQAgGQAAvAkAICAAALYJACAhAAC6CQAggAUAALkJADCBBQAAcAAQggUAALkJADCDBQIAAAABhAUCAOcIACGYBUAA6AgAIZkFAQClCAAhowVAAOgIACGkBQIA6ggAId0FAgDqCAAhyQYAALgJACADAAAAcAAgAQAAcQAwAgAAcgAgAQAAAHAAIAMAAABwACABAABxADACAAByACABAAAAAwAgEQMAAKYIACAiAAC2CQAgJAAAtwkAIIAFAAC0CQAwgQUAAHcAEIIFAAC0CQAwgwUCAOcIACGEBQIA5wgAIZgFQADoCAAhmQUBAKUIACGjBUAA6AgAIcoFAQDACAAhywUEALUJACHZBQIA6ggAIdoFIADFCAAh2wUCAOoIACHcBQEAwAgAIQcDAACLCgAgIgAA3BEAICQAAN0RACDKBQAAlgoAINkFAACWCgAg2wUAAJYKACDcBQAAlgoAIBEDAACmCAAgIgAAtgkAICQAALcJACCABQAAtAkAMIEFAAB3ABCCBQAAtAkAMIMFAgAAAAGEBQIA5wgAIZgFQADoCAAhmQUBAKUIACGjBUAA6AgAIcoFAQDACAAhywUEALUJACHZBQIA6ggAIdoFIADFCAAh2wUCAOoIACHcBQEAwAgAIQMAAAB3ACABAAB4ADACAAB5ACABAAAAcAAgCSMAALMJACA9AAGyCQAhgAUAALEJADCBBQAAfAAQggUAALEJADCDBQIA5wgAIZgFQADoCAAh1wUCAOcIACHYBQIA5wgAIQEjAADbEQAgCiMAALMJACA9AAGyCQAhgAUAALEJADCBBQAAfAAQggUAALEJADCDBQIAAAABmAVAAOgIACHXBQIA5wgAIdgFAgDnCAAhyAYAALAJACADAAAAfAAgAQAAfQAwAgAAfgAgAQAAAHwAIAEAAABwACABAAAAdwAgAQAAAAcAIAEAAAA6ACABAAAAEAAgAQAAAFsAIAEAAAAaACABAAAAZQAgAQAAAGoAIAEAAABwACADAAAABwAgAQAACAAwAgAACQAgBQMAAIsKACAFAADCEQAgCAAAxREAILEFAACWCgAgqQYAAJYKACANAwAArwkAIAUAAK0JACAIAACpCQAggAUAAK4JADCBBQAACwAQggUAAK4JADCDBQIAAAABhAUCAOcIACGYBUAA6AgAIZkFAQClCAAhsQUBAMAIACGoBgEApQgAIakGAQDACAAhAwAAAAsAIAEAAIwBADACAACNAQAgBgMAAIsKACAFAADCEQAgCAAAxREAIBQAAMgRACAVAADZEQAgFgAA2hEAIBADAACmCAAgBQAArQkAIAgAAKkJACAUAACqCQAgFQAAqwkAIBYAAKwJACCABQAAqAkAMIEFAAAXABCCBQAAqAkAMIMFAgAAAAGEBQIA5wgAIZgFQADoCAAhogUCAOcIACGmBgEApQgAIacGAQClCAAhxAYAAKcJACADAAAAFwAgAQAAjwEAMAIAAJABACADAAAAEAAgAQAAEQAwAgAAEgAgCQMAAKYIACCABQAApgkAMIEFAACTAQAQggUAAKYJADCDBQIA5wgAIYQFAgDnCAAhhQYBAKUIACGGBgEApQgAIYcGAQClCAAhAQMAAIsKACAKAwAApggAIIAFAACmCQAwgQUAAJMBABCCBQAApgkAMIMFAgAAAAGEBQIA5wgAIYUGAQClCAAhhgYBAKUIACGHBgEApQgAIcMGAAClCQAgAwAAAJMBACABAACUAQAwAgAAlQEAIAoDAACmCAAggAUAAKQJADCBBQAAlwEAEIIFAACkCQAwgwUCAOcIACGEBQIA5wgAIYEGAQClCAAhggYBAKUIACGDBgEApQgAIYQGAQClCAAhAQMAAIsKACAKAwAApggAIIAFAACkCQAwgQUAAJcBABCCBQAApAkAMIMFAgAAAAGEBQIA5wgAIYEGAQClCAAhggYBAKUIACGDBgEApQgAIYQGAQClCAAhAwAAAJcBACABAACYAQAwAgAAmQEAIAMAAAAaACABAAAbADACAAAcACAHAwAApggAIIAFAACjCQAwgQUAAJwBABCCBQAAowkAMIMFAgDnCAAhhAUCAOcIACGYBUAA6AgAIQEDAACLCgAgBwMAAKYIACCABQAAowkAMIEFAACcAQAQggUAAKMJADCDBQIAAAABhAUCAOcIACGYBUAA6AgAIQMAAACcAQAgAQAAnQEAMAIAAJ4BACAJAwAApggAIIAFAACiCQAwgQUAAKABABCCBQAAogkAMIMFAgDnCAAhhAUCAOcIACGYBUAA6AgAIecFAQClCAAh6AUgAMUIACEBAwAAiwoAIAkDAACmCAAggAUAAKIJADCBBQAAoAEAEIIFAACiCQAwgwUCAAAAAYQFAgDnCAAhmAVAAOgIACHnBQEApQgAIegFIADFCAAhAwAAAKABACABAAChAQAwAgAAogEAIAoDAACmCAAggAUAAKAJADCBBQAApAEAEIIFAACgCQAwgwUCAOcIACGEBQIA5wgAIZgFQADoCAAh5AUAAKEJ5AUi5QUBAKUIACHmBSAAxQgAIQEDAACLCgAgCgMAAKYIACCABQAAoAkAMIEFAACkAQAQggUAAKAJADCDBQIAAAABhAUCAOcIACGYBUAA6AgAIeQFAAChCeQFIuUFAQClCAAh5gUgAMUIACEDAAAApAEAIAEAAKUBADACAACmAQAgAwAAAHAAIAEAAHEAMAIAAHIAIAMAAAB3ACABAAB4ADACAAB5ACADAAAAZQAgAQAAZgAwAgAAZwAgCwMAAKYIACCABQAAyQgAMIEFAACrAQAQggUAAMkIADCDBQIA5wgAIYQFAgDnCAAhrQUBAKUIACHEBQEApQgAIcUFAQClCAAhxgUBAMAIACHHBQAAyggAIAEAAACrAQAgEwMAAKYIACCABQAAxAgAMIEFAACtAQAQggUAAMQIADCDBQIA5wgAIYQFAgDnCAAhtwUBAKUIACG4BSAAxQgAIbkFAQClCAAhugUgAMUIACG7BQEApQgAIbwFIADFCAAhvQUBAKUIACG-BQEApQgAIb8FAQClCAAhwAUBAKUIACHBBSAAxQgAIcIFIADFCAAhwwUgAMUIACEBAAAArQEAIAcDAACmCAAgPQAAvAgAIIAFAADCCAAwgQUAAK8BABCCBQAAwggAMIMFAgDnCAAhhAUCAOcIACEBAAAArwEAIBADAACmCAAggAUAAL8IADCBBQAAsQEAEIIFAAC_CAAwgwUCAOcIACGEBQIA5wgAIa0FAQDACAAhrgUBAMAIACGvBQEAwAgAIbAFAQDACAAhsQUBAMAIACGyBQEAwAgAIbMFAQDACAAhtAUBAMAIACG1BQEAwAgAIbYFAQDACAAhAQAAALEBACAHAwAApggAID0AALwIACCABQAAuwgAMIEFAACzAQAQggUAALsIADCDBQIA5wgAIYQFAgDnCAAhAQAAALMBACAJAwAApggAIIAFAACfCQAwgQUAALUBABCCBQAAnwkAMIMFAgDnCAAhhAUCAOcIACGYBUAA6AgAIZkFAQClCAAhrQUBAMAIACECAwAAiwoAIK0FAACWCgAgCQMAAKYIACCABQAAnwkAMIEFAAC1AQAQggUAAJ8JADCDBQIAAAABhAUCAOcIACGYBUAA6AgAIZkFAQClCAAhrQUBAMAIACEDAAAAtQEAIAEAALYBADACAAC3AQAgAgMAAIsKACAEAADYEQAgCwMAAKYIACAEAACeCQAggAUAAJ0JADCBBQAAbgAQggUAAJ0JADCDBQIAAAABhAUCAOcIACGjBUAA6AgAIaQFAgAAAAGlBQEApQgAIaYFIADFCAAhAwAAAG4AIAEAALkBADACAAC6AQAgEgMAAKYIACCABQAAnAkAMIEFAAC8AQAQggUAAJwJADCDBQIA5wgAIYQFAgDnCAAhmAVAAOgIACGZBQEApQgAIZoFAQDACAAhmwUBAMAIACGcBQEAwAgAIZ0FAQDACAAhngUBAMAIACGfBQEAwAgAIaAFAQDACAAhoQUBAMAIACGiBQIA5wgAIaMFQADoCAAhCQMAAIsKACCaBQAAlgoAIJsFAACWCgAgnAUAAJYKACCdBQAAlgoAIJ4FAACWCgAgnwUAAJYKACCgBQAAlgoAIKEFAACWCgAgEgMAAKYIACCABQAAnAkAMIEFAAC8AQAQggUAAJwJADCDBQIAAAABhAUCAOcIACGYBUAA6AgAIZkFAQClCAAhmgUBAMAIACGbBQEAwAgAIZwFAQDACAAhnQUBAMAIACGeBQEAwAgAIZ8FAQDACAAhoAUBAMAIACGhBQEAwAgAIaIFAgDnCAAhowVAAOgIACEDAAAAvAEAIAEAAL0BADACAAC-AQAgBwMAAKYIACCABQAApAgAMIEFAADAAQAQggUAAKQIADCDBQIA5wgAIYQFAgDnCAAhhQUBAKUIACEBAAAAwAEAIAEAAAADACABAAAABwAgAQAAAAsAIAEAAAAXACABAAAAEAAgAQAAAJMBACABAAAAlwEAIAEAAAAaACABAAAAnAEAIAEAAACgAQAgAQAAAKQBACABAAAAcAAgAQAAAHcAIAEAAABlACABAAAAtQEAIAEAAABuACABAAAAvAEAIAEAAAABACAXBQAAwhEAIAcAAMMRACAIAADFEQAgHQAAzhEAICUAAMwRACAmAADBEQAgJwAAxBEAICgAAMYRACApAADHEQAgKgAAyBEAICsAAMkRACAsAADKEQAgLQAAyxEAIC4AAM0RACAvAADPEQAgMAAA0BEAIDEAANERACAyAADSEQAgMwAA0xEAIDQAANQRACA1AADVEQAgNgAA1hEAIDcAANcRACADAAAADQAgAQAA1AEAMAIAAAEAIAMAAAANACABAADUAQAwAgAAAQAgAwAAAA0AIAEAANQBADACAAABACAhBQAAqxEAIAcAAKwRACAIAACuEQAgHQAAtxEAICUAALURACAmAACqEQAgJwAArREAICgAAK8RACApAACwEQAgKgAAsREAICsAALIRACAsAACzEQAgLQAAtBEAIC4AALYRACAvAAC4EQAgMAAAuREAIDEAALoRACAyAAC7EQAgMwAAvBEAIDQAAL0RACA1AAC-EQAgNgAAvxEAIDcAAMARACCDBQIAAAABhgYBAAAAAYcGAQAAAAG8BiAAAAABvQYCAAAAAb4GIAAAAAG_BgIAAAABwAYgAAAAAcEGAgAAAAHCBgIAAAABAT0AANgBACAKgwUCAAAAAYYGAQAAAAGHBgEAAAABvAYgAAAAAb0GAgAAAAG-BiAAAAABvwYCAAAAAcAGIAAAAAHBBgIAAAABwgYCAAAAAQE9AADaAQAwAT0AANoBADAhBQAAvA8AIAcAAL0PACAIAAC_DwAgHQAAyA8AICUAAMYPACAmAAC7DwAgJwAAvg8AICgAAMAPACApAADBDwAgKgAAwg8AICsAAMMPACAsAADEDwAgLQAAxQ8AIC4AAMcPACAvAADJDwAgMAAAyg8AIDEAAMsPACAyAADMDwAgMwAAzQ8AIDQAAM4PACA1AADPDwAgNgAA0A8AIDcAANEPACCDBQIAiAoAIYYGAQCHCgAhhwYBAIcKACG8BiAAugoAIb0GAgCICgAhvgYgALoKACG_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_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-wMAIAMAAABdACBEAAD0AwAgRQAA-QMAIAEAAABdACABAAAAWwAgBQ4AALUMACBKAAC2DAAgSwAAuQwAIEwAALgMACBNAAC3DAAgCIAFAAD9CAAwgQUAAIIEABCCBQAA_QgAMIMFAgCdCAAhmAVAAK0IACGkBQIAnQgAIf4FAQCeCAAhgAYAAP4IgAYiAwAAAFsAIAEAAIEEADBJAACCBAAgAwAAAFsAIAEAAFwAMAIAAF0AIAEAAABhACABAAAAYQAgAwAAAF8AIAEAAGAAMAIAAGEAIAMAAABfACABAABgADACAABhACADAAAAXwAgAQAAYAAwAgAAYQAgBhoAALQMACCDBQIAAAAByAUBAAAAAc0FQAAAAAH8BQABAAAB_QUCAAAAAQE9AACKBAAgBYMFAgAAAAHIBQEAAAABzQVAAAAAAfwFAAEAAAH9BQIAAAABAT0AAIwEADABPQAAjAQAMAYaAACzDAAggwUCAIgKACHIBQEAhwoAIc0FQACdCgAh_AUAAYMLACH9BQIAiAoAIQIAAABhACA9AACPBAAgBYMFAgCICgAhyAUBAIcKACHNBUAAnQoAIfwFAAGDCwAh_QUCAIgKACECAAAAXwAgPQAAkQQAIAIAAABfACA9AACRBAAgAwAAAGEAIEQAAIoEACBFAACPBAAgAQAAAGEAIAEAAABfACAFDgAArgwAIEoAAK8MACBLAACyDAAgTAAAsQwAIE0AALAMACAIgAUAAPwIADCBBQAAmAQAEIIFAAD8CAAwgwUCAJ0IACHIBQEAnggAIc0FQACtCAAh_AUAAd0IACH9BQIAnQgAIQMAAABfACABAACXBAAwSQAAmAQAIAMAAABfACABAABgADACAABhACABAAAAHAAgAQAAABwAIAMAAAAaACABAAAbADACAAAcACADAAAAGgAgAQAAGwAwAgAAHAAgAwAAABoAIAEAABsAMAIAABwAIBkEAACoDAAgCQAApwwAIAoAAKkMACALAACqDAAgDQAAqwwAIBAAAKwMACATAACtDAAggwUCAAAAAYQFAgAAAAGUBQIAAAABlwUBAAAAAZgFQAAAAAGjBUAAAAABpAUCAAAAAdMFAAAA-wUC8QUCAAAAAfIFAgAAAAHzBRAAAAAB9AUQAAAAAfUFEAAAAAH2BRAAAAAB9wUQAAAAAfgFEAAAAAH5BRAAAAAB-wUBAAAAAQE9AACgBAAgEoMFAgAAAAGEBQIAAAABlAUCAAAAAZcFAQAAAAGYBUAAAAABowVAAAAAAaQFAgAAAAHTBQAAAPsFAvEFAgAAAAHyBQIAAAAB8wUQAAAAAfQFEAAAAAH1BRAAAAAB9gUQAAAAAfcFEAAAAAH4BRAAAAAB-QUQAAAAAfsFAQAAAAEBPQAAogQAMAE9AACiBAAwAQAAABAAIAEAAAANACABAAAAFwAgGQQAAPILACAJAADxCwAgCgAA8wsAIAsAAPQLACANAAD1CwAgEAAA9gsAIBMAAPcLACCDBQIAiAoAIYQFAgCICgAhlAUCAPkKACGXBQEAnAoAIZgFQACdCgAhowVAAJ0KACGkBQIAiAoAIdMFAADwC_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_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-ACBEAADfBQAgRQAA5AUAIAEAAAB-ACABAAAAfAAgBQ4AAP4KACBKAAD_CgAgSwAAggsAIEwAAIELACBNAACACwAgCD0AAd0IACGABQAA3AgAMIEFAADtBQAQggUAANwIADCDBQIAnQgAIZgFQACtCAAh1wUCAJ0IACHYBQIAnQgAIQMAAAB8ACABAADsBQAwSQAA7QUAIAMAAAB8ACABAAB9ADACAAB-ACABAAAAZwAgAQAAAGcAIAMAAABlACABAABmADACAABnACADAAAAZQAgAQAAZgAwAgAAZwAgAwAAAGUAIAEAAGYAMAIAAGcAIAwDAAD9CgAgBAAA_AoAIIMFAgAAAAGEBQIAAAABmAVAAAAAAaQFAgAAAAHPBQAAAM8FAtEFAAAA0QUC0wUAAADTBQLUBQEAAAAB1QUCAAAAAdYFAQAAAAEBPQAA9QUAIAqDBQIAAAABhAUCAAAAAZgFQAAAAAGkBQIAAAABzwUAAADPBQLRBQAAANEFAtMFAAAA0wUC1AUBAAAAAdUFAgAAAAHWBQEAAAABAT0AAPcFADABPQAA9wUAMAEAAAANACAMAwAA-woAIAQAAPoKACCDBQIAiAoAIYQFAgD5CgAhmAVAAJ0KACGkBQIAiAoAIc8FAAD2Cs8FItEFAAD3CtEFItMFAAD4CtMFItQFAQCcCgAh1QUCAPkKACHWBQEAnAoAIQIAAABnACA9AAD7BQAgCoMFAgCICgAhhAUCAPkKACGYBUAAnQoAIaQFAgCICgAhzwUAAPYKzwUi0QUAAPcK0QUi0wUAAPgK0wUi1AUBAJwKACHVBQIA-QoAIdYFAQCcCgAhAgAAAGUAID0AAP0FACACAAAAZQAgPQAA_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_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_CgAgSgAAwAoAIEsAAMMKACBMAADCCgAgTQAAwQoAIAY9AAC5CAAggAUAALgIADCBBQAAqQcAEIIFAAC4CAAwgwUCAJ0IACGEBQIAnQgAIQMAAACzAQAgAQAAqAcAMEkAAKkHACADAAAAswEAIAEAAJcHADACAACUBwAgAQAAALoBACABAAAAugEAIAMAAABuACABAAC5AQAwAgAAugEAIAMAAABuACABAAC5AQAwAgAAugEAIAMAAABuACABAAC5AQAwAgAAugEAIAgDAAC-CgAgBAAAvQoAIIMFAgAAAAGEBQIAAAABowVAAAAAAaQFAgAAAAGlBQEAAAABpgUgAAAAAQE9AACxBwAgBoMFAgAAAAGEBQIAAAABowVAAAAAAaQFAgAAAAGlBQEAAAABpgUgAAAAAQE9AACzBwAwAT0AALMHADAIAwAAvAoAIAQAALsKACCDBQIAiAoAIYQFAgCICgAhowVAAJ0KACGkBQIAiAoAIaUFAQCHCgAhpgUgALoKACECAAAAugEAID0AALYHACAGgwUCAIgKACGEBQIAiAoAIaMFQACdCgAhpAUCAIgKACGlBQEAhwoAIaYFIAC6CgAhAgAAAG4AID0AALgHACACAAAAbgAgPQAAuAcAIAMAAAC6AQAgRAAAsQcAIEUAALYHACABAAAAugEAIAEAAABuACAFDgAAtQoAIEoAALYKACBLAAC5CgAgTAAAuAoAIE0AALcKACAJgAUAALQIADCBBQAAvwcAEIIFAAC0CAAwgwUCAJ0IACGEBQIAnQgAIaMFQACtCAAhpAUCAJ0IACGlBQEAnggAIaYFIAC1CAAhAwAAAG4AIAEAAL4HADBJAAC_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-gcAIAMAAAAvACBEAADzBwAgRQAA-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_BgIA5wgAIcAGIADFCAAhwQYCAOcIACHCBgIA5wgAIcsGAAANACDMBgAADQAgB4AFAACnCAAwgQUAAIEIABCCBQAApwgAMIMFAgCdCAAhkQUCAJ0IACGSBQIAnQgAIZMFEACoCAAhDQ4AAKAIACBKAACqCAAgSwAAqggAIEwAAKoIACBNAACqCAAghgUQAAAAAYcFEAAAAASIBRAAAAAEiQUQAAAAAYoFEAAAAAGLBRAAAAABjAUQAAAAAZAFEACpCAAhDQ4AAKAIACBKAACqCAAgSwAAqggAIEwAAKoIACBNAACqCAAghgUQAAAAAYcFEAAAAASIBRAAAAAEiQUQAAAAAYoFEAAAAAGLBRAAAAABjAUQAAAAAZAFEACpCAAhCIYFEAAAAAGHBRAAAAAEiAUQAAAABIkFEAAAAAGKBRAAAAABiwUQAAAAAYwFEAAAAAGQBRAAqggAIQmABQAAqwgAMIEFAADrBwAQggUAAKsIADCDBQIAnQgAIZQFAgCdCAAhlQUQAKgIACGWBRAAqAgAIZcFAQCsCAAhmAVAAK0IACEODgAAsQgAIEwAALIIACBNAACyCAAghgUBAAAAAYcFAQAAAAWIBQEAAAAFiQUBAAAAAYoFAQAAAAGLBQEAAAABjAUBAAAAAY0FAQAAAAGOBQEAAAABjwUBAAAAAZAFAQCwCAAhCw4AAKAIACBMAACvCAAgTQAArwgAIIYFQAAAAAGHBUAAAAAEiAVAAAAABIkFQAAAAAGKBUAAAAABiwVAAAAAAYwFQAAAAAGQBUAArggAIQsOAACgCAAgTAAArwgAIE0AAK8IACCGBUAAAAABhwVAAAAABIgFQAAAAASJBUAAAAABigVAAAAAAYsFQAAAAAGMBUAAAAABkAVAAK4IACEIhgVAAAAAAYcFQAAAAASIBUAAAAAEiQVAAAAAAYoFQAAAAAGLBUAAAAABjAVAAAAAAZAFQACvCAAhDg4AALEIACBMAACyCAAgTQAAsggAIIYFAQAAAAGHBQEAAAAFiAUBAAAABYkFAQAAAAGKBQEAAAABiwUBAAAAAYwFAQAAAAGNBQEAAAABjgUBAAAAAY8FAQAAAAGQBQEAsAgAIQiGBQIAAAABhwUCAAAABYgFAgAAAAWJBQIAAAABigUCAAAAAYsFAgAAAAGMBQIAAAABkAUCALEIACELhgUBAAAAAYcFAQAAAAWIBQEAAAAFiQUBAAAAAYoFAQAAAAGLBQEAAAABjAUBAAAAAY0FAQAAAAGOBQEAAAABjwUBAAAAAZAFAQCyCAAhEYAFAACzCAAwgQUAANUHABCCBQAAswgAMIMFAgCdCAAhhAUCAJ0IACGYBUAArQgAIZkFAQCeCAAhmgUBAKwIACGbBQEArAgAIZwFAQCsCAAhnQUBAKwIACGeBQEArAgAIZ8FAQCsCAAhoAUBAKwIACGhBQEArAgAIaIFAgCdCAAhowVAAK0IACEJgAUAALQIADCBBQAAvwcAEIIFAAC0CAAwgwUCAJ0IACGEBQIAnQgAIaMFQACtCAAhpAUCAJ0IACGlBQEAnggAIaYFIAC1CAAhBQ4AAKAIACBMAAC3CAAgTQAAtwgAIIYFIAAAAAGQBSAAtggAIQUOAACgCAAgTAAAtwgAIE0AALcIACCGBSAAAAABkAUgALYIACEChgUgAAAAAZAFIAC3CAAhBj0AALkIACCABQAAuAgAMIEFAACpBwAQggUAALgIADCDBQIAnQgAIYQFAgCdCAAhDw4AAKAIACBMAAC6CAAgTQAAuggAIIYFgAAAAAGJBYAAAAABigWAAAAAAYsFgAAAAAGMBYAAAAABkAWAAAAAAacFAQAAAAGoBQEAAAABqQUBAAAAAaoFgAAAAAGrBYAAAAABrAWAAAAAAQyGBYAAAAABiQWAAAAAAYoFgAAAAAGLBYAAAAABjAWAAAAAAZAFgAAAAAGnBQEAAAABqAUBAAAAAakFAQAAAAGqBYAAAAABqwWAAAAAAawFgAAAAAEHAwAApggAID0AALwIACCABQAAuwgAMIEFAACzAQAQggUAALsIADCDBQIA5wgAIYQFAgDnCAAhDIYFgAAAAAGJBYAAAAABigWAAAAAAYsFgAAAAAGMBYAAAAABkAWAAAAAAacFAQAAAAGoBQEAAAABqQUBAAAAAaoFgAAAAAGrBYAAAAABrAWAAAAAAQiABQAAvQgAMIEFAACRBwAQggUAAL0IADCDBQIAnQgAIYQFAgCdCAAhmAVAAK0IACGZBQEAnggAIa0FAQCsCAAhD4AFAAC-CAAwgQUAAPsGABCCBQAAvggAMIMFAgCdCAAhhAUCAJ0IACGtBQEArAgAIa4FAQCsCAAhrwUBAKwIACGwBQEArAgAIbEFAQCsCAAhsgUBAKwIACGzBQEArAgAIbQFAQCsCAAhtQUBAKwIACG2BQEArAgAIRADAACmCAAggAUAAL8IADCBBQAAsQEAEIIFAAC_CAAwgwUCAOcIACGEBQIA5wgAIa0FAQDACAAhrgUBAMAIACGvBQEAwAgAIbAFAQDACAAhsQUBAMAIACGyBQEAwAgAIbMFAQDACAAhtAUBAMAIACG1BQEAwAgAIbYFAQDACAAhC4YFAQAAAAGHBQEAAAAFiAUBAAAABYkFAQAAAAGKBQEAAAABiwUBAAAAAYwFAQAAAAGNBQEAAAABjgUBAAAAAY8FAQAAAAGQBQEAsggAIQY9AAC5CAAggAUAAMEIADCBBQAA4wYAEIIFAADBCAAwgwUCAJ0IACGEBQIAnQgAIQcDAACmCAAgPQAAvAgAIIAFAADCCAAwgQUAAK8BABCCBQAAwggAMIMFAgDnCAAhhAUCAOcIACESgAUAAMMIADCBBQAAywYAEIIFAADDCAAwgwUCAJ0IACGEBQIAnQgAIbcFAQCeCAAhuAUgALUIACG5BQEAnggAIboFIAC1CAAhuwUBAJ4IACG8BSAAtQgAIb0FAQCeCAAhvgUBAJ4IACG_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_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-QgAIIYFAAAA-wUChwUAAAD7BQiIBQAAAPsFCJAFAAD4CPsFIgcOAACgCAAgTAAA-QgAIE0AAPkIACCGBQAAAPsFAocFAAAA-wUIiAUAAAD7BQiQBQAA-Aj7BSIEhgUAAAD7BQKHBQAAAPsFCIgFAAAA-wUIkAUAAPkI-wUiDQ4AALEIACBKAAD7CAAgSwAA-wgAIEwAAPsIACBNAAD7CAAghgUQAAAAAYcFEAAAAAWIBRAAAAAFiQUQAAAAAYoFEAAAAAGLBRAAAAABjAUQAAAAAZAFEAD6CAAhCIYFEAAAAAGHBRAAAAAFiAUQAAAABYkFEAAAAAGKBRAAAAABiwUQAAAAAYwFEAAAAAGQBRAA-wgAIQiABQAA_AgAMIEFAACYBAAQggUAAPwIADCDBQIAnQgAIcgFAQCeCAAhzQVAAK0IACH8BQAB3QgAIf0FAgCdCAAhCIAFAAD9CAAwgQUAAIIEABCCBQAA_QgAMIMFAgCdCAAhmAVAAK0IACGkBQIAnQgAIf4FAQCeCAAhgAYAAP4IgAYiBw4AAKAIACBMAACACQAgTQAAgAkAIIYFAAAAgAYChwUAAACABgiIBQAAAIAGCJAFAAD_CIAGIgcOAACgCAAgTAAAgAkAIE0AAIAJACCGBQAAAIAGAocFAAAAgAYIiAUAAACABgiQBQAA_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_gUBAJ4IACGSBgIAnQgAIaoGQACtCAAhqwYBAJ4IACGsBgEAnggAIa0GIAC1CAAhrgYBAKwIACGvBiAAtQgAIbEGAACXCbEGIgcOAACgCAAgTAAAmQkAIE0AAJkJACCGBQAAALEGAocFAAAAsQYIiAUAAACxBgiQBQAAmAmxBiIHDgAAoAgAIEwAAJkJACBNAACZCQAghgUAAACxBgKHBQAAALEGCIgFAAAAsQYIkAUAAJgJsQYiBIYFAAAAsQYChwUAAACxBgiIBQAAALEGCJAFAACZCbEGIhiABQAAmgkAMIEFAAD8AQAQggUAAJoJADCDBQIAnQgAIYQFAgCdCAAhmAVAAK0IACGjBUAArQgAIbEFAQCsCAAhtAUBAKwIACG2BQEArAgAIdMFAACXCbEGIpUGQADjCAAhmwYBAKwIACGpBgEAnggAIbIGAQCeCAAhswYBAJ4IACG0BgEAnggAIbUGAQCsCAAhtgYBAKwIACG3BgEArAgAIbgGAQCsCAAhuQYBAKwIACG6BgEArAgAIbsGAQCsCAAhDYAFAACbCQAwgQUAAOYBABCCBQAAmwkAMIMFAgCdCAAhhgYBAJ4IACGHBgEAnggAIbwGIAC1CAAhvQYCAJ0IACG-BiAAtQgAIb8GAgCdCAAhwAYgALUIACHBBgIAnQgAIcIGAgCdCAAhEgMAAKYIACCABQAAnAkAMIEFAAC8AQAQggUAAJwJADCDBQIA5wgAIYQFAgDnCAAhmAVAAOgIACGZBQEApQgAIZoFAQDACAAhmwUBAMAIACGcBQEAwAgAIZ0FAQDACAAhngUBAMAIACGfBQEAwAgAIaAFAQDACAAhoQUBAMAIACGiBQIA5wgAIaMFQADoCAAhCwMAAKYIACAEAACeCQAggAUAAJ0JADCBBQAAbgAQggUAAJ0JADCDBQIA5wgAIYQFAgDnCAAhowVAAOgIACGkBQIA5wgAIaUFAQClCAAhpgUgAMUIACEkAwAApggAIAUAAK0JACAIAACpCQAgDAAAqgkAIBgAAKwJACAcAAD_CQAgHQAA8QkAIB4AAIAKACAfAACBCgAgJQAAugkAIIAFAAD-CQAwgQUAAAMAEIIFAAD-CQAwgwUCAOcIACGEBQIA5wgAIZgFQADoCAAhowVAAOgIACGxBQEAwAgAIbQFAQDACAAhtgUBAMAIACHTBQAA_AmxBiKVBkAA6QgAIZsGAQDACAAhqQYBAKUIACGyBgEApQgAIbMGAQClCAAhtAYBAKUIACG1BgEAwAgAIbYGAQDACAAhtwYBAMAIACG4BgEAwAgAIbkGAQDACAAhugYBAMAIACG7BgEAwAgAIcsGAAADACDMBgAAAwAgCQMAAKYIACCABQAAnwkAMIEFAAC1AQAQggUAAJ8JADCDBQIA5wgAIYQFAgDnCAAhmAVAAOgIACGZBQEApQgAIa0FAQDACAAhCgMAAKYIACCABQAAoAkAMIEFAACkAQAQggUAAKAJADCDBQIA5wgAIYQFAgDnCAAhmAVAAOgIACHkBQAAoQnkBSLlBQEApQgAIeYFIADFCAAhBIYFAAAA5AUChwUAAADkBQiIBQAAAOQFCJAFAADuCOQFIgkDAACmCAAggAUAAKIJADCBBQAAoAEAEIIFAACiCQAwgwUCAOcIACGEBQIA5wgAIZgFQADoCAAh5wUBAKUIACHoBSAAxQgAIQcDAACmCAAggAUAAKMJADCBBQAAnAEAEIIFAACjCQAwgwUCAOcIACGEBQIA5wgAIZgFQADoCAAhCgMAAKYIACCABQAApAkAMIEFAACXAQAQggUAAKQJADCDBQIA5wgAIYQFAgDnCAAhgQYBAKUIACGCBgEApQgAIYMGAQClCAAhhAYBAKUIACEChAUCAAAAAYUGAQAAAAEJAwAApggAIIAFAACmCQAwgQUAAJMBABCCBQAApgkAMIMFAgDnCAAhhAUCAOcIACGFBgEApQgAIYYGAQClCAAhhwYBAKUIACEChAUCAAAAAaYGAQAAAAEPAwAApggAIAUAAK0JACAIAACpCQAgFAAAqgkAIBUAAKsJACAWAACsCQAggAUAAKgJADCBBQAAFwAQggUAAKgJADCDBQIA5wgAIYQFAgDnCAAhmAVAAOgIACGiBQIA5wgAIaYGAQClCAAhpwYBAKUIACEDxQYAABAAIMYGAAAQACDHBgAAEAAgA8UGAAAaACDGBgAAGgAgxwYAABoAIAPFBgAANgAgxgYAADYAIMcGAAA2ACADxQYAADoAIMYGAAA6ACDHBgAAOgAgA8UGAAAHACDGBgAABwAgxwYAAAcAIA0DAACvCQAgBQAArQkAIAgAAKkJACCABQAArgkAMIEFAAALABCCBQAArgkAMIMFAgDnCAAhhAUCAOcIACGYBUAA6AgAIZkFAQClCAAhsQUBAMAIACGoBgEApQgAIakGAQDACAAhJgUAAK0JACAHAADqCQAgCAAAqQkAIB0AAPEJACAlAAC6CQAgJgAA6QkAICcAAOsJACAoAADsCQAgKQAA7QkAICoAAKoJACArAADuCQAgLAAA7wkAIC0AAPAJACAuAAC8CQAgLwAA8gkAIDAAAPMJACAxAAD0CQAgMgAA9QkAIDMAAPYJACA0AAD3CQAgNQAA-AkAIDYAAPkJACA3AAD6CQAggAUAAOgJADCBBQAADQAQggUAAOgJADCDBQIA5wgAIYYGAQClCAAhhwYBAKUIACG8BiAAxQgAIb0GAgDnCAAhvgYgAMUIACG_BgIA5wgAIcAGIADFCAAhwQYCAOcIACHCBgIA5wgAIcsGAAANACDMBgAADQAgAtcFAgAAAAHYBQIAAAABCSMAALMJACA9AAGyCQAhgAUAALEJADCBBQAAfAAQggUAALEJADCDBQIA5wgAIZgFQADoCAAh1wUCAOcIACHYBQIA5wgAIQSGBQABAAABhwUAAQAABIgFAAEAAASQBQAB3wgAIRMDAACmCAAgIgAAtgkAICQAALcJACCABQAAtAkAMIEFAAB3ABCCBQAAtAkAMIMFAgDnCAAhhAUCAOcIACGYBUAA6AgAIZkFAQClCAAhowVAAOgIACHKBQEAwAgAIcsFBAC1CQAh2QUCAOoIACHaBSAAxQgAIdsFAgDqCAAh3AUBAMAIACHLBgAAdwAgzAYAAHcAIBEDAACmCAAgIgAAtgkAICQAALcJACCABQAAtAkAMIEFAAB3ABCCBQAAtAkAMIMFAgDnCAAhhAUCAOcIACGYBUAA6AgAIZkFAQClCAAhowVAAOgIACHKBQEAwAgAIcsFBAC1CQAh2QUCAOoIACHaBSAAxQgAIdsFAgDqCAAh3AUBAMAIACEIhgUEAAAAAYcFBAAAAASIBQQAAAAEiQUEAAAAAYoFBAAAAAGLBQQAAAABjAUEAAAAAZAFBADOCAAhEQMAAKYIACAEAAC7CQAgGQAAvAkAICAAALYJACAhAAC6CQAggAUAALkJADCBBQAAcAAQggUAALkJADCDBQIA5wgAIYQFAgDnCAAhmAVAAOgIACGZBQEApQgAIaMFQADoCAAhpAUCAOoIACHdBQIA6ggAIcsGAABwACDMBgAAcAAgA8UGAAB8ACDGBgAAfAAgxwYAAHwAIAOEBQIAAAABmQUBAAAAAd0FAgAAAAEPAwAApggAIAQAALsJACAZAAC8CQAgIAAAtgkAICEAALoJACCABQAAuQkAMIEFAABwABCCBQAAuQkAMIMFAgDnCAAhhAUCAOcIACGYBUAA6AgAIZkFAQClCAAhowVAAOgIACGkBQIA6ggAId0FAgDqCAAhA8UGAABwACDGBgAAcAAgxwYAAHAAICQDAACmCAAgBQAArQkAIAgAAKkJACAMAACqCQAgGAAArAkAIBwAAP8JACAdAADxCQAgHgAAgAoAIB8AAIEKACAlAAC6CQAggAUAAP4JADCBBQAAAwAQggUAAP4JADCDBQIA5wgAIYQFAgDnCAAhmAVAAOgIACGjBUAA6AgAIbEFAQDACAAhtAUBAMAIACG2BQEAwAgAIdMFAAD8CbEGIpUGQADpCAAhmwYBAMAIACGpBgEApQgAIbIGAQClCAAhswYBAKUIACG0BgEApQgAIbUGAQDACAAhtgYBAMAIACG3BgEAwAgAIbgGAQDACAAhuQYBAMAIACG6BgEAwAgAIbsGAQDACAAhywYAAAMAIMwGAAADACADxQYAAHcAIMYGAAB3ACDHBgAAdwAgDQQAAJ4JACCABQAAvQkAMIEFAABqABCCBQAAvQkAMIMFAgDnCAAhowVAAOgIACGkBQIA5wgAIcgFAQClCAAhyQUBAKUIACHKBQEApQgAIcsFBAC1CQAhzAUBAKUIACHNBUAA6AgAIQ8DAACvCQAgBAAAngkAIIAFAAC-CQAwgQUAAGUAEIIFAAC-CQAwgwUCAOcIACGEBQIA6ggAIZgFQADoCAAhpAUCAOcIACHPBQAAvwnPBSLRBQAAwAnRBSLTBQAAwQnTBSLUBQEAwAgAIdUFAgDqCAAh1gUBAMAIACEEhgUAAADPBQKHBQAAAM8FCIgFAAAAzwUIkAUAANkIzwUiBIYFAAAA0QUChwUAAADRBQiIBQAAANEFCJAFAADXCNEFIgSGBQAAANMFAocFAAAA0wUIiAUAAADTBQiQBQAA1QjTBSIJGgAAwwkAIIAFAADCCQAwgQUAAF8AEIIFAADCCQAwgwUCAOcIACHIBQEApQgAIc0FQADoCAAh_AUAAbIJACH9BQIA5wgAIQwEAACeCQAgGwAAxgkAIIAFAADECQAwgQUAAFsAEIIFAADECQAwgwUCAOcIACGYBUAA6AgAIaQFAgDnCAAh_gUBAKUIACGABgAAxQmABiLLBgAAWwAgzAYAAFsAIAoEAACeCQAgGwAAxgkAIIAFAADECQAwgQUAAFsAEIIFAADECQAwgwUCAOcIACGYBUAA6AgAIaQFAgDnCAAh_gUBAKUIACGABgAAxQmABiIEhgUAAACABgKHBQAAAIAGCIgFAAAAgAYIkAUAAIAJgAYiA8UGAABfACDGBgAAXwAgxwYAAF8AIAkGAADICQAggAUAAMcJADCBBQAAUgAQggUAAMcJADCDBQIA5wgAIcgFAQClCAAhygUBAMAIACHMBQEAwAgAIZEGAgDnCAAhHQMAAKYIACAEAACeCQAgBwAA5gkAIAgAAKkJACALAADOCQAgGAAArAkAIBkAAP0JACCABQAA-wkAMIEFAAAHABCCBQAA-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-AUQANAJACH5BRAA0AkAIfsFAQDACAAhBIYFAAAA-wUChwUAAAD7BQiIBQAAAPsFCJAFAAD5CPsFIgPFBgAAKQAgxgYAACkAIMcGAAApACAeAwAArwkAIAQAAJ4JACAGAADlCQAgBwAA5gkAIAsAAM4JACAMAADaCQAgEAAA4QkAIBcAAOcJACCABQAA4gkAMIEFAAAQABCCBQAA4gkAMIMFAgDnCAAhhAUCAOcIACGUBQIA6ggAIZgFQADoCAAhowVAAOgIACGkBQIA5wgAIdMFAADkCZ0GIpEGAgDqCAAhkgYCAOcIACGTBgEApQgAIZQGAQClCAAhlQZAAOgIACGWBgEApQgAIZgGAADjCZgGIpkGAADKCAAgmgZAAOgIACGbBgEApQgAIZ0GAQDACAAhngYBAMAIACEEhgUAAACYBgKHBQAAAJgGCIgFAAAAmAYIkAUAAI4JmAYiBIYFAAAAnQYChwUAAACdBgiIBQAAAJ0GCJAFAACMCZ0GIh0DAACmCAAgBAAAngkAIAcAAOYJACAIAACpCQAgCwAAzgkAIBgAAKwJACAZAAD9CQAggAUAAPsJADCBBQAABwAQggUAAPsJADCDBQIA5wgAIYQFAgDnCAAhlAUCAOoIACGXBQEAwAgAIZgFQADoCAAhpAUCAOcIACHTBQEApQgAIeQFAQClCAAh_gUBAKUIACGSBgIA5wgAIaoGQADoCAAhqwYBAKUIACGsBgEApQgAIa0GIADFCAAhrgYBAMAIACGvBiAAxQgAIbEGAAD8CbEGIssGAAAHACDMBgAABwAgDwMAAK8JACAFAACtCQAgCAAAqQkAIIAFAACuCQAwgQUAAAsAEIIFAACuCQAwgwUCAOcIACGEBQIA5wgAIZgFQADoCAAhmQUBAKUIACGxBQEAwAgAIagGAQClCAAhqQYBAMAIACHLBgAACwAgzAYAAAsAIAPFBgAARgAgxgYAAEYAIMcGAABGACAkBQAArQkAIAcAAOoJACAIAACpCQAgHQAA8QkAICUAALoJACAmAADpCQAgJwAA6wkAICgAAOwJACApAADtCQAgKgAAqgkAICsAAO4JACAsAADvCQAgLQAA8AkAIC4AALwJACAvAADyCQAgMAAA8wkAIDEAAPQJACAyAAD1CQAgMwAA9gkAIDQAAPcJACA1AAD4CQAgNgAA-QkAIDcAAPoJACCABQAA6AkAMIEFAAANABCCBQAA6AkAMIMFAgDnCAAhhgYBAKUIACGHBgEApQgAIbwGIADFCAAhvQYCAOcIACG-BiAAxQgAIb8GAgDnCAAhwAYgAMUIACHBBgIA5wgAIcIGAgDnCAAhA8UGAAADACDGBgAAAwAgxwYAAAMAIAPFBgAACwAgxgYAAAsAIMcGAAALACADxQYAABcAIMYGAAAXACDHBgAAFwAgA8UGAACTAQAgxgYAAJMBACDHBgAAkwEAIAPFBgAAlwEAIMYGAACXAQAgxwYAAJcBACADxQYAAJwBACDGBgAAnAEAIMcGAACcAQAgA8UGAACgAQAgxgYAAKABACDHBgAAoAEAIAPFBgAApAEAIMYGAACkAQAgxwYAAKQBACADxQYAAGUAIMYGAABlACDHBgAAZQAgDQMAAKYIACCABQAAyQgAMIEFAACrAQAQggUAAMkIADCDBQIA5wgAIYQFAgDnCAAhrQUBAKUIACHEBQEApQgAIcUFAQClCAAhxgUBAMAIACHHBQAAyggAIMsGAACrAQAgzAYAAKsBACAVAwAApggAIIAFAADECAAwgQUAAK0BABCCBQAAxAgAMIMFAgDnCAAhhAUCAOcIACG3BQEApQgAIbgFIADFCAAhuQUBAKUIACG6BSAAxQgAIbsFAQClCAAhvAUgAMUIACG9BQEApQgAIb4FAQClCAAhvwUBAKUIACHABQEApQgAIcEFIADFCAAhwgUgAMUIACHDBSAAxQgAIcsGAACtAQAgzAYAAK0BACAJAwAApggAID0AALwIACCABQAAwggAMIEFAACvAQAQggUAAMIIADCDBQIA5wgAIYQFAgDnCAAhywYAAK8BACDMBgAArwEAIBIDAACmCAAggAUAAL8IADCBBQAAsQEAEIIFAAC_CAAwgwUCAOcIACGEBQIA5wgAIa0FAQDACAAhrgUBAMAIACGvBQEAwAgAIbAFAQDACAAhsQUBAMAIACGyBQEAwAgAIbMFAQDACAAhtAUBAMAIACG1BQEAwAgAIbYFAQDACAAhywYAALEBACDMBgAAsQEAIAkDAACmCAAgPQAAvAgAIIAFAAC7CAAwgQUAALMBABCCBQAAuwgAMIMFAgDnCAAhhAUCAOcIACHLBgAAswEAIMwGAACzAQAgA8UGAAC1AQAgxgYAALUBACDHBgAAtQEAIAPFBgAAbgAgxgYAAG4AIMcGAABuACADxQYAALwBACDGBgAAvAEAIMcGAAC8AQAgCQMAAKYIACCABQAApAgAMIEFAADAAQAQggUAAKQIADCDBQIA5wgAIYQFAgDnCAAhhQUBAKUIACHLBgAAwAEAIMwGAADAAQAgGwMAAKYIACAEAACeCQAgBwAA5gkAIAgAAKkJACALAADOCQAgGAAArAkAIBkAAP0JACCABQAA-wkAMIEFAAAHABCCBQAA-wkAMIMFAgDnCAAhhAUCAOcIACGUBQIA6ggAIZcFAQDACAAhmAVAAOgIACGkBQIA5wgAIdMFAQClCAAh5AUBAKUIACH-BQEApQgAIZIGAgDnCAAhqgZAAOgIACGrBgEApQgAIawGAQClCAAhrQYgAMUIACGuBgEAwAgAIa8GIADFCAAhsQYAAPwJsQYiBIYFAAAAsQYChwUAAACxBgiIBQAAALEGCJAFAACZCbEGIgPFBgAAUgAgxgYAAFIAIMcGAABSACAiAwAApggAIAUAAK0JACAIAACpCQAgDAAAqgkAIBgAAKwJACAcAAD_CQAgHQAA8QkAIB4AAIAKACAfAACBCgAgJQAAugkAIIAFAAD-CQAwgQUAAAMAEIIFAAD-CQAwgwUCAOcIACGEBQIA5wgAIZgFQADoCAAhowVAAOgIACGxBQEAwAgAIbQFAQDACAAhtgUBAMAIACHTBQAA_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_xMAINMGAAABACADRAAA_RMAIM0GAAD-EwAg0wYAAAEAIAAAAAAABUQAAPgTACBFAAD7EwAgzQYAAPkTACDOBgAA-hMAINMGAAABACADRAAA-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-QoAIQoDAACkCwAgBAAApQsAIBkAAKYLACAhAACjCwAggwUCAIgKACGEBQIAiAoAIZgFQACdCgAhmQUBAIcKACGjBUAAnQoAIaQFAgD5CgAhCgMAAMALACAEAADBCwAgGQAAwgsAICEAAL8LACCDBQIAAAABhAUCAAAAAZgFQAAAAAGZBQEAAAABowVAAAAAAaQFAgAAAAEERAAAswsAMM0GAAC0CwAwzwYAALYLACDTBgAAtwsAMANEAAC9EwAgzQYAAL4TACDTBgAAAQAgA0QAALsTACDNBgAAvBMAINMGAAAFACAERAAApwsAMM0GAACoCwAwzwYAAKoLACDTBgAAqwsAMANEAAC5EwAgzQYAALoTACDTBgAAcgAgAAAAAAAB0AZAAAAAAQAAAAAAAdAGAAAA5AUCBUQAALQTACBFAAC3EwAgzQYAALUTACDOBgAAthMAINMGAAABACADRAAAtBMAIM0GAAC1EwAg0wYAAAEAIAAAAAAABUQAAK8TACBFAACyEwAgzQYAALATACDOBgAAsRMAINMGAAABACADRAAArxMAIM0GAACwEwAg0wYAAAEAIAAAAAAABUQAAKoTACBFAACtEwAgzQYAAKsTACDOBgAArBMAINMGAAABACADRAAAqhMAIM0GAACrEwAg0wYAAAEAIAAAAAAAAdAGAAAA7gUCBUQAAKITACBFAACoEwAgzQYAAKMTACDOBgAApxMAINMGAAAcACAFRAAAoBMAIEUAAKUTACDNBgAAoRMAIM4GAACkEwAg0wYAACsAIANEAACiEwAgzQYAAKMTACDTBgAAHAAgA0QAAKATACDNBgAAoRMAINMGAAArACAAAAAAAAXQBhAAAAAB1gYQAAAAAdcGEAAAAAHYBhAAAAAB2QYQAAAAAQHQBgAAAPsFAgdEAACJEwAgRQAAnhMAIM0GAACKEwAgzgYAAJ0TACDRBgAAEAAg0gYAABAAINMGAAASACAFRAAAhxMAIEUAAJsTACDNBgAAiBMAIM4GAACaEwAg0wYAAAUAIAdEAACFEwAgRQAAmBMAIM0GAACGEwAgzgYAAJcTACDRBgAADQAg0gYAAA0AINMGAAABACAHRAAAgxMAIEUAAJUTACDNBgAAhBMAIM4GAACUEwAg0QYAABcAINIGAAAXACDTBgAAkAEAIAtEAACeDAAwRQAAogwAMM0GAACfDAAwzgYAAKAMADDPBgAAoQwAINAGAACTDAAw0QYAAJMMADDSBgAAkwwAMNMGAACTDAAw1AYAAKMMADDVBgAAlgwAMAtEAACBDAAwRQAAhgwAMM0GAACCDAAwzgYAAIMMADDPBgAAhAwAINAGAACFDAAw0QYAAIUMADDSBgAAhQwAMNMGAACFDAAw1AYAAIcMADDVBgAAiAwAMAtEAAD4CwAwRQAA_AsAMM0GAAD5CwAwzgYAAPoLADDPBgAA-wsAINAGAACkCgAw0QYAAKQKADDSBgAApAoAMNMGAACkCgAw1AYAAP0LADDVBgAApwoAMAQSAACUCgAggwUCAAAAAZEFAgAAAAGTBRAAAAABAgAAAC8AIEQAAIAMACADAAAALwAgRAAAgAwAIEUAAP8LACABPQAAkxMAMAIAAAAvACA9AAD_CwAgAgAAAKgKACA9AAD-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-QsAMM8GAAD7CwAg0wYAAKQKADAAAAAAAAVEAAD-EgAgRQAAgRMAIM0GAAD_EgAgzgYAAIATACDTBgAAXQAgA0QAAP4SACDNBgAA_xIAINMGAABdACAAAAAAAAHQBgAAAIAGAgVEAAD4EgAgRQAA_BIAIM0GAAD5EgAgzgYAAPsSACDTBgAABQAgC0QAAL0MADBFAADCDAAwzQYAAL4MADDOBgAAvwwAMM8GAADADAAg0AYAAMEMADDRBgAAwQwAMNIGAADBDAAw0wYAAMEMADDUBgAAwwwAMNUGAADEDAAwBIMFAgAAAAHIBQEAAAABzQVAAAAAAfwFAAEAAAECAAAAYQAgRAAAyAwAIAMAAABhACBEAADIDAAgRQAAxwwAIAE9AAD6EgAwCRoAAMMJACCABQAAwgkAMIEFAABfABCCBQAAwgkAMIMFAgAAAAHIBQEApQgAIc0FQADoCAAh_AUAAbIJACH9BQIA5wgAIQIAAABhACA9AADHDAAgAgAAAMUMACA9AADGDAAgCIAFAADEDAAwgQUAAMUMABCCBQAAxAwAMIMFAgDnCAAhyAUBAKUIACHNBUAA6AgAIfwFAAGyCQAh_QUCAOcIACEIgAUAAMQMADCBBQAAxQwAEIIFAADEDAAwgwUCAOcIACHIBQEApQgAIc0FQADoCAAh_AUAAbIJACH9BQIA5wgAIQSDBQIAiAoAIcgFAQCHCgAhzQVAAJ0KACH8BQABgwsAIQSDBQIAiAoAIcgFAQCHCgAhzQVAAJ0KACH8BQABgwsAIQSDBQIAAAAByAUBAAAAAc0FQAAAAAH8BQABAAABA0QAAPgSACDNBgAA-RIAINMGAAAFACAERAAAvQwAMM0GAAC-DAAwzwYAAMAMACDTBgAAwQwAMAAAAAAABUQAAPMSACBFAAD2EgAgzQYAAPQSACDOBgAA9RIAINMGAAABACADRAAA8xIAIM0GAAD0EgAg0wYAAAEAIAAAAAAABUQAAO4SACBFAADxEgAgzQYAAO8SACDOBgAA8BIAINMGAAABACADRAAA7hIAIM0GAADvEgAg0wYAAAEAIAAAAAAABUQAAOkSACBFAADsEgAgzQYAAOoSACDOBgAA6xIAINMGAAASACADRAAA6RIAIM0GAADqEgAg0wYAABIAIAAAAAAAB0QAAOQSACBFAADnEgAgzQYAAOUSACDOBgAA5hIAINEGAAAaACDSBgAAGgAg0wYAABwAIANEAADkEgAgzQYAAOUSACDTBgAAHAAgAAAAAAAB0AYAAACYBgIB0AYAAACdBgIFRAAA0RIAIEUAAOISACDNBgAA0hIAIM4GAADhEgAg0wYAAAUAIAdEAADPEgAgRQAA3xIAIM0GAADQEgAgzgYAAN4SACDRBgAABwAg0gYAAAcAINMGAAAJACAHRAAAzRIAIEUAANwSACDNBgAAzhIAIM4GAADbEgAg0QYAAA0AINIGAAANACDTBgAAAQAgB0QAAMsSACBFAADZEgAgzQYAAMwSACDOBgAA2BIAINEGAAALACDSBgAACwAg0wYAAI0BACAHRAAAyRIAIEUAANYSACDNBgAAyhIAIM4GAADVEgAg0QYAABcAINIGAAAXACDTBgAAkAEAIAtEAACHDQAwRQAAiw0AMM0GAACIDQAwzgYAAIkNADDPBgAAig0AINAGAACFDAAw0QYAAIUMADDSBgAAhQwAMNMGAACFDAAw1AYAAIwNADDVBgAAiAwAMAtEAAD7DAAwRQAAgA0AMM0GAAD8DAAwzgYAAP0MADDPBgAA_gwAINAGAAD_DAAw0QYAAP8MADDSBgAA_wwAMNMGAAD_DAAw1AYAAIENADDVBgAAgg0AMAdEAAD2DAAgRQAA-QwAIM0GAAD3DAAgzgYAAPgMACDRBgAAGgAg0gYAABoAINMGAAAcACAXBAAAqAwAIAoAAKkMACALAACqDAAgDQAAqwwAIBAAAKwMACATAACtDAAggwUCAAAAAYQFAgAAAAGUBQIAAAABlwUBAAAAAZgFQAAAAAGjBUAAAAABpAUCAAAAAdMFAAAA-wUC8gUCAAAAAfMFEAAAAAH0BRAAAAAB9QUQAAAAAfYFEAAAAAH3BRAAAAAB-AUQAAAAAfkFEAAAAAH7BQEAAAABAgAAABwAIEQAAPYMACADAAAAGgAgRAAA9gwAIEUAAPoMACAZAAAAGgAgBAAA8gsAIAoAAPMLACALAAD0CwAgDQAA9QsAIBAAAPYLACATAAD3CwAgPQAA-gwAIIMFAgCICgAhhAUCAIgKACGUBQIA-QoAIZcFAQCcCgAhmAVAAJ0KACGjBUAAnQoAIaQFAgCICgAh0wUAAPAL-wUi8gUCAPkKACHzBRAAkQoAIfQFEACRCgAh9QUQAJEKACH2BRAAkQoAIfcFEADvCwAh-AUQAJEKACH5BRAAkQoAIfsFAQCcCgAhFwQAAPILACAKAADzCwAgCwAA9AsAIA0AAPULACAQAAD2CwAgEwAA9wsAIIMFAgCICgAhhAUCAIgKACGUBQIA-QoAIZcFAQCcCgAhmAVAAJ0KACGjBUAAnQoAIaQFAgCICgAh0wUAAPAL-wUi8gUCAPkKACHzBRAAkQoAIfQFEACRCgAh9QUQAJEKACH2BRAAkQoAIfcFEADvCwAh-AUQAJEKACH5BRAAkQoAIfsFAQCcCgAhBIMFAgAAAAHIBQEAAAABygUBAAAAAcwFAQAAAAECAAAASAAgRAAAhg0AIAMAAABIACBEAACGDQAgRQAAhQ0AIAE9AADUEgAwCQkAAMoJACCABQAAyQkAMIEFAABGABCCBQAAyQkAMIMFAgAAAAHIBQEApQgAIcoFAQClCAAhzAUBAMAIACHxBQIA5wgAIQIAAABIACA9AACFDQAgAgAAAIMNACA9AACEDQAgCIAFAACCDQAwgQUAAIMNABCCBQAAgg0AMIMFAgDnCAAhyAUBAKUIACHKBQEApQgAIcwFAQDACAAh8QUCAOcIACEIgAUAAIINADCBBQAAgw0AEIIFAACCDQAwgwUCAOcIACHIBQEApQgAIcoFAQClCAAhzAUBAMAIACHxBQIA5wgAIQSDBQIAiAoAIcgFAQCHCgAhygUBAIcKACHMBQEAnAoAIQSDBQIAiAoAIcgFAQCHCgAhygUBAIcKACHMBQEAnAoAIQSDBQIAAAAByAUBAAAAAcoFAQAAAAHMBQEAAAABEgwAAOYMACANAACdDAAggwUCAAAAAZIFAgAAAAHTBQAAAJEGAvMFEAAAAAH0BRAAAAAB9QUQAAAAAfYFEAAAAAH7BQEAAAABiAYBAAAAAYkGQAAAAAGKBgEAAAABiwYBAAAAAYwGAQAAAAGNBgEAAAABjgYBAAAAAY8GEAAAAAECAAAAKwAgRAAAjw0AIAMAAAArACBEAACPDQAgRQAAjg0AIAE9AADTEgAwAgAAACsAID0AAI4NACACAAAAiQwAID0AAI0NACAQgwUCAIgKACGSBQIA-QoAIdMFAACLDJEGIvMFEACRCgAh9AUQAJEKACH1BRAAkQoAIfYFEACRCgAh-wUBAJwKACGIBgEAhwoAIYkGQACdCgAhigYBAJwKACGLBgEAnAoAIYwGAQCcCgAhjQYBAJwKACGOBgEAnAoAIY8GEADvCwAhEgwAAOUMACANAACODAAggwUCAIgKACGSBQIA-QoAIdMFAACLDJEGIvMFEACRCgAh9AUQAJEKACH1BRAAkQoAIfYFEACRCgAh-wUBAJwKACGIBgEAhwoAIYkGQACdCgAhigYBAJwKACGLBgEAnAoAIYwGAQCcCgAhjQYBAJwKACGOBgEAnAoAIY8GEADvCwAhEgwAAOYMACANAACdDAAggwUCAAAAAZIFAgAAAAHTBQAAAJEGAvMFEAAAAAH0BRAAAAAB9QUQAAAAAfYFEAAAAAH7BQEAAAABiAYBAAAAAYkGQAAAAAGKBgEAAAABiwYBAAAAAYwGAQAAAAGNBgEAAAABjgYBAAAAAY8GEAAAAAEDRAAA0RIAIM0GAADSEgAg0wYAAAUAIANEAADPEgAgzQYAANASACDTBgAACQAgA0QAAM0SACDNBgAAzhIAINMGAAABACADRAAAyxIAIM0GAADMEgAg0wYAAI0BACADRAAAyRIAIM0GAADKEgAg0wYAAJABACAERAAAhw0AMM0GAACIDQAwzwYAAIoNACDTBgAAhQwAMAREAAD7DAAwzQYAAPwMADDPBgAA_gwAINMGAAD_DAAwA0QAAPYMACDNBgAA9wwAINMGAAAcACAAAAAAAAHQBgAAAKQGAgVEAAC-EgAgRQAAxxIAIM0GAAC_EgAgzgYAAMYSACDTBgAACQAgBUQAALwSACBFAADEEgAgzQYAAL0SACDOBgAAwxIAINMGAAAFACAHRAAAuhIAIEUAAMESACDNBgAAuxIAIM4GAADAEgAg0QYAABcAINIGAAAXACDTBgAAkAEAIANEAAC-EgAgzQYAAL8SACDTBgAACQAgA0QAALwSACDNBgAAvRIAINMGAAAFACADRAAAuhIAIM0GAAC7EgAg0wYAAJABACAAAAAAAAVEAACeEgAgRQAAuBIAIM0GAACfEgAgzgYAALcSACDTBgAAAQAgC0QAAI0OADBFAACRDgAwzQYAAI4OADDOBgAAjw4AMM8GAACQDgAg0AYAANENADDRBgAA0Q0AMNIGAADRDQAw0wYAANENADDUBgAAkg4AMNUGAADUDQAwC0QAAIEOADBFAACGDgAwzQYAAIIOADDOBgAAgw4AMM8GAACEDgAg0AYAAIUOADDRBgAAhQ4AMNIGAACFDgAw0wYAAIUOADDUBgAAhw4AMNUGAACIDgAwC0QAAPUNADBFAAD6DQAwzQYAAPYNADDOBgAA9w0AMM8GAAD4DQAg0AYAAPkNADDRBgAA-Q0AMNIGAAD5DQAw0wYAAPkNADDUBgAA-w0AMNUGAAD8DQAwC0QAAOwNADBFAADwDQAwzQYAAO0NADDOBgAA7g0AMM8GAADvDQAg0AYAAN0NADDRBgAA3Q0AMNIGAADdDQAw0wYAAN0NADDUBgAA8Q0AMNUGAADgDQAwC0QAAK8NADBFAAC0DQAwzQYAALANADDOBgAAsQ0AMM8GAACyDQAg0AYAALMNADDRBgAAsw0AMNIGAACzDQAw0wYAALMNADDUBgAAtQ0AMNUGAAC2DQAwFgMAAOcNACAEAADmDQAgBwAA6A0AIAgAAOoNACAYAADpDQAgGQAA6w0AIIMFAgAAAAGEBQIAAAABlwUBAAAAAZgFQAAAAAGkBQIAAAAB0wUBAAAAAeQFAQAAAAH-BQEAAAABkgYCAAAAAaoGQAAAAAGrBgEAAAABrAYBAAAAAa0GIAAAAAGuBgEAAAABrwYgAAAAAbEGAAAAsQYCAgAAAAkAIEQAAOUNACADAAAACQAgRAAA5Q0AIEUAALoNACABPQAAthIAMBsDAACmCAAgBAAAngkAIAcAAOYJACAIAACpCQAgCwAAzgkAIBgAAKwJACAZAAD9CQAggAUAAPsJADCBBQAABwAQggUAAPsJADCDBQIAAAABhAUCAOcIACGUBQIA6ggAIZcFAQDACAAhmAVAAOgIACGkBQIA5wgAIdMFAQClCAAh5AUBAKUIACH-BQEApQgAIZIGAgDnCAAhqgZAAOgIACGrBgEApQgAIawGAQClCAAhrQYgAMUIACGuBgEAwAgAIa8GIADFCAAhsQYAAPwJsQYiAgAAAAkAID0AALoNACACAAAAtw0AID0AALgNACAUgAUAALYNADCBBQAAtw0AEIIFAAC2DQAwgwUCAOcIACGEBQIA5wgAIZQFAgDqCAAhlwUBAMAIACGYBUAA6AgAIaQFAgDnCAAh0wUBAKUIACHkBQEApQgAIf4FAQClCAAhkgYCAOcIACGqBkAA6AgAIasGAQClCAAhrAYBAKUIACGtBiAAxQgAIa4GAQDACAAhrwYgAMUIACGxBgAA_AmxBiIUgAUAALYNADCBBQAAtw0AEIIFAAC2DQAwgwUCAOcIACGEBQIA5wgAIZQFAgDqCAAhlwUBAMAIACGYBUAA6AgAIaQFAgDnCAAh0wUBAKUIACHkBQEApQgAIf4FAQClCAAhkgYCAOcIACGqBkAA6AgAIasGAQClCAAhrAYBAKUIACGtBiAAxQgAIa4GAQDACAAhrwYgAMUIACGxBgAA_AmxBiIQgwUCAIgKACGEBQIAiAoAIZcFAQCcCgAhmAVAAJ0KACGkBQIAiAoAIdMFAQCHCgAh5AUBAIcKACH-BQEAhwoAIZIGAgCICgAhqgZAAJ0KACGrBgEAhwoAIawGAQCHCgAhrQYgALoKACGuBgEAnAoAIa8GIAC6CgAhsQYAALkNsQYiAdAGAAAAsQYCFgMAALwNACAEAAC7DQAgBwAAvQ0AIAgAAL8NACAYAAC-DQAgGQAAwA0AIIMFAgCICgAhhAUCAIgKACGXBQEAnAoAIZgFQACdCgAhpAUCAIgKACHTBQEAhwoAIeQFAQCHCgAh_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_w0AIAIAAAD9DQAgPQAA_g0AIAmABQAA_A0AMIEFAAD9DQAQggUAAPwNADCDBQIA5wgAIZQFAgDnCAAhlQUQANAJACGWBRAA0AkAIZcFAQDACAAhmAVAAOgIACEJgAUAAPwNADCBBQAA_Q0AEIIFAAD8DQAwgwUCAOcIACGUBQIA5wgAIZUFEADQCQAhlgUQANAJACGXBQEAwAgAIZgFQADoCAAhBYMFAgCICgAhlQUQAJEKACGWBRAAkQoAIZcFAQCcCgAhmAVAAJ0KACEGEQAAnwoAIIMFAgCICgAhlQUQAJEKACGWBRAAkQoAIZcFAQCcCgAhmAVAAJ0KACEGEQAArQoAIIMFAgAAAAGVBRAAAAABlgUQAAAAAZcFAQAAAAGYBUAAAAABFwQAAKgMACAJAACnDAAgCgAAqQwAIA0AAKsMACAQAACsDAAgEwAArQwAIIMFAgAAAAGEBQIAAAABlwUBAAAAAZgFQAAAAAGjBUAAAAABpAUCAAAAAdMFAAAA-wUC8QUCAAAAAfIFAgAAAAHzBRAAAAAB9AUQAAAAAfUFEAAAAAH2BRAAAAAB9wUQAAAAAfgFEAAAAAH5BRAAAAAB-wUBAAAAAQIAAAAcACBEAACMDgAgAwAAABwAIEQAAIwOACBFAACLDgAgAT0AAKESADAcBAAAngkAIAkAANkJACAKAACvCQAgCwAAzgkAIA0AANsJACAQAADhCQAgEwAA0gkAIIAFAADfCQAwgQUAABoAEIIFAADfCQAwgwUCAAAAAYQFAgDnCAAhlAUCAOoIACGXBQEAwAgAIZgFQADoCAAhowVAAOgIACGkBQIA5wgAIdMFAADgCfsFIvEFAgAAAAHyBQIA6ggAIfMFEADQCQAh9AUQANAJACH1BRAA0AkAIfYFEADQCQAh9wUQAMwJACH4BRAA0AkAIfkFEADQCQAh-wUBAMAIACECAAAAHAAgPQAAiw4AIAIAAACJDgAgPQAAig4AIBWABQAAiA4AMIEFAACJDgAQggUAAIgOADCDBQIA5wgAIYQFAgDnCAAhlAUCAOoIACGXBQEAwAgAIZgFQADoCAAhowVAAOgIACGkBQIA5wgAIdMFAADgCfsFIvEFAgDqCAAh8gUCAOoIACHzBRAA0AkAIfQFEADQCQAh9QUQANAJACH2BRAA0AkAIfcFEADMCQAh-AUQANAJACH5BRAA0AkAIfsFAQDACAAhFYAFAACIDgAwgQUAAIkOABCCBQAAiA4AMIMFAgDnCAAhhAUCAOcIACGUBQIA6ggAIZcFAQDACAAhmAVAAOgIACGjBUAA6AgAIaQFAgDnCAAh0wUAAOAJ-wUi8QUCAOoIACHyBQIA6ggAIfMFEADQCQAh9AUQANAJACH1BRAA0AkAIfYFEADQCQAh9wUQAMwJACH4BRAA0AkAIfkFEADQCQAh-wUBAMAIACERgwUCAIgKACGEBQIAiAoAIZcFAQCcCgAhmAVAAJ0KACGjBUAAnQoAIaQFAgCICgAh0wUAAPAL-wUi8QUCAPkKACHyBQIA-QoAIfMFEACRCgAh9AUQAJEKACH1BRAAkQoAIfYFEACRCgAh9wUQAO8LACH4BRAAkQoAIfkFEACRCgAh-wUBAJwKACEXBAAA8gsAIAkAAPELACAKAADzCwAgDQAA9QsAIBAAAPYLACATAAD3CwAggwUCAIgKACGEBQIAiAoAIZcFAQCcCgAhmAVAAJ0KACGjBUAAnQoAIaQFAgCICgAh0wUAAPAL-wUi8QUCAPkKACHyBQIA-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_gUBAAAAAaoGQAAAAAGrBgEAAAABrAYBAAAAAa0GIAAAAAGuBgEAAAABrwYgAAAAAbEGAAAAsQYCA0QAAJQSACDNBgAAlRIAINMGAACQAQAgA0QAAJISACDNBgAAkxIAINMGAAABACAERAAArQ4AMM0GAACuDgAwzwYAALAOACDTBgAAsw0AMAREAACkDgAwzQYAAKUOADDPBgAApw4AINMGAADRDQAwAAAAAAAFRAAAjRIAIEUAAJASACDNBgAAjhIAIM4GAACPEgAg0wYAAAkAIANEAACNEgAgzQYAAI4SACDTBgAACQAgAAAAAAAAAAAAAAVEAACAEgAgRQAAixIAIM0GAACBEgAgzgYAAIoSACDTBgAAAQAgC0QAAKMPADBFAACnDwAwzQYAAKQPADDOBgAApQ8AMM8GAACmDwAg0AYAALMNADDRBgAAsw0AMNIGAACzDQAw0wYAALMNADDUBgAAqA8AMNUGAAC2DQAwC0QAAJoPADBFAACeDwAwzQYAAJsPADDOBgAAnA8AMM8GAACdDwAg0AYAAN0NADDRBgAA3Q0AMNIGAADdDQAw0wYAAN0NADDUBgAAnw8AMNUGAADgDQAwC0QAAJEPADBFAACVDwAwzQYAAJIPADDOBgAAkw8AMM8GAACUDwAg0AYAANENADDRBgAA0Q0AMNIGAADRDQAw0wYAANENADDUBgAAlg8AMNUGAADUDQAwC0QAAIUPADBFAACKDwAwzQYAAIYPADDOBgAAhw8AMM8GAACIDwAg0AYAAIkPADDRBgAAiQ8AMNIGAACJDwAw0wYAAIkPADDUBgAAiw8AMNUGAACMDwAwC0QAAPwOADBFAACADwAwzQYAAP0OADDOBgAA_g4AMM8GAAD_DgAg0AYAAIUOADDRBgAAhQ4AMNIGAACFDgAw0wYAAIUOADDUBgAAgQ8AMNUGAACIDgAwC0QAAPAOADBFAAD1DgAwzQYAAPEOADDOBgAA8g4AMM8GAADzDgAg0AYAAPQOADDRBgAA9A4AMNIGAAD0DgAw0wYAAPQOADDUBgAA9g4AMNUGAAD3DgAwC0QAAOQOADBFAADpDgAwzQYAAOUOADDOBgAA5g4AMM8GAADnDgAg0AYAAOgOADDRBgAA6A4AMNIGAADoDgAw0wYAAOgOADDUBgAA6g4AMNUGAADrDgAwB0QAAN8OACBFAADiDgAgzQYAAOAOACDOBgAA4Q4AINEGAABuACDSBgAAbgAg0wYAALoBACALRAAA1g4AMEUAANoOADDNBgAA1w4AMM4GAADYDgAwzwYAANkOACDQBgAAtwsAMNEGAAC3CwAw0gYAALcLADDTBgAAtwsAMNQGAADbDgAw1QYAALoLADAKAwAAwAsAIBkAAMILACAgAADDCwAgIQAAvwsAIIMFAgAAAAGEBQIAAAABmAVAAAAAAZkFAQAAAAGjBUAAAAAB3QUCAAAAAQIAAAByACBEAADeDgAgAwAAAHIAIEQAAN4OACBFAADdDgAgAT0AAIkSADACAAAAcgAgPQAA3Q4AIAIAAAC7CwAgPQAA3A4AIAaDBQIAiAoAIYQFAgCICgAhmAVAAJ0KACGZBQEAhwoAIaMFQACdCgAh3QUCAPkKACEKAwAApAsAIBkAAKYLACAgAACiCwAgIQAAowsAIIMFAgCICgAhhAUCAIgKACGYBUAAnQoAIZkFAQCHCgAhowVAAJ0KACHdBQIA-QoAIQoDAADACwAgGQAAwgsAICAAAMMLACAhAAC_CwAggwUCAAAAAYQFAgAAAAGYBUAAAAABmQUBAAAAAaMFQAAAAAHdBQIAAAABBgMAAL4KACCDBQIAAAABhAUCAAAAAaMFQAAAAAGlBQEAAAABpgUgAAAAAQIAAAC6AQAgRAAA3w4AIAMAAABuACBEAADfDgAgRQAA4w4AIAgAAABuACADAAC8CgAgPQAA4w4AIIMFAgCICgAhhAUCAIgKACGjBUAAnQoAIaUFAQCHCgAhpgUgALoKACEGAwAAvAoAIIMFAgCICgAhhAUCAIgKACGjBUAAnQoAIaUFAQCHCgAhpgUgALoKACEIgwUCAAAAAaMFQAAAAAHIBQEAAAAByQUBAAAAAcoFAQAAAAHLBQQAAAABzAUBAAAAAc0FQAAAAAECAAAAbAAgRAAA7w4AIAMAAABsACBEAADvDgAgRQAA7g4AIAE9AACIEgAwDQQAAJ4JACCABQAAvQkAMIEFAABqABCCBQAAvQkAMIMFAgAAAAGjBUAA6AgAIaQFAgDnCAAhyAUBAKUIACHJBQEApQgAIcoFAQClCAAhywUEALUJACHMBQEApQgAIc0FQADoCAAhAgAAAGwAID0AAO4OACACAAAA7A4AID0AAO0OACAMgAUAAOsOADCBBQAA7A4AEIIFAADrDgAwgwUCAOcIACGjBUAA6AgAIaQFAgDnCAAhyAUBAKUIACHJBQEApQgAIcoFAQClCAAhywUEALUJACHMBQEApQgAIc0FQADoCAAhDIAFAADrDgAwgQUAAOwOABCCBQAA6w4AMIMFAgDnCAAhowVAAOgIACGkBQIA5wgAIcgFAQClCAAhyQUBAKUIACHKBQEApQgAIcsFBAC1CQAhzAUBAKUIACHNBUAA6AgAIQiDBQIAiAoAIaMFQACdCgAhyAUBAIcKACHJBQEAhwoAIcoFAQCHCgAhywUEAO4KACHMBQEAhwoAIc0FQACdCgAhCIMFAgCICgAhowVAAJ0KACHIBQEAhwoAIckFAQCHCgAhygUBAIcKACHLBQQA7goAIcwFAQCHCgAhzQVAAJ0KACEIgwUCAAAAAaMFQAAAAAHIBQEAAAAByQUBAAAAAcoFAQAAAAHLBQQAAAABzAUBAAAAAc0FQAAAAAEKAwAA_QoAIIMFAgAAAAGEBQIAAAABmAVAAAAAAc8FAAAAzwUC0QUAAADRBQLTBQAAANMFAtQFAQAAAAHVBQIAAAAB1gUBAAAAAQIAAABnACBEAAD7DgAgAwAAAGcAIEQAAPsOACBFAAD6DgAgAT0AAIcSADAPAwAArwkAIAQAAJ4JACCABQAAvgkAMIEFAABlABCCBQAAvgkAMIMFAgAAAAGEBQIA6ggAIZgFQADoCAAhpAUCAOcIACHPBQAAvwnPBSLRBQAAwAnRBSLTBQAAwQnTBSLUBQEAwAgAIdUFAgDqCAAh1gUBAMAIACECAAAAZwAgPQAA-g4AIAIAAAD4DgAgPQAA-Q4AIA2ABQAA9w4AMIEFAAD4DgAQggUAAPcOADCDBQIA5wgAIYQFAgDqCAAhmAVAAOgIACGkBQIA5wgAIc8FAAC_Cc8FItEFAADACdEFItMFAADBCdMFItQFAQDACAAh1QUCAOoIACHWBQEAwAgAIQ2ABQAA9w4AMIEFAAD4DgAQggUAAPcOADCDBQIA5wgAIYQFAgDqCAAhmAVAAOgIACGkBQIA5wgAIc8FAAC_Cc8FItEFAADACdEFItMFAADBCdMFItQFAQDACAAh1QUCAOoIACHWBQEAwAgAIQmDBQIAiAoAIYQFAgD5CgAhmAVAAJ0KACHPBQAA9grPBSLRBQAA9wrRBSLTBQAA-ArTBSLUBQEAnAoAIdUFAgD5CgAh1gUBAJwKACEKAwAA-woAIIMFAgCICgAhhAUCAPkKACGYBUAAnQoAIc8FAAD2Cs8FItEFAAD3CtEFItMFAAD4CtMFItQFAQCcCgAh1QUCAPkKACHWBQEAnAoAIQoDAAD9CgAggwUCAAAAAYQFAgAAAAGYBUAAAAABzwUAAADPBQLRBQAAANEFAtMFAAAA0wUC1AUBAAAAAdUFAgAAAAHWBQEAAAABFwkAAKcMACAKAACpDAAgCwAAqgwAIA0AAKsMACAQAACsDAAgEwAArQwAIIMFAgAAAAGEBQIAAAABlAUCAAAAAZcFAQAAAAGYBUAAAAABowVAAAAAAdMFAAAA-wUC8QUCAAAAAfIFAgAAAAHzBRAAAAAB9AUQAAAAAfUFEAAAAAH2BRAAAAAB9wUQAAAAAfgFEAAAAAH5BRAAAAAB-wUBAAAAAQIAAAAcACBEAACEDwAgAwAAABwAIEQAAIQPACBFAACDDwAgAT0AAIYSADACAAAAHAAgPQAAgw8AIAIAAACJDgAgPQAAgg8AIBGDBQIAiAoAIYQFAgCICgAhlAUCAPkKACGXBQEAnAoAIZgFQACdCgAhowVAAJ0KACHTBQAA8Av7BSLxBQIA-QoAIfIFAgD5CgAh8wUQAJEKACH0BRAAkQoAIfUFEACRCgAh9gUQAJEKACH3BRAA7wsAIfgFEACRCgAh-QUQAJEKACH7BQEAnAoAIRcJAADxCwAgCgAA8wsAIAsAAPQLACANAAD1CwAgEAAA9gsAIBMAAPcLACCDBQIAiAoAIYQFAgCICgAhlAUCAPkKACGXBQEAnAoAIZgFQACdCgAhowVAAJ0KACHTBQAA8Av7BSLxBQIA-QoAIfIFAgD5CgAh8wUQAJEKACH0BRAAkQoAIfUFEACRCgAh9gUQAJEKACH3BRAA7wsAIfgFEACRCgAh-QUQAJEKACH7BQEAnAoAIRcJAACnDAAgCgAAqQwAIAsAAKoMACANAACrDAAgEAAArAwAIBMAAK0MACCDBQIAAAABhAUCAAAAAZQFAgAAAAGXBQEAAAABmAVAAAAAAaMFQAAAAAHTBQAAAPsFAvEFAgAAAAHyBQIAAAAB8wUQAAAAAfQFEAAAAAH1BRAAAAAB9gUQAAAAAfcFEAAAAAH4BRAAAAAB-QUQAAAAAfsFAQAAAAEFGwAAygwAIIMFAgAAAAGYBUAAAAAB_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_gUBAAAAAZIGAgAAAAGqBkAAAAABqwYBAAAAAawGAQAAAAGtBiAAAAABrgYBAAAAAa8GIAAAAAGxBgAAALEGAgIAAAAJACBEAACrDwAgAwAAAAkAIEQAAKsPACBFAACqDwAgAT0AAIISADACAAAACQAgPQAAqg8AIAIAAAC3DQAgPQAAqQ8AIBCDBQIAiAoAIYQFAgCICgAhlAUCAPkKACGXBQEAnAoAIZgFQACdCgAh0wUBAIcKACHkBQEAhwoAIf4FAQCHCgAhkgYCAIgKACGqBkAAnQoAIasGAQCHCgAhrAYBAIcKACGtBiAAugoAIa4GAQCcCgAhrwYgALoKACGxBgAAuQ2xBiIWAwAAvA0AIAcAAL0NACAIAAC_DQAgCwAAtQ4AIBgAAL4NACAZAADADQAggwUCAIgKACGEBQIAiAoAIZQFAgD5CgAhlwUBAJwKACGYBUAAnQoAIdMFAQCHCgAh5AUBAIcKACH-BQEAhwoAIZIGAgCICgAhqgZAAJ0KACGrBgEAhwoAIawGAQCHCgAhrQYgALoKACGuBgEAnAoAIa8GIAC6CgAhsQYAALkNsQYiFgMAAOcNACAHAADoDQAgCAAA6g0AIAsAALcOACAYAADpDQAgGQAA6w0AIIMFAgAAAAGEBQIAAAABlAUCAAAAAZcFAQAAAAGYBUAAAAAB0wUBAAAAAeQFAQAAAAH-BQEAAAABkgYCAAAAAaoGQAAAAAGrBgEAAAABrAYBAAAAAa0GIAAAAAGuBgEAAAABrwYgAAAAAbEGAAAAsQYCA0QAAIASACDNBgAAgRIAINMGAAABACAERAAAow8AMM0GAACkDwAwzwYAAKYPACDTBgAAsw0AMAREAACaDwAwzQYAAJsPADDPBgAAnQ8AINMGAADdDQAwBEQAAJEPADDNBgAAkg8AMM8GAACUDwAg0wYAANENADAERAAAhQ8AMM0GAACGDwAwzwYAAIgPACDTBgAAiQ8AMAREAAD8DgAwzQYAAP0OADDPBgAA_w4AINMGAACFDgAwBEQAAPAOADDNBgAA8Q4AMM8GAADzDgAg0wYAAPQOADAERAAA5A4AMM0GAADlDgAwzwYAAOcOACDTBgAA6A4AMANEAADfDgAgzQYAAOAOACDTBgAAugEAIAREAADWDgAwzQYAANcOADDPBgAA2Q4AINMGAAC3CwAwAAAAAAALRAAAnhEAMEUAAKMRADDNBgAAnxEAMM4GAACgEQAwzwYAAKERACDQBgAAohEAMNEGAACiEQAw0gYAAKIRADDTBgAAohEAMNQGAACkEQAw1QYAAKURADALRAAAlREAMEUAAJkRADDNBgAAlhEAMM4GAACXEQAwzwYAAJgRACDQBgAAsw0AMNEGAACzDQAw0gYAALMNADDTBgAAsw0AMNQGAACaEQAw1QYAALYNADALRAAAiREAMEUAAI4RADDNBgAAihEAMM4GAACLEQAwzwYAAIwRACDQBgAAjREAMNEGAACNEQAw0gYAAI0RADDTBgAAjREAMNQGAACPEQAw1QYAAJARADALRAAA_RAAMEUAAIIRADDNBgAA_hAAMM4GAAD_EAAwzwYAAIARACDQBgAAgREAMNEGAACBEQAw0gYAAIERADDTBgAAgREAMNQGAACDEQAw1QYAAIQRADALRAAA9BAAMEUAAPgQADDNBgAA9RAAMM4GAAD2EAAwzwYAAPcQACDQBgAA0Q0AMNEGAADRDQAw0gYAANENADDTBgAA0Q0AMNQGAAD5EAAw1QYAANQNADALRAAA6BAAMEUAAO0QADDNBgAA6RAAMM4GAADqEAAwzwYAAOsQACDQBgAA7BAAMNEGAADsEAAw0gYAAOwQADDTBgAA7BAAMNQGAADuEAAw1QYAAO8QADALRAAA3BAAMEUAAOEQADDNBgAA3RAAMM4GAADeEAAwzwYAAN8QACDQBgAA4BAAMNEGAADgEAAw0gYAAOAQADDTBgAA4BAAMNQGAADiEAAw1QYAAOMQADALRAAA0xAAMEUAANcQADDNBgAA1BAAMM4GAADVEAAwzwYAANYQACDQBgAAhQ4AMNEGAACFDgAw0gYAAIUOADDTBgAAhQ4AMNQGAADYEAAw1QYAAIgOADALRAAAxxAAMEUAAMwQADDNBgAAyBAAMM4GAADJEAAwzwYAAMoQACDQBgAAyxAAMNEGAADLEAAw0gYAAMsQADDTBgAAyxAAMNQGAADNEAAw1QYAAM4QADALRAAAuxAAMEUAAMAQADDNBgAAvBAAMM4GAAC9EAAwzwYAAL4QACDQBgAAvxAAMNEGAAC_EAAw0gYAAL8QADDTBgAAvxAAMNQGAADBEAAw1QYAAMIQADALRAAArxAAMEUAALQQADDNBgAAsBAAMM4GAACxEAAwzwYAALIQACDQBgAAsxAAMNEGAACzEAAw0gYAALMQADDTBgAAsxAAMNQGAAC1EAAw1QYAALYQADALRAAAphAAMEUAAKoQADDNBgAApxAAMM4GAACoEAAwzwYAAKkQACDQBgAAtwsAMNEGAAC3CwAw0gYAALcLADDTBgAAtwsAMNQGAACrEAAw1QYAALoLADALRAAAnRAAMEUAAKEQADDNBgAAnhAAMM4GAACfEAAwzwYAAKAQACDQBgAAqwsAMNEGAACrCwAw0gYAAKsLADDTBgAAqwsAMNQGAACiEAAw1QYAAK4LADALRAAAlBAAMEUAAJgQADDNBgAAlRAAMM4GAACWEAAwzwYAAJcQACDQBgAA9A4AMNEGAAD0DgAw0gYAAPQOADDTBgAA9A4AMNQGAACZEAAw1QYAAPcOADAHRAAAjxAAIEUAAJIQACDNBgAAkBAAIM4GAACREAAg0QYAAKsBACDSBgAAqwEAINMGAACeBgAgB0QAAIoQACBFAACNEAAgzQYAAIsQACDOBgAAjBAAINEGAACtAQAg0gYAAK0BACDTBgAAtgYAIAdEAACFEAAgRQAAiBAAIM0GAACGEAAgzgYAAIcQACDRBgAArwEAINIGAACvAQAg0wYAAM4GACAHRAAAgBAAIEUAAIMQACDNBgAAgRAAIM4GAACCEAAg0QYAALEBACDSBgAAsQEAINMGAADmBgAgB0QAAPsPACBFAAD-DwAgzQYAAPwPACDOBgAA_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-w8AIAMAAACzAQAgRAAA-w8AIEUAAP8PACADAAAAswEAID2AAP8PACGDBQIAiAoAIQI9gAAAAAGDBQIAiAoAIQuDBQIAAAABrQUBAAAAAa4FAQAAAAGvBQEAAAABsAUBAAAAAbEFAQAAAAGyBQEAAAABswUBAAAAAbQFAQAAAAG1BQEAAAABtgUBAAAAAQIAAADmBgAgRAAAgBAAIAMAAACxAQAgRAAAgBAAIEUAAIQQACANAAAAsQEAID0AAIQQACCDBQIAiAoAIa0FAQCcCgAhrgUBAJwKACGvBQEAnAoAIbAFAQCcCgAhsQUBAJwKACGyBQEAnAoAIbMFAQCcCgAhtAUBAJwKACG1BQEAnAoAIbYFAQCcCgAhC4MFAgCICgAhrQUBAJwKACGuBQEAnAoAIa8FAQCcCgAhsAUBAJwKACGxBQEAnAoAIbIFAQCcCgAhswUBAJwKACG0BQEAnAoAIbUFAQCcCgAhtgUBAJwKACECPYAAAAABgwUCAAAAAQIAAADOBgAgRAAAhRAAIAMAAACvAQAgRAAAhRAAIEUAAIkQACADAAAArwEAID2AAIkQACGDBQIAiAoAIQI9gAAAAAGDBQIAiAoAIQ6DBQIAAAABtwUBAAAAAbgFIAAAAAG5BQEAAAABugUgAAAAAbsFAQAAAAG8BSAAAAABvQUBAAAAAb4FAQAAAAG_BQEAAAABwAUBAAAAAcEFIAAAAAHCBSAAAAABwwUgAAAAAQIAAAC2BgAgRAAAihAAIAMAAACtAQAgRAAAihAAIEUAAI4QACAQAAAArQEAID0AAI4QACCDBQIAiAoAIbcFAQCHCgAhuAUgALoKACG5BQEAhwoAIboFIAC6CgAhuwUBAIcKACG8BSAAugoAIb0FAQCHCgAhvgUBAIcKACG_BQEAhwoAIcAFAQCHCgAhwQUgALoKACHCBSAAugoAIcMFIAC6CgAhDoMFAgCICgAhtwUBAIcKACG4BSAAugoAIbkFAQCHCgAhugUgALoKACG7BQEAhwoAIbwFIAC6CgAhvQUBAIcKACG-BQEAhwoAIb8FAQCHCgAhwAUBAIcKACHBBSAAugoAIcIFIAC6CgAhwwUgALoKACEGgwUCAAAAAa0FAQAAAAHEBQEAAAABxQUBAAAAAcYFAQAAAAHHBYAAAAABAgAAAJ4GACBEAACPEAAgAwAAAKsBACBEAACPEAAgRQAAkxAAIAgAAACrAQAgPQAAkxAAIIMFAgCICgAhrQUBAIcKACHEBQEAhwoAIcUFAQCHCgAhxgUBAJwKACHHBYAAAAABBoMFAgCICgAhrQUBAIcKACHEBQEAhwoAIcUFAQCHCgAhxgUBAJwKACHHBYAAAAABCgQAAPwKACCDBQIAAAABmAVAAAAAAaQFAgAAAAHPBQAAAM8FAtEFAAAA0QUC0wUAAADTBQLUBQEAAAAB1QUCAAAAAdYFAQAAAAECAAAAZwAgRAAAnBAAIAMAAABnACBEAACcEAAgRQAAmxAAIAE9AAD8EQAwAgAAAGcAID0AAJsQACACAAAA-A4AID0AAJoQACAJgwUCAIgKACGYBUAAnQoAIaQFAgCICgAhzwUAAPYKzwUi0QUAAPcK0QUi0wUAAPgK0wUi1AUBAJwKACHVBQIA-QoAIdYFAQCcCgAhCgQAAPoKACCDBQIAiAoAIZgFQACdCgAhpAUCAIgKACHPBQAA9grPBSLRBQAA9wrRBSLTBQAA-ArTBSLUBQEAnAoAIdUFAgD5CgAh1gUBAJwKACEKBAAA_AoAIIMFAgAAAAGYBUAAAAABpAUCAAAAAc8FAAAAzwUC0QUAAADRBQLTBQAAANMFAtQFAQAAAAHVBQIAAAAB1gUBAAAAAQwiAACbCwAgJAAAnAsAIIMFAgAAAAGYBUAAAAABmQUBAAAAAaMFQAAAAAHKBQEAAAABywUEAAAAAdkFAgAAAAHaBSAAAAAB2wUCAAAAAdwFAQAAAAECAAAAeQAgRAAApRAAIAMAAAB5ACBEAAClEAAgRQAApBAAIAE9AAD7EQAwAgAAAHkAID0AAKQQACACAAAArwsAID0AAKMQACAKgwUCAIgKACGYBUAAnQoAIZkFAQCHCgAhowVAAJ0KACHKBQEAnAoAIcsFBADuCgAh2QUCAPkKACHaBSAAugoAIdsFAgD5CgAh3AUBAJwKACEMIgAAjAsAICQAAI0LACCDBQIAiAoAIZgFQACdCgAhmQUBAIcKACGjBUAAnQoAIcoFAQCcCgAhywUEAO4KACHZBQIA-QoAIdoFIAC6CgAh2wUCAPkKACHcBQEAnAoAIQwiAACbCwAgJAAAnAsAIIMFAgAAAAGYBUAAAAABmQUBAAAAAaMFQAAAAAHKBQEAAAABywUEAAAAAdkFAgAAAAHaBSAAAAAB2wUCAAAAAdwFAQAAAAEKBAAAwQsAIBkAAMILACAgAADDCwAgIQAAvwsAIIMFAgAAAAGYBUAAAAABmQUBAAAAAaMFQAAAAAGkBQIAAAAB3QUCAAAAAQIAAAByACBEAACuEAAgAwAAAHIAIEQAAK4QACBFAACtEAAgAT0AAPoRADACAAAAcgAgPQAArRAAIAIAAAC7CwAgPQAArBAAIAaDBQIAiAoAIZgFQACdCgAhmQUBAIcKACGjBUAAnQoAIaQFAgD5CgAh3QUCAPkKACEKBAAApQsAIBkAAKYLACAgAACiCwAgIQAAowsAIIMFAgCICgAhmAVAAJ0KACGZBQEAhwoAIaMFQACdCgAhpAUCAPkKACHdBQIA-QoAIQoEAADBCwAgGQAAwgsAICAAAMMLACAhAAC_CwAggwUCAAAAAZgFQAAAAAGZBQEAAAABowVAAAAAAaQFAgAAAAHdBQIAAAABBYMFAgAAAAGYBUAAAAAB5AUAAADkBQLlBQEAAAAB5gUgAAAAAQIAAACmAQAgRAAAuhAAIAMAAACmAQAgRAAAuhAAIEUAALkQACABPQAA-REAMAoDAACmCAAggAUAAKAJADCBBQAApAEAEIIFAACgCQAwgwUCAAAAAYQFAgDnCAAhmAVAAOgIACHkBQAAoQnkBSLlBQEApQgAIeYFIADFCAAhAgAAAKYBACA9AAC5EAAgAgAAALcQACA9AAC4EAAgCYAFAAC2EAAwgQUAALcQABCCBQAAthAAMIMFAgDnCAAhhAUCAOcIACGYBUAA6AgAIeQFAAChCeQFIuUFAQClCAAh5gUgAMUIACEJgAUAALYQADCBBQAAtxAAEIIFAAC2EAAwgwUCAOcIACGEBQIA5wgAIZgFQADoCAAh5AUAAKEJ5AUi5QUBAKUIACHmBSAAxQgAIQWDBQIAiAoAIZgFQACdCgAh5AUAAM8L5AUi5QUBAIcKACHmBSAAugoAIQWDBQIAiAoAIZgFQACdCgAh5AUAAM8L5AUi5QUBAIcKACHmBSAAugoAIQWDBQIAAAABmAVAAAAAAeQFAAAA5AUC5QUBAAAAAeYFIAAAAAEEgwUCAAAAAZgFQAAAAAHnBQEAAAAB6AUgAAAAAQIAAACiAQAgRAAAxhAAIAMAAACiAQAgRAAAxhAAIEUAAMUQACABPQAA-BEAMAkDAACmCAAggAUAAKIJADCBBQAAoAEAEIIFAACiCQAwgwUCAAAAAYQFAgDnCAAhmAVAAOgIACHnBQEApQgAIegFIADFCAAhAgAAAKIBACA9AADFEAAgAgAAAMMQACA9AADEEAAgCIAFAADCEAAwgQUAAMMQABCCBQAAwhAAMIMFAgDnCAAhhAUCAOcIACGYBUAA6AgAIecFAQClCAAh6AUgAMUIACEIgAUAAMIQADCBBQAAwxAAEIIFAADCEAAwgwUCAOcIACGEBQIA5wgAIZgFQADoCAAh5wUBAKUIACHoBSAAxQgAIQSDBQIAiAoAIZgFQACdCgAh5wUBAIcKACHoBSAAugoAIQSDBQIAiAoAIZgFQACdCgAh5wUBAIcKACHoBSAAugoAIQSDBQIAAAABmAVAAAAAAecFAQAAAAHoBSAAAAABAoMFAgAAAAGYBUAAAAABAgAAAJ4BACBEAADSEAAgAwAAAJ4BACBEAADSEAAgRQAA0RAAIAE9AAD3EQAwBwMAAKYIACCABQAAowkAMIEFAACcAQAQggUAAKMJADCDBQIAAAABhAUCAOcIACGYBUAA6AgAIQIAAACeAQAgPQAA0RAAIAIAAADPEAAgPQAA0BAAIAaABQAAzhAAMIEFAADPEAAQggUAAM4QADCDBQIA5wgAIYQFAgDnCAAhmAVAAOgIACEGgAUAAM4QADCBBQAAzxAAEIIFAADOEAAwgwUCAOcIACGEBQIA5wgAIZgFQADoCAAhAoMFAgCICgAhmAVAAJ0KACECgwUCAIgKACGYBUAAnQoAIQKDBQIAAAABmAVAAAAAARcEAACoDAAgCQAApwwAIAsAAKoMACANAACrDAAgEAAArAwAIBMAAK0MACCDBQIAAAABhAUCAAAAAZQFAgAAAAGXBQEAAAABmAVAAAAAAaMFQAAAAAGkBQIAAAAB0wUAAAD7BQLxBQIAAAAB8wUQAAAAAfQFEAAAAAH1BRAAAAAB9gUQAAAAAfcFEAAAAAH4BRAAAAAB-QUQAAAAAfsFAQAAAAECAAAAHAAgRAAA2xAAIAMAAAAcACBEAADbEAAgRQAA2hAAIAE9AAD2EQAwAgAAABwAID0AANoQACACAAAAiQ4AID0AANkQACARgwUCAIgKACGEBQIAiAoAIZQFAgD5CgAhlwUBAJwKACGYBUAAnQoAIaMFQACdCgAhpAUCAIgKACHTBQAA8Av7BSLxBQIA-QoAIfMFEACRCgAh9AUQAJEKACH1BRAAkQoAIfYFEACRCgAh9wUQAO8LACH4BRAAkQoAIfkFEACRCgAh-wUBAJwKACEXBAAA8gsAIAkAAPELACALAAD0CwAgDQAA9QsAIBAAAPYLACATAAD3CwAggwUCAIgKACGEBQIAiAoAIZQFAgD5CgAhlwUBAJwKACGYBUAAnQoAIaMFQACdCgAhpAUCAIgKACHTBQAA8Av7BSLxBQIA-QoAIfMFEACRCgAh9AUQAJEKACH1BRAAkQoAIfYFEACRCgAh9wUQAO8LACH4BRAAkQoAIfkFEACRCgAh-wUBAJwKACEXBAAAqAwAIAkAAKcMACALAACqDAAgDQAAqwwAIBAAAKwMACATAACtDAAggwUCAAAAAYQFAgAAAAGUBQIAAAABlwUBAAAAAZgFQAAAAAGjBUAAAAABpAUCAAAAAdMFAAAA-wUC8QUCAAAAAfMFEAAAAAH0BRAAAAAB9QUQAAAAAfYFEAAAAAH3BRAAAAAB-AUQAAAAAfkFEAAAAAH7BQEAAAABBYMFAgAAAAGBBgEAAAABggYBAAAAAYMGAQAAAAGEBgEAAAABAgAAAJkBACBEAADnEAAgAwAAAJkBACBEAADnEAAgRQAA5hAAIAE9AAD1EQAwCgMAAKYIACCABQAApAkAMIEFAACXAQAQggUAAKQJADCDBQIAAAABhAUCAOcIACGBBgEApQgAIYIGAQClCAAhgwYBAKUIACGEBgEApQgAIQIAAACZAQAgPQAA5hAAIAIAAADkEAAgPQAA5RAAIAmABQAA4xAAMIEFAADkEAAQggUAAOMQADCDBQIA5wgAIYQFAgDnCAAhgQYBAKUIACGCBgEApQgAIYMGAQClCAAhhAYBAKUIACEJgAUAAOMQADCBBQAA5BAAEIIFAADjEAAwgwUCAOcIACGEBQIA5wgAIYEGAQClCAAhggYBAKUIACGDBgEApQgAIYQGAQClCAAhBYMFAgCICgAhgQYBAIcKACGCBgEAhwoAIYMGAQCHCgAhhAYBAIcKACEFgwUCAIgKACGBBgEAhwoAIYIGAQCHCgAhgwYBAIcKACGEBgEAhwoAIQWDBQIAAAABgQYBAAAAAYIGAQAAAAGDBgEAAAABhAYBAAAAAQSDBQIAAAABhQYBAAAAAYYGAQAAAAGHBgEAAAABAgAAAJUBACBEAADzEAAgAwAAAJUBACBEAADzEAAgRQAA8hAAIAE9AAD0EQAwCgMAAKYIACCABQAApgkAMIEFAACTAQAQggUAAKYJADCDBQIAAAABhAUCAOcIACGFBgEApQgAIYYGAQClCAAhhwYBAKUIACHDBgAApQkAIAIAAACVAQAgPQAA8hAAIAIAAADwEAAgPQAA8RAAIAiABQAA7xAAMIEFAADwEAAQggUAAO8QADCDBQIA5wgAIYQFAgDnCAAhhQYBAKUIACGGBgEApQgAIYcGAQClCAAhCIAFAADvEAAwgQUAAPAQABCCBQAA7xAAMIMFAgDnCAAhhAUCAOcIACGFBgEApQgAIYYGAQClCAAhhwYBAKUIACEEgwUCAIgKACGFBgEAhwoAIYYGAQCHCgAhhwYBAIcKACEEgwUCAIgKACGFBgEAhwoAIYYGAQCHCgAhhwYBAIcKACEEgwUCAAAAAYUGAQAAAAGGBgEAAAABhwYBAAAAARkEAACQDQAgBgAAkQ0AIAcAAJMNACALAACUDQAgDAAAlw0AIBAAAJUNACAXAACWDQAggwUCAAAAAZQFAgAAAAGYBUAAAAABowVAAAAAAaQFAgAAAAHTBQAAAJ0GApEGAgAAAAGSBgIAAAABkwYBAAAAAZQGAQAAAAGVBkAAAAABlgYBAAAAAZgGAAAAmAYCmQaAAAAAAZoGQAAAAAGbBgEAAAABnQYBAAAAAZ4GAQAAAAECAAAAEgAgRAAA_BAAIAMAAAASACBEAAD8EAAgRQAA-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_gUBAIcKACGSBgIAiAoAIaoGQACdCgAhqwYBAIcKACGsBgEAhwoAIa0GIAC6CgAhrgYBAJwKACGvBiAAugoAIbEGAAC5DbEGIhYEAADmDQAgBwAA6A0AIAgAAOoNACALAAC3DgAgGAAA6Q0AIBkAAOsNACCDBQIAAAABlAUCAAAAAZcFAQAAAAGYBUAAAAABpAUCAAAAAdMFAQAAAAHkBQEAAAAB_gUBAAAAAZIGAgAAAAGqBkAAAAABqwYBAAAAAawGAQAAAAGtBiAAAAABrgYBAAAAAa8GIAAAAAGxBgAAALEGAh0FAACtDwAgCAAArw8AIAwAALEPACAYAACuDwAgHAAAsA8AIB0AALIPACAeAACzDwAgHwAAtA8AICUAALUPACCDBQIAAAABmAVAAAAAAaMFQAAAAAGxBQEAAAABtAUBAAAAAbYFAQAAAAHTBQAAALEGApUGQAAAAAGbBgEAAAABqQYBAAAAAbIGAQAAAAGzBgEAAAABtAYBAAAAAbUGAQAAAAG2BgEAAAABtwYBAAAAAbgGAQAAAAG5BgEAAAABugYBAAAAAbsGAQAAAAECAAAABQAgRAAAqREAIAMAAAAFACBEAACpEQAgRQAAqBEAIAE9AADvEQAwIgMAAKYIACAFAACtCQAgCAAAqQkAIAwAAKoJACAYAACsCQAgHAAA_wkAIB0AAPEJACAeAACACgAgHwAAgQoAICUAALoJACCABQAA_gkAMIEFAAADABCCBQAA_gkAMIMFAgAAAAGEBQIA5wgAIZgFQADoCAAhowVAAOgIACGxBQEAwAgAIbQFAQDACAAhtgUBAMAIACHTBQAA_AmxBiKVBkAA6QgAIZsGAQDACAAhqQYBAKUIACGyBgEApQgAIbMGAQClCAAhtAYBAKUIACG1BgEAwAgAIbYGAQDACAAhtwYBAMAIACG4BgEAwAgAIbkGAQDACAAhugYBAMAIACG7BgEAwAgAIQIAAAAFACA9AACoEQAgAgAAAKYRACA9AACnEQAgGIAFAAClEQAwgQUAAKYRABCCBQAApREAMIMFAgDnCAAhhAUCAOcIACGYBUAA6AgAIaMFQADoCAAhsQUBAMAIACG0BQEAwAgAIbYFAQDACAAh0wUAAPwJsQYilQZAAOkIACGbBgEAwAgAIakGAQClCAAhsgYBAKUIACGzBgEApQgAIbQGAQClCAAhtQYBAMAIACG2BgEAwAgAIbcGAQDACAAhuAYBAMAIACG5BgEAwAgAIboGAQDACAAhuwYBAMAIACEYgAUAAKURADCBBQAAphEAEIIFAAClEQAwgwUCAOcIACGEBQIA5wgAIZgFQADoCAAhowVAAOgIACGxBQEAwAgAIbQFAQDACAAhtgUBAMAIACHTBQAA_AmxBiKVBkAA6QgAIZsGAQDACAAhqQYBAKUIACGyBgEApQgAIbMGAQClCAAhtAYBAKUIACG1BgEAwAgAIbYGAQDACAAhtwYBAMAIACG4BgEAwAgAIbkGAQDACAAhugYBAMAIACG7BgEAwAgAIRSDBQIAiAoAIZgFQACdCgAhowVAAJ0KACGxBQEAnAoAIbQFAQCcCgAhtgUBAJwKACHTBQAAuQ2xBiKVBkAAyQsAIZsGAQCcCgAhqQYBAIcKACGyBgEAhwoAIbMGAQCHCgAhtAYBAIcKACG1BgEAnAoAIbYGAQCcCgAhtwYBAJwKACG4BgEAnAoAIbkGAQCcCgAhugYBAJwKACG7BgEAnAoAIR0FAADNDgAgCAAAzw4AIAwAANEOACAYAADODgAgHAAA0A4AIB0AANIOACAeAADTDgAgHwAA1A4AICUAANUOACCDBQIAiAoAIZgFQACdCgAhowVAAJ0KACGxBQEAnAoAIbQFAQCcCgAhtgUBAJwKACHTBQAAuQ2xBiKVBkAAyQsAIZsGAQCcCgAhqQYBAIcKACGyBgEAhwoAIbMGAQCHCgAhtAYBAIcKACG1BgEAnAoAIbYGAQCcCgAhtwYBAJwKACG4BgEAnAoAIbkGAQCcCgAhugYBAJwKACG7BgEAnAoAIR0FAACtDwAgCAAArw8AIAwAALEPACAYAACuDwAgHAAAsA8AIB0AALIPACAeAACzDwAgHwAAtA8AICUAALUPACCDBQIAAAABmAVAAAAAAaMFQAAAAAGxBQEAAAABtAUBAAAAAbYFAQAAAAHTBQAAALEGApUGQAAAAAGbBgEAAAABqQYBAAAAAbIGAQAAAAGzBgEAAAABtAYBAAAAAbUGAQAAAAG2BgEAAAABtwYBAAAAAbgGAQAAAAG5BgEAAAABugYBAAAAAbsGAQAAAAEERAAAnhEAMM0GAACfEQAwzwYAAKERACDTBgAAohEAMAREAACVEQAwzQYAAJYRADDPBgAAmBEAINMGAACzDQAwBEQAAIkRADDNBgAAihEAMM8GAACMEQAg0wYAAI0RADAERAAA_RAAMM0GAAD-EAAwzwYAAIARACDTBgAAgREAMAREAAD0EAAwzQYAAPUQADDPBgAA9xAAINMGAADRDQAwBEQAAOgQADDNBgAA6RAAMM8GAADrEAAg0wYAAOwQADAERAAA3BAAMM0GAADdEAAwzwYAAN8QACDTBgAA4BAAMAREAADTEAAwzQYAANQQADDPBgAA1hAAINMGAACFDgAwBEQAAMcQADDNBgAAyBAAMM8GAADKEAAg0wYAAMsQADAERAAAuxAAMM0GAAC8EAAwzwYAAL4QACDTBgAAvxAAMAREAACvEAAwzQYAALAQADDPBgAAshAAINMGAACzEAAwBEQAAKYQADDNBgAApxAAMM8GAACpEAAg0wYAALcLADAERAAAnRAAMM0GAACeEAAwzwYAAKAQACDTBgAAqwsAMAREAACUEAAwzQYAAJUQADDPBgAAlxAAINMGAAD0DgAwA0QAAI8QACDNBgAAkBAAINMGAACeBgAgA0QAAIoQACDNBgAAixAAINMGAAC2BgAgA0QAAIUQACDNBgAAhhAAINMGAADOBgAgA0QAAIAQACDNBgAAgRAAINMGAADmBgAgA0QAAPsPACDNBgAA_A8AINMGAACUBwAgBEQAAO8PADDNBgAA8A8AMM8GAADyDwAg0wYAAPMPADAERAAA4w8AMM0GAADkDwAwzwYAAOYPACDTBgAA5w8AMAREAADXDwAwzQYAANgPADDPBgAA2g8AINMGAADbDwAwA0QAANIPACDNBgAA0w8AINMGAACECAAgAAAAAAAAAAAAAAAAAAADAwAAiwoAIMYFAACWCgAgxwUAAJYKACABAwAAiwoAIAEDAACLCgAgCwMAAIsKACCtBQAAlgoAIK4FAACWCgAgrwUAAJYKACCwBQAAlgoAILEFAACWCgAgsgUAAJYKACCzBQAAlgoAILQFAACWCgAgtQUAAJYKACC2BQAAlgoAIAEDAACLCgAgAAAAAQMAAIsKACAWAwAAiwoAIAUAAMIRACAIAADFEQAgDAAAyBEAIBgAANoRACAcAADsEQAgHQAAzhEAIB4AAO0RACAfAADuEQAgJQAAzBEAILEFAACWCgAgtAUAAJYKACC2BQAAlgoAIJUGAACWCgAgmwYAAJYKACC1BgAAlgoAILYGAACWCgAgtwYAAJYKACC4BgAAlgoAILkGAACWCgAgugYAAJYKACC7BgAAlgoAIAAABwMAAIsKACAiAADcEQAgJAAA3REAIMoFAACWCgAg2QUAAJYKACDbBQAAlgoAINwFAACWCgAgBwMAAIsKACAEAADYEQAgGQAAzREAICAAANwRACAhAADMEQAgpAUAAJYKACDdBQAAlgoAIAACBAAA2BEAIBsAAN8RACAACgMAAIsKACAEAADYEQAgBwAA6REAIAgAAMURACALAADiEQAgGAAA2hEAIBkAAOsRACCUBQAAlgoAIJcFAACWCgAgrgYAAJYKACANAwAAiwoAIAQAANgRACAGAADgEQAgBwAA6REAIAsAAOIRACAMAADlEQAgEAAA6BEAIBcAAOoRACCUBQAAlgoAIJEGAACWCgAgmQYAAJYKACCdBgAAlgoAIJ4GAACWCgAgBgMAAIsKACAFAADCEQAgCAAAxREAIBQAAMgRACAVAADZEQAgFgAA2hEAIAADCwAA4hEAIBEAAOMRACCXBQAAlgoAIA0EAADYEQAgCQAA4REAIAoAAIsKACALAADiEQAgDQAA5hEAIBAAAOgRACATAADjEQAglAUAAJYKACCXBQAAlgoAIPEFAACWCgAg8gUAAJYKACD3BQAAlgoAIPsFAACWCgAgAAwJAADhEQAgDAAA5REAIA0AAOYRACCSBQAAlgoAIPEFAACWCgAg-wUAAJYKACCKBgAAlgoAIIsGAACWCgAgjAYAAJYKACCNBgAAlgoAII4GAACWCgAgjwYAAJYKACAABQMAAIsKACAFAADCEQAgCAAAxREAILEFAACWCgAgqQYAAJYKACAAAAAAAgMAAIsKACAEAADYEQAgFIMFAgAAAAGYBUAAAAABowVAAAAAAbEFAQAAAAG0BQEAAAABtgUBAAAAAdMFAAAAsQYClQZAAAAAAZsGAQAAAAGpBgEAAAABsgYBAAAAAbMGAQAAAAG0BgEAAAABtQYBAAAAAbYGAQAAAAG3BgEAAAABuAYBAAAAAbkGAQAAAAG6BgEAAAABuwYBAAAAARCDBQIAAAABlAUCAAAAAZcFAQAAAAGYBUAAAAABpAUCAAAAAdMFAQAAAAHkBQEAAAAB_gUBAAAAAZIGAgAAAAGqBkAAAAABqwYBAAAAAawGAQAAAAGtBiAAAAABrgYBAAAAAa8GIAAAAAGxBgAAALEGAgaDBQIAAAABmAVAAAAAAZkFAQAAAAGxBQEAAAABqAYBAAAAAakGAQAAAAEFgwUCAAAAAZgFQAAAAAGiBQIAAAABpgYBAAAAAacGAQAAAAESgwUCAAAAAZQFAgAAAAGYBUAAAAABowVAAAAAAaQFAgAAAAHTBQAAAJ0GApEGAgAAAAGSBgIAAAABkwYBAAAAAZQGAQAAAAGVBkAAAAABlgYBAAAAAZgGAAAAmAYCmQaAAAAAAZoGQAAAAAGbBgEAAAABnQYBAAAAAZ4GAQAAAAEEgwUCAAAAAYUGAQAAAAGGBgEAAAABhwYBAAAAAQWDBQIAAAABgQYBAAAAAYIGAQAAAAGDBgEAAAABhAYBAAAAARGDBQIAAAABhAUCAAAAAZQFAgAAAAGXBQEAAAABmAVAAAAAAaMFQAAAAAGkBQIAAAAB0wUAAAD7BQLxBQIAAAAB8wUQAAAAAfQFEAAAAAH1BRAAAAAB9gUQAAAAAfcFEAAAAAH4BRAAAAAB-QUQAAAAAfsFAQAAAAECgwUCAAAAAZgFQAAAAAEEgwUCAAAAAZgFQAAAAAHnBQEAAAAB6AUgAAAAAQWDBQIAAAABmAVAAAAAAeQFAAAA5AUC5QUBAAAAAeYFIAAAAAEGgwUCAAAAAZgFQAAAAAGZBQEAAAABowVAAAAAAaQFAgAAAAHdBQIAAAABCoMFAgAAAAGYBUAAAAABmQUBAAAAAaMFQAAAAAHKBQEAAAABywUEAAAAAdkFAgAAAAHaBSAAAAAB2wUCAAAAAdwFAQAAAAEJgwUCAAAAAZgFQAAAAAGkBQIAAAABzwUAAADPBQLRBQAAANEFAtMFAAAA0wUC1AUBAAAAAdUFAgAAAAHWBQEAAAABBIMFAgAAAAGYBUAAAAABmQUBAAAAAa0FAQAAAAEFgwUCAAAAAaMFQAAAAAGkBQIAAAABpQUBAAAAAaYFIAAAAAENgwUCAAAAAZgFQAAAAAGZBQEAAAABmgUBAAAAAZsFAQAAAAGcBQEAAAABnQUBAAAAAZ4FAQAAAAGfBQEAAAABoAUBAAAAAaEFAQAAAAGiBQIAAAABowVAAAAAASAFAACrEQAgBwAArBEAIAgAAK4RACAdAAC3EQAgJQAAtREAICcAAK0RACAoAACvEQAgKQAAsBEAICoAALERACArAACyEQAgLAAAsxEAIC0AALQRACAuAAC2EQAgLwAAuBEAIDAAALkRACAxAAC6EQAgMgAAuxEAIDMAALwRACA0AAC9EQAgNQAAvhEAIDYAAL8RACA3AADAEQAggwUCAAAAAYYGAQAAAAGHBgEAAAABvAYgAAAAAb0GAgAAAAG-BiAAAAABvwYCAAAAAcAGIAAAAAHBBgIAAAABwgYCAAAAAQIAAAABACBEAACAEgAgEIMFAgAAAAGEBQIAAAABlAUCAAAAAZcFAQAAAAGYBUAAAAAB0wUBAAAAAeQFAQAAAAH-BQEAAAABkgYCAAAAAaoGQAAAAAGrBgEAAAABrAYBAAAAAa0GIAAAAAGuBgEAAAABrwYgAAAAAbEGAAAAsQYCDYMFAgAAAAGUBQIAAAABmAVAAAAAAYgGAQAAAAGMBgEAAAABjQYBAAAAAZEGAgAAAAGfBgEAAAABoAYQAAAAAaEGAQAAAAGiBgEAAAABpAYAAACkBgKlBgEAAAABEoMFAgAAAAGEBQIAAAABlAUCAAAAAZgFQAAAAAGjBUAAAAAB0wUAAACdBgKRBgIAAAABkgYCAAAAAZMGAQAAAAGUBgEAAAABlQZAAAAAAZYGAQAAAAGYBgAAAJgGApkGgAAAAAGaBkAAAAABmwYBAAAAAZ0GAQAAAAGeBgEAAAABBIMFAgAAAAGYBUAAAAAB_gUBAAAAAYAGAAAAgAYCEYMFAgAAAAGEBQIAAAABlAUCAAAAAZcFAQAAAAGYBUAAAAABowVAAAAAAdMFAAAA-wUC8QUCAAAAAfIFAgAAAAHzBRAAAAAB9AUQAAAAAfUFEAAAAAH2BRAAAAAB9wUQAAAAAfgFEAAAAAH5BRAAAAAB-wUBAAAAAQmDBQIAAAABhAUCAAAAAZgFQAAAAAHPBQAAAM8FAtEFAAAA0QUC0wUAAADTBQLUBQEAAAAB1QUCAAAAAdYFAQAAAAEIgwUCAAAAAaMFQAAAAAHIBQEAAAAByQUBAAAAAcoFAQAAAAHLBQQAAAABzAUBAAAAAc0FQAAAAAEGgwUCAAAAAYQFAgAAAAGYBUAAAAABmQUBAAAAAaMFQAAAAAHdBQIAAAABAwAAAA0AIEQAAIASACBFAACMEgAgIgAAAA0AIAUAALwPACAHAAC9DwAgCAAAvw8AIB0AAMgPACAlAADGDwAgJwAAvg8AICgAAMAPACApAADBDwAgKgAAwg8AICsAAMMPACAsAADEDwAgLQAAxQ8AIC4AAMcPACAvAADJDwAgMAAAyg8AIDEAAMsPACAyAADMDwAgMwAAzQ8AIDQAAM4PACA1AADPDwAgNgAA0A8AIDcAANEPACA9AACMEgAggwUCAIgKACGGBgEAhwoAIYcGAQCHCgAhvAYgALoKACG9BgIAiAoAIb4GIAC6CgAhvwYCAIgKACHABiAAugoAIcEGAgCICgAhwgYCAIgKACEgBQAAvA8AIAcAAL0PACAIAAC_DwAgHQAAyA8AICUAAMYPACAnAAC-DwAgKAAAwA8AICkAAMEPACAqAADCDwAgKwAAww8AICwAAMQPACAtAADFDwAgLgAAxw8AIC8AAMkPACAwAADKDwAgMQAAyw8AIDIAAMwPACAzAADNDwAgNAAAzg8AIDUAAM8PACA2AADQDwAgNwAA0Q8AIIMFAgCICgAhhgYBAIcKACGHBgEAhwoAIbwGIAC6CgAhvQYCAIgKACG-BiAAugoAIb8GAgCICgAhwAYgALoKACHBBgIAiAoAIcIGAgCICgAhFwMAAOcNACAEAADmDQAgBwAA6A0AIAgAAOoNACALAAC3DgAgGAAA6Q0AIIMFAgAAAAGEBQIAAAABlAUCAAAAAZcFAQAAAAGYBUAAAAABpAUCAAAAAdMFAQAAAAHkBQEAAAAB_gUBAAAAAZIGAgAAAAGqBkAAAAABqwYBAAAAAawGAQAAAAGtBiAAAAABrgYBAAAAAa8GIAAAAAGxBgAAALEGAgIAAAAJACBEAACNEgAgAwAAAAcAIEQAAI0SACBFAACREgAgGQAAAAcAIAMAALwNACAEAAC7DQAgBwAAvQ0AIAgAAL8NACALAAC1DgAgGAAAvg0AID0AAJESACCDBQIAiAoAIYQFAgCICgAhlAUCAPkKACGXBQEAnAoAIZgFQACdCgAhpAUCAIgKACHTBQEAhwoAIeQFAQCHCgAh_gUBAIcKACGSBgIAiAoAIaoGQACdCgAhqwYBAIcKACGsBgEAhwoAIa0GIAC6CgAhrgYBAJwKACGvBiAAugoAIbEGAAC5DbEGIhcDAAC8DQAgBAAAuw0AIAcAAL0NACAIAAC_DQAgCwAAtQ4AIBgAAL4NACCDBQIAiAoAIYQFAgCICgAhlAUCAPkKACGXBQEAnAoAIZgFQACdCgAhpAUCAIgKACHTBQEAhwoAIeQFAQCHCgAh_gUBAIcKACGSBgIAiAoAIaoGQACdCgAhqwYBAIcKACGsBgEAhwoAIa0GIAC6CgAhrgYBAJwKACGvBiAAugoAIbEGAAC5DbEGIiAFAACrEQAgCAAArhEAIB0AALcRACAlAAC1EQAgJgAAqhEAICcAAK0RACAoAACvEQAgKQAAsBEAICoAALERACArAACyEQAgLAAAsxEAIC0AALQRACAuAAC2EQAgLwAAuBEAIDAAALkRACAxAAC6EQAgMgAAuxEAIDMAALwRACA0AAC9EQAgNQAAvhEAIDYAAL8RACA3AADAEQAggwUCAAAAAYYGAQAAAAGHBgEAAAABvAYgAAAAAb0GAgAAAAG-BiAAAAABvwYCAAAAAcAGIAAAAAHBBgIAAAABwgYCAAAAAQIAAAABACBEAACSEgAgCwMAAJYOACAIAACXDgAgFAAAmA4AIBUAAJkOACAWAACaDgAggwUCAAAAAYQFAgAAAAGYBUAAAAABogUCAAAAAaYGAQAAAAGnBgEAAAABAgAAAJABACBEAACUEgAgAwAAABcAIEQAAJQSACBFAACYEgAgDQAAABcAIAMAAKkNACAIAACqDQAgFAAAqw0AIBUAAKwNACAWAACtDQAgPQAAmBIAIIMFAgCICgAhhAUCAIgKACGYBUAAnQoAIaIFAgCICgAhpgYBAIcKACGnBgEAhwoAIQsDAACpDQAgCAAAqg0AIBQAAKsNACAVAACsDQAgFgAArQ0AIIMFAgCICgAhhAUCAIgKACGYBUAAnQoAIaIFAgCICgAhpgYBAIcKACGnBgEAhwoAIRCDBQIAAAABhAUCAAAAAZQFAgAAAAGXBQEAAAABmAVAAAAAAaQFAgAAAAHTBQEAAAAB5AUBAAAAAf4FAQAAAAGqBkAAAAABqwYBAAAAAawGAQAAAAGtBiAAAAABrgYBAAAAAa8GIAAAAAGxBgAAALEGAhKDBQIAAAABhAUCAAAAAZQFAgAAAAGYBUAAAAABowVAAAAAAaQFAgAAAAHTBQAAAJ0GApEGAgAAAAGTBgEAAAABlAYBAAAAAZUGQAAAAAGWBgEAAAABmAYAAACYBgKZBoAAAAABmgZAAAAAAZsGAQAAAAGdBgEAAAABngYBAAAAAQMAAAANACBEAACSEgAgRQAAnRIAICIAAAANACAFAAC8DwAgCAAAvw8AIB0AAMgPACAlAADGDwAgJgAAuw8AICcAAL4PACAoAADADwAgKQAAwQ8AICoAAMIPACArAADDDwAgLAAAxA8AIC0AAMUPACAuAADHDwAgLwAAyQ8AIDAAAMoPACAxAADLDwAgMgAAzA8AIDMAAM0PACA0AADODwAgNQAAzw8AIDYAANAPACA3AADRDwAgPQAAnRIAIIMFAgCICgAhhgYBAIcKACGHBgEAhwoAIbwGIAC6CgAhvQYCAIgKACG-BiAAugoAIb8GAgCICgAhwAYgALoKACHBBgIAiAoAIcIGAgCICgAhIAUAALwPACAIAAC_DwAgHQAAyA8AICUAAMYPACAmAAC7DwAgJwAAvg8AICgAAMAPACApAADBDwAgKgAAwg8AICsAAMMPACAsAADEDwAgLQAAxQ8AIC4AAMcPACAvAADJDwAgMAAAyg8AIDEAAMsPACAyAADMDwAgMwAAzQ8AIDQAAM4PACA1AADPDwAgNgAA0A8AIDcAANEPACCDBQIAiAoAIYYGAQCHCgAhhwYBAIcKACG8BiAAugoAIb0GAgCICgAhvgYgALoKACG_BgIAiAoAIcAGIAC6CgAhwQYCAIgKACHCBgIAiAoAISAFAACrEQAgBwAArBEAIAgAAK4RACAdAAC3EQAgJQAAtREAICYAAKoRACAoAACvEQAgKQAAsBEAICoAALERACArAACyEQAgLAAAsxEAIC0AALQRACAuAAC2EQAgLwAAuBEAIDAAALkRACAxAAC6EQAgMgAAuxEAIDMAALwRACA0AAC9EQAgNQAAvhEAIDYAAL8RACA3AADAEQAggwUCAAAAAYYGAQAAAAGHBgEAAAABvAYgAAAAAb0GAgAAAAG-BiAAAAABvwYCAAAAAcAGIAAAAAHBBgIAAAABwgYCAAAAAQIAAAABACBEAACeEgAgEoMFAgAAAAGEBQIAAAABmAVAAAAAAaMFQAAAAAGkBQIAAAAB0wUAAACdBgKRBgIAAAABkgYCAAAAAZMGAQAAAAGUBgEAAAABlQZAAAAAAZYGAQAAAAGYBgAAAJgGApkGgAAAAAGaBkAAAAABmwYBAAAAAZ0GAQAAAAGeBgEAAAABEYMFAgAAAAGEBQIAAAABlwUBAAAAAZgFQAAAAAGjBUAAAAABpAUCAAAAAdMFAAAA-wUC8QUCAAAAAfIFAgAAAAHzBRAAAAAB9AUQAAAAAfUFEAAAAAH2BRAAAAAB9wUQAAAAAfgFEAAAAAH5BRAAAAAB-wUBAAAAAQWDBQIAAAABlQUQAAAAAZYFEAAAAAGXBQEAAAABmAVAAAAAAQ2DBQIAAAABmAVAAAAAAaQFAgAAAAGIBgEAAAABjAYBAAAAAY0GAQAAAAGRBgIAAAABnwYBAAAAAaAGEAAAAAGhBgEAAAABogYBAAAAAaQGAAAApAYCpQYBAAAAAQkDAAC4DgAgCAAAug4AIIMFAgAAAAGEBQIAAAABmAVAAAAAAZkFAQAAAAGxBQEAAAABqAYBAAAAAakGAQAAAAECAAAAjQEAIEQAAKQSACAgBwAArBEAIAgAAK4RACAdAAC3EQAgJQAAtREAICYAAKoRACAnAACtEQAgKAAArxEAICkAALARACAqAACxEQAgKwAAshEAICwAALMRACAtAAC0EQAgLgAAthEAIC8AALgRACAwAAC5EQAgMQAAuhEAIDIAALsRACAzAAC8EQAgNAAAvREAIDUAAL4RACA2AAC_EQAgNwAAwBEAIIMFAgAAAAGGBgEAAAABhwYBAAAAAbwGIAAAAAG9BgIAAAABvgYgAAAAAb8GAgAAAAHABiAAAAABwQYCAAAAAcIGAgAAAAECAAAAAQAgRAAAphIAIB4DAACsDwAgCAAArw8AIAwAALEPACAYAACuDwAgHAAAsA8AIB0AALIPACAeAACzDwAgHwAAtA8AICUAALUPACCDBQIAAAABhAUCAAAAAZgFQAAAAAGjBUAAAAABsQUBAAAAAbQFAQAAAAG2BQEAAAAB0wUAAACxBgKVBkAAAAABmwYBAAAAAakGAQAAAAGyBgEAAAABswYBAAAAAbQGAQAAAAG1BgEAAAABtgYBAAAAAbcGAQAAAAG4BgEAAAABuQYBAAAAAboGAQAAAAG7BgEAAAABAgAAAAUAIEQAAKgSACANgwUCAAAAAZQFAgAAAAGYBUAAAAABpAUCAAAAAYgGAQAAAAGMBgEAAAABjQYBAAAAAZ8GAQAAAAGgBhAAAAABoQYBAAAAAaIGAQAAAAGkBgAAAKQGAqUGAQAAAAESgwUCAAAAAYQFAgAAAAGUBQIAAAABmAVAAAAAAaMFQAAAAAGkBQIAAAAB0wUAAACdBgKSBgIAAAABkwYBAAAAAZQGAQAAAAGVBkAAAAABlgYBAAAAAZgGAAAAmAYCmQaAAAAAAZoGQAAAAAGbBgEAAAABnQYBAAAAAZ4GAQAAAAEEgwUCAAAAAcgFAQAAAAHKBQEAAAABzAUBAAAAAQMAAAALACBEAACkEgAgRQAArxIAIAsAAAALACADAAChDgAgCAAAow4AID0AAK8SACCDBQIAiAoAIYQFAgCICgAhmAVAAJ0KACGZBQEAhwoAIbEFAQCcCgAhqAYBAIcKACGpBgEAnAoAIQkDAAChDgAgCAAAow4AIIMFAgCICgAhhAUCAIgKACGYBUAAnQoAIZkFAQCHCgAhsQUBAJwKACGoBgEAhwoAIakGAQCcCgAhAwAAAA0AIEQAAKYSACBFAACyEgAgIgAAAA0AIAcAAL0PACAIAAC_DwAgHQAAyA8AICUAAMYPACAmAAC7DwAgJwAAvg8AICgAAMAPACApAADBDwAgKgAAwg8AICsAAMMPACAsAADEDwAgLQAAxQ8AIC4AAMcPACAvAADJDwAgMAAAyg8AIDEAAMsPACAyAADMDwAgMwAAzQ8AIDQAAM4PACA1AADPDwAgNgAA0A8AIDcAANEPACA9AACyEgAggwUCAIgKACGGBgEAhwoAIYcGAQCHCgAhvAYgALoKACG9BgIAiAoAIb4GIAC6CgAhvwYCAIgKACHABiAAugoAIcEGAgCICgAhwgYCAIgKACEgBwAAvQ8AIAgAAL8PACAdAADIDwAgJQAAxg8AICYAALsPACAnAAC-DwAgKAAAwA8AICkAAMEPACAqAADCDwAgKwAAww8AICwAAMQPACAtAADFDwAgLgAAxw8AIC8AAMkPACAwAADKDwAgMQAAyw8AIDIAAMwPACAzAADNDwAgNAAAzg8AIDUAAM8PACA2AADQDwAgNwAA0Q8AIIMFAgCICgAhhgYBAIcKACGHBgEAhwoAIbwGIAC6CgAhvQYCAIgKACG-BiAAugoAIb8GAgCICgAhwAYgALoKACHBBgIAiAoAIcIGAgCICgAhAwAAAAMAIEQAAKgSACBFAAC1EgAgIAAAAAMAIAMAAMwOACAIAADPDgAgDAAA0Q4AIBgAAM4OACAcAADQDgAgHQAA0g4AIB4AANMOACAfAADUDgAgJQAA1Q4AID0AALUSACCDBQIAiAoAIYQFAgCICgAhmAVAAJ0KACGjBUAAnQoAIbEFAQCcCgAhtAUBAJwKACG2BQEAnAoAIdMFAAC5DbEGIpUGQADJCwAhmwYBAJwKACGpBgEAhwoAIbIGAQCHCgAhswYBAIcKACG0BgEAhwoAIbUGAQCcCgAhtgYBAJwKACG3BgEAnAoAIbgGAQCcCgAhuQYBAJwKACG6BgEAnAoAIbsGAQCcCgAhHgMAAMwOACAIAADPDgAgDAAA0Q4AIBgAAM4OACAcAADQDgAgHQAA0g4AIB4AANMOACAfAADUDgAgJQAA1Q4AIIMFAgCICgAhhAUCAIgKACGYBUAAnQoAIaMFQACdCgAhsQUBAJwKACG0BQEAnAoAIbYFAQCcCgAh0wUAALkNsQYilQZAAMkLACGbBgEAnAoAIakGAQCHCgAhsgYBAIcKACGzBgEAhwoAIbQGAQCHCgAhtQYBAJwKACG2BgEAnAoAIbcGAQCcCgAhuAYBAJwKACG5BgEAnAoAIboGAQCcCgAhuwYBAJwKACEQgwUCAAAAAYQFAgAAAAGXBQEAAAABmAVAAAAAAaQFAgAAAAHTBQEAAAAB5AUBAAAAAf4FAQAAAAGSBgIAAAABqgZAAAAAAasGAQAAAAGsBgEAAAABrQYgAAAAAa4GAQAAAAGvBiAAAAABsQYAAACxBgIDAAAADQAgRAAAnhIAIEUAALkSACAiAAAADQAgBQAAvA8AIAcAAL0PACAIAAC_DwAgHQAAyA8AICUAAMYPACAmAAC7DwAgKAAAwA8AICkAAMEPACAqAADCDwAgKwAAww8AICwAAMQPACAtAADFDwAgLgAAxw8AIC8AAMkPACAwAADKDwAgMQAAyw8AIDIAAMwPACAzAADNDwAgNAAAzg8AIDUAAM8PACA2AADQDwAgNwAA0Q8AID0AALkSACCDBQIAiAoAIYYGAQCHCgAhhwYBAIcKACG8BiAAugoAIb0GAgCICgAhvgYgALoKACG_BgIAiAoAIcAGIAC6CgAhwQYCAIgKACHCBgIAiAoAISAFAAC8DwAgBwAAvQ8AIAgAAL8PACAdAADIDwAgJQAAxg8AICYAALsPACAoAADADwAgKQAAwQ8AICoAAMIPACArAADDDwAgLAAAxA8AIC0AAMUPACAuAADHDwAgLwAAyQ8AIDAAAMoPACAxAADLDwAgMgAAzA8AIDMAAM0PACA0AADODwAgNQAAzw8AIDYAANAPACA3AADRDwAggwUCAIgKACGGBgEAhwoAIYcGAQCHCgAhvAYgALoKACG9BgIAiAoAIb4GIAC6CgAhvwYCAIgKACHABiAAugoAIcEGAgCICgAhwgYCAIgKACELAwAAlg4AIAUAAJsOACAIAACXDgAgFAAAmA4AIBUAAJkOACCDBQIAAAABhAUCAAAAAZgFQAAAAAGiBQIAAAABpgYBAAAAAacGAQAAAAECAAAAkAEAIEQAALoSACAeAwAArA8AIAUAAK0PACAIAACvDwAgDAAAsQ8AIBwAALAPACAdAACyDwAgHgAAsw8AIB8AALQPACAlAAC1DwAggwUCAAAAAYQFAgAAAAGYBUAAAAABowVAAAAAAbEFAQAAAAG0BQEAAAABtgUBAAAAAdMFAAAAsQYClQZAAAAAAZsGAQAAAAGpBgEAAAABsgYBAAAAAbMGAQAAAAG0BgEAAAABtQYBAAAAAbYGAQAAAAG3BgEAAAABuAYBAAAAAbkGAQAAAAG6BgEAAAABuwYBAAAAAQIAAAAFACBEAAC8EgAgFwMAAOcNACAEAADmDQAgBwAA6A0AIAgAAOoNACALAAC3DgAgGQAA6w0AIIMFAgAAAAGEBQIAAAABlAUCAAAAAZcFAQAAAAGYBUAAAAABpAUCAAAAAdMFAQAAAAHkBQEAAAAB_gUBAAAAAZIGAgAAAAGqBkAAAAABqwYBAAAAAawGAQAAAAGtBiAAAAABrgYBAAAAAa8GIAAAAAGxBgAAALEGAgIAAAAJACBEAAC-EgAgAwAAABcAIEQAALoSACBFAADCEgAgDQAAABcAIAMAAKkNACAFAACuDQAgCAAAqg0AIBQAAKsNACAVAACsDQAgPQAAwhIAIIMFAgCICgAhhAUCAIgKACGYBUAAnQoAIaIFAgCICgAhpgYBAIcKACGnBgEAhwoAIQsDAACpDQAgBQAArg0AIAgAAKoNACAUAACrDQAgFQAArA0AIIMFAgCICgAhhAUCAIgKACGYBUAAnQoAIaIFAgCICgAhpgYBAIcKACGnBgEAhwoAIQMAAAADACBEAAC8EgAgRQAAxRIAICAAAAADACADAADMDgAgBQAAzQ4AIAgAAM8OACAMAADRDgAgHAAA0A4AIB0AANIOACAeAADTDgAgHwAA1A4AICUAANUOACA9AADFEgAggwUCAIgKACGEBQIAiAoAIZgFQACdCgAhowVAAJ0KACGxBQEAnAoAIbQFAQCcCgAhtgUBAJwKACHTBQAAuQ2xBiKVBkAAyQsAIZsGAQCcCgAhqQYBAIcKACGyBgEAhwoAIbMGAQCHCgAhtAYBAIcKACG1BgEAnAoAIbYGAQCcCgAhtwYBAJwKACG4BgEAnAoAIbkGAQCcCgAhugYBAJwKACG7BgEAnAoAIR4DAADMDgAgBQAAzQ4AIAgAAM8OACAMAADRDgAgHAAA0A4AIB0AANIOACAeAADTDgAgHwAA1A4AICUAANUOACCDBQIAiAoAIYQFAgCICgAhmAVAAJ0KACGjBUAAnQoAIbEFAQCcCgAhtAUBAJwKACG2BQEAnAoAIdMFAAC5DbEGIpUGQADJCwAhmwYBAJwKACGpBgEAhwoAIbIGAQCHCgAhswYBAIcKACG0BgEAhwoAIbUGAQCcCgAhtgYBAJwKACG3BgEAnAoAIbgGAQCcCgAhuQYBAJwKACG6BgEAnAoAIbsGAQCcCgAhAwAAAAcAIEQAAL4SACBFAADIEgAgGQAAAAcAIAMAALwNACAEAAC7DQAgBwAAvQ0AIAgAAL8NACALAAC1DgAgGQAAwA0AID0AAMgSACCDBQIAiAoAIYQFAgCICgAhlAUCAPkKACGXBQEAnAoAIZgFQACdCgAhpAUCAIgKACHTBQEAhwoAIeQFAQCHCgAh_gUBAIcKACGSBgIAiAoAIaoGQACdCgAhqwYBAIcKACGsBgEAhwoAIa0GIAC6CgAhrgYBAJwKACGvBiAAugoAIbEGAAC5DbEGIhcDAAC8DQAgBAAAuw0AIAcAAL0NACAIAAC_DQAgCwAAtQ4AIBkAAMANACCDBQIAiAoAIYQFAgCICgAhlAUCAPkKACGXBQEAnAoAIZgFQACdCgAhpAUCAIgKACHTBQEAhwoAIeQFAQCHCgAh_gUBAIcKACGSBgIAiAoAIaoGQACdCgAhqwYBAIcKACGsBgEAhwoAIa0GIAC6CgAhrgYBAJwKACGvBiAAugoAIbEGAAC5DbEGIgsDAACWDgAgBQAAmw4AIBQAAJgOACAVAACZDgAgFgAAmg4AIIMFAgAAAAGEBQIAAAABmAVAAAAAAaIFAgAAAAGmBgEAAAABpwYBAAAAAQIAAACQAQAgRAAAyRIAIAkDAAC4DgAgBQAAuQ4AIIMFAgAAAAGEBQIAAAABmAVAAAAAAZkFAQAAAAGxBQEAAAABqAYBAAAAAakGAQAAAAECAAAAjQEAIEQAAMsSACAgBQAAqxEAIAcAAKwRACAdAAC3EQAgJQAAtREAICYAAKoRACAnAACtEQAgKAAArxEAICkAALARACAqAACxEQAgKwAAshEAICwAALMRACAtAAC0EQAgLgAAthEAIC8AALgRACAwAAC5EQAgMQAAuhEAIDIAALsRACAzAAC8EQAgNAAAvREAIDUAAL4RACA2AAC_EQAgNwAAwBEAIIMFAgAAAAGGBgEAAAABhwYBAAAAAbwGIAAAAAG9BgIAAAABvgYgAAAAAb8GAgAAAAHABiAAAAABwQYCAAAAAcIGAgAAAAECAAAAAQAgRAAAzRIAIBcDAADnDQAgBAAA5g0AIAcAAOgNACALAAC3DgAgGAAA6Q0AIBkAAOsNACCDBQIAAAABhAUCAAAAAZQFAgAAAAGXBQEAAAABmAVAAAAAAaQFAgAAAAHTBQEAAAAB5AUBAAAAAf4FAQAAAAGSBgIAAAABqgZAAAAAAasGAQAAAAGsBgEAAAABrQYgAAAAAa4GAQAAAAGvBiAAAAABsQYAAACxBgICAAAACQAgRAAAzxIAIB4DAACsDwAgBQAArQ8AIAwAALEPACAYAACuDwAgHAAAsA8AIB0AALIPACAeAACzDwAgHwAAtA8AICUAALUPACCDBQIAAAABhAUCAAAAAZgFQAAAAAGjBUAAAAABsQUBAAAAAbQFAQAAAAG2BQEAAAAB0wUAAACxBgKVBkAAAAABmwYBAAAAAakGAQAAAAGyBgEAAAABswYBAAAAAbQGAQAAAAG1BgEAAAABtgYBAAAAAbcGAQAAAAG4BgEAAAABuQYBAAAAAboGAQAAAAG7BgEAAAABAgAAAAUAIEQAANESACAQgwUCAAAAAZIFAgAAAAHTBQAAAJEGAvMFEAAAAAH0BRAAAAAB9QUQAAAAAfYFEAAAAAH7BQEAAAABiAYBAAAAAYkGQAAAAAGKBgEAAAABiwYBAAAAAYwGAQAAAAGNBgEAAAABjgYBAAAAAY8GEAAAAAEEgwUCAAAAAcgFAQAAAAHKBQEAAAABzAUBAAAAAQMAAAAXACBEAADJEgAgRQAA1xIAIA0AAAAXACADAACpDQAgBQAArg0AIBQAAKsNACAVAACsDQAgFgAArQ0AID0AANcSACCDBQIAiAoAIYQFAgCICgAhmAVAAJ0KACGiBQIAiAoAIaYGAQCHCgAhpwYBAIcKACELAwAAqQ0AIAUAAK4NACAUAACrDQAgFQAArA0AIBYAAK0NACCDBQIAiAoAIYQFAgCICgAhmAVAAJ0KACGiBQIAiAoAIaYGAQCHCgAhpwYBAIcKACEDAAAACwAgRAAAyxIAIEUAANoSACALAAAACwAgAwAAoQ4AIAUAAKIOACA9AADaEgAggwUCAIgKACGEBQIAiAoAIZgFQACdCgAhmQUBAIcKACGxBQEAnAoAIagGAQCHCgAhqQYBAJwKACEJAwAAoQ4AIAUAAKIOACCDBQIAiAoAIYQFAgCICgAhmAVAAJ0KACGZBQEAhwoAIbEFAQCcCgAhqAYBAIcKACGpBgEAnAoAIQMAAAANACBEAADNEgAgRQAA3RIAICIAAAANACAFAAC8DwAgBwAAvQ8AIB0AAMgPACAlAADGDwAgJgAAuw8AICcAAL4PACAoAADADwAgKQAAwQ8AICoAAMIPACArAADDDwAgLAAAxA8AIC0AAMUPACAuAADHDwAgLwAAyQ8AIDAAAMoPACAxAADLDwAgMgAAzA8AIDMAAM0PACA0AADODwAgNQAAzw8AIDYAANAPACA3AADRDwAgPQAA3RIAIIMFAgCICgAhhgYBAIcKACGHBgEAhwoAIbwGIAC6CgAhvQYCAIgKACG-BiAAugoAIb8GAgCICgAhwAYgALoKACHBBgIAiAoAIcIGAgCICgAhIAUAALwPACAHAAC9DwAgHQAAyA8AICUAAMYPACAmAAC7DwAgJwAAvg8AICgAAMAPACApAADBDwAgKgAAwg8AICsAAMMPACAsAADEDwAgLQAAxQ8AIC4AAMcPACAvAADJDwAgMAAAyg8AIDEAAMsPACAyAADMDwAgMwAAzQ8AIDQAAM4PACA1AADPDwAgNgAA0A8AIDcAANEPACCDBQIAiAoAIYYGAQCHCgAhhwYBAIcKACG8BiAAugoAIb0GAgCICgAhvgYgALoKACG_BgIAiAoAIcAGIAC6CgAhwQYCAIgKACHCBgIAiAoAIQMAAAAHACBEAADPEgAgRQAA4BIAIBkAAAAHACADAAC8DQAgBAAAuw0AIAcAAL0NACALAAC1DgAgGAAAvg0AIBkAAMANACA9AADgEgAggwUCAIgKACGEBQIAiAoAIZQFAgD5CgAhlwUBAJwKACGYBUAAnQoAIaQFAgCICgAh0wUBAIcKACHkBQEAhwoAIf4FAQCHCgAhkgYCAIgKACGqBkAAnQoAIasGAQCHCgAhrAYBAIcKACGtBiAAugoAIa4GAQCcCgAhrwYgALoKACGxBgAAuQ2xBiIXAwAAvA0AIAQAALsNACAHAAC9DQAgCwAAtQ4AIBgAAL4NACAZAADADQAggwUCAIgKACGEBQIAiAoAIZQFAgD5CgAhlwUBAJwKACGYBUAAnQoAIaQFAgCICgAh0wUBAIcKACHkBQEAhwoAIf4FAQCHCgAhkgYCAIgKACGqBkAAnQoAIasGAQCHCgAhrAYBAIcKACGtBiAAugoAIa4GAQCcCgAhrwYgALoKACGxBgAAuQ2xBiIDAAAAAwAgRAAA0RIAIEUAAOMSACAgAAAAAwAgAwAAzA4AIAUAAM0OACAMAADRDgAgGAAAzg4AIBwAANAOACAdAADSDgAgHgAA0w4AIB8AANQOACAlAADVDgAgPQAA4xIAIIMFAgCICgAhhAUCAIgKACGYBUAAnQoAIaMFQACdCgAhsQUBAJwKACG0BQEAnAoAIbYFAQCcCgAh0wUAALkNsQYilQZAAMkLACGbBgEAnAoAIakGAQCHCgAhsgYBAIcKACGzBgEAhwoAIbQGAQCHCgAhtQYBAJwKACG2BgEAnAoAIbcGAQCcCgAhuAYBAJwKACG5BgEAnAoAIboGAQCcCgAhuwYBAJwKACEeAwAAzA4AIAUAAM0OACAMAADRDgAgGAAAzg4AIBwAANAOACAdAADSDgAgHgAA0w4AIB8AANQOACAlAADVDgAggwUCAIgKACGEBQIAiAoAIZgFQACdCgAhowVAAJ0KACGxBQEAnAoAIbQFAQCcCgAhtgUBAJwKACHTBQAAuQ2xBiKVBkAAyQsAIZsGAQCcCgAhqQYBAIcKACGyBgEAhwoAIbMGAQCHCgAhtAYBAIcKACG1BgEAnAoAIbYGAQCcCgAhtwYBAJwKACG4BgEAnAoAIbkGAQCcCgAhugYBAJwKACG7BgEAnAoAIRgEAACoDAAgCQAApwwAIAoAAKkMACALAACqDAAgDQAAqwwAIBMAAK0MACCDBQIAAAABhAUCAAAAAZQFAgAAAAGXBQEAAAABmAVAAAAAAaMFQAAAAAGkBQIAAAAB0wUAAAD7BQLxBQIAAAAB8gUCAAAAAfMFEAAAAAH0BRAAAAAB9QUQAAAAAfYFEAAAAAH3BRAAAAAB-AUQAAAAAfkFEAAAAAH7BQEAAAABAgAAABwAIEQAAOQSACADAAAAGgAgRAAA5BIAIEUAAOgSACAaAAAAGgAgBAAA8gsAIAkAAPELACAKAADzCwAgCwAA9AsAIA0AAPULACATAAD3CwAgPQAA6BIAIIMFAgCICgAhhAUCAIgKACGUBQIA-QoAIZcFAQCcCgAhmAVAAJ0KACGjBUAAnQoAIaQFAgCICgAh0wUAAPAL-wUi8QUCAPkKACHyBQIA-QoAIfMFEACRCgAh9AUQAJEKACH1BRAAkQoAIfYFEACRCgAh9wUQAO8LACH4BRAAkQoAIfkFEACRCgAh-wUBAJwKACEYBAAA8gsAIAkAAPELACAKAADzCwAgCwAA9AsAIA0AAPULACATAAD3CwAggwUCAIgKACGEBQIAiAoAIZQFAgD5CgAhlwUBAJwKACGYBUAAnQoAIaMFQACdCgAhpAUCAIgKACHTBQAA8Av7BSLxBQIA-QoAIfIFAgD5CgAh8wUQAJEKACH0BRAAkQoAIfUFEACRCgAh9gUQAJEKACH3BRAA7wsAIfgFEACRCgAh-QUQAJEKACH7BQEAnAoAIRoDAACSDQAgBAAAkA0AIAYAAJENACAHAACTDQAgCwAAlA0AIAwAAJcNACAQAACVDQAggwUCAAAAAYQFAgAAAAGUBQIAAAABmAVAAAAAAaMFQAAAAAGkBQIAAAAB0wUAAACdBgKRBgIAAAABkgYCAAAAAZMGAQAAAAGUBgEAAAABlQZAAAAAAZYGAQAAAAGYBgAAAJgGApkGgAAAAAGaBkAAAAABmwYBAAAAAZ0GAQAAAAGeBgEAAAABAgAAABIAIEQAAOkSACADAAAAEAAgRAAA6RIAIEUAAO0SACAcAAAAEAAgAwAA8AwAIAQAAO4MACAGAADvDAAgBwAA8QwAIAsAAPIMACAMAAD1DAAgEAAA8wwAID0AAO0SACCDBQIAiAoAIYQFAgCICgAhlAUCAPkKACGYBUAAnQoAIaMFQACdCgAhpAUCAIgKACHTBQAA7QydBiKRBgIA-QoAIZIGAgCICgAhkwYBAIcKACGUBgEAhwoAIZUGQACdCgAhlgYBAIcKACGYBgAA7AyYBiKZBoAAAAABmgZAAJ0KACGbBgEAhwoAIZ0GAQCcCgAhngYBAJwKACEaAwAA8AwAIAQAAO4MACAGAADvDAAgBwAA8QwAIAsAAPIMACAMAAD1DAAgEAAA8wwAIIMFAgCICgAhhAUCAIgKACGUBQIA-QoAIZgFQACdCgAhowVAAJ0KACGkBQIAiAoAIdMFAADtDJ0GIpEGAgD5CgAhkgYCAIgKACGTBgEAhwoAIZQGAQCHCgAhlQZAAJ0KACGWBgEAhwoAIZgGAADsDJgGIpkGgAAAAAGaBkAAnQoAIZsGAQCHCgAhnQYBAJwKACGeBgEAnAoAISAFAACrEQAgBwAArBEAIAgAAK4RACAdAAC3EQAgJQAAtREAICYAAKoRACAnAACtEQAgKQAAsBEAICoAALERACArAACyEQAgLAAAsxEAIC0AALQRACAuAAC2EQAgLwAAuBEAIDAAALkRACAxAAC6EQAgMgAAuxEAIDMAALwRACA0AAC9EQAgNQAAvhEAIDYAAL8RACA3AADAEQAggwUCAAAAAYYGAQAAAAGHBgEAAAABvAYgAAAAAb0GAgAAAAG-BiAAAAABvwYCAAAAAcAGIAAAAAHBBgIAAAABwgYCAAAAAQIAAAABACBEAADuEgAgAwAAAA0AIEQAAO4SACBFAADyEgAgIgAAAA0AIAUAALwPACAHAAC9DwAgCAAAvw8AIB0AAMgPACAlAADGDwAgJgAAuw8AICcAAL4PACApAADBDwAgKgAAwg8AICsAAMMPACAsAADEDwAgLQAAxQ8AIC4AAMcPACAvAADJDwAgMAAAyg8AIDEAAMsPACAyAADMDwAgMwAAzQ8AIDQAAM4PACA1AADPDwAgNgAA0A8AIDcAANEPACA9AADyEgAggwUCAIgKACGGBgEAhwoAIYcGAQCHCgAhvAYgALoKACG9BgIAiAoAIb4GIAC6CgAhvwYCAIgKACHABiAAugoAIcEGAgCICgAhwgYCAIgKACEgBQAAvA8AIAcAAL0PACAIAAC_DwAgHQAAyA8AICUAAMYPACAmAAC7DwAgJwAAvg8AICkAAMEPACAqAADCDwAgKwAAww8AICwAAMQPACAtAADFDwAgLgAAxw8AIC8AAMkPACAwAADKDwAgMQAAyw8AIDIAAMwPACAzAADNDwAgNAAAzg8AIDUAAM8PACA2AADQDwAgNwAA0Q8AIIMFAgCICgAhhgYBAIcKACGHBgEAhwoAIbwGIAC6CgAhvQYCAIgKACG-BiAAugoAIb8GAgCICgAhwAYgALoKACHBBgIAiAoAIcIGAgCICgAhIAUAAKsRACAHAACsEQAgCAAArhEAIB0AALcRACAlAAC1EQAgJgAAqhEAICcAAK0RACAoAACvEQAgKgAAsREAICsAALIRACAsAACzEQAgLQAAtBEAIC4AALYRACAvAAC4EQAgMAAAuREAIDEAALoRACAyAAC7EQAgMwAAvBEAIDQAAL0RACA1AAC-EQAgNgAAvxEAIDcAAMARACCDBQIAAAABhgYBAAAAAYcGAQAAAAG8BiAAAAABvQYCAAAAAb4GIAAAAAG_BgIAAAABwAYgAAAAAcEGAgAAAAHCBgIAAAABAgAAAAEAIEQAAPMSACADAAAADQAgRAAA8xIAIEUAAPcSACAiAAAADQAgBQAAvA8AIAcAAL0PACAIAAC_DwAgHQAAyA8AICUAAMYPACAmAAC7DwAgJwAAvg8AICgAAMAPACAqAADCDwAgKwAAww8AICwAAMQPACAtAADFDwAgLgAAxw8AIC8AAMkPACAwAADKDwAgMQAAyw8AIDIAAMwPACAzAADNDwAgNAAAzg8AIDUAAM8PACA2AADQDwAgNwAA0Q8AID0AAPcSACCDBQIAiAoAIYYGAQCHCgAhhwYBAIcKACG8BiAAugoAIb0GAgCICgAhvgYgALoKACG_BgIAiAoAIcAGIAC6CgAhwQYCAIgKACHCBgIAiAoAISAFAAC8DwAgBwAAvQ8AIAgAAL8PACAdAADIDwAgJQAAxg8AICYAALsPACAnAAC-DwAgKAAAwA8AICoAAMIPACArAADDDwAgLAAAxA8AIC0AAMUPACAuAADHDwAgLwAAyQ8AIDAAAMoPACAxAADLDwAgMgAAzA8AIDMAAM0PACA0AADODwAgNQAAzw8AIDYAANAPACA3AADRDwAggwUCAIgKACGGBgEAhwoAIYcGAQCHCgAhvAYgALoKACG9BgIAiAoAIb4GIAC6CgAhvwYCAIgKACHABiAAugoAIcEGAgCICgAhwgYCAIgKACEeAwAArA8AIAUAAK0PACAIAACvDwAgDAAAsQ8AIBgAAK4PACAdAACyDwAgHgAAsw8AIB8AALQPACAlAAC1DwAggwUCAAAAAYQFAgAAAAGYBUAAAAABowVAAAAAAbEFAQAAAAG0BQEAAAABtgUBAAAAAdMFAAAAsQYClQZAAAAAAZsGAQAAAAGpBgEAAAABsgYBAAAAAbMGAQAAAAG0BgEAAAABtQYBAAAAAbYGAQAAAAG3BgEAAAABuAYBAAAAAbkGAQAAAAG6BgEAAAABuwYBAAAAAQIAAAAFACBEAAD4EgAgBIMFAgAAAAHIBQEAAAABzQVAAAAAAfwFAAEAAAEDAAAAAwAgRAAA-BIAIEUAAP0SACAgAAAAAwAgAwAAzA4AIAUAAM0OACAIAADPDgAgDAAA0Q4AIBgAAM4OACAdAADSDgAgHgAA0w4AIB8AANQOACAlAADVDgAgPQAA_RIAIIMFAgCICgAhhAUCAIgKACGYBUAAnQoAIaMFQACdCgAhsQUBAJwKACG0BQEAnAoAIbYFAQCcCgAh0wUAALkNsQYilQZAAMkLACGbBgEAnAoAIakGAQCHCgAhsgYBAIcKACGzBgEAhwoAIbQGAQCHCgAhtQYBAJwKACG2BgEAnAoAIbcGAQCcCgAhuAYBAJwKACG5BgEAnAoAIboGAQCcCgAhuwYBAJwKACEeAwAAzA4AIAUAAM0OACAIAADPDgAgDAAA0Q4AIBgAAM4OACAdAADSDgAgHgAA0w4AIB8AANQOACAlAADVDgAggwUCAIgKACGEBQIAiAoAIZgFQACdCgAhowVAAJ0KACGxBQEAnAoAIbQFAQCcCgAhtgUBAJwKACHTBQAAuQ2xBiKVBkAAyQsAIZsGAQCcCgAhqQYBAIcKACGyBgEAhwoAIbMGAQCHCgAhtAYBAIcKACG1BgEAnAoAIbYGAQCcCgAhtwYBAJwKACG4BgEAnAoAIbkGAQCcCgAhugYBAJwKACG7BgEAnAoAIQYEAADJDAAggwUCAAAAAZgFQAAAAAGkBQIAAAAB_gUBAAAAAYAGAAAAgAYCAgAAAF0AIEQAAP4SACADAAAAWwAgRAAA_hIAIEUAAIITACAIAAAAWwAgBAAAuwwAID0AAIITACCDBQIAiAoAIZgFQACdCgAhpAUCAIgKACH-BQEAhwoAIYAGAAC6DIAGIgYEAAC7DAAggwUCAIgKACGYBUAAnQoAIaQFAgCICgAh_gUBAIcKACGABgAAugyABiILAwAAlg4AIAUAAJsOACAIAACXDgAgFQAAmQ4AIBYAAJoOACCDBQIAAAABhAUCAAAAAZgFQAAAAAGiBQIAAAABpgYBAAAAAacGAQAAAAECAAAAkAEAIEQAAIMTACAgBQAAqxEAIAcAAKwRACAIAACuEQAgHQAAtxEAICUAALURACAmAACqEQAgJwAArREAICgAAK8RACApAACwEQAgKwAAshEAICwAALMRACAtAAC0EQAgLgAAthEAIC8AALgRACAwAAC5EQAgMQAAuhEAIDIAALsRACAzAAC8EQAgNAAAvREAIDUAAL4RACA2AAC_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_DwAgHQAAyA8AICUAAMYPACAmAAC7DwAgJwAAvg8AICgAAMAPACApAADBDwAgKwAAww8AICwAAMQPACAtAADFDwAgLgAAxw8AIC8AAMkPACAwAADKDwAgMQAAyw8AIDIAAMwPACAzAADNDwAgNAAAzg8AIDUAAM8PACA2AADQDwAgNwAA0Q8AID0AAJkTACCDBQIAiAoAIYYGAQCHCgAhhwYBAIcKACG8BiAAugoAIb0GAgCICgAhvgYgALoKACG_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-wUi8QUCAPkKACHyBQIA-QoAIfMFEACRCgAh9AUQAJEKACH1BRAAkQoAIfYFEACRCgAh9wUQAO8LACH4BRAAkQoAIfkFEACRCgAh-wUBAJwKACEYBAAA8gsAIAkAAPELACAKAADzCwAgCwAA9AsAIBAAAPYLACATAAD3CwAggwUCAIgKACGEBQIAiAoAIZQFAgD5CgAhlwUBAJwKACGYBUAAnQoAIaMFQACdCgAhpAUCAIgKACHTBQAA8Av7BSLxBQIA-QoAIfIFAgD5CgAh8wUQAJEKACH0BRAAkQoAIfUFEACRCgAh9gUQAJEKACH3BRAA7wsAIfgFEACRCgAh-QUQAJEKACH7BQEAnAoAISAFAACrEQAgBwAArBEAIAgAAK4RACAdAAC3EQAgJQAAtREAICYAAKoRACAnAACtEQAgKAAArxEAICkAALARACAqAACxEQAgLAAAsxEAIC0AALQRACAuAAC2EQAgLwAAuBEAIDAAALkRACAxAAC6EQAgMgAAuxEAIDMAALwRACA0AAC9EQAgNQAAvhEAIDYAAL8RACA3AADAEQAggwUCAAAAAYYGAQAAAAGHBgEAAAABvAYgAAAAAb0GAgAAAAG-BiAAAAABvwYCAAAAAcAGIAAAAAHBBgIAAAABwgYCAAAAAQIAAAABACBEAACqEwAgAwAAAA0AIEQAAKoTACBFAACuEwAgIgAAAA0AIAUAALwPACAHAAC9DwAgCAAAvw8AIB0AAMgPACAlAADGDwAgJgAAuw8AICcAAL4PACAoAADADwAgKQAAwQ8AICoAAMIPACAsAADEDwAgLQAAxQ8AIC4AAMcPACAvAADJDwAgMAAAyg8AIDEAAMsPACAyAADMDwAgMwAAzQ8AIDQAAM4PACA1AADPDwAgNgAA0A8AIDcAANEPACA9AACuEwAggwUCAIgKACGGBgEAhwoAIYcGAQCHCgAhvAYgALoKACG9BgIAiAoAIb4GIAC6CgAhvwYCAIgKACHABiAAugoAIcEGAgCICgAhwgYCAIgKACEgBQAAvA8AIAcAAL0PACAIAAC_DwAgHQAAyA8AICUAAMYPACAmAAC7DwAgJwAAvg8AICgAAMAPACApAADBDwAgKgAAwg8AICwAAMQPACAtAADFDwAgLgAAxw8AIC8AAMkPACAwAADKDwAgMQAAyw8AIDIAAMwPACAzAADNDwAgNAAAzg8AIDUAAM8PACA2AADQDwAgNwAA0Q8AIIMFAgCICgAhhgYBAIcKACGHBgEAhwoAIbwGIAC6CgAhvQYCAIgKACG-BiAAugoAIb8GAgCICgAhwAYgALoKACHBBgIAiAoAIcIGAgCICgAhIAUAAKsRACAHAACsEQAgCAAArhEAIB0AALcRACAlAAC1EQAgJgAAqhEAICcAAK0RACAoAACvEQAgKQAAsBEAICoAALERACArAACyEQAgLQAAtBEAIC4AALYRACAvAAC4EQAgMAAAuREAIDEAALoRACAyAAC7EQAgMwAAvBEAIDQAAL0RACA1AAC-EQAgNgAAvxEAIDcAAMARACCDBQIAAAABhgYBAAAAAYcGAQAAAAG8BiAAAAABvQYCAAAAAb4GIAAAAAG_BgIAAAABwAYgAAAAAcEGAgAAAAHCBgIAAAABAgAAAAEAIEQAAK8TACADAAAADQAgRAAArxMAIEUAALMTACAiAAAADQAgBQAAvA8AIAcAAL0PACAIAAC_DwAgHQAAyA8AICUAAMYPACAmAAC7DwAgJwAAvg8AICgAAMAPACApAADBDwAgKgAAwg8AICsAAMMPACAtAADFDwAgLgAAxw8AIC8AAMkPACAwAADKDwAgMQAAyw8AIDIAAMwPACAzAADNDwAgNAAAzg8AIDUAAM8PACA2AADQDwAgNwAA0Q8AID0AALMTACCDBQIAiAoAIYYGAQCHCgAhhwYBAIcKACG8BiAAugoAIb0GAgCICgAhvgYgALoKACG_BgIAiAoAIcAGIAC6CgAhwQYCAIgKACHCBgIAiAoAISAFAAC8DwAgBwAAvQ8AIAgAAL8PACAdAADIDwAgJQAAxg8AICYAALsPACAnAAC-DwAgKAAAwA8AICkAAMEPACAqAADCDwAgKwAAww8AIC0AAMUPACAuAADHDwAgLwAAyQ8AIDAAAMoPACAxAADLDwAgMgAAzA8AIDMAAM0PACA0AADODwAgNQAAzw8AIDYAANAPACA3AADRDwAggwUCAIgKACGGBgEAhwoAIYcGAQCHCgAhvAYgALoKACG9BgIAiAoAIb4GIAC6CgAhvwYCAIgKACHABiAAugoAIcEGAgCICgAhwgYCAIgKACEgBQAAqxEAIAcAAKwRACAIAACuEQAgHQAAtxEAICUAALURACAmAACqEQAgJwAArREAICgAAK8RACApAACwEQAgKgAAsREAICsAALIRACAsAACzEQAgLgAAthEAIC8AALgRACAwAAC5EQAgMQAAuhEAIDIAALsRACAzAAC8EQAgNAAAvREAIDUAAL4RACA2AAC_EQAgNwAAwBEAIIMFAgAAAAGGBgEAAAABhwYBAAAAAbwGIAAAAAG9BgIAAAABvgYgAAAAAb8GAgAAAAHABiAAAAABwQYCAAAAAcIGAgAAAAECAAAAAQAgRAAAtBMAIAMAAAANACBEAAC0EwAgRQAAuBMAICIAAAANACAFAAC8DwAgBwAAvQ8AIAgAAL8PACAdAADIDwAgJQAAxg8AICYAALsPACAnAAC-DwAgKAAAwA8AICkAAMEPACAqAADCDwAgKwAAww8AICwAAMQPACAuAADHDwAgLwAAyQ8AIDAAAMoPACAxAADLDwAgMgAAzA8AIDMAAM0PACA0AADODwAgNQAAzw8AIDYAANAPACA3AADRDwAgPQAAuBMAIIMFAgCICgAhhgYBAIcKACGHBgEAhwoAIbwGIAC6CgAhvQYCAIgKACG-BiAAugoAIb8GAgCICgAhwAYgALoKACHBBgIAiAoAIcIGAgCICgAhIAUAALwPACAHAAC9DwAgCAAAvw8AIB0AAMgPACAlAADGDwAgJgAAuw8AICcAAL4PACAoAADADwAgKQAAwQ8AICoAAMIPACArAADDDwAgLAAAxA8AIC4AAMcPACAvAADJDwAgMAAAyg8AIDEAAMsPACAyAADMDwAgMwAAzQ8AIDQAAM4PACA1AADPDwAgNgAA0A8AIDcAANEPACCDBQIAiAoAIYYGAQCHCgAhhwYBAIcKACG8BiAAugoAIb0GAgCICgAhvgYgALoKACG_BgIAiAoAIcAGIAC6CgAhwQYCAIgKACHCBgIAiAoAIQsDAADACwAgBAAAwQsAIBkAAMILACAgAADDCwAggwUCAAAAAYQFAgAAAAGYBUAAAAABmQUBAAAAAaMFQAAAAAGkBQIAAAAB3QUCAAAAAQIAAAByACBEAAC5EwAgHgMAAKwPACAFAACtDwAgCAAArw8AIAwAALEPACAYAACuDwAgHAAAsA8AIB0AALIPACAeAACzDwAgHwAAtA8AIIMFAgAAAAGEBQIAAAABmAVAAAAAAaMFQAAAAAGxBQEAAAABtAUBAAAAAbYFAQAAAAHTBQAAALEGApUGQAAAAAGbBgEAAAABqQYBAAAAAbIGAQAAAAGzBgEAAAABtAYBAAAAAbUGAQAAAAG2BgEAAAABtwYBAAAAAbgGAQAAAAG5BgEAAAABugYBAAAAAbsGAQAAAAECAAAABQAgRAAAuxMAICAFAACrEQAgBwAArBEAIAgAAK4RACAdAAC3EQAgJgAAqhEAICcAAK0RACAoAACvEQAgKQAAsBEAICoAALERACArAACyEQAgLAAAsxEAIC0AALQRACAuAAC2EQAgLwAAuBEAIDAAALkRACAxAAC6EQAgMgAAuxEAIDMAALwRACA0AAC9EQAgNQAAvhEAIDYAAL8RACA3AADAEQAggwUCAAAAAYYGAQAAAAGHBgEAAAABvAYgAAAAAb0GAgAAAAG-BiAAAAABvwYCAAAAAcAGIAAAAAHBBgIAAAABwgYCAAAAAQIAAAABACBEAAC9EwAgBoMFAgAAAAGEBQIAAAABmAVAAAAAAZkFAQAAAAGjBUAAAAABpAUCAAAAAQqDBQIAAAABhAUCAAAAAZgFQAAAAAGZBQEAAAABowVAAAAAAcoFAQAAAAHLBQQAAAAB2gUgAAAAAdsFAgAAAAHcBQEAAAABAwAAAAMAIEQAALsTACBFAADDEwAgIAAAAAMAIAMAAMwOACAFAADNDgAgCAAAzw4AIAwAANEOACAYAADODgAgHAAA0A4AIB0AANIOACAeAADTDgAgHwAA1A4AID0AAMMTACCDBQIAiAoAIYQFAgCICgAhmAVAAJ0KACGjBUAAnQoAIbEFAQCcCgAhtAUBAJwKACG2BQEAnAoAIdMFAAC5DbEGIpUGQADJCwAhmwYBAJwKACGpBgEAhwoAIbIGAQCHCgAhswYBAIcKACG0BgEAhwoAIbUGAQCcCgAhtgYBAJwKACG3BgEAnAoAIbgGAQCcCgAhuQYBAJwKACG6BgEAnAoAIbsGAQCcCgAhHgMAAMwOACAFAADNDgAgCAAAzw4AIAwAANEOACAYAADODgAgHAAA0A4AIB0AANIOACAeAADTDgAgHwAA1A4AIIMFAgCICgAhhAUCAIgKACGYBUAAnQoAIaMFQACdCgAhsQUBAJwKACG0BQEAnAoAIbYFAQCcCgAh0wUAALkNsQYilQZAAMkLACGbBgEAnAoAIakGAQCHCgAhsgYBAIcKACGzBgEAhwoAIbQGAQCHCgAhtQYBAJwKACG2BgEAnAoAIbcGAQCcCgAhuAYBAJwKACG5BgEAnAoAIboGAQCcCgAhuwYBAJwKACEDAAAADQAgRAAAvRMAIEUAAMYTACAiAAAADQAgBQAAvA8AIAcAAL0PACAIAAC_DwAgHQAAyA8AICYAALsPACAnAAC-DwAgKAAAwA8AICkAAMEPACAqAADCDwAgKwAAww8AICwAAMQPACAtAADFDwAgLgAAxw8AIC8AAMkPACAwAADKDwAgMQAAyw8AIDIAAMwPACAzAADNDwAgNAAAzg8AIDUAAM8PACA2AADQDwAgNwAA0Q8AID0AAMYTACCDBQIAiAoAIYYGAQCHCgAhhwYBAIcKACG8BiAAugoAIb0GAgCICgAhvgYgALoKACG_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_BgIAiAoAIcAGIAC6CgAhwQYCAIgKACHCBgIAiAoAIQ0DAACaCwAgIgAAmwsAIIMFAgAAAAGEBQIAAAABmAVAAAAAAZkFAQAAAAGjBUAAAAABygUBAAAAAcsFBAAAAAHZBQIAAAAB2gUgAAAAAdsFAgAAAAHcBQEAAAABAgAAAHkAIEQAANUTACADAAAAdwAgRAAA1RMAIEUAANkTACAPAAAAdwAgAwAAiwsAICIAAIwLACA9AADZEwAggwUCAIgKACGEBQIAiAoAIZgFQACdCgAhmQUBAIcKACGjBUAAnQoAIcoFAQCcCgAhywUEAO4KACHZBQIA-QoAIdoFIAC6CgAh2wUCAPkKACHcBQEAnAoAIQ0DAACLCwAgIgAAjAsAIIMFAgCICgAhhAUCAIgKACGYBUAAnQoAIZkFAQCHCgAhowVAAJ0KACHKBQEAnAoAIcsFBADuCgAh2QUCAPkKACHaBSAAugoAIdsFAgD5CgAh3AUBAJwKACEgBQAAqxEAIAcAAKwRACAIAACuEQAgJQAAtREAICYAAKoRACAnAACtEQAgKAAArxEAICkAALARACAqAACxEQAgKwAAshEAICwAALMRACAtAAC0EQAgLgAAthEAIC8AALgRACAwAAC5EQAgMQAAuhEAIDIAALsRACAzAAC8EQAgNAAAvREAIDUAAL4RACA2AAC_EQAgNwAAwBEAIIMFAgAAAAGGBgEAAAABhwYBAAAAAbwGIAAAAAG9BgIAAAABvgYgAAAAAb8GAgAAAAHABiAAAAABwQYCAAAAAcIGAgAAAAECAAAAAQAgRAAA2hMAIB4DAACsDwAgBQAArQ8AIAgAAK8PACAMAACxDwAgGAAArg8AIBwAALAPACAeAACzDwAgHwAAtA8AICUAALUPACCDBQIAAAABhAUCAAAAAZgFQAAAAAGjBUAAAAABsQUBAAAAAbQFAQAAAAG2BQEAAAAB0wUAAACxBgKVBkAAAAABmwYBAAAAAakGAQAAAAGyBgEAAAABswYBAAAAAbQGAQAAAAG1BgEAAAABtgYBAAAAAbcGAQAAAAG4BgEAAAABuQYBAAAAAboGAQAAAAG7BgEAAAABAgAAAAUAIEQAANwTACADAAAADQAgRAAA2hMAIEUAAOATACAiAAAADQAgBQAAvA8AIAcAAL0PACAIAAC_DwAgJQAAxg8AICYAALsPACAnAAC-DwAgKAAAwA8AICkAAMEPACAqAADCDwAgKwAAww8AICwAAMQPACAtAADFDwAgLgAAxw8AIC8AAMkPACAwAADKDwAgMQAAyw8AIDIAAMwPACAzAADNDwAgNAAAzg8AIDUAAM8PACA2AADQDwAgNwAA0Q8AID0AAOATACCDBQIAiAoAIYYGAQCHCgAhhwYBAIcKACG8BiAAugoAIb0GAgCICgAhvgYgALoKACG_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_DwAgHQAAyA8AICUAAMYPACAmAAC7DwAgJwAAvg8AICgAAMAPACApAADBDwAgKgAAwg8AICsAAMMPACAsAADEDwAgLQAAxQ8AIC4AAMcPACAwAADKDwAgMQAAyw8AIDIAAMwPACAzAADNDwAgNAAAzg8AIDUAAM8PACA2AADQDwAgNwAA0Q8AIIMFAgCICgAhhgYBAIcKACGHBgEAhwoAIbwGIAC6CgAhvQYCAIgKACG-BiAAugoAIb8GAgCICgAhwAYgALoKACHBBgIAiAoAIcIGAgCICgAhIAUAAKsRACAHAACsEQAgCAAArhEAIB0AALcRACAlAAC1EQAgJgAAqhEAICcAAK0RACAoAACvEQAgKQAAsBEAICoAALERACArAACyEQAgLAAAsxEAIC0AALQRACAuAAC2EQAgLwAAuBEAIDEAALoRACAyAAC7EQAgMwAAvBEAIDQAAL0RACA1AAC-EQAgNgAAvxEAIDcAAMARACCDBQIAAAABhgYBAAAAAYcGAQAAAAG8BiAAAAABvQYCAAAAAb4GIAAAAAG_BgIAAAABwAYgAAAAAcEGAgAAAAHCBgIAAAABAgAAAAEAIEQAAO4TACADAAAADQAgRAAA7hMAIEUAAPITACAiAAAADQAgBQAAvA8AIAcAAL0PACAIAAC_DwAgHQAAyA8AICUAAMYPACAmAAC7DwAgJwAAvg8AICgAAMAPACApAADBDwAgKgAAwg8AICsAAMMPACAsAADEDwAgLQAAxQ8AIC4AAMcPACAvAADJDwAgMQAAyw8AIDIAAMwPACAzAADNDwAgNAAAzg8AIDUAAM8PACA2AADQDwAgNwAA0Q8AID0AAPITACCDBQIAiAoAIYYGAQCHCgAhhwYBAIcKACG8BiAAugoAIb0GAgCICgAhvgYgALoKACG_BgIAiAoAIcAGIAC6CgAhwQYCAIgKACHCBgIAiAoAISAFAAC8DwAgBwAAvQ8AIAgAAL8PACAdAADIDwAgJQAAxg8AICYAALsPACAnAAC-DwAgKAAAwA8AICkAAMEPACAqAADCDwAgKwAAww8AICwAAMQPACAtAADFDwAgLgAAxw8AIC8AAMkPACAxAADLDwAgMgAAzA8AIDMAAM0PACA0AADODwAgNQAAzw8AIDYAANAPACA3AADRDwAggwUCAIgKACGGBgEAhwoAIYcGAQCHCgAhvAYgALoKACG9BgIAiAoAIb4GIAC6CgAhvwYCAIgKACHABiAAugoAIcEGAgCICgAhwgYCAIgKACEgBQAAqxEAIAcAAKwRACAIAACuEQAgHQAAtxEAICUAALURACAmAACqEQAgJwAArREAICgAAK8RACApAACwEQAgKgAAsREAICsAALIRACAsAACzEQAgLQAAtBEAIC4AALYRACAvAAC4EQAgMAAAuREAIDIAALsRACAzAAC8EQAgNAAAvREAIDUAAL4RACA2AAC_EQAgNwAAwBEAIIMFAgAAAAGGBgEAAAABhwYBAAAAAbwGIAAAAAG9BgIAAAABvgYgAAAAAb8GAgAAAAHABiAAAAABwQYCAAAAAcIGAgAAAAECAAAAAQAgRAAA8xMAIAMAAAANACBEAADzEwAgRQAA9xMAICIAAAANACAFAAC8DwAgBwAAvQ8AIAgAAL8PACAdAADIDwAgJQAAxg8AICYAALsPACAnAAC-DwAgKAAAwA8AICkAAMEPACAqAADCDwAgKwAAww8AICwAAMQPACAtAADFDwAgLgAAxw8AIC8AAMkPACAwAADKDwAgMgAAzA8AIDMAAM0PACA0AADODwAgNQAAzw8AIDYAANAPACA3AADRDwAgPQAA9xMAIIMFAgCICgAhhgYBAIcKACGHBgEAhwoAIbwGIAC6CgAhvQYCAIgKACG-BiAAugoAIb8GAgCICgAhwAYgALoKACHBBgIAiAoAIcIGAgCICgAhIAUAALwPACAHAAC9DwAgCAAAvw8AIB0AAMgPACAlAADGDwAgJgAAuw8AICcAAL4PACAoAADADwAgKQAAwQ8AICoAAMIPACArAADDDwAgLAAAxA8AIC0AAMUPACAuAADHDwAgLwAAyQ8AIDAAAMoPACAyAADMDwAgMwAAzQ8AIDQAAM4PACA1AADPDwAgNgAA0A8AIDcAANEPACCDBQIAiAoAIYYGAQCHCgAhhwYBAIcKACG8BiAAugoAIb0GAgCICgAhvgYgALoKACG_BgIAiAoAIcAGIAC6CgAhwQYCAIgKACHCBgIAiAoAISAFAACrEQAgBwAArBEAIAgAAK4RACAdAAC3EQAgJQAAtREAICYAAKoRACAnAACtEQAgKAAArxEAICkAALARACAqAACxEQAgKwAAshEAICwAALMRACAtAAC0EQAgLgAAthEAIC8AALgRACAwAAC5EQAgMQAAuhEAIDMAALwRACA0AAC9EQAgNQAAvhEAIDYAAL8RACA3AADAEQAggwUCAAAAAYYGAQAAAAGHBgEAAAABvAYgAAAAAb0GAgAAAAG-BiAAAAABvwYCAAAAAcAGIAAAAAHBBgIAAAABwgYCAAAAAQIAAAABACBEAAD4EwAgAwAAAA0AIEQAAPgTACBFAAD8EwAgIgAAAA0AIAUAALwPACAHAAC9DwAgCAAAvw8AIB0AAMgPACAlAADGDwAgJgAAuw8AICcAAL4PACAoAADADwAgKQAAwQ8AICoAAMIPACArAADDDwAgLAAAxA8AIC0AAMUPACAuAADHDwAgLwAAyQ8AIDAAAMoPACAxAADLDwAgMwAAzQ8AIDQAAM4PACA1AADPDwAgNgAA0A8AIDcAANEPACA9AAD8EwAggwUCAIgKACGGBgEAhwoAIYcGAQCHCgAhvAYgALoKACG9BgIAiAoAIb4GIAC6CgAhvwYCAIgKACHABiAAugoAIcEGAgCICgAhwgYCAIgKACEgBQAAvA8AIAcAAL0PACAIAAC_DwAgHQAAyA8AICUAAMYPACAmAAC7DwAgJwAAvg8AICgAAMAPACApAADBDwAgKgAAwg8AICsAAMMPACAsAADEDwAgLQAAxQ8AIC4AAMcPACAvAADJDwAgMAAAyg8AIDEAAMsPACAzAADNDwAgNAAAzg8AIDUAAM8PACA2AADQDwAgNwAA0Q8AIIMFAgCICgAhhgYBAIcKACGHBgEAhwoAIbwGIAC6CgAhvQYCAIgKACG-BiAAugoAIb8GAgCICgAhwAYgALoKACHBBgIAiAoAIcIGAgCICgAhIAUAAKsRACAHAACsEQAgCAAArhEAIB0AALcRACAlAAC1EQAgJgAAqhEAICcAAK0RACAoAACvEQAgKQAAsBEAICoAALERACArAACyEQAgLAAAsxEAIC0AALQRACAuAAC2EQAgLwAAuBEAIDAAALkRACAxAAC6EQAgMgAAuxEAIDMAALwRACA1AAC-EQAgNgAAvxEAIDcAAMARACCDBQIAAAABhgYBAAAAAYcGAQAAAAG8BiAAAAABvQYCAAAAAb4GIAAAAAG_BgIAAAABwAYgAAAAAcEGAgAAAAHCBgIAAAABAgAAAAEAIEQAAP0TACADAAAADQAgRAAA_RMAIEUAAIEUACAiAAAADQAgBQAAvA8AIAcAAL0PACAIAAC_DwAgHQAAyA8AICUAAMYPACAmAAC7DwAgJwAAvg8AICgAAMAPACApAADBDwAgKgAAwg8AICsAAMMPACAsAADEDwAgLQAAxQ8AIC4AAMcPACAvAADJDwAgMAAAyg8AIDEAAMsPACAyAADMDwAgMwAAzQ8AIDUAAM8PACA2AADQDwAgNwAA0Q8AID0AAIEUACCDBQIAiAoAIYYGAQCHCgAhhwYBAIcKACG8BiAAugoAIb0GAgCICgAhvgYgALoKACG_BgIAiAoAIcAGIAC6CgAhwQYCAIgKACHCBgIAiAoAISAFAAC8DwAgBwAAvQ8AIAgAAL8PACAdAADIDwAgJQAAxg8AICYAALsPACAnAAC-DwAgKAAAwA8AICkAAMEPACAqAADCDwAgKwAAww8AICwAAMQPACAtAADFDwAgLgAAxw8AIC8AAMkPACAwAADKDwAgMQAAyw8AIDIAAMwPACAzAADNDwAgNQAAzw8AIDYAANAPACA3AADRDwAggwUCAIgKACGGBgEAhwoAIYcGAQCHCgAhvAYgALoKACG9BgIAiAoAIb4GIAC6CgAhvwYCAIgKACHABiAAugoAIcEGAgCICgAhwgYCAIgKACEgBQAAqxEAIAcAAKwRACAIAACuEQAgHQAAtxEAICUAALURACAmAACqEQAgJwAArREAICgAAK8RACApAACwEQAgKgAAsREAICsAALIRACAsAACzEQAgLQAAtBEAIC4AALYRACAvAAC4EQAgMAAAuREAIDEAALoRACAyAAC7EQAgNAAAvREAIDUAAL4RACA2AAC_EQAgNwAAwBEAIIMFAgAAAAGGBgEAAAABhwYBAAAAAbwGIAAAAAG9BgIAAAABvgYgAAAAAb8GAgAAAAHABiAAAAABwQYCAAAAAcIGAgAAAAECAAAAAQAgRAAAghQAIAMAAAANACBEAACCFAAgRQAAhhQAICIAAAANACAFAAC8DwAgBwAAvQ8AIAgAAL8PACAdAADIDwAgJQAAxg8AICYAALsPACAnAAC-DwAgKAAAwA8AICkAAMEPACAqAADCDwAgKwAAww8AICwAAMQPACAtAADFDwAgLgAAxw8AIC8AAMkPACAwAADKDwAgMQAAyw8AIDIAAMwPACA0AADODwAgNQAAzw8AIDYAANAPACA3AADRDwAgPQAAhhQAIIMFAgCICgAhhgYBAIcKACGHBgEAhwoAIbwGIAC6CgAhvQYCAIgKACG-BiAAugoAIb8GAgCICgAhwAYgALoKACHBBgIAiAoAIcIGAgCICgAhIAUAALwPACAHAAC9DwAgCAAAvw8AIB0AAMgPACAlAADGDwAgJgAAuw8AICcAAL4PACAoAADADwAgKQAAwQ8AICoAAMIPACArAADDDwAgLAAAxA8AIC0AAMUPACAuAADHDwAgLwAAyQ8AIDAAAMoPACAxAADLDwAgMgAAzA8AIDQAAM4PACA1AADPDwAgNgAA0A8AIDcAANEPACCDBQIAiAoAIYYGAQCHCgAhhwYBAIcKACG8BiAAugoAIb0GAgCICgAhvgYgALoKACG_BgIAiAoAIcAGIAC6CgAhwQYCAIgKACHCBgIAiAoAISAFAACrEQAgBwAArBEAIAgAAK4RACAdAAC3EQAgJQAAtREAICYAAKoRACAnAACtEQAgKAAArxEAICkAALARACAqAACxEQAgKwAAshEAICwAALMRACAtAAC0EQAgLgAAthEAIC8AALgRACAwAAC5EQAgMQAAuhEAIDIAALsRACAzAAC8EQAgNAAAvREAIDYAAL8RACA3AADAEQAggwUCAAAAAYYGAQAAAAGHBgEAAAABvAYgAAAAAb0GAgAAAAG-BiAAAAABvwYCAAAAAcAGIAAAAAHBBgIAAAABwgYCAAAAAQIAAAABACBEAACHFAAgHgMAAKwPACAFAACtDwAgCAAArw8AIAwAALEPACAYAACuDwAgHAAAsA8AIB0AALIPACAeAACzDwAgJQAAtQ8AIIMFAgAAAAGEBQIAAAABmAVAAAAAAaMFQAAAAAGxBQEAAAABtAUBAAAAAbYFAQAAAAHTBQAAALEGApUGQAAAAAGbBgEAAAABqQYBAAAAAbIGAQAAAAGzBgEAAAABtAYBAAAAAbUGAQAAAAG2BgEAAAABtwYBAAAAAbgGAQAAAAG5BgEAAAABugYBAAAAAbsGAQAAAAECAAAABQAgRAAAiRQAIAMAAAANACBEAACHFAAgRQAAjRQAICIAAAANACAFAAC8DwAgBwAAvQ8AIAgAAL8PACAdAADIDwAgJQAAxg8AICYAALsPACAnAAC-DwAgKAAAwA8AICkAAMEPACAqAADCDwAgKwAAww8AICwAAMQPACAtAADFDwAgLgAAxw8AIC8AAMkPACAwAADKDwAgMQAAyw8AIDIAAMwPACAzAADNDwAgNAAAzg8AIDYAANAPACA3AADRDwAgPQAAjRQAIIMFAgCICgAhhgYBAIcKACGHBgEAhwoAIbwGIAC6CgAhvQYCAIgKACG-BiAAugoAIb8GAgCICgAhwAYgALoKACHBBgIAiAoAIcIGAgCICgAhIAUAALwPACAHAAC9DwAgCAAAvw8AIB0AAMgPACAlAADGDwAgJgAAuw8AICcAAL4PACAoAADADwAgKQAAwQ8AICoAAMIPACArAADDDwAgLAAAxA8AIC0AAMUPACAuAADHDwAgLwAAyQ8AIDAAAMoPACAxAADLDwAgMgAAzA8AIDMAAM0PACA0AADODwAgNgAA0A8AIDcAANEPACCDBQIAiAoAIYYGAQCHCgAhhwYBAIcKACG8BiAAugoAIb0GAgCICgAhvgYgALoKACG_BgIAiAoAIcAGIAC6CgAhwQYCAIgKACHCBgIAiAoAIQMAAAADACBEAACJFAAgRQAAkBQAICAAAAADACADAADMDgAgBQAAzQ4AIAgAAM8OACAMAADRDgAgGAAAzg4AIBwAANAOACAdAADSDgAgHgAA0w4AICUAANUOACA9AACQFAAggwUCAIgKACGEBQIAiAoAIZgFQACdCgAhowVAAJ0KACGxBQEAnAoAIbQFAQCcCgAhtgUBAJwKACHTBQAAuQ2xBiKVBkAAyQsAIZsGAQCcCgAhqQYBAIcKACGyBgEAhwoAIbMGAQCHCgAhtAYBAIcKACG1BgEAnAoAIbYGAQCcCgAhtwYBAJwKACG4BgEAnAoAIbkGAQCcCgAhugYBAJwKACG7BgEAnAoAIR4DAADMDgAgBQAAzQ4AIAgAAM8OACAMAADRDgAgGAAAzg4AIBwAANAOACAdAADSDgAgHgAA0w4AICUAANUOACCDBQIAiAoAIYQFAgCICgAhmAVAAJ0KACGjBUAAnQoAIbEFAQCcCgAhtAUBAJwKACG2BQEAnAoAIdMFAAC5DbEGIpUGQADJCwAhmwYBAJwKACGpBgEAhwoAIbIGAQCHCgAhswYBAIcKACG0BgEAhwoAIbUGAQCcCgAhtgYBAJwKACG3BgEAnAoAIbgGAQCcCgAhuQYBAJwKACG6BgEAnAoAIbsGAQCcCgAhIAUAAKsRACAHAACsEQAgCAAArhEAIB0AALcRACAlAAC1EQAgJgAAqhEAICcAAK0RACAoAACvEQAgKQAAsBEAICoAALERACArAACyEQAgLAAAsxEAIC0AALQRACAuAAC2EQAgLwAAuBEAIDAAALkRACAxAAC6EQAgMgAAuxEAIDMAALwRACA0AAC9EQAgNQAAvhEAIDcAAMARACCDBQIAAAABhgYBAAAAAYcGAQAAAAG8BiAAAAABvQYCAAAAAb4GIAAAAAG_BgIAAAABwAYgAAAAAcEGAgAAAAHCBgIAAAABAgAAAAEAIEQAAJEUACADAAAADQAgRAAAkRQAIEUAAJUUACAiAAAADQAgBQAAvA8AIAcAAL0PACAIAAC_DwAgHQAAyA8AICUAAMYPACAmAAC7DwAgJwAAvg8AICgAAMAPACApAADBDwAgKgAAwg8AICsAAMMPACAsAADEDwAgLQAAxQ8AIC4AAMcPACAvAADJDwAgMAAAyg8AIDEAAMsPACAyAADMDwAgMwAAzQ8AIDQAAM4PACA1AADPDwAgNwAA0Q8AID0AAJUUACCDBQIAiAoAIYYGAQCHCgAhhwYBAIcKACG8BiAAugoAIb0GAgCICgAhvgYgALoKACG_BgIAiAoAIcAGIAC6CgAhwQYCAIgKACHCBgIAiAoAISAFAAC8DwAgBwAAvQ8AIAgAAL8PACAdAADIDwAgJQAAxg8AICYAALsPACAnAAC-DwAgKAAAwA8AICkAAMEPACAqAADCDwAgKwAAww8AICwAAMQPACAtAADFDwAgLgAAxw8AIC8AAMkPACAwAADKDwAgMQAAyw8AIDIAAMwPACAzAADNDwAgNAAAzg8AIDUAAM8PACA3AADRDwAggwUCAIgKACGGBgEAhwoAIYcGAQCHCgAhvAYgALoKACG9BgIAiAoAIb4GIAC6CgAhvwYCAIgKACHABiAAugoAIcEGAgCICgAhwgYCAIgKACELAwAAlg4AIAUAAJsOACAIAACXDgAgFAAAmA4AIBYAAJoOACCDBQIAAAABhAUCAAAAAZgFQAAAAAGiBQIAAAABpgYBAAAAAacGAQAAAAECAAAAkAEAIEQAAJYUACADgwUCAAAAAZIFAgAAAAGTBRAAAAABAwAAABcAIEQAAJYUACBFAACbFAAgDQAAABcAIAMAAKkNACAFAACuDQAgCAAAqg0AIBQAAKsNACAWAACtDQAgPQAAmxQAIIMFAgCICgAhhAUCAIgKACGYBUAAnQoAIaIFAgCICgAhpgYBAIcKACGnBgEAhwoAIQsDAACpDQAgBQAArg0AIAgAAKoNACAUAACrDQAgFgAArQ0AIIMFAgCICgAhhAUCAIgKACGYBUAAnQoAIaIFAgCICgAhpgYBAIcKACGnBgEAhwoAIRgEAACoDAAgCQAApwwAIAoAAKkMACALAACqDAAgDQAAqwwAIBAAAKwMACCDBQIAAAABhAUCAAAAAZQFAgAAAAGXBQEAAAABmAVAAAAAAaMFQAAAAAGkBQIAAAAB0wUAAAD7BQLxBQIAAAAB8gUCAAAAAfMFEAAAAAH0BRAAAAAB9QUQAAAAAfYFEAAAAAH3BRAAAAAB-AUQAAAAAfkFEAAAAAH7BQEAAAABAgAAABwAIEQAAJwUACAHCwAArAoAIIMFAgAAAAGUBQIAAAABlQUQAAAAAZYFEAAAAAGXBQEAAAABmAVAAAAAAQIAAAA4ACBEAACeFAAgAwAAABoAIEQAAJwUACBFAACiFAAgGgAAABoAIAQAAPILACAJAADxCwAgCgAA8wsAIAsAAPQLACANAAD1CwAgEAAA9gsAID0AAKIUACCDBQIAiAoAIYQFAgCICgAhlAUCAPkKACGXBQEAnAoAIZgFQACdCgAhowVAAJ0KACGkBQIAiAoAIdMFAADwC_sFIvEFAgD5CgAh8gUCAPkKACHzBRAAkQoAIfQFEACRCgAh9QUQAJEKACH2BRAAkQoAIfcFEADvCwAh-AUQAJEKACH5BRAAkQoAIfsFAQCcCgAhGAQAAPILACAJAADxCwAgCgAA8wsAIAsAAPQLACANAAD1CwAgEAAA9gsAIIMFAgCICgAhhAUCAIgKACGUBQIA-QoAIZcFAQCcCgAhmAVAAJ0KACGjBUAAnQoAIaQFAgCICgAh0wUAAPAL-wUi8QUCAPkKACHyBQIA-QoAIfMFEACRCgAh9AUQAJEKACH1BRAAkQoAIfYFEACRCgAh9wUQAO8LACH4BRAAkQoAIfkFEACRCgAh-wUBAJwKACEDAAAANgAgRAAAnhQAIEUAAKUUACAJAAAANgAgCwAAngoAID0AAKUUACCDBQIAiAoAIZQFAgCICgAhlQUQAJEKACGWBRAAkQoAIZcFAQCcCgAhmAVAAJ0KACEHCwAAngoAIIMFAgCICgAhlAUCAIgKACGVBRAAkQoAIZYFEACRCgAhlwUBAJwKACGYBUAAnQoAISAFAACrEQAgBwAArBEAIAgAAK4RACAdAAC3EQAgJQAAtREAICYAAKoRACAnAACtEQAgKAAArxEAICkAALARACAqAACxEQAgKwAAshEAICwAALMRACAtAAC0EQAgLgAAthEAIC8AALgRACAwAAC5EQAgMQAAuhEAIDIAALsRACAzAAC8EQAgNAAAvREAIDUAAL4RACA2AAC_EQAggwUCAAAAAYYGAQAAAAGHBgEAAAABvAYgAAAAAb0GAgAAAAG-BiAAAAABvwYCAAAAAcAGIAAAAAHBBgIAAAABwgYCAAAAAQIAAAABACBEAACmFAAgAwAAAA0AIEQAAKYUACBFAACqFAAgIgAAAA0AIAUAALwPACAHAAC9DwAgCAAAvw8AIB0AAMgPACAlAADGDwAgJgAAuw8AICcAAL4PACAoAADADwAgKQAAwQ8AICoAAMIPACArAADDDwAgLAAAxA8AIC0AAMUPACAuAADHDwAgLwAAyQ8AIDAAAMoPACAxAADLDwAgMgAAzA8AIDMAAM0PACA0AADODwAgNQAAzw8AIDYAANAPACA9AACqFAAggwUCAIgKACGGBgEAhwoAIYcGAQCHCgAhvAYgALoKACG9BgIAiAoAIb4GIAC6CgAhvwYCAIgKACHABiAAugoAIcEGAgCICgAhwgYCAIgKACEgBQAAvA8AIAcAAL0PACAIAAC_DwAgHQAAyA8AICUAAMYPACAmAAC7DwAgJwAAvg8AICgAAMAPACApAADBDwAgKgAAwg8AICsAAMMPACAsAADEDwAgLQAAxQ8AIC4AAMcPACAvAADJDwAgMAAAyg8AIDEAAMsPACAyAADMDwAgMwAAzQ8AIDQAAM4PACA1AADPDwAgNgAA0A8AIIMFAgCICgAhhgYBAIcKACGHBgEAhwoAIbwGIAC6CgAhvQYCAIgKACG-BiAAugoAIb8GAgCICgAhwAYgALoKACHBBgIAiAoAIcIGAgCICgAhGAWLAQMHjgEECJIBBQ4ALx2qARklqAEcJgYCJ5EBBiiWASIpmgEjKpsBByufASQsowElLacBJi6pAR0vrAEnMK4BKDGwASkysgEqM7QBKzS4ASw1uwEbNr8BLTfBAS4LAwABBQoDCFoFDGQHDgAhGFkPHF4WHWgZHm0aH28bJXMcCAMAAQQAAgcMBAhRBQtPBg4AFRhQDxlVFAQDDgEFDwMIEwUOABMJAxUBBAACBhQDBxYECxgGDEoHDgASEEUJF0kRBwMAAQU_AwgZBQ4AEBQdBxU5DBY9DwgEAAIJHgUKHwELIAYNJAgOAA4QLAkTMAsCDAAHDwAJBAklBQwmBw0nCA4ACgENKAACDAAHEgAMAwsABg4ADRExCwERMgADDTMAEDQAEzUAAwQAAgYAAws-BgUFRAAIQAAUQQAVQgAWQwABCQAFAhBLABdMAAIFTQAITgABBgADAwhXABhWABlYAAMEAAIOABgbYhcBGgAWARtjAAIDaQEEAAIBBAACAgMAAQQAAgYDAAEEdgIOACAZeh0gdBwhdRwEAwABDgAfInscJH8eASMAHQEkgAEAAhmCAQAhgQEACAWDAQAIhQEADIcBABiEAQAchgEAHYgBAB6JAQAligEAAQMAAQEDAAEBAwABAQMAAQEDAAEBAwABAQMAAQEDAAEBAwABAQMAAQEDAAEBAwABAQMAAREFwwEAB8QBAAjGAQAdzwEAJc0BACbCAQAnxQEAKMcBACnIAQAqyQEAK8oBACzLAQAtzAEALs4BADTQAQA10QEANtIBAAAAAAUOADRKADVLADZMADdNADgAAAAAAAUOADRKADVLADZMADdNADgBAwABAQMAAQUOAD1KAD5LAD9MAEBNAEEAAAAAAAUOAD1KAD5LAD9MAEBNAEEEAwABBAACB4kCBAuKAgYEAwABBAACB5ACBAuRAgYFDgBGSgBHSwBITABJTQBKAAAAAAAFDgBGSgBHSwBITABJTQBKAQYAAwEGAAMFDgBPSgBQSwBRTABSTQBTAAAAAAAFDgBPSgBQSwBRTABSTQBTAQO5AgEBA78CAQUOAFhKAFlLAFpMAFtNAFwAAAAAAAUOAFhKAFlLAFpMAFtNAFwBAwABAQMAAQUOAGFKAGJLAGNMAGRNAGUAAAAAAAUOAGFKAGJLAGNMAGRNAGUDBAACBgADC-cCBgMEAAIGAAML7QIGBQ4AakoAa0sAbEwAbU0AbgAAAAAABQ4AakoAa0sAbEwAbU0AbgUDgAMBBAACBv8CAweBAwQLggMGBQOJAwEEAAIGiAMDB4oDBAuLAwYFDgBzSgB0SwB1TAB2TQB3AAAAAAAFDgBzSgB0SwB1TAB2TQB3AgmdAwUMngMHAgmkAwUMpQMHBQ4AfEoAfUsAfkwAf00AgAEAAAAAAAUOAHxKAH1LAH5MAH9NAIABAQkABQEJAAUFDgCFAUoAhgFLAIcBTACIAU0AiQEAAAAAAAUOAIUBSgCGAUsAhwFMAIgBTQCJAQEDAAEBAwABBQ4AjgFKAI8BSwCQAUwAkQFNAJIBAAAAAAAFDgCOAUoAjwFLAJABTACRAU0AkgEBAwABAQMAAQUOAJcBSgCYAUsAmQFMAJoBTQCbAQAAAAAABQ4AlwFKAJgBSwCZAUwAmgFNAJsBAQQAAgEEAAIFDgCgAUoAoQFLAKIBTACjAU0ApAEAAAAAAAUOAKABSgChAUsAogFMAKMBTQCkAQEaABYBGgAWBQ4AqQFKAKoBSwCrAUwArAFNAK0BAAAAAAAFDgCpAUoAqgFLAKsBTACsAU0ArQEEBAACCaUEBQqmBAELpwQGBAQAAgmtBAUKrgQBC68EBgUOALIBSgCzAUsAtAFMALUBTQC2AQAAAAAABQ4AsgFKALMBSwC0AUwAtQFNALYBAgwABw8ACQIMAAcPAAkFDgC7AUoAvAFLAL0BTAC-AU0AvwEAAAAAAAUOALsBSgC8AUsAvQFMAL4BTQC_AQEDAAEBAwABBQ4AxAFKAMUBSwDGAUwAxwFNAMgBAAAAAAAFDgDEAUoAxQFLAMYBTADHAU0AyAEBAwABAQMAAQUOAM0BSgDOAUsAzwFMANABTQDRAQAAAAAABQ4AzQFKAM4BSwDPAUwA0AFNANEBAQMAAQEDAAEFDgDWAUoA1wFLANgBTADZAU0A2gEAAAAAAAUOANYBSgDXAUsA2AFMANkBTQDaAQAAAAUOAOABSgDhAUsA4gFMAOMBTQDkAQAAAAAABQ4A4AFKAOEBSwDiAUwA4wFNAOQBAwMAAQSzBQIgsgUcAwMAAQS6BQIguQUcBQ4A6QFKAOoBSwDrAUwA7AFNAO0BAAAAAAAFDgDpAUoA6gFLAOsBTADsAU0A7QECAwABIswFHAIDAAEi0gUcBQ4A8gFKAPMBSwD0AUwA9QFNAPYBAAAAAAAFDgDyAUoA8wFLAPQBTAD1AU0A9gEBIwAdASMAHQUOAPsBSgD8AUsA_QFMAP4BTQD_AQAAAAAABQ4A-wFKAPwBSwD9AUwA_gFNAP8BAgP6BQEEAAICA4AGAQQAAgUOAIQCSgCFAksAhgJMAIcCTQCIAgAAAAAABQ4AhAJKAIUCSwCGAkwAhwJNAIgCAQQAAgEEAAIFDgCNAkoAjgJLAI8CTACQAk0AkQIAAAAAAAUOAI0CSgCOAksAjwJMAJACTQCRAgEDAAEBAwABBQ4AlgJKAJcCSwCYAkwAmQJNAJoCAAAAAAAFDgCWAkoAlwJLAJgCTACZAk0AmgIBAwABAQMAAQUOAJ8CSgCgAksAoQJMAKICTQCjAgAAAAAABQ4AnwJKAKACSwChAkwAogJNAKMCAQMAAQEDAAEFDgCoAkoAqQJLAKoCTACrAk0ArAIAAAAAAAUOAKgCSgCpAksAqgJMAKsCTQCsAgEDAAEBAwABBQ4AsQJKALICSwCzAkwAtAJNALUCAAAAAAAFDgCxAkoAsgJLALMCTAC0Ak0AtQIBAwABAQMAAQUOALoCSgC7AksAvAJMAL0CTQC-AgAAAAAABQ4AugJKALsCSwC8AkwAvQJNAL4CAQMAAQEDAAEFDgDDAkoAxAJLAMUCTADGAk0AxwIAAAAAAAUOAMMCSgDEAksAxQJMAMYCTQDHAgIDAAEEAAICAwABBAACBQ4AzAJKAM0CSwDOAkwAzwJNANACAAAAAAAFDgDMAkoAzQJLAM4CTADPAk0A0AIBAwABAQMAAQUOANUCSgDWAksA1wJMANgCTQDZAgAAAAAABQ4A1QJKANYCSwDXAkwA2AJNANkCAQsABgELAAYFDgDeAkoA3wJLAOACTADhAk0A4gIAAAAAAAUOAN4CSgDfAksA4AJMAOECTQDiAgIMAAcSAAwCDAAHEgAMBQ4A5wJKAOgCSwDpAkwA6gJNAOsCAAAAAAAFDgDnAkoA6AJLAOkCTADqAk0A6wIBAwABAQMAAQUOAPACSgDxAksA8gJMAPMCTQD0AgAAAAAABQ4A8AJKAPECSwDyAkwA8wJNAPQCOAIBOdMBATrVAQE71gEBPNcBAT7ZAQE_2wEwQNwBMUHeAQFC4AEwQ-EBMkbiAQFH4wEBSOQBME7nATNP6AE5UOkBAlHqAQJS6wECU-wBAlTtAQJV7wECVvEBMFfyATpY9AECWfYBMFr3ATtb-AECXPkBAl36ATBe_QE8X_4BQmD_AQNhgAIDYoECA2OCAgNkgwIDZYUCA2aHAjBniAJDaIwCA2mOAjBqjwJEa5ICA2yTAgNtlAIwbpcCRW-YAktwmQIUcZoCFHKbAhRznAIUdJ0CFHWfAhR2oQIwd6ICTHikAhR5pgIweqcCTXuoAhR8qQIUfaoCMH6tAk5_rgJUgAGvAgSBAbACBIIBsQIEgwGyAgSEAbMCBIUBtQIEhgG3AjCHAbgCVYgBuwIEiQG9AjCKAb4CVosBwAIEjAHBAgSNAcICMI4BxQJXjwHGAl2QAccCBpEByAIGkgHJAgaTAcoCBpQBywIGlQHNAgaWAc8CMJcB0AJemAHSAgaZAdQCMJoB1QJfmwHWAgacAdcCBp0B2AIwngHbAmCfAdwCZqAB3QIPoQHeAg-iAd8CD6MB4AIPpAHhAg-lAeMCD6YB5QIwpwHmAmeoAekCD6kB6wIwqgHsAmirAe4CD6wB7wIPrQHwAjCuAfMCaa8B9AJvsAH1AgWxAfYCBbIB9wIFswH4AgW0AfkCBbUB-wIFtgH9AjC3Af4CcLgBhAMFuQGGAzC6AYcDcbsBjAMFvAGNAwW9AY4DML4BkQNyvwGSA3jAAZMDCcEBlAMJwgGVAwnDAZYDCcQBlwMJxQGZAwnGAZsDMMcBnAN5yAGgAwnJAaIDMMoBowN6ywGmAwnMAacDCc0BqAMwzgGrA3vPAawDgQHQAa0DEdEBrgMR0gGvAxHTAbADEdQBsQMR1QGzAxHWAbUDMNcBtgOCAdgBuAMR2QG6AzDaAbsDgwHbAbwDEdwBvQMR3QG-AzDeAcEDhAHfAcIDigHgAcMDIuEBxAMi4gHFAyLjAcYDIuQBxwMi5QHJAyLmAcsDMOcBzAOLAegBzgMi6QHQAzDqAdEDjAHrAdIDIuwB0wMi7QHUAzDuAdcDjQHvAdgDkwHwAdkDI_EB2gMj8gHbAyPzAdwDI_QB3QMj9QHfAyP2AeEDMPcB4gOUAfgB5AMj-QHmAzD6AecDlQH7AegDI_wB6QMj_QHqAzD-Ae0DlgH_Ae4DnAGAAu8DFoEC8AMWggLxAxaDAvIDFoQC8wMWhQL1AxaGAvcDMIcC-AOdAYgC-gMWiQL8AzCKAv0DngGLAv4DFowC_wMWjQKABDCOAoMEnwGPAoQEpQGQAoUEF5EChgQXkgKHBBeTAogEF5QCiQQXlQKLBBeWAo0EMJcCjgSmAZgCkAQXmQKSBDCaApMEpwGbApQEF5wClQQXnQKWBDCeApkEqAGfApoErgGgApsEB6ECnAQHogKdBAejAp4EB6QCnwQHpQKhBAemAqMEMKcCpASvAagCqQQHqQKrBDCqAqwEsAGrArAEB6wCsQQHrQKyBDCuArUEsQGvArYEtwGwArcECLECuAQIsgK5BAizAroECLQCuwQItQK9BAi2Ar8EMLcCwAS4AbgCwgQIuQLEBDC6AsUEuQG7AsYECLwCxwQIvQLIBDC-AssEugG_AswEwAHAAs0EJMECzgQkwgLPBCTDAtAEJMQC0QQkxQLTBCTGAtUEMMcC1gTBAcgC2AQkyQLaBDDKAtsEwgHLAtwEJMwC3QQkzQLeBDDOAuEEwwHPAuIEyQHQAuMEJdEC5AQl0gLlBCXTAuYEJdQC5wQl1QLpBCXWAusEMNcC7ATKAdgC7gQl2QLwBDDaAvEEywHbAvIEJdwC8wQl3QL0BDDeAvcEzAHfAvgE0gHgAvkEJuEC-gQm4gL7BCbjAvwEJuQC_QQm5QL_BCbmAoEFMOcCggXTAegChAUm6QKGBTDqAocF1AHrAogFJuwCiQUm7QKKBTDuAo0F1QHvAo4F2wHwApAF3AHxApEF3AHyApQF3AHzApUF3AH0ApYF3AH1ApgF3AH2ApoFMPcCmwXdAfgCnQXcAfkCnwUw-gKgBd4B-wKhBdwB_AKiBdwB_QKjBTD-AqYF3wH_AqcF5QGAA6gFHIEDqQUcggOqBRyDA6sFHIQDrAUchQOuBRyGA7AFMIcDsQXmAYgDtQUciQO3BTCKA7gF5wGLA7sFHIwDvAUcjQO9BTCOA8AF6AGPA8EF7gGQA8IFHZEDwwUdkgPEBR2TA8UFHZQDxgUdlQPIBR2WA8oFMJcDywXvAZgDzgUdmQPQBTCaA9EF8AGbA9MFHZwD1AUdnQPVBTCeA9gF8QGfA9kF9wGgA9oFHqED2wUeogPcBR6jA90FHqQD3gUepQPgBR6mA-IFMKcD4wX4AagD5QUeqQPnBTCqA-gF-QGrA-kFHqwD6gUerQPrBTCuA-4F-gGvA-8FgAKwA_AFGbED8QUZsgPyBRmzA_MFGbQD9AUZtQP2BRm2A_gFMLcD-QWBArgD_AUZuQP-BTC6A_8FggK7A4EGGbwDggYZvQODBjC-A4YGgwK_A4cGiQLAA4gGGsEDiQYawgOKBhrDA4sGGsQDjAYaxQOOBhrGA5AGMMcDkQaKAsgDkwYayQOVBjDKA5YGiwLLA5cGGswDmAYazQOZBjDOA5wGjALPA50GkgLQA58GJ9EDoAYn0gOiBifTA6MGJ9QDpAYn1QOmBifWA6gGMNcDqQaTAtgDqwYn2QOtBjDaA64GlALbA68GJ9wDsAYn3QOxBjDeA7QGlQLfA7UGmwLgA7cGKOEDuAYo4gO6BijjA7sGKOQDvAYo5QO-BijmA8AGMOcDwQacAugDwwYo6QPFBjDqA8YGnQLrA8cGKOwDyAYo7QPJBjDuA8wGngLvA80GpALwA88GKfED0AYp8gPSBinzA9MGKfQD1AYp9QPWBin2A9gGMPcD2QalAvgD2wYp-QPdBjD6A94GpgL7A98GKfwD4AYp_QPhBjD-A-QGpwL_A-UGrQKABOcGKoEE6AYqggTqBiqDBOsGKoQE7AYqhQTuBiqGBPAGMIcE8QauAogE8wYqiQT1BjCKBPYGrwKLBPcGKowE-AYqjQT5BjCOBPwGsAKPBP0GtgKQBP4GLJEE_wYskgSAByyTBIEHLJQEggcslQSEByyWBIYHMJcEhwe3ApgEiQcsmQSLBzCaBIwHuAKbBI0HLJwEjgcsnQSPBzCeBJIHuQKfBJMHvwKgBJUHK6EElgcrogSYByujBJkHK6QEmgcrpQScByumBJ4HMKcEnwfAAqgEoQcrqQSjBzCqBKQHwQKrBKUHK6wEpgcrrQSnBzCuBKoHwgKvBKsHyAKwBKwHG7EErQcbsgSuBxuzBK8HG7QEsAcbtQSyBxu2BLQHMLcEtQfJArgEtwcbuQS5BzC6BLoHygK7BLsHG7wEvAcbvQS9BzC-BMAHywK_BMEH0QLABMIHLcEEwwctwgTEBy3DBMUHLcQExgctxQTIBy3GBMoHMMcEywfSAsgEzQctyQTPBzDKBNAH0wLLBNEHLcwE0gctzQTTBzDOBNYH1ALPBNcH2gLQBNgHDNEE2QcM0gTaBwzTBNsHDNQE3AcM1QTeBwzWBOAHMNcE4QfbAtgE4wcM2QTlBzDaBOYH3ALbBOcHDNwE6AcM3QTpBzDeBOwH3QLfBO0H4wLgBO4HC-EE7wcL4gTwBwvjBPEHC-QE8gcL5QT0BwvmBPYHMOcE9wfkAugE-QcL6QT7BzDqBPwH5QLrBP0HC-wE_gcL7QT_BzDuBIII5gLvBIMI7ALwBIUILvEEhggu8gSICC7zBIkILvQEiggu9QSMCC72BI4IMPcEjwjtAvgEkQgu-QSTCDD6BJQI7gL7BJUILvwElggu_QSXCDD-BJoI7wL_BJsI9QI" } config.compilerWasm = { getRuntime: async () => require('./query_compiler_fast_bg.js'), diff --git a/packages/db/generated/prisma/index-browser.js b/packages/db/generated/prisma/index-browser.js index e67b41ed..1fb8d27a 100644 --- a/packages/db/generated/prisma/index-browser.js +++ b/packages/db/generated/prisma/index-browser.js @@ -162,6 +162,7 @@ exports.Prisma.AppointmentScalarFieldEnum = { patientId: 'patientId', userId: 'userId', staffId: 'staffId', + npiProviderId: 'npiProviderId', title: 'title', date: 'date', startTime: 'startTime', diff --git a/packages/db/generated/prisma/index.d.ts b/packages/db/generated/prisma/index.d.ts index 1d9a7098..a67002e4 100644 --- a/packages/db/generated/prisma/index.d.ts +++ b/packages/db/generated/prisma/index.d.ts @@ -4587,6 +4587,7 @@ export namespace Prisma { payments: number commissionBatches: number appointmentProcedures: number + appointments: number } export type NpiProviderCountOutputTypeSelect = { @@ -4594,6 +4595,7 @@ export namespace Prisma { payments?: boolean | NpiProviderCountOutputTypeCountPaymentsArgs commissionBatches?: boolean | NpiProviderCountOutputTypeCountCommissionBatchesArgs appointmentProcedures?: boolean | NpiProviderCountOutputTypeCountAppointmentProceduresArgs + appointments?: boolean | NpiProviderCountOutputTypeCountAppointmentsArgs } // Custom InputTypes @@ -4635,6 +4637,13 @@ export namespace Prisma { where?: AppointmentProcedureWhereInput } + /** + * NpiProviderCountOutputType without action + */ + export type NpiProviderCountOutputTypeCountAppointmentsArgs = { + where?: AppointmentWhereInput + } + /** * Count Type ClaimCountOutputType @@ -8234,6 +8243,7 @@ export namespace Prisma { patientId: number | null userId: number | null staffId: number | null + npiProviderId: number | null } export type AppointmentSumAggregateOutputType = { @@ -8241,6 +8251,7 @@ export namespace Prisma { patientId: number | null userId: number | null staffId: number | null + npiProviderId: number | null } export type AppointmentMinAggregateOutputType = { @@ -8248,6 +8259,7 @@ export namespace Prisma { patientId: number | null userId: number | null staffId: number | null + npiProviderId: number | null title: string | null date: Date | null startTime: string | null @@ -8267,6 +8279,7 @@ export namespace Prisma { patientId: number | null userId: number | null staffId: number | null + npiProviderId: number | null title: string | null date: Date | null startTime: string | null @@ -8286,6 +8299,7 @@ export namespace Prisma { patientId: number userId: number staffId: number + npiProviderId: number title: number date: number startTime: number @@ -8307,6 +8321,7 @@ export namespace Prisma { patientId?: true userId?: true staffId?: true + npiProviderId?: true } export type AppointmentSumAggregateInputType = { @@ -8314,6 +8329,7 @@ export namespace Prisma { patientId?: true userId?: true staffId?: true + npiProviderId?: true } export type AppointmentMinAggregateInputType = { @@ -8321,6 +8337,7 @@ export namespace Prisma { patientId?: true userId?: true staffId?: true + npiProviderId?: true title?: true date?: true startTime?: true @@ -8340,6 +8357,7 @@ export namespace Prisma { patientId?: true userId?: true staffId?: true + npiProviderId?: true title?: true date?: true startTime?: true @@ -8359,6 +8377,7 @@ export namespace Prisma { patientId?: true userId?: true staffId?: true + npiProviderId?: true title?: true date?: true startTime?: true @@ -8465,6 +8484,7 @@ export namespace Prisma { patientId: number userId: number staffId: number + npiProviderId: number | null title: string date: Date startTime: string @@ -8503,6 +8523,7 @@ export namespace Prisma { patientId?: boolean userId?: boolean staffId?: boolean + npiProviderId?: boolean title?: boolean date?: boolean startTime?: boolean @@ -8518,6 +8539,7 @@ export namespace Prisma { patient?: boolean | PatientDefaultArgs user?: boolean | UserDefaultArgs staff?: boolean | Appointment$staffArgs + npiProvider?: boolean | Appointment$npiProviderArgs procedures?: boolean | Appointment$proceduresArgs claims?: boolean | Appointment$claimsArgs files?: boolean | Appointment$filesArgs @@ -8529,6 +8551,7 @@ export namespace Prisma { patientId?: boolean userId?: boolean staffId?: boolean + npiProviderId?: boolean title?: boolean date?: boolean startTime?: boolean @@ -8544,6 +8567,7 @@ export namespace Prisma { patient?: boolean | PatientDefaultArgs user?: boolean | UserDefaultArgs staff?: boolean | Appointment$staffArgs + npiProvider?: boolean | Appointment$npiProviderArgs }, ExtArgs["result"]["appointment"]> export type AppointmentSelectUpdateManyAndReturn = $Extensions.GetSelect<{ @@ -8551,6 +8575,7 @@ export namespace Prisma { patientId?: boolean userId?: boolean staffId?: boolean + npiProviderId?: boolean title?: boolean date?: boolean startTime?: boolean @@ -8566,6 +8591,7 @@ export namespace Prisma { patient?: boolean | PatientDefaultArgs user?: boolean | UserDefaultArgs staff?: boolean | Appointment$staffArgs + npiProvider?: boolean | Appointment$npiProviderArgs }, ExtArgs["result"]["appointment"]> export type AppointmentSelectScalar = { @@ -8573,6 +8599,7 @@ export namespace Prisma { patientId?: boolean userId?: boolean staffId?: boolean + npiProviderId?: boolean title?: boolean date?: boolean startTime?: boolean @@ -8587,11 +8614,12 @@ export namespace Prisma { eligibilityStatus?: boolean } - export type AppointmentOmit = $Extensions.GetOmit<"id" | "patientId" | "userId" | "staffId" | "title" | "date" | "startTime" | "endTime" | "type" | "typeLocked" | "notes" | "procedureCodeNotes" | "status" | "movedByAi" | "createdAt" | "eligibilityStatus", ExtArgs["result"]["appointment"]> + export type AppointmentOmit = $Extensions.GetOmit<"id" | "patientId" | "userId" | "staffId" | "npiProviderId" | "title" | "date" | "startTime" | "endTime" | "type" | "typeLocked" | "notes" | "procedureCodeNotes" | "status" | "movedByAi" | "createdAt" | "eligibilityStatus", ExtArgs["result"]["appointment"]> export type AppointmentInclude = { patient?: boolean | PatientDefaultArgs user?: boolean | UserDefaultArgs staff?: boolean | Appointment$staffArgs + npiProvider?: boolean | Appointment$npiProviderArgs procedures?: boolean | Appointment$proceduresArgs claims?: boolean | Appointment$claimsArgs files?: boolean | Appointment$filesArgs @@ -8601,11 +8629,13 @@ export namespace Prisma { patient?: boolean | PatientDefaultArgs user?: boolean | UserDefaultArgs staff?: boolean | Appointment$staffArgs + npiProvider?: boolean | Appointment$npiProviderArgs } export type AppointmentIncludeUpdateManyAndReturn = { patient?: boolean | PatientDefaultArgs user?: boolean | UserDefaultArgs staff?: boolean | Appointment$staffArgs + npiProvider?: boolean | Appointment$npiProviderArgs } export type $AppointmentPayload = { @@ -8614,6 +8644,7 @@ export namespace Prisma { patient: Prisma.$PatientPayload user: Prisma.$UserPayload staff: Prisma.$StaffPayload | null + npiProvider: Prisma.$NpiProviderPayload | null procedures: Prisma.$AppointmentProcedurePayload[] claims: Prisma.$ClaimPayload[] files: Prisma.$AppointmentFilePayload[] @@ -8623,6 +8654,7 @@ export namespace Prisma { patientId: number userId: number staffId: number + npiProviderId: number | null title: string date: Date startTime: string @@ -9032,6 +9064,7 @@ export namespace Prisma { patient = {}>(args?: Subset>): Prisma__PatientClient<$Result.GetResult, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions> user = {}>(args?: Subset>): Prisma__UserClient<$Result.GetResult, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions> staff = {}>(args?: Subset>): Prisma__StaffClient<$Result.GetResult, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> + npiProvider = {}>(args?: Subset>): Prisma__NpiProviderClient<$Result.GetResult, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> procedures = {}>(args?: Subset>): Prisma.PrismaPromise<$Result.GetResult, T, "findMany", GlobalOmitOptions> | Null> claims = {}>(args?: Subset>): Prisma.PrismaPromise<$Result.GetResult, T, "findMany", GlobalOmitOptions> | Null> files = {}>(args?: Subset>): Prisma.PrismaPromise<$Result.GetResult, T, "findMany", GlobalOmitOptions> | Null> @@ -9068,6 +9101,7 @@ export namespace Prisma { readonly patientId: FieldRef<"Appointment", 'Int'> readonly userId: FieldRef<"Appointment", 'Int'> readonly staffId: FieldRef<"Appointment", 'Int'> + readonly npiProviderId: FieldRef<"Appointment", 'Int'> readonly title: FieldRef<"Appointment", 'String'> readonly date: FieldRef<"Appointment", 'DateTime'> readonly startTime: FieldRef<"Appointment", 'String'> @@ -9494,6 +9528,25 @@ export namespace Prisma { where?: StaffWhereInput } + /** + * Appointment.npiProvider + */ + export type Appointment$npiProviderArgs = { + /** + * Select specific fields to fetch from the NpiProvider + */ + select?: NpiProviderSelect | null + /** + * Omit specific fields from the NpiProvider + */ + omit?: NpiProviderOmit | null + /** + * Choose, which related nodes to fetch as well + */ + include?: NpiProviderInclude | null + where?: NpiProviderWhereInput + } + /** * Appointment.procedures */ @@ -12099,6 +12152,7 @@ export namespace Prisma { payments?: boolean | NpiProvider$paymentsArgs commissionBatches?: boolean | NpiProvider$commissionBatchesArgs appointmentProcedures?: boolean | NpiProvider$appointmentProceduresArgs + appointments?: boolean | NpiProvider$appointmentsArgs _count?: boolean | NpiProviderCountOutputTypeDefaultArgs }, ExtArgs["result"]["npiProvider"]> @@ -12138,6 +12192,7 @@ export namespace Prisma { payments?: boolean | NpiProvider$paymentsArgs commissionBatches?: boolean | NpiProvider$commissionBatchesArgs appointmentProcedures?: boolean | NpiProvider$appointmentProceduresArgs + appointments?: boolean | NpiProvider$appointmentsArgs _count?: boolean | NpiProviderCountOutputTypeDefaultArgs } export type NpiProviderIncludeCreateManyAndReturn = { @@ -12155,6 +12210,7 @@ export namespace Prisma { payments: Prisma.$PaymentPayload[] commissionBatches: Prisma.$CommissionBatchPayload[] appointmentProcedures: Prisma.$AppointmentProcedurePayload[] + appointments: Prisma.$AppointmentPayload[] } scalars: $Extensions.GetPayloadResult<{ id: number @@ -12562,6 +12618,7 @@ export namespace Prisma { payments = {}>(args?: Subset>): Prisma.PrismaPromise<$Result.GetResult, T, "findMany", GlobalOmitOptions> | Null> commissionBatches = {}>(args?: Subset>): Prisma.PrismaPromise<$Result.GetResult, T, "findMany", GlobalOmitOptions> | Null> appointmentProcedures = {}>(args?: Subset>): Prisma.PrismaPromise<$Result.GetResult, T, "findMany", GlobalOmitOptions> | Null> + appointments = {}>(args?: Subset>): Prisma.PrismaPromise<$Result.GetResult, T, "findMany", GlobalOmitOptions> | Null> /** * Attaches callbacks for the resolution and/or rejection of the Promise. * @param onfulfilled The callback to execute when the Promise is resolved. @@ -13088,6 +13145,30 @@ export namespace Prisma { distinct?: AppointmentProcedureScalarFieldEnum | AppointmentProcedureScalarFieldEnum[] } + /** + * NpiProvider.appointments + */ + export type NpiProvider$appointmentsArgs = { + /** + * Select specific fields to fetch from the Appointment + */ + select?: AppointmentSelect | null + /** + * Omit specific fields from the Appointment + */ + omit?: AppointmentOmit | null + /** + * Choose, which related nodes to fetch as well + */ + include?: AppointmentInclude | null + where?: AppointmentWhereInput + orderBy?: AppointmentOrderByWithRelationInput | AppointmentOrderByWithRelationInput[] + cursor?: AppointmentWhereUniqueInput + take?: number + skip?: number + distinct?: AppointmentScalarFieldEnum | AppointmentScalarFieldEnum[] + } + /** * NpiProvider without action */ @@ -48136,6 +48217,7 @@ export namespace Prisma { patientId: 'patientId', userId: 'userId', staffId: 'staffId', + npiProviderId: 'npiProviderId', title: 'title', date: 'date', startTime: 'startTime', @@ -49278,6 +49360,7 @@ export namespace Prisma { patientId?: IntFilter<"Appointment"> | number userId?: IntFilter<"Appointment"> | number staffId?: IntFilter<"Appointment"> | number + npiProviderId?: IntNullableFilter<"Appointment"> | number | null title?: StringFilter<"Appointment"> | string date?: DateTimeFilter<"Appointment"> | Date | string startTime?: StringFilter<"Appointment"> | string @@ -49293,6 +49376,7 @@ export namespace Prisma { patient?: XOR user?: XOR staff?: XOR | null + npiProvider?: XOR | null procedures?: AppointmentProcedureListRelationFilter claims?: ClaimListRelationFilter files?: AppointmentFileListRelationFilter @@ -49303,6 +49387,7 @@ export namespace Prisma { patientId?: SortOrder userId?: SortOrder staffId?: SortOrder + npiProviderId?: SortOrderInput | SortOrder title?: SortOrder date?: SortOrder startTime?: SortOrder @@ -49318,6 +49403,7 @@ export namespace Prisma { patient?: PatientOrderByWithRelationInput user?: UserOrderByWithRelationInput staff?: StaffOrderByWithRelationInput + npiProvider?: NpiProviderOrderByWithRelationInput procedures?: AppointmentProcedureOrderByRelationAggregateInput claims?: ClaimOrderByRelationAggregateInput files?: AppointmentFileOrderByRelationAggregateInput @@ -49331,6 +49417,7 @@ export namespace Prisma { patientId?: IntFilter<"Appointment"> | number userId?: IntFilter<"Appointment"> | number staffId?: IntFilter<"Appointment"> | number + npiProviderId?: IntNullableFilter<"Appointment"> | number | null title?: StringFilter<"Appointment"> | string date?: DateTimeFilter<"Appointment"> | Date | string startTime?: StringFilter<"Appointment"> | string @@ -49346,6 +49433,7 @@ export namespace Prisma { patient?: XOR user?: XOR staff?: XOR | null + npiProvider?: XOR | null procedures?: AppointmentProcedureListRelationFilter claims?: ClaimListRelationFilter files?: AppointmentFileListRelationFilter @@ -49356,6 +49444,7 @@ export namespace Prisma { patientId?: SortOrder userId?: SortOrder staffId?: SortOrder + npiProviderId?: SortOrderInput | SortOrder title?: SortOrder date?: SortOrder startTime?: SortOrder @@ -49383,6 +49472,7 @@ export namespace Prisma { patientId?: IntWithAggregatesFilter<"Appointment"> | number userId?: IntWithAggregatesFilter<"Appointment"> | number staffId?: IntWithAggregatesFilter<"Appointment"> | number + npiProviderId?: IntNullableWithAggregatesFilter<"Appointment"> | number | null title?: StringWithAggregatesFilter<"Appointment"> | string date?: DateTimeWithAggregatesFilter<"Appointment"> | Date | string startTime?: StringWithAggregatesFilter<"Appointment"> | string @@ -49542,6 +49632,7 @@ export namespace Prisma { payments?: PaymentListRelationFilter commissionBatches?: CommissionBatchListRelationFilter appointmentProcedures?: AppointmentProcedureListRelationFilter + appointments?: AppointmentListRelationFilter } export type NpiProviderOrderByWithRelationInput = { @@ -49556,6 +49647,7 @@ export namespace Prisma { payments?: PaymentOrderByRelationAggregateInput commissionBatches?: CommissionBatchOrderByRelationAggregateInput appointmentProcedures?: AppointmentProcedureOrderByRelationAggregateInput + appointments?: AppointmentOrderByRelationAggregateInput } export type NpiProviderWhereUniqueInput = Prisma.AtLeast<{ @@ -49574,6 +49666,7 @@ export namespace Prisma { payments?: PaymentListRelationFilter commissionBatches?: CommissionBatchListRelationFilter appointmentProcedures?: AppointmentProcedureListRelationFilter + appointments?: AppointmentListRelationFilter }, "id" | "userId_npiNumber"> export type NpiProviderOrderByWithAggregationInput = { @@ -52276,6 +52369,7 @@ export namespace Prisma { patient: PatientCreateNestedOneWithoutAppointmentsInput user: UserCreateNestedOneWithoutAppointmentsInput staff?: StaffCreateNestedOneWithoutAppointmentsInput + npiProvider?: NpiProviderCreateNestedOneWithoutAppointmentsInput procedures?: AppointmentProcedureCreateNestedManyWithoutAppointmentInput claims?: ClaimCreateNestedManyWithoutAppointmentInput files?: AppointmentFileCreateNestedManyWithoutAppointmentInput @@ -52286,6 +52380,7 @@ export namespace Prisma { patientId: number userId: number staffId: number + npiProviderId?: number | null title: string date: Date | string startTime: string @@ -52319,6 +52414,7 @@ export namespace Prisma { patient?: PatientUpdateOneRequiredWithoutAppointmentsNestedInput user?: UserUpdateOneRequiredWithoutAppointmentsNestedInput staff?: StaffUpdateOneWithoutAppointmentsNestedInput + npiProvider?: NpiProviderUpdateOneWithoutAppointmentsNestedInput procedures?: AppointmentProcedureUpdateManyWithoutAppointmentNestedInput claims?: ClaimUpdateManyWithoutAppointmentNestedInput files?: AppointmentFileUpdateManyWithoutAppointmentNestedInput @@ -52329,6 +52425,7 @@ export namespace Prisma { patientId?: IntFieldUpdateOperationsInput | number userId?: IntFieldUpdateOperationsInput | number staffId?: IntFieldUpdateOperationsInput | number + npiProviderId?: NullableIntFieldUpdateOperationsInput | number | null title?: StringFieldUpdateOperationsInput | string date?: DateTimeFieldUpdateOperationsInput | Date | string startTime?: StringFieldUpdateOperationsInput | string @@ -52351,6 +52448,7 @@ export namespace Prisma { patientId: number userId: number staffId: number + npiProviderId?: number | null title: string date: Date | string startTime: string @@ -52385,6 +52483,7 @@ export namespace Prisma { patientId?: IntFieldUpdateOperationsInput | number userId?: IntFieldUpdateOperationsInput | number staffId?: IntFieldUpdateOperationsInput | number + npiProviderId?: NullableIntFieldUpdateOperationsInput | number | null title?: StringFieldUpdateOperationsInput | string date?: DateTimeFieldUpdateOperationsInput | Date | string startTime?: StringFieldUpdateOperationsInput | string @@ -52535,6 +52634,7 @@ export namespace Prisma { payments?: PaymentCreateNestedManyWithoutNpiProviderInput commissionBatches?: CommissionBatchCreateNestedManyWithoutNpiProviderInput appointmentProcedures?: AppointmentProcedureCreateNestedManyWithoutNpiProviderInput + appointments?: AppointmentCreateNestedManyWithoutNpiProviderInput } export type NpiProviderUncheckedCreateInput = { @@ -52548,6 +52648,7 @@ export namespace Prisma { payments?: PaymentUncheckedCreateNestedManyWithoutNpiProviderInput commissionBatches?: CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput appointmentProcedures?: AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput + appointments?: AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput } export type NpiProviderUpdateInput = { @@ -52560,6 +52661,7 @@ export namespace Prisma { payments?: PaymentUpdateManyWithoutNpiProviderNestedInput commissionBatches?: CommissionBatchUpdateManyWithoutNpiProviderNestedInput appointmentProcedures?: AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput + appointments?: AppointmentUpdateManyWithoutNpiProviderNestedInput } export type NpiProviderUncheckedUpdateInput = { @@ -52573,6 +52675,7 @@ export namespace Prisma { payments?: PaymentUncheckedUpdateManyWithoutNpiProviderNestedInput commissionBatches?: CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput appointmentProcedures?: AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput + appointments?: AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput } export type NpiProviderCreateManyInput = { @@ -55419,6 +55522,17 @@ export namespace Prisma { _max?: NestedDateTimeFilter<$PrismaModel> } + export type IntNullableFilter<$PrismaModel = never> = { + equals?: number | IntFieldRefInput<$PrismaModel> | null + in?: number[] | ListIntFieldRefInput<$PrismaModel> | null + notIn?: number[] | ListIntFieldRefInput<$PrismaModel> | null + lt?: number | IntFieldRefInput<$PrismaModel> + lte?: number | IntFieldRefInput<$PrismaModel> + gt?: number | IntFieldRefInput<$PrismaModel> + gte?: number | IntFieldRefInput<$PrismaModel> + not?: NestedIntNullableFilter<$PrismaModel> | number | null + } + export type PatientScalarRelationFilter = { is?: PatientWhereInput isNot?: PatientWhereInput @@ -55429,6 +55543,11 @@ export namespace Prisma { isNot?: StaffWhereInput | null } + export type NpiProviderNullableScalarRelationFilter = { + is?: NpiProviderWhereInput | null + isNot?: NpiProviderWhereInput | null + } + export type AppointmentFileListRelationFilter = { every?: AppointmentFileWhereInput some?: AppointmentFileWhereInput @@ -55444,6 +55563,7 @@ export namespace Prisma { patientId?: SortOrder userId?: SortOrder staffId?: SortOrder + npiProviderId?: SortOrder title?: SortOrder date?: SortOrder startTime?: SortOrder @@ -55463,6 +55583,7 @@ export namespace Prisma { patientId?: SortOrder userId?: SortOrder staffId?: SortOrder + npiProviderId?: SortOrder } export type AppointmentMaxOrderByAggregateInput = { @@ -55470,6 +55591,7 @@ export namespace Prisma { patientId?: SortOrder userId?: SortOrder staffId?: SortOrder + npiProviderId?: SortOrder title?: SortOrder date?: SortOrder startTime?: SortOrder @@ -55489,6 +55611,7 @@ export namespace Prisma { patientId?: SortOrder userId?: SortOrder staffId?: SortOrder + npiProviderId?: SortOrder title?: SortOrder date?: SortOrder startTime?: SortOrder @@ -55508,6 +55631,23 @@ export namespace Prisma { patientId?: SortOrder userId?: SortOrder staffId?: SortOrder + npiProviderId?: SortOrder + } + + export type IntNullableWithAggregatesFilter<$PrismaModel = never> = { + equals?: number | IntFieldRefInput<$PrismaModel> | null + in?: number[] | ListIntFieldRefInput<$PrismaModel> | null + notIn?: number[] | ListIntFieldRefInput<$PrismaModel> | null + lt?: number | IntFieldRefInput<$PrismaModel> + lte?: number | IntFieldRefInput<$PrismaModel> + gt?: number | IntFieldRefInput<$PrismaModel> + gte?: number | IntFieldRefInput<$PrismaModel> + not?: NestedIntNullableWithAggregatesFilter<$PrismaModel> | number | null + _count?: NestedIntNullableFilter<$PrismaModel> + _avg?: NestedFloatNullableFilter<$PrismaModel> + _sum?: NestedIntNullableFilter<$PrismaModel> + _min?: NestedIntNullableFilter<$PrismaModel> + _max?: NestedIntNullableFilter<$PrismaModel> } export type AppointmentScalarRelationFilter = { @@ -55648,17 +55788,6 @@ export namespace Prisma { sortOrder?: SortOrder } - export type IntNullableFilter<$PrismaModel = never> = { - equals?: number | IntFieldRefInput<$PrismaModel> | null - in?: number[] | ListIntFieldRefInput<$PrismaModel> | null - notIn?: number[] | ListIntFieldRefInput<$PrismaModel> | null - lt?: number | IntFieldRefInput<$PrismaModel> - lte?: number | IntFieldRefInput<$PrismaModel> - gt?: number | IntFieldRefInput<$PrismaModel> - gte?: number | IntFieldRefInput<$PrismaModel> - not?: NestedIntNullableFilter<$PrismaModel> | number | null - } - export type DecimalNullableFilter<$PrismaModel = never> = { equals?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel> | null in?: Decimal[] | DecimalJsLike[] | number[] | string[] | ListDecimalFieldRefInput<$PrismaModel> | null @@ -55677,11 +55806,6 @@ export namespace Prisma { not?: NestedEnumProcedureSourceFilter<$PrismaModel> | $Enums.ProcedureSource } - export type NpiProviderNullableScalarRelationFilter = { - is?: NpiProviderWhereInput | null - isNot?: NpiProviderWhereInput | null - } - export type AppointmentProcedureCountOrderByAggregateInput = { id?: SortOrder appointmentId?: SortOrder @@ -55749,22 +55873,6 @@ export namespace Prisma { fee?: SortOrder } - export type IntNullableWithAggregatesFilter<$PrismaModel = never> = { - equals?: number | IntFieldRefInput<$PrismaModel> | null - in?: number[] | ListIntFieldRefInput<$PrismaModel> | null - notIn?: number[] | ListIntFieldRefInput<$PrismaModel> | null - lt?: number | IntFieldRefInput<$PrismaModel> - lte?: number | IntFieldRefInput<$PrismaModel> - gt?: number | IntFieldRefInput<$PrismaModel> - gte?: number | IntFieldRefInput<$PrismaModel> - not?: NestedIntNullableWithAggregatesFilter<$PrismaModel> | number | null - _count?: NestedIntNullableFilter<$PrismaModel> - _avg?: NestedFloatNullableFilter<$PrismaModel> - _sum?: NestedIntNullableFilter<$PrismaModel> - _min?: NestedIntNullableFilter<$PrismaModel> - _max?: NestedIntNullableFilter<$PrismaModel> - } - export type DecimalNullableWithAggregatesFilter<$PrismaModel = never> = { equals?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel> | null in?: Decimal[] | DecimalJsLike[] | number[] | string[] | ListDecimalFieldRefInput<$PrismaModel> | null @@ -58926,6 +59034,12 @@ export namespace Prisma { connect?: StaffWhereUniqueInput } + export type NpiProviderCreateNestedOneWithoutAppointmentsInput = { + create?: XOR + connectOrCreate?: NpiProviderCreateOrConnectWithoutAppointmentsInput + connect?: NpiProviderWhereUniqueInput + } + export type AppointmentProcedureCreateNestedManyWithoutAppointmentInput = { create?: XOR | AppointmentProcedureCreateWithoutAppointmentInput[] | AppointmentProcedureUncheckedCreateWithoutAppointmentInput[] connectOrCreate?: AppointmentProcedureCreateOrConnectWithoutAppointmentInput | AppointmentProcedureCreateOrConnectWithoutAppointmentInput[] @@ -58994,6 +59108,16 @@ export namespace Prisma { update?: XOR, StaffUncheckedUpdateWithoutAppointmentsInput> } + export type NpiProviderUpdateOneWithoutAppointmentsNestedInput = { + create?: XOR + connectOrCreate?: NpiProviderCreateOrConnectWithoutAppointmentsInput + upsert?: NpiProviderUpsertWithoutAppointmentsInput + disconnect?: NpiProviderWhereInput | boolean + delete?: NpiProviderWhereInput | boolean + connect?: NpiProviderWhereUniqueInput + update?: XOR, NpiProviderUncheckedUpdateWithoutAppointmentsInput> + } + export type AppointmentProcedureUpdateManyWithoutAppointmentNestedInput = { create?: XOR | AppointmentProcedureCreateWithoutAppointmentInput[] | AppointmentProcedureUncheckedCreateWithoutAppointmentInput[] connectOrCreate?: AppointmentProcedureCreateOrConnectWithoutAppointmentInput | AppointmentProcedureCreateOrConnectWithoutAppointmentInput[] @@ -59036,6 +59160,14 @@ export namespace Prisma { deleteMany?: AppointmentFileScalarWhereInput | AppointmentFileScalarWhereInput[] } + export type NullableIntFieldUpdateOperationsInput = { + set?: number | null + increment?: number + decrement?: number + multiply?: number + divide?: number + } + export type AppointmentProcedureUncheckedUpdateManyWithoutAppointmentNestedInput = { create?: XOR | AppointmentProcedureCreateWithoutAppointmentInput[] | AppointmentProcedureUncheckedCreateWithoutAppointmentInput[] connectOrCreate?: AppointmentProcedureCreateOrConnectWithoutAppointmentInput | AppointmentProcedureCreateOrConnectWithoutAppointmentInput[] @@ -59226,6 +59358,13 @@ export namespace Prisma { connect?: AppointmentProcedureWhereUniqueInput | AppointmentProcedureWhereUniqueInput[] } + export type AppointmentCreateNestedManyWithoutNpiProviderInput = { + create?: XOR | AppointmentCreateWithoutNpiProviderInput[] | AppointmentUncheckedCreateWithoutNpiProviderInput[] + connectOrCreate?: AppointmentCreateOrConnectWithoutNpiProviderInput | AppointmentCreateOrConnectWithoutNpiProviderInput[] + createMany?: AppointmentCreateManyNpiProviderInputEnvelope + connect?: AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] + } + export type ClaimUncheckedCreateNestedManyWithoutNpiProviderInput = { create?: XOR | ClaimCreateWithoutNpiProviderInput[] | ClaimUncheckedCreateWithoutNpiProviderInput[] connectOrCreate?: ClaimCreateOrConnectWithoutNpiProviderInput | ClaimCreateOrConnectWithoutNpiProviderInput[] @@ -59254,6 +59393,13 @@ export namespace Prisma { connect?: AppointmentProcedureWhereUniqueInput | AppointmentProcedureWhereUniqueInput[] } + export type AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput = { + create?: XOR | AppointmentCreateWithoutNpiProviderInput[] | AppointmentUncheckedCreateWithoutNpiProviderInput[] + connectOrCreate?: AppointmentCreateOrConnectWithoutNpiProviderInput | AppointmentCreateOrConnectWithoutNpiProviderInput[] + createMany?: AppointmentCreateManyNpiProviderInputEnvelope + connect?: AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] + } + export type UserUpdateOneRequiredWithoutNpiProvidersNestedInput = { create?: XOR connectOrCreate?: UserCreateOrConnectWithoutNpiProvidersInput @@ -59318,6 +59464,20 @@ export namespace Prisma { deleteMany?: AppointmentProcedureScalarWhereInput | AppointmentProcedureScalarWhereInput[] } + export type AppointmentUpdateManyWithoutNpiProviderNestedInput = { + create?: XOR | AppointmentCreateWithoutNpiProviderInput[] | AppointmentUncheckedCreateWithoutNpiProviderInput[] + connectOrCreate?: AppointmentCreateOrConnectWithoutNpiProviderInput | AppointmentCreateOrConnectWithoutNpiProviderInput[] + upsert?: AppointmentUpsertWithWhereUniqueWithoutNpiProviderInput | AppointmentUpsertWithWhereUniqueWithoutNpiProviderInput[] + createMany?: AppointmentCreateManyNpiProviderInputEnvelope + set?: AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] + disconnect?: AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] + delete?: AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] + connect?: AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] + update?: AppointmentUpdateWithWhereUniqueWithoutNpiProviderInput | AppointmentUpdateWithWhereUniqueWithoutNpiProviderInput[] + updateMany?: AppointmentUpdateManyWithWhereWithoutNpiProviderInput | AppointmentUpdateManyWithWhereWithoutNpiProviderInput[] + deleteMany?: AppointmentScalarWhereInput | AppointmentScalarWhereInput[] + } + export type ClaimUncheckedUpdateManyWithoutNpiProviderNestedInput = { create?: XOR | ClaimCreateWithoutNpiProviderInput[] | ClaimUncheckedCreateWithoutNpiProviderInput[] connectOrCreate?: ClaimCreateOrConnectWithoutNpiProviderInput | ClaimCreateOrConnectWithoutNpiProviderInput[] @@ -59374,6 +59534,20 @@ export namespace Prisma { deleteMany?: AppointmentProcedureScalarWhereInput | AppointmentProcedureScalarWhereInput[] } + export type AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput = { + create?: XOR | AppointmentCreateWithoutNpiProviderInput[] | AppointmentUncheckedCreateWithoutNpiProviderInput[] + connectOrCreate?: AppointmentCreateOrConnectWithoutNpiProviderInput | AppointmentCreateOrConnectWithoutNpiProviderInput[] + upsert?: AppointmentUpsertWithWhereUniqueWithoutNpiProviderInput | AppointmentUpsertWithWhereUniqueWithoutNpiProviderInput[] + createMany?: AppointmentCreateManyNpiProviderInputEnvelope + set?: AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] + disconnect?: AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] + delete?: AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] + connect?: AppointmentWhereUniqueInput | AppointmentWhereUniqueInput[] + update?: AppointmentUpdateWithWhereUniqueWithoutNpiProviderInput | AppointmentUpdateWithWhereUniqueWithoutNpiProviderInput[] + updateMany?: AppointmentUpdateManyWithWhereWithoutNpiProviderInput | AppointmentUpdateManyWithWhereWithoutNpiProviderInput[] + deleteMany?: AppointmentScalarWhereInput | AppointmentScalarWhereInput[] + } + export type AppointmentCreateNestedOneWithoutProceduresInput = { create?: XOR connectOrCreate?: AppointmentCreateOrConnectWithoutProceduresInput @@ -59430,14 +59604,6 @@ export namespace Prisma { update?: XOR, NpiProviderUncheckedUpdateWithoutAppointmentProceduresInput> } - export type NullableIntFieldUpdateOperationsInput = { - set?: number | null - increment?: number - decrement?: number - multiply?: number - divide?: number - } - export type PatientCreateNestedOneWithoutClaimsInput = { create?: XOR connectOrCreate?: PatientCreateOrConnectWithoutClaimsInput @@ -60811,24 +60977,6 @@ export namespace Prisma { _max?: NestedDateTimeFilter<$PrismaModel> } - export type NestedDecimalNullableFilter<$PrismaModel = never> = { - equals?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel> | null - in?: Decimal[] | DecimalJsLike[] | number[] | string[] | ListDecimalFieldRefInput<$PrismaModel> | null - notIn?: Decimal[] | DecimalJsLike[] | number[] | string[] | ListDecimalFieldRefInput<$PrismaModel> | null - lt?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel> - lte?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel> - gt?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel> - gte?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel> - not?: NestedDecimalNullableFilter<$PrismaModel> | Decimal | DecimalJsLike | number | string | null - } - - export type NestedEnumProcedureSourceFilter<$PrismaModel = never> = { - equals?: $Enums.ProcedureSource | EnumProcedureSourceFieldRefInput<$PrismaModel> - in?: $Enums.ProcedureSource[] | ListEnumProcedureSourceFieldRefInput<$PrismaModel> - notIn?: $Enums.ProcedureSource[] | ListEnumProcedureSourceFieldRefInput<$PrismaModel> - not?: NestedEnumProcedureSourceFilter<$PrismaModel> | $Enums.ProcedureSource - } - export type NestedIntNullableWithAggregatesFilter<$PrismaModel = never> = { equals?: number | IntFieldRefInput<$PrismaModel> | null in?: number[] | ListIntFieldRefInput<$PrismaModel> | null @@ -60856,6 +61004,24 @@ export namespace Prisma { not?: NestedFloatNullableFilter<$PrismaModel> | number | null } + export type NestedDecimalNullableFilter<$PrismaModel = never> = { + equals?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel> | null + in?: Decimal[] | DecimalJsLike[] | number[] | string[] | ListDecimalFieldRefInput<$PrismaModel> | null + notIn?: Decimal[] | DecimalJsLike[] | number[] | string[] | ListDecimalFieldRefInput<$PrismaModel> | null + lt?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel> + lte?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel> + gt?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel> + gte?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel> + not?: NestedDecimalNullableFilter<$PrismaModel> | Decimal | DecimalJsLike | number | string | null + } + + export type NestedEnumProcedureSourceFilter<$PrismaModel = never> = { + equals?: $Enums.ProcedureSource | EnumProcedureSourceFieldRefInput<$PrismaModel> + in?: $Enums.ProcedureSource[] | ListEnumProcedureSourceFieldRefInput<$PrismaModel> + notIn?: $Enums.ProcedureSource[] | ListEnumProcedureSourceFieldRefInput<$PrismaModel> + not?: NestedEnumProcedureSourceFilter<$PrismaModel> | $Enums.ProcedureSource + } + export type NestedDecimalNullableWithAggregatesFilter<$PrismaModel = never> = { equals?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel> | null in?: Decimal[] | DecimalJsLike[] | number[] | string[] | ListDecimalFieldRefInput<$PrismaModel> | null @@ -61257,6 +61423,7 @@ export namespace Prisma { eligibilityStatus?: $Enums.PatientStatus patient: PatientCreateNestedOneWithoutAppointmentsInput staff?: StaffCreateNestedOneWithoutAppointmentsInput + npiProvider?: NpiProviderCreateNestedOneWithoutAppointmentsInput procedures?: AppointmentProcedureCreateNestedManyWithoutAppointmentInput claims?: ClaimCreateNestedManyWithoutAppointmentInput files?: AppointmentFileCreateNestedManyWithoutAppointmentInput @@ -61266,6 +61433,7 @@ export namespace Prisma { id?: number patientId: number staffId: number + npiProviderId?: number | null title: string date: Date | string startTime: string @@ -61333,6 +61501,7 @@ export namespace Prisma { payments?: PaymentCreateNestedManyWithoutNpiProviderInput commissionBatches?: CommissionBatchCreateNestedManyWithoutNpiProviderInput appointmentProcedures?: AppointmentProcedureCreateNestedManyWithoutNpiProviderInput + appointments?: AppointmentCreateNestedManyWithoutNpiProviderInput } export type NpiProviderUncheckedCreateWithoutUserInput = { @@ -61345,6 +61514,7 @@ export namespace Prisma { payments?: PaymentUncheckedCreateNestedManyWithoutNpiProviderInput commissionBatches?: CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput appointmentProcedures?: AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput + appointments?: AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput } export type NpiProviderCreateOrConnectWithoutUserInput = { @@ -61975,6 +62145,7 @@ export namespace Prisma { patientId?: IntFilter<"Appointment"> | number userId?: IntFilter<"Appointment"> | number staffId?: IntFilter<"Appointment"> | number + npiProviderId?: IntNullableFilter<"Appointment"> | number | null title?: StringFilter<"Appointment"> | string date?: DateTimeFilter<"Appointment"> | Date | string startTime?: StringFilter<"Appointment"> | string @@ -62706,6 +62877,7 @@ export namespace Prisma { eligibilityStatus?: $Enums.PatientStatus user: UserCreateNestedOneWithoutAppointmentsInput staff?: StaffCreateNestedOneWithoutAppointmentsInput + npiProvider?: NpiProviderCreateNestedOneWithoutAppointmentsInput procedures?: AppointmentProcedureCreateNestedManyWithoutAppointmentInput claims?: ClaimCreateNestedManyWithoutAppointmentInput files?: AppointmentFileCreateNestedManyWithoutAppointmentInput @@ -62715,6 +62887,7 @@ export namespace Prisma { id?: number userId: number staffId: number + npiProviderId?: number | null title: string date: Date | string startTime: string @@ -63483,6 +63656,36 @@ export namespace Prisma { create: XOR } + export type NpiProviderCreateWithoutAppointmentsInput = { + npiNumber: string + providerName: string + sortOrder?: number + createdAt?: Date | string + user: UserCreateNestedOneWithoutNpiProvidersInput + claims?: ClaimCreateNestedManyWithoutNpiProviderInput + payments?: PaymentCreateNestedManyWithoutNpiProviderInput + commissionBatches?: CommissionBatchCreateNestedManyWithoutNpiProviderInput + appointmentProcedures?: AppointmentProcedureCreateNestedManyWithoutNpiProviderInput + } + + export type NpiProviderUncheckedCreateWithoutAppointmentsInput = { + id?: number + userId: number + npiNumber: string + providerName: string + sortOrder?: number + createdAt?: Date | string + claims?: ClaimUncheckedCreateNestedManyWithoutNpiProviderInput + payments?: PaymentUncheckedCreateNestedManyWithoutNpiProviderInput + commissionBatches?: CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput + appointmentProcedures?: AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput + } + + export type NpiProviderCreateOrConnectWithoutAppointmentsInput = { + where: NpiProviderWhereUniqueInput + create: XOR + } + export type AppointmentProcedureCreateWithoutAppointmentInput = { procedureCode: string procedureLabel?: string | null @@ -63790,6 +63993,42 @@ export namespace Prisma { claims?: ClaimUncheckedUpdateManyWithoutStaffNestedInput } + export type NpiProviderUpsertWithoutAppointmentsInput = { + update: XOR + create: XOR + where?: NpiProviderWhereInput + } + + export type NpiProviderUpdateToOneWithWhereWithoutAppointmentsInput = { + where?: NpiProviderWhereInput + data: XOR + } + + export type NpiProviderUpdateWithoutAppointmentsInput = { + npiNumber?: StringFieldUpdateOperationsInput | string + providerName?: StringFieldUpdateOperationsInput | string + sortOrder?: IntFieldUpdateOperationsInput | number + createdAt?: DateTimeFieldUpdateOperationsInput | Date | string + user?: UserUpdateOneRequiredWithoutNpiProvidersNestedInput + claims?: ClaimUpdateManyWithoutNpiProviderNestedInput + payments?: PaymentUpdateManyWithoutNpiProviderNestedInput + commissionBatches?: CommissionBatchUpdateManyWithoutNpiProviderNestedInput + appointmentProcedures?: AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput + } + + export type NpiProviderUncheckedUpdateWithoutAppointmentsInput = { + id?: IntFieldUpdateOperationsInput | number + userId?: IntFieldUpdateOperationsInput | number + npiNumber?: StringFieldUpdateOperationsInput | string + providerName?: StringFieldUpdateOperationsInput | string + sortOrder?: IntFieldUpdateOperationsInput | number + createdAt?: DateTimeFieldUpdateOperationsInput | Date | string + claims?: ClaimUncheckedUpdateManyWithoutNpiProviderNestedInput + payments?: PaymentUncheckedUpdateManyWithoutNpiProviderNestedInput + commissionBatches?: CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput + appointmentProcedures?: AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput + } + export type AppointmentProcedureUpsertWithWhereUniqueWithoutAppointmentInput = { where: AppointmentProcedureWhereUniqueInput update: XOR @@ -63865,6 +64104,7 @@ export namespace Prisma { patient: PatientCreateNestedOneWithoutAppointmentsInput user: UserCreateNestedOneWithoutAppointmentsInput staff?: StaffCreateNestedOneWithoutAppointmentsInput + npiProvider?: NpiProviderCreateNestedOneWithoutAppointmentsInput procedures?: AppointmentProcedureCreateNestedManyWithoutAppointmentInput claims?: ClaimCreateNestedManyWithoutAppointmentInput } @@ -63874,6 +64114,7 @@ export namespace Prisma { patientId: number userId: number staffId: number + npiProviderId?: number | null title: string date: Date | string startTime: string @@ -63922,6 +64163,7 @@ export namespace Prisma { patient?: PatientUpdateOneRequiredWithoutAppointmentsNestedInput user?: UserUpdateOneRequiredWithoutAppointmentsNestedInput staff?: StaffUpdateOneWithoutAppointmentsNestedInput + npiProvider?: NpiProviderUpdateOneWithoutAppointmentsNestedInput procedures?: AppointmentProcedureUpdateManyWithoutAppointmentNestedInput claims?: ClaimUpdateManyWithoutAppointmentNestedInput } @@ -63931,6 +64173,7 @@ export namespace Prisma { patientId?: IntFieldUpdateOperationsInput | number userId?: IntFieldUpdateOperationsInput | number staffId?: IntFieldUpdateOperationsInput | number + npiProviderId?: NullableIntFieldUpdateOperationsInput | number | null title?: StringFieldUpdateOperationsInput | string date?: DateTimeFieldUpdateOperationsInput | Date | string startTime?: StringFieldUpdateOperationsInput | string @@ -64036,6 +64279,7 @@ export namespace Prisma { eligibilityStatus?: $Enums.PatientStatus patient: PatientCreateNestedOneWithoutAppointmentsInput user: UserCreateNestedOneWithoutAppointmentsInput + npiProvider?: NpiProviderCreateNestedOneWithoutAppointmentsInput procedures?: AppointmentProcedureCreateNestedManyWithoutAppointmentInput claims?: ClaimCreateNestedManyWithoutAppointmentInput files?: AppointmentFileCreateNestedManyWithoutAppointmentInput @@ -64045,6 +64289,7 @@ export namespace Prisma { id?: number patientId: number userId: number + npiProviderId?: number | null title: string date: Date | string startTime: string @@ -64495,6 +64740,59 @@ export namespace Prisma { skipDuplicates?: boolean } + export type AppointmentCreateWithoutNpiProviderInput = { + title: string + date: Date | string + startTime: string + endTime: string + type: string + typeLocked?: boolean + notes?: string | null + procedureCodeNotes?: string | null + status?: string + movedByAi?: boolean + createdAt?: Date | string + eligibilityStatus?: $Enums.PatientStatus + patient: PatientCreateNestedOneWithoutAppointmentsInput + user: UserCreateNestedOneWithoutAppointmentsInput + staff?: StaffCreateNestedOneWithoutAppointmentsInput + procedures?: AppointmentProcedureCreateNestedManyWithoutAppointmentInput + claims?: ClaimCreateNestedManyWithoutAppointmentInput + files?: AppointmentFileCreateNestedManyWithoutAppointmentInput + } + + export type AppointmentUncheckedCreateWithoutNpiProviderInput = { + id?: number + patientId: number + userId: number + staffId: number + title: string + date: Date | string + startTime: string + endTime: string + type: string + typeLocked?: boolean + notes?: string | null + procedureCodeNotes?: string | null + status?: string + movedByAi?: boolean + createdAt?: Date | string + eligibilityStatus?: $Enums.PatientStatus + procedures?: AppointmentProcedureUncheckedCreateNestedManyWithoutAppointmentInput + claims?: ClaimUncheckedCreateNestedManyWithoutAppointmentInput + files?: AppointmentFileUncheckedCreateNestedManyWithoutAppointmentInput + } + + export type AppointmentCreateOrConnectWithoutNpiProviderInput = { + where: AppointmentWhereUniqueInput + create: XOR + } + + export type AppointmentCreateManyNpiProviderInputEnvelope = { + data: AppointmentCreateManyNpiProviderInput | AppointmentCreateManyNpiProviderInput[] + skipDuplicates?: boolean + } + export type UserUpsertWithoutNpiProvidersInput = { update: XOR create: XOR @@ -64651,6 +64949,22 @@ export namespace Prisma { data: XOR } + export type AppointmentUpsertWithWhereUniqueWithoutNpiProviderInput = { + where: AppointmentWhereUniqueInput + update: XOR + create: XOR + } + + export type AppointmentUpdateWithWhereUniqueWithoutNpiProviderInput = { + where: AppointmentWhereUniqueInput + data: XOR + } + + export type AppointmentUpdateManyWithWhereWithoutNpiProviderInput = { + where: AppointmentScalarWhereInput + data: XOR + } + export type AppointmentCreateWithoutProceduresInput = { title: string date: Date | string @@ -64667,6 +64981,7 @@ export namespace Prisma { patient: PatientCreateNestedOneWithoutAppointmentsInput user: UserCreateNestedOneWithoutAppointmentsInput staff?: StaffCreateNestedOneWithoutAppointmentsInput + npiProvider?: NpiProviderCreateNestedOneWithoutAppointmentsInput claims?: ClaimCreateNestedManyWithoutAppointmentInput files?: AppointmentFileCreateNestedManyWithoutAppointmentInput } @@ -64676,6 +64991,7 @@ export namespace Prisma { patientId: number userId: number staffId: number + npiProviderId?: number | null title: string date: Date | string startTime: string @@ -64774,6 +65090,7 @@ export namespace Prisma { claims?: ClaimCreateNestedManyWithoutNpiProviderInput payments?: PaymentCreateNestedManyWithoutNpiProviderInput commissionBatches?: CommissionBatchCreateNestedManyWithoutNpiProviderInput + appointments?: AppointmentCreateNestedManyWithoutNpiProviderInput } export type NpiProviderUncheckedCreateWithoutAppointmentProceduresInput = { @@ -64786,6 +65103,7 @@ export namespace Prisma { claims?: ClaimUncheckedCreateNestedManyWithoutNpiProviderInput payments?: PaymentUncheckedCreateNestedManyWithoutNpiProviderInput commissionBatches?: CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput + appointments?: AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput } export type NpiProviderCreateOrConnectWithoutAppointmentProceduresInput = { @@ -64820,6 +65138,7 @@ export namespace Prisma { patient?: PatientUpdateOneRequiredWithoutAppointmentsNestedInput user?: UserUpdateOneRequiredWithoutAppointmentsNestedInput staff?: StaffUpdateOneWithoutAppointmentsNestedInput + npiProvider?: NpiProviderUpdateOneWithoutAppointmentsNestedInput claims?: ClaimUpdateManyWithoutAppointmentNestedInput files?: AppointmentFileUpdateManyWithoutAppointmentNestedInput } @@ -64829,6 +65148,7 @@ export namespace Prisma { patientId?: IntFieldUpdateOperationsInput | number userId?: IntFieldUpdateOperationsInput | number staffId?: IntFieldUpdateOperationsInput | number + npiProviderId?: NullableIntFieldUpdateOperationsInput | number | null title?: StringFieldUpdateOperationsInput | string date?: DateTimeFieldUpdateOperationsInput | Date | string startTime?: StringFieldUpdateOperationsInput | string @@ -64939,6 +65259,7 @@ export namespace Prisma { claims?: ClaimUpdateManyWithoutNpiProviderNestedInput payments?: PaymentUpdateManyWithoutNpiProviderNestedInput commissionBatches?: CommissionBatchUpdateManyWithoutNpiProviderNestedInput + appointments?: AppointmentUpdateManyWithoutNpiProviderNestedInput } export type NpiProviderUncheckedUpdateWithoutAppointmentProceduresInput = { @@ -64951,6 +65272,7 @@ export namespace Prisma { claims?: ClaimUncheckedUpdateManyWithoutNpiProviderNestedInput payments?: PaymentUncheckedUpdateManyWithoutNpiProviderNestedInput commissionBatches?: CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput + appointments?: AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput } export type PatientCreateWithoutClaimsInput = { @@ -65037,6 +65359,7 @@ export namespace Prisma { patient: PatientCreateNestedOneWithoutAppointmentsInput user: UserCreateNestedOneWithoutAppointmentsInput staff?: StaffCreateNestedOneWithoutAppointmentsInput + npiProvider?: NpiProviderCreateNestedOneWithoutAppointmentsInput procedures?: AppointmentProcedureCreateNestedManyWithoutAppointmentInput files?: AppointmentFileCreateNestedManyWithoutAppointmentInput } @@ -65046,6 +65369,7 @@ export namespace Prisma { patientId: number userId: number staffId: number + npiProviderId?: number | null title: string date: Date | string startTime: string @@ -65176,6 +65500,7 @@ export namespace Prisma { payments?: PaymentCreateNestedManyWithoutNpiProviderInput commissionBatches?: CommissionBatchCreateNestedManyWithoutNpiProviderInput appointmentProcedures?: AppointmentProcedureCreateNestedManyWithoutNpiProviderInput + appointments?: AppointmentCreateNestedManyWithoutNpiProviderInput } export type NpiProviderUncheckedCreateWithoutClaimsInput = { @@ -65188,6 +65513,7 @@ export namespace Prisma { payments?: PaymentUncheckedCreateNestedManyWithoutNpiProviderInput commissionBatches?: CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput appointmentProcedures?: AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput + appointments?: AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput } export type NpiProviderCreateOrConnectWithoutClaimsInput = { @@ -65418,6 +65744,7 @@ export namespace Prisma { patient?: PatientUpdateOneRequiredWithoutAppointmentsNestedInput user?: UserUpdateOneRequiredWithoutAppointmentsNestedInput staff?: StaffUpdateOneWithoutAppointmentsNestedInput + npiProvider?: NpiProviderUpdateOneWithoutAppointmentsNestedInput procedures?: AppointmentProcedureUpdateManyWithoutAppointmentNestedInput files?: AppointmentFileUpdateManyWithoutAppointmentNestedInput } @@ -65427,6 +65754,7 @@ export namespace Prisma { patientId?: IntFieldUpdateOperationsInput | number userId?: IntFieldUpdateOperationsInput | number staffId?: IntFieldUpdateOperationsInput | number + npiProviderId?: NullableIntFieldUpdateOperationsInput | number | null title?: StringFieldUpdateOperationsInput | string date?: DateTimeFieldUpdateOperationsInput | Date | string startTime?: StringFieldUpdateOperationsInput | string @@ -65575,6 +65903,7 @@ export namespace Prisma { payments?: PaymentUpdateManyWithoutNpiProviderNestedInput commissionBatches?: CommissionBatchUpdateManyWithoutNpiProviderNestedInput appointmentProcedures?: AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput + appointments?: AppointmentUpdateManyWithoutNpiProviderNestedInput } export type NpiProviderUncheckedUpdateWithoutClaimsInput = { @@ -65587,6 +65916,7 @@ export namespace Prisma { payments?: PaymentUncheckedUpdateManyWithoutNpiProviderNestedInput commissionBatches?: CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput appointmentProcedures?: AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput + appointments?: AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput } export type ServiceLineUpsertWithWhereUniqueWithoutClaimInput = { @@ -66854,6 +67184,7 @@ export namespace Prisma { claims?: ClaimCreateNestedManyWithoutNpiProviderInput commissionBatches?: CommissionBatchCreateNestedManyWithoutNpiProviderInput appointmentProcedures?: AppointmentProcedureCreateNestedManyWithoutNpiProviderInput + appointments?: AppointmentCreateNestedManyWithoutNpiProviderInput } export type NpiProviderUncheckedCreateWithoutPaymentsInput = { @@ -66866,6 +67197,7 @@ export namespace Prisma { claims?: ClaimUncheckedCreateNestedManyWithoutNpiProviderInput commissionBatches?: CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput appointmentProcedures?: AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput + appointments?: AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput } export type NpiProviderCreateOrConnectWithoutPaymentsInput = { @@ -67210,6 +67542,7 @@ export namespace Prisma { claims?: ClaimUpdateManyWithoutNpiProviderNestedInput commissionBatches?: CommissionBatchUpdateManyWithoutNpiProviderNestedInput appointmentProcedures?: AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput + appointments?: AppointmentUpdateManyWithoutNpiProviderNestedInput } export type NpiProviderUncheckedUpdateWithoutPaymentsInput = { @@ -67222,6 +67555,7 @@ export namespace Prisma { claims?: ClaimUncheckedUpdateManyWithoutNpiProviderNestedInput commissionBatches?: CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput appointmentProcedures?: AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput + appointments?: AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput } export type ServiceLineTransactionUpsertWithWhereUniqueWithoutPaymentInput = { @@ -70551,6 +70885,7 @@ export namespace Prisma { claims?: ClaimCreateNestedManyWithoutNpiProviderInput payments?: PaymentCreateNestedManyWithoutNpiProviderInput appointmentProcedures?: AppointmentProcedureCreateNestedManyWithoutNpiProviderInput + appointments?: AppointmentCreateNestedManyWithoutNpiProviderInput } export type NpiProviderUncheckedCreateWithoutCommissionBatchesInput = { @@ -70563,6 +70898,7 @@ export namespace Prisma { claims?: ClaimUncheckedCreateNestedManyWithoutNpiProviderInput payments?: PaymentUncheckedCreateNestedManyWithoutNpiProviderInput appointmentProcedures?: AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput + appointments?: AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput } export type NpiProviderCreateOrConnectWithoutCommissionBatchesInput = { @@ -70611,6 +70947,7 @@ export namespace Prisma { claims?: ClaimUpdateManyWithoutNpiProviderNestedInput payments?: PaymentUpdateManyWithoutNpiProviderNestedInput appointmentProcedures?: AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput + appointments?: AppointmentUpdateManyWithoutNpiProviderNestedInput } export type NpiProviderUncheckedUpdateWithoutCommissionBatchesInput = { @@ -70623,6 +70960,7 @@ export namespace Prisma { claims?: ClaimUncheckedUpdateManyWithoutNpiProviderNestedInput payments?: PaymentUncheckedUpdateManyWithoutNpiProviderNestedInput appointmentProcedures?: AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput + appointments?: AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput } export type CommissionBatchItemUpsertWithWhereUniqueWithoutCommissionBatchInput = { @@ -70978,6 +71316,7 @@ export namespace Prisma { id?: number patientId: number staffId: number + npiProviderId?: number | null title: string date: Date | string startTime: string @@ -71251,6 +71590,7 @@ export namespace Prisma { eligibilityStatus?: EnumPatientStatusFieldUpdateOperationsInput | $Enums.PatientStatus patient?: PatientUpdateOneRequiredWithoutAppointmentsNestedInput staff?: StaffUpdateOneWithoutAppointmentsNestedInput + npiProvider?: NpiProviderUpdateOneWithoutAppointmentsNestedInput procedures?: AppointmentProcedureUpdateManyWithoutAppointmentNestedInput claims?: ClaimUpdateManyWithoutAppointmentNestedInput files?: AppointmentFileUpdateManyWithoutAppointmentNestedInput @@ -71260,6 +71600,7 @@ export namespace Prisma { id?: IntFieldUpdateOperationsInput | number patientId?: IntFieldUpdateOperationsInput | number staffId?: IntFieldUpdateOperationsInput | number + npiProviderId?: NullableIntFieldUpdateOperationsInput | number | null title?: StringFieldUpdateOperationsInput | string date?: DateTimeFieldUpdateOperationsInput | Date | string startTime?: StringFieldUpdateOperationsInput | string @@ -71281,6 +71622,7 @@ export namespace Prisma { id?: IntFieldUpdateOperationsInput | number patientId?: IntFieldUpdateOperationsInput | number staffId?: IntFieldUpdateOperationsInput | number + npiProviderId?: NullableIntFieldUpdateOperationsInput | number | null title?: StringFieldUpdateOperationsInput | string date?: DateTimeFieldUpdateOperationsInput | Date | string startTime?: StringFieldUpdateOperationsInput | string @@ -71334,6 +71676,7 @@ export namespace Prisma { payments?: PaymentUpdateManyWithoutNpiProviderNestedInput commissionBatches?: CommissionBatchUpdateManyWithoutNpiProviderNestedInput appointmentProcedures?: AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput + appointments?: AppointmentUpdateManyWithoutNpiProviderNestedInput } export type NpiProviderUncheckedUpdateWithoutUserInput = { @@ -71346,6 +71689,7 @@ export namespace Prisma { payments?: PaymentUncheckedUpdateManyWithoutNpiProviderNestedInput commissionBatches?: CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput appointmentProcedures?: AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput + appointments?: AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput } export type NpiProviderUncheckedUpdateManyWithoutUserInput = { @@ -71788,6 +72132,7 @@ export namespace Prisma { id?: number userId: number staffId: number + npiProviderId?: number | null title: string date: Date | string startTime: string @@ -71913,6 +72258,7 @@ export namespace Prisma { eligibilityStatus?: EnumPatientStatusFieldUpdateOperationsInput | $Enums.PatientStatus user?: UserUpdateOneRequiredWithoutAppointmentsNestedInput staff?: StaffUpdateOneWithoutAppointmentsNestedInput + npiProvider?: NpiProviderUpdateOneWithoutAppointmentsNestedInput procedures?: AppointmentProcedureUpdateManyWithoutAppointmentNestedInput claims?: ClaimUpdateManyWithoutAppointmentNestedInput files?: AppointmentFileUpdateManyWithoutAppointmentNestedInput @@ -71922,6 +72268,7 @@ export namespace Prisma { id?: IntFieldUpdateOperationsInput | number userId?: IntFieldUpdateOperationsInput | number staffId?: IntFieldUpdateOperationsInput | number + npiProviderId?: NullableIntFieldUpdateOperationsInput | number | null title?: StringFieldUpdateOperationsInput | string date?: DateTimeFieldUpdateOperationsInput | Date | string startTime?: StringFieldUpdateOperationsInput | string @@ -71943,6 +72290,7 @@ export namespace Prisma { id?: IntFieldUpdateOperationsInput | number userId?: IntFieldUpdateOperationsInput | number staffId?: IntFieldUpdateOperationsInput | number + npiProviderId?: NullableIntFieldUpdateOperationsInput | number | null title?: StringFieldUpdateOperationsInput | string date?: DateTimeFieldUpdateOperationsInput | Date | string startTime?: StringFieldUpdateOperationsInput | string @@ -72439,6 +72787,7 @@ export namespace Prisma { id?: number patientId: number userId: number + npiProviderId?: number | null title: string date: Date | string startTime: string @@ -72489,6 +72838,7 @@ export namespace Prisma { eligibilityStatus?: EnumPatientStatusFieldUpdateOperationsInput | $Enums.PatientStatus patient?: PatientUpdateOneRequiredWithoutAppointmentsNestedInput user?: UserUpdateOneRequiredWithoutAppointmentsNestedInput + npiProvider?: NpiProviderUpdateOneWithoutAppointmentsNestedInput procedures?: AppointmentProcedureUpdateManyWithoutAppointmentNestedInput claims?: ClaimUpdateManyWithoutAppointmentNestedInput files?: AppointmentFileUpdateManyWithoutAppointmentNestedInput @@ -72498,6 +72848,7 @@ export namespace Prisma { id?: IntFieldUpdateOperationsInput | number patientId?: IntFieldUpdateOperationsInput | number userId?: IntFieldUpdateOperationsInput | number + npiProviderId?: NullableIntFieldUpdateOperationsInput | number | null title?: StringFieldUpdateOperationsInput | string date?: DateTimeFieldUpdateOperationsInput | Date | string startTime?: StringFieldUpdateOperationsInput | string @@ -72519,6 +72870,7 @@ export namespace Prisma { id?: IntFieldUpdateOperationsInput | number patientId?: IntFieldUpdateOperationsInput | number userId?: IntFieldUpdateOperationsInput | number + npiProviderId?: NullableIntFieldUpdateOperationsInput | number | null title?: StringFieldUpdateOperationsInput | string date?: DateTimeFieldUpdateOperationsInput | Date | string startTime?: StringFieldUpdateOperationsInput | string @@ -72666,6 +73018,25 @@ export namespace Prisma { createdAt?: Date | string } + export type AppointmentCreateManyNpiProviderInput = { + id?: number + patientId: number + userId: number + staffId: number + title: string + date: Date | string + startTime: string + endTime: string + type: string + typeLocked?: boolean + notes?: string | null + procedureCodeNotes?: string | null + status?: string + movedByAi?: boolean + createdAt?: Date | string + eligibilityStatus?: $Enums.PatientStatus + } + export type ClaimUpdateWithoutNpiProviderInput = { patientName?: StringFieldUpdateOperationsInput | string memberId?: StringFieldUpdateOperationsInput | string @@ -72871,6 +73242,68 @@ export namespace Prisma { createdAt?: DateTimeFieldUpdateOperationsInput | Date | string } + export type AppointmentUpdateWithoutNpiProviderInput = { + title?: StringFieldUpdateOperationsInput | string + date?: DateTimeFieldUpdateOperationsInput | Date | string + startTime?: StringFieldUpdateOperationsInput | string + endTime?: StringFieldUpdateOperationsInput | string + type?: StringFieldUpdateOperationsInput | string + typeLocked?: BoolFieldUpdateOperationsInput | boolean + notes?: NullableStringFieldUpdateOperationsInput | string | null + procedureCodeNotes?: NullableStringFieldUpdateOperationsInput | string | null + status?: StringFieldUpdateOperationsInput | string + movedByAi?: BoolFieldUpdateOperationsInput | boolean + createdAt?: DateTimeFieldUpdateOperationsInput | Date | string + eligibilityStatus?: EnumPatientStatusFieldUpdateOperationsInput | $Enums.PatientStatus + patient?: PatientUpdateOneRequiredWithoutAppointmentsNestedInput + user?: UserUpdateOneRequiredWithoutAppointmentsNestedInput + staff?: StaffUpdateOneWithoutAppointmentsNestedInput + procedures?: AppointmentProcedureUpdateManyWithoutAppointmentNestedInput + claims?: ClaimUpdateManyWithoutAppointmentNestedInput + files?: AppointmentFileUpdateManyWithoutAppointmentNestedInput + } + + export type AppointmentUncheckedUpdateWithoutNpiProviderInput = { + id?: IntFieldUpdateOperationsInput | number + patientId?: IntFieldUpdateOperationsInput | number + userId?: IntFieldUpdateOperationsInput | number + staffId?: IntFieldUpdateOperationsInput | number + title?: StringFieldUpdateOperationsInput | string + date?: DateTimeFieldUpdateOperationsInput | Date | string + startTime?: StringFieldUpdateOperationsInput | string + endTime?: StringFieldUpdateOperationsInput | string + type?: StringFieldUpdateOperationsInput | string + typeLocked?: BoolFieldUpdateOperationsInput | boolean + notes?: NullableStringFieldUpdateOperationsInput | string | null + procedureCodeNotes?: NullableStringFieldUpdateOperationsInput | string | null + status?: StringFieldUpdateOperationsInput | string + movedByAi?: BoolFieldUpdateOperationsInput | boolean + createdAt?: DateTimeFieldUpdateOperationsInput | Date | string + eligibilityStatus?: EnumPatientStatusFieldUpdateOperationsInput | $Enums.PatientStatus + procedures?: AppointmentProcedureUncheckedUpdateManyWithoutAppointmentNestedInput + claims?: ClaimUncheckedUpdateManyWithoutAppointmentNestedInput + files?: AppointmentFileUncheckedUpdateManyWithoutAppointmentNestedInput + } + + export type AppointmentUncheckedUpdateManyWithoutNpiProviderInput = { + id?: IntFieldUpdateOperationsInput | number + patientId?: IntFieldUpdateOperationsInput | number + userId?: IntFieldUpdateOperationsInput | number + staffId?: IntFieldUpdateOperationsInput | number + title?: StringFieldUpdateOperationsInput | string + date?: DateTimeFieldUpdateOperationsInput | Date | string + startTime?: StringFieldUpdateOperationsInput | string + endTime?: StringFieldUpdateOperationsInput | string + type?: StringFieldUpdateOperationsInput | string + typeLocked?: BoolFieldUpdateOperationsInput | boolean + notes?: NullableStringFieldUpdateOperationsInput | string | null + procedureCodeNotes?: NullableStringFieldUpdateOperationsInput | string | null + status?: StringFieldUpdateOperationsInput | string + movedByAi?: BoolFieldUpdateOperationsInput | boolean + createdAt?: DateTimeFieldUpdateOperationsInput | Date | string + eligibilityStatus?: EnumPatientStatusFieldUpdateOperationsInput | $Enums.PatientStatus + } + export type ServiceLineCreateManyClaimInput = { id?: number paymentId?: number | null diff --git a/packages/db/generated/prisma/index.js b/packages/db/generated/prisma/index.js index 345aadb3..c464e2e4 100644 --- a/packages/db/generated/prisma/index.js +++ b/packages/db/generated/prisma/index.js @@ -135,6 +135,7 @@ exports.Prisma.AppointmentScalarFieldEnum = { patientId: 'patientId', userId: 'userId', staffId: 'staffId', + npiProviderId: 'npiProviderId', title: 'title', date: 'date', startTime: 'startTime', @@ -676,14 +677,14 @@ const config = { "clientVersion": "7.4.1", "engineVersion": "55ae170b1ced7fc6ed07a15f110549408c501bb3", "activeProvider": "postgresql", - "inlineSchema": "// This is your Prisma schema file,\n// learn more about it in the docs: https://pris.ly/d/prisma-schema\n\n// Looking for ways to speed up your queries, or scale easily with your serverless or edge functions?\n// Try Prisma Accelerate: https://pris.ly/cli/accelerate-init\n\ngenerator client {\n provider = \"prisma-client-js\"\n output = \"../generated/prisma\"\n}\n\ngenerator zod {\n provider = \"prisma-zod-generator\"\n output = \"../shared/\" // Zod schemas will be generated here inside `db/shared`\n}\n\ndatasource db {\n provider = \"postgresql\"\n}\n\nmodel User {\n id Int @id @default(autoincrement())\n username String @unique\n password String\n autoBackupEnabled Boolean @default(true)\n autoBackupHour Int @default(20)\n usbBackupEnabled Boolean @default(false)\n usbBackupHour Int @default(21)\n autoMhCheckEnabled Boolean @default(false)\n autoMhCheckDayOfWeek Int @default(1)\n autoMhCheckHour Int @default(13)\n patients Patient[]\n appointments Appointment[]\n staff Staff[]\n npiProviders NpiProvider[]\n claims Claim[]\n insuranceCredentials InsuranceCredential[]\n shoppingVendors ShoppingVendor[]\n updatedPayments Payment[] @relation(\"PaymentUpdatedBy\")\n backups DatabaseBackup[]\n backupDestinations BackupDestination[]\n notifications Notification[]\n cloudFolders CloudFolder[]\n cloudFiles CloudFile[]\n communications Communication[]\n twilioSettings TwilioSettings?\n aiSettings AiSettings?\n officeHours OfficeHours?\n officeContact OfficeContact?\n procedureTimeslot ProcedureTimeslot?\n insuranceContacts InsuranceContact[]\n patientConversations PatientConversation[]\n labRxTemplates LabRxTemplate[]\n seleniumSettings SeleniumSettings?\n}\n\nmodel Patient {\n id Int @id @default(autoincrement())\n firstName String\n lastName String\n dateOfBirth DateTime? @db.Date\n gender String\n phone String\n email String?\n address String?\n city String?\n zipCode String?\n insuranceProvider String?\n insuranceId String?\n groupNumber String?\n policyHolder String?\n allergies String?\n medicalConditions String?\n preferredLanguage String? @default(\"English\")\n status PatientStatus @default(UNKNOWN)\n userId Int\n createdAt DateTime @default(now())\n updatedAt DateTime @updatedAt\n user User @relation(fields: [userId], references: [id])\n appointments Appointment[]\n procedures AppointmentProcedure[]\n claims Claim[]\n groups PdfGroup[]\n payment Payment[]\n communications Communication[]\n documents PatientDocument[]\n conversation PatientConversation?\n cloudFolders CloudFolder[] @relation(\"PatientCloudFolder\")\n\n @@index([insuranceId])\n @@index([createdAt])\n}\n\nenum PatientStatus {\n ACTIVE\n INACTIVE\n UNKNOWN\n PLAN_NOT_ACCEPTED\n}\n\nmodel Appointment {\n id Int @id @default(autoincrement())\n patientId Int\n userId Int\n staffId Int\n title String\n date DateTime @db.Date\n startTime String // Store time as \"hh:mm\"\n endTime String // Store time as \"hh:mm\"\n type String // e.g., \"checkup\", \"cleaning\", \"filling\", etc.\n typeLocked Boolean @default(false) // true = user manually set; auto-sync will not overwrite\n notes String?\n procedureCodeNotes String?\n status String @default(\"scheduled\") // \"scheduled\", \"completed\", \"cancelled\", \"no-show\"\n movedByAi Boolean @default(false)\n createdAt DateTime @default(now())\n\n eligibilityStatus PatientStatus @default(UNKNOWN)\n\n patient Patient @relation(fields: [patientId], references: [id], onDelete: Cascade)\n user User @relation(fields: [userId], references: [id])\n staff Staff? @relation(fields: [staffId], references: [id])\n procedures AppointmentProcedure[]\n claims Claim[]\n files AppointmentFile[]\n\n @@index([patientId])\n @@index([date])\n}\n\nmodel AppointmentFile {\n id Int @id @default(autoincrement())\n appointmentId Int\n filename String\n mimeType String?\n filePath String?\n\n appointment Appointment @relation(fields: [appointmentId], references: [id], onDelete: Cascade)\n\n @@index([appointmentId])\n}\n\nmodel Staff {\n id Int @id @default(autoincrement())\n userId Int\n name String\n email String?\n role String // e.g., \"Dentist\", \"Hygienist\", \"Assistant\"\n phone String?\n createdAt DateTime @default(now())\n user User? @relation(fields: [userId], references: [id], onDelete: Cascade)\n appointments Appointment[]\n claims Claim[] @relation(\"ClaimStaff\")\n}\n\nmodel NpiProvider {\n id Int @id @default(autoincrement())\n userId Int\n npiNumber String\n providerName String\n sortOrder Int @default(0)\n createdAt DateTime @default(now())\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n claims Claim[]\n payments Payment[]\n commissionBatches CommissionBatch[]\n appointmentProcedures AppointmentProcedure[]\n\n @@unique([userId, npiNumber])\n @@index([userId])\n}\n\nenum ProcedureSource {\n COMBO\n MANUAL\n}\n\nmodel AppointmentProcedure {\n id Int @id @default(autoincrement())\n appointmentId Int\n patientId Int\n npiProviderId Int?\n\n procedureCode String\n procedureLabel String?\n fee Decimal? @db.Decimal(10, 2)\n\n category String?\n\n toothNumber String?\n toothSurface String?\n oralCavityArea String?\n\n source ProcedureSource @default(MANUAL)\n comboKey String?\n\n createdAt DateTime @default(now())\n\n appointment Appointment @relation(fields: [appointmentId], references: [id], onDelete: Cascade)\n patient Patient @relation(fields: [patientId], references: [id], onDelete: Cascade)\n npiProvider NpiProvider? @relation(fields: [npiProviderId], references: [id])\n\n @@index([appointmentId])\n @@index([patientId])\n}\n\nmodel Claim {\n id Int @id @default(autoincrement())\n patientId Int\n /// @zod.number.int().nullable().optional()\n appointmentId Int?\n userId Int\n staffId Int\n patientName String\n memberId String\n dateOfBirth DateTime @db.Date\n remarks String\n missingTeethStatus MissingTeethStatus @default(No_missing)\n missingTeeth Json? // { \"T_14\": \"X\", \"T_G\": \"O\", ... }\n serviceDate DateTime\n insuranceProvider String // e.g., \"Delta MA\"\n createdAt DateTime @default(now())\n updatedAt DateTime @updatedAt\n status ClaimStatus @default(PENDING)\n claimNumber String?\n preAuthNumber String?\n npiProviderId Int?\n\n patient Patient @relation(fields: [patientId], references: [id], onDelete: Cascade)\n appointment Appointment? @relation(fields: [appointmentId], references: [id], onDelete: Cascade)\n user User? @relation(fields: [userId], references: [id])\n staff Staff? @relation(\"ClaimStaff\", fields: [staffId], references: [id])\n npiProvider NpiProvider? @relation(fields: [npiProviderId], references: [id])\n\n serviceLines ServiceLine[]\n claimFiles ClaimFile[]\n payment Payment?\n}\n\nenum ClaimStatus {\n PENDING\n APPROVED\n CANCELLED\n REVIEW\n VOID\n PREAUTH\n}\n\nenum MissingTeethStatus {\n No_missing\n endentulous\n Yes_missing\n}\n\nmodel ServiceLine {\n id Int @id @default(autoincrement())\n claimId Int?\n paymentId Int?\n procedureCode String\n procedureDate DateTime @db.Date\n quad String?\n arch String?\n toothNumber String?\n toothSurface String?\n icn String?\n paidCode String?\n allowedAmount Decimal? @db.Decimal(10, 2)\n totalBilled Decimal @db.Decimal(10, 2)\n totalPaid Decimal @default(0.00) @db.Decimal(10, 2)\n totalAdjusted Decimal @default(0.00) @db.Decimal(10, 2)\n totalDue Decimal @default(0.00) @db.Decimal(10, 2)\n status ServiceLineStatus @default(UNPAID)\n\n claim Claim? @relation(fields: [claimId], references: [id], onDelete: Cascade)\n payment Payment? @relation(fields: [paymentId], references: [id], onDelete: Cascade)\n\n serviceLineTransactions ServiceLineTransaction[]\n}\n\nenum ServiceLineStatus {\n PENDING\n PARTIALLY_PAID\n PAID\n UNPAID\n ADJUSTED\n OVERPAID\n DENIED\n}\n\nmodel ClaimFile {\n id Int @id @default(autoincrement())\n claimId Int\n filename String\n mimeType String\n filePath String?\n\n claim Claim @relation(fields: [claimId], references: [id], onDelete: Cascade)\n}\n\nmodel InsuranceCredential {\n id Int @id @default(autoincrement())\n userId Int\n siteKey String\n username String\n password String\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@unique([userId, siteKey])\n @@index([userId])\n}\n\nmodel ShoppingVendor {\n id Int @id @default(autoincrement())\n userId Int\n vendorName String\n websiteUrl String\n loginUsername String\n loginPassword String\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@index([userId])\n}\n\nmodel PdfGroup {\n id Int @id @default(autoincrement())\n title String\n titleKey PdfTitleKey @default(OTHER)\n createdAt DateTime @default(now())\n patientId Int\n patient Patient @relation(fields: [patientId], references: [id], onDelete: Cascade)\n pdfs PdfFile[]\n\n @@index([patientId])\n @@index([titleKey])\n}\n\nmodel PdfFile {\n id Int @id @default(autoincrement())\n filename String\n pdfData Bytes\n uploadedAt DateTime @default(now())\n groupId Int\n group PdfGroup @relation(fields: [groupId], references: [id], onDelete: Cascade)\n\n @@index([groupId])\n}\n\nenum PdfTitleKey {\n INSURANCE_CLAIM\n INSURANCE_CLAIM_PREAUTH\n ELIGIBILITY_STATUS\n CLAIM_STATUS\n OTHER\n}\n\nmodel Payment {\n id Int @id @default(autoincrement())\n claimId Int? @unique\n patientId Int\n userId Int\n updatedById Int?\n npiProviderId Int?\n totalBilled Decimal @db.Decimal(10, 2)\n totalPaid Decimal @default(0.00) @db.Decimal(10, 2)\n totalAdjusted Decimal @default(0.00) @db.Decimal(10, 2)\n totalDue Decimal @db.Decimal(10, 2)\n mhPaidAmount Decimal? @db.Decimal(10, 2)\n copayment Decimal @default(0.00) @db.Decimal(10, 2)\n adjustment Decimal @default(0.00) @db.Decimal(10, 2)\n status PaymentStatus @default(PENDING)\n notes String?\n icn String?\n createdAt DateTime @default(now())\n updatedAt DateTime @updatedAt\n\n claim Claim? @relation(fields: [claimId], references: [id], onDelete: Cascade)\n patient Patient @relation(fields: [patientId], references: [id], onDelete: Cascade)\n updatedBy User? @relation(\"PaymentUpdatedBy\", fields: [updatedById], references: [id])\n npiProvider NpiProvider? @relation(fields: [npiProviderId], references: [id])\n serviceLineTransactions ServiceLineTransaction[]\n serviceLines ServiceLine[]\n commissionBatchItems CommissionBatchItem[]\n\n @@index([claimId])\n @@index([patientId])\n @@index([createdAt])\n}\n\nmodel ServiceLineTransaction {\n id Int @id @default(autoincrement())\n paymentId Int\n serviceLineId Int\n transactionId String?\n paidAmount Decimal @db.Decimal(10, 2)\n adjustedAmount Decimal @default(0.00) @db.Decimal(10, 2)\n method PaymentMethod\n receivedDate DateTime\n payerName String?\n notes String?\n createdAt DateTime @default(now())\n\n payment Payment @relation(fields: [paymentId], references: [id], onDelete: Cascade)\n serviceLine ServiceLine @relation(fields: [serviceLineId], references: [id], onDelete: Cascade)\n\n @@index([paymentId])\n @@index([serviceLineId])\n}\n\nenum PaymentStatus {\n PENDING\n PARTIALLY_PAID\n PAID\n OVERPAID\n DENIED\n VOID\n}\n\nenum PaymentMethod {\n EFT\n CHECK\n CASH\n CARD\n OTHER\n}\n\n// Database management page\nmodel DatabaseBackup {\n id Int @id @default(autoincrement())\n userId Int\n createdAt DateTime @default(now())\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@index([userId])\n @@index([createdAt])\n}\n\nmodel BackupDestination {\n id Int @id @default(autoincrement())\n userId Int\n path String\n isActive Boolean @default(true)\n createdAt DateTime @default(now())\n\n user User @relation(fields: [userId], references: [id])\n}\n\nmodel Notification {\n id Int @id @default(autoincrement())\n userId Int\n type NotificationTypes\n message String\n createdAt DateTime @default(now())\n read Boolean @default(false)\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@index([userId])\n @@index([createdAt])\n}\n\nenum NotificationTypes {\n BACKUP\n CLAIM\n PAYMENT\n ETC\n}\n\n// Cron job execution log\nmodel CronJobLog {\n id Int @id @default(autoincrement())\n jobName String // e.g. \"local-backup\", \"usb-backup\"\n status String // \"success\" | \"failed\" | \"skipped\"\n startedAt DateTime\n completedAt DateTime?\n durationMs Int?\n errorMessage String?\n\n @@index([jobName])\n @@index([startedAt])\n @@index([status])\n}\n\nmodel CloudFolder {\n id Int @id @default(autoincrement())\n userId Int\n name String\n parentId Int?\n patientId Int?\n parent CloudFolder? @relation(\"FolderChildren\", fields: [parentId], references: [id], onDelete: Cascade)\n children CloudFolder[] @relation(\"FolderChildren\")\n user User @relation(fields: [userId], references: [id])\n patient Patient? @relation(\"PatientCloudFolder\", fields: [patientId], references: [id], onDelete: SetNull)\n files CloudFile[]\n createdAt DateTime @default(now())\n updatedAt DateTime @updatedAt\n\n @@unique([userId, parentId, name]) // prevents sibling folder name duplicates\n @@index([parentId])\n @@index([patientId])\n}\n\nmodel CloudFile {\n id Int @id @default(autoincrement())\n userId Int\n name String\n mimeType String?\n fileSize BigInt @db.BigInt\n folderId Int? // optional: null => root\n isComplete Boolean @default(false) // upload completed?\n totalChunks Int? // optional: expected number of chunks\n diskPath String? // relative path on disk under uploads/\n createdAt DateTime @default(now())\n updatedAt DateTime @updatedAt\n user User @relation(fields: [userId], references: [id])\n folder CloudFolder? @relation(fields: [folderId], references: [id], onDelete: SetNull)\n\n chunks CloudFileChunk[]\n\n @@index([folderId])\n}\n\nmodel CloudFileChunk {\n id Int @id @default(autoincrement())\n fileId Int\n seq Int\n data Bytes\n createdAt DateTime @default(now())\n\n file CloudFile @relation(fields: [fileId], references: [id], onDelete: Cascade)\n\n @@unique([fileId, seq])\n @@index([fileId, seq])\n}\n\n// patient-connection-\nenum CommunicationChannel {\n sms\n voice\n}\n\nenum CommunicationDirection {\n outbound\n inbound\n}\n\nenum CommunicationStatus {\n queued\n sent\n delivered\n failed\n completed\n busy\n no_answer\n}\n\nmodel Communication {\n id Int @id @default(autoincrement())\n patientId Int\n userId Int?\n\n channel CommunicationChannel\n direction CommunicationDirection\n status CommunicationStatus\n\n body String?\n callDuration Int?\n twilioSid String?\n\n createdAt DateTime @default(now())\n\n // Relations\n patient Patient @relation(fields: [patientId], references: [id])\n user User? @relation(fields: [userId], references: [id])\n\n @@map(\"communications\")\n}\n\nmodel PatientDocument {\n id Int @id @default(autoincrement())\n patientId Int\n filename String\n originalName String\n mimeType String\n fileSize BigInt\n filePath String\n uploadedAt DateTime @default(now())\n updatedAt DateTime @updatedAt\n patient Patient @relation(fields: [patientId], references: [id], onDelete: Cascade)\n\n @@index([patientId])\n @@index([uploadedAt])\n}\n\nmodel TwilioSettings {\n id Int @id @default(autoincrement())\n userId Int @unique\n accountSid String\n authToken String\n phoneNumber String\n greetingMessage String?\n templates Json?\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@map(\"twilio_settings\")\n}\n\nmodel AiSettings {\n id Int @id @default(autoincrement())\n userId Int @unique\n apiKey String\n aiEnabled Boolean @default(true)\n openAiKey String @default(\"\")\n openAiEnabled Boolean @default(false)\n claudeAiKey String @default(\"\")\n claudeAiEnabled Boolean @default(false)\n claudeAiModel String @default(\"claude-haiku-4-5-20251001\")\n openAiModel String @default(\"gpt-5.2\")\n googleAiModel String @default(\"gemini-2.5-flash\")\n dentalMgmtKey String @default(\"\")\n dentalMgmtEnabled Boolean @default(false)\n afterHoursEnabled Boolean @default(true)\n openPhoneReply Boolean @default(false)\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@map(\"ai_settings\")\n}\n\nmodel OfficeHours {\n id Int @id @default(autoincrement())\n userId Int @unique\n data Json\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@map(\"office_hours\")\n}\n\nmodel OfficeContact {\n id Int @id @default(autoincrement())\n userId Int @unique\n officeName String?\n receptionistName String?\n dentistName String?\n phoneNumber String?\n email String?\n fax String?\n streetAddress String?\n city String?\n state String?\n zipCode String?\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@map(\"office_contact\")\n}\n\nmodel InsuranceContact {\n id Int @id @default(autoincrement())\n userId Int\n name String\n phoneNumber String?\n createdAt DateTime @default(now())\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@map(\"insurance_contact\")\n}\n\nmodel ProcedureTimeslot {\n id Int @id @default(autoincrement())\n userId Int @unique\n data Json\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@map(\"procedure_timeslot\")\n}\n\nmodel PatientConversation {\n id Int @id @default(autoincrement())\n patientId Int @unique\n userId Int\n stage String @default(\"initial\")\n aiHandoff Boolean @default(true)\n updatedAt DateTime @updatedAt\n\n patient Patient @relation(fields: [patientId], references: [id], onDelete: Cascade)\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@map(\"patient_conversation\")\n}\n\nmodel LabRxTemplate {\n id Int @id @default(autoincrement())\n userId Int\n name String\n labName String?\n labPhone String?\n labFax String?\n labAddress String?\n labAccount String?\n caseType String?\n material String?\n instructions String?\n sortOrder Int @default(0)\n createdAt DateTime @default(now())\n updatedAt DateTime @updatedAt\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@index([userId])\n @@map(\"lab_rx_template\")\n}\n\n// Commission tracking\nmodel CommissionBatch {\n id Int @id @default(autoincrement())\n npiProviderId Int\n totalCollection Decimal @db.Decimal(14, 2)\n commissionAmount Decimal @db.Decimal(14, 2)\n notes String?\n createdAt DateTime @default(now())\n\n npiProvider NpiProvider @relation(fields: [npiProviderId], references: [id])\n items CommissionBatchItem[]\n\n @@index([npiProviderId])\n}\n\nmodel CommissionBatchItem {\n id Int @id @default(autoincrement())\n commissionBatchId Int\n paymentId Int\n collectionAmount Decimal @db.Decimal(14, 2)\n\n commissionBatch CommissionBatch @relation(fields: [commissionBatchId], references: [id], onDelete: Cascade)\n payment Payment @relation(fields: [paymentId], references: [id])\n\n @@unique([commissionBatchId, paymentId])\n @@index([paymentId])\n}\n\nmodel SeleniumSettings {\n id Int @id @default(autoincrement())\n userId Int @unique\n paymentGroupId String @default(\"\")\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@map(\"selenium_settings\")\n}\n" + "inlineSchema": "// This is your Prisma schema file,\n// learn more about it in the docs: https://pris.ly/d/prisma-schema\n\n// Looking for ways to speed up your queries, or scale easily with your serverless or edge functions?\n// Try Prisma Accelerate: https://pris.ly/cli/accelerate-init\n\ngenerator client {\n provider = \"prisma-client-js\"\n output = \"../generated/prisma\"\n}\n\ngenerator zod {\n provider = \"prisma-zod-generator\"\n output = \"../shared/\" // Zod schemas will be generated here inside `db/shared`\n}\n\ndatasource db {\n provider = \"postgresql\"\n}\n\nmodel User {\n id Int @id @default(autoincrement())\n username String @unique\n password String\n autoBackupEnabled Boolean @default(true)\n autoBackupHour Int @default(20)\n usbBackupEnabled Boolean @default(false)\n usbBackupHour Int @default(21)\n autoMhCheckEnabled Boolean @default(false)\n autoMhCheckDayOfWeek Int @default(1)\n autoMhCheckHour Int @default(13)\n patients Patient[]\n appointments Appointment[]\n staff Staff[]\n npiProviders NpiProvider[]\n claims Claim[]\n insuranceCredentials InsuranceCredential[]\n shoppingVendors ShoppingVendor[]\n updatedPayments Payment[] @relation(\"PaymentUpdatedBy\")\n backups DatabaseBackup[]\n backupDestinations BackupDestination[]\n notifications Notification[]\n cloudFolders CloudFolder[]\n cloudFiles CloudFile[]\n communications Communication[]\n twilioSettings TwilioSettings?\n aiSettings AiSettings?\n officeHours OfficeHours?\n officeContact OfficeContact?\n procedureTimeslot ProcedureTimeslot?\n insuranceContacts InsuranceContact[]\n patientConversations PatientConversation[]\n labRxTemplates LabRxTemplate[]\n seleniumSettings SeleniumSettings?\n}\n\nmodel Patient {\n id Int @id @default(autoincrement())\n firstName String\n lastName String\n dateOfBirth DateTime? @db.Date\n gender String\n phone String\n email String?\n address String?\n city String?\n zipCode String?\n insuranceProvider String?\n insuranceId String?\n groupNumber String?\n policyHolder String?\n allergies String?\n medicalConditions String?\n preferredLanguage String? @default(\"English\")\n status PatientStatus @default(UNKNOWN)\n userId Int\n createdAt DateTime @default(now())\n updatedAt DateTime @updatedAt\n user User @relation(fields: [userId], references: [id])\n appointments Appointment[]\n procedures AppointmentProcedure[]\n claims Claim[]\n groups PdfGroup[]\n payment Payment[]\n communications Communication[]\n documents PatientDocument[]\n conversation PatientConversation?\n cloudFolders CloudFolder[] @relation(\"PatientCloudFolder\")\n\n @@index([insuranceId])\n @@index([createdAt])\n}\n\nenum PatientStatus {\n ACTIVE\n INACTIVE\n UNKNOWN\n PLAN_NOT_ACCEPTED\n}\n\nmodel Appointment {\n id Int @id @default(autoincrement())\n patientId Int\n userId Int\n staffId Int\n npiProviderId Int?\n title String\n date DateTime @db.Date\n startTime String // Store time as \"hh:mm\"\n endTime String // Store time as \"hh:mm\"\n type String // e.g., \"checkup\", \"cleaning\", \"filling\", etc.\n typeLocked Boolean @default(false) // true = user manually set; auto-sync will not overwrite\n notes String?\n procedureCodeNotes String?\n status String @default(\"scheduled\") // \"scheduled\", \"completed\", \"cancelled\", \"no-show\"\n movedByAi Boolean @default(false)\n createdAt DateTime @default(now())\n\n eligibilityStatus PatientStatus @default(UNKNOWN)\n\n patient Patient @relation(fields: [patientId], references: [id], onDelete: Cascade)\n user User @relation(fields: [userId], references: [id])\n staff Staff? @relation(fields: [staffId], references: [id])\n npiProvider NpiProvider? @relation(fields: [npiProviderId], references: [id])\n procedures AppointmentProcedure[]\n claims Claim[]\n files AppointmentFile[]\n\n @@index([patientId])\n @@index([date])\n}\n\nmodel AppointmentFile {\n id Int @id @default(autoincrement())\n appointmentId Int\n filename String\n mimeType String?\n filePath String?\n\n appointment Appointment @relation(fields: [appointmentId], references: [id], onDelete: Cascade)\n\n @@index([appointmentId])\n}\n\nmodel Staff {\n id Int @id @default(autoincrement())\n userId Int\n name String\n email String?\n role String // e.g., \"Dentist\", \"Hygienist\", \"Assistant\"\n phone String?\n createdAt DateTime @default(now())\n user User? @relation(fields: [userId], references: [id], onDelete: Cascade)\n appointments Appointment[]\n claims Claim[] @relation(\"ClaimStaff\")\n}\n\nmodel NpiProvider {\n id Int @id @default(autoincrement())\n userId Int\n npiNumber String\n providerName String\n sortOrder Int @default(0)\n createdAt DateTime @default(now())\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n claims Claim[]\n payments Payment[]\n commissionBatches CommissionBatch[]\n appointmentProcedures AppointmentProcedure[]\n appointments Appointment[]\n\n @@unique([userId, npiNumber])\n @@index([userId])\n}\n\nenum ProcedureSource {\n COMBO\n MANUAL\n}\n\nmodel AppointmentProcedure {\n id Int @id @default(autoincrement())\n appointmentId Int\n patientId Int\n npiProviderId Int?\n\n procedureCode String\n procedureLabel String?\n fee Decimal? @db.Decimal(10, 2)\n\n category String?\n\n toothNumber String?\n toothSurface String?\n oralCavityArea String?\n\n source ProcedureSource @default(MANUAL)\n comboKey String?\n\n createdAt DateTime @default(now())\n\n appointment Appointment @relation(fields: [appointmentId], references: [id], onDelete: Cascade)\n patient Patient @relation(fields: [patientId], references: [id], onDelete: Cascade)\n npiProvider NpiProvider? @relation(fields: [npiProviderId], references: [id])\n\n @@index([appointmentId])\n @@index([patientId])\n}\n\nmodel Claim {\n id Int @id @default(autoincrement())\n patientId Int\n /// @zod.number.int().nullable().optional()\n appointmentId Int?\n userId Int\n staffId Int\n patientName String\n memberId String\n dateOfBirth DateTime @db.Date\n remarks String\n missingTeethStatus MissingTeethStatus @default(No_missing)\n missingTeeth Json? // { \"T_14\": \"X\", \"T_G\": \"O\", ... }\n serviceDate DateTime\n insuranceProvider String // e.g., \"Delta MA\"\n createdAt DateTime @default(now())\n updatedAt DateTime @updatedAt\n status ClaimStatus @default(PENDING)\n claimNumber String?\n preAuthNumber String?\n npiProviderId Int?\n\n patient Patient @relation(fields: [patientId], references: [id], onDelete: Cascade)\n appointment Appointment? @relation(fields: [appointmentId], references: [id], onDelete: Cascade)\n user User? @relation(fields: [userId], references: [id])\n staff Staff? @relation(\"ClaimStaff\", fields: [staffId], references: [id])\n npiProvider NpiProvider? @relation(fields: [npiProviderId], references: [id])\n\n serviceLines ServiceLine[]\n claimFiles ClaimFile[]\n payment Payment?\n}\n\nenum ClaimStatus {\n PENDING\n APPROVED\n CANCELLED\n REVIEW\n VOID\n PREAUTH\n}\n\nenum MissingTeethStatus {\n No_missing\n endentulous\n Yes_missing\n}\n\nmodel ServiceLine {\n id Int @id @default(autoincrement())\n claimId Int?\n paymentId Int?\n procedureCode String\n procedureDate DateTime @db.Date\n quad String?\n arch String?\n toothNumber String?\n toothSurface String?\n icn String?\n paidCode String?\n allowedAmount Decimal? @db.Decimal(10, 2)\n totalBilled Decimal @db.Decimal(10, 2)\n totalPaid Decimal @default(0.00) @db.Decimal(10, 2)\n totalAdjusted Decimal @default(0.00) @db.Decimal(10, 2)\n totalDue Decimal @default(0.00) @db.Decimal(10, 2)\n status ServiceLineStatus @default(UNPAID)\n\n claim Claim? @relation(fields: [claimId], references: [id], onDelete: Cascade)\n payment Payment? @relation(fields: [paymentId], references: [id], onDelete: Cascade)\n\n serviceLineTransactions ServiceLineTransaction[]\n}\n\nenum ServiceLineStatus {\n PENDING\n PARTIALLY_PAID\n PAID\n UNPAID\n ADJUSTED\n OVERPAID\n DENIED\n}\n\nmodel ClaimFile {\n id Int @id @default(autoincrement())\n claimId Int\n filename String\n mimeType String\n filePath String?\n\n claim Claim @relation(fields: [claimId], references: [id], onDelete: Cascade)\n}\n\nmodel InsuranceCredential {\n id Int @id @default(autoincrement())\n userId Int\n siteKey String\n username String\n password String\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@unique([userId, siteKey])\n @@index([userId])\n}\n\nmodel ShoppingVendor {\n id Int @id @default(autoincrement())\n userId Int\n vendorName String\n websiteUrl String\n loginUsername String\n loginPassword String\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@index([userId])\n}\n\nmodel PdfGroup {\n id Int @id @default(autoincrement())\n title String\n titleKey PdfTitleKey @default(OTHER)\n createdAt DateTime @default(now())\n patientId Int\n patient Patient @relation(fields: [patientId], references: [id], onDelete: Cascade)\n pdfs PdfFile[]\n\n @@index([patientId])\n @@index([titleKey])\n}\n\nmodel PdfFile {\n id Int @id @default(autoincrement())\n filename String\n pdfData Bytes\n uploadedAt DateTime @default(now())\n groupId Int\n group PdfGroup @relation(fields: [groupId], references: [id], onDelete: Cascade)\n\n @@index([groupId])\n}\n\nenum PdfTitleKey {\n INSURANCE_CLAIM\n INSURANCE_CLAIM_PREAUTH\n ELIGIBILITY_STATUS\n CLAIM_STATUS\n OTHER\n}\n\nmodel Payment {\n id Int @id @default(autoincrement())\n claimId Int? @unique\n patientId Int\n userId Int\n updatedById Int?\n npiProviderId Int?\n totalBilled Decimal @db.Decimal(10, 2)\n totalPaid Decimal @default(0.00) @db.Decimal(10, 2)\n totalAdjusted Decimal @default(0.00) @db.Decimal(10, 2)\n totalDue Decimal @db.Decimal(10, 2)\n mhPaidAmount Decimal? @db.Decimal(10, 2)\n copayment Decimal @default(0.00) @db.Decimal(10, 2)\n adjustment Decimal @default(0.00) @db.Decimal(10, 2)\n status PaymentStatus @default(PENDING)\n notes String?\n icn String?\n createdAt DateTime @default(now())\n updatedAt DateTime @updatedAt\n\n claim Claim? @relation(fields: [claimId], references: [id], onDelete: Cascade)\n patient Patient @relation(fields: [patientId], references: [id], onDelete: Cascade)\n updatedBy User? @relation(\"PaymentUpdatedBy\", fields: [updatedById], references: [id])\n npiProvider NpiProvider? @relation(fields: [npiProviderId], references: [id])\n serviceLineTransactions ServiceLineTransaction[]\n serviceLines ServiceLine[]\n commissionBatchItems CommissionBatchItem[]\n\n @@index([claimId])\n @@index([patientId])\n @@index([createdAt])\n}\n\nmodel ServiceLineTransaction {\n id Int @id @default(autoincrement())\n paymentId Int\n serviceLineId Int\n transactionId String?\n paidAmount Decimal @db.Decimal(10, 2)\n adjustedAmount Decimal @default(0.00) @db.Decimal(10, 2)\n method PaymentMethod\n receivedDate DateTime\n payerName String?\n notes String?\n createdAt DateTime @default(now())\n\n payment Payment @relation(fields: [paymentId], references: [id], onDelete: Cascade)\n serviceLine ServiceLine @relation(fields: [serviceLineId], references: [id], onDelete: Cascade)\n\n @@index([paymentId])\n @@index([serviceLineId])\n}\n\nenum PaymentStatus {\n PENDING\n PARTIALLY_PAID\n PAID\n OVERPAID\n DENIED\n VOID\n}\n\nenum PaymentMethod {\n EFT\n CHECK\n CASH\n CARD\n OTHER\n}\n\n// Database management page\nmodel DatabaseBackup {\n id Int @id @default(autoincrement())\n userId Int\n createdAt DateTime @default(now())\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@index([userId])\n @@index([createdAt])\n}\n\nmodel BackupDestination {\n id Int @id @default(autoincrement())\n userId Int\n path String\n isActive Boolean @default(true)\n createdAt DateTime @default(now())\n\n user User @relation(fields: [userId], references: [id])\n}\n\nmodel Notification {\n id Int @id @default(autoincrement())\n userId Int\n type NotificationTypes\n message String\n createdAt DateTime @default(now())\n read Boolean @default(false)\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@index([userId])\n @@index([createdAt])\n}\n\nenum NotificationTypes {\n BACKUP\n CLAIM\n PAYMENT\n ETC\n}\n\n// Cron job execution log\nmodel CronJobLog {\n id Int @id @default(autoincrement())\n jobName String // e.g. \"local-backup\", \"usb-backup\"\n status String // \"success\" | \"failed\" | \"skipped\"\n startedAt DateTime\n completedAt DateTime?\n durationMs Int?\n errorMessage String?\n\n @@index([jobName])\n @@index([startedAt])\n @@index([status])\n}\n\nmodel CloudFolder {\n id Int @id @default(autoincrement())\n userId Int\n name String\n parentId Int?\n patientId Int?\n parent CloudFolder? @relation(\"FolderChildren\", fields: [parentId], references: [id], onDelete: Cascade)\n children CloudFolder[] @relation(\"FolderChildren\")\n user User @relation(fields: [userId], references: [id])\n patient Patient? @relation(\"PatientCloudFolder\", fields: [patientId], references: [id], onDelete: SetNull)\n files CloudFile[]\n createdAt DateTime @default(now())\n updatedAt DateTime @updatedAt\n\n @@unique([userId, parentId, name]) // prevents sibling folder name duplicates\n @@index([parentId])\n @@index([patientId])\n}\n\nmodel CloudFile {\n id Int @id @default(autoincrement())\n userId Int\n name String\n mimeType String?\n fileSize BigInt @db.BigInt\n folderId Int? // optional: null => root\n isComplete Boolean @default(false) // upload completed?\n totalChunks Int? // optional: expected number of chunks\n diskPath String? // relative path on disk under uploads/\n createdAt DateTime @default(now())\n updatedAt DateTime @updatedAt\n user User @relation(fields: [userId], references: [id])\n folder CloudFolder? @relation(fields: [folderId], references: [id], onDelete: SetNull)\n\n chunks CloudFileChunk[]\n\n @@index([folderId])\n}\n\nmodel CloudFileChunk {\n id Int @id @default(autoincrement())\n fileId Int\n seq Int\n data Bytes\n createdAt DateTime @default(now())\n\n file CloudFile @relation(fields: [fileId], references: [id], onDelete: Cascade)\n\n @@unique([fileId, seq])\n @@index([fileId, seq])\n}\n\n// patient-connection-\nenum CommunicationChannel {\n sms\n voice\n}\n\nenum CommunicationDirection {\n outbound\n inbound\n}\n\nenum CommunicationStatus {\n queued\n sent\n delivered\n failed\n completed\n busy\n no_answer\n}\n\nmodel Communication {\n id Int @id @default(autoincrement())\n patientId Int\n userId Int?\n\n channel CommunicationChannel\n direction CommunicationDirection\n status CommunicationStatus\n\n body String?\n callDuration Int?\n twilioSid String?\n\n createdAt DateTime @default(now())\n\n // Relations\n patient Patient @relation(fields: [patientId], references: [id])\n user User? @relation(fields: [userId], references: [id])\n\n @@map(\"communications\")\n}\n\nmodel PatientDocument {\n id Int @id @default(autoincrement())\n patientId Int\n filename String\n originalName String\n mimeType String\n fileSize BigInt\n filePath String\n uploadedAt DateTime @default(now())\n updatedAt DateTime @updatedAt\n patient Patient @relation(fields: [patientId], references: [id], onDelete: Cascade)\n\n @@index([patientId])\n @@index([uploadedAt])\n}\n\nmodel TwilioSettings {\n id Int @id @default(autoincrement())\n userId Int @unique\n accountSid String\n authToken String\n phoneNumber String\n greetingMessage String?\n templates Json?\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@map(\"twilio_settings\")\n}\n\nmodel AiSettings {\n id Int @id @default(autoincrement())\n userId Int @unique\n apiKey String\n aiEnabled Boolean @default(true)\n openAiKey String @default(\"\")\n openAiEnabled Boolean @default(false)\n claudeAiKey String @default(\"\")\n claudeAiEnabled Boolean @default(false)\n claudeAiModel String @default(\"claude-haiku-4-5-20251001\")\n openAiModel String @default(\"gpt-5.2\")\n googleAiModel String @default(\"gemini-2.5-flash\")\n dentalMgmtKey String @default(\"\")\n dentalMgmtEnabled Boolean @default(false)\n afterHoursEnabled Boolean @default(true)\n openPhoneReply Boolean @default(false)\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@map(\"ai_settings\")\n}\n\nmodel OfficeHours {\n id Int @id @default(autoincrement())\n userId Int @unique\n data Json\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@map(\"office_hours\")\n}\n\nmodel OfficeContact {\n id Int @id @default(autoincrement())\n userId Int @unique\n officeName String?\n receptionistName String?\n dentistName String?\n phoneNumber String?\n email String?\n fax String?\n streetAddress String?\n city String?\n state String?\n zipCode String?\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@map(\"office_contact\")\n}\n\nmodel InsuranceContact {\n id Int @id @default(autoincrement())\n userId Int\n name String\n phoneNumber String?\n createdAt DateTime @default(now())\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@map(\"insurance_contact\")\n}\n\nmodel ProcedureTimeslot {\n id Int @id @default(autoincrement())\n userId Int @unique\n data Json\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@map(\"procedure_timeslot\")\n}\n\nmodel PatientConversation {\n id Int @id @default(autoincrement())\n patientId Int @unique\n userId Int\n stage String @default(\"initial\")\n aiHandoff Boolean @default(true)\n updatedAt DateTime @updatedAt\n\n patient Patient @relation(fields: [patientId], references: [id], onDelete: Cascade)\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@map(\"patient_conversation\")\n}\n\nmodel LabRxTemplate {\n id Int @id @default(autoincrement())\n userId Int\n name String\n labName String?\n labPhone String?\n labFax String?\n labAddress String?\n labAccount String?\n caseType String?\n material String?\n instructions String?\n sortOrder Int @default(0)\n createdAt DateTime @default(now())\n updatedAt DateTime @updatedAt\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@index([userId])\n @@map(\"lab_rx_template\")\n}\n\n// Commission tracking\nmodel CommissionBatch {\n id Int @id @default(autoincrement())\n npiProviderId Int\n totalCollection Decimal @db.Decimal(14, 2)\n commissionAmount Decimal @db.Decimal(14, 2)\n notes String?\n createdAt DateTime @default(now())\n\n npiProvider NpiProvider @relation(fields: [npiProviderId], references: [id])\n items CommissionBatchItem[]\n\n @@index([npiProviderId])\n}\n\nmodel CommissionBatchItem {\n id Int @id @default(autoincrement())\n commissionBatchId Int\n paymentId Int\n collectionAmount Decimal @db.Decimal(14, 2)\n\n commissionBatch CommissionBatch @relation(fields: [commissionBatchId], references: [id], onDelete: Cascade)\n payment Payment @relation(fields: [paymentId], references: [id])\n\n @@unique([commissionBatchId, paymentId])\n @@index([paymentId])\n}\n\nmodel SeleniumSettings {\n id Int @id @default(autoincrement())\n userId Int @unique\n paymentGroupId String @default(\"\")\n\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@map(\"selenium_settings\")\n}\n" } -config.runtimeDataModel = JSON.parse("{\"models\":{\"User\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"username\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"password\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"autoBackupEnabled\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"autoBackupHour\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"usbBackupEnabled\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"usbBackupHour\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"autoMhCheckEnabled\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"autoMhCheckDayOfWeek\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"autoMhCheckHour\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patients\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"PatientToUser\"},{\"name\":\"appointments\",\"kind\":\"object\",\"type\":\"Appointment\",\"relationName\":\"AppointmentToUser\"},{\"name\":\"staff\",\"kind\":\"object\",\"type\":\"Staff\",\"relationName\":\"StaffToUser\"},{\"name\":\"npiProviders\",\"kind\":\"object\",\"type\":\"NpiProvider\",\"relationName\":\"NpiProviderToUser\"},{\"name\":\"claims\",\"kind\":\"object\",\"type\":\"Claim\",\"relationName\":\"ClaimToUser\"},{\"name\":\"insuranceCredentials\",\"kind\":\"object\",\"type\":\"InsuranceCredential\",\"relationName\":\"InsuranceCredentialToUser\"},{\"name\":\"shoppingVendors\",\"kind\":\"object\",\"type\":\"ShoppingVendor\",\"relationName\":\"ShoppingVendorToUser\"},{\"name\":\"updatedPayments\",\"kind\":\"object\",\"type\":\"Payment\",\"relationName\":\"PaymentUpdatedBy\"},{\"name\":\"backups\",\"kind\":\"object\",\"type\":\"DatabaseBackup\",\"relationName\":\"DatabaseBackupToUser\"},{\"name\":\"backupDestinations\",\"kind\":\"object\",\"type\":\"BackupDestination\",\"relationName\":\"BackupDestinationToUser\"},{\"name\":\"notifications\",\"kind\":\"object\",\"type\":\"Notification\",\"relationName\":\"NotificationToUser\"},{\"name\":\"cloudFolders\",\"kind\":\"object\",\"type\":\"CloudFolder\",\"relationName\":\"CloudFolderToUser\"},{\"name\":\"cloudFiles\",\"kind\":\"object\",\"type\":\"CloudFile\",\"relationName\":\"CloudFileToUser\"},{\"name\":\"communications\",\"kind\":\"object\",\"type\":\"Communication\",\"relationName\":\"CommunicationToUser\"},{\"name\":\"twilioSettings\",\"kind\":\"object\",\"type\":\"TwilioSettings\",\"relationName\":\"TwilioSettingsToUser\"},{\"name\":\"aiSettings\",\"kind\":\"object\",\"type\":\"AiSettings\",\"relationName\":\"AiSettingsToUser\"},{\"name\":\"officeHours\",\"kind\":\"object\",\"type\":\"OfficeHours\",\"relationName\":\"OfficeHoursToUser\"},{\"name\":\"officeContact\",\"kind\":\"object\",\"type\":\"OfficeContact\",\"relationName\":\"OfficeContactToUser\"},{\"name\":\"procedureTimeslot\",\"kind\":\"object\",\"type\":\"ProcedureTimeslot\",\"relationName\":\"ProcedureTimeslotToUser\"},{\"name\":\"insuranceContacts\",\"kind\":\"object\",\"type\":\"InsuranceContact\",\"relationName\":\"InsuranceContactToUser\"},{\"name\":\"patientConversations\",\"kind\":\"object\",\"type\":\"PatientConversation\",\"relationName\":\"PatientConversationToUser\"},{\"name\":\"labRxTemplates\",\"kind\":\"object\",\"type\":\"LabRxTemplate\",\"relationName\":\"LabRxTemplateToUser\"},{\"name\":\"seleniumSettings\",\"kind\":\"object\",\"type\":\"SeleniumSettings\",\"relationName\":\"SeleniumSettingsToUser\"}],\"dbName\":null},\"Patient\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"firstName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"lastName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"dateOfBirth\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"gender\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"phone\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"email\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"address\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"city\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"zipCode\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"insuranceProvider\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"insuranceId\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"groupNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"policyHolder\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"allergies\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"medicalConditions\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"preferredLanguage\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"enum\",\"type\":\"PatientStatus\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updatedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"PatientToUser\"},{\"name\":\"appointments\",\"kind\":\"object\",\"type\":\"Appointment\",\"relationName\":\"AppointmentToPatient\"},{\"name\":\"procedures\",\"kind\":\"object\",\"type\":\"AppointmentProcedure\",\"relationName\":\"AppointmentProcedureToPatient\"},{\"name\":\"claims\",\"kind\":\"object\",\"type\":\"Claim\",\"relationName\":\"ClaimToPatient\"},{\"name\":\"groups\",\"kind\":\"object\",\"type\":\"PdfGroup\",\"relationName\":\"PatientToPdfGroup\"},{\"name\":\"payment\",\"kind\":\"object\",\"type\":\"Payment\",\"relationName\":\"PatientToPayment\"},{\"name\":\"communications\",\"kind\":\"object\",\"type\":\"Communication\",\"relationName\":\"CommunicationToPatient\"},{\"name\":\"documents\",\"kind\":\"object\",\"type\":\"PatientDocument\",\"relationName\":\"PatientToPatientDocument\"},{\"name\":\"conversation\",\"kind\":\"object\",\"type\":\"PatientConversation\",\"relationName\":\"PatientToPatientConversation\"},{\"name\":\"cloudFolders\",\"kind\":\"object\",\"type\":\"CloudFolder\",\"relationName\":\"PatientCloudFolder\"}],\"dbName\":null},\"Appointment\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"staffId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"title\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"date\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"startTime\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"endTime\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"typeLocked\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"notes\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"procedureCodeNotes\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"movedByAi\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"eligibilityStatus\",\"kind\":\"enum\",\"type\":\"PatientStatus\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"AppointmentToPatient\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"AppointmentToUser\"},{\"name\":\"staff\",\"kind\":\"object\",\"type\":\"Staff\",\"relationName\":\"AppointmentToStaff\"},{\"name\":\"procedures\",\"kind\":\"object\",\"type\":\"AppointmentProcedure\",\"relationName\":\"AppointmentToAppointmentProcedure\"},{\"name\":\"claims\",\"kind\":\"object\",\"type\":\"Claim\",\"relationName\":\"AppointmentToClaim\"},{\"name\":\"files\",\"kind\":\"object\",\"type\":\"AppointmentFile\",\"relationName\":\"AppointmentToAppointmentFile\"}],\"dbName\":null},\"AppointmentFile\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"appointmentId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"filename\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"mimeType\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"filePath\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"appointment\",\"kind\":\"object\",\"type\":\"Appointment\",\"relationName\":\"AppointmentToAppointmentFile\"}],\"dbName\":null},\"Staff\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"email\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"role\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"phone\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"StaffToUser\"},{\"name\":\"appointments\",\"kind\":\"object\",\"type\":\"Appointment\",\"relationName\":\"AppointmentToStaff\"},{\"name\":\"claims\",\"kind\":\"object\",\"type\":\"Claim\",\"relationName\":\"ClaimStaff\"}],\"dbName\":null},\"NpiProvider\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"npiNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"providerName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"sortOrder\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"NpiProviderToUser\"},{\"name\":\"claims\",\"kind\":\"object\",\"type\":\"Claim\",\"relationName\":\"ClaimToNpiProvider\"},{\"name\":\"payments\",\"kind\":\"object\",\"type\":\"Payment\",\"relationName\":\"NpiProviderToPayment\"},{\"name\":\"commissionBatches\",\"kind\":\"object\",\"type\":\"CommissionBatch\",\"relationName\":\"CommissionBatchToNpiProvider\"},{\"name\":\"appointmentProcedures\",\"kind\":\"object\",\"type\":\"AppointmentProcedure\",\"relationName\":\"AppointmentProcedureToNpiProvider\"}],\"dbName\":null},\"AppointmentProcedure\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"appointmentId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"npiProviderId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"procedureCode\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"procedureLabel\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"fee\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"category\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"toothNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"toothSurface\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"oralCavityArea\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"source\",\"kind\":\"enum\",\"type\":\"ProcedureSource\"},{\"name\":\"comboKey\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"appointment\",\"kind\":\"object\",\"type\":\"Appointment\",\"relationName\":\"AppointmentToAppointmentProcedure\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"AppointmentProcedureToPatient\"},{\"name\":\"npiProvider\",\"kind\":\"object\",\"type\":\"NpiProvider\",\"relationName\":\"AppointmentProcedureToNpiProvider\"}],\"dbName\":null},\"Claim\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"appointmentId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"staffId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"memberId\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"dateOfBirth\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"remarks\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"missingTeethStatus\",\"kind\":\"enum\",\"type\":\"MissingTeethStatus\"},{\"name\":\"missingTeeth\",\"kind\":\"scalar\",\"type\":\"Json\"},{\"name\":\"serviceDate\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"insuranceProvider\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updatedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"status\",\"kind\":\"enum\",\"type\":\"ClaimStatus\"},{\"name\":\"claimNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"preAuthNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"npiProviderId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"ClaimToPatient\"},{\"name\":\"appointment\",\"kind\":\"object\",\"type\":\"Appointment\",\"relationName\":\"AppointmentToClaim\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"ClaimToUser\"},{\"name\":\"staff\",\"kind\":\"object\",\"type\":\"Staff\",\"relationName\":\"ClaimStaff\"},{\"name\":\"npiProvider\",\"kind\":\"object\",\"type\":\"NpiProvider\",\"relationName\":\"ClaimToNpiProvider\"},{\"name\":\"serviceLines\",\"kind\":\"object\",\"type\":\"ServiceLine\",\"relationName\":\"ClaimToServiceLine\"},{\"name\":\"claimFiles\",\"kind\":\"object\",\"type\":\"ClaimFile\",\"relationName\":\"ClaimToClaimFile\"},{\"name\":\"payment\",\"kind\":\"object\",\"type\":\"Payment\",\"relationName\":\"ClaimToPayment\"}],\"dbName\":null},\"ServiceLine\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"claimId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"paymentId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"procedureCode\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"procedureDate\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"quad\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"arch\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"toothNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"toothSurface\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"icn\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"paidCode\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"allowedAmount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"totalBilled\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"totalPaid\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"totalAdjusted\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"totalDue\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"status\",\"kind\":\"enum\",\"type\":\"ServiceLineStatus\"},{\"name\":\"claim\",\"kind\":\"object\",\"type\":\"Claim\",\"relationName\":\"ClaimToServiceLine\"},{\"name\":\"payment\",\"kind\":\"object\",\"type\":\"Payment\",\"relationName\":\"PaymentToServiceLine\"},{\"name\":\"serviceLineTransactions\",\"kind\":\"object\",\"type\":\"ServiceLineTransaction\",\"relationName\":\"ServiceLineToServiceLineTransaction\"}],\"dbName\":null},\"ClaimFile\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"claimId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"filename\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"mimeType\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"filePath\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"claim\",\"kind\":\"object\",\"type\":\"Claim\",\"relationName\":\"ClaimToClaimFile\"}],\"dbName\":null},\"InsuranceCredential\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"siteKey\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"username\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"password\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"InsuranceCredentialToUser\"}],\"dbName\":null},\"ShoppingVendor\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"vendorName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"websiteUrl\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"loginUsername\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"loginPassword\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"ShoppingVendorToUser\"}],\"dbName\":null},\"PdfGroup\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"title\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"titleKey\",\"kind\":\"enum\",\"type\":\"PdfTitleKey\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"PatientToPdfGroup\"},{\"name\":\"pdfs\",\"kind\":\"object\",\"type\":\"PdfFile\",\"relationName\":\"PdfFileToPdfGroup\"}],\"dbName\":null},\"PdfFile\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"filename\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"pdfData\",\"kind\":\"scalar\",\"type\":\"Bytes\"},{\"name\":\"uploadedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"groupId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"group\",\"kind\":\"object\",\"type\":\"PdfGroup\",\"relationName\":\"PdfFileToPdfGroup\"}],\"dbName\":null},\"Payment\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"claimId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"updatedById\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"npiProviderId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"totalBilled\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"totalPaid\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"totalAdjusted\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"totalDue\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"mhPaidAmount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"copayment\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"adjustment\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"status\",\"kind\":\"enum\",\"type\":\"PaymentStatus\"},{\"name\":\"notes\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"icn\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updatedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"claim\",\"kind\":\"object\",\"type\":\"Claim\",\"relationName\":\"ClaimToPayment\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"PatientToPayment\"},{\"name\":\"updatedBy\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"PaymentUpdatedBy\"},{\"name\":\"npiProvider\",\"kind\":\"object\",\"type\":\"NpiProvider\",\"relationName\":\"NpiProviderToPayment\"},{\"name\":\"serviceLineTransactions\",\"kind\":\"object\",\"type\":\"ServiceLineTransaction\",\"relationName\":\"PaymentToServiceLineTransaction\"},{\"name\":\"serviceLines\",\"kind\":\"object\",\"type\":\"ServiceLine\",\"relationName\":\"PaymentToServiceLine\"},{\"name\":\"commissionBatchItems\",\"kind\":\"object\",\"type\":\"CommissionBatchItem\",\"relationName\":\"CommissionBatchItemToPayment\"}],\"dbName\":null},\"ServiceLineTransaction\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"paymentId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"serviceLineId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"transactionId\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"paidAmount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"adjustedAmount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"method\",\"kind\":\"enum\",\"type\":\"PaymentMethod\"},{\"name\":\"receivedDate\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"payerName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"notes\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"payment\",\"kind\":\"object\",\"type\":\"Payment\",\"relationName\":\"PaymentToServiceLineTransaction\"},{\"name\":\"serviceLine\",\"kind\":\"object\",\"type\":\"ServiceLine\",\"relationName\":\"ServiceLineToServiceLineTransaction\"}],\"dbName\":null},\"DatabaseBackup\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"DatabaseBackupToUser\"}],\"dbName\":null},\"BackupDestination\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"path\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"isActive\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"BackupDestinationToUser\"}],\"dbName\":null},\"Notification\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"type\",\"kind\":\"enum\",\"type\":\"NotificationTypes\"},{\"name\":\"message\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"read\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"NotificationToUser\"}],\"dbName\":null},\"CronJobLog\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"jobName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"startedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"completedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"durationMs\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"errorMessage\",\"kind\":\"scalar\",\"type\":\"String\"}],\"dbName\":null},\"CloudFolder\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"parentId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"parent\",\"kind\":\"object\",\"type\":\"CloudFolder\",\"relationName\":\"FolderChildren\"},{\"name\":\"children\",\"kind\":\"object\",\"type\":\"CloudFolder\",\"relationName\":\"FolderChildren\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"CloudFolderToUser\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"PatientCloudFolder\"},{\"name\":\"files\",\"kind\":\"object\",\"type\":\"CloudFile\",\"relationName\":\"CloudFileToCloudFolder\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updatedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"}],\"dbName\":null},\"CloudFile\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"mimeType\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"fileSize\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"folderId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"isComplete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"totalChunks\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"diskPath\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updatedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"CloudFileToUser\"},{\"name\":\"folder\",\"kind\":\"object\",\"type\":\"CloudFolder\",\"relationName\":\"CloudFileToCloudFolder\"},{\"name\":\"chunks\",\"kind\":\"object\",\"type\":\"CloudFileChunk\",\"relationName\":\"CloudFileToCloudFileChunk\"}],\"dbName\":null},\"CloudFileChunk\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"fileId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"seq\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"data\",\"kind\":\"scalar\",\"type\":\"Bytes\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"file\",\"kind\":\"object\",\"type\":\"CloudFile\",\"relationName\":\"CloudFileToCloudFileChunk\"}],\"dbName\":null},\"Communication\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"channel\",\"kind\":\"enum\",\"type\":\"CommunicationChannel\"},{\"name\":\"direction\",\"kind\":\"enum\",\"type\":\"CommunicationDirection\"},{\"name\":\"status\",\"kind\":\"enum\",\"type\":\"CommunicationStatus\"},{\"name\":\"body\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"callDuration\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"twilioSid\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"CommunicationToPatient\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"CommunicationToUser\"}],\"dbName\":\"communications\"},\"PatientDocument\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"filename\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"originalName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"mimeType\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"fileSize\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"filePath\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"uploadedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updatedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"PatientToPatientDocument\"}],\"dbName\":null},\"TwilioSettings\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"accountSid\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"authToken\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"phoneNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"greetingMessage\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"templates\",\"kind\":\"scalar\",\"type\":\"Json\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"TwilioSettingsToUser\"}],\"dbName\":\"twilio_settings\"},\"AiSettings\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"apiKey\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"aiEnabled\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"openAiKey\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"openAiEnabled\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"claudeAiKey\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"claudeAiEnabled\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"claudeAiModel\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"openAiModel\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"googleAiModel\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"dentalMgmtKey\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"dentalMgmtEnabled\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"afterHoursEnabled\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"openPhoneReply\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"AiSettingsToUser\"}],\"dbName\":\"ai_settings\"},\"OfficeHours\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"data\",\"kind\":\"scalar\",\"type\":\"Json\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"OfficeHoursToUser\"}],\"dbName\":\"office_hours\"},\"OfficeContact\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"officeName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"receptionistName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"dentistName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"phoneNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"email\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"fax\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"streetAddress\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"city\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"state\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"zipCode\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"OfficeContactToUser\"}],\"dbName\":\"office_contact\"},\"InsuranceContact\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"phoneNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"InsuranceContactToUser\"}],\"dbName\":\"insurance_contact\"},\"ProcedureTimeslot\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"data\",\"kind\":\"scalar\",\"type\":\"Json\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"ProcedureTimeslotToUser\"}],\"dbName\":\"procedure_timeslot\"},\"PatientConversation\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"stage\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"aiHandoff\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"updatedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"PatientToPatientConversation\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"PatientConversationToUser\"}],\"dbName\":\"patient_conversation\"},\"LabRxTemplate\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"labName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"labPhone\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"labFax\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"labAddress\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"labAccount\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"caseType\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"material\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"instructions\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"sortOrder\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updatedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"LabRxTemplateToUser\"}],\"dbName\":\"lab_rx_template\"},\"CommissionBatch\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"npiProviderId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"totalCollection\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"commissionAmount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"notes\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"npiProvider\",\"kind\":\"object\",\"type\":\"NpiProvider\",\"relationName\":\"CommissionBatchToNpiProvider\"},{\"name\":\"items\",\"kind\":\"object\",\"type\":\"CommissionBatchItem\",\"relationName\":\"CommissionBatchToCommissionBatchItem\"}],\"dbName\":null},\"CommissionBatchItem\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"commissionBatchId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"paymentId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"collectionAmount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"commissionBatch\",\"kind\":\"object\",\"type\":\"CommissionBatch\",\"relationName\":\"CommissionBatchToCommissionBatchItem\"},{\"name\":\"payment\",\"kind\":\"object\",\"type\":\"Payment\",\"relationName\":\"CommissionBatchItemToPayment\"}],\"dbName\":null},\"SeleniumSettings\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"paymentGroupId\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"SeleniumSettingsToUser\"}],\"dbName\":\"selenium_settings\"}},\"enums\":{},\"types\":{}}") +config.runtimeDataModel = JSON.parse("{\"models\":{\"User\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"username\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"password\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"autoBackupEnabled\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"autoBackupHour\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"usbBackupEnabled\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"usbBackupHour\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"autoMhCheckEnabled\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"autoMhCheckDayOfWeek\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"autoMhCheckHour\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patients\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"PatientToUser\"},{\"name\":\"appointments\",\"kind\":\"object\",\"type\":\"Appointment\",\"relationName\":\"AppointmentToUser\"},{\"name\":\"staff\",\"kind\":\"object\",\"type\":\"Staff\",\"relationName\":\"StaffToUser\"},{\"name\":\"npiProviders\",\"kind\":\"object\",\"type\":\"NpiProvider\",\"relationName\":\"NpiProviderToUser\"},{\"name\":\"claims\",\"kind\":\"object\",\"type\":\"Claim\",\"relationName\":\"ClaimToUser\"},{\"name\":\"insuranceCredentials\",\"kind\":\"object\",\"type\":\"InsuranceCredential\",\"relationName\":\"InsuranceCredentialToUser\"},{\"name\":\"shoppingVendors\",\"kind\":\"object\",\"type\":\"ShoppingVendor\",\"relationName\":\"ShoppingVendorToUser\"},{\"name\":\"updatedPayments\",\"kind\":\"object\",\"type\":\"Payment\",\"relationName\":\"PaymentUpdatedBy\"},{\"name\":\"backups\",\"kind\":\"object\",\"type\":\"DatabaseBackup\",\"relationName\":\"DatabaseBackupToUser\"},{\"name\":\"backupDestinations\",\"kind\":\"object\",\"type\":\"BackupDestination\",\"relationName\":\"BackupDestinationToUser\"},{\"name\":\"notifications\",\"kind\":\"object\",\"type\":\"Notification\",\"relationName\":\"NotificationToUser\"},{\"name\":\"cloudFolders\",\"kind\":\"object\",\"type\":\"CloudFolder\",\"relationName\":\"CloudFolderToUser\"},{\"name\":\"cloudFiles\",\"kind\":\"object\",\"type\":\"CloudFile\",\"relationName\":\"CloudFileToUser\"},{\"name\":\"communications\",\"kind\":\"object\",\"type\":\"Communication\",\"relationName\":\"CommunicationToUser\"},{\"name\":\"twilioSettings\",\"kind\":\"object\",\"type\":\"TwilioSettings\",\"relationName\":\"TwilioSettingsToUser\"},{\"name\":\"aiSettings\",\"kind\":\"object\",\"type\":\"AiSettings\",\"relationName\":\"AiSettingsToUser\"},{\"name\":\"officeHours\",\"kind\":\"object\",\"type\":\"OfficeHours\",\"relationName\":\"OfficeHoursToUser\"},{\"name\":\"officeContact\",\"kind\":\"object\",\"type\":\"OfficeContact\",\"relationName\":\"OfficeContactToUser\"},{\"name\":\"procedureTimeslot\",\"kind\":\"object\",\"type\":\"ProcedureTimeslot\",\"relationName\":\"ProcedureTimeslotToUser\"},{\"name\":\"insuranceContacts\",\"kind\":\"object\",\"type\":\"InsuranceContact\",\"relationName\":\"InsuranceContactToUser\"},{\"name\":\"patientConversations\",\"kind\":\"object\",\"type\":\"PatientConversation\",\"relationName\":\"PatientConversationToUser\"},{\"name\":\"labRxTemplates\",\"kind\":\"object\",\"type\":\"LabRxTemplate\",\"relationName\":\"LabRxTemplateToUser\"},{\"name\":\"seleniumSettings\",\"kind\":\"object\",\"type\":\"SeleniumSettings\",\"relationName\":\"SeleniumSettingsToUser\"}],\"dbName\":null},\"Patient\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"firstName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"lastName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"dateOfBirth\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"gender\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"phone\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"email\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"address\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"city\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"zipCode\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"insuranceProvider\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"insuranceId\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"groupNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"policyHolder\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"allergies\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"medicalConditions\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"preferredLanguage\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"enum\",\"type\":\"PatientStatus\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updatedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"PatientToUser\"},{\"name\":\"appointments\",\"kind\":\"object\",\"type\":\"Appointment\",\"relationName\":\"AppointmentToPatient\"},{\"name\":\"procedures\",\"kind\":\"object\",\"type\":\"AppointmentProcedure\",\"relationName\":\"AppointmentProcedureToPatient\"},{\"name\":\"claims\",\"kind\":\"object\",\"type\":\"Claim\",\"relationName\":\"ClaimToPatient\"},{\"name\":\"groups\",\"kind\":\"object\",\"type\":\"PdfGroup\",\"relationName\":\"PatientToPdfGroup\"},{\"name\":\"payment\",\"kind\":\"object\",\"type\":\"Payment\",\"relationName\":\"PatientToPayment\"},{\"name\":\"communications\",\"kind\":\"object\",\"type\":\"Communication\",\"relationName\":\"CommunicationToPatient\"},{\"name\":\"documents\",\"kind\":\"object\",\"type\":\"PatientDocument\",\"relationName\":\"PatientToPatientDocument\"},{\"name\":\"conversation\",\"kind\":\"object\",\"type\":\"PatientConversation\",\"relationName\":\"PatientToPatientConversation\"},{\"name\":\"cloudFolders\",\"kind\":\"object\",\"type\":\"CloudFolder\",\"relationName\":\"PatientCloudFolder\"}],\"dbName\":null},\"Appointment\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"staffId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"npiProviderId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"title\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"date\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"startTime\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"endTime\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"typeLocked\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"notes\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"procedureCodeNotes\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"movedByAi\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"eligibilityStatus\",\"kind\":\"enum\",\"type\":\"PatientStatus\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"AppointmentToPatient\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"AppointmentToUser\"},{\"name\":\"staff\",\"kind\":\"object\",\"type\":\"Staff\",\"relationName\":\"AppointmentToStaff\"},{\"name\":\"npiProvider\",\"kind\":\"object\",\"type\":\"NpiProvider\",\"relationName\":\"AppointmentToNpiProvider\"},{\"name\":\"procedures\",\"kind\":\"object\",\"type\":\"AppointmentProcedure\",\"relationName\":\"AppointmentToAppointmentProcedure\"},{\"name\":\"claims\",\"kind\":\"object\",\"type\":\"Claim\",\"relationName\":\"AppointmentToClaim\"},{\"name\":\"files\",\"kind\":\"object\",\"type\":\"AppointmentFile\",\"relationName\":\"AppointmentToAppointmentFile\"}],\"dbName\":null},\"AppointmentFile\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"appointmentId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"filename\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"mimeType\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"filePath\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"appointment\",\"kind\":\"object\",\"type\":\"Appointment\",\"relationName\":\"AppointmentToAppointmentFile\"}],\"dbName\":null},\"Staff\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"email\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"role\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"phone\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"StaffToUser\"},{\"name\":\"appointments\",\"kind\":\"object\",\"type\":\"Appointment\",\"relationName\":\"AppointmentToStaff\"},{\"name\":\"claims\",\"kind\":\"object\",\"type\":\"Claim\",\"relationName\":\"ClaimStaff\"}],\"dbName\":null},\"NpiProvider\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"npiNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"providerName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"sortOrder\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"NpiProviderToUser\"},{\"name\":\"claims\",\"kind\":\"object\",\"type\":\"Claim\",\"relationName\":\"ClaimToNpiProvider\"},{\"name\":\"payments\",\"kind\":\"object\",\"type\":\"Payment\",\"relationName\":\"NpiProviderToPayment\"},{\"name\":\"commissionBatches\",\"kind\":\"object\",\"type\":\"CommissionBatch\",\"relationName\":\"CommissionBatchToNpiProvider\"},{\"name\":\"appointmentProcedures\",\"kind\":\"object\",\"type\":\"AppointmentProcedure\",\"relationName\":\"AppointmentProcedureToNpiProvider\"},{\"name\":\"appointments\",\"kind\":\"object\",\"type\":\"Appointment\",\"relationName\":\"AppointmentToNpiProvider\"}],\"dbName\":null},\"AppointmentProcedure\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"appointmentId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"npiProviderId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"procedureCode\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"procedureLabel\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"fee\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"category\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"toothNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"toothSurface\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"oralCavityArea\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"source\",\"kind\":\"enum\",\"type\":\"ProcedureSource\"},{\"name\":\"comboKey\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"appointment\",\"kind\":\"object\",\"type\":\"Appointment\",\"relationName\":\"AppointmentToAppointmentProcedure\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"AppointmentProcedureToPatient\"},{\"name\":\"npiProvider\",\"kind\":\"object\",\"type\":\"NpiProvider\",\"relationName\":\"AppointmentProcedureToNpiProvider\"}],\"dbName\":null},\"Claim\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"appointmentId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"staffId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"memberId\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"dateOfBirth\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"remarks\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"missingTeethStatus\",\"kind\":\"enum\",\"type\":\"MissingTeethStatus\"},{\"name\":\"missingTeeth\",\"kind\":\"scalar\",\"type\":\"Json\"},{\"name\":\"serviceDate\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"insuranceProvider\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updatedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"status\",\"kind\":\"enum\",\"type\":\"ClaimStatus\"},{\"name\":\"claimNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"preAuthNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"npiProviderId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"ClaimToPatient\"},{\"name\":\"appointment\",\"kind\":\"object\",\"type\":\"Appointment\",\"relationName\":\"AppointmentToClaim\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"ClaimToUser\"},{\"name\":\"staff\",\"kind\":\"object\",\"type\":\"Staff\",\"relationName\":\"ClaimStaff\"},{\"name\":\"npiProvider\",\"kind\":\"object\",\"type\":\"NpiProvider\",\"relationName\":\"ClaimToNpiProvider\"},{\"name\":\"serviceLines\",\"kind\":\"object\",\"type\":\"ServiceLine\",\"relationName\":\"ClaimToServiceLine\"},{\"name\":\"claimFiles\",\"kind\":\"object\",\"type\":\"ClaimFile\",\"relationName\":\"ClaimToClaimFile\"},{\"name\":\"payment\",\"kind\":\"object\",\"type\":\"Payment\",\"relationName\":\"ClaimToPayment\"}],\"dbName\":null},\"ServiceLine\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"claimId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"paymentId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"procedureCode\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"procedureDate\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"quad\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"arch\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"toothNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"toothSurface\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"icn\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"paidCode\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"allowedAmount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"totalBilled\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"totalPaid\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"totalAdjusted\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"totalDue\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"status\",\"kind\":\"enum\",\"type\":\"ServiceLineStatus\"},{\"name\":\"claim\",\"kind\":\"object\",\"type\":\"Claim\",\"relationName\":\"ClaimToServiceLine\"},{\"name\":\"payment\",\"kind\":\"object\",\"type\":\"Payment\",\"relationName\":\"PaymentToServiceLine\"},{\"name\":\"serviceLineTransactions\",\"kind\":\"object\",\"type\":\"ServiceLineTransaction\",\"relationName\":\"ServiceLineToServiceLineTransaction\"}],\"dbName\":null},\"ClaimFile\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"claimId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"filename\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"mimeType\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"filePath\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"claim\",\"kind\":\"object\",\"type\":\"Claim\",\"relationName\":\"ClaimToClaimFile\"}],\"dbName\":null},\"InsuranceCredential\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"siteKey\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"username\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"password\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"InsuranceCredentialToUser\"}],\"dbName\":null},\"ShoppingVendor\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"vendorName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"websiteUrl\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"loginUsername\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"loginPassword\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"ShoppingVendorToUser\"}],\"dbName\":null},\"PdfGroup\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"title\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"titleKey\",\"kind\":\"enum\",\"type\":\"PdfTitleKey\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"PatientToPdfGroup\"},{\"name\":\"pdfs\",\"kind\":\"object\",\"type\":\"PdfFile\",\"relationName\":\"PdfFileToPdfGroup\"}],\"dbName\":null},\"PdfFile\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"filename\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"pdfData\",\"kind\":\"scalar\",\"type\":\"Bytes\"},{\"name\":\"uploadedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"groupId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"group\",\"kind\":\"object\",\"type\":\"PdfGroup\",\"relationName\":\"PdfFileToPdfGroup\"}],\"dbName\":null},\"Payment\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"claimId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"updatedById\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"npiProviderId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"totalBilled\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"totalPaid\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"totalAdjusted\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"totalDue\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"mhPaidAmount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"copayment\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"adjustment\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"status\",\"kind\":\"enum\",\"type\":\"PaymentStatus\"},{\"name\":\"notes\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"icn\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updatedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"claim\",\"kind\":\"object\",\"type\":\"Claim\",\"relationName\":\"ClaimToPayment\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"PatientToPayment\"},{\"name\":\"updatedBy\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"PaymentUpdatedBy\"},{\"name\":\"npiProvider\",\"kind\":\"object\",\"type\":\"NpiProvider\",\"relationName\":\"NpiProviderToPayment\"},{\"name\":\"serviceLineTransactions\",\"kind\":\"object\",\"type\":\"ServiceLineTransaction\",\"relationName\":\"PaymentToServiceLineTransaction\"},{\"name\":\"serviceLines\",\"kind\":\"object\",\"type\":\"ServiceLine\",\"relationName\":\"PaymentToServiceLine\"},{\"name\":\"commissionBatchItems\",\"kind\":\"object\",\"type\":\"CommissionBatchItem\",\"relationName\":\"CommissionBatchItemToPayment\"}],\"dbName\":null},\"ServiceLineTransaction\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"paymentId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"serviceLineId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"transactionId\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"paidAmount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"adjustedAmount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"method\",\"kind\":\"enum\",\"type\":\"PaymentMethod\"},{\"name\":\"receivedDate\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"payerName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"notes\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"payment\",\"kind\":\"object\",\"type\":\"Payment\",\"relationName\":\"PaymentToServiceLineTransaction\"},{\"name\":\"serviceLine\",\"kind\":\"object\",\"type\":\"ServiceLine\",\"relationName\":\"ServiceLineToServiceLineTransaction\"}],\"dbName\":null},\"DatabaseBackup\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"DatabaseBackupToUser\"}],\"dbName\":null},\"BackupDestination\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"path\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"isActive\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"BackupDestinationToUser\"}],\"dbName\":null},\"Notification\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"type\",\"kind\":\"enum\",\"type\":\"NotificationTypes\"},{\"name\":\"message\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"read\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"NotificationToUser\"}],\"dbName\":null},\"CronJobLog\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"jobName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"startedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"completedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"durationMs\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"errorMessage\",\"kind\":\"scalar\",\"type\":\"String\"}],\"dbName\":null},\"CloudFolder\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"parentId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"parent\",\"kind\":\"object\",\"type\":\"CloudFolder\",\"relationName\":\"FolderChildren\"},{\"name\":\"children\",\"kind\":\"object\",\"type\":\"CloudFolder\",\"relationName\":\"FolderChildren\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"CloudFolderToUser\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"PatientCloudFolder\"},{\"name\":\"files\",\"kind\":\"object\",\"type\":\"CloudFile\",\"relationName\":\"CloudFileToCloudFolder\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updatedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"}],\"dbName\":null},\"CloudFile\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"mimeType\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"fileSize\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"folderId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"isComplete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"totalChunks\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"diskPath\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updatedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"CloudFileToUser\"},{\"name\":\"folder\",\"kind\":\"object\",\"type\":\"CloudFolder\",\"relationName\":\"CloudFileToCloudFolder\"},{\"name\":\"chunks\",\"kind\":\"object\",\"type\":\"CloudFileChunk\",\"relationName\":\"CloudFileToCloudFileChunk\"}],\"dbName\":null},\"CloudFileChunk\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"fileId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"seq\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"data\",\"kind\":\"scalar\",\"type\":\"Bytes\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"file\",\"kind\":\"object\",\"type\":\"CloudFile\",\"relationName\":\"CloudFileToCloudFileChunk\"}],\"dbName\":null},\"Communication\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"channel\",\"kind\":\"enum\",\"type\":\"CommunicationChannel\"},{\"name\":\"direction\",\"kind\":\"enum\",\"type\":\"CommunicationDirection\"},{\"name\":\"status\",\"kind\":\"enum\",\"type\":\"CommunicationStatus\"},{\"name\":\"body\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"callDuration\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"twilioSid\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"CommunicationToPatient\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"CommunicationToUser\"}],\"dbName\":\"communications\"},\"PatientDocument\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"filename\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"originalName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"mimeType\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"fileSize\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"filePath\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"uploadedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updatedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"PatientToPatientDocument\"}],\"dbName\":null},\"TwilioSettings\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"accountSid\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"authToken\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"phoneNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"greetingMessage\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"templates\",\"kind\":\"scalar\",\"type\":\"Json\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"TwilioSettingsToUser\"}],\"dbName\":\"twilio_settings\"},\"AiSettings\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"apiKey\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"aiEnabled\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"openAiKey\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"openAiEnabled\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"claudeAiKey\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"claudeAiEnabled\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"claudeAiModel\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"openAiModel\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"googleAiModel\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"dentalMgmtKey\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"dentalMgmtEnabled\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"afterHoursEnabled\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"openPhoneReply\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"AiSettingsToUser\"}],\"dbName\":\"ai_settings\"},\"OfficeHours\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"data\",\"kind\":\"scalar\",\"type\":\"Json\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"OfficeHoursToUser\"}],\"dbName\":\"office_hours\"},\"OfficeContact\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"officeName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"receptionistName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"dentistName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"phoneNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"email\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"fax\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"streetAddress\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"city\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"state\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"zipCode\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"OfficeContactToUser\"}],\"dbName\":\"office_contact\"},\"InsuranceContact\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"phoneNumber\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"InsuranceContactToUser\"}],\"dbName\":\"insurance_contact\"},\"ProcedureTimeslot\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"data\",\"kind\":\"scalar\",\"type\":\"Json\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"ProcedureTimeslotToUser\"}],\"dbName\":\"procedure_timeslot\"},\"PatientConversation\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"patientId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"stage\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"aiHandoff\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"updatedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"patient\",\"kind\":\"object\",\"type\":\"Patient\",\"relationName\":\"PatientToPatientConversation\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"PatientConversationToUser\"}],\"dbName\":\"patient_conversation\"},\"LabRxTemplate\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"labName\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"labPhone\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"labFax\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"labAddress\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"labAccount\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"caseType\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"material\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"instructions\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"sortOrder\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updatedAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"LabRxTemplateToUser\"}],\"dbName\":\"lab_rx_template\"},\"CommissionBatch\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"npiProviderId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"totalCollection\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"commissionAmount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"notes\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"npiProvider\",\"kind\":\"object\",\"type\":\"NpiProvider\",\"relationName\":\"CommissionBatchToNpiProvider\"},{\"name\":\"items\",\"kind\":\"object\",\"type\":\"CommissionBatchItem\",\"relationName\":\"CommissionBatchToCommissionBatchItem\"}],\"dbName\":null},\"CommissionBatchItem\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"commissionBatchId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"paymentId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"collectionAmount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"commissionBatch\",\"kind\":\"object\",\"type\":\"CommissionBatch\",\"relationName\":\"CommissionBatchToCommissionBatchItem\"},{\"name\":\"payment\",\"kind\":\"object\",\"type\":\"Payment\",\"relationName\":\"CommissionBatchItemToPayment\"}],\"dbName\":null},\"SeleniumSettings\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"userId\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"paymentGroupId\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"user\",\"kind\":\"object\",\"type\":\"User\",\"relationName\":\"SeleniumSettingsToUser\"}],\"dbName\":\"selenium_settings\"}},\"enums\":{},\"types\":{}}") defineDmmfProperty(exports.Prisma, config.runtimeDataModel) config.parameterizationSchema = { strings: JSON.parse("[\"where\",\"orderBy\",\"cursor\",\"user\",\"patient\",\"appointments\",\"appointment\",\"staff\",\"claims\",\"claim\",\"updatedBy\",\"npiProvider\",\"payment\",\"serviceLineTransactions\",\"_count\",\"serviceLine\",\"serviceLines\",\"items\",\"commissionBatch\",\"commissionBatchItems\",\"payments\",\"commissionBatches\",\"appointmentProcedures\",\"claimFiles\",\"procedures\",\"files\",\"group\",\"pdfs\",\"groups\",\"communications\",\"documents\",\"conversation\",\"parent\",\"children\",\"folder\",\"file\",\"chunks\",\"cloudFolders\",\"patients\",\"npiProviders\",\"insuranceCredentials\",\"shoppingVendors\",\"updatedPayments\",\"backups\",\"backupDestinations\",\"notifications\",\"cloudFiles\",\"twilioSettings\",\"aiSettings\",\"officeHours\",\"officeContact\",\"procedureTimeslot\",\"insuranceContacts\",\"patientConversations\",\"labRxTemplates\",\"seleniumSettings\",\"User.findUnique\",\"User.findUniqueOrThrow\",\"User.findFirst\",\"User.findFirstOrThrow\",\"User.findMany\",\"data\",\"User.createOne\",\"User.createMany\",\"User.createManyAndReturn\",\"User.updateOne\",\"User.updateMany\",\"User.updateManyAndReturn\",\"create\",\"update\",\"User.upsertOne\",\"User.deleteOne\",\"User.deleteMany\",\"having\",\"_avg\",\"_sum\",\"_min\",\"_max\",\"User.groupBy\",\"User.aggregate\",\"Patient.findUnique\",\"Patient.findUniqueOrThrow\",\"Patient.findFirst\",\"Patient.findFirstOrThrow\",\"Patient.findMany\",\"Patient.createOne\",\"Patient.createMany\",\"Patient.createManyAndReturn\",\"Patient.updateOne\",\"Patient.updateMany\",\"Patient.updateManyAndReturn\",\"Patient.upsertOne\",\"Patient.deleteOne\",\"Patient.deleteMany\",\"Patient.groupBy\",\"Patient.aggregate\",\"Appointment.findUnique\",\"Appointment.findUniqueOrThrow\",\"Appointment.findFirst\",\"Appointment.findFirstOrThrow\",\"Appointment.findMany\",\"Appointment.createOne\",\"Appointment.createMany\",\"Appointment.createManyAndReturn\",\"Appointment.updateOne\",\"Appointment.updateMany\",\"Appointment.updateManyAndReturn\",\"Appointment.upsertOne\",\"Appointment.deleteOne\",\"Appointment.deleteMany\",\"Appointment.groupBy\",\"Appointment.aggregate\",\"AppointmentFile.findUnique\",\"AppointmentFile.findUniqueOrThrow\",\"AppointmentFile.findFirst\",\"AppointmentFile.findFirstOrThrow\",\"AppointmentFile.findMany\",\"AppointmentFile.createOne\",\"AppointmentFile.createMany\",\"AppointmentFile.createManyAndReturn\",\"AppointmentFile.updateOne\",\"AppointmentFile.updateMany\",\"AppointmentFile.updateManyAndReturn\",\"AppointmentFile.upsertOne\",\"AppointmentFile.deleteOne\",\"AppointmentFile.deleteMany\",\"AppointmentFile.groupBy\",\"AppointmentFile.aggregate\",\"Staff.findUnique\",\"Staff.findUniqueOrThrow\",\"Staff.findFirst\",\"Staff.findFirstOrThrow\",\"Staff.findMany\",\"Staff.createOne\",\"Staff.createMany\",\"Staff.createManyAndReturn\",\"Staff.updateOne\",\"Staff.updateMany\",\"Staff.updateManyAndReturn\",\"Staff.upsertOne\",\"Staff.deleteOne\",\"Staff.deleteMany\",\"Staff.groupBy\",\"Staff.aggregate\",\"NpiProvider.findUnique\",\"NpiProvider.findUniqueOrThrow\",\"NpiProvider.findFirst\",\"NpiProvider.findFirstOrThrow\",\"NpiProvider.findMany\",\"NpiProvider.createOne\",\"NpiProvider.createMany\",\"NpiProvider.createManyAndReturn\",\"NpiProvider.updateOne\",\"NpiProvider.updateMany\",\"NpiProvider.updateManyAndReturn\",\"NpiProvider.upsertOne\",\"NpiProvider.deleteOne\",\"NpiProvider.deleteMany\",\"NpiProvider.groupBy\",\"NpiProvider.aggregate\",\"AppointmentProcedure.findUnique\",\"AppointmentProcedure.findUniqueOrThrow\",\"AppointmentProcedure.findFirst\",\"AppointmentProcedure.findFirstOrThrow\",\"AppointmentProcedure.findMany\",\"AppointmentProcedure.createOne\",\"AppointmentProcedure.createMany\",\"AppointmentProcedure.createManyAndReturn\",\"AppointmentProcedure.updateOne\",\"AppointmentProcedure.updateMany\",\"AppointmentProcedure.updateManyAndReturn\",\"AppointmentProcedure.upsertOne\",\"AppointmentProcedure.deleteOne\",\"AppointmentProcedure.deleteMany\",\"AppointmentProcedure.groupBy\",\"AppointmentProcedure.aggregate\",\"Claim.findUnique\",\"Claim.findUniqueOrThrow\",\"Claim.findFirst\",\"Claim.findFirstOrThrow\",\"Claim.findMany\",\"Claim.createOne\",\"Claim.createMany\",\"Claim.createManyAndReturn\",\"Claim.updateOne\",\"Claim.updateMany\",\"Claim.updateManyAndReturn\",\"Claim.upsertOne\",\"Claim.deleteOne\",\"Claim.deleteMany\",\"Claim.groupBy\",\"Claim.aggregate\",\"ServiceLine.findUnique\",\"ServiceLine.findUniqueOrThrow\",\"ServiceLine.findFirst\",\"ServiceLine.findFirstOrThrow\",\"ServiceLine.findMany\",\"ServiceLine.createOne\",\"ServiceLine.createMany\",\"ServiceLine.createManyAndReturn\",\"ServiceLine.updateOne\",\"ServiceLine.updateMany\",\"ServiceLine.updateManyAndReturn\",\"ServiceLine.upsertOne\",\"ServiceLine.deleteOne\",\"ServiceLine.deleteMany\",\"ServiceLine.groupBy\",\"ServiceLine.aggregate\",\"ClaimFile.findUnique\",\"ClaimFile.findUniqueOrThrow\",\"ClaimFile.findFirst\",\"ClaimFile.findFirstOrThrow\",\"ClaimFile.findMany\",\"ClaimFile.createOne\",\"ClaimFile.createMany\",\"ClaimFile.createManyAndReturn\",\"ClaimFile.updateOne\",\"ClaimFile.updateMany\",\"ClaimFile.updateManyAndReturn\",\"ClaimFile.upsertOne\",\"ClaimFile.deleteOne\",\"ClaimFile.deleteMany\",\"ClaimFile.groupBy\",\"ClaimFile.aggregate\",\"InsuranceCredential.findUnique\",\"InsuranceCredential.findUniqueOrThrow\",\"InsuranceCredential.findFirst\",\"InsuranceCredential.findFirstOrThrow\",\"InsuranceCredential.findMany\",\"InsuranceCredential.createOne\",\"InsuranceCredential.createMany\",\"InsuranceCredential.createManyAndReturn\",\"InsuranceCredential.updateOne\",\"InsuranceCredential.updateMany\",\"InsuranceCredential.updateManyAndReturn\",\"InsuranceCredential.upsertOne\",\"InsuranceCredential.deleteOne\",\"InsuranceCredential.deleteMany\",\"InsuranceCredential.groupBy\",\"InsuranceCredential.aggregate\",\"ShoppingVendor.findUnique\",\"ShoppingVendor.findUniqueOrThrow\",\"ShoppingVendor.findFirst\",\"ShoppingVendor.findFirstOrThrow\",\"ShoppingVendor.findMany\",\"ShoppingVendor.createOne\",\"ShoppingVendor.createMany\",\"ShoppingVendor.createManyAndReturn\",\"ShoppingVendor.updateOne\",\"ShoppingVendor.updateMany\",\"ShoppingVendor.updateManyAndReturn\",\"ShoppingVendor.upsertOne\",\"ShoppingVendor.deleteOne\",\"ShoppingVendor.deleteMany\",\"ShoppingVendor.groupBy\",\"ShoppingVendor.aggregate\",\"PdfGroup.findUnique\",\"PdfGroup.findUniqueOrThrow\",\"PdfGroup.findFirst\",\"PdfGroup.findFirstOrThrow\",\"PdfGroup.findMany\",\"PdfGroup.createOne\",\"PdfGroup.createMany\",\"PdfGroup.createManyAndReturn\",\"PdfGroup.updateOne\",\"PdfGroup.updateMany\",\"PdfGroup.updateManyAndReturn\",\"PdfGroup.upsertOne\",\"PdfGroup.deleteOne\",\"PdfGroup.deleteMany\",\"PdfGroup.groupBy\",\"PdfGroup.aggregate\",\"PdfFile.findUnique\",\"PdfFile.findUniqueOrThrow\",\"PdfFile.findFirst\",\"PdfFile.findFirstOrThrow\",\"PdfFile.findMany\",\"PdfFile.createOne\",\"PdfFile.createMany\",\"PdfFile.createManyAndReturn\",\"PdfFile.updateOne\",\"PdfFile.updateMany\",\"PdfFile.updateManyAndReturn\",\"PdfFile.upsertOne\",\"PdfFile.deleteOne\",\"PdfFile.deleteMany\",\"PdfFile.groupBy\",\"PdfFile.aggregate\",\"Payment.findUnique\",\"Payment.findUniqueOrThrow\",\"Payment.findFirst\",\"Payment.findFirstOrThrow\",\"Payment.findMany\",\"Payment.createOne\",\"Payment.createMany\",\"Payment.createManyAndReturn\",\"Payment.updateOne\",\"Payment.updateMany\",\"Payment.updateManyAndReturn\",\"Payment.upsertOne\",\"Payment.deleteOne\",\"Payment.deleteMany\",\"Payment.groupBy\",\"Payment.aggregate\",\"ServiceLineTransaction.findUnique\",\"ServiceLineTransaction.findUniqueOrThrow\",\"ServiceLineTransaction.findFirst\",\"ServiceLineTransaction.findFirstOrThrow\",\"ServiceLineTransaction.findMany\",\"ServiceLineTransaction.createOne\",\"ServiceLineTransaction.createMany\",\"ServiceLineTransaction.createManyAndReturn\",\"ServiceLineTransaction.updateOne\",\"ServiceLineTransaction.updateMany\",\"ServiceLineTransaction.updateManyAndReturn\",\"ServiceLineTransaction.upsertOne\",\"ServiceLineTransaction.deleteOne\",\"ServiceLineTransaction.deleteMany\",\"ServiceLineTransaction.groupBy\",\"ServiceLineTransaction.aggregate\",\"DatabaseBackup.findUnique\",\"DatabaseBackup.findUniqueOrThrow\",\"DatabaseBackup.findFirst\",\"DatabaseBackup.findFirstOrThrow\",\"DatabaseBackup.findMany\",\"DatabaseBackup.createOne\",\"DatabaseBackup.createMany\",\"DatabaseBackup.createManyAndReturn\",\"DatabaseBackup.updateOne\",\"DatabaseBackup.updateMany\",\"DatabaseBackup.updateManyAndReturn\",\"DatabaseBackup.upsertOne\",\"DatabaseBackup.deleteOne\",\"DatabaseBackup.deleteMany\",\"DatabaseBackup.groupBy\",\"DatabaseBackup.aggregate\",\"BackupDestination.findUnique\",\"BackupDestination.findUniqueOrThrow\",\"BackupDestination.findFirst\",\"BackupDestination.findFirstOrThrow\",\"BackupDestination.findMany\",\"BackupDestination.createOne\",\"BackupDestination.createMany\",\"BackupDestination.createManyAndReturn\",\"BackupDestination.updateOne\",\"BackupDestination.updateMany\",\"BackupDestination.updateManyAndReturn\",\"BackupDestination.upsertOne\",\"BackupDestination.deleteOne\",\"BackupDestination.deleteMany\",\"BackupDestination.groupBy\",\"BackupDestination.aggregate\",\"Notification.findUnique\",\"Notification.findUniqueOrThrow\",\"Notification.findFirst\",\"Notification.findFirstOrThrow\",\"Notification.findMany\",\"Notification.createOne\",\"Notification.createMany\",\"Notification.createManyAndReturn\",\"Notification.updateOne\",\"Notification.updateMany\",\"Notification.updateManyAndReturn\",\"Notification.upsertOne\",\"Notification.deleteOne\",\"Notification.deleteMany\",\"Notification.groupBy\",\"Notification.aggregate\",\"CronJobLog.findUnique\",\"CronJobLog.findUniqueOrThrow\",\"CronJobLog.findFirst\",\"CronJobLog.findFirstOrThrow\",\"CronJobLog.findMany\",\"CronJobLog.createOne\",\"CronJobLog.createMany\",\"CronJobLog.createManyAndReturn\",\"CronJobLog.updateOne\",\"CronJobLog.updateMany\",\"CronJobLog.updateManyAndReturn\",\"CronJobLog.upsertOne\",\"CronJobLog.deleteOne\",\"CronJobLog.deleteMany\",\"CronJobLog.groupBy\",\"CronJobLog.aggregate\",\"CloudFolder.findUnique\",\"CloudFolder.findUniqueOrThrow\",\"CloudFolder.findFirst\",\"CloudFolder.findFirstOrThrow\",\"CloudFolder.findMany\",\"CloudFolder.createOne\",\"CloudFolder.createMany\",\"CloudFolder.createManyAndReturn\",\"CloudFolder.updateOne\",\"CloudFolder.updateMany\",\"CloudFolder.updateManyAndReturn\",\"CloudFolder.upsertOne\",\"CloudFolder.deleteOne\",\"CloudFolder.deleteMany\",\"CloudFolder.groupBy\",\"CloudFolder.aggregate\",\"CloudFile.findUnique\",\"CloudFile.findUniqueOrThrow\",\"CloudFile.findFirst\",\"CloudFile.findFirstOrThrow\",\"CloudFile.findMany\",\"CloudFile.createOne\",\"CloudFile.createMany\",\"CloudFile.createManyAndReturn\",\"CloudFile.updateOne\",\"CloudFile.updateMany\",\"CloudFile.updateManyAndReturn\",\"CloudFile.upsertOne\",\"CloudFile.deleteOne\",\"CloudFile.deleteMany\",\"CloudFile.groupBy\",\"CloudFile.aggregate\",\"CloudFileChunk.findUnique\",\"CloudFileChunk.findUniqueOrThrow\",\"CloudFileChunk.findFirst\",\"CloudFileChunk.findFirstOrThrow\",\"CloudFileChunk.findMany\",\"CloudFileChunk.createOne\",\"CloudFileChunk.createMany\",\"CloudFileChunk.createManyAndReturn\",\"CloudFileChunk.updateOne\",\"CloudFileChunk.updateMany\",\"CloudFileChunk.updateManyAndReturn\",\"CloudFileChunk.upsertOne\",\"CloudFileChunk.deleteOne\",\"CloudFileChunk.deleteMany\",\"CloudFileChunk.groupBy\",\"CloudFileChunk.aggregate\",\"Communication.findUnique\",\"Communication.findUniqueOrThrow\",\"Communication.findFirst\",\"Communication.findFirstOrThrow\",\"Communication.findMany\",\"Communication.createOne\",\"Communication.createMany\",\"Communication.createManyAndReturn\",\"Communication.updateOne\",\"Communication.updateMany\",\"Communication.updateManyAndReturn\",\"Communication.upsertOne\",\"Communication.deleteOne\",\"Communication.deleteMany\",\"Communication.groupBy\",\"Communication.aggregate\",\"PatientDocument.findUnique\",\"PatientDocument.findUniqueOrThrow\",\"PatientDocument.findFirst\",\"PatientDocument.findFirstOrThrow\",\"PatientDocument.findMany\",\"PatientDocument.createOne\",\"PatientDocument.createMany\",\"PatientDocument.createManyAndReturn\",\"PatientDocument.updateOne\",\"PatientDocument.updateMany\",\"PatientDocument.updateManyAndReturn\",\"PatientDocument.upsertOne\",\"PatientDocument.deleteOne\",\"PatientDocument.deleteMany\",\"PatientDocument.groupBy\",\"PatientDocument.aggregate\",\"TwilioSettings.findUnique\",\"TwilioSettings.findUniqueOrThrow\",\"TwilioSettings.findFirst\",\"TwilioSettings.findFirstOrThrow\",\"TwilioSettings.findMany\",\"TwilioSettings.createOne\",\"TwilioSettings.createMany\",\"TwilioSettings.createManyAndReturn\",\"TwilioSettings.updateOne\",\"TwilioSettings.updateMany\",\"TwilioSettings.updateManyAndReturn\",\"TwilioSettings.upsertOne\",\"TwilioSettings.deleteOne\",\"TwilioSettings.deleteMany\",\"TwilioSettings.groupBy\",\"TwilioSettings.aggregate\",\"AiSettings.findUnique\",\"AiSettings.findUniqueOrThrow\",\"AiSettings.findFirst\",\"AiSettings.findFirstOrThrow\",\"AiSettings.findMany\",\"AiSettings.createOne\",\"AiSettings.createMany\",\"AiSettings.createManyAndReturn\",\"AiSettings.updateOne\",\"AiSettings.updateMany\",\"AiSettings.updateManyAndReturn\",\"AiSettings.upsertOne\",\"AiSettings.deleteOne\",\"AiSettings.deleteMany\",\"AiSettings.groupBy\",\"AiSettings.aggregate\",\"OfficeHours.findUnique\",\"OfficeHours.findUniqueOrThrow\",\"OfficeHours.findFirst\",\"OfficeHours.findFirstOrThrow\",\"OfficeHours.findMany\",\"OfficeHours.createOne\",\"OfficeHours.createMany\",\"OfficeHours.createManyAndReturn\",\"OfficeHours.updateOne\",\"OfficeHours.updateMany\",\"OfficeHours.updateManyAndReturn\",\"OfficeHours.upsertOne\",\"OfficeHours.deleteOne\",\"OfficeHours.deleteMany\",\"OfficeHours.groupBy\",\"OfficeHours.aggregate\",\"OfficeContact.findUnique\",\"OfficeContact.findUniqueOrThrow\",\"OfficeContact.findFirst\",\"OfficeContact.findFirstOrThrow\",\"OfficeContact.findMany\",\"OfficeContact.createOne\",\"OfficeContact.createMany\",\"OfficeContact.createManyAndReturn\",\"OfficeContact.updateOne\",\"OfficeContact.updateMany\",\"OfficeContact.updateManyAndReturn\",\"OfficeContact.upsertOne\",\"OfficeContact.deleteOne\",\"OfficeContact.deleteMany\",\"OfficeContact.groupBy\",\"OfficeContact.aggregate\",\"InsuranceContact.findUnique\",\"InsuranceContact.findUniqueOrThrow\",\"InsuranceContact.findFirst\",\"InsuranceContact.findFirstOrThrow\",\"InsuranceContact.findMany\",\"InsuranceContact.createOne\",\"InsuranceContact.createMany\",\"InsuranceContact.createManyAndReturn\",\"InsuranceContact.updateOne\",\"InsuranceContact.updateMany\",\"InsuranceContact.updateManyAndReturn\",\"InsuranceContact.upsertOne\",\"InsuranceContact.deleteOne\",\"InsuranceContact.deleteMany\",\"InsuranceContact.groupBy\",\"InsuranceContact.aggregate\",\"ProcedureTimeslot.findUnique\",\"ProcedureTimeslot.findUniqueOrThrow\",\"ProcedureTimeslot.findFirst\",\"ProcedureTimeslot.findFirstOrThrow\",\"ProcedureTimeslot.findMany\",\"ProcedureTimeslot.createOne\",\"ProcedureTimeslot.createMany\",\"ProcedureTimeslot.createManyAndReturn\",\"ProcedureTimeslot.updateOne\",\"ProcedureTimeslot.updateMany\",\"ProcedureTimeslot.updateManyAndReturn\",\"ProcedureTimeslot.upsertOne\",\"ProcedureTimeslot.deleteOne\",\"ProcedureTimeslot.deleteMany\",\"ProcedureTimeslot.groupBy\",\"ProcedureTimeslot.aggregate\",\"PatientConversation.findUnique\",\"PatientConversation.findUniqueOrThrow\",\"PatientConversation.findFirst\",\"PatientConversation.findFirstOrThrow\",\"PatientConversation.findMany\",\"PatientConversation.createOne\",\"PatientConversation.createMany\",\"PatientConversation.createManyAndReturn\",\"PatientConversation.updateOne\",\"PatientConversation.updateMany\",\"PatientConversation.updateManyAndReturn\",\"PatientConversation.upsertOne\",\"PatientConversation.deleteOne\",\"PatientConversation.deleteMany\",\"PatientConversation.groupBy\",\"PatientConversation.aggregate\",\"LabRxTemplate.findUnique\",\"LabRxTemplate.findUniqueOrThrow\",\"LabRxTemplate.findFirst\",\"LabRxTemplate.findFirstOrThrow\",\"LabRxTemplate.findMany\",\"LabRxTemplate.createOne\",\"LabRxTemplate.createMany\",\"LabRxTemplate.createManyAndReturn\",\"LabRxTemplate.updateOne\",\"LabRxTemplate.updateMany\",\"LabRxTemplate.updateManyAndReturn\",\"LabRxTemplate.upsertOne\",\"LabRxTemplate.deleteOne\",\"LabRxTemplate.deleteMany\",\"LabRxTemplate.groupBy\",\"LabRxTemplate.aggregate\",\"CommissionBatch.findUnique\",\"CommissionBatch.findUniqueOrThrow\",\"CommissionBatch.findFirst\",\"CommissionBatch.findFirstOrThrow\",\"CommissionBatch.findMany\",\"CommissionBatch.createOne\",\"CommissionBatch.createMany\",\"CommissionBatch.createManyAndReturn\",\"CommissionBatch.updateOne\",\"CommissionBatch.updateMany\",\"CommissionBatch.updateManyAndReturn\",\"CommissionBatch.upsertOne\",\"CommissionBatch.deleteOne\",\"CommissionBatch.deleteMany\",\"CommissionBatch.groupBy\",\"CommissionBatch.aggregate\",\"CommissionBatchItem.findUnique\",\"CommissionBatchItem.findUniqueOrThrow\",\"CommissionBatchItem.findFirst\",\"CommissionBatchItem.findFirstOrThrow\",\"CommissionBatchItem.findMany\",\"CommissionBatchItem.createOne\",\"CommissionBatchItem.createMany\",\"CommissionBatchItem.createManyAndReturn\",\"CommissionBatchItem.updateOne\",\"CommissionBatchItem.updateMany\",\"CommissionBatchItem.updateManyAndReturn\",\"CommissionBatchItem.upsertOne\",\"CommissionBatchItem.deleteOne\",\"CommissionBatchItem.deleteMany\",\"CommissionBatchItem.groupBy\",\"CommissionBatchItem.aggregate\",\"SeleniumSettings.findUnique\",\"SeleniumSettings.findUniqueOrThrow\",\"SeleniumSettings.findFirst\",\"SeleniumSettings.findFirstOrThrow\",\"SeleniumSettings.findMany\",\"SeleniumSettings.createOne\",\"SeleniumSettings.createMany\",\"SeleniumSettings.createManyAndReturn\",\"SeleniumSettings.updateOne\",\"SeleniumSettings.updateMany\",\"SeleniumSettings.updateManyAndReturn\",\"SeleniumSettings.upsertOne\",\"SeleniumSettings.deleteOne\",\"SeleniumSettings.deleteMany\",\"SeleniumSettings.groupBy\",\"SeleniumSettings.aggregate\",\"AND\",\"OR\",\"NOT\",\"id\",\"userId\",\"paymentGroupId\",\"equals\",\"in\",\"notIn\",\"lt\",\"lte\",\"gt\",\"gte\",\"contains\",\"startsWith\",\"endsWith\",\"not\",\"commissionBatchId\",\"paymentId\",\"collectionAmount\",\"npiProviderId\",\"totalCollection\",\"commissionAmount\",\"notes\",\"createdAt\",\"name\",\"labName\",\"labPhone\",\"labFax\",\"labAddress\",\"labAccount\",\"caseType\",\"material\",\"instructions\",\"sortOrder\",\"updatedAt\",\"patientId\",\"stage\",\"aiHandoff\",\"string_contains\",\"string_starts_with\",\"string_ends_with\",\"array_starts_with\",\"array_ends_with\",\"array_contains\",\"phoneNumber\",\"officeName\",\"receptionistName\",\"dentistName\",\"email\",\"fax\",\"streetAddress\",\"city\",\"state\",\"zipCode\",\"apiKey\",\"aiEnabled\",\"openAiKey\",\"openAiEnabled\",\"claudeAiKey\",\"claudeAiEnabled\",\"claudeAiModel\",\"openAiModel\",\"googleAiModel\",\"dentalMgmtKey\",\"dentalMgmtEnabled\",\"afterHoursEnabled\",\"openPhoneReply\",\"accountSid\",\"authToken\",\"greetingMessage\",\"templates\",\"filename\",\"originalName\",\"mimeType\",\"fileSize\",\"filePath\",\"uploadedAt\",\"CommunicationChannel\",\"channel\",\"CommunicationDirection\",\"direction\",\"CommunicationStatus\",\"status\",\"body\",\"callDuration\",\"twilioSid\",\"fileId\",\"seq\",\"folderId\",\"isComplete\",\"totalChunks\",\"diskPath\",\"parentId\",\"jobName\",\"startedAt\",\"completedAt\",\"durationMs\",\"errorMessage\",\"NotificationTypes\",\"type\",\"message\",\"read\",\"path\",\"isActive\",\"serviceLineId\",\"transactionId\",\"paidAmount\",\"adjustedAmount\",\"PaymentMethod\",\"method\",\"receivedDate\",\"payerName\",\"claimId\",\"updatedById\",\"totalBilled\",\"totalPaid\",\"totalAdjusted\",\"totalDue\",\"mhPaidAmount\",\"copayment\",\"adjustment\",\"PaymentStatus\",\"icn\",\"pdfData\",\"groupId\",\"title\",\"PdfTitleKey\",\"titleKey\",\"vendorName\",\"websiteUrl\",\"loginUsername\",\"loginPassword\",\"siteKey\",\"username\",\"password\",\"procedureCode\",\"procedureDate\",\"quad\",\"arch\",\"toothNumber\",\"toothSurface\",\"paidCode\",\"allowedAmount\",\"ServiceLineStatus\",\"appointmentId\",\"staffId\",\"patientName\",\"memberId\",\"dateOfBirth\",\"remarks\",\"MissingTeethStatus\",\"missingTeethStatus\",\"missingTeeth\",\"serviceDate\",\"insuranceProvider\",\"ClaimStatus\",\"claimNumber\",\"preAuthNumber\",\"procedureLabel\",\"fee\",\"category\",\"oralCavityArea\",\"ProcedureSource\",\"source\",\"comboKey\",\"npiNumber\",\"providerName\",\"role\",\"phone\",\"date\",\"startTime\",\"endTime\",\"typeLocked\",\"procedureCodeNotes\",\"movedByAi\",\"PatientStatus\",\"eligibilityStatus\",\"firstName\",\"lastName\",\"gender\",\"address\",\"insuranceId\",\"groupNumber\",\"policyHolder\",\"allergies\",\"medicalConditions\",\"preferredLanguage\",\"autoBackupEnabled\",\"autoBackupHour\",\"usbBackupEnabled\",\"usbBackupHour\",\"autoMhCheckEnabled\",\"autoMhCheckDayOfWeek\",\"autoMhCheckHour\",\"userId_siteKey\",\"userId_npiNumber\",\"every\",\"some\",\"none\",\"fileId_seq\",\"userId_parentId_name\",\"commissionBatchId_paymentId\",\"is\",\"isNot\",\"connectOrCreate\",\"upsert\",\"createMany\",\"set\",\"disconnect\",\"delete\",\"connect\",\"updateMany\",\"deleteMany\",\"increment\",\"decrement\",\"multiply\",\"divide\"]"), - graph: "khT1AsAEJAUAAKoJACAHAADlCQAgCAAApAkAIB0AAOwJACAlAAC1CQAgJgAA5AkAICcAAOYJACAoAADnCQAgKQAA6AkAICoAAKUJACArAADpCQAgLAAA6gkAIC0AAOsJACAuAAC3CQAgLwAA7QkAIDAAAO4JACAxAADvCQAgMgAA8AkAIDMAAPEJACA0AADyCQAgNQAA8wkAIDYAAPQJACA3AAD1CQAggAUAAOMJADCBBQAADQAQggUAAOMJADCDBQIAAAABhgYBAAAAAYcGAQCgCAAhvAYgAMAIACG9BgIA4ggAIb4GIADACAAhvwYCAOIIACHABiAAwAgAIcEGAgDiCAAhwgYCAOIIACEBAAAAAQAgIgMAAKEIACAFAACqCQAgCAAApAkAIAwAAKUJACAYAACnCQAgHAAA-gkAIB0AAOwJACAeAAD7CQAgHwAA_AkAICUAALUJACCABQAA-QkAMIEFAAADABCCBQAA-QkAMIMFAgDiCAAhhAUCAOIIACGYBUAA4wgAIaMFQADjCAAhsQUBALsIACG0BQEAuwgAIbYFAQC7CAAh0wUAAPcJsQYilQZAAOQIACGbBgEAuwgAIakGAQCgCAAhsgYBAKAIACGzBgEAoAgAIbQGAQCgCAAhtQYBALsIACG2BgEAuwgAIbcGAQC7CAAhuAYBALsIACG5BgEAuwgAIboGAQC7CAAhuwYBALsIACEWAwAAhgoAIAUAALARACAIAACzEQAgDAAAthEAIBgAAMgRACAcAADaEQAgHQAAvBEAIB4AANsRACAfAADcEQAgJQAAuhEAILEFAACRCgAgtAUAAJEKACC2BQAAkQoAIJUGAACRCgAgmwYAAJEKACC1BgAAkQoAILYGAACRCgAgtwYAAJEKACC4BgAAkQoAILkGAACRCgAgugYAAJEKACC7BgAAkQoAICIDAAChCAAgBQAAqgkAIAgAAKQJACAMAAClCQAgGAAApwkAIBwAAPoJACAdAADsCQAgHgAA-wkAIB8AAPwJACAlAAC1CQAggAUAAPkJADCBBQAAAwAQggUAAPkJADCDBQIAAAABhAUCAOIIACGYBUAA4wgAIaMFQADjCAAhsQUBALsIACG0BQEAuwgAIbYFAQC7CAAh0wUAAPcJsQYilQZAAOQIACGbBgEAuwgAIakGAQCgCAAhsgYBAKAIACGzBgEAoAgAIbQGAQCgCAAhtQYBALsIACG2BgEAuwgAIbcGAQC7CAAhuAYBALsIACG5BgEAuwgAIboGAQC7CAAhuwYBALsIACEDAAAAAwAgAQAABAAwAgAABQAgGQMAAKEIACAEAACZCQAgBwAA4QkAIAgAAKQJACAYAACnCQAgGQAA-AkAIIAFAAD2CQAwgQUAAAcAEIIFAAD2CQAwgwUCAOIIACGEBQIA4ggAIZcFAQC7CAAhmAVAAOMIACGkBQIA4ggAIdMFAQCgCAAh5AUBAKAIACH-BQEAoAgAIZIGAgDiCAAhqgZAAOMIACGrBgEAoAgAIawGAQCgCAAhrQYgAMAIACGuBgEAuwgAIa8GIADACAAhsQYAAPcJsQYiCAMAAIYKACAEAADGEQAgBwAA1xEAIAgAALMRACAYAADIEQAgGQAA2REAIJcFAACRCgAgrgYAAJEKACAZAwAAoQgAIAQAAJkJACAHAADhCQAgCAAApAkAIBgAAKcJACAZAAD4CQAggAUAAPYJADCBBQAABwAQggUAAPYJADCDBQIAAAABhAUCAOIIACGXBQEAuwgAIZgFQADjCAAhpAUCAOIIACHTBQEAoAgAIeQFAQCgCAAh_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AAtABCCBQAAzwkAMIMFAgDiCAAhkQUCAOIIACGSBQIA4ggAIZMFEADLCQAhAgwAANMRACASAADSEQAgCgwAANEJACASAADQCQAggAUAAM8JADCBBQAALQAQggUAAM8JADCDBQIAAAABkQUCAOIIACGSBQIA4ggAIZMFEADLCQAhygYAAM4JACADAAAALQAgAQAALgAwAgAALwAgAwAAAC0AIAEAAC4AMAIAAC8AIAEAAAAtACABAAAAIQAgAQAAACkAIAEAAAAtACALCwAAzAkAIBEAAM0JACCABQAAygkAMIEFAAA2ABCCBQAAygkAMIMFAgDiCAAhlAUCAOIIACGVBRAAywkAIZYFEADLCQAhlwUBALsIACGYBUAA4wgAIQMLAADQEQAgEQAA0REAIJcFAACRCgAgCwsAAMwJACARAADNCQAggAUAAMoJADCBBQAANgAQggUAAMoJADCDBQIAAAABlAUCAOIIACGVBRAAywkAIZYFEADLCQAhlwUBALsIACGYBUAA4wgAIQMAAAA2ACABAAA3ADACAAA4ACAUBAAAmQkAIAYAAMMJACALAADJCQAggAUAAMYJADCBBQAAOgAQggUAAMYJADCDBQIA4ggAIZQFAgDlCAAhmAVAAOMIACGkBQIA4ggAIYgGAQCgCAAhjAYBALsIACGNBgEAuwgAIZEGAgDiCAAhnwYBALsIACGgBhAAxwkAIaEGAQC7CAAhogYBALsIACGkBgAAyAmkBiKlBgEAuwgAIQsEAADGEQAgBgAAzhEAIAsAANARACCUBQAAkQoAIIwGAACRCgAgjQYAAJEKACCfBgAAkQoAIKAGAACRCgAgoQYAAJEKACCiBgAAkQoAIKUGAACRCgAgFAQAAJkJACAGAADDCQAgCwAAyQkAIIAFAADGCQAwgQUAADoAEIIFAADGCQAwgwUCAAAAAZQFAgDlCAAhmAVAAOMIACGkBQIA4ggAIYgGAQCgCAAhjAYBALsIACGNBgEAuwgAIZEGAgDiCAAhnwYBALsIACGgBhAAxwkAIaEGAQC7CAAhogYBALsIACGkBgAAyAmkBiKlBgEAuwgAIQMAAAA6ACABAAA7ADACAAA8ACABAAAAFwAgAQAAABAAIAEAAAAaACABAAAANgAgAQAAADoAIAMAAAApACABAAAqADACAAArACAJCQAAxQkAIIAFA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ALsIACGbBQEAuwgAIZwFAQC7CAAhnQUBALsIACGeBQEAuwgAIZ8FAQC7CAAhoAUBALsIACGhBQEAuwgAIaIFAgDiCAAhowVAAOMIACEDAAAAuQEAIAEAALoBADACAAC7AQAgBwMAAKEIACCABQAAnwgAMIEFAAC9AQAQggUAAJ8IADCDBQIA4ggAIYQFAgDiCAAhhQUBAKAIACEBAAAAvQEAIAEAAAADACABAAAABwAgAQAAAAsAIAEAAAAXACABAAAAEAAgAQAAAJABACABAAAAlAEAIAEAAAAaACABAAAAmQEAIAEAAACdAQAgAQAAAKEBACABAAAAbQAgAQAAAHQAIAEAAABiACABAAAAsgEAIAEAAABrACABAAAAuQEAIAEAAAABACAXBQAAsBEAIAcAALERACAIAACzEQAgHQAAvBEAICUAALoRACAmAACvEQAgJwAAshEAICgAALQRACApAAC1EQAgKgAAthEAICsAALcRACAsAAC4EQAgLQAAuREAIC4AALsRACAvAAC9EQAgMAAAvhEAIDEAAL8RACAyAADAEQAgMwAAwREAIDQAAMIRACA1AADDEQAgNgAAxBEAIDcAAMURACADAAAADQAgAQAA0QEAMAIAAAEAIAMAAAANACABAADRAQAwAgAAAQAgAwAAAA0AIAEAANEBADACAAABACAhBQAAmREAIAcAAJoRACAIAACcEQAgHQAApREAICUAAKMRACAmAACYEQAgJwAAmxEAICgAAJ0RACApAACeEQAgKgAAnxEAICsAAKARACAsAAChEQAgLQAAohEAIC4AAKQRACAvAACmEQAgMAAApxEAIDEAAKgRACAyAACpEQAgMwAAqhEAIDQAAKsRACA1AACsEQAgNgAArREAIDcAAK4RACCDBQIAAAABhgYBAAAAAYcGAQAAAAG8BiAAAAABvQYCAAAAAb4GIAAAAAG_BgIAAAABwAYgAAAAAcEGAgAAAAHCBgIAAAABAT0AANUBACAKgwUCAAAAAYYGAQAAAAGHBgEAAAABvAYgAAAAAb0GAgAAAAG-BiAAAAABvwYCAAAAAcAGIAAAAAHBBgIAAAABwgYCAAAAAQE9AADXAQAwAT0AANcBADAhBQAAqg8AIAcAAKsPACAIAACtDwAgHQAAtg8AICUAALQPACAmAACpDwAgJwAArA8AICgAAK4PACApAACvDwAgKgAAsA8AICsAALEPACAsAACyDwAgLQAAsw8AIC4AALUPACAvAAC3DwAgMAAAuA8AIDEAALkPACAyAAC6DwAgMwAAuw8AIDQAALwPACA1AAC9DwAgNgAAvg8AIDcAAL8PACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_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-w0AIAcAALMOACAIAAD-DQAgGAAA_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_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_gIAIBODBQIAgwoAIYQFAgCDCgAhlAUCAPQKACGYBUAAmAoAIaMFQACYCgAhpAUCAIMKACHTBQAA6AydBiKRBgIA9AoAIZIGAgCDCgAhkwYBAIIKACGUBgEAggoAIZUGQACYCgAhlgYBAIIKACGYBgAA5wyYBiKZBoAAAAABmgZAAJgKACGbBgEAggoAIZ0GAQCXCgAhngYBAJcKACECAAAAEAAgPQAAgAMAIAIAAAAQACA9AACAAwAgAQAAAAcAIAEAAAANACABAAAACwAgAQAAABcAIAMAAAASACBEAAD1AgAgRQAA_gIAIAEAAAASACABAAAAEAAgCg4AAOIMACBKAADjDAAgSwAA5gwAIEwAAOUMACBNAADkDAAglAUAAJEKACCRBgAAkQoAIJkGAACRCgAgnQYAAJEKACCeBgAAkQoAIBaABQAAgwkAMIEFAACLAwAQggUAAIMJADCDBQIAmAgAIYQFAgCYCAAhlAUCAMsIACGYBUAAqAgAIaMFQACoCAAhpAUCAJgIACHTBQAAhQmdBiKRBgIAywgAIZIGAgCYCAAhkwYBAJkIACGUBgEAmQgAIZUGQACoCAAhlgYBAJkIACGYBgAAhAmYBiKZBgAAwggAIJoGQACoCAAhmwYBAJkIACGdBgEApwgAIZ4GAQCnCAAhAwAAABAAIAEAAIoDADBJAACLAwAgAwAAABAAIAEAABEAMAIAABIAIAEAAAArACABAAAAKwAgAwAAACkAIAEAACoAMAIAACsAIAMAAAApACABAAAqADACAAArACADAAAAKQAgAQAAKgAwAgAAKwAgFAkAAJcMACAMAADhDAAgDQAAmAwAIIMFAgAAAAGSBQIAAAAB0wUAAACRBgLxBQIAAAAB8wUQAAAAAfQFEAAAAAH1BRAAAAAB9gUQAAAAAfsFAQAAAAGIBgEAAAABiQZAAAAAAYoGAQAAAAGLBgEAAAABjAYBAAAAAY0GAQAAAAGOBgEAAAABjwYQAAAAAQE9AACTAwAgEYMFAgAAAAGSBQIAAAAB0wUAAACRBgLxBQIAAAAB8wUQAAAAAfQFEAAAAAH1BRAAAAAB9gUQAAAAAfsFAQAAAAGIBgEAAAABiQZAAAAAAYoGAQAAAAGLBgEAAAABjAYBAAAAAY0GAQAAAAGOBgEAAAABjwYQAAAAAQE9AACVAwAwAT0AAJUDADABAAAAEAAgAQAAABoAIBQJAACIDAAgDAAA4AwAIA0AAIkMACCDBQIAgwoAIZIFAgD0CgAh0wUAAIYMkQYi8QUCAPQKACHzBRAAjAoAIfQFEACMCgAh9QUQAIwKACH2BRAAjAoAIfsFAQCXCgAhiAYBAIIKACGJBkAAmAoAIYoGAQCXCgAhiwYBAJcKACGMBgEAlwoAIY0GAQCXCgAhjgYBAJcKACGPBhAA6gsAIQIAAAArACA9AACaAwAgEYMFAgCDCgAhkgUCAPQKACHTBQAAhgyRBiLxBQIA9AoAIfMFEACMCgAh9AUQAIwKACH1BRAAjAoAIfYFEACMCgAh-wUBAJcKACGIBgEAggoAIYkGQACYCgAhigYBAJcKACGLBgEAlwoAIYwGAQCXCgAhjQYBAJcKACGOBgEAlwoAIY8GEADqCwAhAgAAACkAID0AAJwDACACAAAAKQAgPQAAnAMAIAEAAAAQACABAAAAGgAgAwAAACsAIEQAAJMDACBFAACaAwAgAQAAACsAIAEAAAApACAODgAA2wwAIEoAANwMACBLAADfDAAgTAAA3gwAIE0AAN0MACCSBQAAkQoAIPEFAACRCgAg-wUAAJEKACCKBgAAkQoAIIsGAACRCgAgjAYAAJEKACCNBgAAkQoAII4GAACRCgAgjwYAAJEKACAUgAUAAP8IADCBBQAApQMAEIIFAAD_CAAwgwUCAJgIACGSBQIAywgAIdMFAACACZEGIvEFAgDLCAAh8wUQAKMIACH0BRAAowgAIfUFEACjCAAh9gUQAKMIACH7BQEApwgAIYgGAQCZCAAhiQZAAKgIACGKBgEApwgAIYsGAQCnCAAhjAYBAKcIACGNBgEApwgAIY4GAQCnCAAhjwYQAPEIACEDAAAAKQAgAQAApAMAMEkAAKUDACADAAAAKQAgAQAAKgAwAgAAKwAgAQAAAEYAIAEAAABGACADAAAARAAgAQAARQAwAgAARgAgAwAAAEQAIAEAAEUAMAIAAEYAIAMAAABEACABAABFADACAABGACAGCQAA2gwAIIMFAgAAAAHIBQEAAAABygUBAAAAAcwFAQAAAAHxBQIAAAABAT0AAK0DACAFgwUCAAAAAcgFAQAAAAHKBQEAAAABzAUBAAAAAfEFAgAAAAEBPQAArwMAMAE9AACvAwAwBgkAANkMACCDBQIAgwoAIcgFAQCCCgAhygUBAIIKACHMBQEAlwoAIfEFAgCDCgAhAgAAAEYAID0AALIDACAFgwUCAIMKACHIBQEAggoAIcoFAQCCCgAhzAUBAJcKACHxBQIAgwoAIQIAAABEACA9AAC0AwAgAgAAAEQAID0AALQDACADAAAARgAgRAAArQMAIEUAALIDACABAAAARgAgAQAAAEQAIAYOAADUDAAgSgAA1QwAIEsAANgMACBMAADXDAAgTQAA1gwAIMwFAACRCgAgCIAFAAD-CAAwgQUAALsDABCCBQAA_ggAMIMFAgCYCAAhyAUBAJkIACHKBQEAmQgAIcwFAQCnCAAh8QUCAJgIACEDAAAARAAgAQAAugMAMEkAALsDACADAAAARAAgAQAARQAwAgAARgAgAQAAAJIBACABAAAAkgEAIAMAAACQAQAgAQAAkQEAMAIAAJIBACADAAAAkAEAIAEAAJEBADACAACSAQAgAwAAAJABACABAACRAQAwAgAAkgEAIAYDAADTDAAggwUCAAAAAYQFAgAAAAGFBgEAAAABhgYBAAAAAYcGAQAAAAEBPQAAwwMAIAWDBQIAAAABhAUCAAAAAYUGAQAAAAGGBgEAAAABhwYBAAAAAQE9AADFAwAwAT0AAMUDADAGAwAA0gwAIIMFAgCDCgAhhAUCAIMKACGFBgEAggoAIYYGAQCCCgAhhwYBAIIKACECAAAAkgEAID0AAMgDACAFgwUCAIMKACGEBQIAgwoAIYUGAQCCCgAhhgYBAIIKACGHBgEAggoAIQIAAACQAQAgPQAAygMAIAIAAACQAQAgPQAAygMAIAMAAACSAQAgRAAAwwMAIEUAAMgDACABAAAAkgEAIAEAAACQAQAgBQ4AAM0MACBKAADODAAgSwAA0QwAIEwAANAMACBNAADPDAAgCIAFAAD9CAAwgQUAANEDABCCBQAA_QgAMIMFAgCYCAAhhAUCAJgIACGFBgEAmQgAIYYGAQCZCAAhhwYBAJkIACEDAAAAkAEAIAEAANADADBJAADRAwAgAwAAAJABACABAACRAQAwAgAAkgEAIAEAAACWAQAgAQAAAJYBACADAAAAlAEAIAEAAJUBADACAACWAQAgAwAAAJQBACABAACVAQAwAgAAlgEAIAMAAACUAQAgAQAAlQEAMAIAAJYBACAHAwAAzAwAIIMFAgAAAAGEBQIAAAABgQYBAAAAAYIGAQAAAAGDBgEAAAABhAYBAAAAAQE9AADZAwAgBoMFAgAAAAGEBQIAAAABgQYBAAAAAYIGAQAAAAGDBgEAAAABhAYBAAAAAQE9AADbAwAwAT0AANsDADAHAwAAywwAIIMFAgCDCgAhhAUCAIMKACGBBgEAggoAIYIGAQCCCgAhgwYBAIIKACGEBgEAggoAIQIAAACWAQAgPQAA3gMAIAaDBQIAgwoAIYQFAgCDCgAhgQYBAIIKACGCBgEAggoAIYMGAQCCCgAhhAYBAIIKACECAAAAlAEAID0AAOADACACAAAAlAEAID0AAOADACADAAAAlgEAIEQAANkDACBFAADeAwAgAQAAAJYBACABAAAAlAEAIAUOAADGDAAgSgAAxwwAIEsAAMoMACBMAADJDAAgTQAAyAwAIAmABQAA_AgAMIEFAADnAwAQggUAAPwIADCDBQIAmAgAIYQFAgCYCAAhgQYBAJkIACGCBgEAmQgAIYMGAQCZCAAhhAYBAJkIACEDAAAAlAEAIAEAAOYDADBJAADnAwAgAwAAAJQBACABAACVAQAwAgAAlgEAIAEAAABaACABAAAAWgAgAwAAAFgAIAEAAFkAMAIAAFoAIAMAAABYACABAABZADACAABaACADAAAAWAAgAQAAWQAwAgAAWgAgBwQAAMQMACAbAADFDAAggwUCAAAAAZgFQAAAAAGkBQIAAAAB_gUBAAAAAYAGAAAAgAYCAT0AAO8DACAFgwUCAAAAAZgFQAAAAAGkBQIAAAAB_gUBAAAAAYAGAAAAgAYCAT0AAPEDADABPQAA8QMAMAcEAAC2DAAgGwAAtwwAIIMFAgCDCgAhmAVAAJgKACGkBQIAgwoAIf4FAQCCCgAhgAYAALUMgAYiAgAAAFoAID0AAPQDACAFgwUCAIMKACGYBUAAmAoAIaQFAgCDCgAh_gUBAIIKACGABgAAtQyABiICAAAAWAAgPQAA9gMAIAIAAABYACA9AAD2AwAgAwAAAFoAIEQAAO8DACBFAAD0AwAgAQAAAFoAIAEAAABYACAFDgAAsAwAIEoAALEMACBLAAC0DAAgTAAAswwAIE0AALIMACAIgAUAAPgIADCBBQAA_QMAEIIFAAD4CAAwgwUCAJgIACGYBUAAqAgAIaQFAgCYCAAh_gUBAJkIACGABgAA-QiABiIDAAAAWAAgAQAA_AMAMEkAAP0DACADAAAAWAAgAQAAWQAwAgAAWgAgAQAAAF4AIAEAAABeACADAAAAXAAgAQAAXQAwAgAAXgAgAwAAAFwAIAEAAF0AMAIAAF4AIAMAAABcACABAABdADACAABeACAGGgAArwwAIIMFAgAAAAHIBQEAAAABzQVAAAAAAfwFAAEAAAH9BQIAAAABAT0AAIUEACAFgwUCAAAAAcgFAQAAAAHNBUAAAAAB_AUAAQAAAf0FAgAAAAEBPQAAhwQAMAE9AACHBAAwBhoAAK4MACCDBQIAgwoAIcgFAQCCCgAhzQVAAJgKACH8BQAB_goAIf0FAgCDCgAhAgAAAF4AID0AAIoEACAFgwUCAIMKACHIBQEAggoAIc0FQACYCgAh_AUAAf4KACH9BQIAgwoAIQIAAABcACA9AACMBAAgAgAAAFwAID0AAIwEACADAAAAXgAgRAAAhQQAIEUAAIoEACABAAAAXgAgAQAAAFwAIAUOAACpDAAgSgAAqgwAIEsAAK0MACBMAACsDAAgTQAAqwwAIAiABQAA9wgAMIEFAACTBAAQggUAAPcIADCDBQIAmAgAIcgFAQCZCAAhzQVAAKgIACH8BQAB2AgAIf0FAgCYCAAhAwAAAFwAIAEAAJIEADBJAACTBAAgAwAAAFwAIAEAAF0AMAIAAF4AIAEAAAAcACABAAAAHAAgAwAAABoAIAEAABsAMAIAABwAIAMAAAAaACABAAAbADACAAAcACADAAAAGgAgAQAAGwAwAgAAHAAgGQQAAKMMACAJAACiDAAgCgAApAwAIAsAAKUMACANAACmDAAgEAAApwwAIBMAAKgMACCDBQIAAAABhAUCAAAAAZQFAgAAAAGXBQEAAAABmAVAAAAAAaMFQAAAAAGkBQIAAAAB0wUAAAD7BQLxBQIAAAAB8gUCAAAAAfMFEAAAAAH0BRAAAAAB9QUQAAAAAfYFEAAAAAH3BRAAAAAB-AUQAAAAAfkFEAAAAAH7BQEAAAABAT0AAJsEACASgwUCAAAAAYQFAgAAAAGUBQIAAAABlwUBAAAAAZgFQAAAAAGjBUAAAAABpAUCAAAAAdMFAAAA-wUC8QUCAAAAAfIFAgAAAAHzBRAAAAAB9AUQAAAAAfUFEAAAAAH2BRAAAAAB9wUQAAAAAfgFEAAAAAH5BRAAAAAB-wUBAAAAAQE9AACdBAAwAT0AAJ0EADABAAAAEAAgAQAAAA0AIAEAAAAXACAZBAAA7QsAIAkAAOwLACAKAADuCwAgCwAA7wsAIA0AAPALACAQAADxCwAgEwAA8gsAIIMFAgCDCgAhhAUCAIMKACGUBQIA9AoAIZcFAQCXCgAhmAVAAJgKACGjBUAAmAoAIaQFAgCDCgAh0wUAAOsL-wUi8QUCAPQKACHyBQIA9AoAIfMFEACMCgAh9AUQAIwKACH1BRAAjAoAIfYFEACMCgAh9wUQAOoLACH4BRAAjAoAIfkFEACMCgAh-wUBAJcKACECAAAAHAAgPQAAowQAIBKDBQIAgwoAIYQFAgCDCgAhlAUCAPQKACGXBQEAlwoAIZgFQACYCgAhowVAAJgKACGkBQIAgwoAIdMFAADrC_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-QoAIEoAAPoKACBLAAD9CgAgTAAA_AoAIE0AAPsKACAIPQAB2AgAIYAFAADXCAAwgQUAAOgFABCCBQAA1wgAMIMFAgCYCAAhmAVAAKgIACHXBQIAmAgAIdgFAgCYCAAhAwAAAHkAIAEAAOcFADBJAADoBQAgAwAAAHkAIAEAAHoAMAIAAHsAIAEAAABkACABAAAAZAAgAwAAAGIAIAEAAGMAMAIAAGQAIAMAAABiACABAABjADACAABkACADAAAAYgAgAQAAYwAwAgAAZAAgDAMAAPgKACAEAAD3CgAggwUCAAAAAYQFAgAAAAGYBUAAAAABpAUCAAAAAc8FAAAAzwUC0QUAAADRBQLTBQAAANMFAtQFAQAAAAHVBQIAAAAB1gUBAAAAAQE9AADwBQAgCoMFAgAAAAGEBQIAAAABmAVAAAAAAaQFAgAAAAHPBQAAAM8FAtEFAAAA0QUC0wUAAADTBQLUBQEAAAAB1QUCAAAAAdYFAQAAAAEBPQAA8gUAMAE9AADyBQAwAQAAAA0AIAwDAAD2CgAgBAAA9QoAIIMFAgCDCgAhhAUCAPQKACGYBUAAmAoAIaQFAgCDCgAhzwUAAPEKzwUi0QUAAPIK0QUi0wUAAPMK0wUi1AUBAJcKACHVBQIA9AoAIdYFAQCXCgAhAgAAAGQAID0AAPYFACAKgwUCAIMKACGEBQIA9AoAIZgFQACYCgAhpAUCAIMKACHPBQAA8QrPBSLRBQAA8grRBSLTBQAA8wrTBSLUBQEAlwoAIdUFAgD0CgAh1gUBAJcKACECAAAAYgAgPQAA-AUAIAIAAABiACA9AAD4BQAgAQAAAA0AIAMAAABkACBEAADwBQAgRQAA9gUAIAEAAABkACABAAAAYgAgCQ4AAOwKACBKAADtCgAgSwAA8AoAIEwAAO8KACBNAADuCgAghAUAAJEKACDUBQAAkQoAINUFAACRCgAg1gUAAJEKACANgAUAAMoIADCBBQAAgAYAEIIFAADKCAAwgwUCAJgIACGEBQIAywgAIZgFQACoCAAhpAUCAJgIACHPBQAAzAjPBSLRBQAAzQjRBSLTBQAAzgjTBSLUBQEApwgAIdUFAgDLCAAh1gUBAKcIACEDAAAAYgAgAQAA_wUAMEkAAIAGACADAAAAYgAgAQAAYwAwAgAAZAAgAQAAAGkAIAEAAABpACADAAAAZwAgAQAAaAAwAgAAaQAgAwAAAGcAIAEAAGgAMAIAAGkAIAMAAABnACABAABoADACAABpACAKBAAA6woAIIMFAgAAAAGjBUAAAAABpAUCAAAAAcgFAQAAAAHJBQEAAAABygUBAAAAAcsFBAAAAAHMBQEAAAABzQVAAAAAAQE9AACIBgAgCYMFAgAAAAGjBUAAAAABpAUCAAAAAcgFAQAAAAHJBQEAAAABygUBAAAAAcsFBAAAAAHMBQEAAAABzQVAAAAAAQE9AACKBgAwAT0AAIoGADAKBAAA6goAIIMFAgCDCgAhowVAAJgKACGkBQIAgwoAIcgFAQCCCgAhyQUBAIIKACHKBQEAggoAIcsFBADpCgAhzAUBAIIKACHNBUAAmAoAIQIAAABpACA9AACNBgAgCYMFAgCDCgAhowVAAJgKACGkBQIAgwoAIcgFAQCCCgAhyQUBAIIKACHKBQEAggoAIcsFBADpCgAhzAUBAIIKACHNBUAAmAoAIQIAAABnACA9AACPBgAgAgAAAGcAID0AAI8GACADAAAAaQAgRAAAiAYAIEUAAI0GACABAAAAaQAgAQAAAGcAIAUOAADkCgAgSgAA5QoAIEsAAOgKACBMAADnCgAgTQAA5goAIAyABQAAxggAMIEFAACWBgAQggUAAMYIADCDBQIAmAgAIaMFQACoCAAhpAUCAJgIACHIBQEAmQgAIckFAQCZCAAhygUBAJkIACHLBQQAxwgAIcwFAQCZCAAhzQVAAKgIACEDAAAAZwAgAQAAlQYAMEkAAJYGACADAAAAZwAgAQAAaAAwAgAAaQAgCwMAAKEIACCABQAAxAgAMIEFAACoAQAQggUAAMQIADCDBQIAAAABhAUCAAAAAa0FAQCgCAAhxAUBAKAIACHFBQEAoAgAIcYFAQC7CAAhxwUAAMUIACABAAAAmQYAIAEAAACZBgAgAwMAAIYKACDGBQAAkQoAIMcFAACRCgAgAwAAAKgBACABAACcBgAwAgAAmQYAIAMAAACoAQAgAQAAnAYAMAIAAJkGACADAAAAqAEAIAEAAJwGADACAACZBgAgCAMAAOMKACCDBQIAAAABhAUCAAAAAa0FAQAAAAHEBQEAAAABxQUBAAAAAcYFAQAAAAHHBYAAAAABAT0AAKAGACAHgwUCAAAAAYQFAgAAAAGtBQEAAAABxAUBAAAAAcUFAQAAAAHGBQEAAAABxwWAAAAAAQE9AACiBgAwAT0AAKIGADAIAwAA4goAIIMFAgCDCgAhhAUCAIMKACGtBQEAggoAIcQFAQCCCgAhxQUBAIIKACHGBQEAlwoAIccFgAAAAAECAAAAmQYAID0AAKUGACAHgwUCAIMKACGEBQIAgwoAIa0FAQCCCgAhxAUBAIIKACHFBQEAggoAIcYFAQCXCgAhxwWAAAAAAQIAAACoAQAgPQAApwYAIAIAAACoAQAgPQAApwYAIAMAAACZBgAgRAAAoAYAIEUAAKUGACABAAAAmQYAIAEAAACoAQAgBw4AAN0KACBKAADeCgAgSwAA4QoAIEwAAOAKACBNAADfCgAgxgUAAJEKACDHBQAAkQoAIAqABQAAwQgAMIEFAACuBgAQggUAAMEIADCDBQIAmAgAIYQFAgCYCAAhrQUBAJkIACHEBQEAmQgAIcUFAQCZCAAhxgUBAKcIACHHBQAAwggAIAMAAACoAQAgAQAArQYAMEkAAK4GACADAAAAqAEAIAEAAJwGADACAACZBgAgEwMAAKEIACCABQAAvwgAMIEFAACqAQAQggUAAL8IADCDBQIAAAABhAUCAAAAAbcFAQCgCAAhuAUgAMAIACG5BQEAoAgAIboFIADACAAhuwUBAKAIACG8BSAAwAgAIb0FAQCgCAAhvgUBAKAIACG_BQEAoAgAIcAFAQCgCAAhwQUgAMAIACHCBSAAwAgAIcMFIADACAAhAQAAALEGACABAAAAsQYAIAEDAACGCgAgAwAAAKoBACABAAC0BgAwAgAAsQYAIAMAAACqAQAgAQAAtAYAMAIAALEGACADAAAAqgEAIAEAALQGADACAACxBgAgEAMAANwKACCDBQIAAAABhAUCAAAAAbcFAQAAAAG4BSAAAAABuQUBAAAAAboFIAAAAAG7BQEAAAABvAUgAAAAAb0FAQAAAAG-BQEAAAABvwUBAAAAAcAFAQAAAAHBBSAAAAABwgUgAAAAAcMFIAAAAAEBPQAAuAYAIA-DBQIAAAABhAUCAAAAAbcFAQAAAAG4BSAAAAABuQUBAAAAAboFIAAAAAG7BQEAAAABvAUgAAAAAb0FAQAAAAG-BQEAAAABvwUBAAAAAcAFAQAAAAHBBSAAAAABwgUgAAAAAcMFIAAAAAEBPQAAugYAMAE9AAC6BgAwEAMAANsKACCDBQIAgwoAIYQFAgCDCgAhtwUBAIIKACG4BSAAtQoAIbkFAQCCCgAhugUgALUKACG7BQEAggoAIbwFIAC1CgAhvQUBAIIKACG-BQEAggoAIb8FAQCCCgAhwAUBAIIKACHBBSAAtQoAIcIFIAC1CgAhwwUgALUKACECAAAAsQYAID0AAL0GACAPgwUCAIMKACGEBQIAgwoAIbcFAQCCCgAhuAUgALUKACG5BQEAggoAIboFIAC1CgAhuwUBAIIKACG8BSAAtQoAIb0FAQCCCgAhvgUBAIIKACG_BQEAggoAIcAFAQCCCgAhwQUgALUKACHCBSAAtQoAIcMFIAC1CgAhAgAAAKoBACA9AAC_BgAgAgAAAKoBACA9AAC_BgAgAwAAALEGACBEAAC4BgAgRQAAvQYAIAEAAACxBgAgAQAAAKoBACAFDgAA1goAIEoAANcKACBLAADaCgAgTAAA2QoAIE0AANgKACASgAUAAL4IADCBBQAAxgYAEIIFAAC-CAAwgwUCAJgIACGEBQIAmAgAIbcFAQCZCAAhuAUgALAIACG5BQEAmQgAIboFIACwCAAhuwUBAJkIACG8BSAAsAgAIb0FAQCZCAAhvgUBAJkIACG_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_AcAEIIFAACiCAAwgwUCAJgIACGRBQIAmAgAIZIFAgCYCAAhkwUQAKMIACEDAAAALQAgAQAA-wcAMEkAAPwHACADAAAALQAgAQAALgAwAgAALwAgBwMAAKEIACCABQAAnwgAMIEFAAC9AQAQggUAAJ8IADCDBQIAAAABhAUCAAAAAYUFAQCgCAAhAQAAAP8HACABAAAA_wcAIAEDAACGCgAgAwAAAL0BACABAACCCAAwAgAA_wcAIAMAAAC9AQAgAQAAgggAMAIAAP8HACADAAAAvQEAIAEAAIIIADACAAD_BwAgBAMAAIUKACCDBQIAAAABhAUCAAAAAYUFAQAAAAEBPQAAhggAIAODBQIAAAABhAUCAAAAAYUFAQAAAAEBPQAAiAgAMAE9AACICAAwBAMAAIQKACCDBQIAgwoAIYQFAgCDCgAhhQUBAIIKACECAAAA_wcAID0AAIsIACADgwUCAIMKACGEBQIAgwoAIYUFAQCCCgAhAgAAAL0BACA9AACNCAAgAgAAAL0BACA9AACNCAAgAwAAAP8HACBEAACGCAAgRQAAiwgAIAEAAAD_BwAgAQAAAL0BACAFDgAA_QkAIEoAAP4JACBLAACBCgAgTAAAgAoAIE0AAP8JACAGgAUAAJcIADCBBQAAlAgAEIIFAACXCAAwgwUCAJgIACGEBQIAmAgAIYUFAQCZCAAhAwAAAL0BACABAACTCAAwSQAAlAgAIAMAAAC9AQAgAQAAgggAMAIAAP8HACAGgAUAAJcIADCBBQAAlAgAEIIFAACXCAAwgwUCAJgIACGEBQIAmAgAIYUFAQCZCAAhDQ4AAJsIACBKAACeCAAgSwAAmwgAIEwAAJsIACBNAACbCAAghgUCAAAAAYcFAgAAAASIBQIAAAAEiQUCAAAAAYoFAgAAAAGLBQIAAAABjAUCAAAAAZAFAgCdCAAhDg4AAJsIACBMAACcCAAgTQAAnAgAIIYFAQAAAAGHBQEAAAAEiAUBAAAABIkFAQAAAAGKBQEAAAABiwUBAAAAAYwFAQAAAAGNBQEAAAABjgUBAAAAAY8FAQAAAAGQBQEAmggAIQ4OAACbCAAgTAAAnAgAIE0AAJwIACCGBQEAAAABhwUBAAAABIgFAQAAAASJBQEAAAABigUBAAAAAYsFAQAAAAGMBQEAAAABjQUBAAAAAY4FAQAAAAGPBQEAAAABkAUBAJoIACEIhgUCAAAAAYcFAgAAAASIBQIAAAAEiQUCAAAAAYoFAgAAAAGLBQIAAAABjAUCAAAAAZAFAgCbCAAhC4YFAQAAAAGHBQEAAAAEiAUBAAAABIkFAQAAAAGKBQEAAAABiwUBAAAAAYwFAQAAAAGNBQEAAAABjgUBAAAAAY8FAQAAAAGQBQEAnAgAIQ0OAACbCAAgSgAAnggAIEsAAJsIACBMAACbCAAgTQAAmwgAIIYFAgAAAAGHBQIAAAAEiAUCAAAABIkFAgAAAAGKBQIAAAABiwUCAAAAAYwFAgAAAAGQBQIAnQgAIQiGBQgAAAABhwUIAAAABIgFCAAAAASJBQgAAAABigUIAAAAAYsFCAAAAAGMBQgAAAABkAUIAJ4IACEHAwAAoQgAIIAFAACfCAAwgQUAAL0BABCCBQAAnwgAMIMFAgDiCAAhhAUCAOIIACGFBQEAoAgAIQuGBQEAAAABhwUBAAAABIgFAQAAAASJBQEAAAABigUBAAAAAYsFAQAAAAGMBQEAAAABjQUBAAAAAY4FAQAAAAGPBQEAAAABkAUBAJwIACEmBQAAqgkAIAcAAOUJACAIAACkCQAgHQAA7AkAICUAALUJACAmAADkCQAgJwAA5gkAICgAAOcJACApAADoCQAgKgAApQkAICsAAOkJACAsAADqCQAgLQAA6wkAIC4AALcJACAvAADtCQAgMAAA7gkAIDEAAO8JACAyAADwCQAgMwAA8QkAIDQAAPIJACA1AADzCQAgNgAA9AkAIDcAAPUJACCABQAA4wkAMIEFAAANABCCBQAA4wkAMIMFAgDiCAAhhgYBAKAIACGHBgEAoAgAIbwGIADACAAhvQYCAOIIACG-BiAAwAgAIb8GAgDiCAAhwAYgAMAIACHBBgIA4ggAIcIGAgDiCAAhywYAAA0AIMwGAAANACAHgAUAAKIIADCBBQAA_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_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-wUIkAUAAPMI-wUiBw4AAJsIACBMAAD0CAAgTQAA9AgAIIYFAAAA-wUChwUAAAD7BQiIBQAAAPsFCJAFAADzCPsFIgSGBQAAAPsFAocFAAAA-wUIiAUAAAD7BQiQBQAA9Aj7BSINDgAArAgAIEoAAPYIACBLAAD2CAAgTAAA9ggAIE0AAPYIACCGBRAAAAABhwUQAAAABYgFEAAAAAWJBRAAAAABigUQAAAAAYsFEAAAAAGMBRAAAAABkAUQAPUIACEIhgUQAAAAAYcFEAAAAAWIBRAAAAAFiQUQAAAAAYoFEAAAAAGLBRAAAAABjAUQAAAAAZAFEAD2CAAhCIAFAAD3CAAwgQUAAJMEABCCBQAA9wgAMIMFAgCYCAAhyAUBAJkIACHNBUAAqAgAIfwFAAHYCAAh_QUCAJgIACEIgAUAAPgIADCBBQAA_QMAEIIFAAD4CAAwgwUCAJgIACGYBUAAqAgAIaQFAgCYCAAh_gUBAJkIACGABgAA-QiABiIHDgAAmwgAIEwAAPsIACBNAAD7CAAghgUAAACABgKHBQAAAIAGCIgFAAAAgAYIkAUAAPoIgAYiBw4AAJsIACBMAAD7CAAgTQAA-wgAIIYFAAAAgAYChwUAAACABgiIBQAAAIAGCJAFAAD6CIAGIgSGBQAAAIAGAocFAAAAgAYIiAUAAACABgiQBQAA-wiABiIJgAUAAPwIADCBBQAA5wMAEIIFAAD8CAAwgwUCAJgIACGEBQIAmAgAIYEGAQCZCAAhggYBAJkIACGDBgEAmQgAIYQGAQCZCAAhCIAFAAD9CAAwgQUAANEDABCCBQAA_QgAMIMFAgCYCAAhhAUCAJgIACGFBgEAmQgAIYYGAQCZCAAhhwYBAJkIACEIgAUAAP4IADCBBQAAuwMAEIIFAAD-CAAwgwUCAJgIACHIBQEAmQgAIcoFAQCZCAAhzAUBAKcIACHxBQIAmAgAIRSABQAA_wgAMIEFAAClAwAQggUAAP8IADCDBQIAmAgAIZIFAgDLCAAh0wUAAIAJkQYi8QUCAMsIACHzBRAAowgAIfQFEACjCAAh9QUQAKMIACH2BRAAowgAIfsFAQCnCAAhiAYBAJkIACGJBkAAqAgAIYoGAQCnCAAhiwYBAKcIACGMBgEApwgAIY0GAQCnCAAhjgYBAKcIACGPBhAA8QgAIQcOAACbCAAgTAAAggkAIE0AAIIJACCGBQAAAJEGAocFAAAAkQYIiAUAAACRBgiQBQAAgQmRBiIHDgAAmwgAIEwAAIIJACBNAACCCQAghgUAAACRBgKHBQAAAJEGCIgFAAAAkQYIkAUAAIEJkQYiBIYFAAAAkQYChwUAAACRBgiIBQAAAJEGCJAFAACCCZEGIhaABQAAgwkAMIEFAACLAwAQggUAAIMJADCDBQIAmAgAIYQFAgCYCAAhlAUCAMsIACGYBUAAqAgAIaMFQACoCAAhpAUCAJgIACHTBQAAhQmdBiKRBgIAywgAIZIGAgCYCAAhkwYBAJkIACGUBgEAmQgAIZUGQACoCAAhlgYBAJkIACGYBgAAhAmYBiKZBgAAwggAIJoGQACoCAAhmwYBAJkIACGdBgEApwgAIZ4GAQCnCAAhBw4AAJsIACBMAACJCQAgTQAAiQkAIIYFAAAAmAYChwUAAACYBgiIBQAAAJgGCJAFAACICZgGIgcOAACbCAAgTAAAhwkAIE0AAIcJACCGBQAAAJ0GAocFAAAAnQYIiAUAAACdBgiQBQAAhgmdBiIHDgAAmwgAIEwAAIcJACBNAACHCQAghgUAAACdBgKHBQAAAJ0GCIgFAAAAnQYIkAUAAIYJnQYiBIYFAAAAnQYChwUAAACdBgiIBQAAAJ0GCJAFAACHCZ0GIgcOAACbCAAgTAAAiQkAIE0AAIkJACCGBQAAAJgGAocFAAAAmAYIiAUAAACYBgiQBQAAiAmYBiIEhgUAAACYBgKHBQAAAJgGCIgFAAAAmAYIkAUAAIkJmAYiEYAFAACKCQAwgQUAAO0CABCCBQAAigkAMIMFAgCYCAAhlAUCAMsIACGYBUAAqAgAIaQFAgCYCAAhiAYBAJkIACGMBgEApwgAIY0GAQCnCAAhkQYCAJgIACGfBgEApwgAIaAGEADxCAAhoQYBAKcIACGiBgEApwgAIaQGAACLCaQGIqUGAQCnCAAhBw4AAJsIACBMAACNCQAgTQAAjQkAIIYFAAAApAYChwUAAACkBgiIBQAAAKQGCJAFAACMCaQGIgcOAACbCAAgTAAAjQkAIE0AAI0JACCGBQAAAKQGAocFAAAApAYIiAUAAACkBgiQBQAAjAmkBiIEhgUAAACkBgKHBQAAAKQGCIgFAAAApAYIkAUAAI0JpAYiCYAFAACOCQAwgQUAANUCABCCBQAAjgkAMIMFAgCYCAAhhAUCAJgIACGYBUAAqAgAIaIFAgCYCAAhpgYBAJkIACGnBgEAmQgAIQqABQAAjwkAMIEFAAC_AgAQggUAAI8JADCDBQIAmAgAIYQFAgCYCAAhmAVAAKgIACGZBQEAmQgAIbEFAQCnCAAhqAYBAJkIACGpBgEApwgAIQiABQAAkAkAMIEFAACnAgAQggUAAJAJADCDBQIAmAgAIcgFAQCZCAAhygUBAKcIACHMBQEApwgAIZEGAgCYCAAhE4AFAACRCQAwgQUAAJECABCCBQAAkQkAMIMFAgCYCAAhhAUCAJgIACGXBQEApwgAIZgFQACoCAAhpAUCAJgIACHTBQEAmQgAIeQFAQCZCAAh_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-gkAIB0AAOwJACAeAAD7CQAgHwAA_AkAICUAALUJACCABQAA-QkAMIEFAAADABCCBQAA-QkAMIMFAgDiCAAhhAUCAOIIACGYBUAA4wgAIaMFQADjCAAhsQUBALsIACG0BQEAuwgAIbYFAQC7CAAh0wUAAPcJsQYilQZAAOQIACGbBgEAuwgAIakGAQCgCAAhsgYBAKAIACGzBgEAoAgAIbQGAQCgCAAhtQYBALsIACG2BgEAuwgAIbcGAQC7CAAhuAYBALsIACG5BgEAuwgAIboGAQC7CAAhuwYBALsIACHLBgAAAwAgzAYAAAMAIAPFBgAAdAAgxgYAAHQAIMcGAAB0ACANBAAAmQkAIIAFAAC4CQAwgQUAAGcAEIIFAAC4CQAwgwUCAOIIACGjBUAA4wgAIaQFAgDiCAAhyAUBAKAIACHJBQEAoAgAIcoFAQCgCAAhywUEALAJACHMBQEAoAgAIc0FQADjCAAhDwMAAKkJACAEAACZCQAggAUAALkJADCBBQAAYgAQggUAALkJADCDBQIA4ggAIYQFAgDlCAAhmAVAAOMIACGkBQIA4ggAIc8FAAC6Cc8FItEFAAC7CdEFItMFAAC8CdMFItQFAQC7CAAh1QUCAOUIACHWBQEAuwgAIQSGBQAAAM8FAocFAAAAzwUIiAUAAADPBQiQBQAA1AjPBSIEhgUAAADRBQKHBQAAANEFCIgFAAAA0QUIkAUAANII0QUiBIYFAAAA0wUChwUAAADTBQiIBQAAANMFCJAFAADQCNMFIgkaAAC-CQAggAUAAL0JADCBBQAAXAAQggUAAL0JADCDBQIA4ggAIcgFAQCgCAAhzQVAAOMIACH8BQABrQkAIf0FAgDiCAAhDAQAAJkJACAbAADBCQAggAUAAL8JADCBBQAAWAAQggUAAL8JADCDBQIA4ggAIZgFQADjCAAhpAUCAOIIACH-BQEAoAgAIYAGAADACYAGIssGAABYACDMBgAAWAAgCgQAAJkJACAbAADBCQAggAUAAL8JADCBBQAAWAAQggUAAL8JADCDBQIA4ggAIZgFQADjCAAhpAUCAOIIACH-BQEAoAgAIYAGAADACYAGIgSGBQAAAIAGAocFAAAAgAYIiAUAAACABgiQBQAA-wiABiIDxQYAAFwAIMYGAABcACDHBgAAXAAgCQYAAMMJACCABQAAwgkAMIEFAABPABCCBQAAwgkAMIMFAgDiCAAhyAUBAKAIACHKBQEAuwgAIcwFAQC7CAAhkQYCAOIIACEbAwAAoQgAIAQAAJkJACAHAADhCQAgCAAApAkAIBgAAKcJACAZAAD4CQAggAUAAPYJADCBBQAABwAQggUAAPYJADCDBQIA4ggAIYQFAgDiCAAhlwUBALsIACGYBUAA4wgAIaQFAgDiCAAh0wUBAKAIACHkBQEAoAgAIf4FAQCgCAAhkgYCAOIIACGqBkAA4wgAIasGAQCgCAAhrAYBAKAIACGtBiAAwAgAIa4GAQC7CAAhrwYgAMAIACGxBgAA9wmxBiLLBgAABwAgzAYAAAcAIAkJAADFCQAggAUAAMQJADCBBQAARAAQggUAAMQJADCDBQIA4ggAIcgFAQCgCAAhygUBAKAIACHMBQEAuwgAIfEFAgDiCAAhIAMAAKkJACAEAACZCQAgBgAA4AkAIAcAAOEJACALAADJCQAgDAAA1QkAIBAAANwJACAXAADiCQAggAUAAN0JADCBBQAAEAAQggUAAN0JADCDBQIA4ggAIYQFAgDiCAAhlAUCAOUIACGYBUAA4wgAIaMFQADjCAAhpAUCAOIIACHTBQAA3wmdBiKRBgIA5QgAIZIGAgDiCAAhkwYBAKAIACGUBgEAoAgAIZUGQADjCAAhlgYBAKAIACGYBgAA3gmYBiKZBgAAxQgAIJoGQADjCAAhmwYBAKAIACGdBgEAuwgAIZ4GAQC7CAAhywYAABAAIMwGAAAQACAUBAAAmQkAIAYAAMMJACALAADJCQAggAUAAMYJADCBBQAAOgAQggUAAMYJADCDBQIA4ggAIZQFAgDlCAAhmAVAAOMIACGkBQIA4ggAIYgGAQCgCAAhjAYBALsIACGNBgEAuwgAIZEGAgDiCAAhnwYBALsIACGgBhAAxwkAIaEGAQC7CAAhogYBALsIACGkBgAAyAmkBiKlBgEAuwgAIQiGBRAAAAABhwUQAAAABYgFEAAAAAWJBRAAAAABigUQAAAAAYsFEAAAAAGMBRAAAAABkAUQAPYIACEEhgUAAACkBgKHBQAAAKQGCIgFAAAApAYIkAUAAI0JpAYiEAMAAKEIACAIAACkCQAgFAAApQkAIBUAA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-AUQAMsJACH5BRAAywkAIfsFAQC7CAAhBIYFAAAA-wUChwUAAAD7BQiIBQAAAPsFCJAFAAD0CPsFIgPFBgAAKQAgxgYAACkAIMcGAAApACAeAwAAqQkAIAQAAJkJACAGAADgCQAgBwAA4QkAIAsAAMkJACAMAADVCQAgEAAA3AkAIBcAAOIJACCABQAA3QkAMIEFAAAQABCCBQAA3QkAMIMFAgDiCAAhhAUCAOIIACGUBQIA5QgAIZgFQADjCAAhowVAAOMIACGkBQIA4ggAIdMFAADfCZ0GIpEGAgDlCAAhkgYCAOIIACGTBgEAoAgAIZQGAQCgCAAhlQZAAOMIACGWBgEAoAgAIZgGAADeCZgGIpkGAADFCAAgmgZAAOMIACGbBgEAoAgAIZ0GAQC7CAAhngYBALsIACEEhgUAAACYBgKHBQAAAJgGCIgFAAAAmAYIkAUAAIkJmAYiBIYFAAAAnQYChwUAAACdBgiIBQAAAJ0GCJAFAACHCZ0GIhsDAAChCAAgBAAAmQkAIAcAAOEJACAIAACkCQAgGAAApwkAIBkAAPgJACCABQAA9gkAMIEFAAAHABCCBQAA9gkAMIMFAgDiCAAhhAUCAOIIACGXBQEAuwgAIZgFQADjCAAhpAUCAOIIACHTBQEAoAgAIeQFAQCgCAAh_gUBAKAIACGSBgIA4ggAIaoGQADjCAAhqwYBAKAIACGsBgEAoAgAIa0GIADACAAhrgYBALsIACGvBiAAwAgAIbEGAAD3CbEGIssGAAAHACDMBgAABwAgDwMAAKkJACAFAACqCQAgCAAApAkAIIAFAACoCQAwgQUAAAsAEIIFAACoCQAwgwUCAOIIACGEBQIA4ggAIZgFQADjCAAhmQUBAKAIACGxBQEAuwgAIagGAQCgCAAhqQYBALsIACHLBgAACwAgzAYAAAsAIAPFBgAARAAgxgYAAEQAIMcGAABEACAkBQAAqgkAIAcAAOUJACAIAACkCQAgHQAA7AkAICUAALUJACAmAADkCQAgJwAA5gkAICgAAOcJACApAADoCQAgKgAApQkAICsAAOkJACAsAADqCQAgLQAA6wkAIC4AALcJACAvAADtCQAgMAAA7gkAIDEAAO8JACAyAADwCQAgMwAA8QkAIDQAAPIJACA1AADzCQAgNgAA9AkAIDcAAPUJACCABQAA4wkAMIEFAAANABCCBQAA4wkAMIMFAgDiCAAhhgYBAKAIACGHBgEAoAgAIbwGIADACAAhvQYCAOIIACG-BiAAwAgAIb8GAgDiCAAhwAYgAMAIACHBBgIA4ggAIcIGAgDiCAAhA8UGAAADACDGBgAAAwAgxwYAAAMAIAPFBgAACwAgxgYAAAsAIMcGAAALACADxQYAABcAIMYGAAAXACDHBgAAFwAgA8UGAACQAQAgxgYAAJABACDHBgAAkAEAIAPFBgAAlAEAIMYGAACUAQAgxwYAAJQBACADxQYAAJkBACDGBgAAmQEAIMcGAACZAQAgA8UGAACdAQAgxgYAAJ0BACDHBgAAnQEAIAPFBgAAoQEAIMYGAAChAQAgxwYAAKEBACADxQYAAGIAIMYGAABiACDHBgAAYgAgDQMAAKEIACCABQAAxAgAMIEFAACoAQAQggUAAMQIADCDBQIA4ggAIYQFAgDiCAAhrQUBAKAIACHEBQEAoAgAIcUFAQCgCAAhxgUBALsIACHHBQAAxQgAIMsGAACoAQAgzAYAAKgBACAVAwAAoQgAIIAFAAC_CAAwgQUAAKoBABCCBQAAvwgAMIMFAgDiCAAhhAUCAOIIACG3BQEAoAgAIbgFIADACAAhuQUBAKAIACG6BSAAwAgAIbsFAQCgCAAhvAUgAMAIACG9BQEAoAgAIb4FAQCgCAAhvwUBAKAIACHABQEAoAgAIcEFIADACAAhwgUgAMAIACHDBSAAwAgAIcsGAACqAQAgzAYAAKoBACAJAwAAoQgAID0AALcIACCABQAAvQgAMIEFAACsAQAQggUAAL0IADCDBQIA4ggAIYQFAgDiCAAhywYAAKwBACDMBgAArAEAIBIDAAChCAAggAUAALoIADCBBQAArgEAEIIFAAC6CAAwgwUCAOIIACGEBQIA4ggAIa0FAQC7CAAhrgUBALsIACGvBQEAuwgAIbAFAQC7CAAhsQUBALsIACGyBQEAuwgAIbMFAQC7CAAhtAUBALsIACG1BQEAuwgAIbYFAQC7CAAhywYAAK4BACDMBgAArgEAIAkDAAChCAAgPQAAtwgAIIAFAAC2CAAwgQUAALABABCCBQAAtggAMIMFAgDiCAAhhAUCAOIIACHLBgAAsAEAIMwGAACwAQAgA8UGAACyAQAgxgYAALIBACDHBgAAsgEAIAPFBgAAawAgxgYAAGsAIMcGAABrACADxQYAALkBACDGBgAAuQEAIMcGAAC5AQAgCQMAAKEIACCABQAAnwgAMIEFAAC9AQAQggUAAJ8IADCDBQIA4ggAIYQFAgDiCAAhhQUBAKAIACHLBgAAvQEAIMwGAAC9AQAgGQMAAKEIACAEAACZCQAgBwAA4QkAIAgAAKQJACAYAACnCQAgGQAA-AkAIIAFAAD2CQAwgQUAAAcAEIIFAAD2CQAwgwUCAOIIACGEBQIA4ggAIZcFAQC7CAAhmAVAAOMIACGkBQIA4ggAIdMFAQCgCAAh5AUBAKAIACH-BQEAoAgAIZIGAgDiCAAhqgZAAOMIACGrBgEAoAgAIawGAQCgCAAhrQYgAMAIACGuBgEAuwgAIa8GIADACAAhsQYAAPcJsQYiBIYFAAAAsQYChwUAAACxBgiIBQAAALEGCJAFAACUCbEGIgPFBgAATwAgxgYAAE8AIMcGAABPACAiAwAAoQgAIAUAAKoJACAIAACkCQAgDAAApQkAIBgAAKcJACAcAAD6CQAgHQAA7AkAIB4AAPsJACAfAAD8CQAgJQAAtQkAIIAFAAD5CQAwgQUAAAMAEIIFAAD5CQAwgwUCAOIIACGEBQIA4ggAIZgFQADjCAAhowVAAOMIACGxBQEAuwgAIbQFAQC7CAAhtgUBALsIACHTBQAA9wmxBiKVBkAA5AgAIZsGAQC7CAAhqQYBAKAIACGyBgEAoAgAIbMGAQCgCAAhtAYBAKAIACG1BgEAuwgAIbYGAQC7CAAhtwYBALsIACG4BgEAuwgAIbkGAQC7CAAhugYBALsIACG7BgEAuwgAIQPFBgAAWAAgxgYAAFgAIMcGAABYACADxQYAAGcAIMYGAABnACDHBgAAZwAgDQMAAKEIACAEAACZCQAggAUAAJgJADCBBQAAawAQggUAAJgJADCDBQIA4ggAIYQFAgDiCAAhowVAAOMIACGkBQIA4ggAIaUFAQCgCAAhpgUgAMAIACHLBgAAawAgzAYAAGsAIAAAAAAAAdAGAQAAAAEF0AYCAAAAAdYGAgAAAAHXBgIAAAAB2AYCAAAAAdkGAgAAAAEFRAAAjhQAIEUAAJEUACDNBgAAjxQAIM4GAACQFAAg0wYAAAEAIANEAACOFAAgzQYAAI8UACDTBgAAAQAgFwUAALARACAHAACxEQAgCAAAsxEAIB0AALwRACAlAAC6EQAgJgAArxEAICcAALIRACAoAAC0EQAgKQAAtREAICoAALYRACArAAC3EQAgLAAAuBEAIC0AALkRACAuAAC7EQAgLwAAvREAIDAAAL4RACAxAAC_EQAgMgAAwBEAIDMAAMERACA0AADCEQAgNQAAwxEAIDYAAMQRACA3AADFEQAgAAAAAAAF0AYQAAAAAdYGEAAAAAHXBhAAAAAB2AYQAAAAAdkGEAAAAAEFRAAAhhQAIEUAAIwUACDNBgAAhxQAIM4GAACLFAAg0wYAADgAIAVEAACEFAAgRQAAiRQAIM0GAACFFAAgzgYAAIgUACDTBgAAHAAgA0QAAIYUACDNBgAAhxQAINMGAAA4ACADRAAAhBQAIM0GAACFFAAg0wYAABwAIAAAAAAAAAHQBgEAAAABAdAGQAAAAAEFRAAA_hMAIEUAAIIUACDNBgAA_xMAIM4GAACBFAAg0wYAAI0BACALRAAAmwoAMEUAAKAKADDNBgAAnAoAMM4GAACdCgAwzwYAAJ4KACDQBgAAnwoAMNEGAACfCgAw0gYAAJ8KADDTBgAAnwoAMNQGAAChCgAw1QYAAKIKADAEDAAAkAoAIIMFAgAAAAGSBQIAAAABkwUQAAAAAQIAAAAvACBEAACmCgAgAwAAAC8AIEQAAKYKACBFAAClCgAgAT0AAIAUADAKDAAA0QkAIBIAANAJACCABQAAzwkAMIEFAAAtABCCBQAAzwkAMIMFAgAAAAGRBQIA4ggAIZIFAgDiCAAhkwUQAMsJACHKBgAAzgkAIAIAAAAvACA9AAClCgAgAgAAAKMKACA9AACkCgAgB4AFAACiCgAwgQUAAKMKABCCBQAAogoAMIMFAgDiCAAhkQUCAOIIACGSBQIA4ggAIZMFEADLCQAhB4AFAACiCgAwgQUAAKMKABCCBQAAogoAMIMFAgDiCAAhkQUCAOIIACGSBQIA4ggAIZMFEADLCQAhA4MFAgCDCgAhkgUCAIMKACGTBRAAjAoAIQQMAACOCgAggwUCAIMKACGSBQIAgwoAIZMFEACMCgAhBAwAAJAKACCDBQIAAAABkgUCAAAAAZMFEAAAAAEDRAAA_hMAIM0GAAD_EwAg0wYAAI0BACAERAAAmwoAMM0GAACcCgAwzwYAAJ4KACDTBgAAnwoAMAAAAAAABUQAAPkTACBFAAD8EwAgzQYAAPoTACDOBgAA-xMAINMGAAABACADRAAA-RMAIM0GAAD6EwAg0wYAAAEAIAAAAAAAAdAGIAAAAAEFRAAA8RMAIEUAAPcTACDNBgAA8hMAIM4GAAD2EwAg0wYAAAUAIAVEAADvEwAgRQAA9BMAIM0GAADwEwAgzgYAAPMTACDTBgAAAQAgA0QAAPETACDNBgAA8hMAINMGAAAFACADRAAA7xMAIM0GAADwEwAg0wYAAAEAIAAAAAAABUQAAOoTACBFAADtEwAgzQYAAOsTACDOBgAA7BMAINMGAAABACADRAAA6hMAIM0GAADrEwAg0wYAAAEAIAAAAAAABUQAAOUTACBFAADoEwAgzQYAAOYTACDOBgAA5xMAINMGAAABACADRAAA5RMAIM0GAADmEwAg0wYAAAEAIAAAAAAABUQAAOATACBFAADjEwAgzQYAAOETACDOBgAA4hMAINMGAAABACADRAAA4BMAIM0GAADhEwAg0wYAAAEAIAAAAAAABUQAANsTACBFAADeEwAgzQYAANwTACDOBgAA3RMAINMGAAABACADRAAA2xMAIM0GAADcEwAg0wYAAAEAIAAAAAAABUQAANYTACBFAADZEwAgzQYAANcTACDOBgAA2BMAINMGAAABACADRAAA1hMAIM0GAADXEwAg0wYAAAEAIAAAAAAABUQAANETACBFAADUEwAgzQYAANITACDOBgAA0xMAINMGAAABACADRAAA0RMAIM0GAADSEwAg0wYAAAEAIAAAAAAABdAGBAAAAAHWBgQAAAAB1wYEAAAAAdgGBAAAAAHZBgQAAAABBUQAAMwTACBFAADPEwAgzQYAAM0TACDOBgAAzhMAINMGAAAFACADRAAAzBMAIM0GAADNEwAg0wYAAAUAIAAAAAAAAdAGAAAAzwUCAdAGAAAA0QUCAdAGAAAA0wUCBdAGAgAAAAHWBgIAAAAB1wYCAAAAAdgGAgAAAAHZBgIAAAABBUQAAMQTACBFAADKEwAgzQYAAMUTACDOBgAAyRMAINMGAAAFACAHRAAAwhMAIEUAAMcTACDNBgAAwxMAIM4GAADGEwAg0QYAAA0AINIGAAANACDTBgAAAQAgA0QAAMQTACDNBgAAxRMAINMGAAAFACADRAAAwhMAIM0GAADDEwAg0wYAAAEAIAAAAAAAAdAGAAEAAAEFRAAAvRMAIEUAAMATACDNBgAAvhMAIM4GAAC_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_wsAINAGAACADAAw0QYAAIAMADDSBgAAgAwAMNMGAACADAAw1AYAAIIMADDVBgAAgwwAMAtEAADzCwAwRQAA9wsAMM0GAAD0CwAwzgYAAPULADDPBgAA9gsAINAGAACfCgAw0QYAAJ8KADDSBgAAnwoAMNMGAACfCgAw1AYAAPgLADDVBgAAogoAMAQSAACPCgAggwUCAAAAAZEFAgAAAAGTBRAAAAABAgAAAC8AIEQAAPsLACADAAAALwAgRAAA-wsAIEUAAPoLACABPQAA-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_wsAINMGAACADAAwBEQAAPMLADDNBgAA9AsAMM8GAAD2CwAg0wYAAJ8KADAAAAAAAAVEAADmEgAgRQAA6RIAIM0GAADnEgAgzgYAAOgSACDTBgAAWgAgA0QAAOYSACDNBgAA5xIAINMGAABaACAAAAAAAAHQBgAAAIAGAgVEAADgEgAgRQAA5BIAIM0GAADhEgAgzgYAAOMSACDTBgAABQAgC0QAALgMADBFAAC9DAAwzQYAALkMADDOBgAAugwAMM8GAAC7DAAg0AYAALwMADDRBgAAvAwAMNIGAAC8DAAw0wYAALwMADDUBgAAvgwAMNUGAAC_DAAwBIMFAgAAAAHIBQEAAAABzQVAAAAAAfwFAAEAAAECAAAAXgAgRAAAwwwAIAMAAABeACBEAADDDAAgRQAAwgwAIAE9AADiEgAwCRoAAL4JACCABQAAvQkAMIEFAABcABCCBQAAvQkAMIMFAgAAAAHIBQEAoAgAIc0FQADjCAAh_AUAAa0JACH9BQIA4ggAIQIAAABeACA9AADCDAAgAgAAAMAMACA9AADBDAAgCIAFAAC_DAAwgQUAAMAMABCCBQAAvwwAMIMFAgDiCAAhyAUBAKAIACHNBUAA4wgAIfwFAAGtCQAh_QUCAOIIACEIgAUAAL8MADCBBQAAwAwAEIIFAAC_DAAwgwUCAOIIACHIBQEAoAgAIc0FQADjCAAh_AUAAa0JACH9BQIA4ggAIQSDBQIAgwoAIcgFAQCCCgAhzQVAAJgKACH8BQAB_goAIQSDBQIAgwoAIcgFAQCCCgAhzQVAAJgKACH8BQAB_goAIQSDBQIAAAAByAUBAAAAAc0FQAAAAAH8BQABAAABA0QAAOASACDNBgAA4RIAINMGAAAFACAERAAAuAwAMM0GAAC5DAAwzwYAALsMACDTBgAAvAwAMAAAAAAABUQAANsSACBFAADeEgAgzQYAANwSACDOBgAA3RIAINMGAAABACADRAAA2xIAIM0GAADcEgAg0wYAAAEAIAAAAAAABUQAANYSACBFAADZEgAgzQYAANcSACDOBgAA2BIAINMGAAABACADRAAA1hIAIM0GAADXEgAg0wYAAAEAIAAAAAAABUQAANESACBFAADUEgAgzQYAANISACDOBgAA0xIAINMGAAASACADRAAA0RIAIM0GAADSEgAg0wYAABIAIAAAAAAAB0QAAMwSACBFAADPEgAgzQYAAM0SACDOBgAAzhIAINEGAAAaACDSBgAAGgAg0wYAABwAIANEAADMEgAgzQYAAM0SACDTBgAAHAAgAAAAAAAB0AYAAACYBgIB0AYAAACdBgIFRAAAuRIAIEUAAMoSACDNBgAAuhIAIM4GAADJEgAg0wYAAAUAIAdEAAC3EgAgRQAAxxIAIM0GAAC4EgAgzgYAAMYSACDRBgAABwAg0gYAAAcAINMGAAAJACAHRAAAtRIAIEUAAMQSACDNBgAAthIAIM4GAADDEgAg0QYAAA0AINIGAAANACDTBgAAAQAgB0QAALMSACBFAADBEgAgzQYAALQSACDOBgAAwBIAINEGAAALACDSBgAACwAg0wYAAIoBACAHRAAAsRIAIEUAAL4SACDNBgAAshIAIM4GAAC9EgAg0QYAABcAINIGAAAXACDTBgAAjQEAIAtEAACCDQAwRQAAhg0AMM0GAACDDQAwzgYAAIQNADDPBgAAhQ0AINAGAACADAAw0QYAAIAMADDSBgAAgAwAMNMGAACADAAw1AYAAIcNADDVBgAAgwwAMAtEAAD2DAAwRQAA-wwAMM0GAAD3DAAwzgYAAPgMADDPBgAA-QwAINAGAAD6DAAw0QYAAPoMADDSBgAA-gwAMNMGAAD6DAAw1AYAAPwMADDVBgAA_QwAMAdEAADxDAAgRQAA9AwAIM0GAADyDAAgzgYAAPMMACDRBgAAGgAg0gYAABoAINMGAAAcACAXBAAAowwAIAoAAKQMACALAAClDAAgDQAApgwAIBAAAKcMACATAACoDAAggwUCAAAAAYQFAgAAAAGUBQIAAAABlwUBAAAAAZgFQAAAAAGjBUAAAAABpAUCAAAAAdMFAAAA-wUC8gUCAAAAAfMFEAAAAAH0BRAAAAAB9QUQAAAAAfYFEAAAAAH3BRAAAAAB-AUQAAAAAfkFEAAAAAH7BQEAAAABAgAAABwAIEQAAPEMACADAAAAGgAgRAAA8QwAIEUAAPUMACAZAAAAGgAgBAAA7QsAIAoAAO4LACALAADvCwAgDQAA8AsAIBAAAPELACATAADyCwAgPQAA9QwAIIMFAgCDCgAhhAUCAIMKACGUBQIA9AoAIZcFAQCXCgAhmAVAAJgKACGjBUAAmAoAIaQFAgCDCgAh0wUAAOsL-wUi8gUCAPQKACHzBRAAjAoAIfQFEACMCgAh9QUQAIwKACH2BRAAjAoAIfcFEADqCwAh-AUQAIwKACH5BRAAjAoAIfsFAQCXCgAhFwQAAO0LACAKAADuCwAgCwAA7wsAIA0AAPALACAQAADxCwAgEwAA8gsAIIMFAgCDCgAhhAUCAIMKACGUBQIA9AoAIZcFAQCXCgAhmAVAAJgKACGjBUAAmAoAIaQFAgCDCgAh0wUAAOsL-wUi8gUCAPQKACHzBRAAjAoAIfQFEACMCgAh9QUQAIwKACH2BRAAjAoAIfcFEADqCwAh-AUQAIwKACH5BRAAjAoAIfsFAQCXCgAhBIMFAgAAAAHIBQEAAAABygUBAAAAAcwFAQAAAAECAAAARgAgRAAAgQ0AIAMAAABGACBEAACBDQAgRQAAgA0AIAE9AAC8EgAwCQkAAMUJACCABQAAxAkAMIEFAABEABCCBQAAxAkAMIMFAgAAAAHIBQEAoAgAIcoFAQCgCAAhzAUBALsIACHxBQIA4ggAIQIAAABGACA9AACADQAgAgAAAP4MACA9AAD_DAAgCIAFAAD9DAAwgQUAAP4MABCCBQAA_QwAMIMFAgDiCAAhyAUBAKAIACHKBQEAoAgAIcwFAQC7CAAh8QUCAOIIACEIgAUAAP0MADCBBQAA_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_DQAgAT0AAJ0SADALCwAAzAkAIBEAAM0JACCABQAAygkAMIEFAAA2ABCCBQAAygkAMIMFAgAAAAGUBQIA4ggAIZUFEADLCQAhlgUQAMsJACGXBQEAuwgAIZgFQADjCAAhAgAAADgAID0AAL8NACACAAAAvQ0AID0AAL4NACAJgAUAALwNADCBBQAAvQ0AEIIFAAC8DQAwgwUCAOIIACGUBQIA4ggAIZUFEADLCQAhlgUQAMsJACGXBQEAuwgAIZgFQADjCAAhCYAFAAC8DQAwgQUAAL0NABCCBQAAvA0AMIMFAgDiCAAhlAUCAOIIACGVBRAAywkAIZYFEADLCQAhlwUBALsIACGYBUAA4wgAIQWDBQIAgwoAIZUFEACMCgAhlgUQAIwKACGXBQEAlwoAIZgFQACYCgAhBhEAAJoKACCDBQIAgwoAIZUFEACMCgAhlgUQAIwKACGXBQEAlwoAIZgFQACYCgAhBhEAAKgKACCDBQIAAAABlQUQAAAAAZYFEAAAAAGXBQEAAAABmAVAAAAAARcEAACjDAAgCQAAogwAIAoAAKQMACANAACmDAAgEAAApwwAIBMAAKgMACCDBQIAAAABhAUCAAAAAZcFAQAAAAGYBUAAAAABowVAAAAAAaQFAgAAAAHTBQAAAPsFAvEFAgAAAAHyBQIAAAAB8wUQAAAAAfQFEAAAAAH1BRAAAAAB9gUQAAAAAfcFEAAAAAH4BRAAAAAB-QUQAAAAAfsFAQAAAAECAAAAHAAgRAAAzA0AIAMAAAAcACBEAADMDQAgRQAAyw0AIAE9AACcEgAwHAQAAJkJACAJAADUCQAgCgAAqQkAIAsAAMkJACANAADWCQAgEAAA3AkAIBMAAM0JACCABQAA2gkAMIEFAAAaABCCBQAA2gkAMIMFAgAAAAGEBQIA4ggAIZQFAgDlCAAhlwUBALsIACGYBUAA4wgAIaMFQADjCAAhpAUCAOIIACHTBQAA2wn7BSLxBQIAAAAB8gUCAOUIACHzBRAAywkAIfQFEADLCQAh9QUQAMsJACH2BRAAywkAIfcFEADHCQAh-AUQAMsJACH5BRAAywkAIfsFAQC7CAAhAgAAABwAID0AAMsNACACAAAAyQ0AID0AAMoNACAVgAUAAMgNADCBBQAAyQ0AEIIFAADIDQAwgwUCAOIIACGEBQIA4ggAIZQFAgDlCAAhlwUBALsIACGYBUAA4wgAIaMFQADjCAAhpAUCAOIIACHTBQAA2wn7BSLxBQIA5QgAIfIFAgDlCAAh8wUQAMsJACH0BRAAywkAIfUFEADLCQAh9gUQAMsJACH3BRAAxwkAIfgFEADLCQAh-QUQAMsJACH7BQEAuwgAIRWABQAAyA0AMIEFAADJDQAQggUAAMgNADCDBQIA4ggAIYQFAgDiCAAhlAUCAOUIACGXBQEAuwgAIZgFQADjCAAhowVAAOMIACGkBQIA4ggAIdMFAADbCfsFIvEFAgDlCAAh8gUCAOUIACHzBRAAywkAIfQFEADLCQAh9QUQAMsJACH2BRAAywkAIfcFEADHCQAh-AUQAMsJACH5BRAAywkAIfsFAQC7CAAhEYMFAgCDCgAhhAUCAIMKACGXBQEAlwoAIZgFQACYCgAhowVAAJgKACGkBQIAgwoAIdMFAADrC_sFIvEFAgD0CgAh8gUCAPQKACHzBRAAjAoAIfQFEACMCgAh9QUQAIwKACH2BRAAjAoAIfcFEADqCwAh-AUQAIwKACH5BRAAjAoAIfsFAQCXCgAhFwQAAO0LACAJAADsCwAgCgAA7gsAIA0AAPALACAQAADxCwAgEwAA8gsAIIMFAgCDCgAhhAUCAIMKACGXBQEAlwoAIZgFQACYCgAhowVAAJgKACGkBQIAgwoAIdMFAADrC_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-g0AIAIAAAD3DQAgPQAA-A0AIBOABQAA9g0AMIEFAAD3DQAQggUAAPYNADCDBQIA4ggAIYQFAgDiCAAhlwUBALsIACGYBUAA4wgAIaQFAgDiCAAh0wUBAKAIACHkBQEAoAgAIf4FAQCgCAAhkgYCAOIIACGqBkAA4wgAIasGAQCgCAAhrAYBAKAIACGtBiAAwAgAIa4GAQC7CAAhrwYgAMAIACGxBgAA9wmxBiITgAUAAPYNADCBBQAA9w0AEIIFAAD2DQAwgwUCAOIIACGEBQIA4ggAIZcFAQC7CAAhmAVAAOMIACGkBQIA4ggAIdMFAQCgCAAh5AUBAKAIACH-BQEAoAgAIZIGAgDiCAAhqgZAAOMIACGrBgEAoAgAIawGAQCgCAAhrQYgAMAIACGuBgEAuwgAIa8GIADACAAhsQYAAPcJsQYiD4MFAgCDCgAhhAUCAIMKACGXBQEAlwoAIZgFQACYCgAhpAUCAIMKACHTBQEAggoAIeQFAQCCCgAh_gUBAIIKACGqBkAAmAoAIasGAQCCCgAhrAYBAIIKACGtBiAAtQoAIa4GAQCXCgAhrwYgALUKACGxBgAA-Q2xBiIB0AYAAACxBgIUAwAA_A0AIAQAAPsNACAIAAD-DQAgGAAA_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-xEAIEUAAP4RACDNBgAA_BEAIM4GAAD9EQAg0QYAAAsAINIGAAALACDTBgAAigEAIANEAAD7EQAgzQYAAPwRACDTBgAAigEAIAAAAAAABUQAAO4RACBFAAD5EQAgzQYAAO8RACDOBgAA-BEAINMGAAABACALRAAAkQ8AMEUAAJUPADDNBgAAkg8AMM4GAACTDwAwzwYAAJQPACDQBgAA8w0AMNEGAADzDQAw0gYAAPMNADDTBgAA8w0AMNQGAACWDwAw1QYAAPYNADALRAAAiA8AMEUAAIwPADDNBgAAiQ8AMM4GAACKDwAwzwYAAIsPACDQBgAArQ0AMNEGAACtDQAw0gYAAK0NADDTBgAArQ0AMNQGAACNDwAw1QYAALANADALRAAA_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_sFIvEFAgD0CgAh8gUCAPQKACHzBRAAjAoAIfQFEACMCgAh9QUQAIwKACH2BRAAjAoAIfcFEADqCwAh-AUQAIwKACH5BRAAjAoAIfsFAQCXCgAhFwkAAOwLACAKAADuCwAgCwAA7wsAIA0AAPALACAQAADxCwAgEwAA8gsAIIMFAgCDCgAhhAUCAIMKACGUBQIA9AoAIZcFAQCXCgAhmAVAAJgKACGjBUAAmAoAIdMFAADrC_sFIvEFAgD0CgAh8gUCAPQKACHzBRAAjAoAIfQFEACMCgAh9QUQAIwKACH2BRAAjAoAIfcFEADqCwAh-AUQAIwKACH5BRAAjAoAIfsFAQCXCgAhFwkAAKIMACAKAACkDAAgCwAApQwAIA0AAKYMACAQAACnDAAgEwAAqAwAIIMFAgAAAAGEBQIAAAABlAUCAAAAAZcFAQAAAAGYBUAAAAABowVAAAAAAdMFAAAA-wUC8QUCAAAAAfIFAgAAAAHzBRAAAAAB9AUQAAAAAfUFEAAAAAH2BRAAAAAB9wUQAAAAAfgFEAAAAAH5BRAAAAAB-wUBAAAAAQUbAADFDAAggwUCAAAAAZgFQAAAAAH-BQEAAAABgAYAAACABgICAAAAWgAgRAAA_g4AIAMAAABaACBEAAD-DgAgRQAA_Q4AIAE9AADzEQAwCgQAAJkJACAbAADBCQAggAUAAL8JADCBBQAAWAAQggUAAL8JADCDBQIAAAABmAVAAOMIACGkBQIA4ggAIf4FAQCgCAAhgAYAAMAJgAYiAgAAAFoAID0AAP0OACACAAAA-w4AID0AAPwOACAIgAUAAPoOADCBBQAA-w4AEIIFAAD6DgAwgwUCAOIIACGYBUAA4wgAIaQFAgDiCAAh_gUBAKAIACGABgAAwAmABiIIgAUAAPoOADCBBQAA-w4AEIIFAAD6DgAwgwUCAOIIACGYBUAA4wgAIaQFAgDiCAAh_gUBAKAIACGABgAAwAmABiIEgwUCAIMKACGYBUAAmAoAIf4FAQCCCgAhgAYAALUMgAYiBRsAALcMACCDBQIAgwoAIZgFQACYCgAh_gUBAIIKACGABgAAtQyABiIFGwAAxQwAIIMFAgAAAAGYBUAAAAAB_gUBAAAAAYAGAAAAgAYCGQMAAI0NACAGAACMDQAgBwAAjg0AIAsAAI8NACAMAACSDQAgEAAAkA0AIBcAAJENACCDBQIAAAABhAUCAAAAAZQFAgAAAAGYBUAAAAABowVAAAAAAdMFAAAAnQYCkQYCAAAAAZIGAgAAAAGTBgEAAAABlAYBAAAAAZUGQAAAAAGWBgEAAAABmAYAAACYBgKZBoAAAAABmgZAAAAAAZsGAQAAAAGdBgEAAAABngYBAAAAAQIAAAASACBEAACHDwAgAwAAABIAIEQAAIcPACBFAACGDwAgAT0AAPIRADACAAAAEgAgPQAAhg8AIAIAAADVDQAgPQAAhQ8AIBKDBQIAgwoAIYQFAgCDCgAhlAUCAPQKACGYBUAAmAoAIaMFQACYCgAh0wUAAOgMnQYikQYCAPQKACGSBgIAgwoAIZMGAQCCCgAhlAYBAIIKACGVBkAAmAoAIZYGAQCCCgAhmAYAAOcMmAYimQaAAAAAAZoGQACYCgAhmwYBAIIKACGdBgEAlwoAIZ4GAQCXCgAhGQMAAOsMACAGAADqDAAgBwAA7AwAIAsAAO0MACAMAADwDAAgEAAA7gwAIBcAAO8MACCDBQIAgwoAIYQFAgCDCgAhlAUCAPQKACGYBUAAmAoAIaMFQACYCgAh0wUAAOgMnQYikQYCAPQKACGSBgIAgwoAIZMGAQCCCgAhlAYBAIIKACGVBkAAmAoAIZYGAQCCCgAhmAYAAOcMmAYimQaAAAAAAZoGQACYCgAhmwYBAIIKACGdBgEAlwoAIZ4GAQCXCgAhGQMAAI0NACAGAACMDQAgBwAAjg0AIAsAAI8NACAMAACSDQAgEAAAkA0AIBcAAJENACCDBQIAAAABhAUCAAAAAZQFAgAAAAGYBUAAAAABowVAAAAAAdMFAAAAnQYCkQYCAAAAAZIGAgAAAAGTBgEAAAABlAYBAAAAAZUGQAAAAAGWBgEAAAABmAYAAACYBgKZBoAAAAABmgZAAAAAAZsGAQAAAAGdBgEAAAABngYBAAAAAQ8GAACcDQAgCwAAng0AIIMFAgAAAAGUBQIAAAABmAVAAAAAAYgGAQAAAAGMBgEAAAABjQYBAAAAAZEGAgAAAAGfBgEAAAABoAYQAAAAAaEGAQAAAAGiBgEAAAABpAYAAACkBgKlBgEAAAABAgAAADwAIEQAAJAPACADAAAAPAAgRAAAkA8AIEUAAI8PACABPQAA8REAMAIAAAA8ACA9AACPDwAgAgAAALENACA9AACODwAgDYMFAgCDCgAhlAUCAPQKACGYBUAAmAoAIYgGAQCCCgAhjAYBAJcKACGNBgEAlwoAIZEGAgCDCgAhnwYBAJcKACGgBhAA6gsAIaEGAQCXCgAhogYBAJcKACGkBgAAmA2kBiKlBgEAlwoAIQ8GAACZDQAgCwAAmw0AIIMFAgCDCgAhlAUCAPQKACGYBUAAmAoAIYgGAQCCCgAhjAYBAJcKACGNBgEAlwoAIZEGAgCDCgAhnwYBAJcKACGgBhAA6gsAIaEGAQCXCgAhogYBAJcKACGkBgAAmA2kBiKlBgEAlwoAIQ8GAACcDQAgCwAAng0AIIMFAgAAAAGUBQIAAAABmAVAAAAAAYgGAQAAAAGMBgEAAAABjQYBAAAAAZEGAgAAAAGfBgEAAAABoAYQAAAAAaEGAQAAAAGiBgEAAAABpAYAAACkBgKlBgEAAAABFAMAAKAOACAHAAC0DgAgCAAAog4AIBgAAKEOACAZAACjDgAggwUCAAAAAYQFAgAAAAGXBQEAAAABmAVAAAAAAdMFAQAAAAHkBQEAAAAB_gUBAAAAAZIGAgAAAAGqBkAAAAABqwYBAAAAAawGAQAAAAGtBiAAAAABrgYBAAAAAa8GIAAAAAGxBgAAALEGAgIAAAAJACBEAACZDwAgAwAAAAkAIEQAAJkPACBFAACYDwAgAT0AAPARADACAAAACQAgPQAAmA8AIAIAAAD3DQAgPQAAlw8AIA-DBQIAgwoAIYQFAgCDCgAhlwUBAJcKACGYBUAAmAoAIdMFAQCCCgAh5AUBAIIKACH-BQEAggoAIZIGAgCDCgAhqgZAAJgKACGrBgEAggoAIawGAQCCCgAhrQYgALUKACGuBgEAlwoAIa8GIAC1CgAhsQYAAPkNsQYiFAMAAPwNACAHAACzDgAgCAAA_g0AIBgAAP0NACAZAAD_DQAggwUCAIMKACGEBQIAgwoAIZcFAQCXCgAhmAVAAJgKACHTBQEAggoAIeQFAQCCCgAh_gUBAIIKACGSBgIAgwoAIaoGQACYCgAhqwYBAIIKACGsBgEAggoAIa0GIAC1CgAhrgYBAJcKACGvBiAAtQoAIbEGAAD5DbEGIhQDAACgDgAgBwAAtA4AIAgAAKIOACAYAAChDgAgGQAAow4AIIMFAgAAAAGEBQIAAAABlwUBAAAAAZgFQAAAAAHTBQEAAAAB5AUBAAAAAf4FAQAAAAGSBgIAAAABqgZAAAAAAasGAQAAAAGsBgEAAAABrQYgAAAAAa4GAQAAAAGvBiAAAAABsQYAAACxBgIDRAAA7hEAIM0GAADvEQAg0wYAAAEAIAREAACRDwAwzQYAAJIPADDPBgAAlA8AINMGAADzDQAwBEQAAIgPADDNBgAAiQ8AMM8GAACLDwAg0wYAAK0NADAERAAA_w4AMM0GAACADwAwzwYAAIIPACDTBgAA0Q0AMAREAADzDgAwzQYAAPQOADDPBgAA9g4AINMGAAD3DgAwBEQAAOoOADDNBgAA6w4AMM8GAADtDgAg0wYAAMUNADAERAAA3g4AMM0GAADfDgAwzwYAAOEOACDTBgAA4g4AMAREAADSDgAwzQYAANMOADDPBgAA1Q4AINMGAADWDgAwA0QAAM0OACDNBgAAzg4AINMGAAC3AQAgBEQAAMQOADDNBgAAxQ4AMM8GAADHDgAg0wYAALILADAAAAAAAAtEAACMEQAwRQAAkREAMM0GAACNEQAwzgYAAI4RADDPBgAAjxEAINAGAACQEQAw0QYAAJARADDSBgAAkBEAMNMGAACQEQAw1AYAAJIRADDVBgAAkxEAMAtEAACDEQAwRQAAhxEAMM0GAACEEQAwzgYAAIURADDPBgAAhhEAINAGAADzDQAw0QYAAPMNADDSBgAA8w0AMNMGAADzDQAw1AYAAIgRADDVBgAA9g0AMAtEAAD3EAAwRQAA_BAAMM0GAAD4EAAwzgYAAPkQADDPBgAA-hAAINAGAAD7EAAw0QYAAPsQADDSBgAA-xAAMNMGAAD7EAAw1AYAAP0QADDVBgAA_hAAMAtEAADrEAAwRQAA8BAAMM0GAADsEAAwzgYAAO0QADDPBgAA7hAAINAGAADvEAAw0QYAAO8QADDSBgAA7xAAMNMGAADvEAAw1AYAAPEQADDVBgAA8hAAMAtEAADiEAAwRQAA5hAAMM0GAADjEAAwzgYAAOQQADDPBgAA5RAAINAGAADRDQAw0QYAANENADDSBgAA0Q0AMNMGAADRDQAw1AYAAOcQADDVBgAA1A0AMAtEAADWEAAwRQAA2xAAMM0GAADXEAAwzgYAANgQADDPBgAA2RAAINAGAADaEAAw0QYAANoQADDSBgAA2hAAMNMGAADaEAAw1AYAANwQADDVBgAA3RAAMAtEAADKEAAwRQAAzxAAMM0GAADLEAAwzgYAAMwQADDPBgAAzRAAINAGAADOEAAw0QYAAM4QADDSBgAAzhAAMNMGAADOEAAw1AYAANAQADDVBgAA0RAAMAtEAADBEAAwRQAAxRAAMM0GAADCEAAwzgYAAMMQADDPBgAAxBAAINAGAADFDQAw0QYAAMUNADDSBgAAxQ0AMNMGAADFDQAw1AYAAMYQADDVBgAAyA0AMAtEAAC1EAAwRQAAuhAAMM0GAAC2EAAwzgYAALcQADDPBgAAuBAAINAGAAC5EAAw0QYAALkQADDSBgAAuRAAMNMGAAC5EAAw1AYAALsQADDVBgAAvBAAMAtEAACpEAAwRQAArhAAMM0GAACqEAAwzgYAAKsQADDPBgAArBAAINAGAACtEAAw0QYAAK0QADDSBgAArRAAMNMGAACtEAAw1AYAAK8QADDVBgAAsBAAMAtEAACdEAAwRQAAohAAMM0GAACeEAAwzgYAAJ8QADDPBgAAoBAAINAGAAChEAAw0QYAAKEQADDSBgAAoRAAMNMGAAChEAAw1AYAAKMQADDVBgAApBAAMAtEAACUEAAwRQAAmBAAMM0GAACVEAAwzgYAAJYQADDPBgAAlxAAINAGAACyCwAw0QYAALILADDSBgAAsgsAMNMGAACyCwAw1AYAAJkQADDVBgAAtQsAMAtEAACLEAAwRQAAjxAAMM0GAACMEAAwzgYAAI0QADDPBgAAjhAAINAGAACmCwAw0QYAAKYLADDSBgAApgsAMNMGAACmCwAw1AYAAJAQADDVBgAAqQsAMAtEAACCEAAwRQAAhhAAMM0GAACDEAAwzgYAAIQQADDPBgAAhRAAINAGAADiDgAw0QYAAOIOADDSBgAA4g4AMNMGAADiDgAw1AYAAIcQADDVBgAA5Q4AMAdEAAD9DwAgRQAAgBAAIM0GAAD-DwAgzgYAAP8PACDRBgAAqAEAINIGAACoAQAg0wYAAJkGACAHRAAA-A8AIEUAAPsPACDNBgAA-Q8AIM4GAAD6DwAg0QYAAKoBACDSBgAAqgEAINMGAACxBgAgB0QAAPMPACBFAAD2DwAgzQYAAPQPACDOBgAA9Q8AINEGAACsAQAg0gYAAKwBACDTBgAAyQYAIAdEAADuDwAgRQAA8Q8AIM0GAADvDwAgzgYAAPAPACDRBgAArgEAINIGAACuAQAg0wYAAOEGACAHRAAA6Q8AIEUAAOwPACDNBgAA6g8AIM4GAADrDwAg0QYAALABACDSBgAAsAEAINMGAACPBwAgC0QAAN0PADBFAADiDwAwzQYAAN4PADDOBgAA3w8AMM8GAADgDwAg0AYAAOEPADDRBgAA4Q8AMNIGAADhDwAw0wYAAOEPADDUBgAA4w8AMNUGAADkDwAwC0QAANEPADBFAADWDwAwzQYAANIPADDOBgAA0w8AMM8GAADUDwAg0AYAANUPADDRBgAA1Q8AMNIGAADVDwAw0wYAANUPADDUBgAA1w8AMNUGAADYDwAwC0QAAMUPADBFAADKDwAwzQYAAMYPADDOBgAAxw8AMM8GAADIDwAg0AYAAMkPADDRBgAAyQ8AMNIGAADJDwAw0wYAAMkPADDUBgAAyw8AMNUGAADMDwAwB0QAAMAPACBFAADDDwAgzQYAAMEPACDOBgAAwg8AINEGAAC9AQAg0gYAAL0BACDTBgAA_wcAIAKDBQIAAAABhQUBAAAAAQIAAAD_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_A8AIBAAAACqAQAgPQAA_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_EAAgAT0AAOURADAHAwAAoQgAIIAFAACeCQAwgQUAAJkBABCCBQAAngkAMIMFAgAAAAGEBQIA4ggAIZgFQADjCAAhAgAAAJsBACA9AAC_EAAgAgAAAL0QACA9AAC-EAAgBoAFAAC8EAAwgQUAAL0QABCCBQAAvBAAMIMFAgDiCAAhhAUCAOIIACGYBUAA4wgAIQaABQAAvBAAMIEFAAC9EAAQggUAALwQADCDBQIA4ggAIYQFAgDiCAAhmAVAAOMIACECgwUCAIMKACGYBUAAmAoAIQKDBQIAgwoAIZgFQACYCgAhAoMFAgAAAAGYBUAAAAABFwQAAKMMACAJAACiDAAgCwAApQwAIA0AAKYMACAQAACnDAAgEwAAqAwAIIMFAgAAAAGEBQIAAAABlAUCAAAAAZcFAQAAAAGYBUAAAAABowVAAAAAAaQFAgAAAAHTBQAAAPsFAvEFAgAAAAHzBRAAAAAB9AUQAAAAAfUFEAAAAAH2BRAAAAAB9wUQAAAAAfgFEAAAAAH5BRAAAAAB-wUBAAAAAQIAAAAcACBEAADJEAAgAwAAABwAIEQAAMkQACBFAADIEAAgAT0AAOQRADACAAAAHAAgPQAAyBAAIAIAAADJDQAgPQAAxxAAIBGDBQIAgwoAIYQFAgCDCgAhlAUCAPQKACGXBQEAlwoAIZgFQACYCgAhowVAAJgKACGkBQIAgwoAIdMFAADrC_sFIvEFAgD0CgAh8wUQAIwKACH0BRAAjAoAIfUFEACMCgAh9gUQAIwKACH3BRAA6gsAIfgFEACMCgAh-QUQAIwKACH7BQEAlwoAIRcEAADtCwAgCQAA7AsAIAsAAO8LACANAADwCwAgEAAA8QsAIBMAAPILACCDBQIAgwoAIYQFAgCDCgAhlAUCAPQKACGXBQEAlwoAIZgFQACYCgAhowVAAJgKACGkBQIAgwoAIdMFAADrC_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_xAAID0AAIARACAKgAUAAP4QADCBBQAA_xAAEIIFAAD-EAAwgwUCAOIIACGEBQIA4ggAIZgFQADjCAAhmQUBAKAIACGxBQEAuwgAIagGAQCgCAAhqQYBALsIACEKgAUAAP4QADCBBQAA_xAAEIIFAAD-EAAwgwUCAOIIACGEBQIA4ggAIZgFQADjCAAhmQUBAKAIACGxBQEAuwgAIagGAQCgCAAhqQYBALsIACEGgwUCAIMKACGYBUAAmAoAIZkFAQCCCgAhsQUBAJcKACGoBgEAggoAIakGAQCXCgAhCAUAAOQNACAIAADlDQAggwUCAIMKACGYBUAAmAoAIZkFAQCCCgAhsQUBAJcKACGoBgEAggoAIakGAQCXCgAhCAUAAKUOACAIAACmDgAggwUCAAAAAZgFQAAAAAGZBQEAAAABsQUBAAAAAagGAQAAAAGpBgEAAAABFAQAAJ8OACAHAAC0DgAgCAAAog4AIBgAAKEOACAZAACjDgAggwUCAAAAAZcFAQAAAAGYBUAAAAABpAUCAAAAAdMFAQAAAAHkBQEAAAAB_gUBAAAAAZIGAgAAAAGqBkAAAAABqwYBAAAAAawGAQAAAAGtBiAAAAABrgYBAAAAAa8GIAAAAAGxBgAAALEGAgIAAAAJACBEAACLEQAgAwAAAAkAIEQAAIsRACBFAACKEQAgAT0AAN4RADACAAAACQAgPQAAihEAIAIAAAD3DQAgPQAAiREAIA-DBQIAgwoAIZcFAQCXCgAhmAVAAJgKACGkBQIAgwoAIdMFAQCCCgAh5AUBAIIKACH-BQEAggoAIZIGAgCDCgAhqgZAAJgKACGrBgEAggoAIawGAQCCCgAhrQYgALUKACGuBgEAlwoAIa8GIAC1CgAhsQYAAPkNsQYiFAQAAPsNACAHAACzDgAgCAAA_g0AIBgAAP0NACAZAAD_DQAggwUCAIMKACGXBQEAlwoAIZgFQACYCgAhpAUCAIMKACHTBQEAggoAIeQFAQCCCgAh_gUBAIIKACGSBgIAgwoAIaoGQACYCgAhqwYBAIIKACGsBgEAggoAIa0GIAC1CgAhrgYBAJcKACGvBiAAtQoAIbEGAAD5DbEGIhQEAACfDgAgBwAAtA4AIAgAAKIOACAYAAChDgAgGQAAow4AIIMFAgAAAAGXBQEAAAABmAVAAAAAAaQFAgAAAAHTBQEAAAAB5AUBAAAAAf4FAQAAAAGSBgIAAAABqgZAAAAAAasGAQAAAAGsBgEAAAABrQYgAAAAAa4GAQAAAAGvBiAAAAABsQYAAACxBgIdBQAAmw8AIAgAAJ0PACAMAACfDwAgGAAAnA8AIBwAAJ4PACAdAACgDwAgHgAAoQ8AIB8AAKIPACAlAACjDwAggwUCAAAAAZgFQAAAAAGjBUAAAAABsQUBAAAAAbQFAQAAAAG2BQEAAAAB0wUAAACxBgKVBkAAAAABmwYBAAAAAakGAQAAAAGyBgEAAAABswYBAAAAAbQGAQAAAAG1BgEAAAABtgYBAAAAAbcGAQAAAAG4BgEAAAABuQYBAAAAAboGAQAAAAG7BgEAAAABAgAAAAUAIEQAAJcRACADAAAABQAgRAAAlxEAIEUAAJYRACABPQAA3REAMCIDAAChCAAgBQAAqgkAIAgAAKQJACAMAAClCQAgGAAApwkAIBwAAPoJACAdAADsCQAgHgAA-wkAIB8AAPwJACAlAAC1CQAggAUAAPkJADCBBQAAAwAQggUAAPkJADCDBQIAAAABhAUCAOIIACGYBUAA4wgAIaMFQADjCAAhsQUBALsIACG0BQEAuwgAIbYFAQC7CAAh0wUAAPcJsQYilQZAAOQIACGbBgEAuwgAIakGAQCgCAAhsgYBAKAIACGzBgEAoAgAIbQGAQCgCAAhtQYBALsIACG2BgEAuwgAIbcGAQC7CAAhuAYBALsIACG5BgEAuwgAIboGAQC7CAAhuwYBALsIACECAAAABQAgPQAAlhEAIAIAAACUEQAgPQAAlREAIBiABQAAkxEAMIEFAACUEQAQggUAAJMRADCDBQIA4ggAIYQFAgDiCAAhmAVAAOMIACGjBUAA4wgAIbEFAQC7CAAhtAUBALsIACG2BQEAuwgAIdMFAAD3CbEGIpUGQADkCAAhmwYBALsIACGpBgEAoAgAIbIGAQCgCAAhswYBAKAIACG0BgEAoAgAIbUGAQC7CAAhtgYBALsIACG3BgEAuwgAIbgGAQC7CAAhuQYBALsIACG6BgEAuwgAIbsGAQC7CAAhGIAFAACTEQAwgQUAAJQRABCCBQAAkxEAMIMFAgDiCAAhhAUCAOIIACGYBUAA4wgAIaMFQADjCAAhsQUBALsIACG0BQEAuwgAIbYFAQC7CAAh0wUAAPcJsQYilQZAAOQIACGbBgEAuwgAIakGAQCgCAAhsgYBAKAIACGzBgEAoAgAIbQGAQCgCAAhtQYBALsIACG2BgEAuwgAIbcGAQC7CAAhuAYBALsIACG5BgEAuwgAIboGAQC7CAAhuwYBALsIACEUgwUCAIMKACGYBUAAmAoAIaMFQACYCgAhsQUBAJcKACG0BQEAlwoAIbYFAQCXCgAh0wUAAPkNsQYilQZAAMQLACGbBgEAlwoAIakGAQCCCgAhsgYBAIIKACGzBgEAggoAIbQGAQCCCgAhtQYBAJcKACG2BgEAlwoAIbcGAQCXCgAhuAYBAJcKACG5BgEAlwoAIboGAQCXCgAhuwYBAJcKACEdBQAAuw4AIAgAAL0OACAMAAC_DgAgGAAAvA4AIBwAAL4OACAdAADADgAgHgAAwQ4AIB8AAMIOACAlAADDDgAggwUCAIMKACGYBUAAmAoAIaMFQACYCgAhsQUBAJcKACG0BQEAlwoAIbYFAQCXCgAh0wUAAPkNsQYilQZAAMQLACGbBgEAlwoAIakGAQCCCgAhsgYBAIIKACGzBgEAggoAIbQGAQCCCgAhtQYBAJcKACG2BgEAlwoAIbcGAQCXCgAhuAYBAJcKACG5BgEAlwoAIboGAQCXCgAhuwYBAJcKACEdBQAAmw8AIAgAAJ0PACAMAACfDwAgGAAAnA8AIBwAAJ4PACAdAACgDwAgHgAAoQ8AIB8AAKIPACAlAACjDwAggwUCAAAAAZgFQAAAAAGjBUAAAAABsQUBAAAAAbQFAQAAAAG2BQEAAAAB0wUAAACxBgKVBkAAAAABmwYBAAAAAakGAQAAAAGyBgEAAAABswYBAAAAAbQGAQAAAAG1BgEAAAABtgYBAAAAAbcGAQAAAAG4BgEAAAABuQYBAAAAAboGAQAAAAG7BgEAAAABBEQAAIwRADDNBgAAjREAMM8GAACPEQAg0wYAAJARADAERAAAgxEAMM0GAACEEQAwzwYAAIYRACDTBgAA8w0AMAREAAD3EAAwzQYAAPgQADDPBgAA-hAAINMGAAD7EAAwBEQAAOsQADDNBgAA7BAAMM8GAADuEAAg0wYAAO8QADAERAAA4hAAMM0GAADjEAAwzwYAAOUQACDTBgAA0Q0AMAREAADWEAAwzQYAANcQADDPBgAA2RAAINMGAADaEAAwBEQAAMoQADDNBgAAyxAAMM8GAADNEAAg0wYAAM4QADAERAAAwRAAMM0GAADCEAAwzwYAAMQQACDTBgAAxQ0AMAREAAC1EAAwzQYAALYQADDPBgAAuBAAINMGAAC5EAAwBEQAAKkQADDNBgAAqhAAMM8GAACsEAAg0wYAAK0QADAERAAAnRAAMM0GAACeEAAwzwYAAKAQACDTBgAAoRAAMAREAACUEAAwzQYAAJUQADDPBgAAlxAAINMGAACyCwAwBEQAAIsQADDNBgAAjBAAMM8GAACOEAAg0wYAAKYLADAERAAAghAAMM0GAACDEAAwzwYAAIUQACDTBgAA4g4AMANEAAD9DwAgzQYAAP4PACDTBgAAmQYAIANEAAD4DwAgzQYAAPkPACDTBgAAsQYAIANEAADzDwAgzQYAAPQPACDTBgAAyQYAIANEAADuDwAgzQYAAO8PACDTBgAA4QYAIANEAADpDwAgzQYAAOoPACDTBgAAjwcAIAREAADdDwAwzQYAAN4PADDPBgAA4A8AINMGAADhDwAwBEQAANEPADDNBgAA0g8AMM8GAADUDwAg0wYAANUPADAERAAAxQ8AMM0GAADGDwAwzwYAAMgPACDTBgAAyQ8AMANEAADADwAgzQYAAMEPACDTBgAA_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_BgIAAAABwAYgAAAAAcEGAgAAAAHCBgIAAAABAgAAAAEAIEQAAO4RACAPgwUCAAAAAYQFAgAAAAGXBQEAAAABmAVAAAAAAdMFAQAAAAHkBQEAAAAB_gUBAAAAAZIGAgAAAAGqBkAAAAABqwYBAAAAAawGAQAAAAGtBiAAAAABrgYBAAAAAa8GIAAAAAGxBgAAALEGAg2DBQIAAAABlAUCAAAAAZgFQAAAAAGIBgEAAAABjAYBAAAAAY0GAQAAAAGRBgIAAAABnwYBAAAAAaAGEAAAAAGhBgEAAAABogYBAAAAAaQGAAAApAYCpQYBAAAAARKDBQIAAAABhAUCAAAAAZQFAgAAAAGYBUAAAAABowVAAAAAAdMFAAAAnQYCkQYCAAAAAZIGAgAAAAGTBgEAAAABlAYBAAAAAZUGQAAAAAGWBgEAAAABmAYAAACYBgKZBoAAAAABmgZAAAAAAZsGAQAAAAGdBgEAAAABngYBAAAAAQSDBQIAAAABmAVAAAAAAf4FAQAAAAGABgAAAIAGAhGDBQIAAAABhAUCAAAAAZQFAgAAAAGXBQEAAAABmAVAAAAAAaMFQAAAAAHTBQAAAPsFAvEFAgAAAAHyBQIAAAAB8wUQAAAAAfQFEAAAAAH1BRAAAAAB9gUQAAAAAfcFEAAAAAH4BRAAAAAB-QUQAAAAAfsFAQAAAAEJgwUCAAAAAYQFAgAAAAGYBUAAAAABzwUAAADPBQLRBQAAANEFAtMFAAAA0wUC1AUBAAAAAdUFAgAAAAHWBQEAAAABCIMFAgAAAAGjBUAAAAAByAUBAAAAAckFAQAAAAHKBQEAAAABywUEAAAAAcwFAQAAAAHNBUAAAAABBoMFAgAAAAGEBQIAAAABmAVAAAAAAZkFAQAAAAGjBUAAAAAB3QUCAAAAAQMAAAANACBEAADuEQAgRQAA-hEAICIAAAANACAFAACqDwAgBwAAqw8AIAgAAK0PACAdAAC2DwAgJQAAtA8AICcAAKwPACAoAACuDwAgKQAArw8AICoAALAPACArAACxDwAgLAAAsg8AIC0AALMPACAuAAC1DwAgLwAAtw8AIDAAALgPACAxAAC5DwAgMgAAug8AIDMAALsPACA0AAC8DwAgNQAAvQ8AIDYAAL4PACA3AAC_DwAgPQAA-hEAIIMFAgCDCgAhhgYBAIIKACGHBgEAggoAIbwGIAC1CgAhvQYCAIMKACG-BiAAtQoAIb8GAgCDCgAhwAYgALUKACHBBgIAgwoAIcIGAgCDCgAhIAUAAKoPACAHAACrDwAgCAAArQ8AIB0AALYPACAlAAC0DwAgJwAArA8AICgAAK4PACApAACvDwAgKgAAsA8AICsAALEPACAsAACyDwAgLQAAsw8AIC4AALUPACAvAAC3DwAgMAAAuA8AIDEAALkPACAyAAC6DwAgMwAAuw8AIDQAALwPACA1AAC9DwAgNgAAvg8AIDcAAL8PACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_BgIAgwoAIcAGIAC1CgAhwQYCAIMKACHCBgIAgwoAIQkDAACkDgAgCAAApg4AIIMFAgAAAAGEBQIAAAABmAVAAAAAAZkFAQAAAAGxBQEAAAABqAYBAAAAAakGAQAAAAECAAAAigEAIEQAAPsRACADAAAACwAgRAAA-xEAIEUAAP8RACALAAAACwAgAwAA4w0AIAgAAOUNACA9AAD_EQAggwUCAIMKACGEBQIAgwoAIZgFQACYCgAhmQUBAIIKACGxBQEAlwoAIagGAQCCCgAhqQYBAJcKACEJAwAA4w0AIAgAAOUNACCDBQIAgwoAIYQFAgCDCgAhmAVAAJgKACGZBQEAggoAIbEFAQCXCgAhqAYBAIIKACGpBgEAlwoAIRUDAACgDgAgBAAAnw4AIAcAALQOACAIAACiDgAgGAAAoQ4AIIMFAgAAAAGEBQIAAAABlwUBAAAAAZgFQAAAAAGkBQIAAAAB0wUBAAAAAeQFAQAAAAH-BQEAAAABkgYCAAAAAaoGQAAAAAGrBgEAAAABrAYBAAAAAa0GIAAAAAGuBgEAAAABrwYgAAAAAbEGAAAAsQYCAgAAAAkAIEQAAIASACADAAAABwAgRAAAgBIAIEUAAIQSACAXAAAABwAgAwAA_A0AIAQAAPsNACAHAACzDgAgCAAA_g0AIBgAAP0NACA9AACEEgAggwUCAIMKACGEBQIAgwoAIZcFAQCXCgAhmAVAAJgKACGkBQIAgwoAIdMFAQCCCgAh5AUBAIIKACH-BQEAggoAIZIGAgCDCgAhqgZAAJgKACGrBgEAggoAIawGAQCCCgAhrQYgALUKACGuBgEAlwoAIa8GIAC1CgAhsQYAAPkNsQYiFQMAAPwNACAEAAD7DQAgBwAAsw4AIAgAAP4NACAYAAD9DQAggwUCAIMKACGEBQIAgwoAIZcFAQCXCgAhmAVAAJgKACGkBQIAgwoAIdMFAQCCCgAh5AUBAIIKACH-BQEAggoAIZIGAgCDCgAhqgZAAJgKACGrBgEAggoAIawGAQCCCgAhrQYgALUKACGuBgEAlwoAIa8GIAC1CgAhsQYAAPkNsQYiIAUAAJkRACAIAACcEQAgHQAApREAICUAAKMRACAmAACYEQAgJwAAmxEAICgAAJ0RACApAACeEQAgKgAAnxEAICsAAKARACAsAAChEQAgLQAAohEAIC4AAKQRACAvAACmEQAgMAAApxEAIDEAAKgRACAyAACpEQAgMwAAqhEAIDQAAKsRACA1AACsEQAgNgAArREAIDcAAK4RACCDBQIAAAABhgYBAAAAAYcGAQAAAAG8BiAAAAABvQYCAAAAAb4GIAAAAAG_BgIAAAABwAYgAAAAAcEGAgAAAAHCBgIAAAABAgAAAAEAIEQAAIUSACAgBwAAmhEAIAgAAJwRACAdAAClEQAgJQAAoxEAICYAAJgRACAnAACbEQAgKAAAnREAICkAAJ4RACAqAACfEQAgKwAAoBEAICwAAKERACAtAACiEQAgLgAApBEAIC8AAKYRACAwAACnEQAgMQAAqBEAIDIAAKkRACAzAACqEQAgNAAAqxEAIDUAAKwRACA2AACtEQAgNwAArhEAIIMFAgAAAAGGBgEAAAABhwYBAAAAAbwGIAAAAAG9BgIAAAABvgYgAAAAAb8GAgAAAAHABiAAAAABwQYCAAAAAcIGAgAAAAECAAAAAQAgRAAAhxIAIB4DAACaDwAgCAAAnQ8AIAwAAJ8PACAYAACcDwAgHAAAng8AIB0AAKAPACAeAAChDwAgHwAAog8AICUAAKMPACCDBQIAAAABhAUCAAAAAZgFQAAAAAGjBUAAAAABsQUBAAAAAbQFAQAAAAG2BQEAAAAB0wUAAACxBgKVBkAAAAABmwYBAAAAAakGAQAAAAGyBgEAAAABswYBAAAAAbQGAQAAAAG1BgEAAAABtgYBAAAAAbcGAQAAAAG4BgEAAAABuQYBAAAAAboGAQAAAAG7BgEAAAABAgAAAAUAIEQAAIkSACANgwUCAAAAAZQFAgAAAAGYBUAAAAABpAUCAAAAAYgGAQAAAAGMBgEAAAABjQYBAAAAAZ8GAQAAAAGgBhAAAAABoQYBAAAAAaIGAQAAAAGkBgAAAKQGAqUGAQAAAAESgwUCAAAAAYQFAgAAAAGUBQIAAAABmAVAAAAAAaMFQAAAAAGkBQIAAAAB0wUAAACdBgKSBgIAAAABkwYBAAAAAZQGAQAAAAGVBkAAAAABlgYBAAAAAZgGAAAAmAYCmQaAAAAAAZoGQAAAAAGbBgEAAAABnQYBAAAAAZ4GAQAAAAEEgwUCAAAAAcgFAQAAAAHKBQEAAAABzAUBAAAAAQMAAAANACBEAACHEgAgRQAAkBIAICIAAAANACAHAACrDwAgCAAArQ8AIB0AALYPACAlAAC0DwAgJgAAqQ8AICcAAKwPACAoAACuDwAgKQAArw8AICoAALAPACArAACxDwAgLAAAsg8AIC0AALMPACAuAAC1DwAgLwAAtw8AIDAAALgPACAxAAC5DwAgMgAAug8AIDMAALsPACA0AAC8DwAgNQAAvQ8AIDYAAL4PACA3AAC_DwAgPQAAkBIAIIMFAgCDCgAhhgYBAIIKACGHBgEAggoAIbwGIAC1CgAhvQYCAIMKACG-BiAAtQoAIb8GAgCDCgAhwAYgALUKACHBBgIAgwoAIcIGAgCDCgAhIAcAAKsPACAIAACtDwAgHQAAtg8AICUAALQPACAmAACpDwAgJwAArA8AICgAAK4PACApAACvDwAgKgAAsA8AICsAALEPACAsAACyDwAgLQAAsw8AIC4AALUPACAvAAC3DwAgMAAAuA8AIDEAALkPACAyAAC6DwAgMwAAuw8AIDQAALwPACA1AAC9DwAgNgAAvg8AIDcAAL8PACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_BgIAgwoAIcAGIAC1CgAhwQYCAIMKACHCBgIAgwoAIQMAAAADACBEAACJEgAgRQAAkxIAICAAAAADACADAAC6DgAgCAAAvQ4AIAwAAL8OACAYAAC8DgAgHAAAvg4AIB0AAMAOACAeAADBDgAgHwAAwg4AICUAAMMOACA9AACTEgAggwUCAIMKACGEBQIAgwoAIZgFQACYCgAhowVAAJgKACGxBQEAlwoAIbQFAQCXCgAhtgUBAJcKACHTBQAA-Q2xBiKVBkAAxAsAIZsGAQCXCgAhqQYBAIIKACGyBgEAggoAIbMGAQCCCgAhtAYBAIIKACG1BgEAlwoAIbYGAQCXCgAhtwYBAJcKACG4BgEAlwoAIbkGAQCXCgAhugYBAJcKACG7BgEAlwoAIR4DAAC6DgAgCAAAvQ4AIAwAAL8OACAYAAC8DgAgHAAAvg4AIB0AAMAOACAeAADBDgAgHwAAwg4AICUAAMMOACCDBQIAgwoAIYQFAgCDCgAhmAVAAJgKACGjBUAAmAoAIbEFAQCXCgAhtAUBAJcKACG2BQEAlwoAIdMFAAD5DbEGIpUGQADECwAhmwYBAJcKACGpBgEAggoAIbIGAQCCCgAhswYBAIIKACG0BgEAggoAIbUGAQCXCgAhtgYBAJcKACG3BgEAlwoAIbgGAQCXCgAhuQYBAJcKACG6BgEAlwoAIbsGAQCXCgAhD4MFAgAAAAGEBQIAAAABlwUBAAAAAZgFQAAAAAGkBQIAAAAB0wUBAAAAAeQFAQAAAAH-BQEAAAABqgZAAAAAAasGAQAAAAGsBgEAAAABrQYgAAAAAa4GAQAAAAGvBiAAAAABsQYAAACxBgISgwUCAAAAAYQFAgAAAAGUBQIAAAABmAVAAAAAAaMFQAAAAAGkBQIAAAAB0wUAAACdBgKRBgIAAAABkwYBAAAAAZQGAQAAAAGVBkAAAAABlgYBAAAAAZgGAAAAmAYCmQaAAAAAAZoGQAAAAAGbBgEAAAABnQYBAAAAAZ4GAQAAAAEDAAAADQAgRAAAhRIAIEUAAJgSACAiAAAADQAgBQAAqg8AIAgAAK0PACAdAAC2DwAgJQAAtA8AICYAAKkPACAnAACsDwAgKAAArg8AICkAAK8PACAqAACwDwAgKwAAsQ8AICwAALIPACAtAACzDwAgLgAAtQ8AIC8AALcPACAwAAC4DwAgMQAAuQ8AIDIAALoPACAzAAC7DwAgNAAAvA8AIDUAAL0PACA2AAC-DwAgNwAAvw8AID0AAJgSACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_BgIAgwoAIcAGIAC1CgAhwQYCAIMKACHCBgIAgwoAISAFAACqDwAgCAAArQ8AIB0AALYPACAlAAC0DwAgJgAAqQ8AICcAAKwPACAoAACuDwAgKQAArw8AICoAALAPACArAACxDwAgLAAAsg8AIC0AALMPACAuAAC1DwAgLwAAtw8AIDAAALgPACAxAAC5DwAgMgAAug8AIDMAALsPACA0AAC8DwAgNQAAvQ8AIDYAAL4PACA3AAC_DwAggwUCAIMKACGGBgEAggoAIYcGAQCCCgAhvAYgALUKACG9BgIAgwoAIb4GIAC1CgAhvwYCAIMKACHABiAAtQoAIcEGAgCDCgAhwgYCAIMKACEgBQAAmREAIAcAAJoRACAIAACcEQAgHQAApREAICUAAKMRACAmAACYEQAgKAAAnREAICkAAJ4RACAqAACfEQAgKwAAoBEAICwAAKERACAtAACiEQAgLgAApBEAIC8AAKYRACAwAACnEQAgMQAAqBEAIDIAAKkRACAzAACqEQAgNAAAqxEAIDUAAKwRACA2AACtEQAgNwAArhEAIIMFAgAAAAGGBgEAAAABhwYBAAAAAbwGIAAAAAG9BgIAAAABvgYgAAAAAb8GAgAAAAHABiAAAAABwQYCAAAAAcIGAgAAAAECAAAAAQAgRAAAmRIAIBKDBQIAAAABhAUCAAAAAZgFQAAAAAGjBUAAAAABpAUCAAAAAdMFAAAAnQYCkQYCAAAAAZIGAgAAAAGTBgEAAAABlAYBAAAAAZUGQAAAAAGWBgEAAAABmAYAAACYBgKZBoAAAAABmgZAAAAAAZsGAQAAAAGdBgEAAAABngYBAAAAARGDBQIAAAABhAUCAAAAAZcFAQAAAAGYBUAAAAABowVAAAAAAaQFAgAAAAHTBQAAAPsFAvEFAgAAAAHyBQIAAAAB8wUQAAAAAfQFEAAAAAH1BRAAAAAB9gUQAAAAAfcFEAAAAAH4BRAAAAAB-QUQAAAAAfsFAQAAAAEFgwUCAAAAAZUFEAAAAAGWBRAAAAABlwUBAAAAAZgFQAAAAAENgwUCAAAAAZgFQAAAAAGkBQIAAAABiAYBAAAAAYwGAQAAAAGNBgEAAAABkQYCAAAAAZ8GAQAAAAGgBhAAAAABoQYBAAAAAaIGAQAAAAGkBgAAAKQGAqUGAQAAAAEDAAAADQAgRAAAmRIAIEUAAKESACAiAAAADQAgBQAAqg8AIAcAAKsPACAIAACtDwAgHQAAtg8AICUAALQPACAmAACpDwAgKAAArg8AICkAAK8PACAqAACwDwAgKwAAsQ8AICwAALIPACAtAACzDwAgLgAAtQ8AIC8AALcPACAwAAC4DwAgMQAAuQ8AIDIAALoPACAzAAC7DwAgNAAAvA8AIDUAAL0PACA2AAC-DwAgNwAAvw8AID0AAKESACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_BgIAgwoAIcAGIAC1CgAhwQYCAIMKACHCBgIAgwoAISAFAACqDwAgBwAAqw8AIAgAAK0PACAdAAC2DwAgJQAAtA8AICYAAKkPACAoAACuDwAgKQAArw8AICoAALAPACArAACxDwAgLAAAsg8AIC0AALMPACAuAAC1DwAgLwAAtw8AIDAAALgPACAxAAC5DwAgMgAAug8AIDMAALsPACA0AAC8DwAgNQAAvQ8AIDYAAL4PACA3AAC_DwAggwUCAIMKACGGBgEAggoAIYcGAQCCCgAhvAYgALUKACG9BgIAgwoAIb4GIAC1CgAhvwYCAIMKACHABiAAtQoAIcEGAgCDCgAhwgYCAIMKACEKAwAA2Q0AIAgAANoNACAUAADbDQAgFQAA3A0AIIMFAgAAAAGEBQIAAAABmAVAAAAAAaIFAgAAAAGmBgEAAAABpwYBAAAAAQIAAACNAQAgRAAAohIAIB4DAACaDwAgBQAAmw8AIAgAAJ0PACAMAACfDwAgHAAAng8AIB0AAKAPACAeAAChDwAgHwAAog8AICUAAKMPACCDBQIAAAABhAUCAAAAAZgFQAAAAAGjBUAAAAABsQUBAAAAAbQFAQAAAAG2BQEAAAAB0wUAAACxBgKVBkAAAAABmwYBAAAAAakGAQAAAAGyBgEAAAABswYBAAAAAbQGAQAAAAG1BgEAAAABtgYBAAAAAbcGAQAAAAG4BgEAAAABuQYBAAAAAboGAQAAAAG7BgEAAAABAgAAAAUAIEQAAKQSACAVAwAAoA4AIAQAAJ8OACAHAAC0DgAgCAAAog4AIBkAAKMOACCDBQIAAAABhAUCAAAAAZcFAQAAAAGYBUAAAAABpAUCAAAAAdMFAQAAAAHkBQEAAAAB_gUBAAAAAZIGAgAAAAGqBkAAAAABqwYBAAAAAawGAQAAAAGtBiAAAAABrgYBAAAAAa8GIAAAAAGxBgAAALEGAgIAAAAJACBEAACmEgAgAwAAABcAIEQAAKISACBFAACqEgAgDAAAABcAIAMAAKQNACAIAAClDQAgFAAApg0AIBUAAKcNACA9AACqEgAggwUCAIMKACGEBQIAgwoAIZgFQACYCgAhogUCAIMKACGmBgEAggoAIacGAQCCCgAhCgMAAKQNACAIAAClDQAgFAAApg0AIBUAAKcNACCDBQIAgwoAIYQFAgCDCgAhmAVAAJgKACGiBQIAgwoAIaYGAQCCCgAhpwYBAIIKACEDAAAAAwAgRAAApBIAIEUAAK0SACAgAAAAAwAgAwAAug4AIAUAALsOACAIAAC9DgAgDAAAvw4AIBwAAL4OACAdAADADgAgHgAAwQ4AIB8AAMIOACAlAADDDgAgPQAArRIAIIMFAgCDCgAhhAUCAIMKACGYBUAAmAoAIaMFQACYCgAhsQUBAJcKACG0BQEAlwoAIbYFAQCXCgAh0wUAAPkNsQYilQZAAMQLACGbBgEAlwoAIakGAQCCCgAhsgYBAIIKACGzBgEAggoAIbQGAQCCCgAhtQYBAJcKACG2BgEAlwoAIbcGAQCXCgAhuAYBAJcKACG5BgEAlwoAIboGAQCXCgAhuwYBAJcKACEeAwAAug4AIAUAALsOACAIAAC9DgAgDAAAvw4AIBwAAL4OACAdAADADgAgHgAAwQ4AIB8AAMIOACAlAADDDgAggwUCAIMKACGEBQIAgwoAIZgFQACYCgAhowVAAJgKACGxBQEAlwoAIbQFAQCXCgAhtgUBAJcKACHTBQAA-Q2xBiKVBkAAxAsAIZsGAQCXCgAhqQYBAIIKACGyBgEAggoAIbMGAQCCCgAhtAYBAIIKACG1BgEAlwoAIbYGAQCXCgAhtwYBAJcKACG4BgEAlwoAIbkGAQCXCgAhugYBAJcKACG7BgEAlwoAIQMAAAAHACBEAACmEgAgRQAAsBIAIBcAAAAHACADAAD8DQAgBAAA-w0AIAcAALMOACAIAAD-DQAgGQAA_w0AID0AALASACCDBQIAgwoAIYQFAgCDCgAhlwUBAJcKACGYBUAAmAoAIaQFAgCDCgAh0wUBAIIKACHkBQEAggoAIf4FAQCCCgAhkgYCAIMKACGqBkAAmAoAIasGAQCCCgAhrAYBAIIKACGtBiAAtQoAIa4GAQCXCgAhrwYgALUKACGxBgAA-Q2xBiIVAwAA_A0AIAQAAPsNACAHAACzDgAgCAAA_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_DQAgPQAAyBIAIIMFAgCDCgAhhAUCAIMKACGXBQEAlwoAIZgFQACYCgAhpAUCAIMKACHTBQEAggoAIeQFAQCCCgAh_gUBAIIKACGSBgIAgwoAIaoGQACYCgAhqwYBAIIKACGsBgEAggoAIa0GIAC1CgAhrgYBAJcKACGvBiAAtQoAIbEGAAD5DbEGIhUDAAD8DQAgBAAA-w0AIAcAALMOACAYAAD9DQAgGQAA_w0AIIMFAgCDCgAhhAUCAIMKACGXBQEAlwoAIZgFQACYCgAhpAUCAIMKACHTBQEAggoAIeQFAQCCCgAh_gUBAIIKACGSBgIAgwoAIaoGQACYCgAhqwYBAIIKACGsBgEAggoAIa0GIAC1CgAhrgYBAJcKACGvBiAAtQoAIbEGAAD5DbEGIgMAAAADACBEAAC5EgAgRQAAyxIAICAAAAADACADAAC6DgAgBQAAuw4AIAwAAL8OACAYAAC8DgAgHAAAvg4AIB0AAMAOACAeAADBDgAgHwAAwg4AICUAAMMOACA9AADLEgAggwUCAIMKACGEBQIAgwoAIZgFQACYCgAhowVAAJgKACGxBQEAlwoAIbQFAQCXCgAhtgUBAJcKACHTBQAA-Q2xBiKVBkAAxAsAIZsGAQCXCgAhqQYBAIIKACGyBgEAggoAIbMGAQCCCgAhtAYBAIIKACG1BgEAlwoAIbYGAQCXCgAhtwYBAJcKACG4BgEAlwoAIbkGAQCXCgAhugYBAJcKACG7BgEAlwoAIR4DAAC6DgAgBQAAuw4AIAwAAL8OACAYAAC8DgAgHAAAvg4AIB0AAMAOACAeAADBDgAgHwAAwg4AICUAAMMOACCDBQIAgwoAIYQFAgCDCgAhmAVAAJgKACGjBUAAmAoAIbEFAQCXCgAhtAUBAJcKACG2BQEAlwoAIdMFAAD5DbEGIpUGQADECwAhmwYBAJcKACGpBgEAggoAIbIGAQCCCgAhswYBAIIKACG0BgEAggoAIbUGAQCXCgAhtgYBAJcKACG3BgEAlwoAIbgGAQCXCgAhuQYBAJcKACG6BgEAlwoAIbsGAQCXCgAhGAQAAKMMACAJAACiDAAgCgAApAwAIAsAAKUMACANAACmDAAgEwAAqAwAIIMFAgAAAAGEBQIAAAABlAUCAAAAAZcFAQAAAAGYBUAAAAABowVAAAAAAaQFAgAAAAHTBQAAAPsFAvEFAgAAAAHyBQIAAAAB8wUQAAAAAfQFEAAAAAH1BRAAAAAB9gUQAAAAAfcFEAAAAAH4BRAAAAAB-QUQAAAAAfsFAQAAAAECAAAAHAAgRAAAzBIAIAMAAAAaACBEAADMEgAgRQAA0BIAIBoAAAAaACAEAADtCwAgCQAA7AsAIAoAAO4LACALAADvCwAgDQAA8AsAIBMAAPILACA9AADQEgAggwUCAIMKACGEBQIAgwoAIZQFAgD0CgAhlwUBAJcKACGYBUAAmAoAIaMFQACYCgAhpAUCAIMKACHTBQAA6wv7BSLxBQIA9AoAIfIFAgD0CgAh8wUQAIwKACH0BRAAjAoAIfUFEACMCgAh9gUQAIwKACH3BRAA6gsAIfgFEACMCgAh-QUQAIwKACH7BQEAlwoAIRgEAADtCwAgCQAA7AsAIAoAAO4LACALAADvCwAgDQAA8AsAIBMAAPILACCDBQIAgwoAIYQFAgCDCgAhlAUCAPQKACGXBQEAlwoAIZgFQACYCgAhowVAAJgKACGkBQIAgwoAIdMFAADrC_sFIvEFAgD0CgAh8gUCAPQKACHzBRAAjAoAIfQFEACMCgAh9QUQAIwKACH2BRAAjAoAIfcFEADqCwAh-AUQAIwKACH5BRAAjAoAIfsFAQCXCgAhGgMAAI0NACAEAACLDQAgBgAAjA0AIAcAAI4NACALAACPDQAgDAAAkg0AIBAAAJANACCDBQIAAAABhAUCAAAAAZQFAgAAAAGYBUAAAAABowVAAAAAAaQFAgAAAAHTBQAAAJ0GApEGAgAAAAGSBgIAAAABkwYBAAAAAZQGAQAAAAGVBkAAAAABlgYBAAAAAZgGAAAAmAYCmQaAAAAAAZoGQAAAAAGbBgEAAAABnQYBAAAAAZ4GAQAAAAECAAAAEgAgRAAA0RIAIAMAAAAQACBEAADREgAgRQAA1RIAIBwAAAAQACADAADrDAAgBAAA6QwAIAYAAOoMACAHAADsDAAgCwAA7QwAIAwAAPAMACAQAADuDAAgPQAA1RIAIIMFAgCDCgAhhAUCAIMKACGUBQIA9AoAIZgFQACYCgAhowVAAJgKACGkBQIAgwoAIdMFAADoDJ0GIpEGAgD0CgAhkgYCAIMKACGTBgEAggoAIZQGAQCCCgAhlQZAAJgKACGWBgEAggoAIZgGAADnDJgGIpkGgAAAAAGaBkAAmAoAIZsGAQCCCgAhnQYBAJcKACGeBgEAlwoAIRoDAADrDAAgBAAA6QwAIAYAAOoMACAHAADsDAAgCwAA7QwAIAwAAPAMACAQAADuDAAggwUCAIMKACGEBQIAgwoAIZQFAgD0CgAhmAVAAJgKACGjBUAAmAoAIaQFAgCDCgAh0wUAAOgMnQYikQYCAPQKACGSBgIAgwoAIZMGAQCCCgAhlAYBAIIKACGVBkAAmAoAIZYGAQCCCgAhmAYAAOcMmAYimQaAAAAAAZoGQACYCgAhmwYBAIIKACGdBgEAlwoAIZ4GAQCXCgAhIAUAAJkRACAHAACaEQAgCAAAnBEAIB0AAKURACAlAACjEQAgJgAAmBEAICcAAJsRACApAACeEQAgKgAAnxEAICsAAKARACAsAAChEQAgLQAAohEAIC4AAKQRACAvAACmEQAgMAAApxEAIDEAAKgRACAyAACpEQAgMwAAqhEAIDQAAKsRACA1AACsEQAgNgAArREAIDcAAK4RACCDBQIAAAABhgYBAAAAAYcGAQAAAAG8BiAAAAABvQYCAAAAAb4GIAAAAAG_BgIAAAABwAYgAAAAAcEGAgAAAAHCBgIAAAABAgAAAAEAIEQAANYSACADAAAADQAgRAAA1hIAIEUAANoSACAiAAAADQAgBQAAqg8AIAcAAKsPACAIAACtDwAgHQAAtg8AICUAALQPACAmAACpDwAgJwAArA8AICkAAK8PACAqAACwDwAgKwAAsQ8AICwAALIPACAtAACzDwAgLgAAtQ8AIC8AALcPACAwAAC4DwAgMQAAuQ8AIDIAALoPACAzAAC7DwAgNAAAvA8AIDUAAL0PACA2AAC-DwAgNwAAvw8AID0AANoSACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_BgIAgwoAIcAGIAC1CgAhwQYCAIMKACHCBgIAgwoAISAFAACqDwAgBwAAqw8AIAgAAK0PACAdAAC2DwAgJQAAtA8AICYAAKkPACAnAACsDwAgKQAArw8AICoAALAPACArAACxDwAgLAAAsg8AIC0AALMPACAuAAC1DwAgLwAAtw8AIDAAALgPACAxAAC5DwAgMgAAug8AIDMAALsPACA0AAC8DwAgNQAAvQ8AIDYAAL4PACA3AAC_DwAggwUCAIMKACGGBgEAggoAIYcGAQCCCgAhvAYgALUKACG9BgIAgwoAIb4GIAC1CgAhvwYCAIMKACHABiAAtQoAIcEGAgCDCgAhwgYCAIMKACEgBQAAmREAIAcAAJoRACAIAACcEQAgHQAApREAICUAAKMRACAmAACYEQAgJwAAmxEAICgAAJ0RACAqAACfEQAgKwAAoBEAICwAAKERACAtAACiEQAgLgAApBEAIC8AAKYRACAwAACnEQAgMQAAqBEAIDIAAKkRACAzAACqEQAgNAAAqxEAIDUAAKwRACA2AACtEQAgNwAArhEAIIMFAgAAAAGGBgEAAAABhwYBAAAAAbwGIAAAAAG9BgIAAAABvgYgAAAAAb8GAgAAAAHABiAAAAABwQYCAAAAAcIGAgAAAAECAAAAAQAgRAAA2xIAIAMAAAANACBEAADbEgAgRQAA3xIAICIAAAANACAFAACqDwAgBwAAqw8AIAgAAK0PACAdAAC2DwAgJQAAtA8AICYAAKkPACAnAACsDwAgKAAArg8AICoAALAPACArAACxDwAgLAAAsg8AIC0AALMPACAuAAC1DwAgLwAAtw8AIDAAALgPACAxAAC5DwAgMgAAug8AIDMAALsPACA0AAC8DwAgNQAAvQ8AIDYAAL4PACA3AAC_DwAgPQAA3xIAIIMFAgCDCgAhhgYBAIIKACGHBgEAggoAIbwGIAC1CgAhvQYCAIMKACG-BiAAtQoAIb8GAgCDCgAhwAYgALUKACHBBgIAgwoAIcIGAgCDCgAhIAUAAKoPACAHAACrDwAgCAAArQ8AIB0AALYPACAlAAC0DwAgJgAAqQ8AICcAAKwPACAoAACuDwAgKgAAsA8AICsAALEPACAsAACyDwAgLQAAsw8AIC4AALUPACAvAAC3DwAgMAAAuA8AIDEAALkPACAyAAC6DwAgMwAAuw8AIDQAALwPACA1AAC9DwAgNgAAvg8AIDcAAL8PACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_BgIAgwoAIcAGIAC1CgAhwQYCAIMKACHCBgIAgwoAIR4DAACaDwAgBQAAmw8AIAgAAJ0PACAMAACfDwAgGAAAnA8AIB0AAKAPACAeAAChDwAgHwAAog8AICUAAKMPACCDBQIAAAABhAUCAAAAAZgFQAAAAAGjBUAAAAABsQUBAAAAAbQFAQAAAAG2BQEAAAAB0wUAAACxBgKVBkAAAAABmwYBAAAAAakGAQAAAAGyBgEAAAABswYBAAAAAbQGAQAAAAG1BgEAAAABtgYBAAAAAbcGAQAAAAG4BgEAAAABuQYBAAAAAboGAQAAAAG7BgEAAAABAgAAAAUAIEQAAOASACAEgwUCAAAAAcgFAQAAAAHNBUAAAAAB_AUAAQAAAQMAAAADACBEAADgEgAgRQAA5RIAICAAAAADACADAAC6DgAgBQAAuw4AIAgAAL0OACAMAAC_DgAgGAAAvA4AIB0AAMAOACAeAADBDgAgHwAAwg4AICUAAMMOACA9AADlEgAggwUCAIMKACGEBQIAgwoAIZgFQACYCgAhowVAAJgKACGxBQEAlwoAIbQFAQCXCgAhtgUBAJcKACHTBQAA-Q2xBiKVBkAAxAsAIZsGAQCXCgAhqQYBAIIKACGyBgEAggoAIbMGAQCCCgAhtAYBAIIKACG1BgEAlwoAIbYGAQCXCgAhtwYBAJcKACG4BgEAlwoAIbkGAQCXCgAhugYBAJcKACG7BgEAlwoAIR4DAAC6DgAgBQAAuw4AIAgAAL0OACAMAAC_DgAgGAAAvA4AIB0AAMAOACAeAADBDgAgHwAAwg4AICUAAMMOACCDBQIAgwoAIYQFAgCDCgAhmAVAAJgKACGjBUAAmAoAIbEFAQCXCgAhtAUBAJcKACG2BQEAlwoAIdMFAAD5DbEGIpUGQADECwAhmwYBAJcKACGpBgEAggoAIbIGAQCCCgAhswYBAIIKACG0BgEAggoAIbUGAQCXCgAhtgYBAJcKACG3BgEAlwoAIbgGAQCXCgAhuQYBAJcKACG6BgEAlwoAIbsGAQCXCgAhBgQAAMQMACCDBQIAAAABmAVAAAAAAaQFAgAAAAH-BQEAAAABgAYAAACABgICAAAAWgAgRAAA5hIAIAMAAABYACBEAADmEgAgRQAA6hIAIAgAAABYACAEAAC2DAAgPQAA6hIAIIMFAgCDCgAhmAVAAJgKACGkBQIAgwoAIf4FAQCCCgAhgAYAALUMgAYiBgQAALYMACCDBQIAgwoAIZgFQACYCgAhpAUCAIMKACH-BQEAggoAIYAGAAC1DIAGIgoDAADZDQAgCAAA2g0AIBUAANwNACAWAADdDQAggwUCAAAAAYQFAgAAAAGYBUAAAAABogUCAAAAAaYGAQAAAAGnBgEAAAABAgAAAI0BACBEAADrEgAgIAUAAJkRACAHAACaEQAgCAAAnBEAIB0AAKURACAlAACjEQAgJgAAmBEAICcAAJsRACAoAACdEQAgKQAAnhEAICsAAKARACAsAAChEQAgLQAAohEAIC4AAKQRACAvAACmEQAgMAAApxEAIDEAAKgRACAyAACpEQAgMwAAqhEAIDQAAKsRACA1AACsEQAgNgAArREAIDcAAK4RACCDBQIAAAABhgYBAAAAAYcGAQAAAAG8BiAAAAABvQYCAAAAAb4GIAAAAAG_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_DwAgPQAAgRMAIIMFAgCDCgAhhgYBAIIKACGHBgEAggoAIbwGIAC1CgAhvQYCAIMKACG-BiAAtQoAIb8GAgCDCgAhwAYgALUKACHBBgIAgwoAIcIGAgCDCgAhIAUAAKoPACAHAACrDwAgCAAArQ8AIB0AALYPACAlAAC0DwAgJgAAqQ8AICcAAKwPACAoAACuDwAgKQAArw8AICsAALEPACAsAACyDwAgLQAAsw8AIC4AALUPACAvAAC3DwAgMAAAuA8AIDEAALkPACAyAAC6DwAgMwAAuw8AIDQAALwPACA1AAC9DwAgNgAAvg8AIDcAAL8PACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_BgIAgwoAIcAGIAC1CgAhwQYCAIMKACHCBgIAgwoAIQMAAAADACBEAADvEgAgRQAAhBMAICAAAAADACADAAC6DgAgBQAAuw4AIAgAAL0OACAYAAC8DgAgHAAAvg4AIB0AAMAOACAeAADBDgAgHwAAwg4AICUAAMMOACA9AACEEwAggwUCAIMKACGEBQIAgwoAIZgFQACYCgAhowVAAJgKACGxBQEAlwoAIbQFAQCXCgAhtgUBAJcKACHTBQAA-Q2xBiKVBkAAxAsAIZsGAQCXCgAhqQYBAIIKACGyBgEAggoAIbMGAQCCCgAhtAYBAIIKACG1BgEAlwoAIbYGAQCXCgAhtwYBAJcKACG4BgEAlwoAIbkGAQCXCgAhugYBAJcKACG7BgEAlwoAIR4DAAC6DgAgBQAAuw4AIAgAAL0OACAYAAC8DgAgHAAAvg4AIB0AAMAOACAeAADBDgAgHwAAwg4AICUAAMMOACCDBQIAgwoAIYQFAgCDCgAhmAVAAJgKACGjBUAAmAoAIbEFAQCXCgAhtAUBAJcKACG2BQEAlwoAIdMFAAD5DbEGIpUGQADECwAhmwYBAJcKACGpBgEAggoAIbIGAQCCCgAhswYBAIIKACG0BgEAggoAIbUGAQCXCgAhtgYBAJcKACG3BgEAlwoAIbgGAQCXCgAhuQYBAJcKACG6BgEAlwoAIbsGAQCXCgAhAwAAABAAIEQAAPESACBFAACHEwAgHAAAABAAIAMAAOsMACAEAADpDAAgBgAA6gwAIAcAAOwMACALAADtDAAgEAAA7gwAIBcAAO8MACA9AACHEwAggwUCAIMKACGEBQIAgwoAIZQFAgD0CgAhmAVAAJgKACGjBUAAmAoAIaQFAgCDCgAh0wUAAOgMnQYikQYCAPQKACGSBgIAgwoAIZMGAQCCCgAhlAYBAIIKACGVBkAAmAoAIZYGAQCCCgAhmAYAAOcMmAYimQaAAAAAAZoGQACYCgAhmwYBAIIKACGdBgEAlwoAIZ4GAQCXCgAhGgMAAOsMACAEAADpDAAgBgAA6gwAIAcAAOwMACALAADtDAAgEAAA7gwAIBcAAO8MACCDBQIAgwoAIYQFAgCDCgAhlAUCAPQKACGYBUAAmAoAIaMFQACYCgAhpAUCAIMKACHTBQAA6AydBiKRBgIA9AoAIZIGAgCDCgAhkwYBAIIKACGUBgEAggoAIZUGQACYCgAhlgYBAIIKACGYBgAA5wyYBiKZBoAAAAABmgZAAJgKACGbBgEAggoAIZ0GAQCXCgAhngYBAJcKACETCQAAlwwAIAwAAOEMACCDBQIAAAABkgUCAAAAAdMFAAAAkQYC8QUCAAAAAfMFEAAAAAH0BRAAAAAB9QUQAAAAAfYFEAAAAAH7BQEAAAABiAYBAAAAAYkGQAAAAAGKBgEAAAABiwYBAAAAAYwGAQAAAAGNBgEAAAABjgYBAAAAAY8GEAAAAAECAAAAKwAgRAAAiBMAIBgEAACjDAAgCQAAogwAIAoAAKQMACALAAClDAAgEAAApwwAIBMAAKgMACCDBQIAAAABhAUCAAAAAZQFAgAAAAGXBQEAAAABmAVAAAAAAaMFQAAAAAGkBQIAAAAB0wUAAAD7BQLxBQIAAAAB8gUCAAAAAfMFEAAAAAH0BRAAAAAB9QUQAAAAAfYFEAAAAAH3BRAAAAAB-AUQAAAAAfkFEAAAAAH7BQEAAAABAgAAABwAIEQAAIoTACADAAAAKQAgRAAAiBMAIEUAAI4TACAVAAAAKQAgCQAAiAwAIAwAAOAMACA9AACOEwAggwUCAIMKACGSBQIA9AoAIdMFAACGDJEGIvEFAgD0CgAh8wUQAIwKACH0BRAAjAoAIfUFEACMCgAh9gUQAIwKACH7BQEAlwoAIYgGAQCCCgAhiQZAAJgKACGKBgEAlwoAIYsGAQCXCgAhjAYBAJcKACGNBgEAlwoAIY4GAQCXCgAhjwYQAOoLACETCQAAiAwAIAwAAOAMACCDBQIAgwoAIZIFAgD0CgAh0wUAAIYMkQYi8QUCAPQKACHzBRAAjAoAIfQFEACMCgAh9QUQAIwKACH2BRAAjAoAIfsFAQCXCgAhiAYBAIIKACGJBkAAmAoAIYoGAQCXCgAhiwYBAJcKACGMBgEAlwoAIY0GAQCXCgAhjgYBAJcKACGPBhAA6gsAIQMAAAAaACBEAACKEwAgRQAAkRMAIBoAAAAaACAEAADtCwAgCQAA7AsAIAoAAO4LACALAADvCwAgEAAA8QsAIBMAAPILACA9AACREwAggwUCAIMKACGEBQIAgwoAIZQFAgD0CgAhlwUBAJcKACGYBUAAmAoAIaMFQACYCgAhpAUCAIMKACHTBQAA6wv7BSLxBQIA9AoAIfIFAgD0CgAh8wUQAIwKACH0BRAAjAoAIfUFEACMCgAh9gUQAIwKACH3BRAA6gsAIfgFEACMCgAh-QUQAIwKACH7BQEAlwoAIRgEAADtCwAgCQAA7AsAIAoAAO4LACALAADvCwAgEAAA8QsAIBMAAPILACCDBQIAgwoAIYQFAgCDCgAhlAUCAPQKACGXBQEAlwoAIZgFQACYCgAhowVAAJgKACGkBQIAgwoAIdMFAADrC_sFIvEFAgD0CgAh8gUCAPQKACHzBRAAjAoAIfQFEACMCgAh9QUQAIwKACH2BRAAjAoAIfcFEADqCwAh-AUQAIwKACH5BRAAjAoAIfsFAQCXCgAhIAUAAJkRACAHAACaEQAgCAAAnBEAIB0AAKURACAlAACjEQAgJgAAmBEAICcAAJsRACAoAACdEQAgKQAAnhEAICoAAJ8RACAsAAChEQAgLQAAohEAIC4AAKQRACAvAACmEQAgMAAApxEAIDEAAKgRACAyAACpEQAgMwAAqhEAIDQAAKsRACA1AACsEQAgNgAArREAIDcAAK4RACCDBQIAAAABhgYBAAAAAYcGAQAAAAG8BiAAAAABvQYCAAAAAb4GIAAAAAG_BgIAAAABwAYgAAAAAcEGAgAAAAHCBgIAAAABAgAAAAEAIEQAAJITACADAAAADQAgRAAAkhMAIEUAAJYTACAiAAAADQAgBQAAqg8AIAcAAKsPACAIAACtDwAgHQAAtg8AICUAALQPACAmAACpDwAgJwAArA8AICgAAK4PACApAACvDwAgKgAAsA8AICwAALIPACAtAACzDwAgLgAAtQ8AIC8AALcPACAwAAC4DwAgMQAAuQ8AIDIAALoPACAzAAC7DwAgNAAAvA8AIDUAAL0PACA2AAC-DwAgNwAAvw8AID0AAJYTACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_BgIAgwoAIcAGIAC1CgAhwQYCAIMKACHCBgIAgwoAISAFAACqDwAgBwAAqw8AIAgAAK0PACAdAAC2DwAgJQAAtA8AICYAAKkPACAnAACsDwAgKAAArg8AICkAAK8PACAqAACwDwAgLAAAsg8AIC0AALMPACAuAAC1DwAgLwAAtw8AIDAAALgPACAxAAC5DwAgMgAAug8AIDMAALsPACA0AAC8DwAgNQAAvQ8AIDYAAL4PACA3AAC_DwAggwUCAIMKACGGBgEAggoAIYcGAQCCCgAhvAYgALUKACG9BgIAgwoAIb4GIAC1CgAhvwYCAIMKACHABiAAtQoAIcEGAgCDCgAhwgYCAIMKACEgBQAAmREAIAcAAJoRACAIAACcEQAgHQAApREAICUAAKMRACAmAACYEQAgJwAAmxEAICgAAJ0RACApAACeEQAgKgAAnxEAICsAAKARACAtAACiEQAgLgAApBEAIC8AAKYRACAwAACnEQAgMQAAqBEAIDIAAKkRACAzAACqEQAgNAAAqxEAIDUAAKwRACA2AACtEQAgNwAArhEAIIMFAgAAAAGGBgEAAAABhwYBAAAAAbwGIAAAAAG9BgIAAAABvgYgAAAAAb8GAgAAAAHABiAAAAABwQYCAAAAAcIGAgAAAAECAAAAAQAgRAAAlxMAIAMAAAANACBEAACXEwAgRQAAmxMAICIAAAANACAFAACqDwAgBwAAqw8AIAgAAK0PACAdAAC2DwAgJQAAtA8AICYAAKkPACAnAACsDwAgKAAArg8AICkAAK8PACAqAACwDwAgKwAAsQ8AIC0AALMPACAuAAC1DwAgLwAAtw8AIDAAALgPACAxAAC5DwAgMgAAug8AIDMAALsPACA0AAC8DwAgNQAAvQ8AIDYAAL4PACA3AAC_DwAgPQAAmxMAIIMFAgCDCgAhhgYBAIIKACGHBgEAggoAIbwGIAC1CgAhvQYCAIMKACG-BiAAtQoAIb8GAgCDCgAhwAYgALUKACHBBgIAgwoAIcIGAgCDCgAhIAUAAKoPACAHAACrDwAgCAAArQ8AIB0AALYPACAlAAC0DwAgJgAAqQ8AICcAAKwPACAoAACuDwAgKQAArw8AICoAALAPACArAACxDwAgLQAAsw8AIC4AALUPACAvAAC3DwAgMAAAuA8AIDEAALkPACAyAAC6DwAgMwAAuw8AIDQAALwPACA1AAC9DwAgNgAAvg8AIDcAAL8PACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_BgIAgwoAIcAGIAC1CgAhwQYCAIMKACHCBgIAgwoAISAFAACZEQAgBwAAmhEAIAgAAJwRACAdAAClEQAgJQAAoxEAICYAAJgRACAnAACbEQAgKAAAnREAICkAAJ4RACAqAACfEQAgKwAAoBEAICwAAKERACAuAACkEQAgLwAAphEAIDAAAKcRACAxAACoEQAgMgAAqREAIDMAAKoRACA0AACrEQAgNQAArBEAIDYAAK0RACA3AACuEQAggwUCAAAAAYYGAQAAAAGHBgEAAAABvAYgAAAAAb0GAgAAAAG-BiAAAAABvwYCAAAAAcAGIAAAAAHBBgIAAAABwgYCAAAAAQIAAAABACBEAACcEwAgAwAAAA0AIEQAAJwTACBFAACgEwAgIgAAAA0AIAUAAKoPACAHAACrDwAgCAAArQ8AIB0AALYPACAlAAC0DwAgJgAAqQ8AICcAAKwPACAoAACuDwAgKQAArw8AICoAALAPACArAACxDwAgLAAAsg8AIC4AALUPACAvAAC3DwAgMAAAuA8AIDEAALkPACAyAAC6DwAgMwAAuw8AIDQAALwPACA1AAC9DwAgNgAAvg8AIDcAAL8PACA9AACgEwAggwUCAIMKACGGBgEAggoAIYcGAQCCCgAhvAYgALUKACG9BgIAgwoAIb4GIAC1CgAhvwYCAIMKACHABiAAtQoAIcEGAgCDCgAhwgYCAIMKACEgBQAAqg8AIAcAAKsPACAIAACtDwAgHQAAtg8AICUAALQPACAmAACpDwAgJwAArA8AICgAAK4PACApAACvDwAgKgAAsA8AICsAALEPACAsAACyDwAgLgAAtQ8AIC8AALcPACAwAAC4DwAgMQAAuQ8AIDIAALoPACAzAAC7DwAgNAAAvA8AIDUAAL0PACA2AAC-DwAgNwAAvw8AIIMFAgCDCgAhhgYBAIIKACGHBgEAggoAIbwGIAC1CgAhvQYCAIMKACG-BiAAtQoAIb8GAgCDCgAhwAYgALUKACHBBgIAgwoAIcIGAgCDCgAhCwMAALsLACAEAAC8CwAgGQAAvQsAICAAAL4LACCDBQIAAAABhAUCAAAAAZgFQAAAAAGZBQEAAAABowVAAAAAAaQFAgAAAAHdBQIAAAABAgAAAG8AIEQAAKETACAeAwAAmg8AIAUAAJsPACAIAACdDwAgDAAAnw8AIBgAAJwPACAcAACeDwAgHQAAoA8AIB4AAKEPACAfAACiDwAggwUCAAAAAYQFAgAAAAGYBUAAAAABowVAAAAAAbEFAQAAAAG0BQEAAAABtgUBAAAAAdMFAAAAsQYClQZAAAAAAZsGAQAAAAGpBgEAAAABsgYBAAAAAbMGAQAAAAG0BgEAAAABtQYBAAAAAbYGAQAAAAG3BgEAAAABuAYBAAAAAbkGAQAAAAG6BgEAAAABuwYBAAAAAQIAAAAFACBEAACjEwAgIAUAAJkRACAHAACaEQAgCAAAnBEAIB0AAKURACAmAACYEQAgJwAAmxEAICgAAJ0RACApAACeEQAgKgAAnxEAICsAAKARACAsAAChEQAgLQAAohEAIC4AAKQRACAvAACmEQAgMAAApxEAIDEAAKgRACAyAACpEQAgMwAAqhEAIDQAAKsRACA1AACsEQAgNgAArREAIDcAAK4RACCDBQIAAAABhgYBAAAAAYcGAQAAAAG8BiAAAAABvQYCAAAAAb4GIAAAAAG_BgIAAAABwAYgAAAAAcEGAgAAAAHCBgIAAAABAgAAAAEAIEQAAKUTACAGgwUCAAAAAYQFAgAAAAGYBUAAAAABmQUBAAAAAaMFQAAAAAGkBQIAAAABCoMFAgAAAAGEBQIAAAABmAVAAAAAAZkFAQAAAAGjBUAAAAABygUBAAAAAcsFBAAAAAHaBSAAAAAB2wUCAAAAAdwFAQAAAAEDAAAAAwAgRAAAoxMAIEUAAKsTACAgAAAAAwAgAwAAug4AIAUAALsOACAIAAC9DgAgDAAAvw4AIBgAALwOACAcAAC-DgAgHQAAwA4AIB4AAMEOACAfAADCDgAgPQAAqxMAIIMFAgCDCgAhhAUCAIMKACGYBUAAmAoAIaMFQACYCgAhsQUBAJcKACG0BQEAlwoAIbYFAQCXCgAh0wUAAPkNsQYilQZAAMQLACGbBgEAlwoAIakGAQCCCgAhsgYBAIIKACGzBgEAggoAIbQGAQCCCgAhtQYBAJcKACG2BgEAlwoAIbcGAQCXCgAhuAYBAJcKACG5BgEAlwoAIboGAQCXCgAhuwYBAJcKACEeAwAAug4AIAUAALsOACAIAAC9DgAgDAAAvw4AIBgAALwOACAcAAC-DgAgHQAAwA4AIB4AAMEOACAfAADCDgAggwUCAIMKACGEBQIAgwoAIZgFQACYCgAhowVAAJgKACGxBQEAlwoAIbQFAQCXCgAhtgUBAJcKACHTBQAA-Q2xBiKVBkAAxAsAIZsGAQCXCgAhqQYBAIIKACGyBgEAggoAIbMGAQCCCgAhtAYBAIIKACG1BgEAlwoAIbYGAQCXCgAhtwYBAJcKACG4BgEAlwoAIbkGAQCXCgAhugYBAJcKACG7BgEAlwoAIQMAAAANACBEAAClEwAgRQAArhMAICIAAAANACAFAACqDwAgBwAAqw8AIAgAAK0PACAdAAC2DwAgJgAAqQ8AICcAAKwPACAoAACuDwAgKQAArw8AICoAALAPACArAACxDwAgLAAAsg8AIC0AALMPACAuAAC1DwAgLwAAtw8AIDAAALgPACAxAAC5DwAgMgAAug8AIDMAALsPACA0AAC8DwAgNQAAvQ8AIDYAAL4PACA3AAC_DwAgPQAArhMAIIMFAgCDCgAhhgYBAIIKACGHBgEAggoAIbwGIAC1CgAhvQYCAIMKACG-BiAAtQoAIb8GAgCDCgAhwAYgALUKACHBBgIAgwoAIcIGAgCDCgAhIAUAAKoPACAHAACrDwAgCAAArQ8AIB0AALYPACAmAACpDwAgJwAArA8AICgAAK4PACApAACvDwAgKgAAsA8AICsAALEPACAsAACyDwAgLQAAsw8AIC4AALUPACAvAAC3DwAgMAAAuA8AIDEAALkPACAyAAC6DwAgMwAAuw8AIDQAALwPACA1AAC9DwAgNgAAvg8AIDcAAL8PACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_BgIAgwoAIcAGIAC1CgAhwQYCAIMKACHCBgIAgwoAIQMAAABtACBEAAChEwAgRQAAsRMAIA0AAABtACADAACfCwAgBAAAoAsAIBkAAKELACAgAACdCwAgPQAAsRMAIIMFAgCDCgAhhAUCAIMKACGYBUAAmAoAIZkFAQCCCgAhowVAAJgKACGkBQIA9AoAId0FAgD0CgAhCwMAAJ8LACAEAACgCwAgGQAAoQsAICAAAJ0LACCDBQIAgwoAIYQFAgCDCgAhmAVAAJgKACGZBQEAggoAIaMFQACYCgAhpAUCAPQKACHdBQIA9AoAIQsDAAC7CwAgBAAAvAsAICAAAL4LACAhAAC6CwAggwUCAAAAAYQFAgAAAAGYBUAAAAABmQUBAAAAAaMFQAAAAAGkBQIAAAAB3QUCAAAAAQIAAABvACBEAACyEwAgIAUAAJkRACAHAACaEQAgCAAAnBEAIB0AAKURACAlAACjEQAgJgAAmBEAICcAAJsRACAoAACdEQAgKQAAnhEAICoAAJ8RACArAACgEQAgLAAAoREAIC0AAKIRACAvAACmEQAgMAAApxEAIDEAAKgRACAyAACpEQAgMwAAqhEAIDQAAKsRACA1AACsEQAgNgAArREAIDcAAK4RACCDBQIAAAABhgYBAAAAAYcGAQAAAAG8BiAAAAABvQYCAAAAAb4GIAAAAAG_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_DwAgPQAAyBMAIIMFAgCDCgAhhgYBAIIKACGHBgEAggoAIbwGIAC1CgAhvQYCAIMKACG-BiAAtQoAIb8GAgCDCgAhwAYgALUKACHBBgIAgwoAIcIGAgCDCgAhIAUAAKoPACAHAACrDwAgCAAArQ8AICUAALQPACAmAACpDwAgJwAArA8AICgAAK4PACApAACvDwAgKgAAsA8AICsAALEPACAsAACyDwAgLQAAsw8AIC4AALUPACAvAAC3DwAgMAAAuA8AIDEAALkPACAyAAC6DwAgMwAAuw8AIDQAALwPACA1AAC9DwAgNgAAvg8AIDcAAL8PACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_BgIAgwoAIcAGIAC1CgAhwQYCAIMKACHCBgIAgwoAIQMAAAADACBEAADEEwAgRQAAyxMAICAAAAADACADAAC6DgAgBQAAuw4AIAgAAL0OACAMAAC_DgAgGAAAvA4AIBwAAL4OACAeAADBDgAgHwAAwg4AICUAAMMOACA9AADLEwAggwUCAIMKACGEBQIAgwoAIZgFQACYCgAhowVAAJgKACGxBQEAlwoAIbQFAQCXCgAhtgUBAJcKACHTBQAA-Q2xBiKVBkAAxAsAIZsGAQCXCgAhqQYBAIIKACGyBgEAggoAIbMGAQCCCgAhtAYBAIIKACG1BgEAlwoAIbYGAQCXCgAhtwYBAJcKACG4BgEAlwoAIbkGAQCXCgAhugYBAJcKACG7BgEAlwoAIR4DAAC6DgAgBQAAuw4AIAgAAL0OACAMAAC_DgAgGAAAvA4AIBwAAL4OACAeAADBDgAgHwAAwg4AICUAAMMOACCDBQIAgwoAIYQFAgCDCgAhmAVAAJgKACGjBUAAmAoAIbEFAQCXCgAhtAUBAJcKACG2BQEAlwoAIdMFAAD5DbEGIpUGQADECwAhmwYBAJcKACGpBgEAggoAIbIGAQCCCgAhswYBAIIKACG0BgEAggoAIbUGAQCXCgAhtgYBAJcKACG3BgEAlwoAIbgGAQCXCgAhuQYBAJcKACG6BgEAlwoAIbsGAQCXCgAhHgMAAJoPACAFAACbDwAgCAAAnQ8AIAwAAJ8PACAYAACcDwAgHAAAng8AIB0AAKAPACAfAACiDwAgJQAAow8AIIMFAgAAAAGEBQIAAAABmAVAAAAAAaMFQAAAAAGxBQEAAAABtAUBAAAAAbYFAQAAAAHTBQAAALEGApUGQAAAAAGbBgEAAAABqQYBAAAAAbIGAQAAAAGzBgEAAAABtAYBAAAAAbUGAQAAAAG2BgEAAAABtwYBAAAAAbgGAQAAAAG5BgEAAAABugYBAAAAAbsGAQAAAAECAAAABQAgRAAAzBMAIAMAAAADACBEAADMEwAgRQAA0BMAICAAAAADACADAAC6DgAgBQAAuw4AIAgAAL0OACAMAAC_DgAgGAAAvA4AIBwAAL4OACAdAADADgAgHwAAwg4AICUAAMMOACA9AADQEwAggwUCAIMKACGEBQIAgwoAIZgFQACYCgAhowVAAJgKACGxBQEAlwoAIbQFAQCXCgAhtgUBAJcKACHTBQAA-Q2xBiKVBkAAxAsAIZsGAQCXCgAhqQYBAIIKACGyBgEAggoAIbMGAQCCCgAhtAYBAIIKACG1BgEAlwoAIbYGAQCXCgAhtwYBAJcKACG4BgEAlwoAIbkGAQCXCgAhugYBAJcKACG7BgEAlwoAIR4DAAC6DgAgBQAAuw4AIAgAAL0OACAMAAC_DgAgGAAAvA4AIBwAAL4OACAdAADADgAgHwAAwg4AICUAAMMOACCDBQIAgwoAIYQFAgCDCgAhmAVAAJgKACGjBUAAmAoAIbEFAQCXCgAhtAUBAJcKACG2BQEAlwoAIdMFAAD5DbEGIpUGQADECwAhmwYBAJcKACGpBgEAggoAIbIGAQCCCgAhswYBAIIKACG0BgEAggoAIbUGAQCXCgAhtgYBAJcKACG3BgEAlwoAIbgGAQCXCgAhuQYBAJcKACG6BgEAlwoAIbsGAQCXCgAhIAUAAJkRACAHAACaEQAgCAAAnBEAIB0AAKURACAlAACjEQAgJgAAmBEAICcAAJsRACAoAACdEQAgKQAAnhEAICoAAJ8RACArAACgEQAgLAAAoREAIC0AAKIRACAuAACkEQAgMAAApxEAIDEAAKgRACAyAACpEQAgMwAAqhEAIDQAAKsRACA1AACsEQAgNgAArREAIDcAAK4RACCDBQIAAAABhgYBAAAAAYcGAQAAAAG8BiAAAAABvQYCAAAAAb4GIAAAAAG_BgIAAAABwAYgAAAAAcEGAgAAAAHCBgIAAAABAgAAAAEAIEQAANETACADAAAADQAgRAAA0RMAIEUAANUTACAiAAAADQAgBQAAqg8AIAcAAKsPACAIAACtDwAgHQAAtg8AICUAALQPACAmAACpDwAgJwAArA8AICgAAK4PACApAACvDwAgKgAAsA8AICsAALEPACAsAACyDwAgLQAAsw8AIC4AALUPACAwAAC4DwAgMQAAuQ8AIDIAALoPACAzAAC7DwAgNAAAvA8AIDUAAL0PACA2AAC-DwAgNwAAvw8AID0AANUTACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_BgIAgwoAIcAGIAC1CgAhwQYCAIMKACHCBgIAgwoAISAFAACqDwAgBwAAqw8AIAgAAK0PACAdAAC2DwAgJQAAtA8AICYAAKkPACAnAACsDwAgKAAArg8AICkAAK8PACAqAACwDwAgKwAAsQ8AICwAALIPACAtAACzDwAgLgAAtQ8AIDAAALgPACAxAAC5DwAgMgAAug8AIDMAALsPACA0AAC8DwAgNQAAvQ8AIDYAAL4PACA3AAC_DwAggwUCAIMKACGGBgEAggoAIYcGAQCCCgAhvAYgALUKACG9BgIAgwoAIb4GIAC1CgAhvwYCAIMKACHABiAAtQoAIcEGAgCDCgAhwgYCAIMKACEgBQAAmREAIAcAAJoRACAIAACcEQAgHQAApREAICUAAKMRACAmAACYEQAgJwAAmxEAICgAAJ0RACApAACeEQAgKgAAnxEAICsAAKARACAsAAChEQAgLQAAohEAIC4AAKQRACAvAACmEQAgMQAAqBEAIDIAAKkRACAzAACqEQAgNAAAqxEAIDUAAKwRACA2AACtEQAgNwAArhEAIIMFAgAAAAGGBgEAAAABhwYBAAAAAbwGIAAAAAG9BgIAAAABvgYgAAAAAb8GAgAAAAHABiAAAAABwQYCAAAAAcIGAgAAAAECAAAAAQAgRAAA1hMAIAMAAAANACBEAADWEwAgRQAA2hMAICIAAAANACAFAACqDwAgBwAAqw8AIAgAAK0PACAdAAC2DwAgJQAAtA8AICYAAKkPACAnAACsDwAgKAAArg8AICkAAK8PACAqAACwDwAgKwAAsQ8AICwAALIPACAtAACzDwAgLgAAtQ8AIC8AALcPACAxAAC5DwAgMgAAug8AIDMAALsPACA0AAC8DwAgNQAAvQ8AIDYAAL4PACA3AAC_DwAgPQAA2hMAIIMFAgCDCgAhhgYBAIIKACGHBgEAggoAIbwGIAC1CgAhvQYCAIMKACG-BiAAtQoAIb8GAgCDCgAhwAYgALUKACHBBgIAgwoAIcIGAgCDCgAhIAUAAKoPACAHAACrDwAgCAAArQ8AIB0AALYPACAlAAC0DwAgJgAAqQ8AICcAAKwPACAoAACuDwAgKQAArw8AICoAALAPACArAACxDwAgLAAAsg8AIC0AALMPACAuAAC1DwAgLwAAtw8AIDEAALkPACAyAAC6DwAgMwAAuw8AIDQAALwPACA1AAC9DwAgNgAAvg8AIDcAAL8PACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_BgIAgwoAIcAGIAC1CgAhwQYCAIMKACHCBgIAgwoAISAFAACZEQAgBwAAmhEAIAgAAJwRACAdAAClEQAgJQAAoxEAICYAAJgRACAnAACbEQAgKAAAnREAICkAAJ4RACAqAACfEQAgKwAAoBEAICwAAKERACAtAACiEQAgLgAApBEAIC8AAKYRACAwAACnEQAgMgAAqREAIDMAAKoRACA0AACrEQAgNQAArBEAIDYAAK0RACA3AACuEQAggwUCAAAAAYYGAQAAAAGHBgEAAAABvAYgAAAAAb0GAgAAAAG-BiAAAAABvwYCAAAAAcAGIAAAAAHBBgIAAAABwgYCAAAAAQIAAAABACBEAADbEwAgAwAAAA0AIEQAANsTACBFAADfEwAgIgAAAA0AIAUAAKoPACAHAACrDwAgCAAArQ8AIB0AALYPACAlAAC0DwAgJgAAqQ8AICcAAKwPACAoAACuDwAgKQAArw8AICoAALAPACArAACxDwAgLAAAsg8AIC0AALMPACAuAAC1DwAgLwAAtw8AIDAAALgPACAyAAC6DwAgMwAAuw8AIDQAALwPACA1AAC9DwAgNgAAvg8AIDcAAL8PACA9AADfEwAggwUCAIMKACGGBgEAggoAIYcGAQCCCgAhvAYgALUKACG9BgIAgwoAIb4GIAC1CgAhvwYCAIMKACHABiAAtQoAIcEGAgCDCgAhwgYCAIMKACEgBQAAqg8AIAcAAKsPACAIAACtDwAgHQAAtg8AICUAALQPACAmAACpDwAgJwAArA8AICgAAK4PACApAACvDwAgKgAAsA8AICsAALEPACAsAACyDwAgLQAAsw8AIC4AALUPACAvAAC3DwAgMAAAuA8AIDIAALoPACAzAAC7DwAgNAAAvA8AIDUAAL0PACA2AAC-DwAgNwAAvw8AIIMFAgCDCgAhhgYBAIIKACGHBgEAggoAIbwGIAC1CgAhvQYCAIMKACG-BiAAtQoAIb8GAgCDCgAhwAYgALUKACHBBgIAgwoAIcIGAgCDCgAhIAUAAJkRACAHAACaEQAgCAAAnBEAIB0AAKURACAlAACjEQAgJgAAmBEAICcAAJsRACAoAACdEQAgKQAAnhEAICoAAJ8RACArAACgEQAgLAAAoREAIC0AAKIRACAuAACkEQAgLwAAphEAIDAAAKcRACAxAACoEQAgMwAAqhEAIDQAAKsRACA1AACsEQAgNgAArREAIDcAAK4RACCDBQIAAAABhgYBAAAAAYcGAQAAAAG8BiAAAAABvQYCAAAAAb4GIAAAAAG_BgIAAAABwAYgAAAAAcEGAgAAAAHCBgIAAAABAgAAAAEAIEQAAOATACADAAAADQAgRAAA4BMAIEUAAOQTACAiAAAADQAgBQAAqg8AIAcAAKsPACAIAACtDwAgHQAAtg8AICUAALQPACAmAACpDwAgJwAArA8AICgAAK4PACApAACvDwAgKgAAsA8AICsAALEPACAsAACyDwAgLQAAsw8AIC4AALUPACAvAAC3DwAgMAAAuA8AIDEAALkPACAzAAC7DwAgNAAAvA8AIDUAAL0PACA2AAC-DwAgNwAAvw8AID0AAOQTACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_BgIAgwoAIcAGIAC1CgAhwQYCAIMKACHCBgIAgwoAISAFAACqDwAgBwAAqw8AIAgAAK0PACAdAAC2DwAgJQAAtA8AICYAAKkPACAnAACsDwAgKAAArg8AICkAAK8PACAqAACwDwAgKwAAsQ8AICwAALIPACAtAACzDwAgLgAAtQ8AIC8AALcPACAwAAC4DwAgMQAAuQ8AIDMAALsPACA0AAC8DwAgNQAAvQ8AIDYAAL4PACA3AAC_DwAggwUCAIMKACGGBgEAggoAIYcGAQCCCgAhvAYgALUKACG9BgIAgwoAIb4GIAC1CgAhvwYCAIMKACHABiAAtQoAIcEGAgCDCgAhwgYCAIMKACEgBQAAmREAIAcAAJoRACAIAACcEQAgHQAApREAICUAAKMRACAmAACYEQAgJwAAmxEAICgAAJ0RACApAACeEQAgKgAAnxEAICsAAKARACAsAAChEQAgLQAAohEAIC4AAKQRACAvAACmEQAgMAAApxEAIDEAAKgRACAyAACpEQAgMwAAqhEAIDUAAKwRACA2AACtEQAgNwAArhEAIIMFAgAAAAGGBgEAAAABhwYBAAAAAbwGIAAAAAG9BgIAAAABvgYgAAAAAb8GAgAAAAHABiAAAAABwQYCAAAAAcIGAgAAAAECAAAAAQAgRAAA5RMAIAMAAAANACBEAADlEwAgRQAA6RMAICIAAAANACAFAACqDwAgBwAAqw8AIAgAAK0PACAdAAC2DwAgJQAAtA8AICYAAKkPACAnAACsDwAgKAAArg8AICkAAK8PACAqAACwDwAgKwAAsQ8AICwAALIPACAtAACzDwAgLgAAtQ8AIC8AALcPACAwAAC4DwAgMQAAuQ8AIDIAALoPACAzAAC7DwAgNQAAvQ8AIDYAAL4PACA3AAC_DwAgPQAA6RMAIIMFAgCDCgAhhgYBAIIKACGHBgEAggoAIbwGIAC1CgAhvQYCAIMKACG-BiAAtQoAIb8GAgCDCgAhwAYgALUKACHBBgIAgwoAIcIGAgCDCgAhIAUAAKoPACAHAACrDwAgCAAArQ8AIB0AALYPACAlAAC0DwAgJgAAqQ8AICcAAKwPACAoAACuDwAgKQAArw8AICoAALAPACArAACxDwAgLAAAsg8AIC0AALMPACAuAAC1DwAgLwAAtw8AIDAAALgPACAxAAC5DwAgMgAAug8AIDMAALsPACA1AAC9DwAgNgAAvg8AIDcAAL8PACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_BgIAgwoAIcAGIAC1CgAhwQYCAIMKACHCBgIAgwoAISAFAACZEQAgBwAAmhEAIAgAAJwRACAdAAClEQAgJQAAoxEAICYAAJgRACAnAACbEQAgKAAAnREAICkAAJ4RACAqAACfEQAgKwAAoBEAICwAAKERACAtAACiEQAgLgAApBEAIC8AAKYRACAwAACnEQAgMQAAqBEAIDIAAKkRACA0AACrEQAgNQAArBEAIDYAAK0RACA3AACuEQAggwUCAAAAAYYGAQAAAAGHBgEAAAABvAYgAAAAAb0GAgAAAAG-BiAAAAABvwYCAAAAAcAGIAAAAAHBBgIAAAABwgYCAAAAAQIAAAABACBEAADqEwAgAwAAAA0AIEQAAOoTACBFAADuEwAgIgAAAA0AIAUAAKoPACAHAACrDwAgCAAArQ8AIB0AALYPACAlAAC0DwAgJgAAqQ8AICcAAKwPACAoAACuDwAgKQAArw8AICoAALAPACArAACxDwAgLAAAsg8AIC0AALMPACAuAAC1DwAgLwAAtw8AIDAAALgPACAxAAC5DwAgMgAAug8AIDQAALwPACA1AAC9DwAgNgAAvg8AIDcAAL8PACA9AADuEwAggwUCAIMKACGGBgEAggoAIYcGAQCCCgAhvAYgALUKACG9BgIAgwoAIb4GIAC1CgAhvwYCAIMKACHABiAAtQoAIcEGAgCDCgAhwgYCAIMKACEgBQAAqg8AIAcAAKsPACAIAACtDwAgHQAAtg8AICUAALQPACAmAACpDwAgJwAArA8AICgAAK4PACApAACvDwAgKgAAsA8AICsAALEPACAsAACyDwAgLQAAsw8AIC4AALUPACAvAAC3DwAgMAAAuA8AIDEAALkPACAyAAC6DwAgNAAAvA8AIDUAAL0PACA2AAC-DwAgNwAAvw8AIIMFAgCDCgAhhgYBAIIKACGHBgEAggoAIbwGIAC1CgAhvQYCAIMKACG-BiAAtQoAIb8GAgCDCgAhwAYgALUKACHBBgIAgwoAIcIGAgCDCgAhIAUAAJkRACAHAACaEQAgCAAAnBEAIB0AAKURACAlAACjEQAgJgAAmBEAICcAAJsRACAoAACdEQAgKQAAnhEAICoAAJ8RACArAACgEQAgLAAAoREAIC0AAKIRACAuAACkEQAgLwAAphEAIDAAAKcRACAxAACoEQAgMgAAqREAIDMAAKoRACA0AACrEQAgNgAArREAIDcAAK4RACCDBQIAAAABhgYBAAAAAYcGAQAAAAG8BiAAAAABvQYCAAAAAb4GIAAAAAG_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-RMAIAMAAAANACBEAAD5EwAgRQAA_RMAICIAAAANACAFAACqDwAgBwAAqw8AIAgAAK0PACAdAAC2DwAgJQAAtA8AICYAAKkPACAnAACsDwAgKAAArg8AICkAAK8PACAqAACwDwAgKwAAsQ8AICwAALIPACAtAACzDwAgLgAAtQ8AIC8AALcPACAwAAC4DwAgMQAAuQ8AIDIAALoPACAzAAC7DwAgNAAAvA8AIDUAAL0PACA3AAC_DwAgPQAA_RMAIIMFAgCDCgAhhgYBAIIKACGHBgEAggoAIbwGIAC1CgAhvQYCAIMKACG-BiAAtQoAIb8GAgCDCgAhwAYgALUKACHBBgIAgwoAIcIGAgCDCgAhIAUAAKoPACAHAACrDwAgCAAArQ8AIB0AALYPACAlAAC0DwAgJgAAqQ8AICcAAKwPACAoAACuDwAgKQAArw8AICoAALAPACArAACxDwAgLAAAsg8AIC0AALMPACAuAAC1DwAgLwAAtw8AIDAAALgPACAxAAC5DwAgMgAAug8AIDMAALsPACA0AAC8DwAgNQAAvQ8AIDcAAL8PACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_BgIAgwoAIcAGIAC1CgAhwQYCAIMKACHCBgIAgwoAIQoDAADZDQAgCAAA2g0AIBQAANsNACAWAADdDQAggwUCAAAAAYQFAgAAAAGYBUAAAAABogUCAAAAAaYGAQAAAAGnBgEAAAABAgAAAI0BACBEAAD-EwAgA4MFAgAAAAGSBQIAAAABkwUQAAAAAQMAAAAXACBEAAD-EwAgRQAAgxQAIAwAAAAXACADAACkDQAgCAAApQ0AIBQAAKYNACAWAACoDQAgPQAAgxQAIIMFAgCDCgAhhAUCAIMKACGYBUAAmAoAIaIFAgCDCgAhpgYBAIIKACGnBgEAggoAIQoDAACkDQAgCAAApQ0AIBQAAKYNACAWAACoDQAggwUCAIMKACGEBQIAgwoAIZgFQACYCgAhogUCAIMKACGmBgEAggoAIacGAQCCCgAhGAQAAKMMACAJAACiDAAgCgAApAwAIAsAAKUMACANAACmDAAgEAAApwwAIIMFAgAAAAGEBQIAAAABlAUCAAAAAZcFAQAAAAGYBUAAAAABowVAAAAAAaQFAgAAAAHTBQAAAPsFAvEFAgAAAAHyBQIAAAAB8wUQAAAAAfQFEAAAAAH1BRAAAAAB9gUQAAAAAfcFEAAAAAH4BRAAAAAB-QUQAAAAAfsFAQAAAAECAAAAHAAgRAAAhBQAIAcLAACnCgAggwUCAAAAAZQFAgAAAAGVBRAAAAABlgUQAAAAAZcFAQAAAAGYBUAAAAABAgAAADgAIEQAAIYUACADAAAAGgAgRAAAhBQAIEUAAIoUACAaAAAAGgAgBAAA7QsAIAkAAOwLACAKAADuCwAgCwAA7wsAIA0AAPALACAQAADxCwAgPQAAihQAIIMFAgCDCgAhhAUCAIMKACGUBQIA9AoAIZcFAQCXCgAhmAVAAJgKACGjBUAAmAoAIaQFAgCDCgAh0wUAAOsL-wUi8QUCAPQKACHyBQIA9AoAIfMFEACMCgAh9AUQAIwKACH1BRAAjAoAIfYFEACMCgAh9wUQAOoLACH4BRAAjAoAIfkFEACMCgAh-wUBAJcKACEYBAAA7QsAIAkAAOwLACAKAADuCwAgCwAA7wsAIA0AAPALACAQAADxCwAggwUCAIMKACGEBQIAgwoAIZQFAgD0CgAhlwUBAJcKACGYBUAAmAoAIaMFQACYCgAhpAUCAIMKACHTBQAA6wv7BSLxBQIA9AoAIfIFAgD0CgAh8wUQAIwKACH0BRAAjAoAIfUFEACMCgAh9gUQAIwKACH3BRAA6gsAIfgFEACMCgAh-QUQAIwKACH7BQEAlwoAIQMAAAA2ACBEAACGFAAgRQAAjRQAIAkAAAA2ACALAACZCgAgPQAAjRQAIIMFAgCDCgAhlAUCAIMKACGVBRAAjAoAIZYFEACMCgAhlwUBAJcKACGYBUAAmAoAIQcLAACZCgAggwUCAIMKACGUBQIAgwoAIZUFEACMCgAhlgUQAIwKACGXBQEAlwoAIZgFQACYCgAhIAUAAJkRACAHAACaEQAgCAAAnBEAIB0AAKURACAlAACjEQAgJgAAmBEAICcAAJsRACAoAACdEQAgKQAAnhEAICoAAJ8RACArAACgEQAgLAAAoREAIC0AAKIRACAuAACkEQAgLwAAphEAIDAAAKcRACAxAACoEQAgMgAAqREAIDMAAKoRACA0AACrEQAgNQAArBEAIDYAAK0RACCDBQIAAAABhgYBAAAAAYcGAQAAAAG8BiAAAAABvQYCAAAAAb4GIAAAAAG_BgIAAAABwAYgAAAAAcEGAgAAAAHCBgIAAAABAgAAAAEAIEQAAI4UACADAAAADQAgRAAAjhQAIEUAAJIUACAiAAAADQAgBQAAqg8AIAcAAKsPACAIAACtDwAgHQAAtg8AICUAALQPACAmAACpDwAgJwAArA8AICgAAK4PACApAACvDwAgKgAAsA8AICsAALEPACAsAACyDwAgLQAAsw8AIC4AALUPACAvAAC3DwAgMAAAuA8AIDEAALkPACAyAAC6DwAgMwAAuw8AIDQAALwPACA1AAC9DwAgNgAAvg8AID0AAJIUACCDBQIAgwoAIYYGAQCCCgAhhwYBAIIKACG8BiAAtQoAIb0GAgCDCgAhvgYgALUKACG_BgIAgwoAIcAGIAC1CgAhwQYCAIMKACHCBgIAgwoAISAFAACqDwAgBwAAqw8AIAgAAK0PACAdAAC2DwAgJQAAtA8AICYAAKkPACAnAACsDwAgKAAArg8AICkAAK8PACAqAACwDwAgKwAAsQ8AICwAALIPACAtAACzDwAgLgAAtQ8AIC8AALcPACAwAAC4DwAgMQAAuQ8AIDIAALoPACAzAAC7DwAgNAAAvA8AIDUAAL0PACA2AAC-DwAggwUCAIMKACGGBgEAggoAIYcGAQCCCgAhvAYgALUKACG9BgIAgwoAIb4GIAC1CgAhvwYCAIMKACHABiAAtQoAIcEGAgCDCgAhwgYCAIMKACEYBYgBAweLAQQIjwEFDgAvHacBGSWlARwmBgInjgEGKJMBIimXASMqmAEHK5wBJCygASUtpAEmLqYBHS-pAScwqwEoMa0BKTKvASozsQErNLUBLDW4ARs2vAEtN74BLgsDAAEFCgMIVwUMYQcOACEYVg8cWxYdZRkeahofbBslcBwHAwABBAACBwwECE4FDgAVGE0PGVIUBAMOAQUPAwgTBQ4AEwkDFQEEAAIGFAMHFgQLGAYMSAcOABIQQwkXRxEGAwABCBkFDgAQFB0HFTkMFj0PCAQAAgkeBQofAQsgBg0kCA4ADhAsCRMwCwIMAAcPAAkECSUFDCYHDScIDgAKAQ0oAAIMAAcSAAwDCwAGDgANETELAREyAAMNMwAQNAATNQADBAACBgADCz4GBAg_ABRAABVBABZCAAEJAAUCEEkAF0oAAgVLAAhMAAEGAAMDCFQAGFMAGVUAAwQAAg4AGBtfFwEaABYBG2AAAgNmAQQAAgEEAAICAwABBAACBgMAAQRzAg4AIBl3HSBxHCFyHAQDAAEOAB8ieBwkfB4BIwAdASR9AAIZfwAhfgAIBYABAAiCAQAMhAEAGIEBAByDAQAdhQEAHoYBACWHAQABAwABAQMAAQEDAAEBAwABAQMAAQEDAAEBAwABAQMAAQEDAAEBAwABAQMAAQEDAAEBAwABEQXAAQAHwQEACMMBAB3MAQAlygEAJr8BACfCAQAoxAEAKcUBACrGAQArxwEALMgBAC3JAQAuywEANM0BADXOAQA2zwEAAAAABQ4ANEoANUsANkwAN00AOAAAAAAABQ4ANEoANUsANkwAN00AOAEDAAEBAwABBQ4APUoAPksAP0wAQE0AQQAAAAAABQ4APUoAPksAP0wAQE0AQQMDAAEEAAIHhgIEAwMAAQQAAgeMAgQFDgBGSgBHSwBITABJTQBKAAAAAAAFDgBGSgBHSwBITABJTQBKAQYAAwEGAAMFDgBPSgBQSwBRTABSTQBTAAAAAAAFDgBPSgBQSwBRTABSTQBTAQO0AgEBA7oCAQUOAFhKAFlLAFpMAFtNAFwAAAAAAAUOAFhKAFlLAFpMAFtNAFwBAwABAQMAAQUOAGFKAGJLAGNMAGRNAGUAAAAAAAUOAGFKAGJLAGNMAGRNAGUDBAACBgADC-ICBgMEAAIGAAML6AIGBQ4AakoAa0sAbEwAbU0AbgAAAAAABQ4AakoAa0sAbEwAbU0AbgUD-wIBBAACBvoCAwf8AgQL_QIGBQOEAwEEAAIGgwMDB4UDBAuGAwYFDgBzSgB0SwB1TAB2TQB3AAAAAAAFDgBzSgB0SwB1TAB2TQB3AgmYAwUMmQMHAgmfAwUMoAMHBQ4AfEoAfUsAfkwAf00AgAEAAAAAAAUOAHxKAH1LAH5MAH9NAIABAQkABQEJAAUFDgCFAUoAhgFLAIcBTACIAU0AiQEAAAAAAAUOAIUBSgCGAUsAhwFMAIgBTQCJAQEDAAEBAwABBQ4AjgFKAI8BSwCQAUwAkQFNAJIBAAAAAAAFDgCOAUoAjwFLAJABTACRAU0AkgEBAwABAQMAAQUOAJcBSgCYAUsAmQFMAJoBTQCbAQAAAAAABQ4AlwFKAJgBSwCZAUwAmgFNAJsBAQQAAgEEAAIFDgCgAUoAoQFLAKIBTACjAU0ApAEAAAAAAAUOAKABSgChAUsAogFMAKMBTQCkAQEaABYBGgAWBQ4AqQFKAKoBSwCrAUwArAFNAK0BAAAAAAAFDgCpAUoAqgFLAKsBTACsAU0ArQEEBAACCaAEBQqhBAELogQGBAQAAgmoBAUKqQQBC6oEBgUOALIBSgCzAUsAtAFMALUBTQC2AQAAAAAABQ4AsgFKALMBSwC0AUwAtQFNALYBAgwABw8ACQIMAAcPAAkFDgC7AUoAvAFLAL0BTAC-AU0AvwEAAAAAAAUOALsBSgC8AUsAvQFMAL4BTQC_AQEDAAEBAwABBQ4AxAFKAMUBSwDGAUwAxwFNAMgBAAAAAAAFDgDEAUoAxQFLAMYBTADHAU0AyAEBAwABAQMAAQUOAM0BSgDOAUsAzwFMANABTQDRAQAAAAAABQ4AzQFKAM4BSwDPAUwA0AFNANEBAQMAAQEDAAEFDgDWAUoA1wFLANgBTADZAU0A2gEAAAAAAAUOANYBSgDXAUsA2AFMANkBTQDaAQAAAAUOAOABSgDhAUsA4gFMAOMBTQDkAQAAAAAABQ4A4AFKAOEBSwDiAUwA4wFNAOQBAwMAAQSuBQIgrQUcAwMAAQS1BQIgtAUcBQ4A6QFKAOoBSwDrAUwA7AFNAO0BAAAAAAAFDgDpAUoA6gFLAOsBTADsAU0A7QECAwABIscFHAIDAAEizQUcBQ4A8gFKAPMBSwD0AUwA9QFNAPYBAAAAAAAFDgDyAUoA8wFLAPQBTAD1AU0A9gEBIwAdASMAHQUOAPsBSgD8AUsA_QFMAP4BTQD_AQAAAAAABQ4A-wFKAPwBSwD9AUwA_gFNAP8BAgP1BQEEAAICA_sFAQQAAgUOAIQCSgCFAksAhgJMAIcCTQCIAgAAAAAABQ4AhAJKAIUCSwCGAkwAhwJNAIgCAQQAAgEEAAIFDgCNAkoAjgJLAI8CTACQAk0AkQIAAAAAAAUOAI0CSgCOAksAjwJMAJACTQCRAgEDAAEBAwABBQ4AlgJKAJcCSwCYAkwAmQJNAJoCAAAAAAAFDgCWAkoAlwJLAJgCTACZAk0AmgIBAwABAQMAAQUOAJ8CSgCgAksAoQJMAKICTQCjAgAAAAAABQ4AnwJKAKACSwChAkwAogJNAKMCAQMAAQEDAAEFDgCoAkoAqQJLAKoCTACrAk0ArAIAAAAAAAUOAKgCSgCpAksAqgJMAKsCTQCsAgEDAAEBAwABBQ4AsQJKALICSwCzAkwAtAJNALUCAAAAAAAFDgCxAkoAsgJLALMCTAC0Ak0AtQIBAwABAQMAAQUOALoCSgC7AksAvAJMAL0CTQC-AgAAAAAABQ4AugJKALsCSwC8AkwAvQJNAL4CAQMAAQEDAAEFDgDDAkoAxAJLAMUCTADGAk0AxwIAAAAAAAUOAMMCSgDEAksAxQJMAMYCTQDHAgIDAAEEAAICAwABBAACBQ4AzAJKAM0CSwDOAkwAzwJNANACAAAAAAAFDgDMAkoAzQJLAM4CTADPAk0A0AIBAwABAQMAAQUOANUCSgDWAksA1wJMANgCTQDZAgAAAAAABQ4A1QJKANYCSwDXAkwA2AJNANkCAQsABgELAAYFDgDeAkoA3wJLAOACTADhAk0A4gIAAAAAAAUOAN4CSgDfAksA4AJMAOECTQDiAgIMAAcSAAwCDAAHEgAMBQ4A5wJKAOgCSwDpAkwA6gJNAOsCAAAAAAAFDgDnAkoA6AJLAOkCTADqAk0A6wIBAwABAQMAAQUOAPACSgDxAksA8gJMAPMCTQD0AgAAAAAABQ4A8AJKAPECSwDyAkwA8wJNAPQCOAIBOdABATrSAQE70wEBPNQBAT7WAQE_2AEwQNkBMUHbAQFC3QEwQ94BMkbfAQFH4AEBSOEBME7kATNP5QE5UOYBAlHnAQJS6AECU-kBAlTqAQJV7AECVu4BMFfvATpY8QECWfMBMFr0ATtb9QECXPYBAl33ATBe-gE8X_sBQmD8AQNh_QEDYv4BA2P_AQNkgAIDZYICA2aEAjBnhQJDaIgCA2mKAjBqiwJEa40CA2yOAgNtjwIwbpICRW-TAktwlAIUcZUCFHKWAhRzlwIUdJgCFHWaAhR2nAIwd50CTHifAhR5oQIweqICTXujAhR8pAIUfaUCMH6oAk5_qQJUgAGqAgSBAasCBIIBrAIEgwGtAgSEAa4CBIUBsAIEhgGyAjCHAbMCVYgBtgIEiQG4AjCKAbkCVosBuwIEjAG8AgSNAb0CMI4BwAJXjwHBAl2QAcICBpEBwwIGkgHEAgaTAcUCBpQBxgIGlQHIAgaWAcoCMJcBywJemAHNAgaZAc8CMJoB0AJfmwHRAgacAdICBp0B0wIwngHWAmCfAdcCZqAB2AIPoQHZAg-iAdoCD6MB2wIPpAHcAg-lAd4CD6YB4AIwpwHhAmeoAeQCD6kB5gIwqgHnAmirAekCD6wB6gIPrQHrAjCuAe4Caa8B7wJvsAHwAgWxAfECBbIB8gIFswHzAgW0AfQCBbUB9gIFtgH4AjC3AfkCcLgB_wIFuQGBAzC6AYIDcbsBhwMFvAGIAwW9AYkDML4BjANyvwGNA3jAAY4DCcEBjwMJwgGQAwnDAZEDCcQBkgMJxQGUAwnGAZYDMMcBlwN5yAGbAwnJAZ0DMMoBngN6ywGhAwnMAaIDCc0BowMwzgGmA3vPAacDgQHQAagDEdEBqQMR0gGqAxHTAasDEdQBrAMR1QGuAxHWAbADMNcBsQOCAdgBswMR2QG1AzDaAbYDgwHbAbcDEdwBuAMR3QG5AzDeAbwDhAHfAb0DigHgAb4DIuEBvwMi4gHAAyLjAcEDIuQBwgMi5QHEAyLmAcYDMOcBxwOLAegByQMi6QHLAzDqAcwDjAHrAc0DIuwBzgMi7QHPAzDuAdIDjQHvAdMDkwHwAdQDI_EB1QMj8gHWAyPzAdcDI_QB2AMj9QHaAyP2AdwDMPcB3QOUAfgB3wMj-QHhAzD6AeIDlQH7AeMDI_wB5AMj_QHlAzD-AegDlgH_AekDnAGAAuoDFoEC6wMWggLsAxaDAu0DFoQC7gMWhQLwAxaGAvIDMIcC8wOdAYgC9QMWiQL3AzCKAvgDngGLAvkDFowC-gMWjQL7AzCOAv4DnwGPAv8DpQGQAoAEF5ECgQQXkgKCBBeTAoMEF5QChAQXlQKGBBeWAogEMJcCiQSmAZgCiwQXmQKNBDCaAo4EpwGbAo8EF5wCkAQXnQKRBDCeApQEqAGfApUErgGgApYEB6EClwQHogKYBAejApkEB6QCmgQHpQKcBAemAp4EMKcCnwSvAagCpAQHqQKmBDCqAqcEsAGrAqsEB6wCrAQHrQKtBDCuArAEsQGvArEEtwGwArIECLECswQIsgK0BAizArUECLQCtgQItQK4BAi2AroEMLcCuwS4AbgCvQQIuQK_BDC6AsAEuQG7AsEECLwCwgQIvQLDBDC-AsYEugG_AscEwAHAAsgEJMECyQQkwgLKBCTDAssEJMQCzAQkxQLOBCTGAtAEMMcC0QTBAcgC0wQkyQLVBDDKAtYEwgHLAtcEJMwC2AQkzQLZBDDOAtwEwwHPAt0EyQHQAt4EJdEC3wQl0gLgBCXTAuEEJdQC4gQl1QLkBCXWAuYEMNcC5wTKAdgC6QQl2QLrBDDaAuwEywHbAu0EJdwC7gQl3QLvBDDeAvIEzAHfAvME0gHgAvQEJuEC9QQm4gL2BCbjAvcEJuQC-AQm5QL6BCbmAvwEMOcC_QTTAegC_wQm6QKBBTDqAoIF1AHrAoMFJuwChAUm7QKFBTDuAogF1QHvAokF2wHwAosF3AHxAowF3AHyAo8F3AHzApAF3AH0ApEF3AH1ApMF3AH2ApUFMPcClgXdAfgCmAXcAfkCmgUw-gKbBd4B-wKcBdwB_AKdBdwB_QKeBTD-AqEF3wH_AqIF5QGAA6MFHIEDpAUcggOlBRyDA6YFHIQDpwUchQOpBRyGA6sFMIcDrAXmAYgDsAUciQOyBTCKA7MF5wGLA7YFHIwDtwUcjQO4BTCOA7sF6AGPA7wF7gGQA70FHZEDvgUdkgO_BR2TA8AFHZQDwQUdlQPDBR2WA8UFMJcDxgXvAZgDyQUdmQPLBTCaA8wF8AGbA84FHZwDzwUdnQPQBTCeA9MF8QGfA9QF9wGgA9UFHqED1gUeogPXBR6jA9gFHqQD2QUepQPbBR6mA90FMKcD3gX4AagD4AUeqQPiBTCqA-MF-QGrA-QFHqwD5QUerQPmBTCuA-kF-gGvA-oFgAKwA-sFGbED7AUZsgPtBRmzA-4FGbQD7wUZtQPxBRm2A_MFMLcD9AWBArgD9wUZuQP5BTC6A_oFggK7A_wFGbwD_QUZvQP-BTC-A4EGgwK_A4IGiQLAA4MGGsEDhAYawgOFBhrDA4YGGsQDhwYaxQOJBhrGA4sGMMcDjAaKAsgDjgYayQOQBjDKA5EGiwLLA5IGGswDkwYazQOUBjDOA5cGjALPA5gGkgLQA5oGJ9EDmwYn0gOdBifTA54GJ9QDnwYn1QOhBifWA6MGMNcDpAaTAtgDpgYn2QOoBjDaA6kGlALbA6oGJ9wDqwYn3QOsBjDeA68GlQLfA7AGmwLgA7IGKOEDswYo4gO1BijjA7YGKOQDtwYo5QO5BijmA7sGMOcDvAacAugDvgYo6QPABjDqA8EGnQLrA8IGKOwDwwYo7QPEBjDuA8cGngLvA8gGpALwA8oGKfEDywYp8gPNBinzA84GKfQDzwYp9QPRBin2A9MGMPcD1AalAvgD1gYp-QPYBjD6A9kGpgL7A9oGKfwD2wYp_QPcBjD-A98GpwL_A-AGrQKABOIGKoEE4wYqggTlBiqDBOYGKoQE5wYqhQTpBiqGBOsGMIcE7AauAogE7gYqiQTwBjCKBPEGrwKLBPIGKowE8wYqjQT0BjCOBPcGsAKPBPgGtgKQBPkGLJEE-gYskgT7BiyTBPwGLJQE_QYslQT_BiyWBIEHMJcEgge3ApgEhAcsmQSGBzCaBIcHuAKbBIgHLJwEiQcsnQSKBzCeBI0HuQKfBI4HvwKgBJAHK6EEkQcrogSTByujBJQHK6QElQcrpQSXByumBJkHMKcEmgfAAqgEnAcrqQSeBzCqBJ8HwQKrBKAHK6wEoQcrrQSiBzCuBKUHwgKvBKYHyAKwBKcHG7EEqAcbsgSpBxuzBKoHG7QEqwcbtQStBxu2BK8HMLcEsAfJArgEsgcbuQS0BzC6BLUHygK7BLYHG7wEtwcbvQS4BzC-BLsHywK_BLwH0QLABL0HLcEEvgctwgS_By3DBMAHLcQEwQctxQTDBy3GBMUHMMcExgfSAsgEyActyQTKBzDKBMsH0wLLBMwHLcwEzQctzQTOBzDOBNEH1ALPBNIH2gLQBNMHDNEE1AcM0gTVBwzTBNYHDNQE1wcM1QTZBwzWBNsHMNcE3AfbAtgE3gcM2QTgBzDaBOEH3ALbBOIHDNwE4wcM3QTkBzDeBOcH3QLfBOgH4wLgBOkHC-EE6gcL4gTrBwvjBOwHC-QE7QcL5QTvBwvmBPEHMOcE8gfkAugE9AcL6QT2BzDqBPcH5QLrBPgHC-wE-QcL7QT6BzDuBP0H5gLvBP4H7ALwBIAILvEEgQgu8gSDCC7zBIQILvQEhQgu9QSHCC72BIkIMPcEigjtAvgEjAgu-QSOCDD6BI8I7gL7BJAILvwEkQgu_QSSCDD-BJUI7wL_BJYI9QI" + graph: "qhT1AsAEJAUAAK0JACAHAADqCQAgCAAAqQkAIB0AAPEJACAlAAC6CQAgJgAA6QkAICcAAOsJACAoAADsCQAgKQAA7QkAICoAAKoJACArAADuCQAgLAAA7wkAIC0AAPAJACAuAAC8CQAgLwAA8gkAIDAAAPMJACAxAAD0CQAgMgAA9QkAIDMAAPYJACA0AAD3CQAgNQAA-AkAIDYAAPkJACA3AAD6CQAggAUAAOgJADCBBQAADQAQggUAAOgJADCDBQIAAAABhgYBAAAAAYcGAQClCAAhvAYgAMUIACG9BgIA5wgAIb4GIADFCAAhvwYCAOcIACHABiAAxQgAIcEGAgDnCAAhwgYCAOcIACEBAAAAAQAgIgMAAKYIACAFAACtCQAgCAAAqQkAIAwAAKoJACAYAACsCQAgHAAA_wkAIB0AAPEJACAeAACACgAgHwAAgQoAICUAALoJACCABQAA_gkAMIEFAAADABCCBQAA_gkAMIMFAgDnCAAhhAUCAOcIACGYBUAA6AgAIaMFQADoCAAhsQUBAMAIACG0BQEAwAgAIbYFAQDACAAh0wUAAPwJsQYilQZAAOkIACGbBgEAwAgAIakGAQClCAAhsgYBAKUIACGzBgEApQgAIbQGAQClCAAhtQYBAMAIACG2BgEAwAgAIbcGAQDACAAhuAYBAMAIACG5BgEAwAgAIboGAQDACAAhuwYBAMAIACEWAwAAiwoAIAUAAMIRACAIAADFEQAgDAAAyBEAIBgAANoRACAcAADsEQAgHQAAzhEAIB4AAO0RACAfAADuEQAgJQAAzBEAILEFAACWCgAgtAUAAJYKACC2BQAAlgoAIJUGAACWCgAgmwYAAJYKACC1BgAAlgoAILYGAACWCgAgtwYAAJYKACC4BgAAlgoAILkGAACWCgAgugYAAJYKACC7BgAAlgoAICIDAACmCAAgBQAArQkAIAgAAKkJACAMAACqCQAgGAAArAkAIBwAAP8JACAdAADxCQAgHgAAgAoAIB8AAIEKACAlAAC6CQAggAUAAP4JADCBBQAAAwAQggUAAP4JADCDBQIAAAABhAUCAOcIACGYBUAA6AgAIaMFQADoCAAhsQUBAMAIACG0BQEAwAgAIbYFAQDACAAh0wUAAPwJsQYilQZAAOkIACGbBgEAwAgAIakGAQClCAAhsgYBAKUIACGzBgEApQgAIbQGAQClCAAhtQYBAMAIACG2BgEAwAgAIbcGAQDACAAhuAYBAMAIACG5BgEAwAgAIboGAQDACAAhuwYBAMAIACEDAAAAAwAgAQAABAAwAgAABQAgGwMAAKYIACAEAACeCQAgBwAA5gkAIAgAAKkJACALAADOCQAgGAAArAkAIBkAAP0JACCABQAA-wkAMIEFAAAHABCCBQAA-wkAMIMFAgDnCAAhhAUCAOcIACGUBQIA6ggAIZcFAQDACAAhmAVAAOgIACGkBQIA5wgAIdMFAQClCAAh5AUBAKUIACH-BQEApQgAIZIGAgDnCAAhqgZAAOgIACGrBgEApQgAIawGAQClCAAhrQYgAMUIACGuBgEAwAgAIa8GIADFCAAhsQYAAPwJsQYiCgMAAIsKACAEAADYEQAgBwAA6REAIAgAAMURACALAADiEQAgGAAA2hEAIBkAAOsRACCUBQAAlgoAIJcFAACWCgAgrgYAAJYKACAbAwAApggAIAQAAJ4JACAHAADmCQAgCAAAqQkAIAsAAM4JACAYAACsCQAgGQAA_QkAIIAFAAD7CQAwgQUAAAcAEIIFAAD7CQAwgwUCAAAAAYQFAgDnCAAhlAUCAOoIACGXBQEAwAgAIZgFQADoCAAhpAUCAOcIACHTBQEApQgAIeQFAQClCAAh_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_AUAAbIJACH9BQIA5wgAIQEaAADeEQAgCRoAAMMJACCABQAAwgkAMIEFAABfABCCBQAAwgkAMIMFAgAAAAHIBQEApQgAIc0FQADoCAAh_AUAAbIJACH9BQIA5wgAIQMAAABfACABAABgADACAABhACABAAAAXwAgAwAAABoAIAEAABsAMAIAABwAIA8DAACvCQAgBAAAngkAIIAFAAC-CQAwgQUAAGUAEIIFAAC-CQAwgwUCAOcIACGEBQIA6ggAIZgFQADoCAAhpAUCAOcIACHPBQAAvwnPBSLRBQAAwAnRBSLTBQAAwQnTBSLUBQEAwAgAIdUFAgDqCAAh1gUBAMAIACEGAwAAiwoAIAQAANgRACCEBQAAlgoAINQFAACWCgAg1QUAAJYKACDWBQAAlgoAIA8DAACvCQAgBAAAngkAIIAFAAC-CQAwgQUAAGUAEIIFAAC-CQAwgwUCAAAAAYQFAgDqCAAhmAVAAOgIACGkBQIA5wgAIc8FAAC_Cc8FItEFAADACdEFItMFAADBCdMFItQFAQDACAAh1QUCAOoIACHWBQEAwAgAIQMAAABlACABAABmADACAABnACABAAAADQAgDQQAAJ4JACCABQAAvQkAMIEFAABqABCCBQAAvQkAMIMFAgDnCAAhowVAAOgIACGkBQIA5wgAIcgFAQClCAAhyQUBAKUIACHKBQEApQgAIcsFBAC1CQAhzAUBAKUIACHNBUAA6AgAIQEEAADYEQAgDQQAAJ4JACCABQAAvQkAMIEFAABqABCCBQAAvQkAMIMFAgAAAAGjBUAA6AgAIaQFAgDnCAAhyAUBAKUIACHJBQEApQgAIcoFAQClCAAhywUEALUJACHMBQEApQgAIc0FQADoCAAhAwAAAGoAIAEAAGsAMAIAAGwAIAsDAACmCAAgBAAAngkAIIAFAACdCQAwgQUAAG4AEIIFAACdCQAwgwUCAOcIACGEBQIA5wgAIaMFQADoCAAhpAUCAOcIACGlBQEApQgAIaYFIADFCAAhAQAAAG4AIA8DAACmCAAgBAAAuwkAIBkAALwJACAgAAC2CQAgIQAAugkAIIAFAAC5CQAwgQUAAHAAEIIFAAC5CQAwgwUCAOcIACGEBQIA5wgAIZgFQADoCAAhmQUBAKUIACGjBUAA6AgAIaQFAgDqCAAh3QUCAOoIACEHAwAAiwoAIAQAANgRACAZAADNEQAgIAAA3BEAICEAAMwRACCkBQAAlgoAIN0FAACWCgAgEAMAAKYIACAEAAC7CQAgGQAAvAkAICAAALYJACAhAAC6CQAggAUAALkJADCBBQAAcAAQggUAALkJADCDBQIAAAABhAUCAOcIACGYBUAA6AgAIZkFAQClCAAhowVAAOgIACGkBQIA6ggAId0FAgDqCAAhyQYAALgJACADAAAAcAAgAQAAcQAwAgAAcgAgAQAAAHAAIAMAAABwACABAABxADACAAByACABAAAAAwAgEQMAAKYIACAiAAC2CQAgJAAAtwkAIIAFAAC0CQAwgQUAAHcAEIIFAAC0CQAwgwUCAOcIACGEBQIA5wgAIZgFQADoCAAhmQUBAKUIACGjBUAA6AgAIcoFAQDACAAhywUEALUJACHZBQIA6ggAIdoFIADFCAAh2wUCAOoIACHcBQEAwAgAIQcDAACLCgAgIgAA3BEAICQAAN0RACDKBQAAlgoAINkFAACWCgAg2wUAAJYKACDcBQAAlgoAIBEDAACmCAAgIgAAtgkAICQAALcJACCABQAAtAkAMIEFAAB3ABCCBQAAtAkAMIMFAgAAAAGEBQIA5wgAIZgFQADoCAAhmQUBAKUIACGjBUAA6AgAIcoFAQDACAAhywUEALUJACHZBQIA6ggAIdoFIADFCAAh2wUCAOoIACHcBQEAwAgAIQMAAAB3ACABAAB4ADACAAB5ACABAAAAcAAgCSMAALMJACA9AAGyCQAhgAUAALEJADCBBQAAfAAQggUAALEJADCDBQIA5wgAIZgFQADoCAAh1wUCAOcIACHYBQIA5wgAIQEjAADbEQAgCiMAALMJACA9AAGyCQAhgAUAALEJADCBBQAAfAAQggUAALEJADCDBQIAAAABmAVAAOgIACHXBQIA5wgAIdgFAgDnCAAhyAYAALAJACADAAAAfAAgAQAAfQAwAgAAfgAgAQAAAHwAIAEAAABwACABAAAAdwAgAQAAAAcAIAEAAAA6ACABAAAAEAAgAQAAAFsAIAEAAAAaACABAAAAZQAgAQAAAGoAIAEAAABwACADAAAABwAgAQAACAAwAgAACQAgBQMAAIsKACAFAADCEQAgCAAAxREAILEFAACWCgAgqQYAAJYKACANAwAArwkAIAUAAK0JACAIAACpCQAggAUAAK4JADCBBQAACwAQggUAAK4JADCDBQIAAAABhAUCAOcIACGYBUAA6AgAIZkFAQClCAAhsQUBAMAIACGoBgEApQgAIakGAQDACAAhAwAAAAsAIAEAAIwBADACAACNAQAgBgMAAIsKACAFAADCEQAgCAAAxREAIBQAAMgRACAVAADZEQAgFgAA2hEAIBADAACmCAAgBQAArQkAIAgAAKkJACAUAACqCQAgFQAAqwkAIBYAAKwJACCABQAAqAkAMIEFAAAXABCCBQAAqAkAMIMFAgAAAAGEBQIA5wgAIZgFQADoCAAhogUCAOcIACGmBgEApQgAIacGAQClCAAhxAYAAKcJACADAAAAFwAgAQAAjwEAMAIAAJABACADAAAAEAAgAQAAEQAwAgAAEgAgCQMAAKYIACCABQAApgkAMIEFAACTAQAQggUAAKYJADCDBQIA5wgAIYQFAgDnCAAhhQYBAKUIACGGBgEApQgAIYcGAQClCAAhAQMAAIsKACAKAwAApggAIIAFAACmCQAwgQUAAJMBABCCBQAApgkAMIMFAgAAAAGEBQIA5wgAIYUGAQClCAAhhgYBAKUIACGHBgEApQgAIcMGAAClCQAgAwAAAJMBACABAACUAQAwAgAAlQEAIAoDAACmCAAggAUAAKQJADCBBQAAlwEAEIIFAACkCQAwgwUCAOcIACGEBQIA5wgAIYEGAQClCAAhggYBAKUIACGDBgEApQgAIYQGAQClCAAhAQMAAIsKACAKAwAApggAIIAFAACkCQAwgQUAAJcBABCCBQAApAkAMIMFAgAAAAGEBQIA5wgAIYEGAQClCAAhggYBAKUIACGDBgEApQgAIYQGAQClCAAhAwAAAJcBACABAACYAQAwAgAAmQEAIAMAAAAaACABAAAbADACAAAcACAHAwAApggAIIAFAACjCQAwgQUAAJwBABCCBQAAowkAMIMFAgDnCAAhhAUCAOcIACGYBUAA6AgAIQEDAACLCgAgBwMAAKYIACCABQAAowkAMIEFAACcAQAQggUAAKMJADCDBQIAAAABhAUCAOcIACGYBUAA6AgAIQMAAACcAQAgAQAAnQEAMAIAAJ4BACAJAwAApggAIIAFAACiCQAwgQUAAKABABCCBQAAogkAMIMFAgDnCAAhhAUCAOcIACGYBUAA6AgAIecFAQClCAAh6AUgAMUIACEBAwAAiwoAIAkDAACmCAAggAUAAKIJADCBBQAAoAEAEIIFAACiCQAwgwUCAAAAAYQFAgDnCAAhmAVAAOgIACHnBQEApQgAIegFIADFCAAhAwAAAKABACABAAChAQAwAgAAogEAIAoDAACmCAAggAUAAKAJADCBBQAApAEAEIIFAACgCQAwgwUCAOcIACGEBQIA5wgAIZgFQADoCAAh5AUAAKEJ5AUi5QUBAKUIACHmBSAAxQgAIQEDAACLCgAgCgMAAKYIACCABQAAoAkAMIEFAACkAQAQggUAAKAJADCDBQIAAAABhAUCAOcIACGYBUAA6AgAIeQFAAChCeQFIuUFAQClCAAh5gUgAMUIACEDAAAApAEAIAEAAKUBADACAACmAQAgAwAAAHAAIAEAAHEAMAIAAHIAIAMAAAB3ACABAAB4ADACAAB5ACADAAAAZQAgAQAAZgAwAgAAZwAgCwMAAKYIACCABQAAyQgAMIEFAACrAQAQggUAAMkIADCDBQIA5wgAIYQFAgDnCAAhrQUBAKUIACHEBQEApQgAIcUFAQClCAAhxgUBAMAIACHHBQAAyggAIAEAAACrAQAgEwMAAKYIACCABQAAxAgAMIEFAACtAQAQggUAAMQIADCDBQIA5wgAIYQFAgDnCAAhtwUBAKUIACG4BSAAxQgAIbkFAQClCAAhugUgAMUIACG7BQEApQgAIbwFIADFCAAhvQUBAKUIACG-BQEApQgAIb8FAQClCAAhwAUBAKUIACHBBSAAxQgAIcIFIADFCAAhwwUgAMUIACEBAAAArQEAIAcDAACmCAAgPQAAvAgAIIAFAADCCAAwgQUAAK8BABCCBQAAwggAMIMFAgDnCAAhhAUCAOcIACEBAAAArwEAIBADAACmCAAggAUAAL8IADCBBQAAsQEAEIIFAAC_CAAwgwUCAOcIACGEBQIA5wgAIa0FAQDACAAhrgUBAMAIACGvBQEAwAgAIbAFAQDACAAhsQUBAMAIACGyBQEAwAgAIbMFAQDACAAhtAUBAMAIACG1BQEAwAgAIbYFAQDACAAhAQAAALEBACAHAwAApggAID0AALwIACCABQAAuwgAMIEFAACzAQAQggUAALsIADCDBQIA5wgAIYQFAgDnCAAhAQAAALMBACAJAwAApggAIIAFAACfCQAwgQUAALUBABCCBQAAnwkAMIMFAgDnCAAhhAUCAOcIACGYBUAA6AgAIZkFAQClCAAhrQUBAMAIACECAwAAiwoAIK0FAACWCgAgCQMAAKYIACCABQAAnwkAMIEFAAC1AQAQggUAAJ8JADCDBQIAAAABhAUCAOcIACGYBUAA6AgAIZkFAQClCAAhrQUBAMAIACEDAAAAtQEAIAEAALYBADACAAC3AQAgAgMAAIsKACAEAADYEQAgCwMAAKYIACAEAACeCQAggAUAAJ0JADCBBQAAbgAQggUAAJ0JADCDBQIAAAABhAUCAOcIACGjBUAA6AgAIaQFAgAAAAGlBQEApQgAIaYFIADFCAAhAwAAAG4AIAEAALkBADACAAC6AQAgEgMAAKYIACCABQAAnAkAMIEFAAC8AQAQggUAAJwJADCDBQIA5wgAIYQFAgDnCAAhmAVAAOgIACGZBQEApQgAIZoFAQDACAAhmwUBAMAIACGcBQEAwAgAIZ0FAQDACAAhngUBAMAIACGfBQEAwAgAIaAFAQDACAAhoQUBAMAIACGiBQIA5wgAIaMFQADoCAAhCQMAAIsKACCaBQAAlgoAIJsFAACWCgAgnAUAAJYKACCdBQAAlgoAIJ4FAACWCgAgnwUAAJYKACCgBQAAlgoAIKEFAACWCgAgEgMAAKYIACCABQAAnAkAMIEFAAC8AQAQggUAAJwJADCDBQIAAAABhAUCAOcIACGYBUAA6AgAIZkFAQClCAAhmgUBAMAIACGbBQEAwAgAIZwFAQDACAAhnQUBAMAIACGeBQEAwAgAIZ8FAQDACAAhoAUBAMAIACGhBQEAwAgAIaIFAgDnCAAhowVAAOgIACEDAAAAvAEAIAEAAL0BADACAAC-AQAgBwMAAKYIACCABQAApAgAMIEFAADAAQAQggUAAKQIADCDBQIA5wgAIYQFAgDnCAAhhQUBAKUIACEBAAAAwAEAIAEAAAADACABAAAABwAgAQAAAAsAIAEAAAAXACABAAAAEAAgAQAAAJMBACABAAAAlwEAIAEAAAAaACABAAAAnAEAIAEAAACgAQAgAQAAAKQBACABAAAAcAAgAQAAAHcAIAEAAABlACABAAAAtQEAIAEAAABuACABAAAAvAEAIAEAAAABACAXBQAAwhEAIAcAAMMRACAIAADFEQAgHQAAzhEAICUAAMwRACAmAADBEQAgJwAAxBEAICgAAMYRACApAADHEQAgKgAAyBEAICsAAMkRACAsAADKEQAgLQAAyxEAIC4AAM0RACAvAADPEQAgMAAA0BEAIDEAANERACAyAADSEQAgMwAA0xEAIDQAANQRACA1AADVEQAgNgAA1hEAIDcAANcRACADAAAADQAgAQAA1AEAMAIAAAEAIAMAAAANACABAADUAQAwAgAAAQAgAwAAAA0AIAEAANQBADACAAABACAhBQAAqxEAIAcAAKwRACAIAACuEQAgHQAAtxEAICUAALURACAmAACqEQAgJwAArREAICgAAK8RACApAACwEQAgKgAAsREAICsAALIRACAsAACzEQAgLQAAtBEAIC4AALYRACAvAAC4EQAgMAAAuREAIDEAALoRACAyAAC7EQAgMwAAvBEAIDQAAL0RACA1AAC-EQAgNgAAvxEAIDcAAMARACCDBQIAAAABhgYBAAAAAYcGAQAAAAG8BiAAAAABvQYCAAAAAb4GIAAAAAG_BgIAAAABwAYgAAAAAcEGAgAAAAHCBgIAAAABAT0AANgBACAKgwUCAAAAAYYGAQAAAAGHBgEAAAABvAYgAAAAAb0GAgAAAAG-BiAAAAABvwYCAAAAAcAGIAAAAAHBBgIAAAABwgYCAAAAAQE9AADaAQAwAT0AANoBADAhBQAAvA8AIAcAAL0PACAIAAC_DwAgHQAAyA8AICUAAMYPACAmAAC7DwAgJwAAvg8AICgAAMAPACApAADBDwAgKgAAwg8AICsAAMMPACAsAADEDwAgLQAAxQ8AIC4AAMcPACAvAADJDwAgMAAAyg8AIDEAAMsPACAyAADMDwAgMwAAzQ8AIDQAAM4PACA1AADPDwAgNgAA0A8AIDcAANEPACCDBQIAiAoAIYYGAQCHCgAhhwYBAIcKACG8BiAAugoAIb0GAgCICgAhvgYgALoKACG_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_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-wMAIAMAAABdACBEAAD0AwAgRQAA-QMAIAEAAABdACABAAAAWwAgBQ4AALUMACBKAAC2DAAgSwAAuQwAIEwAALgMACBNAAC3DAAgCIAFAAD9CAAwgQUAAIIEABCCBQAA_QgAMIMFAgCdCAAhmAVAAK0IACGkBQIAnQgAIf4FAQCeCAAhgAYAAP4IgAYiAwAAAFsAIAEAAIEEADBJAACCBAAgAwAAAFsAIAEAAFwAMAIAAF0AIAEAAABhACABAAAAYQAgAwAAAF8AIAEAAGAAMAIAAGEAIAMAAABfACABAABgADACAABhACADAAAAXwAgAQAAYAAwAgAAYQAgBhoAALQMACCDBQIAAAAByAUBAAAAAc0FQAAAAAH8BQABAAAB_QUCAAAAAQE9AACKBAAgBYMFAgAAAAHIBQEAAAABzQVAAAAAAfwFAAEAAAH9BQIAAAABAT0AAIwEADABPQAAjAQAMAYaAACzDAAggwUCAIgKACHIBQEAhwoAIc0FQACdCgAh_AUAAYMLACH9BQIAiAoAIQIAAABhACA9AACPBAAgBYMFAgCICgAhyAUBAIcKACHNBUAAnQoAIfwFAAGDCwAh_QUCAIgKACECAAAAXwAgPQAAkQQAIAIAAABfACA9AACRBAAgAwAAAGEAIEQAAIoEACBFAACPBAAgAQAAAGEAIAEAAABfACAFDgAArgwAIEoAAK8MACBLAACyDAAgTAAAsQwAIE0AALAMACAIgAUAAPwIADCBBQAAmAQAEIIFAAD8CAAwgwUCAJ0IACHIBQEAnggAIc0FQACtCAAh_AUAAd0IACH9BQIAnQgAIQMAAABfACABAACXBAAwSQAAmAQAIAMAAABfACABAABgADACAABhACABAAAAHAAgAQAAABwAIAMAAAAaACABAAAbADACAAAcACADAAAAGgAgAQAAGwAwAgAAHAAgAwAAABoAIAEAABsAMAIAABwAIBkEAACoDAAgCQAApwwAIAoAAKkMACALAACqDAAgDQAAqwwAIBAAAKwMACATAACtDAAggwUCAAAAAYQFAgAAAAGUBQIAAAABlwUBAAAAAZgFQAAAAAGjBUAAAAABpAUCAAAAAdMFAAAA-wUC8QUCAAAAAfIFAgAAAAHzBRAAAAAB9AUQAAAAAfUFEAAAAAH2BRAAAAAB9wUQAAAAAfgFEAAAAAH5BRAAAAAB-wUBAAAAAQE9AACgBAAgEoMFAgAAAAGEBQIAAAABlAUCAAAAAZcFAQAAAAGYBUAAAAABowVAAAAAAaQFAgAAAAHTBQAAAPsFAvEFAgAAAAHyBQIAAAAB8wUQAAAAAfQFEAAAAAH1BRAAAAAB9gUQAAAAAfcFEAAAAAH4BRAAAAAB-QUQAAAAAfsFAQAAAAEBPQAAogQAMAE9AACiBAAwAQAAABAAIAEAAAANACABAAAAFwAgGQQAAPILACAJAADxCwAgCgAA8wsAIAsAAPQLACANAAD1CwAgEAAA9gsAIBMAAPcLACCDBQIAiAoAIYQFAgCICgAhlAUCAPkKACGXBQEAnAoAIZgFQACdCgAhowVAAJ0KACGkBQIAiAoAIdMFAADwC_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_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-ACBEAADfBQAgRQAA5AUAIAEAAAB-ACABAAAAfAAgBQ4AAP4KACBKAAD_CgAgSwAAggsAIEwAAIELACBNAACACwAgCD0AAd0IACGABQAA3AgAMIEFAADtBQAQggUAANwIADCDBQIAnQgAIZgFQACtCAAh1wUCAJ0IACHYBQIAnQgAIQMAAAB8ACABAADsBQAwSQAA7QUAIAMAAAB8ACABAAB9ADACAAB-ACABAAAAZwAgAQAAAGcAIAMAAABlACABAABmADACAABnACADAAAAZQAgAQAAZgAwAgAAZwAgAwAAAGUAIAEAAGYAMAIAAGcAIAwDAAD9CgAgBAAA_AoAIIMFAgAAAAGEBQIAAAABmAVAAAAAAaQFAgAAAAHPBQAAAM8FAtEFAAAA0QUC0wUAAADTBQLUBQEAAAAB1QUCAAAAAdYFAQAAAAEBPQAA9QUAIAqDBQIAAAABhAUCAAAAAZgFQAAAAAGkBQIAAAABzwUAAADPBQLRBQAAANEFAtMFAAAA0wUC1AUBAAAAAdUFAgAAAAHWBQEAAAABAT0AAPcFADABPQAA9wUAMAEAAAANACAMAwAA-woAIAQAAPoKACCDBQIAiAoAIYQFAgD5CgAhmAVAAJ0KACGkBQIAiAoAIc8FAAD2Cs8FItEFAAD3CtEFItMFAAD4CtMFItQFAQCcCgAh1QUCAPkKACHWBQEAnAoAIQIAAABnACA9AAD7BQAgCoMFAgCICgAhhAUCAPkKACGYBUAAnQoAIaQFAgCICgAhzwUAAPYKzwUi0QUAAPcK0QUi0wUAAPgK0wUi1AUBAJwKACHVBQIA-QoAIdYFAQCcCgAhAgAAAGUAID0AAP0FACACAAAAZQAgPQAA_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_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_CgAgSgAAwAoAIEsAAMMKACBMAADCCgAgTQAAwQoAIAY9AAC5CAAggAUAALgIADCBBQAAqQcAEIIFAAC4CAAwgwUCAJ0IACGEBQIAnQgAIQMAAACzAQAgAQAAqAcAMEkAAKkHACADAAAAswEAIAEAAJcHADACAACUBwAgAQAAALoBACABAAAAugEAIAMAAABuACABAAC5AQAwAgAAugEAIAMAAABuACABAAC5AQAwAgAAugEAIAMAAABuACABAAC5AQAwAgAAugEAIAgDAAC-CgAgBAAAvQoAIIMFAgAAAAGEBQIAAAABowVAAAAAAaQFAgAAAAGlBQEAAAABpgUgAAAAAQE9AACxBwAgBoMFAgAAAAGEBQIAAAABowVAAAAAAaQFAgAAAAGlBQEAAAABpgUgAAAAAQE9AACzBwAwAT0AALMHADAIAwAAvAoAIAQAALsKACCDBQIAiAoAIYQFAgCICgAhowVAAJ0KACGkBQIAiAoAIaUFAQCHCgAhpgUgALoKACECAAAAugEAID0AALYHACAGgwUCAIgKACGEBQIAiAoAIaMFQACdCgAhpAUCAIgKACGlBQEAhwoAIaYFIAC6CgAhAgAAAG4AID0AALgHACACAAAAbgAgPQAAuAcAIAMAAAC6AQAgRAAAsQcAIEUAALYHACABAAAAugEAIAEAAABuACAFDgAAtQoAIEoAALYKACBLAAC5CgAgTAAAuAoAIE0AALcKACAJgAUAALQIADCBBQAAvwcAEIIFAAC0CAAwgwUCAJ0IACGEBQIAnQgAIaMFQACtCAAhpAUCAJ0IACGlBQEAnggAIaYFIAC1CAAhAwAAAG4AIAEAAL4HADBJAAC_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-gcAIAMAAAAvACBEAADzBwAgRQAA-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_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_CAAwgwUCAOcIACGEBQIA5wgAIa0FAQDACAAhrgUBAMAIACGvBQEAwAgAIbAFAQDACAAhsQUBAMAIACGyBQEAwAgAIbMFAQDACAAhtAUBAMAIACG1BQEAwAgAIbYFAQDACAAhC4YFAQAAAAGHBQEAAAAFiAUBAAAABYkFAQAAAAGKBQEAAAABiwUBAAAAAYwFAQAAAAGNBQEAAAABjgUBAAAAAY8FAQAAAAGQBQEAsggAIQY9AAC5CAAggAUAAMEIADCBBQAA4wYAEIIFAADBCAAwgwUCAJ0IACGEBQIAnQgAIQcDAACmCAAgPQAAvAgAIIAFAADCCAAwgQUAAK8BABCCBQAAwggAMIMFAgDnCAAhhAUCAOcIACESgAUAAMMIADCBBQAAywYAEIIFAADDCAAwgwUCAJ0IACGEBQIAnQgAIbcFAQCeCAAhuAUgALUIACG5BQEAnggAIboFIAC1CAAhuwUBAJ4IACG8BSAAtQgAIb0FAQCeCAAhvgUBAJ4IACG_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_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-QgAIIYFAAAA-wUChwUAAAD7BQiIBQAAAPsFCJAFAAD4CPsFIgcOAACgCAAgTAAA-QgAIE0AAPkIACCGBQAAAPsFAocFAAAA-wUIiAUAAAD7BQiQBQAA-Aj7BSIEhgUAAAD7BQKHBQAAAPsFCIgFAAAA-wUIkAUAAPkI-wUiDQ4AALEIACBKAAD7CAAgSwAA-wgAIEwAAPsIACBNAAD7CAAghgUQAAAAAYcFEAAAAAWIBRAAAAAFiQUQAAAAAYoFEAAAAAGLBRAAAAABjAUQAAAAAZAFEAD6CAAhCIYFEAAAAAGHBRAAAAAFiAUQAAAABYkFEAAAAAGKBRAAAAABiwUQAAAAAYwFEAAAAAGQBRAA-wgAIQiABQAA_AgAMIEFAACYBAAQggUAAPwIADCDBQIAnQgAIcgFAQCeCAAhzQVAAK0IACH8BQAB3QgAIf0FAgCdCAAhCIAFAAD9CAAwgQUAAIIEABCCBQAA_QgAMIMFAgCdCAAhmAVAAK0IACGkBQIAnQgAIf4FAQCeCAAhgAYAAP4IgAYiBw4AAKAIACBMAACACQAgTQAAgAkAIIYFAAAAgAYChwUAAACABgiIBQAAAIAGCJAFAAD_CIAGIgcOAACgCAAgTAAAgAkAIE0AAIAJACCGBQAAAIAGAocFAAAAgAYIiAUAAACABgiQBQAA_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_gUBAJ4IACGSBgIAnQgAIaoGQACtCAAhqwYBAJ4IACGsBgEAnggAIa0GIAC1CAAhrgYBAKwIACGvBiAAtQgAIbEGAACXCbEGIgcOAACgCAAgTAAAmQkAIE0AAJkJACCGBQAAALEGAocFAAAAsQYIiAUAAACxBgiQBQAAmAmxBiIHDgAAoAgAIEwAAJkJACBNAACZCQAghgUAAACxBgKHBQAAALEGCIgFAAAAsQYIkAUAAJgJsQYiBIYFAAAAsQYChwUAAACxBgiIBQAAALEGCJAFAACZCbEGIhiABQAAmgkAMIEFAAD8AQAQggUAAJoJADCDBQIAnQgAIYQFAgCdCAAhmAVAAK0IACGjBUAArQgAIbEFAQCsCAAhtAUBAKwIACG2BQEArAgAIdMFAACXCbEGIpUGQADjCAAhmwYBAKwIACGpBgEAnggAIbIGAQCeCAAhswYBAJ4IACG0BgEAnggAIbUGAQCsCAAhtgYBAKwIACG3BgEArAgAIbgGAQCsCAAhuQYBAKwIACG6BgEArAgAIbsGAQCsCAAhDYAFAACbCQAwgQUAAOYBABCCBQAAmwkAMIMFAgCdCAAhhgYBAJ4IACGHBgEAnggAIbwGIAC1CAAhvQYCAJ0IACG-BiAAtQgAIb8GAgCdCAAhwAYgALUIACHBBgIAnQgAIcIGAgCdCAAhEgMAAKYIACCABQAAnAkAMIEFAAC8AQAQggUAAJwJADCDBQIA5wgAIYQFAgDnCAAhmAVAAOgIACGZBQEApQgAIZoFAQDACAAhmwUBAMAIACGcBQEAwAgAIZ0FAQDACAAhngUBAMAIACGfBQEAwAgAIaAFAQDACAAhoQUBAMAIACGiBQIA5wgAIaMFQADoCAAhCwMAAKYIACAEAACeCQAggAUAAJ0JADCBBQAAbgAQggUAAJ0JADCDBQIA5wgAIYQFAgDnCAAhowVAAOgIACGkBQIA5wgAIaUFAQClCAAhpgUgAMUIACEkAwAApggAIAUAAK0JACAIAACpCQAgDAAAqgkAIBgAAKwJACAcAAD_CQAgHQAA8QkAIB4AAIAKACAfAACBCgAgJQAAugkAIIAFAAD-CQAwgQUAAAMAEIIFAAD-CQAwgwUCAOcIACGEBQIA5wgAIZgFQADoCAAhowVAAOgIACGxBQEAwAgAIbQFAQDACAAhtgUBAMAIACHTBQAA_AmxBiKVBkAA6QgAIZsGAQDACAAhqQYBAKUIACGyBgEApQgAIbMGAQClCAAhtAYBAKUIACG1BgEAwAgAIbYGAQDACAAhtwYBAMAIACG4BgEAwAgAIbkGAQDACAAhugYBAMAIACG7BgEAwAgAIcsGAAADACDMBgAAAwAgCQMAAKYIACCABQAAnwkAMIEFAAC1AQAQggUAAJ8JADCDBQIA5wgAIYQFAgDnCAAhmAVAAOgIACGZBQEApQgAIa0FAQDACAAhCgMAAKYIACCABQAAoAkAMIEFAACkAQAQggUAAKAJADCDBQIA5wgAIYQFAgDnCAAhmAVAAOgIACHkBQAAoQnkBSLlBQEApQgAIeYFIADFCAAhBIYFAAAA5AUChwUAAADkBQiIBQAAAOQFCJAFAADuCOQFIgkDAACmCAAggAUAAKIJADCBBQAAoAEAEIIFAACiCQAwgwUCAOcIACGEBQIA5wgAIZgFQADoCAAh5wUBAKUIACHoBSAAxQgAIQcDAACmCAAggAUAAKMJADCBBQAAnAEAEIIFAACjCQAwgwUCAOcIACGEBQIA5wgAIZgFQADoCAAhCgMAAKYIACCABQAApAkAMIEFAACXAQAQggUAAKQJADCDBQIA5wgAIYQFAgDnCAAhgQYBAKUIACGCBgEApQgAIYMGAQClCAAhhAYBAKUIACEChAUCAAAAAYUGAQAAAAEJAwAApggAIIAFAACmCQAwgQUAAJMBABCCBQAApgkAMIMFAgDnCAAhhAUCAOcIACGFBgEApQgAIYYGAQClCAAhhwYBAKUIACEChAUCAAAAAaYGAQAAAAEPAwAApggAIAUAAK0JACAIAACpCQAgFAAAqgkAIBUAAKsJACAWAACsCQAggAUAAKgJADCBBQAAFwAQggUAAKgJADCDBQIA5wgAIYQFAgDnCAAhmAVAAOgIACGiBQIA5wgAIaYGAQClCAAhpwYBAKUIACEDxQYAABAAIMYGAAAQACDHBgAAEAAgA8UGAAAaACDGBgAAGgAgxwYAABoAIAPFBgAANgAgxgYAADYAIMcGAAA2ACADxQYAADoAIMYGAAA6ACDHBgAAOgAgA8UGAAAHACDGBgAABwAgxwYAAAcAIA0DAACvCQAgBQAArQkAIAgAAKkJACCABQAArgkAMIEFAAALABCCBQAArgkAMIMFAgDnCAAhhAUCAOcIACGYBUAA6AgAIZkFAQClCAAhsQUBAMAIACGoBgEApQgAIakGAQDACAAhJgUAAK0JACAHAADqCQAgCAAAqQkAIB0AAPEJACAlAAC6CQAgJgAA6QkAICcAAOsJACAoAADsCQAgKQAA7QkAICoAAKoJACArAADuCQAgLAAA7wkAIC0AAPAJACAuAAC8CQAgLwAA8gkAIDAAAPMJACAxAAD0CQAgMgAA9QkAIDMAAPYJACA0AAD3CQAgNQAA-AkAIDYAAPkJACA3AAD6CQAggAUAAOgJADCBBQAADQAQggUAAOgJADCDBQIA5wgAIYYGAQClCAAhhwYBAKUIACG8BiAAxQgAIb0GAgDnCAAhvgYgAMUIACG_BgIA5wgAIcAGIADFCAAhwQYCAOcIACHCBgIA5wgAIcsGAAANACDMBgAADQAgAtcFAgAAAAHYBQIAAAABCSMAALMJACA9AAGyCQAhgAUAALEJADCBBQAAfAAQggUAALEJADCDBQIA5wgAIZgFQADoCAAh1wUCAOcIACHYBQIA5wgAIQSGBQABAAABhwUAAQAABIgFAAEAAASQBQAB3wgAIRMDAACmCAAgIgAAtgkAICQAALcJACCABQAAtAkAMIEFAAB3ABCCBQAAtAkAMIMFAgDnCAAhhAUCAOcIACGYBUAA6AgAIZkFAQClCAAhowVAAOgIACHKBQEAwAgAIcsFBAC1CQAh2QUCAOoIACHaBSAAxQgAIdsFAgDqCAAh3AUBAMAIACHLBgAAdwAgzAYAAHcAIBEDAACmCAAgIgAAtgkAICQAALcJACCABQAAtAkAMIEFAAB3ABCCBQAAtAkAMIMFAgDnCAAhhAUCAOcIACGYBUAA6AgAIZkFAQClCAAhowVAAOgIACHKBQEAwAgAIcsFBAC1CQAh2QUCAOoIACHaBSAAxQgAIdsFAgDqCAAh3AUBAMAIACEIhgUEAAAAAYcFBAAAAASIBQQAAAAEiQUEAAAAAYoFBAAAAAGLBQQAAAABjAUEAAAAAZAFBADOCAAhEQMAAKYIACAEAAC7CQAgGQAAvAkAICAAALYJACAhAAC6CQAggAUAALkJADCBBQAAcAAQggUAALkJADCDBQIA5wgAIYQFAgDnCAAhmAVAAOgIACGZBQEApQgAIaMFQADoCAAhpAUCAOoIACHdBQIA6ggAIcsGAABwACDMBgAAcAAgA8UGAAB8ACDGBgAAfAAgxwYAAHwAIAOEBQIAAAABmQUBAAAAAd0FAgAAAAEPAwAApggAIAQAALsJACAZAAC8CQAgIAAAtgkAICEAALoJACCABQAAuQkAMIEFAABwABCCBQAAuQkAMIMFAgDnCAAhhAUCAOcIACGYBUAA6AgAIZkFAQClCAAhowVAAOgIACGkBQIA6ggAId0FAgDqCAAhA8UGAABwACDGBgAAcAAgxwYAAHAAICQDAACmCAAgBQAArQkAIAgAAKkJACAMAACqCQAgGAAArAkAIBwAAP8JACAdAADxCQAgHgAAgAoAIB8AAIEKACAlAAC6CQAggAUAAP4JADCBBQAAAwAQggUAAP4JADCDBQIA5wgAIYQFAgDnCAAhmAVAAOgIACGjBUAA6AgAIbEFAQDACAAhtAUBAMAIACG2BQEAwAgAIdMFAAD8CbEGIpUGQADpCAAhmwYBAMAIACGpBgEApQgAIbIGAQClCAAhswYBAKUIACG0BgEApQgAIbUGAQDACAAhtgYBAMAIACG3BgEAwAgAIbgGAQDACAAhuQYBAMAIACG6BgEAwAgAIbsGAQDACAAhywYAAAMAIMwGAAADACADxQYAAHcAIMYGAAB3ACDHBgAAdwAgDQQAAJ4JACCABQAAvQkAMIEFAABqABCCBQAAvQkAMIMFAgDnCAAhowVAAOgIACGkBQIA5wgAIcgFAQClCAAhyQUBAKUIACHKBQEApQgAIcsFBAC1CQAhzAUBAKUIACHNBUAA6AgAIQ8DAACvCQAgBAAAngkAIIAFAAC-CQAwgQUAAGUAEIIFAAC-CQAwgwUCAOcIACGEBQIA6ggAIZgFQADoCAAhpAUCAOcIACHPBQAAvwnPBSLRBQAAwAnRBSLTBQAAwQnTBSLUBQEAwAgAIdUFAgDqCAAh1gUBAMAIACEEhgUAAADPBQKHBQAAAM8FCIgFAAAAzwUIkAUAANkIzwUiBIYFAAAA0QUChwUAAADRBQiIBQAAANEFCJAFAADXCNEFIgSGBQAAANMFAocFAAAA0wUIiAUAAADTBQiQBQAA1QjTBSIJGgAAwwkAIIAFAADCCQAwgQUAAF8AEIIFAADCCQAwgwUCAOcIACHIBQEApQgAIc0FQADoCAAh_AUAAbIJACH9BQIA5wgAIQwEAACeCQAgGwAAxgkAIIAFAADECQAwgQUAAFsAEIIFAADECQAwgwUCAOcIACGYBUAA6AgAIaQFAgDnCAAh_gUBAKUIACGABgAAxQmABiLLBgAAWwAgzAYAAFsAIAoEAACeCQAgGwAAxgkAIIAFAADECQAwgQUAAFsAEIIFAADECQAwgwUCAOcIACGYBUAA6AgAIaQFAgDnCAAh_gUBAKUIACGABgAAxQmABiIEhgUAAACABgKHBQAAAIAGCIgFAAAAgAYIkAUAAIAJgAYiA8UGAABfACDGBgAAXwAgxwYAAF8AIAkGAADICQAggAUAAMcJADCBBQAAUgAQggUAAMcJADCDBQIA5wgAIcgFAQClCAAhygUBAMAIACHMBQEAwAgAIZEGAgDnCAAhHQMAAKYIACAEAACeCQAgBwAA5gkAIAgAAKkJACALAADOCQAgGAAArAkAIBkAAP0JACCABQAA-wkAMIEFAAAHABCCBQAA-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-AUQANAJACH5BRAA0AkAIfsFAQDACAAhBIYFAAAA-wUChwUAAAD7BQiIBQAAAPsFCJAFAAD5CPsFIgPFBgAAKQAgxgYAACkAIMcGAAApACAeAwAArwkAIAQAAJ4JACAGAADlCQAgBwAA5gkAIAsAAM4JACAMAADaCQAgEAAA4QkAIBcAAOcJACCABQAA4gkAMIEFAAAQABCCBQAA4gkAMIMFAgDnCAAhhAUCAOcIACGUBQIA6ggAIZgFQADoCAAhowVAAOgIACGkBQIA5wgAIdMFAADkCZ0GIpEGAgDqCAAhkgYCAOcIACGTBgEApQgAIZQGAQClCAAhlQZAAOgIACGWBgEApQgAIZgGAADjCZgGIpkGAADKCAAgmgZAAOgIACGbBgEApQgAIZ0GAQDACAAhngYBAMAIACEEhgUAAACYBgKHBQAAAJgGCIgFAAAAmAYIkAUAAI4JmAYiBIYFAAAAnQYChwUAAACdBgiIBQAAAJ0GCJAFAACMCZ0GIh0DAACmCAAgBAAAngkAIAcAAOYJACAIAACpCQAgCwAAzgkAIBgAAKwJACAZAAD9CQAggAUAAPsJADCBBQAABwAQggUAAPsJADCDBQIA5wgAIYQFAgDnCAAhlAUCAOoIACGXBQEAwAgAIZgFQADoCAAhpAUCAOcIACHTBQEApQgAIeQFAQClCAAh_gUBAKUIACGSBgIA5wgAIaoGQADoCAAhqwYBAKUIACGsBgEApQgAIa0GIADFCAAhrgYBAMAIACGvBiAAxQgAIbEGAAD8CbEGIssGAAAHACDMBgAABwAgDwMAAK8JACAFAACtCQAgCAAAqQkAIIAFAACuCQAwgQUAAAsAEIIFAACuCQAwgwUCAOcIACGEBQIA5wgAIZgFQADoCAAhmQUBAKUIACGxBQEAwAgAIagGAQClCAAhqQYBAMAIACHLBgAACwAgzAYAAAsAIAPFBgAARgAgxgYAAEYAIMcGAABGACAkBQAArQkAIAcAAOoJACAIAACpCQAgHQAA8QkAICUAALoJACAmAADpCQAgJwAA6wkAICgAAOwJACApAADtCQAgKgAAqgkAICsAAO4JACAsAADvCQAgLQAA8AkAIC4AALwJACAvAADyCQAgMAAA8wkAIDEAAPQJACAyAAD1CQAgMwAA9gkAIDQAAPcJACA1AAD4CQAgNgAA-QkAIDcAAPoJACCABQAA6AkAMIEFAAANABCCBQAA6AkAMIMFAgDnCAAhhgYBAKUIACGHBgEApQgAIbwGIADFCAAhvQYCAOcIACG-BiAAxQgAIb8GAgDnCAAhwAYgAMUIACHBBgIA5wgAIcIGAgDnCAAhA8UGAAADACDGBgAAAwAgxwYAAAMAIAPFBgAACwAgxgYAAAsAIMcGAAALACADxQYAABcAIMYGAAAXACDHBgAAFwAgA8UGAACTAQAgxgYAAJMBACDHBgAAkwEAIAPFBgAAlwEAIMYGAACXAQAgxwYAAJcBACADxQYAAJwBACDGBgAAnAEAIMcGAACcAQAgA8UGAACgAQAgxgYAAKABACDHBgAAoAEAIAPFBgAApAEAIMYGAACkAQAgxwYAAKQBACADxQYAAGUAIMYGAABlACDHBgAAZQAgDQMAAKYIACCABQAAyQgAMIEFAACrAQAQggUAAMkIADCDBQIA5wgAIYQFAgDnCAAhrQUBAKUIACHEBQEApQgAIcUFAQClCAAhxgUBAMAIACHHBQAAyggAIMsGAACrAQAgzAYAAKsBACAVAwAApggAIIAFAADECAAwgQUAAK0BABCCBQAAxAgAMIMFAgDnCAAhhAUCAOcIACG3BQEApQgAIbgFIADFCAAhuQUBAKUIACG6BSAAxQgAIbsFAQClCAAhvAUgAMUIACG9BQEApQgAIb4FAQClCAAhvwUBAKUIACHABQEApQgAIcEFIADFCAAhwgUgAMUIACHDBSAAxQgAIcsGAACtAQAgzAYAAK0BACAJAwAApggAID0AALwIACCABQAAwggAMIEFAACvAQAQggUAAMIIADCDBQIA5wgAIYQFAgDnCAAhywYAAK8BACDMBgAArwEAIBIDAACmCAAggAUAAL8IADCBBQAAsQEAEIIFAAC_CAAwgwUCAOcIACGEBQIA5wgAIa0FAQDACAAhrgUBAMAIACGvBQEAwAgAIbAFAQDACAAhsQUBAMAIACGyBQEAwAgAIbMFAQDACAAhtAUBAMAIACG1BQEAwAgAIbYFAQDACAAhywYAALEBACDMBgAAsQEAIAkDAACmCAAgPQAAvAgAIIAFAAC7CAAwgQUAALMBABCCBQAAuwgAMIMFAgDnCAAhhAUCAOcIACHLBgAAswEAIMwGAACzAQAgA8UGAAC1AQAgxgYAALUBACDHBgAAtQEAIAPFBgAAbgAgxgYAAG4AIMcGAABuACADxQYAALwBACDGBgAAvAEAIMcGAAC8AQAgCQMAAKYIACCABQAApAgAMIEFAADAAQAQggUAAKQIADCDBQIA5wgAIYQFAgDnCAAhhQUBAKUIACHLBgAAwAEAIMwGAADAAQAgGwMAAKYIACAEAACeCQAgBwAA5gkAIAgAAKkJACALAADOCQAgGAAArAkAIBkAAP0JACCABQAA-wkAMIEFAAAHABCCBQAA-wkAMIMFAgDnCAAhhAUCAOcIACGUBQIA6ggAIZcFAQDACAAhmAVAAOgIACGkBQIA5wgAIdMFAQClCAAh5AUBAKUIACH-BQEApQgAIZIGAgDnCAAhqgZAAOgIACGrBgEApQgAIawGAQClCAAhrQYgAMUIACGuBgEAwAgAIa8GIADFCAAhsQYAAPwJsQYiBIYFAAAAsQYChwUAAACxBgiIBQAAALEGCJAFAACZCbEGIgPFBgAAUgAgxgYAAFIAIMcGAABSACAiAwAApggAIAUAAK0JACAIAACpCQAgDAAAqgkAIBgAAKwJACAcAAD_CQAgHQAA8QkAIB4AAIAKACAfAACBCgAgJQAAugkAIIAFAAD-CQAwgQUAAAMAEIIFAAD-CQAwgwUCAOcIACGEBQIA5wgAIZgFQADoCAAhowVAAOgIACGxBQEAwAgAIbQFAQDACAAhtgUBAMAIACHTBQAA_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_xMAINMGAAABACADRAAA_RMAIM0GAAD-EwAg0wYAAAEAIAAAAAAABUQAAPgTACBFAAD7EwAgzQYAAPkTACDOBgAA-hMAINMGAAABACADRAAA-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-QoAIQoDAACkCwAgBAAApQsAIBkAAKYLACAhAACjCwAggwUCAIgKACGEBQIAiAoAIZgFQACdCgAhmQUBAIcKACGjBUAAnQoAIaQFAgD5CgAhCgMAAMALACAEAADBCwAgGQAAwgsAICEAAL8LACCDBQIAAAABhAUCAAAAAZgFQAAAAAGZBQEAAAABowVAAAAAAaQFAgAAAAEERAAAswsAMM0GAAC0CwAwzwYAALYLACDTBgAAtwsAMANEAAC9EwAgzQYAAL4TACDTBgAAAQAgA0QAALsTACDNBgAAvBMAINMGAAAFACAERAAApwsAMM0GAACoCwAwzwYAAKoLACDTBgAAqwsAMANEAAC5EwAgzQYAALoTACDTBgAAcgAgAAAAAAAB0AZAAAAAAQAAAAAAAdAGAAAA5AUCBUQAALQTACBFAAC3EwAgzQYAALUTACDOBgAAthMAINMGAAABACADRAAAtBMAIM0GAAC1EwAg0wYAAAEAIAAAAAAABUQAAK8TACBFAACyEwAgzQYAALATACDOBgAAsRMAINMGAAABACADRAAArxMAIM0GAACwEwAg0wYAAAEAIAAAAAAABUQAAKoTACBFAACtEwAgzQYAAKsTACDOBgAArBMAINMGAAABACADRAAAqhMAIM0GAACrEwAg0wYAAAEAIAAAAAAAAdAGAAAA7gUCBUQAAKITACBFAACoEwAgzQYAAKMTACDOBgAApxMAINMGAAAcACAFRAAAoBMAIEUAAKUTACDNBgAAoRMAIM4GAACkEwAg0wYAACsAIANEAACiEwAgzQYAAKMTACDTBgAAHAAgA0QAAKATACDNBgAAoRMAINMGAAArACAAAAAAAAXQBhAAAAAB1gYQAAAAAdcGEAAAAAHYBhAAAAAB2QYQAAAAAQHQBgAAAPsFAgdEAACJEwAgRQAAnhMAIM0GAACKEwAgzgYAAJ0TACDRBgAAEAAg0gYAABAAINMGAAASACAFRAAAhxMAIEUAAJsTACDNBgAAiBMAIM4GAACaEwAg0wYAAAUAIAdEAACFEwAgRQAAmBMAIM0GAACGEwAgzgYAAJcTACDRBgAADQAg0gYAAA0AINMGAAABACAHRAAAgxMAIEUAAJUTACDNBgAAhBMAIM4GAACUEwAg0QYAABcAINIGAAAXACDTBgAAkAEAIAtEAACeDAAwRQAAogwAMM0GAACfDAAwzgYAAKAMADDPBgAAoQwAINAGAACTDAAw0QYAAJMMADDSBgAAkwwAMNMGAACTDAAw1AYAAKMMADDVBgAAlgwAMAtEAACBDAAwRQAAhgwAMM0GAACCDAAwzgYAAIMMADDPBgAAhAwAINAGAACFDAAw0QYAAIUMADDSBgAAhQwAMNMGAACFDAAw1AYAAIcMADDVBgAAiAwAMAtEAAD4CwAwRQAA_AsAMM0GAAD5CwAwzgYAAPoLADDPBgAA-wsAINAGAACkCgAw0QYAAKQKADDSBgAApAoAMNMGAACkCgAw1AYAAP0LADDVBgAApwoAMAQSAACUCgAggwUCAAAAAZEFAgAAAAGTBRAAAAABAgAAAC8AIEQAAIAMACADAAAALwAgRAAAgAwAIEUAAP8LACABPQAAkxMAMAIAAAAvACA9AAD_CwAgAgAAAKgKACA9AAD-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-QsAMM8GAAD7CwAg0wYAAKQKADAAAAAAAAVEAAD-EgAgRQAAgRMAIM0GAAD_EgAgzgYAAIATACDTBgAAXQAgA0QAAP4SACDNBgAA_xIAINMGAABdACAAAAAAAAHQBgAAAIAGAgVEAAD4EgAgRQAA_BIAIM0GAAD5EgAgzgYAAPsSACDTBgAABQAgC0QAAL0MADBFAADCDAAwzQYAAL4MADDOBgAAvwwAMM8GAADADAAg0AYAAMEMADDRBgAAwQwAMNIGAADBDAAw0wYAAMEMADDUBgAAwwwAMNUGAADEDAAwBIMFAgAAAAHIBQEAAAABzQVAAAAAAfwFAAEAAAECAAAAYQAgRAAAyAwAIAMAAABhACBEAADIDAAgRQAAxwwAIAE9AAD6EgAwCRoAAMMJACCABQAAwgkAMIEFAABfABCCBQAAwgkAMIMFAgAAAAHIBQEApQgAIc0FQADoCAAh_AUAAbIJACH9BQIA5wgAIQIAAABhACA9AADHDAAgAgAAAMUMACA9AADGDAAgCIAFAADEDAAwgQUAAMUMABCCBQAAxAwAMIMFAgDnCAAhyAUBAKUIACHNBUAA6AgAIfwFAAGyCQAh_QUCAOcIACEIgAUAAMQMADCBBQAAxQwAEIIFAADEDAAwgwUCAOcIACHIBQEApQgAIc0FQADoCAAh_AUAAbIJACH9BQIA5wgAIQSDBQIAiAoAIcgFAQCHCgAhzQVAAJ0KACH8BQABgwsAIQSDBQIAiAoAIcgFAQCHCgAhzQVAAJ0KACH8BQABgwsAIQSDBQIAAAAByAUBAAAAAc0FQAAAAAH8BQABAAABA0QAAPgSACDNBgAA-RIAINMGAAAFACAERAAAvQwAMM0GAAC-DAAwzwYAAMAMACDTBgAAwQwAMAAAAAAABUQAAPMSACBFAAD2EgAgzQYAAPQSACDOBgAA9RIAINMGAAABACADRAAA8xIAIM0GAAD0EgAg0wYAAAEAIAAAAAAABUQAAO4SACBFAADxEgAgzQYAAO8SACDOBgAA8BIAINMGAAABACADRAAA7hIAIM0GAADvEgAg0wYAAAEAIAAAAAAABUQAAOkSACBFAADsEgAgzQYAAOoSACDOBgAA6xIAINMGAAASACADRAAA6RIAIM0GAADqEgAg0wYAABIAIAAAAAAAB0QAAOQSACBFAADnEgAgzQYAAOUSACDOBgAA5hIAINEGAAAaACDSBgAAGgAg0wYAABwAIANEAADkEgAgzQYAAOUSACDTBgAAHAAgAAAAAAAB0AYAAACYBgIB0AYAAACdBgIFRAAA0RIAIEUAAOISACDNBgAA0hIAIM4GAADhEgAg0wYAAAUAIAdEAADPEgAgRQAA3xIAIM0GAADQEgAgzgYAAN4SACDRBgAABwAg0gYAAAcAINMGAAAJACAHRAAAzRIAIEUAANwSACDNBgAAzhIAIM4GAADbEgAg0QYAAA0AINIGAAANACDTBgAAAQAgB0QAAMsSACBFAADZEgAgzQYAAMwSACDOBgAA2BIAINEGAAALACDSBgAACwAg0wYAAI0BACAHRAAAyRIAIEUAANYSACDNBgAAyhIAIM4GAADVEgAg0QYAABcAINIGAAAXACDTBgAAkAEAIAtEAACHDQAwRQAAiw0AMM0GAACIDQAwzgYAAIkNADDPBgAAig0AINAGAACFDAAw0QYAAIUMADDSBgAAhQwAMNMGAACFDAAw1AYAAIwNADDVBgAAiAwAMAtEAAD7DAAwRQAAgA0AMM0GAAD8DAAwzgYAAP0MADDPBgAA_gwAINAGAAD_DAAw0QYAAP8MADDSBgAA_wwAMNMGAAD_DAAw1AYAAIENADDVBgAAgg0AMAdEAAD2DAAgRQAA-QwAIM0GAAD3DAAgzgYAAPgMACDRBgAAGgAg0gYAABoAINMGAAAcACAXBAAAqAwAIAoAAKkMACALAACqDAAgDQAAqwwAIBAAAKwMACATAACtDAAggwUCAAAAAYQFAgAAAAGUBQIAAAABlwUBAAAAAZgFQAAAAAGjBUAAAAABpAUCAAAAAdMFAAAA-wUC8gUCAAAAAfMFEAAAAAH0BRAAAAAB9QUQAAAAAfYFEAAAAAH3BRAAAAAB-AUQAAAAAfkFEAAAAAH7BQEAAAABAgAAABwAIEQAAPYMACADAAAAGgAgRAAA9gwAIEUAAPoMACAZAAAAGgAgBAAA8gsAIAoAAPMLACALAAD0CwAgDQAA9QsAIBAAAPYLACATAAD3CwAgPQAA-gwAIIMFAgCICgAhhAUCAIgKACGUBQIA-QoAIZcFAQCcCgAhmAVAAJ0KACGjBUAAnQoAIaQFAgCICgAh0wUAAPAL-wUi8gUCAPkKACHzBRAAkQoAIfQFEACRCgAh9QUQAJEKACH2BRAAkQoAIfcFEADvCwAh-AUQAJEKACH5BRAAkQoAIfsFAQCcCgAhFwQAAPILACAKAADzCwAgCwAA9AsAIA0AAPULACAQAAD2CwAgEwAA9wsAIIMFAgCICgAhhAUCAIgKACGUBQIA-QoAIZcFAQCcCgAhmAVAAJ0KACGjBUAAnQoAIaQFAgCICgAh0wUAAPAL-wUi8gUCAPkKACHzBRAAkQoAIfQFEACRCgAh9QUQAJEKACH2BRAAkQoAIfcFEADvCwAh-AUQAJEKACH5BRAAkQoAIfsFAQCcCgAhBIMFAgAAAAHIBQEAAAABygUBAAAAAcwFAQAAAAECAAAASAAgRAAAhg0AIAMAAABIACBEAACGDQAgRQAAhQ0AIAE9AADUEgAwCQkAAMoJACCABQAAyQkAMIEFAABGABCCBQAAyQkAMIMFAgAAAAHIBQEApQgAIcoFAQClCAAhzAUBAMAIACHxBQIA5wgAIQIAAABIACA9AACFDQAgAgAAAIMNACA9AACEDQAgCIAFAACCDQAwgQUAAIMNABCCBQAAgg0AMIMFAgDnCAAhyAUBAKUIACHKBQEApQgAIcwFAQDACAAh8QUCAOcIACEIgAUAAIINADCBBQAAgw0AEIIFAACCDQAwgwUCAOcIACHIBQEApQgAIcoFAQClCAAhzAUBAMAIACHxBQIA5wgAIQSDBQIAiAoAIcgFAQCHCgAhygUBAIcKACHMBQEAnAoAIQSDBQIAiAoAIcgFAQCHCgAhygUBAIcKACHMBQEAnAoAIQSDBQIAAAAByAUBAAAAAcoFAQAAAAHMBQEAAAABEgwAAOYMACANAACdDAAggwUCAAAAAZIFAgAAAAHTBQAAAJEGAvMFEAAAAAH0BRAAAAAB9QUQAAAAAfYFEAAAAAH7BQEAAAABiAYBAAAAAYkGQAAAAAGKBgEAAAABiwYBAAAAAYwGAQAAAAGNBgEAAAABjgYBAAAAAY8GEAAAAAECAAAAKwAgRAAAjw0AIAMAAAArACBEAACPDQAgRQAAjg0AIAE9AADTEgAwAgAAACsAID0AAI4NACACAAAAiQwAID0AAI0NACAQgwUCAIgKACGSBQIA-QoAIdMFAACLDJEGIvMFEACRCgAh9AUQAJEKACH1BRAAkQoAIfYFEACRCgAh-wUBAJwKACGIBgEAhwoAIYkGQACdCgAhigYBAJwKACGLBgEAnAoAIYwGAQCcCgAhjQYBAJwKACGOBgEAnAoAIY8GEADvCwAhEgwAAOUMACANAACODAAggwUCAIgKACGSBQIA-QoAIdMFAACLDJEGIvMFEACRCgAh9AUQAJEKACH1BRAAkQoAIfYFEACRCgAh-wUBAJwKACGIBgEAhwoAIYkGQACdCgAhigYBAJwKACGLBgEAnAoAIYwGAQCcCgAhjQYBAJwKACGOBgEAnAoAIY8GEADvCwAhEgwAAOYMACANAACdDAAggwUCAAAAAZIFAgAAAAHTBQAAAJEGAvMFEAAAAAH0BRAAAAAB9QUQAAAAAfYFEAAAAAH7BQEAAAABiAYBAAAAAYkGQAAAAAGKBgEAAAABiwYBAAAAAYwGAQAAAAGNBgEAAAABjgYBAAAAAY8GEAAAAAEDRAAA0RIAIM0GAADSEgAg0wYAAAUAIANEAADPEgAgzQYAANASACDTBgAACQAgA0QAAM0SACDNBgAAzhIAINMGAAABACADRAAAyxIAIM0GAADMEgAg0wYAAI0BACADRAAAyRIAIM0GAADKEgAg0wYAAJABACAERAAAhw0AMM0GAACIDQAwzwYAAIoNACDTBgAAhQwAMAREAAD7DAAwzQYAAPwMADDPBgAA_gwAINMGAAD_DAAwA0QAAPYMACDNBgAA9wwAINMGAAAcACAAAAAAAAHQBgAAAKQGAgVEAAC-EgAgRQAAxxIAIM0GAAC_EgAgzgYAAMYSACDTBgAACQAgBUQAALwSACBFAADEEgAgzQYAAL0SACDOBgAAwxIAINMGAAAFACAHRAAAuhIAIEUAAMESACDNBgAAuxIAIM4GAADAEgAg0QYAABcAINIGAAAXACDTBgAAkAEAIANEAAC-EgAgzQYAAL8SACDTBgAACQAgA0QAALwSACDNBgAAvRIAINMGAAAFACADRAAAuhIAIM0GAAC7EgAg0wYAAJABACAAAAAAAAVEAACeEgAgRQAAuBIAIM0GAACfEgAgzgYAALcSACDTBgAAAQAgC0QAAI0OADBFAACRDgAwzQYAAI4OADDOBgAAjw4AMM8GAACQDgAg0AYAANENADDRBgAA0Q0AMNIGAADRDQAw0wYAANENADDUBgAAkg4AMNUGAADUDQAwC0QAAIEOADBFAACGDgAwzQYAAIIOADDOBgAAgw4AMM8GAACEDgAg0AYAAIUOADDRBgAAhQ4AMNIGAACFDgAw0wYAAIUOADDUBgAAhw4AMNUGAACIDgAwC0QAAPUNADBFAAD6DQAwzQYAAPYNADDOBgAA9w0AMM8GAAD4DQAg0AYAAPkNADDRBgAA-Q0AMNIGAAD5DQAw0wYAAPkNADDUBgAA-w0AMNUGAAD8DQAwC0QAAOwNADBFAADwDQAwzQYAAO0NADDOBgAA7g0AMM8GAADvDQAg0AYAAN0NADDRBgAA3Q0AMNIGAADdDQAw0wYAAN0NADDUBgAA8Q0AMNUGAADgDQAwC0QAAK8NADBFAAC0DQAwzQYAALANADDOBgAAsQ0AMM8GAACyDQAg0AYAALMNADDRBgAAsw0AMNIGAACzDQAw0wYAALMNADDUBgAAtQ0AMNUGAAC2DQAwFgMAAOcNACAEAADmDQAgBwAA6A0AIAgAAOoNACAYAADpDQAgGQAA6w0AIIMFAgAAAAGEBQIAAAABlwUBAAAAAZgFQAAAAAGkBQIAAAAB0wUBAAAAAeQFAQAAAAH-BQEAAAABkgYCAAAAAaoGQAAAAAGrBgEAAAABrAYBAAAAAa0GIAAAAAGuBgEAAAABrwYgAAAAAbEGAAAAsQYCAgAAAAkAIEQAAOUNACADAAAACQAgRAAA5Q0AIEUAALoNACABPQAAthIAMBsDAACmCAAgBAAAngkAIAcAAOYJACAIAACpCQAgCwAAzgkAIBgAAKwJACAZAAD9CQAggAUAAPsJADCBBQAABwAQggUAAPsJADCDBQIAAAABhAUCAOcIACGUBQIA6ggAIZcFAQDACAAhmAVAAOgIACGkBQIA5wgAIdMFAQClCAAh5AUBAKUIACH-BQEApQgAIZIGAgDnCAAhqgZAAOgIACGrBgEApQgAIawGAQClCAAhrQYgAMUIACGuBgEAwAgAIa8GIADFCAAhsQYAAPwJsQYiAgAAAAkAID0AALoNACACAAAAtw0AID0AALgNACAUgAUAALYNADCBBQAAtw0AEIIFAAC2DQAwgwUCAOcIACGEBQIA5wgAIZQFAgDqCAAhlwUBAMAIACGYBUAA6AgAIaQFAgDnCAAh0wUBAKUIACHkBQEApQgAIf4FAQClCAAhkgYCAOcIACGqBkAA6AgAIasGAQClCAAhrAYBAKUIACGtBiAAxQgAIa4GAQDACAAhrwYgAMUIACGxBgAA_AmxBiIUgAUAALYNADCBBQAAtw0AEIIFAAC2DQAwgwUCAOcIACGEBQIA5wgAIZQFAgDqCAAhlwUBAMAIACGYBUAA6AgAIaQFAgDnCAAh0wUBAKUIACHkBQEApQgAIf4FAQClCAAhkgYCAOcIACGqBkAA6AgAIasGAQClCAAhrAYBAKUIACGtBiAAxQgAIa4GAQDACAAhrwYgAMUIACGxBgAA_AmxBiIQgwUCAIgKACGEBQIAiAoAIZcFAQCcCgAhmAVAAJ0KACGkBQIAiAoAIdMFAQCHCgAh5AUBAIcKACH-BQEAhwoAIZIGAgCICgAhqgZAAJ0KACGrBgEAhwoAIawGAQCHCgAhrQYgALoKACGuBgEAnAoAIa8GIAC6CgAhsQYAALkNsQYiAdAGAAAAsQYCFgMAALwNACAEAAC7DQAgBwAAvQ0AIAgAAL8NACAYAAC-DQAgGQAAwA0AIIMFAgCICgAhhAUCAIgKACGXBQEAnAoAIZgFQACdCgAhpAUCAIgKACHTBQEAhwoAIeQFAQCHCgAh_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_w0AIAIAAAD9DQAgPQAA_g0AIAmABQAA_A0AMIEFAAD9DQAQggUAAPwNADCDBQIA5wgAIZQFAgDnCAAhlQUQANAJACGWBRAA0AkAIZcFAQDACAAhmAVAAOgIACEJgAUAAPwNADCBBQAA_Q0AEIIFAAD8DQAwgwUCAOcIACGUBQIA5wgAIZUFEADQCQAhlgUQANAJACGXBQEAwAgAIZgFQADoCAAhBYMFAgCICgAhlQUQAJEKACGWBRAAkQoAIZcFAQCcCgAhmAVAAJ0KACEGEQAAnwoAIIMFAgCICgAhlQUQAJEKACGWBRAAkQoAIZcFAQCcCgAhmAVAAJ0KACEGEQAArQoAIIMFAgAAAAGVBRAAAAABlgUQAAAAAZcFAQAAAAGYBUAAAAABFwQAAKgMACAJAACnDAAgCgAAqQwAIA0AAKsMACAQAACsDAAgEwAArQwAIIMFAgAAAAGEBQIAAAABlwUBAAAAAZgFQAAAAAGjBUAAAAABpAUCAAAAAdMFAAAA-wUC8QUCAAAAAfIFAgAAAAHzBRAAAAAB9AUQAAAAAfUFEAAAAAH2BRAAAAAB9wUQAAAAAfgFEAAAAAH5BRAAAAAB-wUBAAAAAQIAAAAcACBEAACMDgAgAwAAABwAIEQAAIwOACBFAACLDgAgAT0AAKESADAcBAAAngkAIAkAANkJACAKAACvCQAgCwAAzgkAIA0AANsJACAQAADhCQAgEwAA0gkAIIAFAADfCQAwgQUAABoAEIIFAADfCQAwgwUCAAAAAYQFAgDnCAAhlAUCAOoIACGXBQEAwAgAIZgFQADoCAAhowVAAOgIACGkBQIA5wgAIdMFAADgCfsFIvEFAgAAAAHyBQIA6ggAIfMFEADQCQAh9AUQANAJACH1BRAA0AkAIfYFEADQCQAh9wUQAMwJACH4BRAA0AkAIfkFEADQCQAh-wUBAMAIACECAAAAHAAgPQAAiw4AIAIAAACJDgAgPQAAig4AIBWABQAAiA4AMIEFAACJDgAQggUAAIgOADCDBQIA5wgAIYQFAgDnCAAhlAUCAOoIACGXBQEAwAgAIZgFQADoCAAhowVAAOgIACGkBQIA5wgAIdMFAADgCfsFIvEFAgDqCAAh8gUCAOoIACHzBRAA0AkAIfQFEADQCQAh9QUQANAJACH2BRAA0AkAIfcFEADMCQAh-AUQANAJACH5BRAA0AkAIfsFAQDACAAhFYAFAACIDgAwgQUAAIkOABCCBQAAiA4AMIMFAgDnCAAhhAUCAOcIACGUBQIA6ggAIZcFAQDACAAhmAVAAOgIACGjBUAA6AgAIaQFAgDnCAAh0wUAAOAJ-wUi8QUCAOoIACHyBQIA6ggAIfMFEADQCQAh9AUQANAJACH1BRAA0AkAIfYFEADQCQAh9wUQAMwJACH4BRAA0AkAIfkFEADQCQAh-wUBAMAIACERgwUCAIgKACGEBQIAiAoAIZcFAQCcCgAhmAVAAJ0KACGjBUAAnQoAIaQFAgCICgAh0wUAAPAL-wUi8QUCAPkKACHyBQIA-QoAIfMFEACRCgAh9AUQAJEKACH1BRAAkQoAIfYFEACRCgAh9wUQAO8LACH4BRAAkQoAIfkFEACRCgAh-wUBAJwKACEXBAAA8gsAIAkAAPELACAKAADzCwAgDQAA9QsAIBAAAPYLACATAAD3CwAggwUCAIgKACGEBQIAiAoAIZcFAQCcCgAhmAVAAJ0KACGjBUAAnQoAIaQFAgCICgAh0wUAAPAL-wUi8QUCAPkKACHyBQIA-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_gUBAAAAAaoGQAAAAAGrBgEAAAABrAYBAAAAAa0GIAAAAAGuBgEAAAABrwYgAAAAAbEGAAAAsQYCA0QAAJQSACDNBgAAlRIAINMGAACQAQAgA0QAAJISACDNBgAAkxIAINMGAAABACAERAAArQ4AMM0GAACuDgAwzwYAALAOACDTBgAAsw0AMAREAACkDgAwzQYAAKUOADDPBgAApw4AINMGAADRDQAwAAAAAAAFRAAAjRIAIEUAAJASACDNBgAAjhIAIM4GAACPEgAg0wYAAAkAIANEAACNEgAgzQYAAI4SACDTBgAACQAgAAAAAAAAAAAAAAVEAACAEgAgRQAAixIAIM0GAACBEgAgzgYAAIoSACDTBgAAAQAgC0QAAKMPADBFAACnDwAwzQYAAKQPADDOBgAApQ8AMM8GAACmDwAg0AYAALMNADDRBgAAsw0AMNIGAACzDQAw0wYAALMNADDUBgAAqA8AMNUGAAC2DQAwC0QAAJoPADBFAACeDwAwzQYAAJsPADDOBgAAnA8AMM8GAACdDwAg0AYAAN0NADDRBgAA3Q0AMNIGAADdDQAw0wYAAN0NADDUBgAAnw8AMNUGAADgDQAwC0QAAJEPADBFAACVDwAwzQYAAJIPADDOBgAAkw8AMM8GAACUDwAg0AYAANENADDRBgAA0Q0AMNIGAADRDQAw0wYAANENADDUBgAAlg8AMNUGAADUDQAwC0QAAIUPADBFAACKDwAwzQYAAIYPADDOBgAAhw8AMM8GAACIDwAg0AYAAIkPADDRBgAAiQ8AMNIGAACJDwAw0wYAAIkPADDUBgAAiw8AMNUGAACMDwAwC0QAAPwOADBFAACADwAwzQYAAP0OADDOBgAA_g4AMM8GAAD_DgAg0AYAAIUOADDRBgAAhQ4AMNIGAACFDgAw0wYAAIUOADDUBgAAgQ8AMNUGAACIDgAwC0QAAPAOADBFAAD1DgAwzQYAAPEOADDOBgAA8g4AMM8GAADzDgAg0AYAAPQOADDRBgAA9A4AMNIGAAD0DgAw0wYAAPQOADDUBgAA9g4AMNUGAAD3DgAwC0QAAOQOADBFAADpDgAwzQYAAOUOADDOBgAA5g4AMM8GAADnDgAg0AYAAOgOADDRBgAA6A4AMNIGAADoDgAw0wYAAOgOADDUBgAA6g4AMNUGAADrDgAwB0QAAN8OACBFAADiDgAgzQYAAOAOACDOBgAA4Q4AINEGAABuACDSBgAAbgAg0wYAALoBACALRAAA1g4AMEUAANoOADDNBgAA1w4AMM4GAADYDgAwzwYAANkOACDQBgAAtwsAMNEGAAC3CwAw0gYAALcLADDTBgAAtwsAMNQGAADbDgAw1QYAALoLADAKAwAAwAsAIBkAAMILACAgAADDCwAgIQAAvwsAIIMFAgAAAAGEBQIAAAABmAVAAAAAAZkFAQAAAAGjBUAAAAAB3QUCAAAAAQIAAAByACBEAADeDgAgAwAAAHIAIEQAAN4OACBFAADdDgAgAT0AAIkSADACAAAAcgAgPQAA3Q4AIAIAAAC7CwAgPQAA3A4AIAaDBQIAiAoAIYQFAgCICgAhmAVAAJ0KACGZBQEAhwoAIaMFQACdCgAh3QUCAPkKACEKAwAApAsAIBkAAKYLACAgAACiCwAgIQAAowsAIIMFAgCICgAhhAUCAIgKACGYBUAAnQoAIZkFAQCHCgAhowVAAJ0KACHdBQIA-QoAIQoDAADACwAgGQAAwgsAICAAAMMLACAhAAC_CwAggwUCAAAAAYQFAgAAAAGYBUAAAAABmQUBAAAAAaMFQAAAAAHdBQIAAAABBgMAAL4KACCDBQIAAAABhAUCAAAAAaMFQAAAAAGlBQEAAAABpgUgAAAAAQIAAAC6AQAgRAAA3w4AIAMAAABuACBEAADfDgAgRQAA4w4AIAgAAABuACADAAC8CgAgPQAA4w4AIIMFAgCICgAhhAUCAIgKACGjBUAAnQoAIaUFAQCHCgAhpgUgALoKACEGAwAAvAoAIIMFAgCICgAhhAUCAIgKACGjBUAAnQoAIaUFAQCHCgAhpgUgALoKACEIgwUCAAAAAaMFQAAAAAHIBQEAAAAByQUBAAAAAcoFAQAAAAHLBQQAAAABzAUBAAAAAc0FQAAAAAECAAAAbAAgRAAA7w4AIAMAAABsACBEAADvDgAgRQAA7g4AIAE9AACIEgAwDQQAAJ4JACCABQAAvQkAMIEFAABqABCCBQAAvQkAMIMFAgAAAAGjBUAA6AgAIaQFAgDnCAAhyAUBAKUIACHJBQEApQgAIcoFAQClCAAhywUEALUJACHMBQEApQgAIc0FQADoCAAhAgAAAGwAID0AAO4OACACAAAA7A4AID0AAO0OACAMgAUAAOsOADCBBQAA7A4AEIIFAADrDgAwgwUCAOcIACGjBUAA6AgAIaQFAgDnCAAhyAUBAKUIACHJBQEApQgAIcoFAQClCAAhywUEALUJACHMBQEApQgAIc0FQADoCAAhDIAFAADrDgAwgQUAAOwOABCCBQAA6w4AMIMFAgDnCAAhowVAAOgIACGkBQIA5wgAIcgFAQClCAAhyQUBAKUIACHKBQEApQgAIcsFBAC1CQAhzAUBAKUIACHNBUAA6AgAIQiDBQIAiAoAIaMFQACdCgAhyAUBAIcKACHJBQEAhwoAIcoFAQCHCgAhywUEAO4KACHMBQEAhwoAIc0FQACdCgAhCIMFAgCICgAhowVAAJ0KACHIBQEAhwoAIckFAQCHCgAhygUBAIcKACHLBQQA7goAIcwFAQCHCgAhzQVAAJ0KACEIgwUCAAAAAaMFQAAAAAHIBQEAAAAByQUBAAAAAcoFAQAAAAHLBQQAAAABzAUBAAAAAc0FQAAAAAEKAwAA_QoAIIMFAgAAAAGEBQIAAAABmAVAAAAAAc8FAAAAzwUC0QUAAADRBQLTBQAAANMFAtQFAQAAAAHVBQIAAAAB1gUBAAAAAQIAAABnACBEAAD7DgAgAwAAAGcAIEQAAPsOACBFAAD6DgAgAT0AAIcSADAPAwAArwkAIAQAAJ4JACCABQAAvgkAMIEFAABlABCCBQAAvgkAMIMFAgAAAAGEBQIA6ggAIZgFQADoCAAhpAUCAOcIACHPBQAAvwnPBSLRBQAAwAnRBSLTBQAAwQnTBSLUBQEAwAgAIdUFAgDqCAAh1gUBAMAIACECAAAAZwAgPQAA-g4AIAIAAAD4DgAgPQAA-Q4AIA2ABQAA9w4AMIEFAAD4DgAQggUAAPcOADCDBQIA5wgAIYQFAgDqCAAhmAVAAOgIACGkBQIA5wgAIc8FAAC_Cc8FItEFAADACdEFItMFAADBCdMFItQFAQDACAAh1QUCAOoIACHWBQEAwAgAIQ2ABQAA9w4AMIEFAAD4DgAQggUAAPcOADCDBQIA5wgAIYQFAgDqCAAhmAVAAOgIACGkBQIA5wgAIc8FAAC_Cc8FItEFAADACdEFItMFAADBCdMFItQFAQDACAAh1QUCAOoIACHWBQEAwAgAIQmDBQIAiAoAIYQFAgD5CgAhmAVAAJ0KACHPBQAA9grPBSLRBQAA9wrRBSLTBQAA-ArTBSLUBQEAnAoAIdUFAgD5CgAh1gUBAJwKACEKAwAA-woAIIMFAgCICgAhhAUCAPkKACGYBUAAnQoAIc8FAAD2Cs8FItEFAAD3CtEFItMFAAD4CtMFItQFAQCcCgAh1QUCAPkKACHWBQEAnAoAIQoDAAD9CgAggwUCAAAAAYQFAgAAAAGYBUAAAAABzwUAAADPBQLRBQAAANEFAtMFAAAA0wUC1AUBAAAAAdUFAgAAAAHWBQEAAAABFwkAAKcMACAKAACpDAAgCwAAqgwAIA0AAKsMACAQAACsDAAgEwAArQwAIIMFAgAAAAGEBQIAAAABlAUCAAAAAZcFAQAAAAGYBUAAAAABowVAAAAAAdMFAAAA-wUC8QUCAAAAAfIFAgAAAAHzBRAAAAAB9AUQAAAAAfUFEAAAAAH2BRAAAAAB9wUQAAAAAfgFEAAAAAH5BRAAAAAB-wUBAAAAAQIAAAAcACBEAACEDwAgAwAAABwAIEQAAIQPACBFAACDDwAgAT0AAIYSADACAAAAHAAgPQAAgw8AIAIAAACJDgAgPQAAgg8AIBGDBQIAiAoAIYQFAgCICgAhlAUCAPkKACGXBQEAnAoAIZgFQACdCgAhowVAAJ0KACHTBQAA8Av7BSLxBQIA-QoAIfIFAgD5CgAh8wUQAJEKACH0BRAAkQoAIfUFEACRCgAh9gUQAJEKACH3BRAA7wsAIfgFEACRCgAh-QUQAJEKACH7BQEAnAoAIRcJAADxCwAgCgAA8wsAIAsAAPQLACANAAD1CwAgEAAA9gsAIBMAAPcLACCDBQIAiAoAIYQFAgCICgAhlAUCAPkKACGXBQEAnAoAIZgFQACdCgAhowVAAJ0KACHTBQAA8Av7BSLxBQIA-QoAIfIFAgD5CgAh8wUQAJEKACH0BRAAkQoAIfUFEACRCgAh9gUQAJEKACH3BRAA7wsAIfgFEACRCgAh-QUQAJEKACH7BQEAnAoAIRcJAACnDAAgCgAAqQwAIAsAAKoMACANAACrDAAgEAAArAwAIBMAAK0MACCDBQIAAAABhAUCAAAAAZQFAgAAAAGXBQEAAAABmAVAAAAAAaMFQAAAAAHTBQAAAPsFAvEFAgAAAAHyBQIAAAAB8wUQAAAAAfQFEAAAAAH1BRAAAAAB9gUQAAAAAfcFEAAAAAH4BRAAAAAB-QUQAAAAAfsFAQAAAAEFGwAAygwAIIMFAgAAAAGYBUAAAAAB_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_gUBAAAAAZIGAgAAAAGqBkAAAAABqwYBAAAAAawGAQAAAAGtBiAAAAABrgYBAAAAAa8GIAAAAAGxBgAAALEGAgIAAAAJACBEAACrDwAgAwAAAAkAIEQAAKsPACBFAACqDwAgAT0AAIISADACAAAACQAgPQAAqg8AIAIAAAC3DQAgPQAAqQ8AIBCDBQIAiAoAIYQFAgCICgAhlAUCAPkKACGXBQEAnAoAIZgFQACdCgAh0wUBAIcKACHkBQEAhwoAIf4FAQCHCgAhkgYCAIgKACGqBkAAnQoAIasGAQCHCgAhrAYBAIcKACGtBiAAugoAIa4GAQCcCgAhrwYgALoKACGxBgAAuQ2xBiIWAwAAvA0AIAcAAL0NACAIAAC_DQAgCwAAtQ4AIBgAAL4NACAZAADADQAggwUCAIgKACGEBQIAiAoAIZQFAgD5CgAhlwUBAJwKACGYBUAAnQoAIdMFAQCHCgAh5AUBAIcKACH-BQEAhwoAIZIGAgCICgAhqgZAAJ0KACGrBgEAhwoAIawGAQCHCgAhrQYgALoKACGuBgEAnAoAIa8GIAC6CgAhsQYAALkNsQYiFgMAAOcNACAHAADoDQAgCAAA6g0AIAsAALcOACAYAADpDQAgGQAA6w0AIIMFAgAAAAGEBQIAAAABlAUCAAAAAZcFAQAAAAGYBUAAAAAB0wUBAAAAAeQFAQAAAAH-BQEAAAABkgYCAAAAAaoGQAAAAAGrBgEAAAABrAYBAAAAAa0GIAAAAAGuBgEAAAABrwYgAAAAAbEGAAAAsQYCA0QAAIASACDNBgAAgRIAINMGAAABACAERAAAow8AMM0GAACkDwAwzwYAAKYPACDTBgAAsw0AMAREAACaDwAwzQYAAJsPADDPBgAAnQ8AINMGAADdDQAwBEQAAJEPADDNBgAAkg8AMM8GAACUDwAg0wYAANENADAERAAAhQ8AMM0GAACGDwAwzwYAAIgPACDTBgAAiQ8AMAREAAD8DgAwzQYAAP0OADDPBgAA_w4AINMGAACFDgAwBEQAAPAOADDNBgAA8Q4AMM8GAADzDgAg0wYAAPQOADAERAAA5A4AMM0GAADlDgAwzwYAAOcOACDTBgAA6A4AMANEAADfDgAgzQYAAOAOACDTBgAAugEAIAREAADWDgAwzQYAANcOADDPBgAA2Q4AINMGAAC3CwAwAAAAAAALRAAAnhEAMEUAAKMRADDNBgAAnxEAMM4GAACgEQAwzwYAAKERACDQBgAAohEAMNEGAACiEQAw0gYAAKIRADDTBgAAohEAMNQGAACkEQAw1QYAAKURADALRAAAlREAMEUAAJkRADDNBgAAlhEAMM4GAACXEQAwzwYAAJgRACDQBgAAsw0AMNEGAACzDQAw0gYAALMNADDTBgAAsw0AMNQGAACaEQAw1QYAALYNADALRAAAiREAMEUAAI4RADDNBgAAihEAMM4GAACLEQAwzwYAAIwRACDQBgAAjREAMNEGAACNEQAw0gYAAI0RADDTBgAAjREAMNQGAACPEQAw1QYAAJARADALRAAA_RAAMEUAAIIRADDNBgAA_hAAMM4GAAD_EAAwzwYAAIARACDQBgAAgREAMNEGAACBEQAw0gYAAIERADDTBgAAgREAMNQGAACDEQAw1QYAAIQRADALRAAA9BAAMEUAAPgQADDNBgAA9RAAMM4GAAD2EAAwzwYAAPcQACDQBgAA0Q0AMNEGAADRDQAw0gYAANENADDTBgAA0Q0AMNQGAAD5EAAw1QYAANQNADALRAAA6BAAMEUAAO0QADDNBgAA6RAAMM4GAADqEAAwzwYAAOsQACDQBgAA7BAAMNEGAADsEAAw0gYAAOwQADDTBgAA7BAAMNQGAADuEAAw1QYAAO8QADALRAAA3BAAMEUAAOEQADDNBgAA3RAAMM4GAADeEAAwzwYAAN8QACDQBgAA4BAAMNEGAADgEAAw0gYAAOAQADDTBgAA4BAAMNQGAADiEAAw1QYAAOMQADALRAAA0xAAMEUAANcQADDNBgAA1BAAMM4GAADVEAAwzwYAANYQACDQBgAAhQ4AMNEGAACFDgAw0gYAAIUOADDTBgAAhQ4AMNQGAADYEAAw1QYAAIgOADALRAAAxxAAMEUAAMwQADDNBgAAyBAAMM4GAADJEAAwzwYAAMoQACDQBgAAyxAAMNEGAADLEAAw0gYAAMsQADDTBgAAyxAAMNQGAADNEAAw1QYAAM4QADALRAAAuxAAMEUAAMAQADDNBgAAvBAAMM4GAAC9EAAwzwYAAL4QACDQBgAAvxAAMNEGAAC_EAAw0gYAAL8QADDTBgAAvxAAMNQGAADBEAAw1QYAAMIQADALRAAArxAAMEUAALQQADDNBgAAsBAAMM4GAACxEAAwzwYAALIQACDQBgAAsxAAMNEGAACzEAAw0gYAALMQADDTBgAAsxAAMNQGAAC1EAAw1QYAALYQADALRAAAphAAMEUAAKoQADDNBgAApxAAMM4GAACoEAAwzwYAAKkQACDQBgAAtwsAMNEGAAC3CwAw0gYAALcLADDTBgAAtwsAMNQGAACrEAAw1QYAALoLADALRAAAnRAAMEUAAKEQADDNBgAAnhAAMM4GAACfEAAwzwYAAKAQACDQBgAAqwsAMNEGAACrCwAw0gYAAKsLADDTBgAAqwsAMNQGAACiEAAw1QYAAK4LADALRAAAlBAAMEUAAJgQADDNBgAAlRAAMM4GAACWEAAwzwYAAJcQACDQBgAA9A4AMNEGAAD0DgAw0gYAAPQOADDTBgAA9A4AMNQGAACZEAAw1QYAAPcOADAHRAAAjxAAIEUAAJIQACDNBgAAkBAAIM4GAACREAAg0QYAAKsBACDSBgAAqwEAINMGAACeBgAgB0QAAIoQACBFAACNEAAgzQYAAIsQACDOBgAAjBAAINEGAACtAQAg0gYAAK0BACDTBgAAtgYAIAdEAACFEAAgRQAAiBAAIM0GAACGEAAgzgYAAIcQACDRBgAArwEAINIGAACvAQAg0wYAAM4GACAHRAAAgBAAIEUAAIMQACDNBgAAgRAAIM4GAACCEAAg0QYAALEBACDSBgAAsQEAINMGAADmBgAgB0QAAPsPACBFAAD-DwAgzQYAAPwPACDOBgAA_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-w8AIAMAAACzAQAgRAAA-w8AIEUAAP8PACADAAAAswEAID2AAP8PACGDBQIAiAoAIQI9gAAAAAGDBQIAiAoAIQuDBQIAAAABrQUBAAAAAa4FAQAAAAGvBQEAAAABsAUBAAAAAbEFAQAAAAGyBQEAAAABswUBAAAAAbQFAQAAAAG1BQEAAAABtgUBAAAAAQIAAADmBgAgRAAAgBAAIAMAAACxAQAgRAAAgBAAIEUAAIQQACANAAAAsQEAID0AAIQQACCDBQIAiAoAIa0FAQCcCgAhrgUBAJwKACGvBQEAnAoAIbAFAQCcCgAhsQUBAJwKACGyBQEAnAoAIbMFAQCcCgAhtAUBAJwKACG1BQEAnAoAIbYFAQCcCgAhC4MFAgCICgAhrQUBAJwKACGuBQEAnAoAIa8FAQCcCgAhsAUBAJwKACGxBQEAnAoAIbIFAQCcCgAhswUBAJwKACG0BQEAnAoAIbUFAQCcCgAhtgUBAJwKACECPYAAAAABgwUCAAAAAQIAAADOBgAgRAAAhRAAIAMAAACvAQAgRAAAhRAAIEUAAIkQACADAAAArwEAID2AAIkQACGDBQIAiAoAIQI9gAAAAAGDBQIAiAoAIQ6DBQIAAAABtwUBAAAAAbgFIAAAAAG5BQEAAAABugUgAAAAAbsFAQAAAAG8BSAAAAABvQUBAAAAAb4FAQAAAAG_BQEAAAABwAUBAAAAAcEFIAAAAAHCBSAAAAABwwUgAAAAAQIAAAC2BgAgRAAAihAAIAMAAACtAQAgRAAAihAAIEUAAI4QACAQAAAArQEAID0AAI4QACCDBQIAiAoAIbcFAQCHCgAhuAUgALoKACG5BQEAhwoAIboFIAC6CgAhuwUBAIcKACG8BSAAugoAIb0FAQCHCgAhvgUBAIcKACG_BQEAhwoAIcAFAQCHCgAhwQUgALoKACHCBSAAugoAIcMFIAC6CgAhDoMFAgCICgAhtwUBAIcKACG4BSAAugoAIbkFAQCHCgAhugUgALoKACG7BQEAhwoAIbwFIAC6CgAhvQUBAIcKACG-BQEAhwoAIb8FAQCHCgAhwAUBAIcKACHBBSAAugoAIcIFIAC6CgAhwwUgALoKACEGgwUCAAAAAa0FAQAAAAHEBQEAAAABxQUBAAAAAcYFAQAAAAHHBYAAAAABAgAAAJ4GACBEAACPEAAgAwAAAKsBACBEAACPEAAgRQAAkxAAIAgAAACrAQAgPQAAkxAAIIMFAgCICgAhrQUBAIcKACHEBQEAhwoAIcUFAQCHCgAhxgUBAJwKACHHBYAAAAABBoMFAgCICgAhrQUBAIcKACHEBQEAhwoAIcUFAQCHCgAhxgUBAJwKACHHBYAAAAABCgQAAPwKACCDBQIAAAABmAVAAAAAAaQFAgAAAAHPBQAAAM8FAtEFAAAA0QUC0wUAAADTBQLUBQEAAAAB1QUCAAAAAdYFAQAAAAECAAAAZwAgRAAAnBAAIAMAAABnACBEAACcEAAgRQAAmxAAIAE9AAD8EQAwAgAAAGcAID0AAJsQACACAAAA-A4AID0AAJoQACAJgwUCAIgKACGYBUAAnQoAIaQFAgCICgAhzwUAAPYKzwUi0QUAAPcK0QUi0wUAAPgK0wUi1AUBAJwKACHVBQIA-QoAIdYFAQCcCgAhCgQAAPoKACCDBQIAiAoAIZgFQACdCgAhpAUCAIgKACHPBQAA9grPBSLRBQAA9wrRBSLTBQAA-ArTBSLUBQEAnAoAIdUFAgD5CgAh1gUBAJwKACEKBAAA_AoAIIMFAgAAAAGYBUAAAAABpAUCAAAAAc8FAAAAzwUC0QUAAADRBQLTBQAAANMFAtQFAQAAAAHVBQIAAAAB1gUBAAAAAQwiAACbCwAgJAAAnAsAIIMFAgAAAAGYBUAAAAABmQUBAAAAAaMFQAAAAAHKBQEAAAABywUEAAAAAdkFAgAAAAHaBSAAAAAB2wUCAAAAAdwFAQAAAAECAAAAeQAgRAAApRAAIAMAAAB5ACBEAAClEAAgRQAApBAAIAE9AAD7EQAwAgAAAHkAID0AAKQQACACAAAArwsAID0AAKMQACAKgwUCAIgKACGYBUAAnQoAIZkFAQCHCgAhowVAAJ0KACHKBQEAnAoAIcsFBADuCgAh2QUCAPkKACHaBSAAugoAIdsFAgD5CgAh3AUBAJwKACEMIgAAjAsAICQAAI0LACCDBQIAiAoAIZgFQACdCgAhmQUBAIcKACGjBUAAnQoAIcoFAQCcCgAhywUEAO4KACHZBQIA-QoAIdoFIAC6CgAh2wUCAPkKACHcBQEAnAoAIQwiAACbCwAgJAAAnAsAIIMFAgAAAAGYBUAAAAABmQUBAAAAAaMFQAAAAAHKBQEAAAABywUEAAAAAdkFAgAAAAHaBSAAAAAB2wUCAAAAAdwFAQAAAAEKBAAAwQsAIBkAAMILACAgAADDCwAgIQAAvwsAIIMFAgAAAAGYBUAAAAABmQUBAAAAAaMFQAAAAAGkBQIAAAAB3QUCAAAAAQIAAAByACBEAACuEAAgAwAAAHIAIEQAAK4QACBFAACtEAAgAT0AAPoRADACAAAAcgAgPQAArRAAIAIAAAC7CwAgPQAArBAAIAaDBQIAiAoAIZgFQACdCgAhmQUBAIcKACGjBUAAnQoAIaQFAgD5CgAh3QUCAPkKACEKBAAApQsAIBkAAKYLACAgAACiCwAgIQAAowsAIIMFAgCICgAhmAVAAJ0KACGZBQEAhwoAIaMFQACdCgAhpAUCAPkKACHdBQIA-QoAIQoEAADBCwAgGQAAwgsAICAAAMMLACAhAAC_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_BAAIAMAAAASACBEAAD8EAAgRQAA-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_gUBAIcKACGSBgIAiAoAIaoGQACdCgAhqwYBAIcKACGsBgEAhwoAIa0GIAC6CgAhrgYBAJwKACGvBiAAugoAIbEGAAC5DbEGIhYEAADmDQAgBwAA6A0AIAgAAOoNACALAAC3DgAgGAAA6Q0AIBkAAOsNACCDBQIAAAABlAUCAAAAAZcFAQAAAAGYBUAAAAABpAUCAAAAAdMFAQAAAAHkBQEAAAAB_gUBAAAAAZIGAgAAAAGqBkAAAAABqwYBAAAAAawGAQAAAAGtBiAAAAABrgYBAAAAAa8GIAAAAAGxBgAAALEGAh0FAACtDwAgCAAArw8AIAwAALEPACAYAACuDwAgHAAAsA8AIB0AALIPACAeAACzDwAgHwAAtA8AICUAALUPACCDBQIAAAABmAVAAAAAAaMFQAAAAAGxBQEAAAABtAUBAAAAAbYFAQAAAAHTBQAAALEGApUGQAAAAAGbBgEAAAABqQYBAAAAAbIGAQAAAAGzBgEAAAABtAYBAAAAAbUGAQAAAAG2BgEAAAABtwYBAAAAAbgGAQAAAAG5BgEAAAABugYBAAAAAbsGAQAAAAECAAAABQAgRAAAqREAIAMAAAAFACBEAACpEQAgRQAAqBEAIAE9AADvEQAwIgMAAKYIACAFAACtCQAgCAAAqQkAIAwAAKoJACAYAACsCQAgHAAA_wkAIB0AAPEJACAeAACACgAgHwAAgQoAICUAALoJACCABQAA_gkAMIEFAAADABCCBQAA_gkAMIMFAgAAAAGEBQIA5wgAIZgFQADoCAAhowVAAOgIACGxBQEAwAgAIbQFAQDACAAhtgUBAMAIACHTBQAA_AmxBiKVBkAA6QgAIZsGAQDACAAhqQYBAKUIACGyBgEApQgAIbMGAQClCAAhtAYBAKUIACG1BgEAwAgAIbYGAQDACAAhtwYBAMAIACG4BgEAwAgAIbkGAQDACAAhugYBAMAIACG7BgEAwAgAIQIAAAAFACA9AACoEQAgAgAAAKYRACA9AACnEQAgGIAFAAClEQAwgQUAAKYRABCCBQAApREAMIMFAgDnCAAhhAUCAOcIACGYBUAA6AgAIaMFQADoCAAhsQUBAMAIACG0BQEAwAgAIbYFAQDACAAh0wUAAPwJsQYilQZAAOkIACGbBgEAwAgAIakGAQClCAAhsgYBAKUIACGzBgEApQgAIbQGAQClCAAhtQYBAMAIACG2BgEAwAgAIbcGAQDACAAhuAYBAMAIACG5BgEAwAgAIboGAQDACAAhuwYBAMAIACEYgAUAAKURADCBBQAAphEAEIIFAAClEQAwgwUCAOcIACGEBQIA5wgAIZgFQADoCAAhowVAAOgIACGxBQEAwAgAIbQFAQDACAAhtgUBAMAIACHTBQAA_AmxBiKVBkAA6QgAIZsGAQDACAAhqQYBAKUIACGyBgEApQgAIbMGAQClCAAhtAYBAKUIACG1BgEAwAgAIbYGAQDACAAhtwYBAMAIACG4BgEAwAgAIbkGAQDACAAhugYBAMAIACG7BgEAwAgAIRSDBQIAiAoAIZgFQACdCgAhowVAAJ0KACGxBQEAnAoAIbQFAQCcCgAhtgUBAJwKACHTBQAAuQ2xBiKVBkAAyQsAIZsGAQCcCgAhqQYBAIcKACGyBgEAhwoAIbMGAQCHCgAhtAYBAIcKACG1BgEAnAoAIbYGAQCcCgAhtwYBAJwKACG4BgEAnAoAIbkGAQCcCgAhugYBAJwKACG7BgEAnAoAIR0FAADNDgAgCAAAzw4AIAwAANEOACAYAADODgAgHAAA0A4AIB0AANIOACAeAADTDgAgHwAA1A4AICUAANUOACCDBQIAiAoAIZgFQACdCgAhowVAAJ0KACGxBQEAnAoAIbQFAQCcCgAhtgUBAJwKACHTBQAAuQ2xBiKVBkAAyQsAIZsGAQCcCgAhqQYBAIcKACGyBgEAhwoAIbMGAQCHCgAhtAYBAIcKACG1BgEAnAoAIbYGAQCcCgAhtwYBAJwKACG4BgEAnAoAIbkGAQCcCgAhugYBAJwKACG7BgEAnAoAIR0FAACtDwAgCAAArw8AIAwAALEPACAYAACuDwAgHAAAsA8AIB0AALIPACAeAACzDwAgHwAAtA8AICUAALUPACCDBQIAAAABmAVAAAAAAaMFQAAAAAGxBQEAAAABtAUBAAAAAbYFAQAAAAHTBQAAALEGApUGQAAAAAGbBgEAAAABqQYBAAAAAbIGAQAAAAGzBgEAAAABtAYBAAAAAbUGAQAAAAG2BgEAAAABtwYBAAAAAbgGAQAAAAG5BgEAAAABugYBAAAAAbsGAQAAAAEERAAAnhEAMM0GAACfEQAwzwYAAKERACDTBgAAohEAMAREAACVEQAwzQYAAJYRADDPBgAAmBEAINMGAACzDQAwBEQAAIkRADDNBgAAihEAMM8GAACMEQAg0wYAAI0RADAERAAA_RAAMM0GAAD-EAAwzwYAAIARACDTBgAAgREAMAREAAD0EAAwzQYAAPUQADDPBgAA9xAAINMGAADRDQAwBEQAAOgQADDNBgAA6RAAMM8GAADrEAAg0wYAAOwQADAERAAA3BAAMM0GAADdEAAwzwYAAN8QACDTBgAA4BAAMAREAADTEAAwzQYAANQQADDPBgAA1hAAINMGAACFDgAwBEQAAMcQADDNBgAAyBAAMM8GAADKEAAg0wYAAMsQADAERAAAuxAAMM0GAAC8EAAwzwYAAL4QACDTBgAAvxAAMAREAACvEAAwzQYAALAQADDPBgAAshAAINMGAACzEAAwBEQAAKYQADDNBgAApxAAMM8GAACpEAAg0wYAALcLADAERAAAnRAAMM0GAACeEAAwzwYAAKAQACDTBgAAqwsAMAREAACUEAAwzQYAAJUQADDPBgAAlxAAINMGAAD0DgAwA0QAAI8QACDNBgAAkBAAINMGAACeBgAgA0QAAIoQACDNBgAAixAAINMGAAC2BgAgA0QAAIUQACDNBgAAhhAAINMGAADOBgAgA0QAAIAQACDNBgAAgRAAINMGAADmBgAgA0QAAPsPACDNBgAA_A8AINMGAACUBwAgBEQAAO8PADDNBgAA8A8AMM8GAADyDwAg0wYAAPMPADAERAAA4w8AMM0GAADkDwAwzwYAAOYPACDTBgAA5w8AMAREAADXDwAwzQYAANgPADDPBgAA2g8AINMGAADbDwAwA0QAANIPACDNBgAA0w8AINMGAACECAAgAAAAAAAAAAAAAAAAAAADAwAAiwoAIMYFAACWCgAgxwUAAJYKACABAwAAiwoAIAEDAACLCgAgCwMAAIsKACCtBQAAlgoAIK4FAACWCgAgrwUAAJYKACCwBQAAlgoAILEFAACWCgAgsgUAAJYKACCzBQAAlgoAILQFAACWCgAgtQUAAJYKACC2BQAAlgoAIAEDAACLCgAgAAAAAQMAAIsKACAWAwAAiwoAIAUAAMIRACAIAADFEQAgDAAAyBEAIBgAANoRACAcAADsEQAgHQAAzhEAIB4AAO0RACAfAADuEQAgJQAAzBEAILEFAACWCgAgtAUAAJYKACC2BQAAlgoAIJUGAACWCgAgmwYAAJYKACC1BgAAlgoAILYGAACWCgAgtwYAAJYKACC4BgAAlgoAILkGAACWCgAgugYAAJYKACC7BgAAlgoAIAAABwMAAIsKACAiAADcEQAgJAAA3REAIMoFAACWCgAg2QUAAJYKACDbBQAAlgoAINwFAACWCgAgBwMAAIsKACAEAADYEQAgGQAAzREAICAAANwRACAhAADMEQAgpAUAAJYKACDdBQAAlgoAIAACBAAA2BEAIBsAAN8RACAACgMAAIsKACAEAADYEQAgBwAA6REAIAgAAMURACALAADiEQAgGAAA2hEAIBkAAOsRACCUBQAAlgoAIJcFAACWCgAgrgYAAJYKACANAwAAiwoAIAQAANgRACAGAADgEQAgBwAA6REAIAsAAOIRACAMAADlEQAgEAAA6BEAIBcAAOoRACCUBQAAlgoAIJEGAACWCgAgmQYAAJYKACCdBgAAlgoAIJ4GAACWCgAgBgMAAIsKACAFAADCEQAgCAAAxREAIBQAAMgRACAVAADZEQAgFgAA2hEAIAADCwAA4hEAIBEAAOMRACCXBQAAlgoAIA0EAADYEQAgCQAA4REAIAoAAIsKACALAADiEQAgDQAA5hEAIBAAAOgRACATAADjEQAglAUAAJYKACCXBQAAlgoAIPEFAACWCgAg8gUAAJYKACD3BQAAlgoAIPsFAACWCgAgAAwJAADhEQAgDAAA5REAIA0AAOYRACCSBQAAlgoAIPEFAACWCgAg-wUAAJYKACCKBgAAlgoAIIsGAACWCgAgjAYAAJYKACCNBgAAlgoAII4GAACWCgAgjwYAAJYKACAABQMAAIsKACAFAADCEQAgCAAAxREAILEFAACWCgAgqQYAAJYKACAAAAAAAgMAAIsKACAEAADYEQAgFIMFAgAAAAGYBUAAAAABowVAAAAAAbEFAQAAAAG0BQEAAAABtgUBAAAAAdMFAAAAsQYClQZAAAAAAZsGAQAAAAGpBgEAAAABsgYBAAAAAbMGAQAAAAG0BgEAAAABtQYBAAAAAbYGAQAAAAG3BgEAAAABuAYBAAAAAbkGAQAAAAG6BgEAAAABuwYBAAAAARCDBQIAAAABlAUCAAAAAZcFAQAAAAGYBUAAAAABpAUCAAAAAdMFAQAAAAHkBQEAAAAB_gUBAAAAAZIGAgAAAAGqBkAAAAABqwYBAAAAAawGAQAAAAGtBiAAAAABrgYBAAAAAa8GIAAAAAGxBgAAALEGAgaDBQIAAAABmAVAAAAAAZkFAQAAAAGxBQEAAAABqAYBAAAAAakGAQAAAAEFgwUCAAAAAZgFQAAAAAGiBQIAAAABpgYBAAAAAacGAQAAAAESgwUCAAAAAZQFAgAAAAGYBUAAAAABowVAAAAAAaQFAgAAAAHTBQAAAJ0GApEGAgAAAAGSBgIAAAABkwYBAAAAAZQGAQAAAAGVBkAAAAABlgYBAAAAAZgGAAAAmAYCmQaAAAAAAZoGQAAAAAGbBgEAAAABnQYBAAAAAZ4GAQAAAAEEgwUCAAAAAYUGAQAAAAGGBgEAAAABhwYBAAAAAQWDBQIAAAABgQYBAAAAAYIGAQAAAAGDBgEAAAABhAYBAAAAARGDBQIAAAABhAUCAAAAAZQFAgAAAAGXBQEAAAABmAVAAAAAAaMFQAAAAAGkBQIAAAAB0wUAAAD7BQLxBQIAAAAB8wUQAAAAAfQFEAAAAAH1BRAAAAAB9gUQAAAAAfcFEAAAAAH4BRAAAAAB-QUQAAAAAfsFAQAAAAECgwUCAAAAAZgFQAAAAAEEgwUCAAAAAZgFQAAAAAHnBQEAAAAB6AUgAAAAAQWDBQIAAAABmAVAAAAAAeQFAAAA5AUC5QUBAAAAAeYFIAAAAAEGgwUCAAAAAZgFQAAAAAGZBQEAAAABowVAAAAAAaQFAgAAAAHdBQIAAAABCoMFAgAAAAGYBUAAAAABmQUBAAAAAaMFQAAAAAHKBQEAAAABywUEAAAAAdkFAgAAAAHaBSAAAAAB2wUCAAAAAdwFAQAAAAEJgwUCAAAAAZgFQAAAAAGkBQIAAAABzwUAAADPBQLRBQAAANEFAtMFAAAA0wUC1AUBAAAAAdUFAgAAAAHWBQEAAAABBIMFAgAAAAGYBUAAAAABmQUBAAAAAa0FAQAAAAEFgwUCAAAAAaMFQAAAAAGkBQIAAAABpQUBAAAAAaYFIAAAAAENgwUCAAAAAZgFQAAAAAGZBQEAAAABmgUBAAAAAZsFAQAAAAGcBQEAAAABnQUBAAAAAZ4FAQAAAAGfBQEAAAABoAUBAAAAAaEFAQAAAAGiBQIAAAABowVAAAAAASAFAACrEQAgBwAArBEAIAgAAK4RACAdAAC3EQAgJQAAtREAICcAAK0RACAoAACvEQAgKQAAsBEAICoAALERACArAACyEQAgLAAAsxEAIC0AALQRACAuAAC2EQAgLwAAuBEAIDAAALkRACAxAAC6EQAgMgAAuxEAIDMAALwRACA0AAC9EQAgNQAAvhEAIDYAAL8RACA3AADAEQAggwUCAAAAAYYGAQAAAAGHBgEAAAABvAYgAAAAAb0GAgAAAAG-BiAAAAABvwYCAAAAAcAGIAAAAAHBBgIAAAABwgYCAAAAAQIAAAABACBEAACAEgAgEIMFAgAAAAGEBQIAAAABlAUCAAAAAZcFAQAAAAGYBUAAAAAB0wUBAAAAAeQFAQAAAAH-BQEAAAABkgYCAAAAAaoGQAAAAAGrBgEAAAABrAYBAAAAAa0GIAAAAAGuBgEAAAABrwYgAAAAAbEGAAAAsQYCDYMFAgAAAAGUBQIAAAABmAVAAAAAAYgGAQAAAAGMBgEAAAABjQYBAAAAAZEGAgAAAAGfBgEAAAABoAYQAAAAAaEGAQAAAAGiBgEAAAABpAYAAACkBgKlBgEAAAABEoMFAgAAAAGEBQIAAAABlAUCAAAAAZgFQAAAAAGjBUAAAAAB0wUAAACdBgKRBgIAAAABkgYCAAAAAZMGAQAAAAGUBgEAAAABlQZAAAAAAZYGAQAAAAGYBgAAAJgGApkGgAAAAAGaBkAAAAABmwYBAAAAAZ0GAQAAAAGeBgEAAAABBIMFAgAAAAGYBUAAAAAB_gUBAAAAAYAGAAAAgAYCEYMFAgAAAAGEBQIAAAABlAUCAAAAAZcFAQAAAAGYBUAAAAABowVAAAAAAdMFAAAA-wUC8QUCAAAAAfIFAgAAAAHzBRAAAAAB9AUQAAAAAfUFEAAAAAH2BRAAAAAB9wUQAAAAAfgFEAAAAAH5BRAAAAAB-wUBAAAAAQmDBQIAAAABhAUCAAAAAZgFQAAAAAHPBQAAAM8FAtEFAAAA0QUC0wUAAADTBQLUBQEAAAAB1QUCAAAAAdYFAQAAAAEIgwUCAAAAAaMFQAAAAAHIBQEAAAAByQUBAAAAAcoFAQAAAAHLBQQAAAABzAUBAAAAAc0FQAAAAAEGgwUCAAAAAYQFAgAAAAGYBUAAAAABmQUBAAAAAaMFQAAAAAHdBQIAAAABAwAAAA0AIEQAAIASACBFAACMEgAgIgAAAA0AIAUAALwPACAHAAC9DwAgCAAAvw8AIB0AAMgPACAlAADGDwAgJwAAvg8AICgAAMAPACApAADBDwAgKgAAwg8AICsAAMMPACAsAADEDwAgLQAAxQ8AIC4AAMcPACAvAADJDwAgMAAAyg8AIDEAAMsPACAyAADMDwAgMwAAzQ8AIDQAAM4PACA1AADPDwAgNgAA0A8AIDcAANEPACA9AACMEgAggwUCAIgKACGGBgEAhwoAIYcGAQCHCgAhvAYgALoKACG9BgIAiAoAIb4GIAC6CgAhvwYCAIgKACHABiAAugoAIcEGAgCICgAhwgYCAIgKACEgBQAAvA8AIAcAAL0PACAIAAC_DwAgHQAAyA8AICUAAMYPACAnAAC-DwAgKAAAwA8AICkAAMEPACAqAADCDwAgKwAAww8AICwAAMQPACAtAADFDwAgLgAAxw8AIC8AAMkPACAwAADKDwAgMQAAyw8AIDIAAMwPACAzAADNDwAgNAAAzg8AIDUAAM8PACA2AADQDwAgNwAA0Q8AIIMFAgCICgAhhgYBAIcKACGHBgEAhwoAIbwGIAC6CgAhvQYCAIgKACG-BiAAugoAIb8GAgCICgAhwAYgALoKACHBBgIAiAoAIcIGAgCICgAhFwMAAOcNACAEAADmDQAgBwAA6A0AIAgAAOoNACALAAC3DgAgGAAA6Q0AIIMFAgAAAAGEBQIAAAABlAUCAAAAAZcFAQAAAAGYBUAAAAABpAUCAAAAAdMFAQAAAAHkBQEAAAAB_gUBAAAAAZIGAgAAAAGqBkAAAAABqwYBAAAAAawGAQAAAAGtBiAAAAABrgYBAAAAAa8GIAAAAAGxBgAAALEGAgIAAAAJACBEAACNEgAgAwAAAAcAIEQAAI0SACBFAACREgAgGQAAAAcAIAMAALwNACAEAAC7DQAgBwAAvQ0AIAgAAL8NACALAAC1DgAgGAAAvg0AID0AAJESACCDBQIAiAoAIYQFAgCICgAhlAUCAPkKACGXBQEAnAoAIZgFQACdCgAhpAUCAIgKACHTBQEAhwoAIeQFAQCHCgAh_gUBAIcKACGSBgIAiAoAIaoGQACdCgAhqwYBAIcKACGsBgEAhwoAIa0GIAC6CgAhrgYBAJwKACGvBiAAugoAIbEGAAC5DbEGIhcDAAC8DQAgBAAAuw0AIAcAAL0NACAIAAC_DQAgCwAAtQ4AIBgAAL4NACCDBQIAiAoAIYQFAgCICgAhlAUCAPkKACGXBQEAnAoAIZgFQACdCgAhpAUCAIgKACHTBQEAhwoAIeQFAQCHCgAh_gUBAIcKACGSBgIAiAoAIaoGQACdCgAhqwYBAIcKACGsBgEAhwoAIa0GIAC6CgAhrgYBAJwKACGvBiAAugoAIbEGAAC5DbEGIiAFAACrEQAgCAAArhEAIB0AALcRACAlAAC1EQAgJgAAqhEAICcAAK0RACAoAACvEQAgKQAAsBEAICoAALERACArAACyEQAgLAAAsxEAIC0AALQRACAuAAC2EQAgLwAAuBEAIDAAALkRACAxAAC6EQAgMgAAuxEAIDMAALwRACA0AAC9EQAgNQAAvhEAIDYAAL8RACA3AADAEQAggwUCAAAAAYYGAQAAAAGHBgEAAAABvAYgAAAAAb0GAgAAAAG-BiAAAAABvwYCAAAAAcAGIAAAAAHBBgIAAAABwgYCAAAAAQIAAAABACBEAACSEgAgCwMAAJYOACAIAACXDgAgFAAAmA4AIBUAAJkOACAWAACaDgAggwUCAAAAAYQFAgAAAAGYBUAAAAABogUCAAAAAaYGAQAAAAGnBgEAAAABAgAAAJABACBEAACUEgAgAwAAABcAIEQAAJQSACBFAACYEgAgDQAAABcAIAMAAKkNACAIAACqDQAgFAAAqw0AIBUAAKwNACAWAACtDQAgPQAAmBIAIIMFAgCICgAhhAUCAIgKACGYBUAAnQoAIaIFAgCICgAhpgYBAIcKACGnBgEAhwoAIQsDAACpDQAgCAAAqg0AIBQAAKsNACAVAACsDQAgFgAArQ0AIIMFAgCICgAhhAUCAIgKACGYBUAAnQoAIaIFAgCICgAhpgYBAIcKACGnBgEAhwoAIRCDBQIAAAABhAUCAAAAAZQFAgAAAAGXBQEAAAABmAVAAAAAAaQFAgAAAAHTBQEAAAAB5AUBAAAAAf4FAQAAAAGqBkAAAAABqwYBAAAAAawGAQAAAAGtBiAAAAABrgYBAAAAAa8GIAAAAAGxBgAAALEGAhKDBQIAAAABhAUCAAAAAZQFAgAAAAGYBUAAAAABowVAAAAAAaQFAgAAAAHTBQAAAJ0GApEGAgAAAAGTBgEAAAABlAYBAAAAAZUGQAAAAAGWBgEAAAABmAYAAACYBgKZBoAAAAABmgZAAAAAAZsGAQAAAAGdBgEAAAABngYBAAAAAQMAAAANACBEAACSEgAgRQAAnRIAICIAAAANACAFAAC8DwAgCAAAvw8AIB0AAMgPACAlAADGDwAgJgAAuw8AICcAAL4PACAoAADADwAgKQAAwQ8AICoAAMIPACArAADDDwAgLAAAxA8AIC0AAMUPACAuAADHDwAgLwAAyQ8AIDAAAMoPACAxAADLDwAgMgAAzA8AIDMAAM0PACA0AADODwAgNQAAzw8AIDYAANAPACA3AADRDwAgPQAAnRIAIIMFAgCICgAhhgYBAIcKACGHBgEAhwoAIbwGIAC6CgAhvQYCAIgKACG-BiAAugoAIb8GAgCICgAhwAYgALoKACHBBgIAiAoAIcIGAgCICgAhIAUAALwPACAIAAC_DwAgHQAAyA8AICUAAMYPACAmAAC7DwAgJwAAvg8AICgAAMAPACApAADBDwAgKgAAwg8AICsAAMMPACAsAADEDwAgLQAAxQ8AIC4AAMcPACAvAADJDwAgMAAAyg8AIDEAAMsPACAyAADMDwAgMwAAzQ8AIDQAAM4PACA1AADPDwAgNgAA0A8AIDcAANEPACCDBQIAiAoAIYYGAQCHCgAhhwYBAIcKACG8BiAAugoAIb0GAgCICgAhvgYgALoKACG_BgIAiAoAIcAGIAC6CgAhwQYCAIgKACHCBgIAiAoAISAFAACrEQAgBwAArBEAIAgAAK4RACAdAAC3EQAgJQAAtREAICYAAKoRACAoAACvEQAgKQAAsBEAICoAALERACArAACyEQAgLAAAsxEAIC0AALQRACAuAAC2EQAgLwAAuBEAIDAAALkRACAxAAC6EQAgMgAAuxEAIDMAALwRACA0AAC9EQAgNQAAvhEAIDYAAL8RACA3AADAEQAggwUCAAAAAYYGAQAAAAGHBgEAAAABvAYgAAAAAb0GAgAAAAG-BiAAAAABvwYCAAAAAcAGIAAAAAHBBgIAAAABwgYCAAAAAQIAAAABACBEAACeEgAgEoMFAgAAAAGEBQIAAAABmAVAAAAAAaMFQAAAAAGkBQIAAAAB0wUAAACdBgKRBgIAAAABkgYCAAAAAZMGAQAAAAGUBgEAAAABlQZAAAAAAZYGAQAAAAGYBgAAAJgGApkGgAAAAAGaBkAAAAABmwYBAAAAAZ0GAQAAAAGeBgEAAAABEYMFAgAAAAGEBQIAAAABlwUBAAAAAZgFQAAAAAGjBUAAAAABpAUCAAAAAdMFAAAA-wUC8QUCAAAAAfIFAgAAAAHzBRAAAAAB9AUQAAAAAfUFEAAAAAH2BRAAAAAB9wUQAAAAAfgFEAAAAAH5BRAAAAAB-wUBAAAAAQWDBQIAAAABlQUQAAAAAZYFEAAAAAGXBQEAAAABmAVAAAAAAQ2DBQIAAAABmAVAAAAAAaQFAgAAAAGIBgEAAAABjAYBAAAAAY0GAQAAAAGRBgIAAAABnwYBAAAAAaAGEAAAAAGhBgEAAAABogYBAAAAAaQGAAAApAYCpQYBAAAAAQkDAAC4DgAgCAAAug4AIIMFAgAAAAGEBQIAAAABmAVAAAAAAZkFAQAAAAGxBQEAAAABqAYBAAAAAakGAQAAAAECAAAAjQEAIEQAAKQSACAgBwAArBEAIAgAAK4RACAdAAC3EQAgJQAAtREAICYAAKoRACAnAACtEQAgKAAArxEAICkAALARACAqAACxEQAgKwAAshEAICwAALMRACAtAAC0EQAgLgAAthEAIC8AALgRACAwAAC5EQAgMQAAuhEAIDIAALsRACAzAAC8EQAgNAAAvREAIDUAAL4RACA2AAC_EQAgNwAAwBEAIIMFAgAAAAGGBgEAAAABhwYBAAAAAbwGIAAAAAG9BgIAAAABvgYgAAAAAb8GAgAAAAHABiAAAAABwQYCAAAAAcIGAgAAAAECAAAAAQAgRAAAphIAIB4DAACsDwAgCAAArw8AIAwAALEPACAYAACuDwAgHAAAsA8AIB0AALIPACAeAACzDwAgHwAAtA8AICUAALUPACCDBQIAAAABhAUCAAAAAZgFQAAAAAGjBUAAAAABsQUBAAAAAbQFAQAAAAG2BQEAAAAB0wUAAACxBgKVBkAAAAABmwYBAAAAAakGAQAAAAGyBgEAAAABswYBAAAAAbQGAQAAAAG1BgEAAAABtgYBAAAAAbcGAQAAAAG4BgEAAAABuQYBAAAAAboGAQAAAAG7BgEAAAABAgAAAAUAIEQAAKgSACANgwUCAAAAAZQFAgAAAAGYBUAAAAABpAUCAAAAAYgGAQAAAAGMBgEAAAABjQYBAAAAAZ8GAQAAAAGgBhAAAAABoQYBAAAAAaIGAQAAAAGkBgAAAKQGAqUGAQAAAAESgwUCAAAAAYQFAgAAAAGUBQIAAAABmAVAAAAAAaMFQAAAAAGkBQIAAAAB0wUAAACdBgKSBgIAAAABkwYBAAAAAZQGAQAAAAGVBkAAAAABlgYBAAAAAZgGAAAAmAYCmQaAAAAAAZoGQAAAAAGbBgEAAAABnQYBAAAAAZ4GAQAAAAEEgwUCAAAAAcgFAQAAAAHKBQEAAAABzAUBAAAAAQMAAAALACBEAACkEgAgRQAArxIAIAsAAAALACADAAChDgAgCAAAow4AID0AAK8SACCDBQIAiAoAIYQFAgCICgAhmAVAAJ0KACGZBQEAhwoAIbEFAQCcCgAhqAYBAIcKACGpBgEAnAoAIQkDAAChDgAgCAAAow4AIIMFAgCICgAhhAUCAIgKACGYBUAAnQoAIZkFAQCHCgAhsQUBAJwKACGoBgEAhwoAIakGAQCcCgAhAwAAAA0AIEQAAKYSACBFAACyEgAgIgAAAA0AIAcAAL0PACAIAAC_DwAgHQAAyA8AICUAAMYPACAmAAC7DwAgJwAAvg8AICgAAMAPACApAADBDwAgKgAAwg8AICsAAMMPACAsAADEDwAgLQAAxQ8AIC4AAMcPACAvAADJDwAgMAAAyg8AIDEAAMsPACAyAADMDwAgMwAAzQ8AIDQAAM4PACA1AADPDwAgNgAA0A8AIDcAANEPACA9AACyEgAggwUCAIgKACGGBgEAhwoAIYcGAQCHCgAhvAYgALoKACG9BgIAiAoAIb4GIAC6CgAhvwYCAIgKACHABiAAugoAIcEGAgCICgAhwgYCAIgKACEgBwAAvQ8AIAgAAL8PACAdAADIDwAgJQAAxg8AICYAALsPACAnAAC-DwAgKAAAwA8AICkAAMEPACAqAADCDwAgKwAAww8AICwAAMQPACAtAADFDwAgLgAAxw8AIC8AAMkPACAwAADKDwAgMQAAyw8AIDIAAMwPACAzAADNDwAgNAAAzg8AIDUAAM8PACA2AADQDwAgNwAA0Q8AIIMFAgCICgAhhgYBAIcKACGHBgEAhwoAIbwGIAC6CgAhvQYCAIgKACG-BiAAugoAIb8GAgCICgAhwAYgALoKACHBBgIAiAoAIcIGAgCICgAhAwAAAAMAIEQAAKgSACBFAAC1EgAgIAAAAAMAIAMAAMwOACAIAADPDgAgDAAA0Q4AIBgAAM4OACAcAADQDgAgHQAA0g4AIB4AANMOACAfAADUDgAgJQAA1Q4AID0AALUSACCDBQIAiAoAIYQFAgCICgAhmAVAAJ0KACGjBUAAnQoAIbEFAQCcCgAhtAUBAJwKACG2BQEAnAoAIdMFAAC5DbEGIpUGQADJCwAhmwYBAJwKACGpBgEAhwoAIbIGAQCHCgAhswYBAIcKACG0BgEAhwoAIbUGAQCcCgAhtgYBAJwKACG3BgEAnAoAIbgGAQCcCgAhuQYBAJwKACG6BgEAnAoAIbsGAQCcCgAhHgMAAMwOACAIAADPDgAgDAAA0Q4AIBgAAM4OACAcAADQDgAgHQAA0g4AIB4AANMOACAfAADUDgAgJQAA1Q4AIIMFAgCICgAhhAUCAIgKACGYBUAAnQoAIaMFQACdCgAhsQUBAJwKACG0BQEAnAoAIbYFAQCcCgAh0wUAALkNsQYilQZAAMkLACGbBgEAnAoAIakGAQCHCgAhsgYBAIcKACGzBgEAhwoAIbQGAQCHCgAhtQYBAJwKACG2BgEAnAoAIbcGAQCcCgAhuAYBAJwKACG5BgEAnAoAIboGAQCcCgAhuwYBAJwKACEQgwUCAAAAAYQFAgAAAAGXBQEAAAABmAVAAAAAAaQFAgAAAAHTBQEAAAAB5AUBAAAAAf4FAQAAAAGSBgIAAAABqgZAAAAAAasGAQAAAAGsBgEAAAABrQYgAAAAAa4GAQAAAAGvBiAAAAABsQYAAACxBgIDAAAADQAgRAAAnhIAIEUAALkSACAiAAAADQAgBQAAvA8AIAcAAL0PACAIAAC_DwAgHQAAyA8AICUAAMYPACAmAAC7DwAgKAAAwA8AICkAAMEPACAqAADCDwAgKwAAww8AICwAAMQPACAtAADFDwAgLgAAxw8AIC8AAMkPACAwAADKDwAgMQAAyw8AIDIAAMwPACAzAADNDwAgNAAAzg8AIDUAAM8PACA2AADQDwAgNwAA0Q8AID0AALkSACCDBQIAiAoAIYYGAQCHCgAhhwYBAIcKACG8BiAAugoAIb0GAgCICgAhvgYgALoKACG_BgIAiAoAIcAGIAC6CgAhwQYCAIgKACHCBgIAiAoAISAFAAC8DwAgBwAAvQ8AIAgAAL8PACAdAADIDwAgJQAAxg8AICYAALsPACAoAADADwAgKQAAwQ8AICoAAMIPACArAADDDwAgLAAAxA8AIC0AAMUPACAuAADHDwAgLwAAyQ8AIDAAAMoPACAxAADLDwAgMgAAzA8AIDMAAM0PACA0AADODwAgNQAAzw8AIDYAANAPACA3AADRDwAggwUCAIgKACGGBgEAhwoAIYcGAQCHCgAhvAYgALoKACG9BgIAiAoAIb4GIAC6CgAhvwYCAIgKACHABiAAugoAIcEGAgCICgAhwgYCAIgKACELAwAAlg4AIAUAAJsOACAIAACXDgAgFAAAmA4AIBUAAJkOACCDBQIAAAABhAUCAAAAAZgFQAAAAAGiBQIAAAABpgYBAAAAAacGAQAAAAECAAAAkAEAIEQAALoSACAeAwAArA8AIAUAAK0PACAIAACvDwAgDAAAsQ8AIBwAALAPACAdAACyDwAgHgAAsw8AIB8AALQPACAlAAC1DwAggwUCAAAAAYQFAgAAAAGYBUAAAAABowVAAAAAAbEFAQAAAAG0BQEAAAABtgUBAAAAAdMFAAAAsQYClQZAAAAAAZsGAQAAAAGpBgEAAAABsgYBAAAAAbMGAQAAAAG0BgEAAAABtQYBAAAAAbYGAQAAAAG3BgEAAAABuAYBAAAAAbkGAQAAAAG6BgEAAAABuwYBAAAAAQIAAAAFACBEAAC8EgAgFwMAAOcNACAEAADmDQAgBwAA6A0AIAgAAOoNACALAAC3DgAgGQAA6w0AIIMFAgAAAAGEBQIAAAABlAUCAAAAAZcFAQAAAAGYBUAAAAABpAUCAAAAAdMFAQAAAAHkBQEAAAAB_gUBAAAAAZIGAgAAAAGqBkAAAAABqwYBAAAAAawGAQAAAAGtBiAAAAABrgYBAAAAAa8GIAAAAAGxBgAAALEGAgIAAAAJACBEAAC-EgAgAwAAABcAIEQAALoSACBFAADCEgAgDQAAABcAIAMAAKkNACAFAACuDQAgCAAAqg0AIBQAAKsNACAVAACsDQAgPQAAwhIAIIMFAgCICgAhhAUCAIgKACGYBUAAnQoAIaIFAgCICgAhpgYBAIcKACGnBgEAhwoAIQsDAACpDQAgBQAArg0AIAgAAKoNACAUAACrDQAgFQAArA0AIIMFAgCICgAhhAUCAIgKACGYBUAAnQoAIaIFAgCICgAhpgYBAIcKACGnBgEAhwoAIQMAAAADACBEAAC8EgAgRQAAxRIAICAAAAADACADAADMDgAgBQAAzQ4AIAgAAM8OACAMAADRDgAgHAAA0A4AIB0AANIOACAeAADTDgAgHwAA1A4AICUAANUOACA9AADFEgAggwUCAIgKACGEBQIAiAoAIZgFQACdCgAhowVAAJ0KACGxBQEAnAoAIbQFAQCcCgAhtgUBAJwKACHTBQAAuQ2xBiKVBkAAyQsAIZsGAQCcCgAhqQYBAIcKACGyBgEAhwoAIbMGAQCHCgAhtAYBAIcKACG1BgEAnAoAIbYGAQCcCgAhtwYBAJwKACG4BgEAnAoAIbkGAQCcCgAhugYBAJwKACG7BgEAnAoAIR4DAADMDgAgBQAAzQ4AIAgAAM8OACAMAADRDgAgHAAA0A4AIB0AANIOACAeAADTDgAgHwAA1A4AICUAANUOACCDBQIAiAoAIYQFAgCICgAhmAVAAJ0KACGjBUAAnQoAIbEFAQCcCgAhtAUBAJwKACG2BQEAnAoAIdMFAAC5DbEGIpUGQADJCwAhmwYBAJwKACGpBgEAhwoAIbIGAQCHCgAhswYBAIcKACG0BgEAhwoAIbUGAQCcCgAhtgYBAJwKACG3BgEAnAoAIbgGAQCcCgAhuQYBAJwKACG6BgEAnAoAIbsGAQCcCgAhAwAAAAcAIEQAAL4SACBFAADIEgAgGQAAAAcAIAMAALwNACAEAAC7DQAgBwAAvQ0AIAgAAL8NACALAAC1DgAgGQAAwA0AID0AAMgSACCDBQIAiAoAIYQFAgCICgAhlAUCAPkKACGXBQEAnAoAIZgFQACdCgAhpAUCAIgKACHTBQEAhwoAIeQFAQCHCgAh_gUBAIcKACGSBgIAiAoAIaoGQACdCgAhqwYBAIcKACGsBgEAhwoAIa0GIAC6CgAhrgYBAJwKACGvBiAAugoAIbEGAAC5DbEGIhcDAAC8DQAgBAAAuw0AIAcAAL0NACAIAAC_DQAgCwAAtQ4AIBkAAMANACCDBQIAiAoAIYQFAgCICgAhlAUCAPkKACGXBQEAnAoAIZgFQACdCgAhpAUCAIgKACHTBQEAhwoAIeQFAQCHCgAh_gUBAIcKACGSBgIAiAoAIaoGQACdCgAhqwYBAIcKACGsBgEAhwoAIa0GIAC6CgAhrgYBAJwKACGvBiAAugoAIbEGAAC5DbEGIgsDAACWDgAgBQAAmw4AIBQAAJgOACAVAACZDgAgFgAAmg4AIIMFAgAAAAGEBQIAAAABmAVAAAAAAaIFAgAAAAGmBgEAAAABpwYBAAAAAQIAAACQAQAgRAAAyRIAIAkDAAC4DgAgBQAAuQ4AIIMFAgAAAAGEBQIAAAABmAVAAAAAAZkFAQAAAAGxBQEAAAABqAYBAAAAAakGAQAAAAECAAAAjQEAIEQAAMsSACAgBQAAqxEAIAcAAKwRACAdAAC3EQAgJQAAtREAICYAAKoRACAnAACtEQAgKAAArxEAICkAALARACAqAACxEQAgKwAAshEAICwAALMRACAtAAC0EQAgLgAAthEAIC8AALgRACAwAAC5EQAgMQAAuhEAIDIAALsRACAzAAC8EQAgNAAAvREAIDUAAL4RACA2AAC_EQAgNwAAwBEAIIMFAgAAAAGGBgEAAAABhwYBAAAAAbwGIAAAAAG9BgIAAAABvgYgAAAAAb8GAgAAAAHABiAAAAABwQYCAAAAAcIGAgAAAAECAAAAAQAgRAAAzRIAIBcDAADnDQAgBAAA5g0AIAcAAOgNACALAAC3DgAgGAAA6Q0AIBkAAOsNACCDBQIAAAABhAUCAAAAAZQFAgAAAAGXBQEAAAABmAVAAAAAAaQFAgAAAAHTBQEAAAAB5AUBAAAAAf4FAQAAAAGSBgIAAAABqgZAAAAAAasGAQAAAAGsBgEAAAABrQYgAAAAAa4GAQAAAAGvBiAAAAABsQYAAACxBgICAAAACQAgRAAAzxIAIB4DAACsDwAgBQAArQ8AIAwAALEPACAYAACuDwAgHAAAsA8AIB0AALIPACAeAACzDwAgHwAAtA8AICUAALUPACCDBQIAAAABhAUCAAAAAZgFQAAAAAGjBUAAAAABsQUBAAAAAbQFAQAAAAG2BQEAAAAB0wUAAACxBgKVBkAAAAABmwYBAAAAAakGAQAAAAGyBgEAAAABswYBAAAAAbQGAQAAAAG1BgEAAAABtgYBAAAAAbcGAQAAAAG4BgEAAAABuQYBAAAAAboGAQAAAAG7BgEAAAABAgAAAAUAIEQAANESACAQgwUCAAAAAZIFAgAAAAHTBQAAAJEGAvMFEAAAAAH0BRAAAAAB9QUQAAAAAfYFEAAAAAH7BQEAAAABiAYBAAAAAYkGQAAAAAGKBgEAAAABiwYBAAAAAYwGAQAAAAGNBgEAAAABjgYBAAAAAY8GEAAAAAEEgwUCAAAAAcgFAQAAAAHKBQEAAAABzAUBAAAAAQMAAAAXACBEAADJEgAgRQAA1xIAIA0AAAAXACADAACpDQAgBQAArg0AIBQAAKsNACAVAACsDQAgFgAArQ0AID0AANcSACCDBQIAiAoAIYQFAgCICgAhmAVAAJ0KACGiBQIAiAoAIaYGAQCHCgAhpwYBAIcKACELAwAAqQ0AIAUAAK4NACAUAACrDQAgFQAArA0AIBYAAK0NACCDBQIAiAoAIYQFAgCICgAhmAVAAJ0KACGiBQIAiAoAIaYGAQCHCgAhpwYBAIcKACEDAAAACwAgRAAAyxIAIEUAANoSACALAAAACwAgAwAAoQ4AIAUAAKIOACA9AADaEgAggwUCAIgKACGEBQIAiAoAIZgFQACdCgAhmQUBAIcKACGxBQEAnAoAIagGAQCHCgAhqQYBAJwKACEJAwAAoQ4AIAUAAKIOACCDBQIAiAoAIYQFAgCICgAhmAVAAJ0KACGZBQEAhwoAIbEFAQCcCgAhqAYBAIcKACGpBgEAnAoAIQMAAAANACBEAADNEgAgRQAA3RIAICIAAAANACAFAAC8DwAgBwAAvQ8AIB0AAMgPACAlAADGDwAgJgAAuw8AICcAAL4PACAoAADADwAgKQAAwQ8AICoAAMIPACArAADDDwAgLAAAxA8AIC0AAMUPACAuAADHDwAgLwAAyQ8AIDAAAMoPACAxAADLDwAgMgAAzA8AIDMAAM0PACA0AADODwAgNQAAzw8AIDYAANAPACA3AADRDwAgPQAA3RIAIIMFAgCICgAhhgYBAIcKACGHBgEAhwoAIbwGIAC6CgAhvQYCAIgKACG-BiAAugoAIb8GAgCICgAhwAYgALoKACHBBgIAiAoAIcIGAgCICgAhIAUAALwPACAHAAC9DwAgHQAAyA8AICUAAMYPACAmAAC7DwAgJwAAvg8AICgAAMAPACApAADBDwAgKgAAwg8AICsAAMMPACAsAADEDwAgLQAAxQ8AIC4AAMcPACAvAADJDwAgMAAAyg8AIDEAAMsPACAyAADMDwAgMwAAzQ8AIDQAAM4PACA1AADPDwAgNgAA0A8AIDcAANEPACCDBQIAiAoAIYYGAQCHCgAhhwYBAIcKACG8BiAAugoAIb0GAgCICgAhvgYgALoKACG_BgIAiAoAIcAGIAC6CgAhwQYCAIgKACHCBgIAiAoAIQMAAAAHACBEAADPEgAgRQAA4BIAIBkAAAAHACADAAC8DQAgBAAAuw0AIAcAAL0NACALAAC1DgAgGAAAvg0AIBkAAMANACA9AADgEgAggwUCAIgKACGEBQIAiAoAIZQFAgD5CgAhlwUBAJwKACGYBUAAnQoAIaQFAgCICgAh0wUBAIcKACHkBQEAhwoAIf4FAQCHCgAhkgYCAIgKACGqBkAAnQoAIasGAQCHCgAhrAYBAIcKACGtBiAAugoAIa4GAQCcCgAhrwYgALoKACGxBgAAuQ2xBiIXAwAAvA0AIAQAALsNACAHAAC9DQAgCwAAtQ4AIBgAAL4NACAZAADADQAggwUCAIgKACGEBQIAiAoAIZQFAgD5CgAhlwUBAJwKACGYBUAAnQoAIaQFAgCICgAh0wUBAIcKACHkBQEAhwoAIf4FAQCHCgAhkgYCAIgKACGqBkAAnQoAIasGAQCHCgAhrAYBAIcKACGtBiAAugoAIa4GAQCcCgAhrwYgALoKACGxBgAAuQ2xBiIDAAAAAwAgRAAA0RIAIEUAAOMSACAgAAAAAwAgAwAAzA4AIAUAAM0OACAMAADRDgAgGAAAzg4AIBwAANAOACAdAADSDgAgHgAA0w4AIB8AANQOACAlAADVDgAgPQAA4xIAIIMFAgCICgAhhAUCAIgKACGYBUAAnQoAIaMFQACdCgAhsQUBAJwKACG0BQEAnAoAIbYFAQCcCgAh0wUAALkNsQYilQZAAMkLACGbBgEAnAoAIakGAQCHCgAhsgYBAIcKACGzBgEAhwoAIbQGAQCHCgAhtQYBAJwKACG2BgEAnAoAIbcGAQCcCgAhuAYBAJwKACG5BgEAnAoAIboGAQCcCgAhuwYBAJwKACEeAwAAzA4AIAUAAM0OACAMAADRDgAgGAAAzg4AIBwAANAOACAdAADSDgAgHgAA0w4AIB8AANQOACAlAADVDgAggwUCAIgKACGEBQIAiAoAIZgFQACdCgAhowVAAJ0KACGxBQEAnAoAIbQFAQCcCgAhtgUBAJwKACHTBQAAuQ2xBiKVBkAAyQsAIZsGAQCcCgAhqQYBAIcKACGyBgEAhwoAIbMGAQCHCgAhtAYBAIcKACG1BgEAnAoAIbYGAQCcCgAhtwYBAJwKACG4BgEAnAoAIbkGAQCcCgAhugYBAJwKACG7BgEAnAoAIRgEAACoDAAgCQAApwwAIAoAAKkMACALAACqDAAgDQAAqwwAIBMAAK0MACCDBQIAAAABhAUCAAAAAZQFAgAAAAGXBQEAAAABmAVAAAAAAaMFQAAAAAGkBQIAAAAB0wUAAAD7BQLxBQIAAAAB8gUCAAAAAfMFEAAAAAH0BRAAAAAB9QUQAAAAAfYFEAAAAAH3BRAAAAAB-AUQAAAAAfkFEAAAAAH7BQEAAAABAgAAABwAIEQAAOQSACADAAAAGgAgRAAA5BIAIEUAAOgSACAaAAAAGgAgBAAA8gsAIAkAAPELACAKAADzCwAgCwAA9AsAIA0AAPULACATAAD3CwAgPQAA6BIAIIMFAgCICgAhhAUCAIgKACGUBQIA-QoAIZcFAQCcCgAhmAVAAJ0KACGjBUAAnQoAIaQFAgCICgAh0wUAAPAL-wUi8QUCAPkKACHyBQIA-QoAIfMFEACRCgAh9AUQAJEKACH1BRAAkQoAIfYFEACRCgAh9wUQAO8LACH4BRAAkQoAIfkFEACRCgAh-wUBAJwKACEYBAAA8gsAIAkAAPELACAKAADzCwAgCwAA9AsAIA0AAPULACATAAD3CwAggwUCAIgKACGEBQIAiAoAIZQFAgD5CgAhlwUBAJwKACGYBUAAnQoAIaMFQACdCgAhpAUCAIgKACHTBQAA8Av7BSLxBQIA-QoAIfIFAgD5CgAh8wUQAJEKACH0BRAAkQoAIfUFEACRCgAh9gUQAJEKACH3BRAA7wsAIfgFEACRCgAh-QUQAJEKACH7BQEAnAoAIRoDAACSDQAgBAAAkA0AIAYAAJENACAHAACTDQAgCwAAlA0AIAwAAJcNACAQAACVDQAggwUCAAAAAYQFAgAAAAGUBQIAAAABmAVAAAAAAaMFQAAAAAGkBQIAAAAB0wUAAACdBgKRBgIAAAABkgYCAAAAAZMGAQAAAAGUBgEAAAABlQZAAAAAAZYGAQAAAAGYBgAAAJgGApkGgAAAAAGaBkAAAAABmwYBAAAAAZ0GAQAAAAGeBgEAAAABAgAAABIAIEQAAOkSACADAAAAEAAgRAAA6RIAIEUAAO0SACAcAAAAEAAgAwAA8AwAIAQAAO4MACAGAADvDAAgBwAA8QwAIAsAAPIMACAMAAD1DAAgEAAA8wwAID0AAO0SACCDBQIAiAoAIYQFAgCICgAhlAUCAPkKACGYBUAAnQoAIaMFQACdCgAhpAUCAIgKACHTBQAA7QydBiKRBgIA-QoAIZIGAgCICgAhkwYBAIcKACGUBgEAhwoAIZUGQACdCgAhlgYBAIcKACGYBgAA7AyYBiKZBoAAAAABmgZAAJ0KACGbBgEAhwoAIZ0GAQCcCgAhngYBAJwKACEaAwAA8AwAIAQAAO4MACAGAADvDAAgBwAA8QwAIAsAAPIMACAMAAD1DAAgEAAA8wwAIIMFAgCICgAhhAUCAIgKACGUBQIA-QoAIZgFQACdCgAhowVAAJ0KACGkBQIAiAoAIdMFAADtDJ0GIpEGAgD5CgAhkgYCAIgKACGTBgEAhwoAIZQGAQCHCgAhlQZAAJ0KACGWBgEAhwoAIZgGAADsDJgGIpkGgAAAAAGaBkAAnQoAIZsGAQCHCgAhnQYBAJwKACGeBgEAnAoAISAFAACrEQAgBwAArBEAIAgAAK4RACAdAAC3EQAgJQAAtREAICYAAKoRACAnAACtEQAgKQAAsBEAICoAALERACArAACyEQAgLAAAsxEAIC0AALQRACAuAAC2EQAgLwAAuBEAIDAAALkRACAxAAC6EQAgMgAAuxEAIDMAALwRACA0AAC9EQAgNQAAvhEAIDYAAL8RACA3AADAEQAggwUCAAAAAYYGAQAAAAGHBgEAAAABvAYgAAAAAb0GAgAAAAG-BiAAAAABvwYCAAAAAcAGIAAAAAHBBgIAAAABwgYCAAAAAQIAAAABACBEAADuEgAgAwAAAA0AIEQAAO4SACBFAADyEgAgIgAAAA0AIAUAALwPACAHAAC9DwAgCAAAvw8AIB0AAMgPACAlAADGDwAgJgAAuw8AICcAAL4PACApAADBDwAgKgAAwg8AICsAAMMPACAsAADEDwAgLQAAxQ8AIC4AAMcPACAvAADJDwAgMAAAyg8AIDEAAMsPACAyAADMDwAgMwAAzQ8AIDQAAM4PACA1AADPDwAgNgAA0A8AIDcAANEPACA9AADyEgAggwUCAIgKACGGBgEAhwoAIYcGAQCHCgAhvAYgALoKACG9BgIAiAoAIb4GIAC6CgAhvwYCAIgKACHABiAAugoAIcEGAgCICgAhwgYCAIgKACEgBQAAvA8AIAcAAL0PACAIAAC_DwAgHQAAyA8AICUAAMYPACAmAAC7DwAgJwAAvg8AICkAAMEPACAqAADCDwAgKwAAww8AICwAAMQPACAtAADFDwAgLgAAxw8AIC8AAMkPACAwAADKDwAgMQAAyw8AIDIAAMwPACAzAADNDwAgNAAAzg8AIDUAAM8PACA2AADQDwAgNwAA0Q8AIIMFAgCICgAhhgYBAIcKACGHBgEAhwoAIbwGIAC6CgAhvQYCAIgKACG-BiAAugoAIb8GAgCICgAhwAYgALoKACHBBgIAiAoAIcIGAgCICgAhIAUAAKsRACAHAACsEQAgCAAArhEAIB0AALcRACAlAAC1EQAgJgAAqhEAICcAAK0RACAoAACvEQAgKgAAsREAICsAALIRACAsAACzEQAgLQAAtBEAIC4AALYRACAvAAC4EQAgMAAAuREAIDEAALoRACAyAAC7EQAgMwAAvBEAIDQAAL0RACA1AAC-EQAgNgAAvxEAIDcAAMARACCDBQIAAAABhgYBAAAAAYcGAQAAAAG8BiAAAAABvQYCAAAAAb4GIAAAAAG_BgIAAAABwAYgAAAAAcEGAgAAAAHCBgIAAAABAgAAAAEAIEQAAPMSACADAAAADQAgRAAA8xIAIEUAAPcSACAiAAAADQAgBQAAvA8AIAcAAL0PACAIAAC_DwAgHQAAyA8AICUAAMYPACAmAAC7DwAgJwAAvg8AICgAAMAPACAqAADCDwAgKwAAww8AICwAAMQPACAtAADFDwAgLgAAxw8AIC8AAMkPACAwAADKDwAgMQAAyw8AIDIAAMwPACAzAADNDwAgNAAAzg8AIDUAAM8PACA2AADQDwAgNwAA0Q8AID0AAPcSACCDBQIAiAoAIYYGAQCHCgAhhwYBAIcKACG8BiAAugoAIb0GAgCICgAhvgYgALoKACG_BgIAiAoAIcAGIAC6CgAhwQYCAIgKACHCBgIAiAoAISAFAAC8DwAgBwAAvQ8AIAgAAL8PACAdAADIDwAgJQAAxg8AICYAALsPACAnAAC-DwAgKAAAwA8AICoAAMIPACArAADDDwAgLAAAxA8AIC0AAMUPACAuAADHDwAgLwAAyQ8AIDAAAMoPACAxAADLDwAgMgAAzA8AIDMAAM0PACA0AADODwAgNQAAzw8AIDYAANAPACA3AADRDwAggwUCAIgKACGGBgEAhwoAIYcGAQCHCgAhvAYgALoKACG9BgIAiAoAIb4GIAC6CgAhvwYCAIgKACHABiAAugoAIcEGAgCICgAhwgYCAIgKACEeAwAArA8AIAUAAK0PACAIAACvDwAgDAAAsQ8AIBgAAK4PACAdAACyDwAgHgAAsw8AIB8AALQPACAlAAC1DwAggwUCAAAAAYQFAgAAAAGYBUAAAAABowVAAAAAAbEFAQAAAAG0BQEAAAABtgUBAAAAAdMFAAAAsQYClQZAAAAAAZsGAQAAAAGpBgEAAAABsgYBAAAAAbMGAQAAAAG0BgEAAAABtQYBAAAAAbYGAQAAAAG3BgEAAAABuAYBAAAAAbkGAQAAAAG6BgEAAAABuwYBAAAAAQIAAAAFACBEAAD4EgAgBIMFAgAAAAHIBQEAAAABzQVAAAAAAfwFAAEAAAEDAAAAAwAgRAAA-BIAIEUAAP0SACAgAAAAAwAgAwAAzA4AIAUAAM0OACAIAADPDgAgDAAA0Q4AIBgAAM4OACAdAADSDgAgHgAA0w4AIB8AANQOACAlAADVDgAgPQAA_RIAIIMFAgCICgAhhAUCAIgKACGYBUAAnQoAIaMFQACdCgAhsQUBAJwKACG0BQEAnAoAIbYFAQCcCgAh0wUAALkNsQYilQZAAMkLACGbBgEAnAoAIakGAQCHCgAhsgYBAIcKACGzBgEAhwoAIbQGAQCHCgAhtQYBAJwKACG2BgEAnAoAIbcGAQCcCgAhuAYBAJwKACG5BgEAnAoAIboGAQCcCgAhuwYBAJwKACEeAwAAzA4AIAUAAM0OACAIAADPDgAgDAAA0Q4AIBgAAM4OACAdAADSDgAgHgAA0w4AIB8AANQOACAlAADVDgAggwUCAIgKACGEBQIAiAoAIZgFQACdCgAhowVAAJ0KACGxBQEAnAoAIbQFAQCcCgAhtgUBAJwKACHTBQAAuQ2xBiKVBkAAyQsAIZsGAQCcCgAhqQYBAIcKACGyBgEAhwoAIbMGAQCHCgAhtAYBAIcKACG1BgEAnAoAIbYGAQCcCgAhtwYBAJwKACG4BgEAnAoAIbkGAQCcCgAhugYBAJwKACG7BgEAnAoAIQYEAADJDAAggwUCAAAAAZgFQAAAAAGkBQIAAAAB_gUBAAAAAYAGAAAAgAYCAgAAAF0AIEQAAP4SACADAAAAWwAgRAAA_hIAIEUAAIITACAIAAAAWwAgBAAAuwwAID0AAIITACCDBQIAiAoAIZgFQACdCgAhpAUCAIgKACH-BQEAhwoAIYAGAAC6DIAGIgYEAAC7DAAggwUCAIgKACGYBUAAnQoAIaQFAgCICgAh_gUBAIcKACGABgAAugyABiILAwAAlg4AIAUAAJsOACAIAACXDgAgFQAAmQ4AIBYAAJoOACCDBQIAAAABhAUCAAAAAZgFQAAAAAGiBQIAAAABpgYBAAAAAacGAQAAAAECAAAAkAEAIEQAAIMTACAgBQAAqxEAIAcAAKwRACAIAACuEQAgHQAAtxEAICUAALURACAmAACqEQAgJwAArREAICgAAK8RACApAACwEQAgKwAAshEAICwAALMRACAtAAC0EQAgLgAAthEAIC8AALgRACAwAAC5EQAgMQAAuhEAIDIAALsRACAzAAC8EQAgNAAAvREAIDUAAL4RACA2AAC_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_DwAgHQAAyA8AICUAAMYPACAmAAC7DwAgJwAAvg8AICgAAMAPACApAADBDwAgKwAAww8AICwAAMQPACAtAADFDwAgLgAAxw8AIC8AAMkPACAwAADKDwAgMQAAyw8AIDIAAMwPACAzAADNDwAgNAAAzg8AIDUAAM8PACA2AADQDwAgNwAA0Q8AID0AAJkTACCDBQIAiAoAIYYGAQCHCgAhhwYBAIcKACG8BiAAugoAIb0GAgCICgAhvgYgALoKACG_BgIAiAoAIcAGIAC6CgAhwQYCAIgKACHCBgIAiAoAISAFAAC8DwAgBwAAvQ8AIAgAAL8PACAdAADIDwAgJQAAxg8AICYAALsPACAnAAC-DwAgKAAAwA8AICkAAMEPACArAADDDwAgLAAAxA8AIC0AAMUPACAuAADHDwAgLwAAyQ8AIDAAAMoPACAxAADLDwAgMgAAzA8AIDMAAM0PACA0AADODwAgNQAAzw8AIDYAANAPACA3AADRDwAggwUCAIgKACGGBgEAhwoAIYcGAQCHCgAhvAYgALoKACG9BgIAiAoAIb4GIAC6CgAhvwYCAIgKACHABiAAugoAIcEGAgCICgAhwgYCAIgKACEDAAAAAwAgRAAAhxMAIEUAAJwTACAgAAAAAwAgAwAAzA4AIAUAAM0OACAIAADPDgAgGAAAzg4AIBwAANAOACAdAADSDgAgHgAA0w4AIB8AANQOACAlAADVDgAgPQAAnBMAIIMFAgCICgAhhAUCAIgKACGYBUAAnQoAIaMFQACdCgAhsQUBAJwKACG0BQEAnAoAIbYFAQCcCgAh0wUAALkNsQYilQZAAMkLACGbBgEAnAoAIakGAQCHCgAhsgYBAIcKACGzBgEAhwoAIbQGAQCHCgAhtQYBAJwKACG2BgEAnAoAIbcGAQCcCgAhuAYBAJwKACG5BgEAnAoAIboGAQCcCgAhuwYBAJwKACEeAwAAzA4AIAUAAM0OACAIAADPDgAgGAAAzg4AIBwAANAOACAdAADSDgAgHgAA0w4AIB8AANQOACAlAADVDgAggwUCAIgKACGEBQIAiAoAIZgFQACdCgAhowVAAJ0KACGxBQEAnAoAIbQFAQCcCgAhtgUBAJwKACHTBQAAuQ2xBiKVBkAAyQsAIZsGAQCcCgAhqQYBAIcKACGyBgEAhwoAIbMGAQCHCgAhtAYBAIcKACG1BgEAnAoAIbYGAQCcCgAhtwYBAJwKACG4BgEAnAoAIbkGAQCcCgAhugYBAJwKACG7BgEAnAoAIQMAAAAQACBEAACJEwAgRQAAnxMAIBwAAAAQACADAADwDAAgBAAA7gwAIAYAAO8MACAHAADxDAAgCwAA8gwAIBAAAPMMACAXAAD0DAAgPQAAnxMAIIMFAgCICgAhhAUCAIgKACGUBQIA-QoAIZgFQACdCgAhowVAAJ0KACGkBQIAiAoAIdMFAADtDJ0GIpEGAgD5CgAhkgYCAIgKACGTBgEAhwoAIZQGAQCHCgAhlQZAAJ0KACGWBgEAhwoAIZgGAADsDJgGIpkGgAAAAAGaBkAAnQoAIZsGAQCHCgAhnQYBAJwKACGeBgEAnAoAIRoDAADwDAAgBAAA7gwAIAYAAO8MACAHAADxDAAgCwAA8gwAIBAAAPMMACAXAAD0DAAggwUCAIgKACGEBQIAiAoAIZQFAgD5CgAhmAVAAJ0KACGjBUAAnQoAIaQFAgCICgAh0wUAAO0MnQYikQYCAPkKACGSBgIAiAoAIZMGAQCHCgAhlAYBAIcKACGVBkAAnQoAIZYGAQCHCgAhmAYAAOwMmAYimQaAAAAAAZoGQACdCgAhmwYBAIcKACGdBgEAnAoAIZ4GAQCcCgAhEwkAAJwMACAMAADmDAAggwUCAAAAAZIFAgAAAAHTBQAAAJEGAvEFAgAAAAHzBRAAAAAB9AUQAAAAAfUFEAAAAAH2BRAAAAAB-wUBAAAAAYgGAQAAAAGJBkAAAAABigYBAAAAAYsGAQAAAAGMBgEAAAABjQYBAAAAAY4GAQAAAAGPBhAAAAABAgAAACsAIEQAAKATACAYBAAAqAwAIAkAAKcMACAKAACpDAAgCwAAqgwAIBAAAKwMACATAACtDAAggwUCAAAAAYQFAgAAAAGUBQIAAAABlwUBAAAAAZgFQAAAAAGjBUAAAAABpAUCAAAAAdMFAAAA-wUC8QUCAAAAAfIFAgAAAAHzBRAAAAAB9AUQAAAAAfUFEAAAAAH2BRAAAAAB9wUQAAAAAfgFEAAAAAH5BRAAAAAB-wUBAAAAAQIAAAAcACBEAACiEwAgAwAAACkAIEQAAKATACBFAACmEwAgFQAAACkAIAkAAI0MACAMAADlDAAgPQAAphMAIIMFAgCICgAhkgUCAPkKACHTBQAAiwyRBiLxBQIA-QoAIfMFEACRCgAh9AUQAJEKACH1BRAAkQoAIfYFEACRCgAh-wUBAJwKACGIBgEAhwoAIYkGQACdCgAhigYBAJwKACGLBgEAnAoAIYwGAQCcCgAhjQYBAJwKACGOBgEAnAoAIY8GEADvCwAhEwkAAI0MACAMAADlDAAggwUCAIgKACGSBQIA-QoAIdMFAACLDJEGIvEFAgD5CgAh8wUQAJEKACH0BRAAkQoAIfUFEACRCgAh9gUQAJEKACH7BQEAnAoAIYgGAQCHCgAhiQZAAJ0KACGKBgEAnAoAIYsGAQCcCgAhjAYBAJwKACGNBgEAnAoAIY4GAQCcCgAhjwYQAO8LACEDAAAAGgAgRAAAohMAIEUAAKkTACAaAAAAGgAgBAAA8gsAIAkAAPELACAKAADzCwAgCwAA9AsAIBAAAPYLACATAAD3CwAgPQAAqRMAIIMFAgCICgAhhAUCAIgKACGUBQIA-QoAIZcFAQCcCgAhmAVAAJ0KACGjBUAAnQoAIaQFAgCICgAh0wUAAPAL-wUi8QUCAPkKACHyBQIA-QoAIfMFEACRCgAh9AUQAJEKACH1BRAAkQoAIfYFEACRCgAh9wUQAO8LACH4BRAAkQoAIfkFEACRCgAh-wUBAJwKACEYBAAA8gsAIAkAAPELACAKAADzCwAgCwAA9AsAIBAAAPYLACATAAD3CwAggwUCAIgKACGEBQIAiAoAIZQFAgD5CgAhlwUBAJwKACGYBUAAnQoAIaMFQACdCgAhpAUCAIgKACHTBQAA8Av7BSLxBQIA-QoAIfIFAgD5CgAh8wUQAJEKACH0BRAAkQoAIfUFEACRCgAh9gUQAJEKACH3BRAA7wsAIfgFEACRCgAh-QUQAJEKACH7BQEAnAoAISAFAACrEQAgBwAArBEAIAgAAK4RACAdAAC3EQAgJQAAtREAICYAAKoRACAnAACtEQAgKAAArxEAICkAALARACAqAACxEQAgLAAAsxEAIC0AALQRACAuAAC2EQAgLwAAuBEAIDAAALkRACAxAAC6EQAgMgAAuxEAIDMAALwRACA0AAC9EQAgNQAAvhEAIDYAAL8RACA3AADAEQAggwUCAAAAAYYGAQAAAAGHBgEAAAABvAYgAAAAAb0GAgAAAAG-BiAAAAABvwYCAAAAAcAGIAAAAAHBBgIAAAABwgYCAAAAAQIAAAABACBEAACqEwAgAwAAAA0AIEQAAKoTACBFAACuEwAgIgAAAA0AIAUAALwPACAHAAC9DwAgCAAAvw8AIB0AAMgPACAlAADGDwAgJgAAuw8AICcAAL4PACAoAADADwAgKQAAwQ8AICoAAMIPACAsAADEDwAgLQAAxQ8AIC4AAMcPACAvAADJDwAgMAAAyg8AIDEAAMsPACAyAADMDwAgMwAAzQ8AIDQAAM4PACA1AADPDwAgNgAA0A8AIDcAANEPACA9AACuEwAggwUCAIgKACGGBgEAhwoAIYcGAQCHCgAhvAYgALoKACG9BgIAiAoAIb4GIAC6CgAhvwYCAIgKACHABiAAugoAIcEGAgCICgAhwgYCAIgKACEgBQAAvA8AIAcAAL0PACAIAAC_DwAgHQAAyA8AICUAAMYPACAmAAC7DwAgJwAAvg8AICgAAMAPACApAADBDwAgKgAAwg8AICwAAMQPACAtAADFDwAgLgAAxw8AIC8AAMkPACAwAADKDwAgMQAAyw8AIDIAAMwPACAzAADNDwAgNAAAzg8AIDUAAM8PACA2AADQDwAgNwAA0Q8AIIMFAgCICgAhhgYBAIcKACGHBgEAhwoAIbwGIAC6CgAhvQYCAIgKACG-BiAAugoAIb8GAgCICgAhwAYgALoKACHBBgIAiAoAIcIGAgCICgAhIAUAAKsRACAHAACsEQAgCAAArhEAIB0AALcRACAlAAC1EQAgJgAAqhEAICcAAK0RACAoAACvEQAgKQAAsBEAICoAALERACArAACyEQAgLQAAtBEAIC4AALYRACAvAAC4EQAgMAAAuREAIDEAALoRACAyAAC7EQAgMwAAvBEAIDQAAL0RACA1AAC-EQAgNgAAvxEAIDcAAMARACCDBQIAAAABhgYBAAAAAYcGAQAAAAG8BiAAAAABvQYCAAAAAb4GIAAAAAG_BgIAAAABwAYgAAAAAcEGAgAAAAHCBgIAAAABAgAAAAEAIEQAAK8TACADAAAADQAgRAAArxMAIEUAALMTACAiAAAADQAgBQAAvA8AIAcAAL0PACAIAAC_DwAgHQAAyA8AICUAAMYPACAmAAC7DwAgJwAAvg8AICgAAMAPACApAADBDwAgKgAAwg8AICsAAMMPACAtAADFDwAgLgAAxw8AIC8AAMkPACAwAADKDwAgMQAAyw8AIDIAAMwPACAzAADNDwAgNAAAzg8AIDUAAM8PACA2AADQDwAgNwAA0Q8AID0AALMTACCDBQIAiAoAIYYGAQCHCgAhhwYBAIcKACG8BiAAugoAIb0GAgCICgAhvgYgALoKACG_BgIAiAoAIcAGIAC6CgAhwQYCAIgKACHCBgIAiAoAISAFAAC8DwAgBwAAvQ8AIAgAAL8PACAdAADIDwAgJQAAxg8AICYAALsPACAnAAC-DwAgKAAAwA8AICkAAMEPACAqAADCDwAgKwAAww8AIC0AAMUPACAuAADHDwAgLwAAyQ8AIDAAAMoPACAxAADLDwAgMgAAzA8AIDMAAM0PACA0AADODwAgNQAAzw8AIDYAANAPACA3AADRDwAggwUCAIgKACGGBgEAhwoAIYcGAQCHCgAhvAYgALoKACG9BgIAiAoAIb4GIAC6CgAhvwYCAIgKACHABiAAugoAIcEGAgCICgAhwgYCAIgKACEgBQAAqxEAIAcAAKwRACAIAACuEQAgHQAAtxEAICUAALURACAmAACqEQAgJwAArREAICgAAK8RACApAACwEQAgKgAAsREAICsAALIRACAsAACzEQAgLgAAthEAIC8AALgRACAwAAC5EQAgMQAAuhEAIDIAALsRACAzAAC8EQAgNAAAvREAIDUAAL4RACA2AAC_EQAgNwAAwBEAIIMFAgAAAAGGBgEAAAABhwYBAAAAAbwGIAAAAAG9BgIAAAABvgYgAAAAAb8GAgAAAAHABiAAAAABwQYCAAAAAcIGAgAAAAECAAAAAQAgRAAAtBMAIAMAAAANACBEAAC0EwAgRQAAuBMAICIAAAANACAFAAC8DwAgBwAAvQ8AIAgAAL8PACAdAADIDwAgJQAAxg8AICYAALsPACAnAAC-DwAgKAAAwA8AICkAAMEPACAqAADCDwAgKwAAww8AICwAAMQPACAuAADHDwAgLwAAyQ8AIDAAAMoPACAxAADLDwAgMgAAzA8AIDMAAM0PACA0AADODwAgNQAAzw8AIDYAANAPACA3AADRDwAgPQAAuBMAIIMFAgCICgAhhgYBAIcKACGHBgEAhwoAIbwGIAC6CgAhvQYCAIgKACG-BiAAugoAIb8GAgCICgAhwAYgALoKACHBBgIAiAoAIcIGAgCICgAhIAUAALwPACAHAAC9DwAgCAAAvw8AIB0AAMgPACAlAADGDwAgJgAAuw8AICcAAL4PACAoAADADwAgKQAAwQ8AICoAAMIPACArAADDDwAgLAAAxA8AIC4AAMcPACAvAADJDwAgMAAAyg8AIDEAAMsPACAyAADMDwAgMwAAzQ8AIDQAAM4PACA1AADPDwAgNgAA0A8AIDcAANEPACCDBQIAiAoAIYYGAQCHCgAhhwYBAIcKACG8BiAAugoAIb0GAgCICgAhvgYgALoKACG_BgIAiAoAIcAGIAC6CgAhwQYCAIgKACHCBgIAiAoAIQsDAADACwAgBAAAwQsAIBkAAMILACAgAADDCwAggwUCAAAAAYQFAgAAAAGYBUAAAAABmQUBAAAAAaMFQAAAAAGkBQIAAAAB3QUCAAAAAQIAAAByACBEAAC5EwAgHgMAAKwPACAFAACtDwAgCAAArw8AIAwAALEPACAYAACuDwAgHAAAsA8AIB0AALIPACAeAACzDwAgHwAAtA8AIIMFAgAAAAGEBQIAAAABmAVAAAAAAaMFQAAAAAGxBQEAAAABtAUBAAAAAbYFAQAAAAHTBQAAALEGApUGQAAAAAGbBgEAAAABqQYBAAAAAbIGAQAAAAGzBgEAAAABtAYBAAAAAbUGAQAAAAG2BgEAAAABtwYBAAAAAbgGAQAAAAG5BgEAAAABugYBAAAAAbsGAQAAAAECAAAABQAgRAAAuxMAICAFAACrEQAgBwAArBEAIAgAAK4RACAdAAC3EQAgJgAAqhEAICcAAK0RACAoAACvEQAgKQAAsBEAICoAALERACArAACyEQAgLAAAsxEAIC0AALQRACAuAAC2EQAgLwAAuBEAIDAAALkRACAxAAC6EQAgMgAAuxEAIDMAALwRACA0AAC9EQAgNQAAvhEAIDYAAL8RACA3AADAEQAggwUCAAAAAYYGAQAAAAGHBgEAAAABvAYgAAAAAb0GAgAAAAG-BiAAAAABvwYCAAAAAcAGIAAAAAHBBgIAAAABwgYCAAAAAQIAAAABACBEAAC9EwAgBoMFAgAAAAGEBQIAAAABmAVAAAAAAZkFAQAAAAGjBUAAAAABpAUCAAAAAQqDBQIAAAABhAUCAAAAAZgFQAAAAAGZBQEAAAABowVAAAAAAcoFAQAAAAHLBQQAAAAB2gUgAAAAAdsFAgAAAAHcBQEAAAABAwAAAAMAIEQAALsTACBFAADDEwAgIAAAAAMAIAMAAMwOACAFAADNDgAgCAAAzw4AIAwAANEOACAYAADODgAgHAAA0A4AIB0AANIOACAeAADTDgAgHwAA1A4AID0AAMMTACCDBQIAiAoAIYQFAgCICgAhmAVAAJ0KACGjBUAAnQoAIbEFAQCcCgAhtAUBAJwKACG2BQEAnAoAIdMFAAC5DbEGIpUGQADJCwAhmwYBAJwKACGpBgEAhwoAIbIGAQCHCgAhswYBAIcKACG0BgEAhwoAIbUGAQCcCgAhtgYBAJwKACG3BgEAnAoAIbgGAQCcCgAhuQYBAJwKACG6BgEAnAoAIbsGAQCcCgAhHgMAAMwOACAFAADNDgAgCAAAzw4AIAwAANEOACAYAADODgAgHAAA0A4AIB0AANIOACAeAADTDgAgHwAA1A4AIIMFAgCICgAhhAUCAIgKACGYBUAAnQoAIaMFQACdCgAhsQUBAJwKACG0BQEAnAoAIbYFAQCcCgAh0wUAALkNsQYilQZAAMkLACGbBgEAnAoAIakGAQCHCgAhsgYBAIcKACGzBgEAhwoAIbQGAQCHCgAhtQYBAJwKACG2BgEAnAoAIbcGAQCcCgAhuAYBAJwKACG5BgEAnAoAIboGAQCcCgAhuwYBAJwKACEDAAAADQAgRAAAvRMAIEUAAMYTACAiAAAADQAgBQAAvA8AIAcAAL0PACAIAAC_DwAgHQAAyA8AICYAALsPACAnAAC-DwAgKAAAwA8AICkAAMEPACAqAADCDwAgKwAAww8AICwAAMQPACAtAADFDwAgLgAAxw8AIC8AAMkPACAwAADKDwAgMQAAyw8AIDIAAMwPACAzAADNDwAgNAAAzg8AIDUAAM8PACA2AADQDwAgNwAA0Q8AID0AAMYTACCDBQIAiAoAIYYGAQCHCgAhhwYBAIcKACG8BiAAugoAIb0GAgCICgAhvgYgALoKACG_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_BgIAiAoAIcAGIAC6CgAhwQYCAIgKACHCBgIAiAoAIQ0DAACaCwAgIgAAmwsAIIMFAgAAAAGEBQIAAAABmAVAAAAAAZkFAQAAAAGjBUAAAAABygUBAAAAAcsFBAAAAAHZBQIAAAAB2gUgAAAAAdsFAgAAAAHcBQEAAAABAgAAAHkAIEQAANUTACADAAAAdwAgRAAA1RMAIEUAANkTACAPAAAAdwAgAwAAiwsAICIAAIwLACA9AADZEwAggwUCAIgKACGEBQIAiAoAIZgFQACdCgAhmQUBAIcKACGjBUAAnQoAIcoFAQCcCgAhywUEAO4KACHZBQIA-QoAIdoFIAC6CgAh2wUCAPkKACHcBQEAnAoAIQ0DAACLCwAgIgAAjAsAIIMFAgCICgAhhAUCAIgKACGYBUAAnQoAIZkFAQCHCgAhowVAAJ0KACHKBQEAnAoAIcsFBADuCgAh2QUCAPkKACHaBSAAugoAIdsFAgD5CgAh3AUBAJwKACEgBQAAqxEAIAcAAKwRACAIAACuEQAgJQAAtREAICYAAKoRACAnAACtEQAgKAAArxEAICkAALARACAqAACxEQAgKwAAshEAICwAALMRACAtAAC0EQAgLgAAthEAIC8AALgRACAwAAC5EQAgMQAAuhEAIDIAALsRACAzAAC8EQAgNAAAvREAIDUAAL4RACA2AAC_EQAgNwAAwBEAIIMFAgAAAAGGBgEAAAABhwYBAAAAAbwGIAAAAAG9BgIAAAABvgYgAAAAAb8GAgAAAAHABiAAAAABwQYCAAAAAcIGAgAAAAECAAAAAQAgRAAA2hMAIB4DAACsDwAgBQAArQ8AIAgAAK8PACAMAACxDwAgGAAArg8AIBwAALAPACAeAACzDwAgHwAAtA8AICUAALUPACCDBQIAAAABhAUCAAAAAZgFQAAAAAGjBUAAAAABsQUBAAAAAbQFAQAAAAG2BQEAAAAB0wUAAACxBgKVBkAAAAABmwYBAAAAAakGAQAAAAGyBgEAAAABswYBAAAAAbQGAQAAAAG1BgEAAAABtgYBAAAAAbcGAQAAAAG4BgEAAAABuQYBAAAAAboGAQAAAAG7BgEAAAABAgAAAAUAIEQAANwTACADAAAADQAgRAAA2hMAIEUAAOATACAiAAAADQAgBQAAvA8AIAcAAL0PACAIAAC_DwAgJQAAxg8AICYAALsPACAnAAC-DwAgKAAAwA8AICkAAMEPACAqAADCDwAgKwAAww8AICwAAMQPACAtAADFDwAgLgAAxw8AIC8AAMkPACAwAADKDwAgMQAAyw8AIDIAAMwPACAzAADNDwAgNAAAzg8AIDUAAM8PACA2AADQDwAgNwAA0Q8AID0AAOATACCDBQIAiAoAIYYGAQCHCgAhhwYBAIcKACG8BiAAugoAIb0GAgCICgAhvgYgALoKACG_BgIAiAoAIcAGIAC6CgAhwQYCAIgKACHCBgIAiAoAISAFAAC8DwAgBwAAvQ8AIAgAAL8PACAlAADGDwAgJgAAuw8AICcAAL4PACAoAADADwAgKQAAwQ8AICoAAMIPACArAADDDwAgLAAAxA8AIC0AAMUPACAuAADHDwAgLwAAyQ8AIDAAAMoPACAxAADLDwAgMgAAzA8AIDMAAM0PACA0AADODwAgNQAAzw8AIDYAANAPACA3AADRDwAggwUCAIgKACGGBgEAhwoAIYcGAQCHCgAhvAYgALoKACG9BgIAiAoAIb4GIAC6CgAhvwYCAIgKACHABiAAugoAIcEGAgCICgAhwgYCAIgKACEDAAAAAwAgRAAA3BMAIEUAAOMTACAgAAAAAwAgAwAAzA4AIAUAAM0OACAIAADPDgAgDAAA0Q4AIBgAAM4OACAcAADQDgAgHgAA0w4AIB8AANQOACAlAADVDgAgPQAA4xMAIIMFAgCICgAhhAUCAIgKACGYBUAAnQoAIaMFQACdCgAhsQUBAJwKACG0BQEAnAoAIbYFAQCcCgAh0wUAALkNsQYilQZAAMkLACGbBgEAnAoAIakGAQCHCgAhsgYBAIcKACGzBgEAhwoAIbQGAQCHCgAhtQYBAJwKACG2BgEAnAoAIbcGAQCcCgAhuAYBAJwKACG5BgEAnAoAIboGAQCcCgAhuwYBAJwKACEeAwAAzA4AIAUAAM0OACAIAADPDgAgDAAA0Q4AIBgAAM4OACAcAADQDgAgHgAA0w4AIB8AANQOACAlAADVDgAggwUCAIgKACGEBQIAiAoAIZgFQACdCgAhowVAAJ0KACGxBQEAnAoAIbQFAQCcCgAhtgUBAJwKACHTBQAAuQ2xBiKVBkAAyQsAIZsGAQCcCgAhqQYBAIcKACGyBgEAhwoAIbMGAQCHCgAhtAYBAIcKACG1BgEAnAoAIbYGAQCcCgAhtwYBAJwKACG4BgEAnAoAIbkGAQCcCgAhugYBAJwKACG7BgEAnAoAIR4DAACsDwAgBQAArQ8AIAgAAK8PACAMAACxDwAgGAAArg8AIBwAALAPACAdAACyDwAgHwAAtA8AICUAALUPACCDBQIAAAABhAUCAAAAAZgFQAAAAAGjBUAAAAABsQUBAAAAAbQFAQAAAAG2BQEAAAAB0wUAAACxBgKVBkAAAAABmwYBAAAAAakGAQAAAAGyBgEAAAABswYBAAAAAbQGAQAAAAG1BgEAAAABtgYBAAAAAbcGAQAAAAG4BgEAAAABuQYBAAAAAboGAQAAAAG7BgEAAAABAgAAAAUAIEQAAOQTACADAAAAAwAgRAAA5BMAIEUAAOgTACAgAAAAAwAgAwAAzA4AIAUAAM0OACAIAADPDgAgDAAA0Q4AIBgAAM4OACAcAADQDgAgHQAA0g4AIB8AANQOACAlAADVDgAgPQAA6BMAIIMFAgCICgAhhAUCAIgKACGYBUAAnQoAIaMFQACdCgAhsQUBAJwKACG0BQEAnAoAIbYFAQCcCgAh0wUAALkNsQYilQZAAMkLACGbBgEAnAoAIakGAQCHCgAhsgYBAIcKACGzBgEAhwoAIbQGAQCHCgAhtQYBAJwKACG2BgEAnAoAIbcGAQCcCgAhuAYBAJwKACG5BgEAnAoAIboGAQCcCgAhuwYBAJwKACEeAwAAzA4AIAUAAM0OACAIAADPDgAgDAAA0Q4AIBgAAM4OACAcAADQDgAgHQAA0g4AIB8AANQOACAlAADVDgAggwUCAIgKACGEBQIAiAoAIZgFQACdCgAhowVAAJ0KACGxBQEAnAoAIbQFAQCcCgAhtgUBAJwKACHTBQAAuQ2xBiKVBkAAyQsAIZsGAQCcCgAhqQYBAIcKACGyBgEAhwoAIbMGAQCHCgAhtAYBAIcKACG1BgEAnAoAIbYGAQCcCgAhtwYBAJwKACG4BgEAnAoAIbkGAQCcCgAhugYBAJwKACG7BgEAnAoAISAFAACrEQAgBwAArBEAIAgAAK4RACAdAAC3EQAgJQAAtREAICYAAKoRACAnAACtEQAgKAAArxEAICkAALARACAqAACxEQAgKwAAshEAICwAALMRACAtAAC0EQAgLgAAthEAIDAAALkRACAxAAC6EQAgMgAAuxEAIDMAALwRACA0AAC9EQAgNQAAvhEAIDYAAL8RACA3AADAEQAggwUCAAAAAYYGAQAAAAGHBgEAAAABvAYgAAAAAb0GAgAAAAG-BiAAAAABvwYCAAAAAcAGIAAAAAHBBgIAAAABwgYCAAAAAQIAAAABACBEAADpEwAgAwAAAA0AIEQAAOkTACBFAADtEwAgIgAAAA0AIAUAALwPACAHAAC9DwAgCAAAvw8AIB0AAMgPACAlAADGDwAgJgAAuw8AICcAAL4PACAoAADADwAgKQAAwQ8AICoAAMIPACArAADDDwAgLAAAxA8AIC0AAMUPACAuAADHDwAgMAAAyg8AIDEAAMsPACAyAADMDwAgMwAAzQ8AIDQAAM4PACA1AADPDwAgNgAA0A8AIDcAANEPACA9AADtEwAggwUCAIgKACGGBgEAhwoAIYcGAQCHCgAhvAYgALoKACG9BgIAiAoAIb4GIAC6CgAhvwYCAIgKACHABiAAugoAIcEGAgCICgAhwgYCAIgKACEgBQAAvA8AIAcAAL0PACAIAAC_DwAgHQAAyA8AICUAAMYPACAmAAC7DwAgJwAAvg8AICgAAMAPACApAADBDwAgKgAAwg8AICsAAMMPACAsAADEDwAgLQAAxQ8AIC4AAMcPACAwAADKDwAgMQAAyw8AIDIAAMwPACAzAADNDwAgNAAAzg8AIDUAAM8PACA2AADQDwAgNwAA0Q8AIIMFAgCICgAhhgYBAIcKACGHBgEAhwoAIbwGIAC6CgAhvQYCAIgKACG-BiAAugoAIb8GAgCICgAhwAYgALoKACHBBgIAiAoAIcIGAgCICgAhIAUAAKsRACAHAACsEQAgCAAArhEAIB0AALcRACAlAAC1EQAgJgAAqhEAICcAAK0RACAoAACvEQAgKQAAsBEAICoAALERACArAACyEQAgLAAAsxEAIC0AALQRACAuAAC2EQAgLwAAuBEAIDEAALoRACAyAAC7EQAgMwAAvBEAIDQAAL0RACA1AAC-EQAgNgAAvxEAIDcAAMARACCDBQIAAAABhgYBAAAAAYcGAQAAAAG8BiAAAAABvQYCAAAAAb4GIAAAAAG_BgIAAAABwAYgAAAAAcEGAgAAAAHCBgIAAAABAgAAAAEAIEQAAO4TACADAAAADQAgRAAA7hMAIEUAAPITACAiAAAADQAgBQAAvA8AIAcAAL0PACAIAAC_DwAgHQAAyA8AICUAAMYPACAmAAC7DwAgJwAAvg8AICgAAMAPACApAADBDwAgKgAAwg8AICsAAMMPACAsAADEDwAgLQAAxQ8AIC4AAMcPACAvAADJDwAgMQAAyw8AIDIAAMwPACAzAADNDwAgNAAAzg8AIDUAAM8PACA2AADQDwAgNwAA0Q8AID0AAPITACCDBQIAiAoAIYYGAQCHCgAhhwYBAIcKACG8BiAAugoAIb0GAgCICgAhvgYgALoKACG_BgIAiAoAIcAGIAC6CgAhwQYCAIgKACHCBgIAiAoAISAFAAC8DwAgBwAAvQ8AIAgAAL8PACAdAADIDwAgJQAAxg8AICYAALsPACAnAAC-DwAgKAAAwA8AICkAAMEPACAqAADCDwAgKwAAww8AICwAAMQPACAtAADFDwAgLgAAxw8AIC8AAMkPACAxAADLDwAgMgAAzA8AIDMAAM0PACA0AADODwAgNQAAzw8AIDYAANAPACA3AADRDwAggwUCAIgKACGGBgEAhwoAIYcGAQCHCgAhvAYgALoKACG9BgIAiAoAIb4GIAC6CgAhvwYCAIgKACHABiAAugoAIcEGAgCICgAhwgYCAIgKACEgBQAAqxEAIAcAAKwRACAIAACuEQAgHQAAtxEAICUAALURACAmAACqEQAgJwAArREAICgAAK8RACApAACwEQAgKgAAsREAICsAALIRACAsAACzEQAgLQAAtBEAIC4AALYRACAvAAC4EQAgMAAAuREAIDIAALsRACAzAAC8EQAgNAAAvREAIDUAAL4RACA2AAC_EQAgNwAAwBEAIIMFAgAAAAGGBgEAAAABhwYBAAAAAbwGIAAAAAG9BgIAAAABvgYgAAAAAb8GAgAAAAHABiAAAAABwQYCAAAAAcIGAgAAAAECAAAAAQAgRAAA8xMAIAMAAAANACBEAADzEwAgRQAA9xMAICIAAAANACAFAAC8DwAgBwAAvQ8AIAgAAL8PACAdAADIDwAgJQAAxg8AICYAALsPACAnAAC-DwAgKAAAwA8AICkAAMEPACAqAADCDwAgKwAAww8AICwAAMQPACAtAADFDwAgLgAAxw8AIC8AAMkPACAwAADKDwAgMgAAzA8AIDMAAM0PACA0AADODwAgNQAAzw8AIDYAANAPACA3AADRDwAgPQAA9xMAIIMFAgCICgAhhgYBAIcKACGHBgEAhwoAIbwGIAC6CgAhvQYCAIgKACG-BiAAugoAIb8GAgCICgAhwAYgALoKACHBBgIAiAoAIcIGAgCICgAhIAUAALwPACAHAAC9DwAgCAAAvw8AIB0AAMgPACAlAADGDwAgJgAAuw8AICcAAL4PACAoAADADwAgKQAAwQ8AICoAAMIPACArAADDDwAgLAAAxA8AIC0AAMUPACAuAADHDwAgLwAAyQ8AIDAAAMoPACAyAADMDwAgMwAAzQ8AIDQAAM4PACA1AADPDwAgNgAA0A8AIDcAANEPACCDBQIAiAoAIYYGAQCHCgAhhwYBAIcKACG8BiAAugoAIb0GAgCICgAhvgYgALoKACG_BgIAiAoAIcAGIAC6CgAhwQYCAIgKACHCBgIAiAoAISAFAACrEQAgBwAArBEAIAgAAK4RACAdAAC3EQAgJQAAtREAICYAAKoRACAnAACtEQAgKAAArxEAICkAALARACAqAACxEQAgKwAAshEAICwAALMRACAtAAC0EQAgLgAAthEAIC8AALgRACAwAAC5EQAgMQAAuhEAIDMAALwRACA0AAC9EQAgNQAAvhEAIDYAAL8RACA3AADAEQAggwUCAAAAAYYGAQAAAAGHBgEAAAABvAYgAAAAAb0GAgAAAAG-BiAAAAABvwYCAAAAAcAGIAAAAAHBBgIAAAABwgYCAAAAAQIAAAABACBEAAD4EwAgAwAAAA0AIEQAAPgTACBFAAD8EwAgIgAAAA0AIAUAALwPACAHAAC9DwAgCAAAvw8AIB0AAMgPACAlAADGDwAgJgAAuw8AICcAAL4PACAoAADADwAgKQAAwQ8AICoAAMIPACArAADDDwAgLAAAxA8AIC0AAMUPACAuAADHDwAgLwAAyQ8AIDAAAMoPACAxAADLDwAgMwAAzQ8AIDQAAM4PACA1AADPDwAgNgAA0A8AIDcAANEPACA9AAD8EwAggwUCAIgKACGGBgEAhwoAIYcGAQCHCgAhvAYgALoKACG9BgIAiAoAIb4GIAC6CgAhvwYCAIgKACHABiAAugoAIcEGAgCICgAhwgYCAIgKACEgBQAAvA8AIAcAAL0PACAIAAC_DwAgHQAAyA8AICUAAMYPACAmAAC7DwAgJwAAvg8AICgAAMAPACApAADBDwAgKgAAwg8AICsAAMMPACAsAADEDwAgLQAAxQ8AIC4AAMcPACAvAADJDwAgMAAAyg8AIDEAAMsPACAzAADNDwAgNAAAzg8AIDUAAM8PACA2AADQDwAgNwAA0Q8AIIMFAgCICgAhhgYBAIcKACGHBgEAhwoAIbwGIAC6CgAhvQYCAIgKACG-BiAAugoAIb8GAgCICgAhwAYgALoKACHBBgIAiAoAIcIGAgCICgAhIAUAAKsRACAHAACsEQAgCAAArhEAIB0AALcRACAlAAC1EQAgJgAAqhEAICcAAK0RACAoAACvEQAgKQAAsBEAICoAALERACArAACyEQAgLAAAsxEAIC0AALQRACAuAAC2EQAgLwAAuBEAIDAAALkRACAxAAC6EQAgMgAAuxEAIDMAALwRACA1AAC-EQAgNgAAvxEAIDcAAMARACCDBQIAAAABhgYBAAAAAYcGAQAAAAG8BiAAAAABvQYCAAAAAb4GIAAAAAG_BgIAAAABwAYgAAAAAcEGAgAAAAHCBgIAAAABAgAAAAEAIEQAAP0TACADAAAADQAgRAAA_RMAIEUAAIEUACAiAAAADQAgBQAAvA8AIAcAAL0PACAIAAC_DwAgHQAAyA8AICUAAMYPACAmAAC7DwAgJwAAvg8AICgAAMAPACApAADBDwAgKgAAwg8AICsAAMMPACAsAADEDwAgLQAAxQ8AIC4AAMcPACAvAADJDwAgMAAAyg8AIDEAAMsPACAyAADMDwAgMwAAzQ8AIDUAAM8PACA2AADQDwAgNwAA0Q8AID0AAIEUACCDBQIAiAoAIYYGAQCHCgAhhwYBAIcKACG8BiAAugoAIb0GAgCICgAhvgYgALoKACG_BgIAiAoAIcAGIAC6CgAhwQYCAIgKACHCBgIAiAoAISAFAAC8DwAgBwAAvQ8AIAgAAL8PACAdAADIDwAgJQAAxg8AICYAALsPACAnAAC-DwAgKAAAwA8AICkAAMEPACAqAADCDwAgKwAAww8AICwAAMQPACAtAADFDwAgLgAAxw8AIC8AAMkPACAwAADKDwAgMQAAyw8AIDIAAMwPACAzAADNDwAgNQAAzw8AIDYAANAPACA3AADRDwAggwUCAIgKACGGBgEAhwoAIYcGAQCHCgAhvAYgALoKACG9BgIAiAoAIb4GIAC6CgAhvwYCAIgKACHABiAAugoAIcEGAgCICgAhwgYCAIgKACEgBQAAqxEAIAcAAKwRACAIAACuEQAgHQAAtxEAICUAALURACAmAACqEQAgJwAArREAICgAAK8RACApAACwEQAgKgAAsREAICsAALIRACAsAACzEQAgLQAAtBEAIC4AALYRACAvAAC4EQAgMAAAuREAIDEAALoRACAyAAC7EQAgNAAAvREAIDUAAL4RACA2AAC_EQAgNwAAwBEAIIMFAgAAAAGGBgEAAAABhwYBAAAAAbwGIAAAAAG9BgIAAAABvgYgAAAAAb8GAgAAAAHABiAAAAABwQYCAAAAAcIGAgAAAAECAAAAAQAgRAAAghQAIAMAAAANACBEAACCFAAgRQAAhhQAICIAAAANACAFAAC8DwAgBwAAvQ8AIAgAAL8PACAdAADIDwAgJQAAxg8AICYAALsPACAnAAC-DwAgKAAAwA8AICkAAMEPACAqAADCDwAgKwAAww8AICwAAMQPACAtAADFDwAgLgAAxw8AIC8AAMkPACAwAADKDwAgMQAAyw8AIDIAAMwPACA0AADODwAgNQAAzw8AIDYAANAPACA3AADRDwAgPQAAhhQAIIMFAgCICgAhhgYBAIcKACGHBgEAhwoAIbwGIAC6CgAhvQYCAIgKACG-BiAAugoAIb8GAgCICgAhwAYgALoKACHBBgIAiAoAIcIGAgCICgAhIAUAALwPACAHAAC9DwAgCAAAvw8AIB0AAMgPACAlAADGDwAgJgAAuw8AICcAAL4PACAoAADADwAgKQAAwQ8AICoAAMIPACArAADDDwAgLAAAxA8AIC0AAMUPACAuAADHDwAgLwAAyQ8AIDAAAMoPACAxAADLDwAgMgAAzA8AIDQAAM4PACA1AADPDwAgNgAA0A8AIDcAANEPACCDBQIAiAoAIYYGAQCHCgAhhwYBAIcKACG8BiAAugoAIb0GAgCICgAhvgYgALoKACG_BgIAiAoAIcAGIAC6CgAhwQYCAIgKACHCBgIAiAoAISAFAACrEQAgBwAArBEAIAgAAK4RACAdAAC3EQAgJQAAtREAICYAAKoRACAnAACtEQAgKAAArxEAICkAALARACAqAACxEQAgKwAAshEAICwAALMRACAtAAC0EQAgLgAAthEAIC8AALgRACAwAAC5EQAgMQAAuhEAIDIAALsRACAzAAC8EQAgNAAAvREAIDYAAL8RACA3AADAEQAggwUCAAAAAYYGAQAAAAGHBgEAAAABvAYgAAAAAb0GAgAAAAG-BiAAAAABvwYCAAAAAcAGIAAAAAHBBgIAAAABwgYCAAAAAQIAAAABACBEAACHFAAgHgMAAKwPACAFAACtDwAgCAAArw8AIAwAALEPACAYAACuDwAgHAAAsA8AIB0AALIPACAeAACzDwAgJQAAtQ8AIIMFAgAAAAGEBQIAAAABmAVAAAAAAaMFQAAAAAGxBQEAAAABtAUBAAAAAbYFAQAAAAHTBQAAALEGApUGQAAAAAGbBgEAAAABqQYBAAAAAbIGAQAAAAGzBgEAAAABtAYBAAAAAbUGAQAAAAG2BgEAAAABtwYBAAAAAbgGAQAAAAG5BgEAAAABugYBAAAAAbsGAQAAAAECAAAABQAgRAAAiRQAIAMAAAANACBEAACHFAAgRQAAjRQAICIAAAANACAFAAC8DwAgBwAAvQ8AIAgAAL8PACAdAADIDwAgJQAAxg8AICYAALsPACAnAAC-DwAgKAAAwA8AICkAAMEPACAqAADCDwAgKwAAww8AICwAAMQPACAtAADFDwAgLgAAxw8AIC8AAMkPACAwAADKDwAgMQAAyw8AIDIAAMwPACAzAADNDwAgNAAAzg8AIDYAANAPACA3AADRDwAgPQAAjRQAIIMFAgCICgAhhgYBAIcKACGHBgEAhwoAIbwGIAC6CgAhvQYCAIgKACG-BiAAugoAIb8GAgCICgAhwAYgALoKACHBBgIAiAoAIcIGAgCICgAhIAUAALwPACAHAAC9DwAgCAAAvw8AIB0AAMgPACAlAADGDwAgJgAAuw8AICcAAL4PACAoAADADwAgKQAAwQ8AICoAAMIPACArAADDDwAgLAAAxA8AIC0AAMUPACAuAADHDwAgLwAAyQ8AIDAAAMoPACAxAADLDwAgMgAAzA8AIDMAAM0PACA0AADODwAgNgAA0A8AIDcAANEPACCDBQIAiAoAIYYGAQCHCgAhhwYBAIcKACG8BiAAugoAIb0GAgCICgAhvgYgALoKACG_BgIAiAoAIcAGIAC6CgAhwQYCAIgKACHCBgIAiAoAIQMAAAADACBEAACJFAAgRQAAkBQAICAAAAADACADAADMDgAgBQAAzQ4AIAgAAM8OACAMAADRDgAgGAAAzg4AIBwAANAOACAdAADSDgAgHgAA0w4AICUAANUOACA9AACQFAAggwUCAIgKACGEBQIAiAoAIZgFQACdCgAhowVAAJ0KACGxBQEAnAoAIbQFAQCcCgAhtgUBAJwKACHTBQAAuQ2xBiKVBkAAyQsAIZsGAQCcCgAhqQYBAIcKACGyBgEAhwoAIbMGAQCHCgAhtAYBAIcKACG1BgEAnAoAIbYGAQCcCgAhtwYBAJwKACG4BgEAnAoAIbkGAQCcCgAhugYBAJwKACG7BgEAnAoAIR4DAADMDgAgBQAAzQ4AIAgAAM8OACAMAADRDgAgGAAAzg4AIBwAANAOACAdAADSDgAgHgAA0w4AICUAANUOACCDBQIAiAoAIYQFAgCICgAhmAVAAJ0KACGjBUAAnQoAIbEFAQCcCgAhtAUBAJwKACG2BQEAnAoAIdMFAAC5DbEGIpUGQADJCwAhmwYBAJwKACGpBgEAhwoAIbIGAQCHCgAhswYBAIcKACG0BgEAhwoAIbUGAQCcCgAhtgYBAJwKACG3BgEAnAoAIbgGAQCcCgAhuQYBAJwKACG6BgEAnAoAIbsGAQCcCgAhIAUAAKsRACAHAACsEQAgCAAArhEAIB0AALcRACAlAAC1EQAgJgAAqhEAICcAAK0RACAoAACvEQAgKQAAsBEAICoAALERACArAACyEQAgLAAAsxEAIC0AALQRACAuAAC2EQAgLwAAuBEAIDAAALkRACAxAAC6EQAgMgAAuxEAIDMAALwRACA0AAC9EQAgNQAAvhEAIDcAAMARACCDBQIAAAABhgYBAAAAAYcGAQAAAAG8BiAAAAABvQYCAAAAAb4GIAAAAAG_BgIAAAABwAYgAAAAAcEGAgAAAAHCBgIAAAABAgAAAAEAIEQAAJEUACADAAAADQAgRAAAkRQAIEUAAJUUACAiAAAADQAgBQAAvA8AIAcAAL0PACAIAAC_DwAgHQAAyA8AICUAAMYPACAmAAC7DwAgJwAAvg8AICgAAMAPACApAADBDwAgKgAAwg8AICsAAMMPACAsAADEDwAgLQAAxQ8AIC4AAMcPACAvAADJDwAgMAAAyg8AIDEAAMsPACAyAADMDwAgMwAAzQ8AIDQAAM4PACA1AADPDwAgNwAA0Q8AID0AAJUUACCDBQIAiAoAIYYGAQCHCgAhhwYBAIcKACG8BiAAugoAIb0GAgCICgAhvgYgALoKACG_BgIAiAoAIcAGIAC6CgAhwQYCAIgKACHCBgIAiAoAISAFAAC8DwAgBwAAvQ8AIAgAAL8PACAdAADIDwAgJQAAxg8AICYAALsPACAnAAC-DwAgKAAAwA8AICkAAMEPACAqAADCDwAgKwAAww8AICwAAMQPACAtAADFDwAgLgAAxw8AIC8AAMkPACAwAADKDwAgMQAAyw8AIDIAAMwPACAzAADNDwAgNAAAzg8AIDUAAM8PACA3AADRDwAggwUCAIgKACGGBgEAhwoAIYcGAQCHCgAhvAYgALoKACG9BgIAiAoAIb4GIAC6CgAhvwYCAIgKACHABiAAugoAIcEGAgCICgAhwgYCAIgKACELAwAAlg4AIAUAAJsOACAIAACXDgAgFAAAmA4AIBYAAJoOACCDBQIAAAABhAUCAAAAAZgFQAAAAAGiBQIAAAABpgYBAAAAAacGAQAAAAECAAAAkAEAIEQAAJYUACADgwUCAAAAAZIFAgAAAAGTBRAAAAABAwAAABcAIEQAAJYUACBFAACbFAAgDQAAABcAIAMAAKkNACAFAACuDQAgCAAAqg0AIBQAAKsNACAWAACtDQAgPQAAmxQAIIMFAgCICgAhhAUCAIgKACGYBUAAnQoAIaIFAgCICgAhpgYBAIcKACGnBgEAhwoAIQsDAACpDQAgBQAArg0AIAgAAKoNACAUAACrDQAgFgAArQ0AIIMFAgCICgAhhAUCAIgKACGYBUAAnQoAIaIFAgCICgAhpgYBAIcKACGnBgEAhwoAIRgEAACoDAAgCQAApwwAIAoAAKkMACALAACqDAAgDQAAqwwAIBAAAKwMACCDBQIAAAABhAUCAAAAAZQFAgAAAAGXBQEAAAABmAVAAAAAAaMFQAAAAAGkBQIAAAAB0wUAAAD7BQLxBQIAAAAB8gUCAAAAAfMFEAAAAAH0BRAAAAAB9QUQAAAAAfYFEAAAAAH3BRAAAAAB-AUQAAAAAfkFEAAAAAH7BQEAAAABAgAAABwAIEQAAJwUACAHCwAArAoAIIMFAgAAAAGUBQIAAAABlQUQAAAAAZYFEAAAAAGXBQEAAAABmAVAAAAAAQIAAAA4ACBEAACeFAAgAwAAABoAIEQAAJwUACBFAACiFAAgGgAAABoAIAQAAPILACAJAADxCwAgCgAA8wsAIAsAAPQLACANAAD1CwAgEAAA9gsAID0AAKIUACCDBQIAiAoAIYQFAgCICgAhlAUCAPkKACGXBQEAnAoAIZgFQACdCgAhowVAAJ0KACGkBQIAiAoAIdMFAADwC_sFIvEFAgD5CgAh8gUCAPkKACHzBRAAkQoAIfQFEACRCgAh9QUQAJEKACH2BRAAkQoAIfcFEADvCwAh-AUQAJEKACH5BRAAkQoAIfsFAQCcCgAhGAQAAPILACAJAADxCwAgCgAA8wsAIAsAAPQLACANAAD1CwAgEAAA9gsAIIMFAgCICgAhhAUCAIgKACGUBQIA-QoAIZcFAQCcCgAhmAVAAJ0KACGjBUAAnQoAIaQFAgCICgAh0wUAAPAL-wUi8QUCAPkKACHyBQIA-QoAIfMFEACRCgAh9AUQAJEKACH1BRAAkQoAIfYFEACRCgAh9wUQAO8LACH4BRAAkQoAIfkFEACRCgAh-wUBAJwKACEDAAAANgAgRAAAnhQAIEUAAKUUACAJAAAANgAgCwAAngoAID0AAKUUACCDBQIAiAoAIZQFAgCICgAhlQUQAJEKACGWBRAAkQoAIZcFAQCcCgAhmAVAAJ0KACEHCwAAngoAIIMFAgCICgAhlAUCAIgKACGVBRAAkQoAIZYFEACRCgAhlwUBAJwKACGYBUAAnQoAISAFAACrEQAgBwAArBEAIAgAAK4RACAdAAC3EQAgJQAAtREAICYAAKoRACAnAACtEQAgKAAArxEAICkAALARACAqAACxEQAgKwAAshEAICwAALMRACAtAAC0EQAgLgAAthEAIC8AALgRACAwAAC5EQAgMQAAuhEAIDIAALsRACAzAAC8EQAgNAAAvREAIDUAAL4RACA2AAC_EQAggwUCAAAAAYYGAQAAAAGHBgEAAAABvAYgAAAAAb0GAgAAAAG-BiAAAAABvwYCAAAAAcAGIAAAAAHBBgIAAAABwgYCAAAAAQIAAAABACBEAACmFAAgAwAAAA0AIEQAAKYUACBFAACqFAAgIgAAAA0AIAUAALwPACAHAAC9DwAgCAAAvw8AIB0AAMgPACAlAADGDwAgJgAAuw8AICcAAL4PACAoAADADwAgKQAAwQ8AICoAAMIPACArAADDDwAgLAAAxA8AIC0AAMUPACAuAADHDwAgLwAAyQ8AIDAAAMoPACAxAADLDwAgMgAAzA8AIDMAAM0PACA0AADODwAgNQAAzw8AIDYAANAPACA9AACqFAAggwUCAIgKACGGBgEAhwoAIYcGAQCHCgAhvAYgALoKACG9BgIAiAoAIb4GIAC6CgAhvwYCAIgKACHABiAAugoAIcEGAgCICgAhwgYCAIgKACEgBQAAvA8AIAcAAL0PACAIAAC_DwAgHQAAyA8AICUAAMYPACAmAAC7DwAgJwAAvg8AICgAAMAPACApAADBDwAgKgAAwg8AICsAAMMPACAsAADEDwAgLQAAxQ8AIC4AAMcPACAvAADJDwAgMAAAyg8AIDEAAMsPACAyAADMDwAgMwAAzQ8AIDQAAM4PACA1AADPDwAgNgAA0A8AIIMFAgCICgAhhgYBAIcKACGHBgEAhwoAIbwGIAC6CgAhvQYCAIgKACG-BiAAugoAIb8GAgCICgAhwAYgALoKACHBBgIAiAoAIcIGAgCICgAhGAWLAQMHjgEECJIBBQ4ALx2qARklqAEcJgYCJ5EBBiiWASIpmgEjKpsBByufASQsowElLacBJi6pAR0vrAEnMK4BKDGwASkysgEqM7QBKzS4ASw1uwEbNr8BLTfBAS4LAwABBQoDCFoFDGQHDgAhGFkPHF4WHWgZHm0aH28bJXMcCAMAAQQAAgcMBAhRBQtPBg4AFRhQDxlVFAQDDgEFDwMIEwUOABMJAxUBBAACBhQDBxYECxgGDEoHDgASEEUJF0kRBwMAAQU_AwgZBQ4AEBQdBxU5DBY9DwgEAAIJHgUKHwELIAYNJAgOAA4QLAkTMAsCDAAHDwAJBAklBQwmBw0nCA4ACgENKAACDAAHEgAMAwsABg4ADRExCwERMgADDTMAEDQAEzUAAwQAAgYAAws-BgUFRAAIQAAUQQAVQgAWQwABCQAFAhBLABdMAAIFTQAITgABBgADAwhXABhWABlYAAMEAAIOABgbYhcBGgAWARtjAAIDaQEEAAIBBAACAgMAAQQAAgYDAAEEdgIOACAZeh0gdBwhdRwEAwABDgAfInscJH8eASMAHQEkgAEAAhmCAQAhgQEACAWDAQAIhQEADIcBABiEAQAchgEAHYgBAB6JAQAligEAAQMAAQEDAAEBAwABAQMAAQEDAAEBAwABAQMAAQEDAAEBAwABAQMAAQEDAAEBAwABAQMAAREFwwEAB8QBAAjGAQAdzwEAJc0BACbCAQAnxQEAKMcBACnIAQAqyQEAK8oBACzLAQAtzAEALs4BADTQAQA10QEANtIBAAAAAAUOADRKADVLADZMADdNADgAAAAAAAUOADRKADVLADZMADdNADgBAwABAQMAAQUOAD1KAD5LAD9MAEBNAEEAAAAAAAUOAD1KAD5LAD9MAEBNAEEEAwABBAACB4kCBAuKAgYEAwABBAACB5ACBAuRAgYFDgBGSgBHSwBITABJTQBKAAAAAAAFDgBGSgBHSwBITABJTQBKAQYAAwEGAAMFDgBPSgBQSwBRTABSTQBTAAAAAAAFDgBPSgBQSwBRTABSTQBTAQO5AgEBA78CAQUOAFhKAFlLAFpMAFtNAFwAAAAAAAUOAFhKAFlLAFpMAFtNAFwBAwABAQMAAQUOAGFKAGJLAGNMAGRNAGUAAAAAAAUOAGFKAGJLAGNMAGRNAGUDBAACBgADC-cCBgMEAAIGAAML7QIGBQ4AakoAa0sAbEwAbU0AbgAAAAAABQ4AakoAa0sAbEwAbU0AbgUDgAMBBAACBv8CAweBAwQLggMGBQOJAwEEAAIGiAMDB4oDBAuLAwYFDgBzSgB0SwB1TAB2TQB3AAAAAAAFDgBzSgB0SwB1TAB2TQB3AgmdAwUMngMHAgmkAwUMpQMHBQ4AfEoAfUsAfkwAf00AgAEAAAAAAAUOAHxKAH1LAH5MAH9NAIABAQkABQEJAAUFDgCFAUoAhgFLAIcBTACIAU0AiQEAAAAAAAUOAIUBSgCGAUsAhwFMAIgBTQCJAQEDAAEBAwABBQ4AjgFKAI8BSwCQAUwAkQFNAJIBAAAAAAAFDgCOAUoAjwFLAJABTACRAU0AkgEBAwABAQMAAQUOAJcBSgCYAUsAmQFMAJoBTQCbAQAAAAAABQ4AlwFKAJgBSwCZAUwAmgFNAJsBAQQAAgEEAAIFDgCgAUoAoQFLAKIBTACjAU0ApAEAAAAAAAUOAKABSgChAUsAogFMAKMBTQCkAQEaABYBGgAWBQ4AqQFKAKoBSwCrAUwArAFNAK0BAAAAAAAFDgCpAUoAqgFLAKsBTACsAU0ArQEEBAACCaUEBQqmBAELpwQGBAQAAgmtBAUKrgQBC68EBgUOALIBSgCzAUsAtAFMALUBTQC2AQAAAAAABQ4AsgFKALMBSwC0AUwAtQFNALYBAgwABw8ACQIMAAcPAAkFDgC7AUoAvAFLAL0BTAC-AU0AvwEAAAAAAAUOALsBSgC8AUsAvQFMAL4BTQC_AQEDAAEBAwABBQ4AxAFKAMUBSwDGAUwAxwFNAMgBAAAAAAAFDgDEAUoAxQFLAMYBTADHAU0AyAEBAwABAQMAAQUOAM0BSgDOAUsAzwFMANABTQDRAQAAAAAABQ4AzQFKAM4BSwDPAUwA0AFNANEBAQMAAQEDAAEFDgDWAUoA1wFLANgBTADZAU0A2gEAAAAAAAUOANYBSgDXAUsA2AFMANkBTQDaAQAAAAUOAOABSgDhAUsA4gFMAOMBTQDkAQAAAAAABQ4A4AFKAOEBSwDiAUwA4wFNAOQBAwMAAQSzBQIgsgUcAwMAAQS6BQIguQUcBQ4A6QFKAOoBSwDrAUwA7AFNAO0BAAAAAAAFDgDpAUoA6gFLAOsBTADsAU0A7QECAwABIswFHAIDAAEi0gUcBQ4A8gFKAPMBSwD0AUwA9QFNAPYBAAAAAAAFDgDyAUoA8wFLAPQBTAD1AU0A9gEBIwAdASMAHQUOAPsBSgD8AUsA_QFMAP4BTQD_AQAAAAAABQ4A-wFKAPwBSwD9AUwA_gFNAP8BAgP6BQEEAAICA4AGAQQAAgUOAIQCSgCFAksAhgJMAIcCTQCIAgAAAAAABQ4AhAJKAIUCSwCGAkwAhwJNAIgCAQQAAgEEAAIFDgCNAkoAjgJLAI8CTACQAk0AkQIAAAAAAAUOAI0CSgCOAksAjwJMAJACTQCRAgEDAAEBAwABBQ4AlgJKAJcCSwCYAkwAmQJNAJoCAAAAAAAFDgCWAkoAlwJLAJgCTACZAk0AmgIBAwABAQMAAQUOAJ8CSgCgAksAoQJMAKICTQCjAgAAAAAABQ4AnwJKAKACSwChAkwAogJNAKMCAQMAAQEDAAEFDgCoAkoAqQJLAKoCTACrAk0ArAIAAAAAAAUOAKgCSgCpAksAqgJMAKsCTQCsAgEDAAEBAwABBQ4AsQJKALICSwCzAkwAtAJNALUCAAAAAAAFDgCxAkoAsgJLALMCTAC0Ak0AtQIBAwABAQMAAQUOALoCSgC7AksAvAJMAL0CTQC-AgAAAAAABQ4AugJKALsCSwC8AkwAvQJNAL4CAQMAAQEDAAEFDgDDAkoAxAJLAMUCTADGAk0AxwIAAAAAAAUOAMMCSgDEAksAxQJMAMYCTQDHAgIDAAEEAAICAwABBAACBQ4AzAJKAM0CSwDOAkwAzwJNANACAAAAAAAFDgDMAkoAzQJLAM4CTADPAk0A0AIBAwABAQMAAQUOANUCSgDWAksA1wJMANgCTQDZAgAAAAAABQ4A1QJKANYCSwDXAkwA2AJNANkCAQsABgELAAYFDgDeAkoA3wJLAOACTADhAk0A4gIAAAAAAAUOAN4CSgDfAksA4AJMAOECTQDiAgIMAAcSAAwCDAAHEgAMBQ4A5wJKAOgCSwDpAkwA6gJNAOsCAAAAAAAFDgDnAkoA6AJLAOkCTADqAk0A6wIBAwABAQMAAQUOAPACSgDxAksA8gJMAPMCTQD0AgAAAAAABQ4A8AJKAPECSwDyAkwA8wJNAPQCOAIBOdMBATrVAQE71gEBPNcBAT7ZAQE_2wEwQNwBMUHeAQFC4AEwQ-EBMkbiAQFH4wEBSOQBME7nATNP6AE5UOkBAlHqAQJS6wECU-wBAlTtAQJV7wECVvEBMFfyATpY9AECWfYBMFr3ATtb-AECXPkBAl36ATBe_QE8X_4BQmD_AQNhgAIDYoECA2OCAgNkgwIDZYUCA2aHAjBniAJDaIwCA2mOAjBqjwJEa5ICA2yTAgNtlAIwbpcCRW-YAktwmQIUcZoCFHKbAhRznAIUdJ0CFHWfAhR2oQIwd6ICTHikAhR5pgIweqcCTXuoAhR8qQIUfaoCMH6tAk5_rgJUgAGvAgSBAbACBIIBsQIEgwGyAgSEAbMCBIUBtQIEhgG3AjCHAbgCVYgBuwIEiQG9AjCKAb4CVosBwAIEjAHBAgSNAcICMI4BxQJXjwHGAl2QAccCBpEByAIGkgHJAgaTAcoCBpQBywIGlQHNAgaWAc8CMJcB0AJemAHSAgaZAdQCMJoB1QJfmwHWAgacAdcCBp0B2AIwngHbAmCfAdwCZqAB3QIPoQHeAg-iAd8CD6MB4AIPpAHhAg-lAeMCD6YB5QIwpwHmAmeoAekCD6kB6wIwqgHsAmirAe4CD6wB7wIPrQHwAjCuAfMCaa8B9AJvsAH1AgWxAfYCBbIB9wIFswH4AgW0AfkCBbUB-wIFtgH9AjC3Af4CcLgBhAMFuQGGAzC6AYcDcbsBjAMFvAGNAwW9AY4DML4BkQNyvwGSA3jAAZMDCcEBlAMJwgGVAwnDAZYDCcQBlwMJxQGZAwnGAZsDMMcBnAN5yAGgAwnJAaIDMMoBowN6ywGmAwnMAacDCc0BqAMwzgGrA3vPAawDgQHQAa0DEdEBrgMR0gGvAxHTAbADEdQBsQMR1QGzAxHWAbUDMNcBtgOCAdgBuAMR2QG6AzDaAbsDgwHbAbwDEdwBvQMR3QG-AzDeAcEDhAHfAcIDigHgAcMDIuEBxAMi4gHFAyLjAcYDIuQBxwMi5QHJAyLmAcsDMOcBzAOLAegBzgMi6QHQAzDqAdEDjAHrAdIDIuwB0wMi7QHUAzDuAdcDjQHvAdgDkwHwAdkDI_EB2gMj8gHbAyPzAdwDI_QB3QMj9QHfAyP2AeEDMPcB4gOUAfgB5AMj-QHmAzD6AecDlQH7AegDI_wB6QMj_QHqAzD-Ae0DlgH_Ae4DnAGAAu8DFoEC8AMWggLxAxaDAvIDFoQC8wMWhQL1AxaGAvcDMIcC-AOdAYgC-gMWiQL8AzCKAv0DngGLAv4DFowC_wMWjQKABDCOAoMEnwGPAoQEpQGQAoUEF5EChgQXkgKHBBeTAogEF5QCiQQXlQKLBBeWAo0EMJcCjgSmAZgCkAQXmQKSBDCaApMEpwGbApQEF5wClQQXnQKWBDCeApkEqAGfApoErgGgApsEB6ECnAQHogKdBAejAp4EB6QCnwQHpQKhBAemAqMEMKcCpASvAagCqQQHqQKrBDCqAqwEsAGrArAEB6wCsQQHrQKyBDCuArUEsQGvArYEtwGwArcECLECuAQIsgK5BAizAroECLQCuwQItQK9BAi2Ar8EMLcCwAS4AbgCwgQIuQLEBDC6AsUEuQG7AsYECLwCxwQIvQLIBDC-AssEugG_AswEwAHAAs0EJMECzgQkwgLPBCTDAtAEJMQC0QQkxQLTBCTGAtUEMMcC1gTBAcgC2AQkyQLaBDDKAtsEwgHLAtwEJMwC3QQkzQLeBDDOAuEEwwHPAuIEyQHQAuMEJdEC5AQl0gLlBCXTAuYEJdQC5wQl1QLpBCXWAusEMNcC7ATKAdgC7gQl2QLwBDDaAvEEywHbAvIEJdwC8wQl3QL0BDDeAvcEzAHfAvgE0gHgAvkEJuEC-gQm4gL7BCbjAvwEJuQC_QQm5QL_BCbmAoEFMOcCggXTAegChAUm6QKGBTDqAocF1AHrAogFJuwCiQUm7QKKBTDuAo0F1QHvAo4F2wHwApAF3AHxApEF3AHyApQF3AHzApUF3AH0ApYF3AH1ApgF3AH2ApoFMPcCmwXdAfgCnQXcAfkCnwUw-gKgBd4B-wKhBdwB_AKiBdwB_QKjBTD-AqYF3wH_AqcF5QGAA6gFHIEDqQUcggOqBRyDA6sFHIQDrAUchQOuBRyGA7AFMIcDsQXmAYgDtQUciQO3BTCKA7gF5wGLA7sFHIwDvAUcjQO9BTCOA8AF6AGPA8EF7gGQA8IFHZEDwwUdkgPEBR2TA8UFHZQDxgUdlQPIBR2WA8oFMJcDywXvAZgDzgUdmQPQBTCaA9EF8AGbA9MFHZwD1AUdnQPVBTCeA9gF8QGfA9kF9wGgA9oFHqED2wUeogPcBR6jA90FHqQD3gUepQPgBR6mA-IFMKcD4wX4AagD5QUeqQPnBTCqA-gF-QGrA-kFHqwD6gUerQPrBTCuA-4F-gGvA-8FgAKwA_AFGbED8QUZsgPyBRmzA_MFGbQD9AUZtQP2BRm2A_gFMLcD-QWBArgD_AUZuQP-BTC6A_8FggK7A4EGGbwDggYZvQODBjC-A4YGgwK_A4cGiQLAA4gGGsEDiQYawgOKBhrDA4sGGsQDjAYaxQOOBhrGA5AGMMcDkQaKAsgDkwYayQOVBjDKA5YGiwLLA5cGGswDmAYazQOZBjDOA5wGjALPA50GkgLQA58GJ9EDoAYn0gOiBifTA6MGJ9QDpAYn1QOmBifWA6gGMNcDqQaTAtgDqwYn2QOtBjDaA64GlALbA68GJ9wDsAYn3QOxBjDeA7QGlQLfA7UGmwLgA7cGKOEDuAYo4gO6BijjA7sGKOQDvAYo5QO-BijmA8AGMOcDwQacAugDwwYo6QPFBjDqA8YGnQLrA8cGKOwDyAYo7QPJBjDuA8wGngLvA80GpALwA88GKfED0AYp8gPSBinzA9MGKfQD1AYp9QPWBin2A9gGMPcD2QalAvgD2wYp-QPdBjD6A94GpgL7A98GKfwD4AYp_QPhBjD-A-QGpwL_A-UGrQKABOcGKoEE6AYqggTqBiqDBOsGKoQE7AYqhQTuBiqGBPAGMIcE8QauAogE8wYqiQT1BjCKBPYGrwKLBPcGKowE-AYqjQT5BjCOBPwGsAKPBP0GtgKQBP4GLJEE_wYskgSAByyTBIEHLJQEggcslQSEByyWBIYHMJcEhwe3ApgEiQcsmQSLBzCaBIwHuAKbBI0HLJwEjgcsnQSPBzCeBJIHuQKfBJMHvwKgBJUHK6EElgcrogSYByujBJkHK6QEmgcrpQScByumBJ4HMKcEnwfAAqgEoQcrqQSjBzCqBKQHwQKrBKUHK6wEpgcrrQSnBzCuBKoHwgKvBKsHyAKwBKwHG7EErQcbsgSuBxuzBK8HG7QEsAcbtQSyBxu2BLQHMLcEtQfJArgEtwcbuQS5BzC6BLoHygK7BLsHG7wEvAcbvQS9BzC-BMAHywK_BMEH0QLABMIHLcEEwwctwgTEBy3DBMUHLcQExgctxQTIBy3GBMoHMMcEywfSAsgEzQctyQTPBzDKBNAH0wLLBNEHLcwE0gctzQTTBzDOBNYH1ALPBNcH2gLQBNgHDNEE2QcM0gTaBwzTBNsHDNQE3AcM1QTeBwzWBOAHMNcE4QfbAtgE4wcM2QTlBzDaBOYH3ALbBOcHDNwE6AcM3QTpBzDeBOwH3QLfBO0H4wLgBO4HC-EE7wcL4gTwBwvjBPEHC-QE8gcL5QT0BwvmBPYHMOcE9wfkAugE-QcL6QT7BzDqBPwH5QLrBP0HC-wE_gcL7QT_BzDuBIII5gLvBIMI7ALwBIUILvEEhggu8gSICC7zBIkILvQEiggu9QSMCC72BI4IMPcEjwjtAvgEkQgu-QSTCDD6BJQI7gL7BJUILvwElggu_QSXCDD-BJoI7wL_BJsI9QI" } config.compilerWasm = { getRuntime: async () => require('./query_compiler_fast_bg.js'), diff --git a/packages/db/generated/prisma/package.json b/packages/db/generated/prisma/package.json index 1fa3fc84..c764e5c8 100644 --- a/packages/db/generated/prisma/package.json +++ b/packages/db/generated/prisma/package.json @@ -1,5 +1,5 @@ { - "name": "prisma-client-1397903f012032ff276557e7a077db07df8a7cae6f68fef0b7224d110a42b0e3", + "name": "prisma-client-06444e98f8328a30442a56cbded54a265df02594192db5e428350bbd93cc975b", "main": "index.js", "types": "index.d.ts", "browser": "default.js", diff --git a/packages/db/generated/prisma/schema.prisma b/packages/db/generated/prisma/schema.prisma index 2368f9a5..5f6b21dd 100755 --- a/packages/db/generated/prisma/schema.prisma +++ b/packages/db/generated/prisma/schema.prisma @@ -103,6 +103,7 @@ model Appointment { patientId Int userId Int staffId Int + npiProviderId Int? title String date DateTime @db.Date startTime String // Store time as "hh:mm" @@ -117,12 +118,13 @@ model Appointment { eligibilityStatus PatientStatus @default(UNKNOWN) - patient Patient @relation(fields: [patientId], references: [id], onDelete: Cascade) - user User @relation(fields: [userId], references: [id]) - staff Staff? @relation(fields: [staffId], references: [id]) - procedures AppointmentProcedure[] - claims Claim[] - files AppointmentFile[] + patient Patient @relation(fields: [patientId], references: [id], onDelete: Cascade) + user User @relation(fields: [userId], references: [id]) + staff Staff? @relation(fields: [staffId], references: [id]) + npiProvider NpiProvider? @relation(fields: [npiProviderId], references: [id]) + procedures AppointmentProcedure[] + claims Claim[] + files AppointmentFile[] @@index([patientId]) @@index([date]) @@ -166,6 +168,7 @@ model NpiProvider { payments Payment[] commissionBatches CommissionBatch[] appointmentProcedures AppointmentProcedure[] + appointments Appointment[] @@unique([userId, npiNumber]) @@index([userId]) diff --git a/packages/db/prisma/schema.prisma b/packages/db/prisma/schema.prisma index 46093037..6d6b90ce 100755 --- a/packages/db/prisma/schema.prisma +++ b/packages/db/prisma/schema.prisma @@ -103,6 +103,7 @@ model Appointment { patientId Int userId Int staffId Int + npiProviderId Int? title String date DateTime @db.Date startTime String // Store time as "hh:mm" @@ -117,12 +118,13 @@ model Appointment { eligibilityStatus PatientStatus @default(UNKNOWN) - patient Patient @relation(fields: [patientId], references: [id], onDelete: Cascade) - user User @relation(fields: [userId], references: [id]) - staff Staff? @relation(fields: [staffId], references: [id]) - procedures AppointmentProcedure[] - claims Claim[] - files AppointmentFile[] + patient Patient @relation(fields: [patientId], references: [id], onDelete: Cascade) + user User @relation(fields: [userId], references: [id]) + staff Staff? @relation(fields: [staffId], references: [id]) + npiProvider NpiProvider? @relation(fields: [npiProviderId], references: [id]) + procedures AppointmentProcedure[] + claims Claim[] + files AppointmentFile[] @@index([patientId]) @@index([date]) @@ -166,6 +168,7 @@ model NpiProvider { payments Payment[] commissionBatches CommissionBatch[] appointmentProcedures AppointmentProcedure[] + appointments Appointment[] @@unique([userId, npiNumber]) @@index([userId]) diff --git a/packages/db/shared/.prisma-zod-generator-manifest.json b/packages/db/shared/.prisma-zod-generator-manifest.json index a1ee07ec..e65b1336 100755 --- a/packages/db/shared/.prisma-zod-generator-manifest.json +++ b/packages/db/shared/.prisma-zod-generator-manifest.json @@ -1,8 +1,8 @@ { "version": "1.0", "generatorVersion": "1.0.0", - "generatedAt": "2026-07-03T03:44:29.373Z", - "outputPath": "/home/gg/Desktop/DentalManagementMH06/packages/db/shared", + "generatedAt": "2026-07-21T01:43:44.482Z", + "outputPath": "/home/ff/Desktop/DentalManagementMH07/packages/db/shared", "files": [ "schemas/enums/TransactionIsolationLevel.schema.ts", "schemas/enums/UserScalarFieldEnum.schema.ts", @@ -564,8 +564,10 @@ "schemas/objects/StringNullableWithAggregatesFilter.schema.ts", "schemas/objects/EnumPatientStatusWithAggregatesFilter.schema.ts", "schemas/objects/DateTimeWithAggregatesFilter.schema.ts", + "schemas/objects/IntNullableFilter.schema.ts", "schemas/objects/PatientScalarRelationFilter.schema.ts", "schemas/objects/StaffNullableScalarRelationFilter.schema.ts", + "schemas/objects/NpiProviderNullableScalarRelationFilter.schema.ts", "schemas/objects/AppointmentFileListRelationFilter.schema.ts", "schemas/objects/AppointmentFileOrderByRelationAggregateInput.schema.ts", "schemas/objects/AppointmentCountOrderByAggregateInput.schema.ts", @@ -573,6 +575,7 @@ "schemas/objects/AppointmentMaxOrderByAggregateInput.schema.ts", "schemas/objects/AppointmentMinOrderByAggregateInput.schema.ts", "schemas/objects/AppointmentSumOrderByAggregateInput.schema.ts", + "schemas/objects/IntNullableWithAggregatesFilter.schema.ts", "schemas/objects/AppointmentScalarRelationFilter.schema.ts", "schemas/objects/AppointmentFileCountOrderByAggregateInput.schema.ts", "schemas/objects/AppointmentFileAvgOrderByAggregateInput.schema.ts", @@ -593,16 +596,13 @@ "schemas/objects/NpiProviderMaxOrderByAggregateInput.schema.ts", "schemas/objects/NpiProviderMinOrderByAggregateInput.schema.ts", "schemas/objects/NpiProviderSumOrderByAggregateInput.schema.ts", - "schemas/objects/IntNullableFilter.schema.ts", "schemas/objects/DecimalNullableFilter.schema.ts", "schemas/objects/EnumProcedureSourceFilter.schema.ts", - "schemas/objects/NpiProviderNullableScalarRelationFilter.schema.ts", "schemas/objects/AppointmentProcedureCountOrderByAggregateInput.schema.ts", "schemas/objects/AppointmentProcedureAvgOrderByAggregateInput.schema.ts", "schemas/objects/AppointmentProcedureMaxOrderByAggregateInput.schema.ts", "schemas/objects/AppointmentProcedureMinOrderByAggregateInput.schema.ts", "schemas/objects/AppointmentProcedureSumOrderByAggregateInput.schema.ts", - "schemas/objects/IntNullableWithAggregatesFilter.schema.ts", "schemas/objects/DecimalNullableWithAggregatesFilter.schema.ts", "schemas/objects/EnumProcedureSourceWithAggregatesFilter.schema.ts", "schemas/objects/EnumMissingTeethStatusFilter.schema.ts", @@ -948,6 +948,7 @@ "schemas/objects/PatientCreateNestedOneWithoutAppointmentsInput.schema.ts", "schemas/objects/UserCreateNestedOneWithoutAppointmentsInput.schema.ts", "schemas/objects/StaffCreateNestedOneWithoutAppointmentsInput.schema.ts", + "schemas/objects/NpiProviderCreateNestedOneWithoutAppointmentsInput.schema.ts", "schemas/objects/AppointmentProcedureCreateNestedManyWithoutAppointmentInput.schema.ts", "schemas/objects/ClaimCreateNestedManyWithoutAppointmentInput.schema.ts", "schemas/objects/AppointmentFileCreateNestedManyWithoutAppointmentInput.schema.ts", @@ -957,9 +958,11 @@ "schemas/objects/PatientUpdateOneRequiredWithoutAppointmentsNestedInput.schema.ts", "schemas/objects/UserUpdateOneRequiredWithoutAppointmentsNestedInput.schema.ts", "schemas/objects/StaffUpdateOneWithoutAppointmentsNestedInput.schema.ts", + "schemas/objects/NpiProviderUpdateOneWithoutAppointmentsNestedInput.schema.ts", "schemas/objects/AppointmentProcedureUpdateManyWithoutAppointmentNestedInput.schema.ts", "schemas/objects/ClaimUpdateManyWithoutAppointmentNestedInput.schema.ts", "schemas/objects/AppointmentFileUpdateManyWithoutAppointmentNestedInput.schema.ts", + "schemas/objects/NullableIntFieldUpdateOperationsInput.schema.ts", "schemas/objects/AppointmentProcedureUncheckedUpdateManyWithoutAppointmentNestedInput.schema.ts", "schemas/objects/ClaimUncheckedUpdateManyWithoutAppointmentNestedInput.schema.ts", "schemas/objects/AppointmentFileUncheckedUpdateManyWithoutAppointmentNestedInput.schema.ts", @@ -980,19 +983,23 @@ "schemas/objects/PaymentCreateNestedManyWithoutNpiProviderInput.schema.ts", "schemas/objects/CommissionBatchCreateNestedManyWithoutNpiProviderInput.schema.ts", "schemas/objects/AppointmentProcedureCreateNestedManyWithoutNpiProviderInput.schema.ts", + "schemas/objects/AppointmentCreateNestedManyWithoutNpiProviderInput.schema.ts", "schemas/objects/ClaimUncheckedCreateNestedManyWithoutNpiProviderInput.schema.ts", "schemas/objects/PaymentUncheckedCreateNestedManyWithoutNpiProviderInput.schema.ts", "schemas/objects/CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput.schema.ts", "schemas/objects/AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput.schema.ts", + "schemas/objects/AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput.schema.ts", "schemas/objects/UserUpdateOneRequiredWithoutNpiProvidersNestedInput.schema.ts", "schemas/objects/ClaimUpdateManyWithoutNpiProviderNestedInput.schema.ts", "schemas/objects/PaymentUpdateManyWithoutNpiProviderNestedInput.schema.ts", "schemas/objects/CommissionBatchUpdateManyWithoutNpiProviderNestedInput.schema.ts", "schemas/objects/AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput.schema.ts", + "schemas/objects/AppointmentUpdateManyWithoutNpiProviderNestedInput.schema.ts", "schemas/objects/ClaimUncheckedUpdateManyWithoutNpiProviderNestedInput.schema.ts", "schemas/objects/PaymentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema.ts", "schemas/objects/CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput.schema.ts", "schemas/objects/AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput.schema.ts", + "schemas/objects/AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema.ts", "schemas/objects/AppointmentCreateNestedOneWithoutProceduresInput.schema.ts", "schemas/objects/PatientCreateNestedOneWithoutProceduresInput.schema.ts", "schemas/objects/NpiProviderCreateNestedOneWithoutAppointmentProceduresInput.schema.ts", @@ -1001,7 +1008,6 @@ "schemas/objects/AppointmentUpdateOneRequiredWithoutProceduresNestedInput.schema.ts", "schemas/objects/PatientUpdateOneRequiredWithoutProceduresNestedInput.schema.ts", "schemas/objects/NpiProviderUpdateOneWithoutAppointmentProceduresNestedInput.schema.ts", - "schemas/objects/NullableIntFieldUpdateOperationsInput.schema.ts", "schemas/objects/PatientCreateNestedOneWithoutClaimsInput.schema.ts", "schemas/objects/AppointmentCreateNestedOneWithoutClaimsInput.schema.ts", "schemas/objects/UserCreateNestedOneWithoutClaimsInput.schema.ts", @@ -1165,10 +1171,10 @@ "schemas/objects/NestedStringNullableWithAggregatesFilter.schema.ts", "schemas/objects/NestedEnumPatientStatusWithAggregatesFilter.schema.ts", "schemas/objects/NestedDateTimeWithAggregatesFilter.schema.ts", - "schemas/objects/NestedDecimalNullableFilter.schema.ts", - "schemas/objects/NestedEnumProcedureSourceFilter.schema.ts", "schemas/objects/NestedIntNullableWithAggregatesFilter.schema.ts", "schemas/objects/NestedFloatNullableFilter.schema.ts", + "schemas/objects/NestedDecimalNullableFilter.schema.ts", + "schemas/objects/NestedEnumProcedureSourceFilter.schema.ts", "schemas/objects/NestedDecimalNullableWithAggregatesFilter.schema.ts", "schemas/objects/NestedEnumProcedureSourceWithAggregatesFilter.schema.ts", "schemas/objects/NestedEnumMissingTeethStatusFilter.schema.ts", @@ -1459,6 +1465,9 @@ "schemas/objects/StaffCreateWithoutAppointmentsInput.schema.ts", "schemas/objects/StaffUncheckedCreateWithoutAppointmentsInput.schema.ts", "schemas/objects/StaffCreateOrConnectWithoutAppointmentsInput.schema.ts", + "schemas/objects/NpiProviderCreateWithoutAppointmentsInput.schema.ts", + "schemas/objects/NpiProviderUncheckedCreateWithoutAppointmentsInput.schema.ts", + "schemas/objects/NpiProviderCreateOrConnectWithoutAppointmentsInput.schema.ts", "schemas/objects/AppointmentProcedureCreateWithoutAppointmentInput.schema.ts", "schemas/objects/AppointmentProcedureUncheckedCreateWithoutAppointmentInput.schema.ts", "schemas/objects/AppointmentProcedureCreateOrConnectWithoutAppointmentInput.schema.ts", @@ -1483,6 +1492,10 @@ "schemas/objects/StaffUpdateToOneWithWhereWithoutAppointmentsInput.schema.ts", "schemas/objects/StaffUpdateWithoutAppointmentsInput.schema.ts", "schemas/objects/StaffUncheckedUpdateWithoutAppointmentsInput.schema.ts", + "schemas/objects/NpiProviderUpsertWithoutAppointmentsInput.schema.ts", + "schemas/objects/NpiProviderUpdateToOneWithWhereWithoutAppointmentsInput.schema.ts", + "schemas/objects/NpiProviderUpdateWithoutAppointmentsInput.schema.ts", + "schemas/objects/NpiProviderUncheckedUpdateWithoutAppointmentsInput.schema.ts", "schemas/objects/AppointmentProcedureUpsertWithWhereUniqueWithoutAppointmentInput.schema.ts", "schemas/objects/AppointmentProcedureUpdateWithWhereUniqueWithoutAppointmentInput.schema.ts", "schemas/objects/AppointmentProcedureUpdateManyWithWhereWithoutAppointmentInput.schema.ts", @@ -1540,6 +1553,10 @@ "schemas/objects/AppointmentProcedureUncheckedCreateWithoutNpiProviderInput.schema.ts", "schemas/objects/AppointmentProcedureCreateOrConnectWithoutNpiProviderInput.schema.ts", "schemas/objects/AppointmentProcedureCreateManyNpiProviderInputEnvelope.schema.ts", + "schemas/objects/AppointmentCreateWithoutNpiProviderInput.schema.ts", + "schemas/objects/AppointmentUncheckedCreateWithoutNpiProviderInput.schema.ts", + "schemas/objects/AppointmentCreateOrConnectWithoutNpiProviderInput.schema.ts", + "schemas/objects/AppointmentCreateManyNpiProviderInputEnvelope.schema.ts", "schemas/objects/UserUpsertWithoutNpiProvidersInput.schema.ts", "schemas/objects/UserUpdateToOneWithWhereWithoutNpiProvidersInput.schema.ts", "schemas/objects/UserUpdateWithoutNpiProvidersInput.schema.ts", @@ -1557,6 +1574,9 @@ "schemas/objects/AppointmentProcedureUpsertWithWhereUniqueWithoutNpiProviderInput.schema.ts", "schemas/objects/AppointmentProcedureUpdateWithWhereUniqueWithoutNpiProviderInput.schema.ts", "schemas/objects/AppointmentProcedureUpdateManyWithWhereWithoutNpiProviderInput.schema.ts", + "schemas/objects/AppointmentUpsertWithWhereUniqueWithoutNpiProviderInput.schema.ts", + "schemas/objects/AppointmentUpdateWithWhereUniqueWithoutNpiProviderInput.schema.ts", + "schemas/objects/AppointmentUpdateManyWithWhereWithoutNpiProviderInput.schema.ts", "schemas/objects/AppointmentCreateWithoutProceduresInput.schema.ts", "schemas/objects/AppointmentUncheckedCreateWithoutProceduresInput.schema.ts", "schemas/objects/AppointmentCreateOrConnectWithoutProceduresInput.schema.ts", @@ -2093,6 +2113,7 @@ "schemas/objects/PaymentCreateManyNpiProviderInput.schema.ts", "schemas/objects/CommissionBatchCreateManyNpiProviderInput.schema.ts", "schemas/objects/AppointmentProcedureCreateManyNpiProviderInput.schema.ts", + "schemas/objects/AppointmentCreateManyNpiProviderInput.schema.ts", "schemas/objects/ClaimUpdateWithoutNpiProviderInput.schema.ts", "schemas/objects/ClaimUncheckedUpdateWithoutNpiProviderInput.schema.ts", "schemas/objects/ClaimUncheckedUpdateManyWithoutNpiProviderInput.schema.ts", @@ -2105,6 +2126,9 @@ "schemas/objects/AppointmentProcedureUpdateWithoutNpiProviderInput.schema.ts", "schemas/objects/AppointmentProcedureUncheckedUpdateWithoutNpiProviderInput.schema.ts", "schemas/objects/AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderInput.schema.ts", + "schemas/objects/AppointmentUpdateWithoutNpiProviderInput.schema.ts", + "schemas/objects/AppointmentUncheckedUpdateWithoutNpiProviderInput.schema.ts", + "schemas/objects/AppointmentUncheckedUpdateManyWithoutNpiProviderInput.schema.ts", "schemas/objects/ServiceLineCreateManyClaimInput.schema.ts", "schemas/objects/ClaimFileCreateManyClaimInput.schema.ts", "schemas/objects/ServiceLineUpdateWithoutClaimInput.schema.ts", @@ -2380,6 +2404,7 @@ "schemas/objects/NpiProviderCountOutputTypeCountPaymentsArgs.schema.ts", "schemas/objects/NpiProviderCountOutputTypeCountCommissionBatchesArgs.schema.ts", "schemas/objects/NpiProviderCountOutputTypeCountAppointmentProceduresArgs.schema.ts", + "schemas/objects/NpiProviderCountOutputTypeCountAppointmentsArgs.schema.ts", "schemas/objects/ClaimCountOutputTypeArgs.schema.ts", "schemas/objects/ClaimCountOutputTypeCountServiceLinesArgs.schema.ts", "schemas/objects/ClaimCountOutputTypeCountClaimFilesArgs.schema.ts", diff --git a/packages/db/shared/helpers/decimal-helpers.d.ts.map b/packages/db/shared/helpers/decimal-helpers.d.ts.map index b1cb5d5c..df6e1506 100644 --- a/packages/db/shared/helpers/decimal-helpers.d.ts.map +++ b/packages/db/shared/helpers/decimal-helpers.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"decimal-helpers.d.ts","sourceRoot":"","sources":["decimal-helpers.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,OAAO,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AAMhD,eAAO,MAAM,mBAAmB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,aAAa,CAM9D,CAAC;AAGH,eAAO,MAAM,oBAAoB,QAAuE,CAAC;AAEzG,eAAO,MAAM,mBAAmB,GAC9B,IAAI,IAAI,GAAG,MAAM,GAAG,MAAM,GAAG,MAAM,CAAC,aAAa,KAChD,CAAC,IAAI,MAAM,GAAG,MAAM,GAAG,MAAM,CAAC,aAiBhC,CAAC"} \ No newline at end of file +{"version":3,"file":"decimal-helpers.d.ts","sourceRoot":"","sources":["decimal-helpers.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AAOrD,eAAO,MAAM,mBAAmB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,aAAa,CAM9D,CAAC;AAGH,eAAO,MAAM,oBAAoB,QAAuE,CAAC;AAEzG,eAAO,MAAM,mBAAmB,GAC9B,IAAI,IAAI,GAAG,MAAM,GAAG,MAAM,GAAG,MAAM,CAAC,aAAa,KAChD,CAAC,IAAI,MAAM,GAAG,MAAM,GAAG,MAAM,CAAC,aAiBhC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/helpers/decimal-helpers.js b/packages/db/shared/helpers/decimal-helpers.js index 0c5c734b..147471dd 100644 --- a/packages/db/shared/helpers/decimal-helpers.js +++ b/packages/db/shared/helpers/decimal-helpers.js @@ -38,7 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.isValidDecimalInput = exports.DECIMAL_STRING_REGEX = exports.DecimalJSLikeSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../generated/prisma"); const decimal_js_1 = __importDefault(require("decimal.js")); // DECIMAL HELPERS //------------------------------------------------------ @@ -56,7 +55,7 @@ const isValidDecimalInput = (v) => { return false; return ( // Explicit instance checks first - v instanceof prisma_1.Prisma.Decimal || + v instanceof decimal_js_1.default || // If Decimal.js is present and imported by the generator, this symbol exists at runtime // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-ignore - Decimal may be undefined when not installed; codegen controls the import diff --git a/packages/db/shared/helpers/decimal-helpers.ts b/packages/db/shared/helpers/decimal-helpers.ts index afebf5dd..dbd069df 100755 --- a/packages/db/shared/helpers/decimal-helpers.ts +++ b/packages/db/shared/helpers/decimal-helpers.ts @@ -1,7 +1,8 @@ import * as z from 'zod'; -import { Prisma } from '../../generated/prisma'; -import Decimal from 'decimal.js'; +import type { Prisma } from '../../generated/prisma'; + +import Decimal from "decimal.js"; // DECIMAL HELPERS //------------------------------------------------------ @@ -23,7 +24,7 @@ export const isValidDecimalInput = ( if (v === undefined || v === null) return false; return ( // Explicit instance checks first - v instanceof Prisma.Decimal || + v instanceof Decimal || // If Decimal.js is present and imported by the generator, this symbol exists at runtime // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-ignore - Decimal may be undefined when not installed; codegen controls the import diff --git a/packages/db/shared/schemas/aggregateLabRxTemplate.schema.js b/packages/db/shared/schemas/aggregateLabRxTemplate.schema.js new file mode 100644 index 00000000..b9216bf6 --- /dev/null +++ b/packages/db/shared/schemas/aggregateLabRxTemplate.schema.js @@ -0,0 +1,47 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateAggregateZodSchema = exports.LabRxTemplateAggregateSchema = void 0; +const z = __importStar(require("zod")); +const LabRxTemplateOrderByWithRelationInput_schema_1 = require("./objects/LabRxTemplateOrderByWithRelationInput.schema"); +const LabRxTemplateWhereInput_schema_1 = require("./objects/LabRxTemplateWhereInput.schema"); +const LabRxTemplateWhereUniqueInput_schema_1 = require("./objects/LabRxTemplateWhereUniqueInput.schema"); +const LabRxTemplateCountAggregateInput_schema_1 = require("./objects/LabRxTemplateCountAggregateInput.schema"); +const LabRxTemplateMinAggregateInput_schema_1 = require("./objects/LabRxTemplateMinAggregateInput.schema"); +const LabRxTemplateMaxAggregateInput_schema_1 = require("./objects/LabRxTemplateMaxAggregateInput.schema"); +const LabRxTemplateAvgAggregateInput_schema_1 = require("./objects/LabRxTemplateAvgAggregateInput.schema"); +const LabRxTemplateSumAggregateInput_schema_1 = require("./objects/LabRxTemplateSumAggregateInput.schema"); +exports.LabRxTemplateAggregateSchema = z.object({ orderBy: z.union([LabRxTemplateOrderByWithRelationInput_schema_1.LabRxTemplateOrderByWithRelationInputObjectSchema, LabRxTemplateOrderByWithRelationInput_schema_1.LabRxTemplateOrderByWithRelationInputObjectSchema.array()]).optional(), where: LabRxTemplateWhereInput_schema_1.LabRxTemplateWhereInputObjectSchema.optional(), cursor: LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([z.literal(true), LabRxTemplateCountAggregateInput_schema_1.LabRxTemplateCountAggregateInputObjectSchema]).optional(), _min: LabRxTemplateMinAggregateInput_schema_1.LabRxTemplateMinAggregateInputObjectSchema.optional(), _max: LabRxTemplateMaxAggregateInput_schema_1.LabRxTemplateMaxAggregateInputObjectSchema.optional(), _avg: LabRxTemplateAvgAggregateInput_schema_1.LabRxTemplateAvgAggregateInputObjectSchema.optional(), _sum: LabRxTemplateSumAggregateInput_schema_1.LabRxTemplateSumAggregateInputObjectSchema.optional() }).strict(); +exports.LabRxTemplateAggregateZodSchema = z.object({ orderBy: z.union([LabRxTemplateOrderByWithRelationInput_schema_1.LabRxTemplateOrderByWithRelationInputObjectSchema, LabRxTemplateOrderByWithRelationInput_schema_1.LabRxTemplateOrderByWithRelationInputObjectSchema.array()]).optional(), where: LabRxTemplateWhereInput_schema_1.LabRxTemplateWhereInputObjectSchema.optional(), cursor: LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([z.literal(true), LabRxTemplateCountAggregateInput_schema_1.LabRxTemplateCountAggregateInputObjectSchema]).optional(), _min: LabRxTemplateMinAggregateInput_schema_1.LabRxTemplateMinAggregateInputObjectSchema.optional(), _max: LabRxTemplateMaxAggregateInput_schema_1.LabRxTemplateMaxAggregateInputObjectSchema.optional(), _avg: LabRxTemplateAvgAggregateInput_schema_1.LabRxTemplateAvgAggregateInputObjectSchema.optional(), _sum: LabRxTemplateSumAggregateInput_schema_1.LabRxTemplateSumAggregateInputObjectSchema.optional() }).strict(); diff --git a/packages/db/shared/schemas/aggregateSeleniumSettings.schema.js b/packages/db/shared/schemas/aggregateSeleniumSettings.schema.js new file mode 100644 index 00000000..fb5bb9c4 --- /dev/null +++ b/packages/db/shared/schemas/aggregateSeleniumSettings.schema.js @@ -0,0 +1,47 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsAggregateZodSchema = exports.SeleniumSettingsAggregateSchema = void 0; +const z = __importStar(require("zod")); +const SeleniumSettingsOrderByWithRelationInput_schema_1 = require("./objects/SeleniumSettingsOrderByWithRelationInput.schema"); +const SeleniumSettingsWhereInput_schema_1 = require("./objects/SeleniumSettingsWhereInput.schema"); +const SeleniumSettingsWhereUniqueInput_schema_1 = require("./objects/SeleniumSettingsWhereUniqueInput.schema"); +const SeleniumSettingsCountAggregateInput_schema_1 = require("./objects/SeleniumSettingsCountAggregateInput.schema"); +const SeleniumSettingsMinAggregateInput_schema_1 = require("./objects/SeleniumSettingsMinAggregateInput.schema"); +const SeleniumSettingsMaxAggregateInput_schema_1 = require("./objects/SeleniumSettingsMaxAggregateInput.schema"); +const SeleniumSettingsAvgAggregateInput_schema_1 = require("./objects/SeleniumSettingsAvgAggregateInput.schema"); +const SeleniumSettingsSumAggregateInput_schema_1 = require("./objects/SeleniumSettingsSumAggregateInput.schema"); +exports.SeleniumSettingsAggregateSchema = z.object({ orderBy: z.union([SeleniumSettingsOrderByWithRelationInput_schema_1.SeleniumSettingsOrderByWithRelationInputObjectSchema, SeleniumSettingsOrderByWithRelationInput_schema_1.SeleniumSettingsOrderByWithRelationInputObjectSchema.array()]).optional(), where: SeleniumSettingsWhereInput_schema_1.SeleniumSettingsWhereInputObjectSchema.optional(), cursor: SeleniumSettingsWhereUniqueInput_schema_1.SeleniumSettingsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([z.literal(true), SeleniumSettingsCountAggregateInput_schema_1.SeleniumSettingsCountAggregateInputObjectSchema]).optional(), _min: SeleniumSettingsMinAggregateInput_schema_1.SeleniumSettingsMinAggregateInputObjectSchema.optional(), _max: SeleniumSettingsMaxAggregateInput_schema_1.SeleniumSettingsMaxAggregateInputObjectSchema.optional(), _avg: SeleniumSettingsAvgAggregateInput_schema_1.SeleniumSettingsAvgAggregateInputObjectSchema.optional(), _sum: SeleniumSettingsSumAggregateInput_schema_1.SeleniumSettingsSumAggregateInputObjectSchema.optional() }).strict(); +exports.SeleniumSettingsAggregateZodSchema = z.object({ orderBy: z.union([SeleniumSettingsOrderByWithRelationInput_schema_1.SeleniumSettingsOrderByWithRelationInputObjectSchema, SeleniumSettingsOrderByWithRelationInput_schema_1.SeleniumSettingsOrderByWithRelationInputObjectSchema.array()]).optional(), where: SeleniumSettingsWhereInput_schema_1.SeleniumSettingsWhereInputObjectSchema.optional(), cursor: SeleniumSettingsWhereUniqueInput_schema_1.SeleniumSettingsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([z.literal(true), SeleniumSettingsCountAggregateInput_schema_1.SeleniumSettingsCountAggregateInputObjectSchema]).optional(), _min: SeleniumSettingsMinAggregateInput_schema_1.SeleniumSettingsMinAggregateInputObjectSchema.optional(), _max: SeleniumSettingsMaxAggregateInput_schema_1.SeleniumSettingsMaxAggregateInputObjectSchema.optional(), _avg: SeleniumSettingsAvgAggregateInput_schema_1.SeleniumSettingsAvgAggregateInputObjectSchema.optional(), _sum: SeleniumSettingsSumAggregateInput_schema_1.SeleniumSettingsSumAggregateInputObjectSchema.optional() }).strict(); diff --git a/packages/db/shared/schemas/countLabRxTemplate.schema.js b/packages/db/shared/schemas/countLabRxTemplate.schema.js new file mode 100644 index 00000000..d106d41b --- /dev/null +++ b/packages/db/shared/schemas/countLabRxTemplate.schema.js @@ -0,0 +1,43 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateCountZodSchema = exports.LabRxTemplateCountSchema = void 0; +const z = __importStar(require("zod")); +const LabRxTemplateOrderByWithRelationInput_schema_1 = require("./objects/LabRxTemplateOrderByWithRelationInput.schema"); +const LabRxTemplateWhereInput_schema_1 = require("./objects/LabRxTemplateWhereInput.schema"); +const LabRxTemplateWhereUniqueInput_schema_1 = require("./objects/LabRxTemplateWhereUniqueInput.schema"); +const LabRxTemplateCountAggregateInput_schema_1 = require("./objects/LabRxTemplateCountAggregateInput.schema"); +exports.LabRxTemplateCountSchema = z.object({ orderBy: z.union([LabRxTemplateOrderByWithRelationInput_schema_1.LabRxTemplateOrderByWithRelationInputObjectSchema, LabRxTemplateOrderByWithRelationInput_schema_1.LabRxTemplateOrderByWithRelationInputObjectSchema.array()]).optional(), where: LabRxTemplateWhereInput_schema_1.LabRxTemplateWhereInputObjectSchema.optional(), cursor: LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([z.literal(true), LabRxTemplateCountAggregateInput_schema_1.LabRxTemplateCountAggregateInputObjectSchema]).optional() }).strict(); +exports.LabRxTemplateCountZodSchema = z.object({ orderBy: z.union([LabRxTemplateOrderByWithRelationInput_schema_1.LabRxTemplateOrderByWithRelationInputObjectSchema, LabRxTemplateOrderByWithRelationInput_schema_1.LabRxTemplateOrderByWithRelationInputObjectSchema.array()]).optional(), where: LabRxTemplateWhereInput_schema_1.LabRxTemplateWhereInputObjectSchema.optional(), cursor: LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([z.literal(true), LabRxTemplateCountAggregateInput_schema_1.LabRxTemplateCountAggregateInputObjectSchema]).optional() }).strict(); diff --git a/packages/db/shared/schemas/countSeleniumSettings.schema.js b/packages/db/shared/schemas/countSeleniumSettings.schema.js new file mode 100644 index 00000000..61cbc969 --- /dev/null +++ b/packages/db/shared/schemas/countSeleniumSettings.schema.js @@ -0,0 +1,43 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsCountZodSchema = exports.SeleniumSettingsCountSchema = void 0; +const z = __importStar(require("zod")); +const SeleniumSettingsOrderByWithRelationInput_schema_1 = require("./objects/SeleniumSettingsOrderByWithRelationInput.schema"); +const SeleniumSettingsWhereInput_schema_1 = require("./objects/SeleniumSettingsWhereInput.schema"); +const SeleniumSettingsWhereUniqueInput_schema_1 = require("./objects/SeleniumSettingsWhereUniqueInput.schema"); +const SeleniumSettingsCountAggregateInput_schema_1 = require("./objects/SeleniumSettingsCountAggregateInput.schema"); +exports.SeleniumSettingsCountSchema = z.object({ orderBy: z.union([SeleniumSettingsOrderByWithRelationInput_schema_1.SeleniumSettingsOrderByWithRelationInputObjectSchema, SeleniumSettingsOrderByWithRelationInput_schema_1.SeleniumSettingsOrderByWithRelationInputObjectSchema.array()]).optional(), where: SeleniumSettingsWhereInput_schema_1.SeleniumSettingsWhereInputObjectSchema.optional(), cursor: SeleniumSettingsWhereUniqueInput_schema_1.SeleniumSettingsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([z.literal(true), SeleniumSettingsCountAggregateInput_schema_1.SeleniumSettingsCountAggregateInputObjectSchema]).optional() }).strict(); +exports.SeleniumSettingsCountZodSchema = z.object({ orderBy: z.union([SeleniumSettingsOrderByWithRelationInput_schema_1.SeleniumSettingsOrderByWithRelationInputObjectSchema, SeleniumSettingsOrderByWithRelationInput_schema_1.SeleniumSettingsOrderByWithRelationInputObjectSchema.array()]).optional(), where: SeleniumSettingsWhereInput_schema_1.SeleniumSettingsWhereInputObjectSchema.optional(), cursor: SeleniumSettingsWhereUniqueInput_schema_1.SeleniumSettingsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([z.literal(true), SeleniumSettingsCountAggregateInput_schema_1.SeleniumSettingsCountAggregateInputObjectSchema]).optional() }).strict(); diff --git a/packages/db/shared/schemas/createManyAndReturnLabRxTemplate.schema.js b/packages/db/shared/schemas/createManyAndReturnLabRxTemplate.schema.js new file mode 100644 index 00000000..d7d53d0d --- /dev/null +++ b/packages/db/shared/schemas/createManyAndReturnLabRxTemplate.schema.js @@ -0,0 +1,41 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateCreateManyAndReturnZodSchema = exports.LabRxTemplateCreateManyAndReturnSchema = void 0; +const z = __importStar(require("zod")); +const LabRxTemplateSelect_schema_1 = require("./objects/LabRxTemplateSelect.schema"); +const LabRxTemplateCreateManyInput_schema_1 = require("./objects/LabRxTemplateCreateManyInput.schema"); +exports.LabRxTemplateCreateManyAndReturnSchema = z.object({ select: LabRxTemplateSelect_schema_1.LabRxTemplateSelectObjectSchema.optional(), data: z.union([LabRxTemplateCreateManyInput_schema_1.LabRxTemplateCreateManyInputObjectSchema, z.array(LabRxTemplateCreateManyInput_schema_1.LabRxTemplateCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict(); +exports.LabRxTemplateCreateManyAndReturnZodSchema = z.object({ select: LabRxTemplateSelect_schema_1.LabRxTemplateSelectObjectSchema.optional(), data: z.union([LabRxTemplateCreateManyInput_schema_1.LabRxTemplateCreateManyInputObjectSchema, z.array(LabRxTemplateCreateManyInput_schema_1.LabRxTemplateCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict(); diff --git a/packages/db/shared/schemas/createManyAndReturnSeleniumSettings.schema.js b/packages/db/shared/schemas/createManyAndReturnSeleniumSettings.schema.js new file mode 100644 index 00000000..fc02d57b --- /dev/null +++ b/packages/db/shared/schemas/createManyAndReturnSeleniumSettings.schema.js @@ -0,0 +1,41 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsCreateManyAndReturnZodSchema = exports.SeleniumSettingsCreateManyAndReturnSchema = void 0; +const z = __importStar(require("zod")); +const SeleniumSettingsSelect_schema_1 = require("./objects/SeleniumSettingsSelect.schema"); +const SeleniumSettingsCreateManyInput_schema_1 = require("./objects/SeleniumSettingsCreateManyInput.schema"); +exports.SeleniumSettingsCreateManyAndReturnSchema = z.object({ select: SeleniumSettingsSelect_schema_1.SeleniumSettingsSelectObjectSchema.optional(), data: z.union([SeleniumSettingsCreateManyInput_schema_1.SeleniumSettingsCreateManyInputObjectSchema, z.array(SeleniumSettingsCreateManyInput_schema_1.SeleniumSettingsCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict(); +exports.SeleniumSettingsCreateManyAndReturnZodSchema = z.object({ select: SeleniumSettingsSelect_schema_1.SeleniumSettingsSelectObjectSchema.optional(), data: z.union([SeleniumSettingsCreateManyInput_schema_1.SeleniumSettingsCreateManyInputObjectSchema, z.array(SeleniumSettingsCreateManyInput_schema_1.SeleniumSettingsCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict(); diff --git a/packages/db/shared/schemas/createManyLabRxTemplate.schema.js b/packages/db/shared/schemas/createManyLabRxTemplate.schema.js new file mode 100644 index 00000000..96910a9d --- /dev/null +++ b/packages/db/shared/schemas/createManyLabRxTemplate.schema.js @@ -0,0 +1,40 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateCreateManyZodSchema = exports.LabRxTemplateCreateManySchema = void 0; +const z = __importStar(require("zod")); +const LabRxTemplateCreateManyInput_schema_1 = require("./objects/LabRxTemplateCreateManyInput.schema"); +exports.LabRxTemplateCreateManySchema = z.object({ data: z.union([LabRxTemplateCreateManyInput_schema_1.LabRxTemplateCreateManyInputObjectSchema, z.array(LabRxTemplateCreateManyInput_schema_1.LabRxTemplateCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict(); +exports.LabRxTemplateCreateManyZodSchema = z.object({ data: z.union([LabRxTemplateCreateManyInput_schema_1.LabRxTemplateCreateManyInputObjectSchema, z.array(LabRxTemplateCreateManyInput_schema_1.LabRxTemplateCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict(); diff --git a/packages/db/shared/schemas/createManySeleniumSettings.schema.js b/packages/db/shared/schemas/createManySeleniumSettings.schema.js new file mode 100644 index 00000000..3998c485 --- /dev/null +++ b/packages/db/shared/schemas/createManySeleniumSettings.schema.js @@ -0,0 +1,40 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsCreateManyZodSchema = exports.SeleniumSettingsCreateManySchema = void 0; +const z = __importStar(require("zod")); +const SeleniumSettingsCreateManyInput_schema_1 = require("./objects/SeleniumSettingsCreateManyInput.schema"); +exports.SeleniumSettingsCreateManySchema = z.object({ data: z.union([SeleniumSettingsCreateManyInput_schema_1.SeleniumSettingsCreateManyInputObjectSchema, z.array(SeleniumSettingsCreateManyInput_schema_1.SeleniumSettingsCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict(); +exports.SeleniumSettingsCreateManyZodSchema = z.object({ data: z.union([SeleniumSettingsCreateManyInput_schema_1.SeleniumSettingsCreateManyInputObjectSchema, z.array(SeleniumSettingsCreateManyInput_schema_1.SeleniumSettingsCreateManyInputObjectSchema)]), skipDuplicates: z.boolean().optional() }).strict(); diff --git a/packages/db/shared/schemas/createOneLabRxTemplate.schema.js b/packages/db/shared/schemas/createOneLabRxTemplate.schema.js new file mode 100644 index 00000000..1875cc58 --- /dev/null +++ b/packages/db/shared/schemas/createOneLabRxTemplate.schema.js @@ -0,0 +1,43 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateCreateOneZodSchema = exports.LabRxTemplateCreateOneSchema = void 0; +const z = __importStar(require("zod")); +const LabRxTemplateSelect_schema_1 = require("./objects/LabRxTemplateSelect.schema"); +const LabRxTemplateInclude_schema_1 = require("./objects/LabRxTemplateInclude.schema"); +const LabRxTemplateCreateInput_schema_1 = require("./objects/LabRxTemplateCreateInput.schema"); +const LabRxTemplateUncheckedCreateInput_schema_1 = require("./objects/LabRxTemplateUncheckedCreateInput.schema"); +exports.LabRxTemplateCreateOneSchema = z.object({ select: LabRxTemplateSelect_schema_1.LabRxTemplateSelectObjectSchema.optional(), include: LabRxTemplateInclude_schema_1.LabRxTemplateIncludeObjectSchema.optional(), data: z.union([LabRxTemplateCreateInput_schema_1.LabRxTemplateCreateInputObjectSchema, LabRxTemplateUncheckedCreateInput_schema_1.LabRxTemplateUncheckedCreateInputObjectSchema]) }).strict(); +exports.LabRxTemplateCreateOneZodSchema = z.object({ select: LabRxTemplateSelect_schema_1.LabRxTemplateSelectObjectSchema.optional(), include: LabRxTemplateInclude_schema_1.LabRxTemplateIncludeObjectSchema.optional(), data: z.union([LabRxTemplateCreateInput_schema_1.LabRxTemplateCreateInputObjectSchema, LabRxTemplateUncheckedCreateInput_schema_1.LabRxTemplateUncheckedCreateInputObjectSchema]) }).strict(); diff --git a/packages/db/shared/schemas/createOneSeleniumSettings.schema.js b/packages/db/shared/schemas/createOneSeleniumSettings.schema.js new file mode 100644 index 00000000..88bb3c48 --- /dev/null +++ b/packages/db/shared/schemas/createOneSeleniumSettings.schema.js @@ -0,0 +1,43 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsCreateOneZodSchema = exports.SeleniumSettingsCreateOneSchema = void 0; +const z = __importStar(require("zod")); +const SeleniumSettingsSelect_schema_1 = require("./objects/SeleniumSettingsSelect.schema"); +const SeleniumSettingsInclude_schema_1 = require("./objects/SeleniumSettingsInclude.schema"); +const SeleniumSettingsCreateInput_schema_1 = require("./objects/SeleniumSettingsCreateInput.schema"); +const SeleniumSettingsUncheckedCreateInput_schema_1 = require("./objects/SeleniumSettingsUncheckedCreateInput.schema"); +exports.SeleniumSettingsCreateOneSchema = z.object({ select: SeleniumSettingsSelect_schema_1.SeleniumSettingsSelectObjectSchema.optional(), include: SeleniumSettingsInclude_schema_1.SeleniumSettingsIncludeObjectSchema.optional(), data: z.union([SeleniumSettingsCreateInput_schema_1.SeleniumSettingsCreateInputObjectSchema, SeleniumSettingsUncheckedCreateInput_schema_1.SeleniumSettingsUncheckedCreateInputObjectSchema]) }).strict(); +exports.SeleniumSettingsCreateOneZodSchema = z.object({ select: SeleniumSettingsSelect_schema_1.SeleniumSettingsSelectObjectSchema.optional(), include: SeleniumSettingsInclude_schema_1.SeleniumSettingsIncludeObjectSchema.optional(), data: z.union([SeleniumSettingsCreateInput_schema_1.SeleniumSettingsCreateInputObjectSchema, SeleniumSettingsUncheckedCreateInput_schema_1.SeleniumSettingsUncheckedCreateInputObjectSchema]) }).strict(); diff --git a/packages/db/shared/schemas/deleteManyLabRxTemplate.schema.js b/packages/db/shared/schemas/deleteManyLabRxTemplate.schema.js new file mode 100644 index 00000000..e8b706a6 --- /dev/null +++ b/packages/db/shared/schemas/deleteManyLabRxTemplate.schema.js @@ -0,0 +1,40 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateDeleteManyZodSchema = exports.LabRxTemplateDeleteManySchema = void 0; +const z = __importStar(require("zod")); +const LabRxTemplateWhereInput_schema_1 = require("./objects/LabRxTemplateWhereInput.schema"); +exports.LabRxTemplateDeleteManySchema = z.object({ where: LabRxTemplateWhereInput_schema_1.LabRxTemplateWhereInputObjectSchema.optional() }).strict(); +exports.LabRxTemplateDeleteManyZodSchema = z.object({ where: LabRxTemplateWhereInput_schema_1.LabRxTemplateWhereInputObjectSchema.optional() }).strict(); diff --git a/packages/db/shared/schemas/deleteManySeleniumSettings.schema.js b/packages/db/shared/schemas/deleteManySeleniumSettings.schema.js new file mode 100644 index 00000000..5735e740 --- /dev/null +++ b/packages/db/shared/schemas/deleteManySeleniumSettings.schema.js @@ -0,0 +1,40 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsDeleteManyZodSchema = exports.SeleniumSettingsDeleteManySchema = void 0; +const z = __importStar(require("zod")); +const SeleniumSettingsWhereInput_schema_1 = require("./objects/SeleniumSettingsWhereInput.schema"); +exports.SeleniumSettingsDeleteManySchema = z.object({ where: SeleniumSettingsWhereInput_schema_1.SeleniumSettingsWhereInputObjectSchema.optional() }).strict(); +exports.SeleniumSettingsDeleteManyZodSchema = z.object({ where: SeleniumSettingsWhereInput_schema_1.SeleniumSettingsWhereInputObjectSchema.optional() }).strict(); diff --git a/packages/db/shared/schemas/deleteOneLabRxTemplate.schema.js b/packages/db/shared/schemas/deleteOneLabRxTemplate.schema.js new file mode 100644 index 00000000..9fee9b2e --- /dev/null +++ b/packages/db/shared/schemas/deleteOneLabRxTemplate.schema.js @@ -0,0 +1,42 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateDeleteOneZodSchema = exports.LabRxTemplateDeleteOneSchema = void 0; +const z = __importStar(require("zod")); +const LabRxTemplateSelect_schema_1 = require("./objects/LabRxTemplateSelect.schema"); +const LabRxTemplateInclude_schema_1 = require("./objects/LabRxTemplateInclude.schema"); +const LabRxTemplateWhereUniqueInput_schema_1 = require("./objects/LabRxTemplateWhereUniqueInput.schema"); +exports.LabRxTemplateDeleteOneSchema = z.object({ select: LabRxTemplateSelect_schema_1.LabRxTemplateSelectObjectSchema.optional(), include: LabRxTemplateInclude_schema_1.LabRxTemplateIncludeObjectSchema.optional(), where: LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema }).strict(); +exports.LabRxTemplateDeleteOneZodSchema = z.object({ select: LabRxTemplateSelect_schema_1.LabRxTemplateSelectObjectSchema.optional(), include: LabRxTemplateInclude_schema_1.LabRxTemplateIncludeObjectSchema.optional(), where: LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema }).strict(); diff --git a/packages/db/shared/schemas/deleteOneSeleniumSettings.schema.js b/packages/db/shared/schemas/deleteOneSeleniumSettings.schema.js new file mode 100644 index 00000000..629a51fd --- /dev/null +++ b/packages/db/shared/schemas/deleteOneSeleniumSettings.schema.js @@ -0,0 +1,42 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsDeleteOneZodSchema = exports.SeleniumSettingsDeleteOneSchema = void 0; +const z = __importStar(require("zod")); +const SeleniumSettingsSelect_schema_1 = require("./objects/SeleniumSettingsSelect.schema"); +const SeleniumSettingsInclude_schema_1 = require("./objects/SeleniumSettingsInclude.schema"); +const SeleniumSettingsWhereUniqueInput_schema_1 = require("./objects/SeleniumSettingsWhereUniqueInput.schema"); +exports.SeleniumSettingsDeleteOneSchema = z.object({ select: SeleniumSettingsSelect_schema_1.SeleniumSettingsSelectObjectSchema.optional(), include: SeleniumSettingsInclude_schema_1.SeleniumSettingsIncludeObjectSchema.optional(), where: SeleniumSettingsWhereUniqueInput_schema_1.SeleniumSettingsWhereUniqueInputObjectSchema }).strict(); +exports.SeleniumSettingsDeleteOneZodSchema = z.object({ select: SeleniumSettingsSelect_schema_1.SeleniumSettingsSelectObjectSchema.optional(), include: SeleniumSettingsInclude_schema_1.SeleniumSettingsIncludeObjectSchema.optional(), where: SeleniumSettingsWhereUniqueInput_schema_1.SeleniumSettingsWhereUniqueInputObjectSchema }).strict(); diff --git a/packages/db/shared/schemas/enums/AppointmentScalarFieldEnum.schema.d.ts b/packages/db/shared/schemas/enums/AppointmentScalarFieldEnum.schema.d.ts index 7c9d1f38..f3ccc30c 100644 --- a/packages/db/shared/schemas/enums/AppointmentScalarFieldEnum.schema.d.ts +++ b/packages/db/shared/schemas/enums/AppointmentScalarFieldEnum.schema.d.ts @@ -1,4 +1,4 @@ import * as z from 'zod'; -export declare const AppointmentScalarFieldEnumSchema: z.ZodEnum<["id", "patientId", "userId", "staffId", "title", "date", "startTime", "endTime", "type", "notes", "procedureCodeNotes", "status", "createdAt", "eligibilityStatus"]>; +export declare const AppointmentScalarFieldEnumSchema: z.ZodEnum<["id", "patientId", "userId", "staffId", "npiProviderId", "title", "date", "startTime", "endTime", "type", "typeLocked", "notes", "procedureCodeNotes", "status", "movedByAi", "createdAt", "eligibilityStatus"]>; export type AppointmentScalarFieldEnum = z.infer; //# sourceMappingURL=AppointmentScalarFieldEnum.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/enums/AppointmentScalarFieldEnum.schema.d.ts.map b/packages/db/shared/schemas/enums/AppointmentScalarFieldEnum.schema.d.ts.map index 5af82429..94cf4ef2 100644 --- a/packages/db/shared/schemas/enums/AppointmentScalarFieldEnum.schema.d.ts.map +++ b/packages/db/shared/schemas/enums/AppointmentScalarFieldEnum.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"AppointmentScalarFieldEnum.schema.d.ts","sourceRoot":"","sources":["AppointmentScalarFieldEnum.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,gCAAgC,iLAA+K,CAAA;AAE5N,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gCAAgC,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"AppointmentScalarFieldEnum.schema.d.ts","sourceRoot":"","sources":["AppointmentScalarFieldEnum.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,gCAAgC,6NAA2N,CAAA;AAExQ,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gCAAgC,CAAC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/enums/AppointmentScalarFieldEnum.schema.js b/packages/db/shared/schemas/enums/AppointmentScalarFieldEnum.schema.js index 7a3fb628..5970db3e 100644 --- a/packages/db/shared/schemas/enums/AppointmentScalarFieldEnum.schema.js +++ b/packages/db/shared/schemas/enums/AppointmentScalarFieldEnum.schema.js @@ -35,4 +35,4 @@ var __importStar = (this && this.__importStar) || (function () { Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentScalarFieldEnumSchema = void 0; const z = __importStar(require("zod")); -exports.AppointmentScalarFieldEnumSchema = z.enum(['id', 'patientId', 'userId', 'staffId', 'title', 'date', 'startTime', 'endTime', 'type', 'typeLocked', 'notes', 'procedureCodeNotes', 'status', 'movedByAi', 'createdAt', 'eligibilityStatus']); +exports.AppointmentScalarFieldEnumSchema = z.enum(['id', 'patientId', 'userId', 'staffId', 'npiProviderId', 'title', 'date', 'startTime', 'endTime', 'type', 'typeLocked', 'notes', 'procedureCodeNotes', 'status', 'movedByAi', 'createdAt', 'eligibilityStatus']); diff --git a/packages/db/shared/schemas/enums/AppointmentScalarFieldEnum.schema.ts b/packages/db/shared/schemas/enums/AppointmentScalarFieldEnum.schema.ts index 5ae92dc5..91a18f19 100644 --- a/packages/db/shared/schemas/enums/AppointmentScalarFieldEnum.schema.ts +++ b/packages/db/shared/schemas/enums/AppointmentScalarFieldEnum.schema.ts @@ -1,5 +1,5 @@ import * as z from 'zod'; -export const AppointmentScalarFieldEnumSchema = z.enum(['id', 'patientId', 'userId', 'staffId', 'title', 'date', 'startTime', 'endTime', 'type', 'typeLocked', 'notes', 'procedureCodeNotes', 'status', 'movedByAi', 'createdAt', 'eligibilityStatus']) +export const AppointmentScalarFieldEnumSchema = z.enum(['id', 'patientId', 'userId', 'staffId', 'npiProviderId', 'title', 'date', 'startTime', 'endTime', 'type', 'typeLocked', 'notes', 'procedureCodeNotes', 'status', 'movedByAi', 'createdAt', 'eligibilityStatus']) export type AppointmentScalarFieldEnum = z.infer; \ No newline at end of file diff --git a/packages/db/shared/schemas/enums/ClaimScalarFieldEnum.schema.d.ts b/packages/db/shared/schemas/enums/ClaimScalarFieldEnum.schema.d.ts index a4749c22..ecb3f573 100644 --- a/packages/db/shared/schemas/enums/ClaimScalarFieldEnum.schema.d.ts +++ b/packages/db/shared/schemas/enums/ClaimScalarFieldEnum.schema.d.ts @@ -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", "npiProviderId"]>; +export declare const ClaimScalarFieldEnumSchema: z.ZodEnum<["id", "patientId", "appointmentId", "userId", "staffId", "patientName", "memberId", "dateOfBirth", "remarks", "missingTeethStatus", "missingTeeth", "serviceDate", "insuranceProvider", "createdAt", "updatedAt", "status", "claimNumber", "preAuthNumber", "npiProviderId"]>; export type ClaimScalarFieldEnum = z.infer; //# sourceMappingURL=ClaimScalarFieldEnum.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/enums/ClaimScalarFieldEnum.schema.d.ts.map b/packages/db/shared/schemas/enums/ClaimScalarFieldEnum.schema.d.ts.map index 9724b218..073c367a 100644 --- a/packages/db/shared/schemas/enums/ClaimScalarFieldEnum.schema.d.ts.map +++ b/packages/db/shared/schemas/enums/ClaimScalarFieldEnum.schema.d.ts.map @@ -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,yQAAuQ,CAAA;AAE9S,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC"} \ No newline at end of file +{"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,0RAAwR,CAAA;AAE/T,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/enums/ClaimStatus.schema.d.ts b/packages/db/shared/schemas/enums/ClaimStatus.schema.d.ts index 18678184..93d87954 100644 --- a/packages/db/shared/schemas/enums/ClaimStatus.schema.d.ts +++ b/packages/db/shared/schemas/enums/ClaimStatus.schema.d.ts @@ -1,4 +1,4 @@ import * as z from 'zod'; -export declare const ClaimStatusSchema: z.ZodEnum<["PENDING", "APPROVED", "CANCELLED", "REVIEW", "VOID"]>; +export declare const ClaimStatusSchema: z.ZodEnum<["PENDING", "APPROVED", "CANCELLED", "REVIEW", "VOID", "PREAUTH"]>; export type ClaimStatus = z.infer; //# sourceMappingURL=ClaimStatus.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/enums/ClaimStatus.schema.d.ts.map b/packages/db/shared/schemas/enums/ClaimStatus.schema.d.ts.map index 68a127ab..90abee77 100644 --- a/packages/db/shared/schemas/enums/ClaimStatus.schema.d.ts.map +++ b/packages/db/shared/schemas/enums/ClaimStatus.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ClaimStatus.schema.d.ts","sourceRoot":"","sources":["ClaimStatus.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,iBAAiB,mEAAiE,CAAA;AAE/F,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"ClaimStatus.schema.d.ts","sourceRoot":"","sources":["ClaimStatus.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,iBAAiB,8EAA4E,CAAA;AAE1G,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/enums/CloudFolderScalarFieldEnum.schema.d.ts b/packages/db/shared/schemas/enums/CloudFolderScalarFieldEnum.schema.d.ts index f4857bc7..a73970ed 100644 --- a/packages/db/shared/schemas/enums/CloudFolderScalarFieldEnum.schema.d.ts +++ b/packages/db/shared/schemas/enums/CloudFolderScalarFieldEnum.schema.d.ts @@ -1,4 +1,4 @@ import * as z from 'zod'; -export declare const CloudFolderScalarFieldEnumSchema: z.ZodEnum<["id", "userId", "name", "parentId", "createdAt", "updatedAt"]>; +export declare const CloudFolderScalarFieldEnumSchema: z.ZodEnum<["id", "userId", "name", "parentId", "patientId", "createdAt", "updatedAt"]>; export type CloudFolderScalarFieldEnum = z.infer; //# sourceMappingURL=CloudFolderScalarFieldEnum.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/enums/CloudFolderScalarFieldEnum.schema.d.ts.map b/packages/db/shared/schemas/enums/CloudFolderScalarFieldEnum.schema.d.ts.map index 36a72928..a7fc729f 100644 --- a/packages/db/shared/schemas/enums/CloudFolderScalarFieldEnum.schema.d.ts.map +++ b/packages/db/shared/schemas/enums/CloudFolderScalarFieldEnum.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"CloudFolderScalarFieldEnum.schema.d.ts","sourceRoot":"","sources":["CloudFolderScalarFieldEnum.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,gCAAgC,2EAAyE,CAAA;AAEtH,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gCAAgC,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"CloudFolderScalarFieldEnum.schema.d.ts","sourceRoot":"","sources":["CloudFolderScalarFieldEnum.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,gCAAgC,wFAAsF,CAAA;AAEnI,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gCAAgC,CAAC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/enums/LabRxTemplateScalarFieldEnum.schema.js b/packages/db/shared/schemas/enums/LabRxTemplateScalarFieldEnum.schema.js new file mode 100644 index 00000000..a476d066 --- /dev/null +++ b/packages/db/shared/schemas/enums/LabRxTemplateScalarFieldEnum.schema.js @@ -0,0 +1,38 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateScalarFieldEnumSchema = void 0; +const z = __importStar(require("zod")); +exports.LabRxTemplateScalarFieldEnumSchema = z.enum(['id', 'userId', 'name', 'labName', 'labPhone', 'labFax', 'labAddress', 'labAccount', 'caseType', 'material', 'instructions', 'sortOrder', 'createdAt', 'updatedAt']); diff --git a/packages/db/shared/schemas/enums/NpiProviderScalarFieldEnum.schema.d.ts b/packages/db/shared/schemas/enums/NpiProviderScalarFieldEnum.schema.d.ts index c33656c1..58211def 100644 --- a/packages/db/shared/schemas/enums/NpiProviderScalarFieldEnum.schema.d.ts +++ b/packages/db/shared/schemas/enums/NpiProviderScalarFieldEnum.schema.d.ts @@ -1,4 +1,4 @@ import * as z from 'zod'; -export declare const NpiProviderScalarFieldEnumSchema: z.ZodEnum<["id", "userId", "npiNumber", "providerName", "createdAt"]>; +export declare const NpiProviderScalarFieldEnumSchema: z.ZodEnum<["id", "userId", "npiNumber", "providerName", "sortOrder", "createdAt"]>; export type NpiProviderScalarFieldEnum = z.infer; //# sourceMappingURL=NpiProviderScalarFieldEnum.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/enums/NpiProviderScalarFieldEnum.schema.d.ts.map b/packages/db/shared/schemas/enums/NpiProviderScalarFieldEnum.schema.d.ts.map index 1bdc4617..fa02dbfc 100644 --- a/packages/db/shared/schemas/enums/NpiProviderScalarFieldEnum.schema.d.ts.map +++ b/packages/db/shared/schemas/enums/NpiProviderScalarFieldEnum.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"NpiProviderScalarFieldEnum.schema.d.ts","sourceRoot":"","sources":["NpiProviderScalarFieldEnum.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,gCAAgC,uEAAqE,CAAA;AAElH,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gCAAgC,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"NpiProviderScalarFieldEnum.schema.d.ts","sourceRoot":"","sources":["NpiProviderScalarFieldEnum.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,gCAAgC,oFAAkF,CAAA;AAE/H,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gCAAgC,CAAC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/enums/PatientScalarFieldEnum.schema.d.ts b/packages/db/shared/schemas/enums/PatientScalarFieldEnum.schema.d.ts index ce04ad71..d16cd19a 100644 --- a/packages/db/shared/schemas/enums/PatientScalarFieldEnum.schema.d.ts +++ b/packages/db/shared/schemas/enums/PatientScalarFieldEnum.schema.d.ts @@ -1,4 +1,4 @@ import * as z from 'zod'; -export declare const PatientScalarFieldEnumSchema: z.ZodEnum<["id", "firstName", "lastName", "dateOfBirth", "gender", "phone", "email", "address", "city", "zipCode", "insuranceProvider", "insuranceId", "groupNumber", "policyHolder", "allergies", "medicalConditions", "status", "userId", "createdAt"]>; +export declare const PatientScalarFieldEnumSchema: z.ZodEnum<["id", "firstName", "lastName", "dateOfBirth", "gender", "phone", "email", "address", "city", "zipCode", "insuranceProvider", "insuranceId", "groupNumber", "policyHolder", "allergies", "medicalConditions", "preferredLanguage", "status", "userId", "createdAt", "updatedAt"]>; export type PatientScalarFieldEnum = z.infer; //# sourceMappingURL=PatientScalarFieldEnum.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/enums/PatientScalarFieldEnum.schema.d.ts.map b/packages/db/shared/schemas/enums/PatientScalarFieldEnum.schema.d.ts.map index b260439d..baf26208 100644 --- a/packages/db/shared/schemas/enums/PatientScalarFieldEnum.schema.d.ts.map +++ b/packages/db/shared/schemas/enums/PatientScalarFieldEnum.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"PatientScalarFieldEnum.schema.d.ts","sourceRoot":"","sources":["PatientScalarFieldEnum.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,4BAA4B,2PAAyP,CAAA;AAElS,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"PatientScalarFieldEnum.schema.d.ts","sourceRoot":"","sources":["PatientScalarFieldEnum.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,4BAA4B,6RAA2R,CAAA;AAEpU,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/enums/PaymentScalarFieldEnum.schema.d.ts b/packages/db/shared/schemas/enums/PaymentScalarFieldEnum.schema.d.ts index 3ddafaf8..d4da1160 100644 --- a/packages/db/shared/schemas/enums/PaymentScalarFieldEnum.schema.d.ts +++ b/packages/db/shared/schemas/enums/PaymentScalarFieldEnum.schema.d.ts @@ -1,4 +1,4 @@ import * as z from 'zod'; -export declare const PaymentScalarFieldEnumSchema: z.ZodEnum<["id", "claimId", "patientId", "userId", "updatedById", "totalBilled", "totalPaid", "totalAdjusted", "totalDue", "status", "notes", "icn", "createdAt", "updatedAt"]>; +export declare const PaymentScalarFieldEnumSchema: z.ZodEnum<["id", "claimId", "patientId", "userId", "updatedById", "npiProviderId", "totalBilled", "totalPaid", "totalAdjusted", "totalDue", "mhPaidAmount", "copayment", "adjustment", "status", "notes", "icn", "createdAt", "updatedAt"]>; export type PaymentScalarFieldEnum = z.infer; //# sourceMappingURL=PaymentScalarFieldEnum.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/enums/PaymentScalarFieldEnum.schema.d.ts.map b/packages/db/shared/schemas/enums/PaymentScalarFieldEnum.schema.d.ts.map index 571f6e00..6af05152 100644 --- a/packages/db/shared/schemas/enums/PaymentScalarFieldEnum.schema.d.ts.map +++ b/packages/db/shared/schemas/enums/PaymentScalarFieldEnum.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"PaymentScalarFieldEnum.schema.d.ts","sourceRoot":"","sources":["PaymentScalarFieldEnum.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,4BAA4B,iLAA+K,CAAA;AAExN,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"PaymentScalarFieldEnum.schema.d.ts","sourceRoot":"","sources":["PaymentScalarFieldEnum.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,4BAA4B,6OAA2O,CAAA;AAEpR,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/enums/SeleniumSettingsScalarFieldEnum.schema.js b/packages/db/shared/schemas/enums/SeleniumSettingsScalarFieldEnum.schema.js new file mode 100644 index 00000000..c9cd4278 --- /dev/null +++ b/packages/db/shared/schemas/enums/SeleniumSettingsScalarFieldEnum.schema.js @@ -0,0 +1,38 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsScalarFieldEnumSchema = void 0; +const z = __importStar(require("zod")); +exports.SeleniumSettingsScalarFieldEnumSchema = z.enum(['id', 'userId', 'paymentGroupId']); diff --git a/packages/db/shared/schemas/enums/ServiceLineScalarFieldEnum.schema.d.ts b/packages/db/shared/schemas/enums/ServiceLineScalarFieldEnum.schema.d.ts index 3fb8e8e7..5a3987d7 100644 --- a/packages/db/shared/schemas/enums/ServiceLineScalarFieldEnum.schema.d.ts +++ b/packages/db/shared/schemas/enums/ServiceLineScalarFieldEnum.schema.d.ts @@ -1,4 +1,4 @@ import * as z from 'zod'; -export declare const ServiceLineScalarFieldEnumSchema: z.ZodEnum<["id", "claimId", "paymentId", "procedureCode", "procedureDate", "quad", "arch", "toothNumber", "toothSurface", "totalBilled", "totalPaid", "totalAdjusted", "totalDue", "status"]>; +export declare const ServiceLineScalarFieldEnumSchema: z.ZodEnum<["id", "claimId", "paymentId", "procedureCode", "procedureDate", "quad", "arch", "toothNumber", "toothSurface", "icn", "paidCode", "allowedAmount", "totalBilled", "totalPaid", "totalAdjusted", "totalDue", "status"]>; export type ServiceLineScalarFieldEnum = z.infer; //# sourceMappingURL=ServiceLineScalarFieldEnum.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/enums/ServiceLineScalarFieldEnum.schema.d.ts.map b/packages/db/shared/schemas/enums/ServiceLineScalarFieldEnum.schema.d.ts.map index ddc42a81..8965948a 100644 --- a/packages/db/shared/schemas/enums/ServiceLineScalarFieldEnum.schema.d.ts.map +++ b/packages/db/shared/schemas/enums/ServiceLineScalarFieldEnum.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ServiceLineScalarFieldEnum.schema.d.ts","sourceRoot":"","sources":["ServiceLineScalarFieldEnum.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,gCAAgC,+LAA6L,CAAA;AAE1O,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gCAAgC,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"ServiceLineScalarFieldEnum.schema.d.ts","sourceRoot":"","sources":["ServiceLineScalarFieldEnum.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,gCAAgC,mOAAiO,CAAA;AAE9Q,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gCAAgC,CAAC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/enums/UserScalarFieldEnum.schema.d.ts b/packages/db/shared/schemas/enums/UserScalarFieldEnum.schema.d.ts index 5e935aba..686ac409 100644 --- a/packages/db/shared/schemas/enums/UserScalarFieldEnum.schema.d.ts +++ b/packages/db/shared/schemas/enums/UserScalarFieldEnum.schema.d.ts @@ -1,4 +1,4 @@ import * as z from 'zod'; -export declare const UserScalarFieldEnumSchema: z.ZodEnum<["id", "username", "password", "autoBackupEnabled", "usbBackupEnabled"]>; +export declare const UserScalarFieldEnumSchema: z.ZodEnum<["id", "username", "password", "autoBackupEnabled", "autoBackupHour", "usbBackupEnabled", "usbBackupHour", "autoMhCheckEnabled", "autoMhCheckDayOfWeek", "autoMhCheckHour"]>; export type UserScalarFieldEnum = z.infer; //# sourceMappingURL=UserScalarFieldEnum.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/enums/UserScalarFieldEnum.schema.d.ts.map b/packages/db/shared/schemas/enums/UserScalarFieldEnum.schema.d.ts.map index eb35ae76..a706e286 100644 --- a/packages/db/shared/schemas/enums/UserScalarFieldEnum.schema.d.ts.map +++ b/packages/db/shared/schemas/enums/UserScalarFieldEnum.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"UserScalarFieldEnum.schema.d.ts","sourceRoot":"","sources":["UserScalarFieldEnum.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,yBAAyB,oFAAkF,CAAA;AAExH,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"UserScalarFieldEnum.schema.d.ts","sourceRoot":"","sources":["UserScalarFieldEnum.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,yBAAyB,wLAAsL,CAAA;AAE5N,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstAppointment.schema.d.ts b/packages/db/shared/schemas/findFirstAppointment.schema.d.ts index 3116bf3f..0193707f 100644 --- a/packages/db/shared/schemas/findFirstAppointment.schema.d.ts +++ b/packages/db/shared/schemas/findFirstAppointment.schema.d.ts @@ -6,21 +6,26 @@ export declare const AppointmentFindFirstSelectZodSchema: z.ZodObject<{ patientId: z.ZodOptional; userId: z.ZodOptional; staffId: z.ZodOptional; + npiProviderId: z.ZodOptional; title: z.ZodOptional; date: z.ZodOptional; startTime: z.ZodOptional; endTime: z.ZodOptional; type: z.ZodOptional; + typeLocked: z.ZodOptional; notes: z.ZodOptional; procedureCodeNotes: z.ZodOptional; status: z.ZodOptional; + movedByAi: z.ZodOptional; createdAt: z.ZodOptional; eligibilityStatus: z.ZodOptional; patient: z.ZodOptional; user: z.ZodOptional; staff: z.ZodOptional; + npiProvider: z.ZodOptional; procedures: z.ZodOptional; claims: z.ZodOptional; + files: z.ZodOptional; _count: z.ZodOptional; }, "strict", z.ZodTypeAny, { type?: boolean | undefined; @@ -31,17 +36,22 @@ export declare const AppointmentFindFirstSelectZodSchema: z.ZodObject<{ createdAt?: boolean | undefined; patientId?: boolean | undefined; patient?: boolean | undefined; + npiProviderId?: boolean | undefined; + npiProvider?: boolean | undefined; + userId?: boolean | undefined; + user?: boolean | undefined; startTime?: boolean | undefined; endTime?: boolean | undefined; + typeLocked?: boolean | undefined; notes?: boolean | undefined; procedureCodeNotes?: boolean | undefined; + movedByAi?: boolean | undefined; eligibilityStatus?: boolean | undefined; - user?: boolean | undefined; staff?: boolean | undefined; procedures?: boolean | undefined; - userId?: boolean | undefined; - staffId?: boolean | undefined; claims?: boolean | undefined; + files?: boolean | undefined; + staffId?: boolean | undefined; _count?: boolean | undefined; }, { type?: boolean | undefined; @@ -52,17 +62,22 @@ export declare const AppointmentFindFirstSelectZodSchema: z.ZodObject<{ createdAt?: boolean | undefined; patientId?: boolean | undefined; patient?: boolean | undefined; + npiProviderId?: boolean | undefined; + npiProvider?: boolean | undefined; + userId?: boolean | undefined; + user?: boolean | undefined; startTime?: boolean | undefined; endTime?: boolean | undefined; + typeLocked?: boolean | undefined; notes?: boolean | undefined; procedureCodeNotes?: boolean | undefined; + movedByAi?: boolean | undefined; eligibilityStatus?: boolean | undefined; - user?: boolean | undefined; staff?: boolean | undefined; procedures?: boolean | undefined; - userId?: boolean | undefined; - staffId?: boolean | undefined; claims?: boolean | undefined; + files?: boolean | undefined; + staffId?: boolean | undefined; _count?: boolean | undefined; }>; export declare const AppointmentFindFirstSchema: z.ZodType; @@ -74,7 +89,7 @@ export declare const AppointmentFindFirstZodSchema: z.ZodObject<{ cursor: z.ZodOptional>; take: z.ZodOptional; skip: z.ZodOptional; - distinct: z.ZodOptional, z.ZodArray, "many">]>>; + distinct: z.ZodOptional, z.ZodArray, "many">]>>; }, "strict", z.ZodTypeAny, { where?: Prisma.AppointmentWhereInput | undefined; include?: Prisma.AppointmentInclude | undefined; @@ -83,7 +98,7 @@ export declare const AppointmentFindFirstZodSchema: z.ZodObject<{ cursor?: Prisma.AppointmentWhereUniqueInput | undefined; take?: number | undefined; skip?: number | 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; + distinct?: "type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "npiProviderId" | "userId" | "startTime" | "endTime" | "typeLocked" | "notes" | "procedureCodeNotes" | "movedByAi" | "eligibilityStatus" | "staffId" | ("type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "npiProviderId" | "userId" | "startTime" | "endTime" | "typeLocked" | "notes" | "procedureCodeNotes" | "movedByAi" | "eligibilityStatus" | "staffId")[] | undefined; }, { where?: Prisma.AppointmentWhereInput | undefined; include?: Prisma.AppointmentInclude | undefined; @@ -92,6 +107,6 @@ export declare const AppointmentFindFirstZodSchema: z.ZodObject<{ cursor?: Prisma.AppointmentWhereUniqueInput | undefined; take?: number | undefined; skip?: number | 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; + distinct?: "type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "npiProviderId" | "userId" | "startTime" | "endTime" | "typeLocked" | "notes" | "procedureCodeNotes" | "movedByAi" | "eligibilityStatus" | "staffId" | ("type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "npiProviderId" | "userId" | "startTime" | "endTime" | "typeLocked" | "notes" | "procedureCodeNotes" | "movedByAi" | "eligibilityStatus" | "staffId")[] | undefined; }>; //# sourceMappingURL=findFirstAppointment.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstAppointment.schema.d.ts.map b/packages/db/shared/schemas/findFirstAppointment.schema.d.ts.map index 5f655fce..96b6b8b2 100644 --- a/packages/db/shared/schemas/findFirstAppointment.schema.d.ts.map +++ b/packages/db/shared/schemas/findFirstAppointment.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"findFirstAppointment.schema.d.ts","sourceRoot":"","sources":["findFirstAppointment.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,CAqBlB,CAAC;AAEhE,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqBnC,CAAC;AAEd,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,wBAAwB,CAAymB,CAAC;AAE5rB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA+iB,CAAC"} \ No newline at end of file +{"version":3,"file":"findFirstAppointment.schema.d.ts","sourceRoot":"","sources":["findFirstAppointment.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,CA0BlB,CAAC;AAEhE,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0BnC,CAAC;AAEd,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,wBAAwB,CAAymB,CAAC;AAE5rB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA+iB,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstAppointment.schema.js b/packages/db/shared/schemas/findFirstAppointment.schema.js index 92d8cb43..32d69be4 100644 --- a/packages/db/shared/schemas/findFirstAppointment.schema.js +++ b/packages/db/shared/schemas/findFirstAppointment.schema.js @@ -47,6 +47,7 @@ exports.AppointmentFindFirstSelectSchema = z.object({ patientId: z.boolean().optional(), userId: z.boolean().optional(), staffId: z.boolean().optional(), + npiProviderId: z.boolean().optional(), title: z.boolean().optional(), date: z.boolean().optional(), startTime: z.boolean().optional(), @@ -62,6 +63,7 @@ exports.AppointmentFindFirstSelectSchema = z.object({ patient: z.boolean().optional(), user: z.boolean().optional(), staff: z.boolean().optional(), + npiProvider: z.boolean().optional(), procedures: z.boolean().optional(), claims: z.boolean().optional(), files: z.boolean().optional(), @@ -72,6 +74,7 @@ exports.AppointmentFindFirstSelectZodSchema = z.object({ patientId: z.boolean().optional(), userId: z.boolean().optional(), staffId: z.boolean().optional(), + npiProviderId: z.boolean().optional(), title: z.boolean().optional(), date: z.boolean().optional(), startTime: z.boolean().optional(), @@ -87,6 +90,7 @@ exports.AppointmentFindFirstSelectZodSchema = z.object({ patient: z.boolean().optional(), user: z.boolean().optional(), staff: z.boolean().optional(), + npiProvider: z.boolean().optional(), procedures: z.boolean().optional(), claims: z.boolean().optional(), files: z.boolean().optional(), diff --git a/packages/db/shared/schemas/findFirstAppointment.schema.ts b/packages/db/shared/schemas/findFirstAppointment.schema.ts index 47883ec0..bba00b68 100644 --- a/packages/db/shared/schemas/findFirstAppointment.schema.ts +++ b/packages/db/shared/schemas/findFirstAppointment.schema.ts @@ -14,6 +14,7 @@ export const AppointmentFindFirstSelectSchema: z.ZodType; export declare const BackupDestinationFindFirstSchema: z.ZodType; diff --git a/packages/db/shared/schemas/findFirstClaim.schema.d.ts b/packages/db/shared/schemas/findFirstClaim.schema.d.ts index 19abf438..5ea384f9 100644 --- a/packages/db/shared/schemas/findFirstClaim.schema.d.ts +++ b/packages/db/shared/schemas/findFirstClaim.schema.d.ts @@ -19,6 +19,7 @@ export declare const ClaimFindFirstSelectZodSchema: z.ZodObject<{ updatedAt: z.ZodOptional; status: z.ZodOptional; claimNumber: z.ZodOptional; + preAuthNumber: z.ZodOptional; npiProviderId: z.ZodOptional; patient: z.ZodOptional; appointment: z.ZodOptional; @@ -39,9 +40,9 @@ export declare const ClaimFindFirstSelectZodSchema: z.ZodObject<{ appointmentId?: boolean | undefined; appointment?: boolean | undefined; npiProvider?: boolean | undefined; + userId?: boolean | undefined; user?: boolean | undefined; staff?: boolean | undefined; - userId?: boolean | undefined; staffId?: boolean | undefined; payment?: boolean | undefined; updatedAt?: boolean | undefined; @@ -55,6 +56,7 @@ export declare const ClaimFindFirstSelectZodSchema: z.ZodObject<{ serviceDate?: boolean | undefined; insuranceProvider?: boolean | undefined; claimNumber?: boolean | undefined; + preAuthNumber?: boolean | undefined; claimFiles?: boolean | undefined; _count?: boolean | undefined; }, { @@ -67,9 +69,9 @@ export declare const ClaimFindFirstSelectZodSchema: z.ZodObject<{ appointmentId?: boolean | undefined; appointment?: boolean | undefined; npiProvider?: boolean | undefined; + userId?: boolean | undefined; user?: boolean | undefined; staff?: boolean | undefined; - userId?: boolean | undefined; staffId?: boolean | undefined; payment?: boolean | undefined; updatedAt?: boolean | undefined; @@ -83,6 +85,7 @@ export declare const ClaimFindFirstSelectZodSchema: z.ZodObject<{ serviceDate?: boolean | undefined; insuranceProvider?: boolean | undefined; claimNumber?: boolean | undefined; + preAuthNumber?: boolean | undefined; claimFiles?: boolean | undefined; _count?: boolean | undefined; }>; @@ -95,7 +98,7 @@ export declare const ClaimFindFirstZodSchema: z.ZodObject<{ cursor: z.ZodOptional>; take: z.ZodOptional; skip: z.ZodOptional; - distinct: z.ZodOptional, z.ZodArray, "many">]>>; + distinct: z.ZodOptional, z.ZodArray, "many">]>>; }, "strict", z.ZodTypeAny, { where?: Prisma.ClaimWhereInput | undefined; include?: Prisma.ClaimInclude | undefined; @@ -104,7 +107,7 @@ export declare const ClaimFindFirstZodSchema: z.ZodObject<{ cursor?: Prisma.ClaimWhereUniqueInput | undefined; take?: number | undefined; skip?: number | 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; + distinct?: "status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber" | "preAuthNumber" | ("status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber" | "preAuthNumber")[] | undefined; }, { where?: Prisma.ClaimWhereInput | undefined; include?: Prisma.ClaimInclude | undefined; @@ -113,6 +116,6 @@ export declare const ClaimFindFirstZodSchema: z.ZodObject<{ cursor?: Prisma.ClaimWhereUniqueInput | undefined; take?: number | undefined; skip?: number | 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; + distinct?: "status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber" | "preAuthNumber" | ("status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber" | "preAuthNumber")[] | undefined; }>; //# sourceMappingURL=findFirstClaim.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstClaim.schema.d.ts.map b/packages/db/shared/schemas/findFirstClaim.schema.d.ts.map index 97f3c9f0..d32268e3 100644 --- a/packages/db/shared/schemas/findFirstClaim.schema.d.ts.map +++ b/packages/db/shared/schemas/findFirstClaim.schema.d.ts.map @@ -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,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"} \ No newline at end of file +{"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,CA6BZ,CAAC;AAE1D,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA6B7B,CAAC;AAEd,eAAO,MAAM,oBAAoB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,kBAAkB,CAAmjB,CAAC;AAE1nB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA+f,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstCloudFile.schema.d.ts b/packages/db/shared/schemas/findFirstCloudFile.schema.d.ts index ca6e0f36..45a5907e 100644 --- a/packages/db/shared/schemas/findFirstCloudFile.schema.d.ts +++ b/packages/db/shared/schemas/findFirstCloudFile.schema.d.ts @@ -20,8 +20,8 @@ export declare const CloudFileFindFirstSelectZodSchema: z.ZodObject<{ }, "strict", z.ZodTypeAny, { id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; name?: boolean | undefined; mimeType?: boolean | undefined; updatedAt?: boolean | undefined; @@ -36,8 +36,8 @@ export declare const CloudFileFindFirstSelectZodSchema: z.ZodObject<{ }, { id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; name?: boolean | undefined; mimeType?: boolean | undefined; updatedAt?: boolean | undefined; diff --git a/packages/db/shared/schemas/findFirstCloudFolder.schema.d.ts b/packages/db/shared/schemas/findFirstCloudFolder.schema.d.ts index 65213e7b..66041c3d 100644 --- a/packages/db/shared/schemas/findFirstCloudFolder.schema.d.ts +++ b/packages/db/shared/schemas/findFirstCloudFolder.schema.d.ts @@ -6,9 +6,11 @@ export declare const CloudFolderFindFirstSelectZodSchema: z.ZodObject<{ userId: z.ZodOptional; name: z.ZodOptional; parentId: z.ZodOptional; + patientId: z.ZodOptional; parent: z.ZodOptional; children: z.ZodOptional; user: z.ZodOptional; + patient: z.ZodOptional; files: z.ZodOptional; createdAt: z.ZodOptional; updatedAt: z.ZodOptional; @@ -16,24 +18,28 @@ export declare const CloudFolderFindFirstSelectZodSchema: z.ZodObject<{ }, "strict", z.ZodTypeAny, { id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; + patientId?: boolean | undefined; + patient?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; name?: boolean | undefined; + files?: boolean | undefined; updatedAt?: boolean | undefined; children?: boolean | undefined; - files?: boolean | undefined; parentId?: boolean | undefined; parent?: boolean | undefined; _count?: boolean | undefined; }, { id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; + patientId?: boolean | undefined; + patient?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; name?: boolean | undefined; + files?: boolean | undefined; updatedAt?: boolean | undefined; children?: boolean | undefined; - files?: boolean | undefined; parentId?: boolean | undefined; parent?: boolean | undefined; _count?: boolean | undefined; @@ -47,7 +53,7 @@ export declare const CloudFolderFindFirstZodSchema: z.ZodObject<{ cursor: z.ZodOptional>; take: z.ZodOptional; skip: z.ZodOptional; - distinct: z.ZodOptional, z.ZodArray, "many">]>>; + distinct: z.ZodOptional, z.ZodArray, "many">]>>; }, "strict", z.ZodTypeAny, { where?: Prisma.CloudFolderWhereInput | undefined; include?: Prisma.CloudFolderInclude | undefined; @@ -56,7 +62,7 @@ export declare const CloudFolderFindFirstZodSchema: z.ZodObject<{ cursor?: Prisma.CloudFolderWhereUniqueInput | undefined; take?: number | undefined; skip?: number | undefined; - distinct?: "id" | "createdAt" | "userId" | "name" | "updatedAt" | "parentId" | ("id" | "createdAt" | "userId" | "name" | "updatedAt" | "parentId")[] | undefined; + distinct?: "id" | "createdAt" | "patientId" | "userId" | "name" | "updatedAt" | "parentId" | ("id" | "createdAt" | "patientId" | "userId" | "name" | "updatedAt" | "parentId")[] | undefined; }, { where?: Prisma.CloudFolderWhereInput | undefined; include?: Prisma.CloudFolderInclude | undefined; @@ -65,6 +71,6 @@ export declare const CloudFolderFindFirstZodSchema: z.ZodObject<{ cursor?: Prisma.CloudFolderWhereUniqueInput | undefined; take?: number | undefined; skip?: number | undefined; - distinct?: "id" | "createdAt" | "userId" | "name" | "updatedAt" | "parentId" | ("id" | "createdAt" | "userId" | "name" | "updatedAt" | "parentId")[] | undefined; + distinct?: "id" | "createdAt" | "patientId" | "userId" | "name" | "updatedAt" | "parentId" | ("id" | "createdAt" | "patientId" | "userId" | "name" | "updatedAt" | "parentId")[] | undefined; }>; //# sourceMappingURL=findFirstCloudFolder.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstCloudFolder.schema.d.ts.map b/packages/db/shared/schemas/findFirstCloudFolder.schema.d.ts.map index 7013cd1c..8cf0bdd6 100644 --- a/packages/db/shared/schemas/findFirstCloudFolder.schema.d.ts.map +++ b/packages/db/shared/schemas/findFirstCloudFolder.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"findFirstCloudFolder.schema.d.ts","sourceRoot":"","sources":["findFirstCloudFolder.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,CAYlB,CAAC;AAEhE,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAYnC,CAAC;AAEd,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,wBAAwB,CAAymB,CAAC;AAE5rB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA+iB,CAAC"} \ No newline at end of file +{"version":3,"file":"findFirstCloudFolder.schema.d.ts","sourceRoot":"","sources":["findFirstCloudFolder.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,CAclB,CAAC;AAEhE,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAcnC,CAAC;AAEd,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,wBAAwB,CAAymB,CAAC;AAE5rB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA+iB,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstCommunication.schema.d.ts b/packages/db/shared/schemas/findFirstCommunication.schema.d.ts index 441d09b3..6be6329f 100644 --- a/packages/db/shared/schemas/findFirstCommunication.schema.d.ts +++ b/packages/db/shared/schemas/findFirstCommunication.schema.d.ts @@ -20,8 +20,8 @@ export declare const CommunicationFindFirstSelectZodSchema: z.ZodObject<{ createdAt?: boolean | undefined; patientId?: boolean | undefined; patient?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; channel?: boolean | undefined; direction?: boolean | undefined; body?: boolean | undefined; @@ -33,8 +33,8 @@ export declare const CommunicationFindFirstSelectZodSchema: z.ZodObject<{ createdAt?: boolean | undefined; patientId?: boolean | undefined; patient?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; channel?: boolean | undefined; direction?: boolean | undefined; body?: boolean | undefined; diff --git a/packages/db/shared/schemas/findFirstDatabaseBackup.schema.d.ts b/packages/db/shared/schemas/findFirstDatabaseBackup.schema.d.ts index dc1f094e..2b63606b 100644 --- a/packages/db/shared/schemas/findFirstDatabaseBackup.schema.d.ts +++ b/packages/db/shared/schemas/findFirstDatabaseBackup.schema.d.ts @@ -9,13 +9,13 @@ export declare const DatabaseBackupFindFirstSelectZodSchema: z.ZodObject<{ }, "strict", z.ZodTypeAny, { id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; }, { id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; }>; export declare const DatabaseBackupFindFirstSchema: z.ZodType; export declare const DatabaseBackupFindFirstZodSchema: z.ZodObject<{ diff --git a/packages/db/shared/schemas/findFirstInsuranceCredential.schema.d.ts b/packages/db/shared/schemas/findFirstInsuranceCredential.schema.d.ts index 766fb625..5f9853a3 100644 --- a/packages/db/shared/schemas/findFirstInsuranceCredential.schema.d.ts +++ b/packages/db/shared/schemas/findFirstInsuranceCredential.schema.d.ts @@ -10,18 +10,18 @@ export declare const InsuranceCredentialFindFirstSelectZodSchema: z.ZodObject<{ user: z.ZodOptional; }, "strict", z.ZodTypeAny, { id?: boolean | undefined; - user?: boolean | undefined; - userId?: boolean | undefined; siteKey?: boolean | undefined; username?: boolean | undefined; password?: boolean | undefined; + userId?: boolean | undefined; + user?: boolean | undefined; }, { id?: boolean | undefined; - user?: boolean | undefined; - userId?: boolean | undefined; siteKey?: boolean | undefined; username?: boolean | undefined; password?: boolean | undefined; + userId?: boolean | undefined; + user?: boolean | undefined; }>; export declare const InsuranceCredentialFindFirstSchema: z.ZodType; export declare const InsuranceCredentialFindFirstZodSchema: z.ZodObject<{ @@ -41,7 +41,7 @@ export declare const InsuranceCredentialFindFirstZodSchema: z.ZodObject<{ cursor?: Prisma.InsuranceCredentialWhereUniqueInput | undefined; take?: number | undefined; skip?: number | undefined; - distinct?: "id" | "userId" | "siteKey" | "username" | "password" | ("id" | "userId" | "siteKey" | "username" | "password")[] | undefined; + distinct?: "id" | "siteKey" | "username" | "password" | "userId" | ("id" | "siteKey" | "username" | "password" | "userId")[] | undefined; }, { where?: Prisma.InsuranceCredentialWhereInput | undefined; include?: Prisma.InsuranceCredentialInclude | undefined; @@ -50,6 +50,6 @@ export declare const InsuranceCredentialFindFirstZodSchema: z.ZodObject<{ cursor?: Prisma.InsuranceCredentialWhereUniqueInput | undefined; take?: number | undefined; skip?: number | undefined; - distinct?: "id" | "userId" | "siteKey" | "username" | "password" | ("id" | "userId" | "siteKey" | "username" | "password")[] | undefined; + distinct?: "id" | "siteKey" | "username" | "password" | "userId" | ("id" | "siteKey" | "username" | "password" | "userId")[] | undefined; }>; //# sourceMappingURL=findFirstInsuranceCredential.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstLabRxTemplate.schema.js b/packages/db/shared/schemas/findFirstLabRxTemplate.schema.js new file mode 100644 index 00000000..fafca3f9 --- /dev/null +++ b/packages/db/shared/schemas/findFirstLabRxTemplate.schema.js @@ -0,0 +1,80 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateFindFirstZodSchema = exports.LabRxTemplateFindFirstSchema = exports.LabRxTemplateFindFirstSelectZodSchema = exports.LabRxTemplateFindFirstSelectSchema = void 0; +const z = __importStar(require("zod")); +const LabRxTemplateInclude_schema_1 = require("./objects/LabRxTemplateInclude.schema"); +const LabRxTemplateOrderByWithRelationInput_schema_1 = require("./objects/LabRxTemplateOrderByWithRelationInput.schema"); +const LabRxTemplateWhereInput_schema_1 = require("./objects/LabRxTemplateWhereInput.schema"); +const LabRxTemplateWhereUniqueInput_schema_1 = require("./objects/LabRxTemplateWhereUniqueInput.schema"); +const LabRxTemplateScalarFieldEnum_schema_1 = require("./enums/LabRxTemplateScalarFieldEnum.schema"); +// Select schema needs to be in file to prevent circular imports +//------------------------------------------------------ +exports.LabRxTemplateFindFirstSelectSchema = z.object({ + id: z.boolean().optional(), + userId: z.boolean().optional(), + name: z.boolean().optional(), + labName: z.boolean().optional(), + labPhone: z.boolean().optional(), + labFax: z.boolean().optional(), + labAddress: z.boolean().optional(), + labAccount: z.boolean().optional(), + caseType: z.boolean().optional(), + material: z.boolean().optional(), + instructions: z.boolean().optional(), + sortOrder: z.boolean().optional(), + createdAt: z.boolean().optional(), + updatedAt: z.boolean().optional(), + user: z.boolean().optional() +}).strict(); +exports.LabRxTemplateFindFirstSelectZodSchema = z.object({ + id: z.boolean().optional(), + userId: z.boolean().optional(), + name: z.boolean().optional(), + labName: z.boolean().optional(), + labPhone: z.boolean().optional(), + labFax: z.boolean().optional(), + labAddress: z.boolean().optional(), + labAccount: z.boolean().optional(), + caseType: z.boolean().optional(), + material: z.boolean().optional(), + instructions: z.boolean().optional(), + sortOrder: z.boolean().optional(), + createdAt: z.boolean().optional(), + updatedAt: z.boolean().optional(), + user: z.boolean().optional() +}).strict(); +exports.LabRxTemplateFindFirstSchema = z.object({ select: exports.LabRxTemplateFindFirstSelectSchema.optional(), include: z.lazy(() => LabRxTemplateInclude_schema_1.LabRxTemplateIncludeObjectSchema.optional()), orderBy: z.union([LabRxTemplateOrderByWithRelationInput_schema_1.LabRxTemplateOrderByWithRelationInputObjectSchema, LabRxTemplateOrderByWithRelationInput_schema_1.LabRxTemplateOrderByWithRelationInputObjectSchema.array()]).optional(), where: LabRxTemplateWhereInput_schema_1.LabRxTemplateWhereInputObjectSchema.optional(), cursor: LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([LabRxTemplateScalarFieldEnum_schema_1.LabRxTemplateScalarFieldEnumSchema, LabRxTemplateScalarFieldEnum_schema_1.LabRxTemplateScalarFieldEnumSchema.array()]).optional() }).strict(); +exports.LabRxTemplateFindFirstZodSchema = z.object({ select: exports.LabRxTemplateFindFirstSelectSchema.optional(), include: z.lazy(() => LabRxTemplateInclude_schema_1.LabRxTemplateIncludeObjectSchema.optional()), orderBy: z.union([LabRxTemplateOrderByWithRelationInput_schema_1.LabRxTemplateOrderByWithRelationInputObjectSchema, LabRxTemplateOrderByWithRelationInput_schema_1.LabRxTemplateOrderByWithRelationInputObjectSchema.array()]).optional(), where: LabRxTemplateWhereInput_schema_1.LabRxTemplateWhereInputObjectSchema.optional(), cursor: LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([LabRxTemplateScalarFieldEnum_schema_1.LabRxTemplateScalarFieldEnumSchema, LabRxTemplateScalarFieldEnum_schema_1.LabRxTemplateScalarFieldEnumSchema.array()]).optional() }).strict(); diff --git a/packages/db/shared/schemas/findFirstNotification.schema.d.ts b/packages/db/shared/schemas/findFirstNotification.schema.d.ts index 7cd30930..7169a08d 100644 --- a/packages/db/shared/schemas/findFirstNotification.schema.d.ts +++ b/packages/db/shared/schemas/findFirstNotification.schema.d.ts @@ -14,16 +14,16 @@ export declare const NotificationFindFirstSelectZodSchema: z.ZodObject<{ type?: boolean | undefined; id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; read?: boolean | undefined; }, { message?: boolean | undefined; type?: boolean | undefined; id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; read?: boolean | undefined; }>; export declare const NotificationFindFirstSchema: z.ZodType; diff --git a/packages/db/shared/schemas/findFirstNpiProvider.schema.d.ts b/packages/db/shared/schemas/findFirstNpiProvider.schema.d.ts index b7ae8b4c..0ccefa78 100644 --- a/packages/db/shared/schemas/findFirstNpiProvider.schema.d.ts +++ b/packages/db/shared/schemas/findFirstNpiProvider.schema.d.ts @@ -6,30 +6,42 @@ export declare const NpiProviderFindFirstSelectZodSchema: z.ZodObject<{ userId: z.ZodOptional; npiNumber: z.ZodOptional; providerName: z.ZodOptional; + sortOrder: z.ZodOptional; createdAt: z.ZodOptional; user: z.ZodOptional; claims: z.ZodOptional; + payments: z.ZodOptional; + commissionBatches: z.ZodOptional; appointmentProcedures: z.ZodOptional; + appointments: z.ZodOptional; _count: z.ZodOptional; }, "strict", z.ZodTypeAny, { id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; + appointments?: boolean | undefined; claims?: boolean | undefined; npiNumber?: boolean | undefined; providerName?: boolean | undefined; + sortOrder?: boolean | undefined; + payments?: boolean | undefined; appointmentProcedures?: boolean | undefined; + commissionBatches?: boolean | undefined; _count?: boolean | undefined; }, { id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; + appointments?: boolean | undefined; claims?: boolean | undefined; npiNumber?: boolean | undefined; providerName?: boolean | undefined; + sortOrder?: boolean | undefined; + payments?: boolean | undefined; appointmentProcedures?: boolean | undefined; + commissionBatches?: boolean | undefined; _count?: boolean | undefined; }>; export declare const NpiProviderFindFirstSchema: z.ZodType; @@ -41,7 +53,7 @@ export declare const NpiProviderFindFirstZodSchema: z.ZodObject<{ cursor: z.ZodOptional>; take: z.ZodOptional; skip: z.ZodOptional; - distinct: z.ZodOptional, z.ZodArray, "many">]>>; + distinct: z.ZodOptional, z.ZodArray, "many">]>>; }, "strict", z.ZodTypeAny, { where?: Prisma.NpiProviderWhereInput | undefined; include?: Prisma.NpiProviderInclude | undefined; @@ -50,7 +62,7 @@ export declare const NpiProviderFindFirstZodSchema: z.ZodObject<{ cursor?: Prisma.NpiProviderWhereUniqueInput | undefined; take?: number | undefined; skip?: number | undefined; - distinct?: "id" | "createdAt" | "userId" | "npiNumber" | "providerName" | ("id" | "createdAt" | "userId" | "npiNumber" | "providerName")[] | undefined; + distinct?: "id" | "createdAt" | "userId" | "npiNumber" | "providerName" | "sortOrder" | ("id" | "createdAt" | "userId" | "npiNumber" | "providerName" | "sortOrder")[] | undefined; }, { where?: Prisma.NpiProviderWhereInput | undefined; include?: Prisma.NpiProviderInclude | undefined; @@ -59,6 +71,6 @@ export declare const NpiProviderFindFirstZodSchema: z.ZodObject<{ cursor?: Prisma.NpiProviderWhereUniqueInput | undefined; take?: number | undefined; skip?: number | undefined; - distinct?: "id" | "createdAt" | "userId" | "npiNumber" | "providerName" | ("id" | "createdAt" | "userId" | "npiNumber" | "providerName")[] | undefined; + distinct?: "id" | "createdAt" | "userId" | "npiNumber" | "providerName" | "sortOrder" | ("id" | "createdAt" | "userId" | "npiNumber" | "providerName" | "sortOrder")[] | undefined; }>; //# sourceMappingURL=findFirstNpiProvider.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstNpiProvider.schema.d.ts.map b/packages/db/shared/schemas/findFirstNpiProvider.schema.d.ts.map index d03db023..e254c55f 100644 --- a/packages/db/shared/schemas/findFirstNpiProvider.schema.d.ts.map +++ b/packages/db/shared/schemas/findFirstNpiProvider.schema.d.ts.map @@ -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,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"} \ No newline at end of file +{"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,CAclB,CAAC;AAEhE,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAcnC,CAAC;AAEd,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,wBAAwB,CAAymB,CAAC;AAE5rB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA+iB,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstNpiProvider.schema.js b/packages/db/shared/schemas/findFirstNpiProvider.schema.js index 0a755722..bd6a86f0 100644 --- a/packages/db/shared/schemas/findFirstNpiProvider.schema.js +++ b/packages/db/shared/schemas/findFirstNpiProvider.schema.js @@ -54,6 +54,7 @@ exports.NpiProviderFindFirstSelectSchema = z.object({ payments: z.boolean().optional(), commissionBatches: z.boolean().optional(), appointmentProcedures: z.boolean().optional(), + appointments: z.boolean().optional(), _count: z.boolean().optional() }).strict(); exports.NpiProviderFindFirstSelectZodSchema = z.object({ @@ -68,6 +69,7 @@ exports.NpiProviderFindFirstSelectZodSchema = z.object({ payments: z.boolean().optional(), commissionBatches: z.boolean().optional(), appointmentProcedures: z.boolean().optional(), + appointments: 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(); diff --git a/packages/db/shared/schemas/findFirstNpiProvider.schema.ts b/packages/db/shared/schemas/findFirstNpiProvider.schema.ts index 7d43394a..adf04633 100644 --- a/packages/db/shared/schemas/findFirstNpiProvider.schema.ts +++ b/packages/db/shared/schemas/findFirstNpiProvider.schema.ts @@ -21,6 +21,7 @@ export const NpiProviderFindFirstSelectSchema: z.ZodType; @@ -36,6 +37,7 @@ export const NpiProviderFindFirstSelectZodSchema = z.object({ payments: z.boolean().optional(), commissionBatches: z.boolean().optional(), appointmentProcedures: z.boolean().optional(), + appointments: z.boolean().optional(), _count: z.boolean().optional() }).strict(); diff --git a/packages/db/shared/schemas/findFirstOrThrowAppointment.schema.d.ts b/packages/db/shared/schemas/findFirstOrThrowAppointment.schema.d.ts index f7f47161..a4b3593a 100644 --- a/packages/db/shared/schemas/findFirstOrThrowAppointment.schema.d.ts +++ b/packages/db/shared/schemas/findFirstOrThrowAppointment.schema.d.ts @@ -6,21 +6,26 @@ export declare const AppointmentFindFirstOrThrowSelectZodSchema: z.ZodObject<{ patientId: z.ZodOptional; userId: z.ZodOptional; staffId: z.ZodOptional; + npiProviderId: z.ZodOptional; title: z.ZodOptional; date: z.ZodOptional; startTime: z.ZodOptional; endTime: z.ZodOptional; type: z.ZodOptional; + typeLocked: z.ZodOptional; notes: z.ZodOptional; procedureCodeNotes: z.ZodOptional; status: z.ZodOptional; + movedByAi: z.ZodOptional; createdAt: z.ZodOptional; eligibilityStatus: z.ZodOptional; patient: z.ZodOptional; user: z.ZodOptional; staff: z.ZodOptional; + npiProvider: z.ZodOptional; procedures: z.ZodOptional; claims: z.ZodOptional; + files: z.ZodOptional; _count: z.ZodOptional; }, "strict", z.ZodTypeAny, { type?: boolean | undefined; @@ -31,17 +36,22 @@ export declare const AppointmentFindFirstOrThrowSelectZodSchema: z.ZodObject<{ createdAt?: boolean | undefined; patientId?: boolean | undefined; patient?: boolean | undefined; + npiProviderId?: boolean | undefined; + npiProvider?: boolean | undefined; + userId?: boolean | undefined; + user?: boolean | undefined; startTime?: boolean | undefined; endTime?: boolean | undefined; + typeLocked?: boolean | undefined; notes?: boolean | undefined; procedureCodeNotes?: boolean | undefined; + movedByAi?: boolean | undefined; eligibilityStatus?: boolean | undefined; - user?: boolean | undefined; staff?: boolean | undefined; procedures?: boolean | undefined; - userId?: boolean | undefined; - staffId?: boolean | undefined; claims?: boolean | undefined; + files?: boolean | undefined; + staffId?: boolean | undefined; _count?: boolean | undefined; }, { type?: boolean | undefined; @@ -52,17 +62,22 @@ export declare const AppointmentFindFirstOrThrowSelectZodSchema: z.ZodObject<{ createdAt?: boolean | undefined; patientId?: boolean | undefined; patient?: boolean | undefined; + npiProviderId?: boolean | undefined; + npiProvider?: boolean | undefined; + userId?: boolean | undefined; + user?: boolean | undefined; startTime?: boolean | undefined; endTime?: boolean | undefined; + typeLocked?: boolean | undefined; notes?: boolean | undefined; procedureCodeNotes?: boolean | undefined; + movedByAi?: boolean | undefined; eligibilityStatus?: boolean | undefined; - user?: boolean | undefined; staff?: boolean | undefined; procedures?: boolean | undefined; - userId?: boolean | undefined; - staffId?: boolean | undefined; claims?: boolean | undefined; + files?: boolean | undefined; + staffId?: boolean | undefined; _count?: boolean | undefined; }>; export declare const AppointmentFindFirstOrThrowSchema: z.ZodType; @@ -74,7 +89,7 @@ export declare const AppointmentFindFirstOrThrowZodSchema: z.ZodObject<{ cursor: z.ZodOptional>; take: z.ZodOptional; skip: z.ZodOptional; - distinct: z.ZodOptional, z.ZodArray, "many">]>>; + distinct: z.ZodOptional, z.ZodArray, "many">]>>; }, "strict", z.ZodTypeAny, { where?: Prisma.AppointmentWhereInput | undefined; include?: Prisma.AppointmentInclude | undefined; @@ -83,7 +98,7 @@ export declare const AppointmentFindFirstOrThrowZodSchema: z.ZodObject<{ cursor?: Prisma.AppointmentWhereUniqueInput | undefined; take?: number | undefined; skip?: number | 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; + distinct?: "type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "npiProviderId" | "userId" | "startTime" | "endTime" | "typeLocked" | "notes" | "procedureCodeNotes" | "movedByAi" | "eligibilityStatus" | "staffId" | ("type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "npiProviderId" | "userId" | "startTime" | "endTime" | "typeLocked" | "notes" | "procedureCodeNotes" | "movedByAi" | "eligibilityStatus" | "staffId")[] | undefined; }, { where?: Prisma.AppointmentWhereInput | undefined; include?: Prisma.AppointmentInclude | undefined; @@ -92,6 +107,6 @@ export declare const AppointmentFindFirstOrThrowZodSchema: z.ZodObject<{ cursor?: Prisma.AppointmentWhereUniqueInput | undefined; take?: number | undefined; skip?: number | 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; + distinct?: "type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "npiProviderId" | "userId" | "startTime" | "endTime" | "typeLocked" | "notes" | "procedureCodeNotes" | "movedByAi" | "eligibilityStatus" | "staffId" | ("type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "npiProviderId" | "userId" | "startTime" | "endTime" | "typeLocked" | "notes" | "procedureCodeNotes" | "movedByAi" | "eligibilityStatus" | "staffId")[] | undefined; }>; //# sourceMappingURL=findFirstOrThrowAppointment.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstOrThrowAppointment.schema.d.ts.map b/packages/db/shared/schemas/findFirstOrThrowAppointment.schema.d.ts.map index 11d1135f..92b5e383 100644 --- a/packages/db/shared/schemas/findFirstOrThrowAppointment.schema.d.ts.map +++ b/packages/db/shared/schemas/findFirstOrThrowAppointment.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"findFirstOrThrowAppointment.schema.d.ts","sourceRoot":"","sources":["findFirstOrThrowAppointment.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,CAqBzB,CAAC;AAEhE,eAAO,MAAM,0CAA0C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqB1C,CAAC;AAEd,eAAO,MAAM,iCAAiC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,+BAA+B,CAAunB,CAAC;AAExtB,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAsjB,CAAC"} \ No newline at end of file +{"version":3,"file":"findFirstOrThrowAppointment.schema.d.ts","sourceRoot":"","sources":["findFirstOrThrowAppointment.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,CA0BzB,CAAC;AAEhE,eAAO,MAAM,0CAA0C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0B1C,CAAC;AAEd,eAAO,MAAM,iCAAiC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,+BAA+B,CAAunB,CAAC;AAExtB,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAsjB,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstOrThrowAppointment.schema.js b/packages/db/shared/schemas/findFirstOrThrowAppointment.schema.js index cb90634c..c53d5566 100644 --- a/packages/db/shared/schemas/findFirstOrThrowAppointment.schema.js +++ b/packages/db/shared/schemas/findFirstOrThrowAppointment.schema.js @@ -47,6 +47,7 @@ exports.AppointmentFindFirstOrThrowSelectSchema = z.object({ patientId: z.boolean().optional(), userId: z.boolean().optional(), staffId: z.boolean().optional(), + npiProviderId: z.boolean().optional(), title: z.boolean().optional(), date: z.boolean().optional(), startTime: z.boolean().optional(), @@ -62,6 +63,7 @@ exports.AppointmentFindFirstOrThrowSelectSchema = z.object({ patient: z.boolean().optional(), user: z.boolean().optional(), staff: z.boolean().optional(), + npiProvider: z.boolean().optional(), procedures: z.boolean().optional(), claims: z.boolean().optional(), files: z.boolean().optional(), @@ -72,6 +74,7 @@ exports.AppointmentFindFirstOrThrowSelectZodSchema = z.object({ patientId: z.boolean().optional(), userId: z.boolean().optional(), staffId: z.boolean().optional(), + npiProviderId: z.boolean().optional(), title: z.boolean().optional(), date: z.boolean().optional(), startTime: z.boolean().optional(), @@ -87,6 +90,7 @@ exports.AppointmentFindFirstOrThrowSelectZodSchema = z.object({ patient: z.boolean().optional(), user: z.boolean().optional(), staff: z.boolean().optional(), + npiProvider: z.boolean().optional(), procedures: z.boolean().optional(), claims: z.boolean().optional(), files: z.boolean().optional(), diff --git a/packages/db/shared/schemas/findFirstOrThrowAppointment.schema.ts b/packages/db/shared/schemas/findFirstOrThrowAppointment.schema.ts index 9939566e..8322f0ff 100644 --- a/packages/db/shared/schemas/findFirstOrThrowAppointment.schema.ts +++ b/packages/db/shared/schemas/findFirstOrThrowAppointment.schema.ts @@ -14,6 +14,7 @@ export const AppointmentFindFirstOrThrowSelectSchema: z.ZodType; export declare const BackupDestinationFindFirstOrThrowSchema: z.ZodType; diff --git a/packages/db/shared/schemas/findFirstOrThrowClaim.schema.d.ts b/packages/db/shared/schemas/findFirstOrThrowClaim.schema.d.ts index 9e23a5f2..785f97fa 100644 --- a/packages/db/shared/schemas/findFirstOrThrowClaim.schema.d.ts +++ b/packages/db/shared/schemas/findFirstOrThrowClaim.schema.d.ts @@ -19,6 +19,7 @@ export declare const ClaimFindFirstOrThrowSelectZodSchema: z.ZodObject<{ updatedAt: z.ZodOptional; status: z.ZodOptional; claimNumber: z.ZodOptional; + preAuthNumber: z.ZodOptional; npiProviderId: z.ZodOptional; patient: z.ZodOptional; appointment: z.ZodOptional; @@ -39,9 +40,9 @@ export declare const ClaimFindFirstOrThrowSelectZodSchema: z.ZodObject<{ appointmentId?: boolean | undefined; appointment?: boolean | undefined; npiProvider?: boolean | undefined; + userId?: boolean | undefined; user?: boolean | undefined; staff?: boolean | undefined; - userId?: boolean | undefined; staffId?: boolean | undefined; payment?: boolean | undefined; updatedAt?: boolean | undefined; @@ -55,6 +56,7 @@ export declare const ClaimFindFirstOrThrowSelectZodSchema: z.ZodObject<{ serviceDate?: boolean | undefined; insuranceProvider?: boolean | undefined; claimNumber?: boolean | undefined; + preAuthNumber?: boolean | undefined; claimFiles?: boolean | undefined; _count?: boolean | undefined; }, { @@ -67,9 +69,9 @@ export declare const ClaimFindFirstOrThrowSelectZodSchema: z.ZodObject<{ appointmentId?: boolean | undefined; appointment?: boolean | undefined; npiProvider?: boolean | undefined; + userId?: boolean | undefined; user?: boolean | undefined; staff?: boolean | undefined; - userId?: boolean | undefined; staffId?: boolean | undefined; payment?: boolean | undefined; updatedAt?: boolean | undefined; @@ -83,6 +85,7 @@ export declare const ClaimFindFirstOrThrowSelectZodSchema: z.ZodObject<{ serviceDate?: boolean | undefined; insuranceProvider?: boolean | undefined; claimNumber?: boolean | undefined; + preAuthNumber?: boolean | undefined; claimFiles?: boolean | undefined; _count?: boolean | undefined; }>; @@ -95,7 +98,7 @@ export declare const ClaimFindFirstOrThrowZodSchema: z.ZodObject<{ cursor: z.ZodOptional>; take: z.ZodOptional; skip: z.ZodOptional; - distinct: z.ZodOptional, z.ZodArray, "many">]>>; + distinct: z.ZodOptional, z.ZodArray, "many">]>>; }, "strict", z.ZodTypeAny, { where?: Prisma.ClaimWhereInput | undefined; include?: Prisma.ClaimInclude | undefined; @@ -104,7 +107,7 @@ export declare const ClaimFindFirstOrThrowZodSchema: z.ZodObject<{ cursor?: Prisma.ClaimWhereUniqueInput | undefined; take?: number | undefined; skip?: number | 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; + distinct?: "status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber" | "preAuthNumber" | ("status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber" | "preAuthNumber")[] | undefined; }, { where?: Prisma.ClaimWhereInput | undefined; include?: Prisma.ClaimInclude | undefined; @@ -113,6 +116,6 @@ export declare const ClaimFindFirstOrThrowZodSchema: z.ZodObject<{ cursor?: Prisma.ClaimWhereUniqueInput | undefined; take?: number | undefined; skip?: number | 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; + distinct?: "status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber" | "preAuthNumber" | ("status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber" | "preAuthNumber")[] | undefined; }>; //# sourceMappingURL=findFirstOrThrowClaim.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstOrThrowClaim.schema.d.ts.map b/packages/db/shared/schemas/findFirstOrThrowClaim.schema.d.ts.map index 8aa37d76..7441aedb 100644 --- a/packages/db/shared/schemas/findFirstOrThrowClaim.schema.d.ts.map +++ b/packages/db/shared/schemas/findFirstOrThrowClaim.schema.d.ts.map @@ -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,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"} \ No newline at end of file +{"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,CA6BnB,CAAC;AAE1D,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA6BpC,CAAC;AAEd,eAAO,MAAM,2BAA2B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,yBAAyB,CAAikB,CAAC;AAEtpB,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAsgB,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstOrThrowCloudFile.schema.d.ts b/packages/db/shared/schemas/findFirstOrThrowCloudFile.schema.d.ts index 81d210c3..c4a2ba2a 100644 --- a/packages/db/shared/schemas/findFirstOrThrowCloudFile.schema.d.ts +++ b/packages/db/shared/schemas/findFirstOrThrowCloudFile.schema.d.ts @@ -20,8 +20,8 @@ export declare const CloudFileFindFirstOrThrowSelectZodSchema: z.ZodObject<{ }, "strict", z.ZodTypeAny, { id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; name?: boolean | undefined; mimeType?: boolean | undefined; updatedAt?: boolean | undefined; @@ -36,8 +36,8 @@ export declare const CloudFileFindFirstOrThrowSelectZodSchema: z.ZodObject<{ }, { id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; name?: boolean | undefined; mimeType?: boolean | undefined; updatedAt?: boolean | undefined; diff --git a/packages/db/shared/schemas/findFirstOrThrowCloudFolder.schema.d.ts b/packages/db/shared/schemas/findFirstOrThrowCloudFolder.schema.d.ts index 1899d940..0ef424eb 100644 --- a/packages/db/shared/schemas/findFirstOrThrowCloudFolder.schema.d.ts +++ b/packages/db/shared/schemas/findFirstOrThrowCloudFolder.schema.d.ts @@ -6,9 +6,11 @@ export declare const CloudFolderFindFirstOrThrowSelectZodSchema: z.ZodObject<{ userId: z.ZodOptional; name: z.ZodOptional; parentId: z.ZodOptional; + patientId: z.ZodOptional; parent: z.ZodOptional; children: z.ZodOptional; user: z.ZodOptional; + patient: z.ZodOptional; files: z.ZodOptional; createdAt: z.ZodOptional; updatedAt: z.ZodOptional; @@ -16,24 +18,28 @@ export declare const CloudFolderFindFirstOrThrowSelectZodSchema: z.ZodObject<{ }, "strict", z.ZodTypeAny, { id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; + patientId?: boolean | undefined; + patient?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; name?: boolean | undefined; + files?: boolean | undefined; updatedAt?: boolean | undefined; children?: boolean | undefined; - files?: boolean | undefined; parentId?: boolean | undefined; parent?: boolean | undefined; _count?: boolean | undefined; }, { id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; + patientId?: boolean | undefined; + patient?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; name?: boolean | undefined; + files?: boolean | undefined; updatedAt?: boolean | undefined; children?: boolean | undefined; - files?: boolean | undefined; parentId?: boolean | undefined; parent?: boolean | undefined; _count?: boolean | undefined; @@ -47,7 +53,7 @@ export declare const CloudFolderFindFirstOrThrowZodSchema: z.ZodObject<{ cursor: z.ZodOptional>; take: z.ZodOptional; skip: z.ZodOptional; - distinct: z.ZodOptional, z.ZodArray, "many">]>>; + distinct: z.ZodOptional, z.ZodArray, "many">]>>; }, "strict", z.ZodTypeAny, { where?: Prisma.CloudFolderWhereInput | undefined; include?: Prisma.CloudFolderInclude | undefined; @@ -56,7 +62,7 @@ export declare const CloudFolderFindFirstOrThrowZodSchema: z.ZodObject<{ cursor?: Prisma.CloudFolderWhereUniqueInput | undefined; take?: number | undefined; skip?: number | undefined; - distinct?: "id" | "createdAt" | "userId" | "name" | "updatedAt" | "parentId" | ("id" | "createdAt" | "userId" | "name" | "updatedAt" | "parentId")[] | undefined; + distinct?: "id" | "createdAt" | "patientId" | "userId" | "name" | "updatedAt" | "parentId" | ("id" | "createdAt" | "patientId" | "userId" | "name" | "updatedAt" | "parentId")[] | undefined; }, { where?: Prisma.CloudFolderWhereInput | undefined; include?: Prisma.CloudFolderInclude | undefined; @@ -65,6 +71,6 @@ export declare const CloudFolderFindFirstOrThrowZodSchema: z.ZodObject<{ cursor?: Prisma.CloudFolderWhereUniqueInput | undefined; take?: number | undefined; skip?: number | undefined; - distinct?: "id" | "createdAt" | "userId" | "name" | "updatedAt" | "parentId" | ("id" | "createdAt" | "userId" | "name" | "updatedAt" | "parentId")[] | undefined; + distinct?: "id" | "createdAt" | "patientId" | "userId" | "name" | "updatedAt" | "parentId" | ("id" | "createdAt" | "patientId" | "userId" | "name" | "updatedAt" | "parentId")[] | undefined; }>; //# sourceMappingURL=findFirstOrThrowCloudFolder.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstOrThrowCloudFolder.schema.d.ts.map b/packages/db/shared/schemas/findFirstOrThrowCloudFolder.schema.d.ts.map index 3bc92dfe..70f5af02 100644 --- a/packages/db/shared/schemas/findFirstOrThrowCloudFolder.schema.d.ts.map +++ b/packages/db/shared/schemas/findFirstOrThrowCloudFolder.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"findFirstOrThrowCloudFolder.schema.d.ts","sourceRoot":"","sources":["findFirstOrThrowCloudFolder.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,CAYzB,CAAC;AAEhE,eAAO,MAAM,0CAA0C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAY1C,CAAC;AAEd,eAAO,MAAM,iCAAiC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,+BAA+B,CAAunB,CAAC;AAExtB,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAsjB,CAAC"} \ No newline at end of file +{"version":3,"file":"findFirstOrThrowCloudFolder.schema.d.ts","sourceRoot":"","sources":["findFirstOrThrowCloudFolder.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,CAczB,CAAC;AAEhE,eAAO,MAAM,0CAA0C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAc1C,CAAC;AAEd,eAAO,MAAM,iCAAiC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,+BAA+B,CAAunB,CAAC;AAExtB,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAsjB,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstOrThrowCommunication.schema.d.ts b/packages/db/shared/schemas/findFirstOrThrowCommunication.schema.d.ts index 713b4b7e..c819dbea 100644 --- a/packages/db/shared/schemas/findFirstOrThrowCommunication.schema.d.ts +++ b/packages/db/shared/schemas/findFirstOrThrowCommunication.schema.d.ts @@ -20,8 +20,8 @@ export declare const CommunicationFindFirstOrThrowSelectZodSchema: z.ZodObject<{ createdAt?: boolean | undefined; patientId?: boolean | undefined; patient?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; channel?: boolean | undefined; direction?: boolean | undefined; body?: boolean | undefined; @@ -33,8 +33,8 @@ export declare const CommunicationFindFirstOrThrowSelectZodSchema: z.ZodObject<{ createdAt?: boolean | undefined; patientId?: boolean | undefined; patient?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; channel?: boolean | undefined; direction?: boolean | undefined; body?: boolean | undefined; diff --git a/packages/db/shared/schemas/findFirstOrThrowDatabaseBackup.schema.d.ts b/packages/db/shared/schemas/findFirstOrThrowDatabaseBackup.schema.d.ts index 61c159e4..77b3efb3 100644 --- a/packages/db/shared/schemas/findFirstOrThrowDatabaseBackup.schema.d.ts +++ b/packages/db/shared/schemas/findFirstOrThrowDatabaseBackup.schema.d.ts @@ -9,13 +9,13 @@ export declare const DatabaseBackupFindFirstOrThrowSelectZodSchema: z.ZodObject< }, "strict", z.ZodTypeAny, { id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; }, { id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; }>; export declare const DatabaseBackupFindFirstOrThrowSchema: z.ZodType; export declare const DatabaseBackupFindFirstOrThrowZodSchema: z.ZodObject<{ diff --git a/packages/db/shared/schemas/findFirstOrThrowInsuranceCredential.schema.d.ts b/packages/db/shared/schemas/findFirstOrThrowInsuranceCredential.schema.d.ts index 7596190b..f33ee867 100644 --- a/packages/db/shared/schemas/findFirstOrThrowInsuranceCredential.schema.d.ts +++ b/packages/db/shared/schemas/findFirstOrThrowInsuranceCredential.schema.d.ts @@ -10,18 +10,18 @@ export declare const InsuranceCredentialFindFirstOrThrowSelectZodSchema: z.ZodOb user: z.ZodOptional; }, "strict", z.ZodTypeAny, { id?: boolean | undefined; - user?: boolean | undefined; - userId?: boolean | undefined; siteKey?: boolean | undefined; username?: boolean | undefined; password?: boolean | undefined; + userId?: boolean | undefined; + user?: boolean | undefined; }, { id?: boolean | undefined; - user?: boolean | undefined; - userId?: boolean | undefined; siteKey?: boolean | undefined; username?: boolean | undefined; password?: boolean | undefined; + userId?: boolean | undefined; + user?: boolean | undefined; }>; export declare const InsuranceCredentialFindFirstOrThrowSchema: z.ZodType; export declare const InsuranceCredentialFindFirstOrThrowZodSchema: z.ZodObject<{ @@ -41,7 +41,7 @@ export declare const InsuranceCredentialFindFirstOrThrowZodSchema: z.ZodObject<{ cursor?: Prisma.InsuranceCredentialWhereUniqueInput | undefined; take?: number | undefined; skip?: number | undefined; - distinct?: "id" | "userId" | "siteKey" | "username" | "password" | ("id" | "userId" | "siteKey" | "username" | "password")[] | undefined; + distinct?: "id" | "siteKey" | "username" | "password" | "userId" | ("id" | "siteKey" | "username" | "password" | "userId")[] | undefined; }, { where?: Prisma.InsuranceCredentialWhereInput | undefined; include?: Prisma.InsuranceCredentialInclude | undefined; @@ -50,6 +50,6 @@ export declare const InsuranceCredentialFindFirstOrThrowZodSchema: z.ZodObject<{ cursor?: Prisma.InsuranceCredentialWhereUniqueInput | undefined; take?: number | undefined; skip?: number | undefined; - distinct?: "id" | "userId" | "siteKey" | "username" | "password" | ("id" | "userId" | "siteKey" | "username" | "password")[] | undefined; + distinct?: "id" | "siteKey" | "username" | "password" | "userId" | ("id" | "siteKey" | "username" | "password" | "userId")[] | undefined; }>; //# sourceMappingURL=findFirstOrThrowInsuranceCredential.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstOrThrowLabRxTemplate.schema.js b/packages/db/shared/schemas/findFirstOrThrowLabRxTemplate.schema.js new file mode 100644 index 00000000..641e8e7d --- /dev/null +++ b/packages/db/shared/schemas/findFirstOrThrowLabRxTemplate.schema.js @@ -0,0 +1,80 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateFindFirstOrThrowZodSchema = exports.LabRxTemplateFindFirstOrThrowSchema = exports.LabRxTemplateFindFirstOrThrowSelectZodSchema = exports.LabRxTemplateFindFirstOrThrowSelectSchema = void 0; +const z = __importStar(require("zod")); +const LabRxTemplateInclude_schema_1 = require("./objects/LabRxTemplateInclude.schema"); +const LabRxTemplateOrderByWithRelationInput_schema_1 = require("./objects/LabRxTemplateOrderByWithRelationInput.schema"); +const LabRxTemplateWhereInput_schema_1 = require("./objects/LabRxTemplateWhereInput.schema"); +const LabRxTemplateWhereUniqueInput_schema_1 = require("./objects/LabRxTemplateWhereUniqueInput.schema"); +const LabRxTemplateScalarFieldEnum_schema_1 = require("./enums/LabRxTemplateScalarFieldEnum.schema"); +// Select schema needs to be in file to prevent circular imports +//------------------------------------------------------ +exports.LabRxTemplateFindFirstOrThrowSelectSchema = z.object({ + id: z.boolean().optional(), + userId: z.boolean().optional(), + name: z.boolean().optional(), + labName: z.boolean().optional(), + labPhone: z.boolean().optional(), + labFax: z.boolean().optional(), + labAddress: z.boolean().optional(), + labAccount: z.boolean().optional(), + caseType: z.boolean().optional(), + material: z.boolean().optional(), + instructions: z.boolean().optional(), + sortOrder: z.boolean().optional(), + createdAt: z.boolean().optional(), + updatedAt: z.boolean().optional(), + user: z.boolean().optional() +}).strict(); +exports.LabRxTemplateFindFirstOrThrowSelectZodSchema = z.object({ + id: z.boolean().optional(), + userId: z.boolean().optional(), + name: z.boolean().optional(), + labName: z.boolean().optional(), + labPhone: z.boolean().optional(), + labFax: z.boolean().optional(), + labAddress: z.boolean().optional(), + labAccount: z.boolean().optional(), + caseType: z.boolean().optional(), + material: z.boolean().optional(), + instructions: z.boolean().optional(), + sortOrder: z.boolean().optional(), + createdAt: z.boolean().optional(), + updatedAt: z.boolean().optional(), + user: z.boolean().optional() +}).strict(); +exports.LabRxTemplateFindFirstOrThrowSchema = z.object({ select: exports.LabRxTemplateFindFirstOrThrowSelectSchema.optional(), include: z.lazy(() => LabRxTemplateInclude_schema_1.LabRxTemplateIncludeObjectSchema.optional()), orderBy: z.union([LabRxTemplateOrderByWithRelationInput_schema_1.LabRxTemplateOrderByWithRelationInputObjectSchema, LabRxTemplateOrderByWithRelationInput_schema_1.LabRxTemplateOrderByWithRelationInputObjectSchema.array()]).optional(), where: LabRxTemplateWhereInput_schema_1.LabRxTemplateWhereInputObjectSchema.optional(), cursor: LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([LabRxTemplateScalarFieldEnum_schema_1.LabRxTemplateScalarFieldEnumSchema, LabRxTemplateScalarFieldEnum_schema_1.LabRxTemplateScalarFieldEnumSchema.array()]).optional() }).strict(); +exports.LabRxTemplateFindFirstOrThrowZodSchema = z.object({ select: exports.LabRxTemplateFindFirstOrThrowSelectSchema.optional(), include: z.lazy(() => LabRxTemplateInclude_schema_1.LabRxTemplateIncludeObjectSchema.optional()), orderBy: z.union([LabRxTemplateOrderByWithRelationInput_schema_1.LabRxTemplateOrderByWithRelationInputObjectSchema, LabRxTemplateOrderByWithRelationInput_schema_1.LabRxTemplateOrderByWithRelationInputObjectSchema.array()]).optional(), where: LabRxTemplateWhereInput_schema_1.LabRxTemplateWhereInputObjectSchema.optional(), cursor: LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([LabRxTemplateScalarFieldEnum_schema_1.LabRxTemplateScalarFieldEnumSchema, LabRxTemplateScalarFieldEnum_schema_1.LabRxTemplateScalarFieldEnumSchema.array()]).optional() }).strict(); diff --git a/packages/db/shared/schemas/findFirstOrThrowNotification.schema.d.ts b/packages/db/shared/schemas/findFirstOrThrowNotification.schema.d.ts index 71045905..b1513866 100644 --- a/packages/db/shared/schemas/findFirstOrThrowNotification.schema.d.ts +++ b/packages/db/shared/schemas/findFirstOrThrowNotification.schema.d.ts @@ -14,16 +14,16 @@ export declare const NotificationFindFirstOrThrowSelectZodSchema: z.ZodObject<{ type?: boolean | undefined; id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; read?: boolean | undefined; }, { message?: boolean | undefined; type?: boolean | undefined; id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; read?: boolean | undefined; }>; export declare const NotificationFindFirstOrThrowSchema: z.ZodType; diff --git a/packages/db/shared/schemas/findFirstOrThrowNpiProvider.schema.d.ts b/packages/db/shared/schemas/findFirstOrThrowNpiProvider.schema.d.ts index 9bd27f2b..fbc5f952 100644 --- a/packages/db/shared/schemas/findFirstOrThrowNpiProvider.schema.d.ts +++ b/packages/db/shared/schemas/findFirstOrThrowNpiProvider.schema.d.ts @@ -6,30 +6,42 @@ export declare const NpiProviderFindFirstOrThrowSelectZodSchema: z.ZodObject<{ userId: z.ZodOptional; npiNumber: z.ZodOptional; providerName: z.ZodOptional; + sortOrder: z.ZodOptional; createdAt: z.ZodOptional; user: z.ZodOptional; claims: z.ZodOptional; + payments: z.ZodOptional; + commissionBatches: z.ZodOptional; appointmentProcedures: z.ZodOptional; + appointments: z.ZodOptional; _count: z.ZodOptional; }, "strict", z.ZodTypeAny, { id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; + appointments?: boolean | undefined; claims?: boolean | undefined; npiNumber?: boolean | undefined; providerName?: boolean | undefined; + sortOrder?: boolean | undefined; + payments?: boolean | undefined; appointmentProcedures?: boolean | undefined; + commissionBatches?: boolean | undefined; _count?: boolean | undefined; }, { id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; + appointments?: boolean | undefined; claims?: boolean | undefined; npiNumber?: boolean | undefined; providerName?: boolean | undefined; + sortOrder?: boolean | undefined; + payments?: boolean | undefined; appointmentProcedures?: boolean | undefined; + commissionBatches?: boolean | undefined; _count?: boolean | undefined; }>; export declare const NpiProviderFindFirstOrThrowSchema: z.ZodType; @@ -41,7 +53,7 @@ export declare const NpiProviderFindFirstOrThrowZodSchema: z.ZodObject<{ cursor: z.ZodOptional>; take: z.ZodOptional; skip: z.ZodOptional; - distinct: z.ZodOptional, z.ZodArray, "many">]>>; + distinct: z.ZodOptional, z.ZodArray, "many">]>>; }, "strict", z.ZodTypeAny, { where?: Prisma.NpiProviderWhereInput | undefined; include?: Prisma.NpiProviderInclude | undefined; @@ -50,7 +62,7 @@ export declare const NpiProviderFindFirstOrThrowZodSchema: z.ZodObject<{ cursor?: Prisma.NpiProviderWhereUniqueInput | undefined; take?: number | undefined; skip?: number | undefined; - distinct?: "id" | "createdAt" | "userId" | "npiNumber" | "providerName" | ("id" | "createdAt" | "userId" | "npiNumber" | "providerName")[] | undefined; + distinct?: "id" | "createdAt" | "userId" | "npiNumber" | "providerName" | "sortOrder" | ("id" | "createdAt" | "userId" | "npiNumber" | "providerName" | "sortOrder")[] | undefined; }, { where?: Prisma.NpiProviderWhereInput | undefined; include?: Prisma.NpiProviderInclude | undefined; @@ -59,6 +71,6 @@ export declare const NpiProviderFindFirstOrThrowZodSchema: z.ZodObject<{ cursor?: Prisma.NpiProviderWhereUniqueInput | undefined; take?: number | undefined; skip?: number | undefined; - distinct?: "id" | "createdAt" | "userId" | "npiNumber" | "providerName" | ("id" | "createdAt" | "userId" | "npiNumber" | "providerName")[] | undefined; + distinct?: "id" | "createdAt" | "userId" | "npiNumber" | "providerName" | "sortOrder" | ("id" | "createdAt" | "userId" | "npiNumber" | "providerName" | "sortOrder")[] | undefined; }>; //# sourceMappingURL=findFirstOrThrowNpiProvider.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstOrThrowNpiProvider.schema.d.ts.map b/packages/db/shared/schemas/findFirstOrThrowNpiProvider.schema.d.ts.map index ed789ef6..09baa413 100644 --- a/packages/db/shared/schemas/findFirstOrThrowNpiProvider.schema.d.ts.map +++ b/packages/db/shared/schemas/findFirstOrThrowNpiProvider.schema.d.ts.map @@ -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,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"} \ No newline at end of file +{"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,CAczB,CAAC;AAEhE,eAAO,MAAM,0CAA0C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAc1C,CAAC;AAEd,eAAO,MAAM,iCAAiC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,+BAA+B,CAAunB,CAAC;AAExtB,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAsjB,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstOrThrowNpiProvider.schema.js b/packages/db/shared/schemas/findFirstOrThrowNpiProvider.schema.js index f5ce18f8..c39e3f0a 100644 --- a/packages/db/shared/schemas/findFirstOrThrowNpiProvider.schema.js +++ b/packages/db/shared/schemas/findFirstOrThrowNpiProvider.schema.js @@ -54,6 +54,7 @@ exports.NpiProviderFindFirstOrThrowSelectSchema = z.object({ payments: z.boolean().optional(), commissionBatches: z.boolean().optional(), appointmentProcedures: z.boolean().optional(), + appointments: z.boolean().optional(), _count: z.boolean().optional() }).strict(); exports.NpiProviderFindFirstOrThrowSelectZodSchema = z.object({ @@ -68,6 +69,7 @@ exports.NpiProviderFindFirstOrThrowSelectZodSchema = z.object({ payments: z.boolean().optional(), commissionBatches: z.boolean().optional(), appointmentProcedures: z.boolean().optional(), + appointments: 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(); diff --git a/packages/db/shared/schemas/findFirstOrThrowNpiProvider.schema.ts b/packages/db/shared/schemas/findFirstOrThrowNpiProvider.schema.ts index 1aec7a40..35ac81f1 100644 --- a/packages/db/shared/schemas/findFirstOrThrowNpiProvider.schema.ts +++ b/packages/db/shared/schemas/findFirstOrThrowNpiProvider.schema.ts @@ -21,6 +21,7 @@ export const NpiProviderFindFirstOrThrowSelectSchema: z.ZodType; @@ -36,6 +37,7 @@ export const NpiProviderFindFirstOrThrowSelectZodSchema = z.object({ payments: z.boolean().optional(), commissionBatches: z.boolean().optional(), appointmentProcedures: z.boolean().optional(), + appointments: z.boolean().optional(), _count: z.boolean().optional() }).strict(); diff --git a/packages/db/shared/schemas/findFirstOrThrowPatient.schema.d.ts b/packages/db/shared/schemas/findFirstOrThrowPatient.schema.d.ts index 5dfd3c74..2b24ac2e 100644 --- a/packages/db/shared/schemas/findFirstOrThrowPatient.schema.d.ts +++ b/packages/db/shared/schemas/findFirstOrThrowPatient.schema.d.ts @@ -18,9 +18,11 @@ export declare const PatientFindFirstOrThrowSelectZodSchema: z.ZodObject<{ policyHolder: z.ZodOptional; allergies: z.ZodOptional; medicalConditions: z.ZodOptional; + preferredLanguage: z.ZodOptional; status: z.ZodOptional; userId: z.ZodOptional; createdAt: z.ZodOptional; + updatedAt: z.ZodOptional; user: z.ZodOptional; appointments: z.ZodOptional; procedures: z.ZodOptional; @@ -29,64 +31,74 @@ export declare const PatientFindFirstOrThrowSelectZodSchema: z.ZodObject<{ payment: z.ZodOptional; communications: z.ZodOptional; documents: z.ZodOptional; + conversation: z.ZodOptional; + cloudFolders: z.ZodOptional; _count: z.ZodOptional; }, "strict", z.ZodTypeAny, { status?: boolean | undefined; id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; - procedures?: boolean | undefined; userId?: boolean | undefined; - claims?: boolean | undefined; + user?: boolean | undefined; email?: boolean | undefined; phone?: boolean | undefined; appointments?: boolean | undefined; + procedures?: boolean | undefined; + claims?: boolean | undefined; payment?: boolean | undefined; + updatedAt?: boolean | undefined; dateOfBirth?: boolean | undefined; insuranceProvider?: boolean | undefined; + city?: boolean | undefined; + zipCode?: boolean | undefined; + cloudFolders?: boolean | undefined; + communications?: boolean | undefined; firstName?: boolean | undefined; lastName?: boolean | undefined; gender?: boolean | undefined; address?: boolean | undefined; - city?: boolean | undefined; - zipCode?: boolean | undefined; insuranceId?: boolean | undefined; groupNumber?: boolean | undefined; policyHolder?: boolean | undefined; allergies?: boolean | undefined; medicalConditions?: boolean | undefined; + preferredLanguage?: boolean | undefined; groups?: boolean | undefined; documents?: boolean | undefined; - communications?: boolean | undefined; + conversation?: boolean | undefined; _count?: boolean | undefined; }, { status?: boolean | undefined; id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; - procedures?: boolean | undefined; userId?: boolean | undefined; - claims?: boolean | undefined; + user?: boolean | undefined; email?: boolean | undefined; phone?: boolean | undefined; appointments?: boolean | undefined; + procedures?: boolean | undefined; + claims?: boolean | undefined; payment?: boolean | undefined; + updatedAt?: boolean | undefined; dateOfBirth?: boolean | undefined; insuranceProvider?: boolean | undefined; + city?: boolean | undefined; + zipCode?: boolean | undefined; + cloudFolders?: boolean | undefined; + communications?: boolean | undefined; firstName?: boolean | undefined; lastName?: boolean | undefined; gender?: boolean | undefined; address?: boolean | undefined; - city?: boolean | undefined; - zipCode?: boolean | undefined; insuranceId?: boolean | undefined; groupNumber?: boolean | undefined; policyHolder?: boolean | undefined; allergies?: boolean | undefined; medicalConditions?: boolean | undefined; + preferredLanguage?: boolean | undefined; groups?: boolean | undefined; documents?: boolean | undefined; - communications?: boolean | undefined; + conversation?: boolean | undefined; _count?: boolean | undefined; }>; export declare const PatientFindFirstOrThrowSchema: z.ZodType; @@ -98,7 +110,7 @@ export declare const PatientFindFirstOrThrowZodSchema: z.ZodObject<{ cursor: z.ZodOptional>; take: z.ZodOptional; skip: z.ZodOptional; - distinct: z.ZodOptional, z.ZodArray, "many">]>>; + distinct: z.ZodOptional, z.ZodArray, "many">]>>; }, "strict", z.ZodTypeAny, { where?: Prisma.PatientWhereInput | undefined; include?: Prisma.PatientInclude | undefined; @@ -107,7 +119,7 @@ export declare const PatientFindFirstOrThrowZodSchema: z.ZodObject<{ cursor?: Prisma.PatientWhereUniqueInput | undefined; take?: number | undefined; skip?: number | 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; + distinct?: "status" | "id" | "createdAt" | "userId" | "email" | "phone" | "updatedAt" | "dateOfBirth" | "insuranceProvider" | "city" | "zipCode" | "firstName" | "lastName" | "gender" | "address" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions" | "preferredLanguage" | ("status" | "id" | "createdAt" | "userId" | "email" | "phone" | "updatedAt" | "dateOfBirth" | "insuranceProvider" | "city" | "zipCode" | "firstName" | "lastName" | "gender" | "address" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions" | "preferredLanguage")[] | undefined; }, { where?: Prisma.PatientWhereInput | undefined; include?: Prisma.PatientInclude | undefined; @@ -116,6 +128,6 @@ export declare const PatientFindFirstOrThrowZodSchema: z.ZodObject<{ cursor?: Prisma.PatientWhereUniqueInput | undefined; take?: number | undefined; skip?: number | 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; + distinct?: "status" | "id" | "createdAt" | "userId" | "email" | "phone" | "updatedAt" | "dateOfBirth" | "insuranceProvider" | "city" | "zipCode" | "firstName" | "lastName" | "gender" | "address" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions" | "preferredLanguage" | ("status" | "id" | "createdAt" | "userId" | "email" | "phone" | "updatedAt" | "dateOfBirth" | "insuranceProvider" | "city" | "zipCode" | "firstName" | "lastName" | "gender" | "address" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions" | "preferredLanguage")[] | undefined; }>; //# sourceMappingURL=findFirstOrThrowPatient.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstOrThrowPatient.schema.d.ts.map b/packages/db/shared/schemas/findFirstOrThrowPatient.schema.d.ts.map index 43896316..4f2e79f7 100644 --- a/packages/db/shared/schemas/findFirstOrThrowPatient.schema.d.ts.map +++ b/packages/db/shared/schemas/findFirstOrThrowPatient.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"findFirstOrThrowPatient.schema.d.ts","sourceRoot":"","sources":["findFirstOrThrowPatient.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,mCAAmC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,aAAa,CA6BrB,CAAC;AAE5D,eAAO,MAAM,sCAAsC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA6BtC,CAAC;AAEd,eAAO,MAAM,6BAA6B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,2BAA2B,CAAmlB,CAAC;AAE5qB,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAshB,CAAC"} \ No newline at end of file +{"version":3,"file":"findFirstOrThrowPatient.schema.d.ts","sourceRoot":"","sources":["findFirstOrThrowPatient.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,mCAAmC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,aAAa,CAiCrB,CAAC;AAE5D,eAAO,MAAM,sCAAsC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiCtC,CAAC;AAEd,eAAO,MAAM,6BAA6B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,2BAA2B,CAAmlB,CAAC;AAE5qB,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAshB,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstOrThrowPayment.schema.d.ts b/packages/db/shared/schemas/findFirstOrThrowPayment.schema.d.ts index 302e8bed..c3aabc8f 100644 --- a/packages/db/shared/schemas/findFirstOrThrowPayment.schema.d.ts +++ b/packages/db/shared/schemas/findFirstOrThrowPayment.schema.d.ts @@ -7,10 +7,14 @@ export declare const PaymentFindFirstOrThrowSelectZodSchema: z.ZodObject<{ patientId: z.ZodOptional; userId: z.ZodOptional; updatedById: z.ZodOptional; + npiProviderId: z.ZodOptional; totalBilled: z.ZodOptional; totalPaid: z.ZodOptional; totalAdjusted: z.ZodOptional; totalDue: z.ZodOptional; + mhPaidAmount: z.ZodOptional; + copayment: z.ZodOptional; + adjustment: z.ZodOptional; status: z.ZodOptional; notes: z.ZodOptional; icn: z.ZodOptional; @@ -19,8 +23,10 @@ export declare const PaymentFindFirstOrThrowSelectZodSchema: z.ZodObject<{ claim: z.ZodOptional; patient: z.ZodOptional; updatedBy: z.ZodOptional; + npiProvider: z.ZodOptional; serviceLineTransactions: z.ZodOptional; serviceLines: z.ZodOptional; + commissionBatchItems: z.ZodOptional; _count: z.ZodOptional; }, "strict", z.ZodTypeAny, { status?: boolean | undefined; @@ -28,20 +34,26 @@ export declare const PaymentFindFirstOrThrowSelectZodSchema: z.ZodObject<{ createdAt?: boolean | undefined; patientId?: boolean | undefined; patient?: boolean | undefined; - notes?: boolean | undefined; + npiProviderId?: boolean | undefined; + npiProvider?: boolean | undefined; userId?: boolean | undefined; claimId?: boolean | undefined; claim?: boolean | undefined; + notes?: boolean | undefined; + icn?: boolean | undefined; totalBilled?: boolean | undefined; totalPaid?: boolean | undefined; totalAdjusted?: boolean | undefined; totalDue?: boolean | undefined; serviceLineTransactions?: boolean | undefined; - icn?: boolean | undefined; - updatedAt?: boolean | undefined; - updatedBy?: boolean | undefined; - serviceLines?: boolean | undefined; updatedById?: boolean | undefined; + mhPaidAmount?: boolean | undefined; + copayment?: boolean | undefined; + adjustment?: boolean | undefined; + updatedAt?: boolean | undefined; + serviceLines?: boolean | undefined; + commissionBatchItems?: boolean | undefined; + updatedBy?: boolean | undefined; _count?: boolean | undefined; }, { status?: boolean | undefined; @@ -49,20 +61,26 @@ export declare const PaymentFindFirstOrThrowSelectZodSchema: z.ZodObject<{ createdAt?: boolean | undefined; patientId?: boolean | undefined; patient?: boolean | undefined; - notes?: boolean | undefined; + npiProviderId?: boolean | undefined; + npiProvider?: boolean | undefined; userId?: boolean | undefined; claimId?: boolean | undefined; claim?: boolean | undefined; + notes?: boolean | undefined; + icn?: boolean | undefined; totalBilled?: boolean | undefined; totalPaid?: boolean | undefined; totalAdjusted?: boolean | undefined; totalDue?: boolean | undefined; serviceLineTransactions?: boolean | undefined; - icn?: boolean | undefined; - updatedAt?: boolean | undefined; - updatedBy?: boolean | undefined; - serviceLines?: boolean | undefined; updatedById?: boolean | undefined; + mhPaidAmount?: boolean | undefined; + copayment?: boolean | undefined; + adjustment?: boolean | undefined; + updatedAt?: boolean | undefined; + serviceLines?: boolean | undefined; + commissionBatchItems?: boolean | undefined; + updatedBy?: boolean | undefined; _count?: boolean | undefined; }>; export declare const PaymentFindFirstOrThrowSchema: z.ZodType; @@ -74,7 +92,7 @@ export declare const PaymentFindFirstOrThrowZodSchema: z.ZodObject<{ cursor: z.ZodOptional>; take: z.ZodOptional; skip: z.ZodOptional; - distinct: z.ZodOptional, z.ZodArray, "many">]>>; + distinct: z.ZodOptional, z.ZodArray, "many">]>>; }, "strict", z.ZodTypeAny, { where?: Prisma.PaymentWhereInput | undefined; include?: Prisma.PaymentInclude | undefined; @@ -83,7 +101,7 @@ export declare const PaymentFindFirstOrThrowZodSchema: z.ZodObject<{ cursor?: Prisma.PaymentWhereUniqueInput | undefined; take?: number | undefined; skip?: number | 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; + distinct?: "status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "userId" | "claimId" | "notes" | "icn" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "updatedById" | "mhPaidAmount" | "copayment" | "adjustment" | "updatedAt" | ("status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "userId" | "claimId" | "notes" | "icn" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "updatedById" | "mhPaidAmount" | "copayment" | "adjustment" | "updatedAt")[] | undefined; }, { where?: Prisma.PaymentWhereInput | undefined; include?: Prisma.PaymentInclude | undefined; @@ -92,6 +110,6 @@ export declare const PaymentFindFirstOrThrowZodSchema: z.ZodObject<{ cursor?: Prisma.PaymentWhereUniqueInput | undefined; take?: number | undefined; skip?: number | 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; + distinct?: "status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "userId" | "claimId" | "notes" | "icn" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "updatedById" | "mhPaidAmount" | "copayment" | "adjustment" | "updatedAt" | ("status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "userId" | "claimId" | "notes" | "icn" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "updatedById" | "mhPaidAmount" | "copayment" | "adjustment" | "updatedAt")[] | undefined; }>; //# sourceMappingURL=findFirstOrThrowPayment.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstOrThrowPayment.schema.d.ts.map b/packages/db/shared/schemas/findFirstOrThrowPayment.schema.d.ts.map index 5044f329..2b2e489b 100644 --- a/packages/db/shared/schemas/findFirstOrThrowPayment.schema.d.ts.map +++ b/packages/db/shared/schemas/findFirstOrThrowPayment.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"findFirstOrThrowPayment.schema.d.ts","sourceRoot":"","sources":["findFirstOrThrowPayment.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,mCAAmC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,aAAa,CAqBrB,CAAC;AAE5D,eAAO,MAAM,sCAAsC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqBtC,CAAC;AAEd,eAAO,MAAM,6BAA6B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,2BAA2B,CAAmlB,CAAC;AAE5qB,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAshB,CAAC"} \ No newline at end of file +{"version":3,"file":"findFirstOrThrowPayment.schema.d.ts","sourceRoot":"","sources":["findFirstOrThrowPayment.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,mCAAmC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,aAAa,CA2BrB,CAAC;AAE5D,eAAO,MAAM,sCAAsC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA2BtC,CAAC;AAEd,eAAO,MAAM,6BAA6B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,2BAA2B,CAAmlB,CAAC;AAE5qB,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAshB,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstOrThrowSeleniumSettings.schema.js b/packages/db/shared/schemas/findFirstOrThrowSeleniumSettings.schema.js new file mode 100644 index 00000000..a076d2d0 --- /dev/null +++ b/packages/db/shared/schemas/findFirstOrThrowSeleniumSettings.schema.js @@ -0,0 +1,58 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsFindFirstOrThrowZodSchema = exports.SeleniumSettingsFindFirstOrThrowSchema = exports.SeleniumSettingsFindFirstOrThrowSelectZodSchema = exports.SeleniumSettingsFindFirstOrThrowSelectSchema = void 0; +const z = __importStar(require("zod")); +const SeleniumSettingsInclude_schema_1 = require("./objects/SeleniumSettingsInclude.schema"); +const SeleniumSettingsOrderByWithRelationInput_schema_1 = require("./objects/SeleniumSettingsOrderByWithRelationInput.schema"); +const SeleniumSettingsWhereInput_schema_1 = require("./objects/SeleniumSettingsWhereInput.schema"); +const SeleniumSettingsWhereUniqueInput_schema_1 = require("./objects/SeleniumSettingsWhereUniqueInput.schema"); +const SeleniumSettingsScalarFieldEnum_schema_1 = require("./enums/SeleniumSettingsScalarFieldEnum.schema"); +// Select schema needs to be in file to prevent circular imports +//------------------------------------------------------ +exports.SeleniumSettingsFindFirstOrThrowSelectSchema = z.object({ + id: z.boolean().optional(), + userId: z.boolean().optional(), + paymentGroupId: z.boolean().optional(), + user: z.boolean().optional() +}).strict(); +exports.SeleniumSettingsFindFirstOrThrowSelectZodSchema = z.object({ + id: z.boolean().optional(), + userId: z.boolean().optional(), + paymentGroupId: z.boolean().optional(), + user: z.boolean().optional() +}).strict(); +exports.SeleniumSettingsFindFirstOrThrowSchema = z.object({ select: exports.SeleniumSettingsFindFirstOrThrowSelectSchema.optional(), include: z.lazy(() => SeleniumSettingsInclude_schema_1.SeleniumSettingsIncludeObjectSchema.optional()), orderBy: z.union([SeleniumSettingsOrderByWithRelationInput_schema_1.SeleniumSettingsOrderByWithRelationInputObjectSchema, SeleniumSettingsOrderByWithRelationInput_schema_1.SeleniumSettingsOrderByWithRelationInputObjectSchema.array()]).optional(), where: SeleniumSettingsWhereInput_schema_1.SeleniumSettingsWhereInputObjectSchema.optional(), cursor: SeleniumSettingsWhereUniqueInput_schema_1.SeleniumSettingsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([SeleniumSettingsScalarFieldEnum_schema_1.SeleniumSettingsScalarFieldEnumSchema, SeleniumSettingsScalarFieldEnum_schema_1.SeleniumSettingsScalarFieldEnumSchema.array()]).optional() }).strict(); +exports.SeleniumSettingsFindFirstOrThrowZodSchema = z.object({ select: exports.SeleniumSettingsFindFirstOrThrowSelectSchema.optional(), include: z.lazy(() => SeleniumSettingsInclude_schema_1.SeleniumSettingsIncludeObjectSchema.optional()), orderBy: z.union([SeleniumSettingsOrderByWithRelationInput_schema_1.SeleniumSettingsOrderByWithRelationInputObjectSchema, SeleniumSettingsOrderByWithRelationInput_schema_1.SeleniumSettingsOrderByWithRelationInputObjectSchema.array()]).optional(), where: SeleniumSettingsWhereInput_schema_1.SeleniumSettingsWhereInputObjectSchema.optional(), cursor: SeleniumSettingsWhereUniqueInput_schema_1.SeleniumSettingsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([SeleniumSettingsScalarFieldEnum_schema_1.SeleniumSettingsScalarFieldEnumSchema, SeleniumSettingsScalarFieldEnum_schema_1.SeleniumSettingsScalarFieldEnumSchema.array()]).optional() }).strict(); diff --git a/packages/db/shared/schemas/findFirstOrThrowServiceLine.schema.d.ts b/packages/db/shared/schemas/findFirstOrThrowServiceLine.schema.d.ts index 05709223..73a9cabe 100644 --- a/packages/db/shared/schemas/findFirstOrThrowServiceLine.schema.d.ts +++ b/packages/db/shared/schemas/findFirstOrThrowServiceLine.schema.d.ts @@ -11,6 +11,9 @@ export declare const ServiceLineFindFirstOrThrowSelectZodSchema: z.ZodObject<{ arch: z.ZodOptional; toothNumber: z.ZodOptional; toothSurface: z.ZodOptional; + icn: z.ZodOptional; + paidCode: z.ZodOptional; + allowedAmount: z.ZodOptional; totalBilled: z.ZodOptional; totalPaid: z.ZodOptional; totalAdjusted: z.ZodOptional; @@ -33,6 +36,9 @@ export declare const ServiceLineFindFirstOrThrowSelectZodSchema: z.ZodObject<{ procedureDate?: boolean | undefined; quad?: boolean | undefined; arch?: boolean | undefined; + icn?: boolean | undefined; + paidCode?: boolean | undefined; + allowedAmount?: boolean | undefined; totalBilled?: boolean | undefined; totalPaid?: boolean | undefined; totalAdjusted?: boolean | undefined; @@ -52,6 +58,9 @@ export declare const ServiceLineFindFirstOrThrowSelectZodSchema: z.ZodObject<{ procedureDate?: boolean | undefined; quad?: boolean | undefined; arch?: boolean | undefined; + icn?: boolean | undefined; + paidCode?: boolean | undefined; + allowedAmount?: boolean | undefined; totalBilled?: boolean | undefined; totalPaid?: boolean | undefined; totalAdjusted?: boolean | undefined; @@ -68,7 +77,7 @@ export declare const ServiceLineFindFirstOrThrowZodSchema: z.ZodObject<{ cursor: z.ZodOptional>; take: z.ZodOptional; skip: z.ZodOptional; - distinct: z.ZodOptional, z.ZodArray, "many">]>>; + distinct: z.ZodOptional, z.ZodArray, "many">]>>; }, "strict", z.ZodTypeAny, { where?: Prisma.ServiceLineWhereInput | undefined; include?: Prisma.ServiceLineInclude | undefined; @@ -77,7 +86,7 @@ export declare const ServiceLineFindFirstOrThrowZodSchema: z.ZodObject<{ cursor?: Prisma.ServiceLineWhereUniqueInput | undefined; take?: number | undefined; skip?: number | undefined; - distinct?: "status" | "id" | "procedureCode" | "toothNumber" | "toothSurface" | "claimId" | "paymentId" | "procedureDate" | "quad" | "arch" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | ("status" | "id" | "procedureCode" | "toothNumber" | "toothSurface" | "claimId" | "paymentId" | "procedureDate" | "quad" | "arch" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue")[] | undefined; + distinct?: "status" | "id" | "procedureCode" | "toothNumber" | "toothSurface" | "claimId" | "paymentId" | "procedureDate" | "quad" | "arch" | "icn" | "paidCode" | "allowedAmount" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | ("status" | "id" | "procedureCode" | "toothNumber" | "toothSurface" | "claimId" | "paymentId" | "procedureDate" | "quad" | "arch" | "icn" | "paidCode" | "allowedAmount" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue")[] | undefined; }, { where?: Prisma.ServiceLineWhereInput | undefined; include?: Prisma.ServiceLineInclude | undefined; @@ -86,6 +95,6 @@ export declare const ServiceLineFindFirstOrThrowZodSchema: z.ZodObject<{ cursor?: Prisma.ServiceLineWhereUniqueInput | undefined; take?: number | undefined; skip?: number | undefined; - distinct?: "status" | "id" | "procedureCode" | "toothNumber" | "toothSurface" | "claimId" | "paymentId" | "procedureDate" | "quad" | "arch" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | ("status" | "id" | "procedureCode" | "toothNumber" | "toothSurface" | "claimId" | "paymentId" | "procedureDate" | "quad" | "arch" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue")[] | undefined; + distinct?: "status" | "id" | "procedureCode" | "toothNumber" | "toothSurface" | "claimId" | "paymentId" | "procedureDate" | "quad" | "arch" | "icn" | "paidCode" | "allowedAmount" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | ("status" | "id" | "procedureCode" | "toothNumber" | "toothSurface" | "claimId" | "paymentId" | "procedureDate" | "quad" | "arch" | "icn" | "paidCode" | "allowedAmount" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue")[] | undefined; }>; //# sourceMappingURL=findFirstOrThrowServiceLine.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstOrThrowServiceLine.schema.d.ts.map b/packages/db/shared/schemas/findFirstOrThrowServiceLine.schema.d.ts.map index 85adb54d..9d52bfde 100644 --- a/packages/db/shared/schemas/findFirstOrThrowServiceLine.schema.d.ts.map +++ b/packages/db/shared/schemas/findFirstOrThrowServiceLine.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"findFirstOrThrowServiceLine.schema.d.ts","sourceRoot":"","sources":["findFirstOrThrowServiceLine.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,CAmBzB,CAAC;AAEhE,eAAO,MAAM,0CAA0C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmB1C,CAAC;AAEd,eAAO,MAAM,iCAAiC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,+BAA+B,CAAunB,CAAC;AAExtB,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAsjB,CAAC"} \ No newline at end of file +{"version":3,"file":"findFirstOrThrowServiceLine.schema.d.ts","sourceRoot":"","sources":["findFirstOrThrowServiceLine.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,CAsBzB,CAAC;AAEhE,eAAO,MAAM,0CAA0C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAsB1C,CAAC;AAEd,eAAO,MAAM,iCAAiC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,+BAA+B,CAAunB,CAAC;AAExtB,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAsjB,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstOrThrowServiceLineTransaction.schema.d.ts b/packages/db/shared/schemas/findFirstOrThrowServiceLineTransaction.schema.d.ts index 2ae9b2c4..f8393f07 100644 --- a/packages/db/shared/schemas/findFirstOrThrowServiceLineTransaction.schema.d.ts +++ b/packages/db/shared/schemas/findFirstOrThrowServiceLineTransaction.schema.d.ts @@ -19,28 +19,28 @@ export declare const ServiceLineTransactionFindFirstOrThrowSelectZodSchema: z.Zo id?: boolean | undefined; createdAt?: boolean | undefined; notes?: boolean | undefined; - paymentId?: boolean | undefined; + serviceLineId?: boolean | undefined; transactionId?: boolean | undefined; paidAmount?: boolean | undefined; adjustedAmount?: boolean | undefined; method?: boolean | undefined; receivedDate?: boolean | undefined; payerName?: boolean | undefined; - serviceLineId?: boolean | undefined; + paymentId?: boolean | undefined; payment?: boolean | undefined; serviceLine?: boolean | undefined; }, { id?: boolean | undefined; createdAt?: boolean | undefined; notes?: boolean | undefined; - paymentId?: boolean | undefined; + serviceLineId?: boolean | undefined; transactionId?: boolean | undefined; paidAmount?: boolean | undefined; adjustedAmount?: boolean | undefined; method?: boolean | undefined; receivedDate?: boolean | undefined; payerName?: boolean | undefined; - serviceLineId?: boolean | undefined; + paymentId?: boolean | undefined; payment?: boolean | undefined; serviceLine?: boolean | undefined; }>; @@ -62,7 +62,7 @@ export declare const ServiceLineTransactionFindFirstOrThrowZodSchema: z.ZodObjec cursor?: Prisma.ServiceLineTransactionWhereUniqueInput | undefined; take?: number | undefined; skip?: number | 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; + distinct?: "id" | "createdAt" | "notes" | "serviceLineId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "paymentId" | ("id" | "createdAt" | "notes" | "serviceLineId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "paymentId")[] | undefined; }, { where?: Prisma.ServiceLineTransactionWhereInput | undefined; include?: Prisma.ServiceLineTransactionInclude | undefined; @@ -71,6 +71,6 @@ export declare const ServiceLineTransactionFindFirstOrThrowZodSchema: z.ZodObjec cursor?: Prisma.ServiceLineTransactionWhereUniqueInput | undefined; take?: number | undefined; skip?: number | 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; + distinct?: "id" | "createdAt" | "notes" | "serviceLineId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "paymentId" | ("id" | "createdAt" | "notes" | "serviceLineId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "paymentId")[] | undefined; }>; //# sourceMappingURL=findFirstOrThrowServiceLineTransaction.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstOrThrowStaff.schema.d.ts b/packages/db/shared/schemas/findFirstOrThrowStaff.schema.d.ts index fdb45702..9f607a73 100644 --- a/packages/db/shared/schemas/findFirstOrThrowStaff.schema.d.ts +++ b/packages/db/shared/schemas/findFirstOrThrowStaff.schema.d.ts @@ -16,26 +16,26 @@ export declare const StaffFindFirstOrThrowSelectZodSchema: z.ZodObject<{ }, "strict", z.ZodTypeAny, { id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; - claims?: boolean | undefined; + user?: boolean | undefined; name?: boolean | undefined; email?: boolean | undefined; role?: boolean | undefined; phone?: boolean | undefined; appointments?: boolean | undefined; + claims?: boolean | undefined; _count?: boolean | undefined; }, { id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; - claims?: boolean | undefined; + user?: boolean | undefined; name?: boolean | undefined; email?: boolean | undefined; role?: boolean | undefined; phone?: boolean | undefined; appointments?: boolean | undefined; + claims?: boolean | undefined; _count?: boolean | undefined; }>; export declare const StaffFindFirstOrThrowSchema: z.ZodType; diff --git a/packages/db/shared/schemas/findFirstOrThrowUser.schema.d.ts b/packages/db/shared/schemas/findFirstOrThrowUser.schema.d.ts index 57680424..f36654cb 100644 --- a/packages/db/shared/schemas/findFirstOrThrowUser.schema.d.ts +++ b/packages/db/shared/schemas/findFirstOrThrowUser.schema.d.ts @@ -6,13 +6,19 @@ export declare const UserFindFirstOrThrowSelectZodSchema: z.ZodObject<{ username: z.ZodOptional; password: z.ZodOptional; autoBackupEnabled: z.ZodOptional; + autoBackupHour: z.ZodOptional; usbBackupEnabled: z.ZodOptional; + usbBackupHour: z.ZodOptional; + autoMhCheckEnabled: z.ZodOptional; + autoMhCheckDayOfWeek: z.ZodOptional; + autoMhCheckHour: z.ZodOptional; patients: z.ZodOptional; appointments: z.ZodOptional; staff: z.ZodOptional; npiProviders: z.ZodOptional; claims: z.ZodOptional; insuranceCredentials: z.ZodOptional; + shoppingVendors: z.ZodOptional; updatedPayments: z.ZodOptional; backups: z.ZodOptional; backupDestinations: z.ZodOptional; @@ -20,46 +26,85 @@ export declare const UserFindFirstOrThrowSelectZodSchema: z.ZodObject<{ cloudFolders: z.ZodOptional; cloudFiles: z.ZodOptional; communications: z.ZodOptional; + twilioSettings: z.ZodOptional; + aiSettings: z.ZodOptional; + officeHours: z.ZodOptional; + officeContact: z.ZodOptional; + procedureTimeslot: z.ZodOptional; + insuranceContacts: z.ZodOptional; + patientConversations: z.ZodOptional; + labRxTemplates: z.ZodOptional; + seleniumSettings: z.ZodOptional; _count: z.ZodOptional; }, "strict", z.ZodTypeAny, { id?: boolean | undefined; - staff?: boolean | undefined; - claims?: boolean | undefined; - appointments?: boolean | undefined; username?: boolean | undefined; password?: boolean | undefined; - communications?: boolean | undefined; + appointments?: boolean | undefined; + staff?: boolean | undefined; + claims?: boolean | undefined; autoBackupEnabled?: boolean | undefined; + autoBackupHour?: boolean | undefined; usbBackupEnabled?: boolean | undefined; + usbBackupHour?: boolean | undefined; + autoMhCheckEnabled?: boolean | undefined; + autoMhCheckDayOfWeek?: boolean | undefined; + autoMhCheckHour?: boolean | undefined; patients?: boolean | undefined; npiProviders?: boolean | undefined; insuranceCredentials?: boolean | undefined; + shoppingVendors?: boolean | undefined; updatedPayments?: boolean | undefined; backups?: boolean | undefined; backupDestinations?: boolean | undefined; notifications?: boolean | undefined; cloudFolders?: boolean | undefined; cloudFiles?: boolean | undefined; + communications?: boolean | undefined; + twilioSettings?: boolean | undefined; + aiSettings?: boolean | undefined; + officeHours?: boolean | undefined; + officeContact?: boolean | undefined; + procedureTimeslot?: boolean | undefined; + insuranceContacts?: boolean | undefined; + labRxTemplates?: boolean | undefined; + seleniumSettings?: boolean | undefined; + patientConversations?: boolean | undefined; _count?: boolean | undefined; }, { id?: boolean | undefined; - staff?: boolean | undefined; - claims?: boolean | undefined; - appointments?: boolean | undefined; username?: boolean | undefined; password?: boolean | undefined; - communications?: boolean | undefined; + appointments?: boolean | undefined; + staff?: boolean | undefined; + claims?: boolean | undefined; autoBackupEnabled?: boolean | undefined; + autoBackupHour?: boolean | undefined; usbBackupEnabled?: boolean | undefined; + usbBackupHour?: boolean | undefined; + autoMhCheckEnabled?: boolean | undefined; + autoMhCheckDayOfWeek?: boolean | undefined; + autoMhCheckHour?: boolean | undefined; patients?: boolean | undefined; npiProviders?: boolean | undefined; insuranceCredentials?: boolean | undefined; + shoppingVendors?: boolean | undefined; updatedPayments?: boolean | undefined; backups?: boolean | undefined; backupDestinations?: boolean | undefined; notifications?: boolean | undefined; cloudFolders?: boolean | undefined; cloudFiles?: boolean | undefined; + communications?: boolean | undefined; + twilioSettings?: boolean | undefined; + aiSettings?: boolean | undefined; + officeHours?: boolean | undefined; + officeContact?: boolean | undefined; + procedureTimeslot?: boolean | undefined; + insuranceContacts?: boolean | undefined; + labRxTemplates?: boolean | undefined; + seleniumSettings?: boolean | undefined; + patientConversations?: boolean | undefined; _count?: boolean | undefined; }>; export declare const UserFindFirstOrThrowSchema: z.ZodType; @@ -71,7 +116,7 @@ export declare const UserFindFirstOrThrowZodSchema: z.ZodObject<{ cursor: z.ZodOptional>; take: z.ZodOptional; skip: z.ZodOptional; - distinct: z.ZodOptional, z.ZodArray, "many">]>>; + distinct: z.ZodOptional, z.ZodArray, "many">]>>; }, "strict", z.ZodTypeAny, { where?: Prisma.UserWhereInput | undefined; include?: Prisma.UserInclude | undefined; @@ -80,7 +125,7 @@ export declare const UserFindFirstOrThrowZodSchema: z.ZodObject<{ cursor?: Prisma.UserWhereUniqueInput | undefined; take?: number | undefined; skip?: number | undefined; - distinct?: "id" | "username" | "password" | "autoBackupEnabled" | "usbBackupEnabled" | ("id" | "username" | "password" | "autoBackupEnabled" | "usbBackupEnabled")[] | undefined; + distinct?: "id" | "username" | "password" | "autoBackupEnabled" | "autoBackupHour" | "usbBackupEnabled" | "usbBackupHour" | "autoMhCheckEnabled" | "autoMhCheckDayOfWeek" | "autoMhCheckHour" | ("id" | "username" | "password" | "autoBackupEnabled" | "autoBackupHour" | "usbBackupEnabled" | "usbBackupHour" | "autoMhCheckEnabled" | "autoMhCheckDayOfWeek" | "autoMhCheckHour")[] | undefined; }, { where?: Prisma.UserWhereInput | undefined; include?: Prisma.UserInclude | undefined; @@ -89,6 +134,6 @@ export declare const UserFindFirstOrThrowZodSchema: z.ZodObject<{ cursor?: Prisma.UserWhereUniqueInput | undefined; take?: number | undefined; skip?: number | undefined; - distinct?: "id" | "username" | "password" | "autoBackupEnabled" | "usbBackupEnabled" | ("id" | "username" | "password" | "autoBackupEnabled" | "usbBackupEnabled")[] | undefined; + distinct?: "id" | "username" | "password" | "autoBackupEnabled" | "autoBackupHour" | "usbBackupEnabled" | "usbBackupHour" | "autoMhCheckEnabled" | "autoMhCheckDayOfWeek" | "autoMhCheckHour" | ("id" | "username" | "password" | "autoBackupEnabled" | "autoBackupHour" | "usbBackupEnabled" | "usbBackupHour" | "autoMhCheckEnabled" | "autoMhCheckDayOfWeek" | "autoMhCheckHour")[] | undefined; }>; //# sourceMappingURL=findFirstOrThrowUser.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstOrThrowUser.schema.d.ts.map b/packages/db/shared/schemas/findFirstOrThrowUser.schema.d.ts.map index 163a8b99..0c299054 100644 --- a/packages/db/shared/schemas/findFirstOrThrowUser.schema.d.ts.map +++ b/packages/db/shared/schemas/findFirstOrThrowUser.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"findFirstOrThrowUser.schema.d.ts","sourceRoot":"","sources":["findFirstOrThrowUser.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,UAAU,CAoBlB,CAAC;AAEzD,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoBnC,CAAC;AAEd,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,wBAAwB,CAAwjB,CAAC;AAE3oB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA8f,CAAC"} \ No newline at end of file +{"version":3,"file":"findFirstOrThrowUser.schema.d.ts","sourceRoot":"","sources":["findFirstOrThrowUser.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,UAAU,CAmClB,CAAC;AAEzD,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmCnC,CAAC;AAEd,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,wBAAwB,CAAwjB,CAAC;AAE3oB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA8f,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstOrThrowUser.schema.js b/packages/db/shared/schemas/findFirstOrThrowUser.schema.js index f8d98f01..76cd1295 100644 --- a/packages/db/shared/schemas/findFirstOrThrowUser.schema.js +++ b/packages/db/shared/schemas/findFirstOrThrowUser.schema.js @@ -74,6 +74,8 @@ exports.UserFindFirstOrThrowSelectSchema = z.object({ procedureTimeslot: z.boolean().optional(), insuranceContacts: z.boolean().optional(), patientConversations: z.boolean().optional(), + labRxTemplates: z.boolean().optional(), + seleniumSettings: z.boolean().optional(), _count: z.boolean().optional() }).strict(); exports.UserFindFirstOrThrowSelectZodSchema = z.object({ @@ -108,6 +110,8 @@ exports.UserFindFirstOrThrowSelectZodSchema = z.object({ procedureTimeslot: z.boolean().optional(), insuranceContacts: z.boolean().optional(), patientConversations: z.boolean().optional(), + labRxTemplates: z.boolean().optional(), + seleniumSettings: z.boolean().optional(), _count: z.boolean().optional() }).strict(); exports.UserFindFirstOrThrowSchema = z.object({ select: exports.UserFindFirstOrThrowSelectSchema.optional(), include: z.lazy(() => UserInclude_schema_1.UserIncludeObjectSchema.optional()), orderBy: z.union([UserOrderByWithRelationInput_schema_1.UserOrderByWithRelationInputObjectSchema, UserOrderByWithRelationInput_schema_1.UserOrderByWithRelationInputObjectSchema.array()]).optional(), where: UserWhereInput_schema_1.UserWhereInputObjectSchema.optional(), cursor: UserWhereUniqueInput_schema_1.UserWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([UserScalarFieldEnum_schema_1.UserScalarFieldEnumSchema, UserScalarFieldEnum_schema_1.UserScalarFieldEnumSchema.array()]).optional() }).strict(); diff --git a/packages/db/shared/schemas/findFirstPatient.schema.d.ts b/packages/db/shared/schemas/findFirstPatient.schema.d.ts index a7961ee7..bee7fb92 100644 --- a/packages/db/shared/schemas/findFirstPatient.schema.d.ts +++ b/packages/db/shared/schemas/findFirstPatient.schema.d.ts @@ -18,9 +18,11 @@ export declare const PatientFindFirstSelectZodSchema: z.ZodObject<{ policyHolder: z.ZodOptional; allergies: z.ZodOptional; medicalConditions: z.ZodOptional; + preferredLanguage: z.ZodOptional; status: z.ZodOptional; userId: z.ZodOptional; createdAt: z.ZodOptional; + updatedAt: z.ZodOptional; user: z.ZodOptional; appointments: z.ZodOptional; procedures: z.ZodOptional; @@ -29,64 +31,74 @@ export declare const PatientFindFirstSelectZodSchema: z.ZodObject<{ payment: z.ZodOptional; communications: z.ZodOptional; documents: z.ZodOptional; + conversation: z.ZodOptional; + cloudFolders: z.ZodOptional; _count: z.ZodOptional; }, "strict", z.ZodTypeAny, { status?: boolean | undefined; id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; - procedures?: boolean | undefined; userId?: boolean | undefined; - claims?: boolean | undefined; + user?: boolean | undefined; email?: boolean | undefined; phone?: boolean | undefined; appointments?: boolean | undefined; + procedures?: boolean | undefined; + claims?: boolean | undefined; payment?: boolean | undefined; + updatedAt?: boolean | undefined; dateOfBirth?: boolean | undefined; insuranceProvider?: boolean | undefined; + city?: boolean | undefined; + zipCode?: boolean | undefined; + cloudFolders?: boolean | undefined; + communications?: boolean | undefined; firstName?: boolean | undefined; lastName?: boolean | undefined; gender?: boolean | undefined; address?: boolean | undefined; - city?: boolean | undefined; - zipCode?: boolean | undefined; insuranceId?: boolean | undefined; groupNumber?: boolean | undefined; policyHolder?: boolean | undefined; allergies?: boolean | undefined; medicalConditions?: boolean | undefined; + preferredLanguage?: boolean | undefined; groups?: boolean | undefined; documents?: boolean | undefined; - communications?: boolean | undefined; + conversation?: boolean | undefined; _count?: boolean | undefined; }, { status?: boolean | undefined; id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; - procedures?: boolean | undefined; userId?: boolean | undefined; - claims?: boolean | undefined; + user?: boolean | undefined; email?: boolean | undefined; phone?: boolean | undefined; appointments?: boolean | undefined; + procedures?: boolean | undefined; + claims?: boolean | undefined; payment?: boolean | undefined; + updatedAt?: boolean | undefined; dateOfBirth?: boolean | undefined; insuranceProvider?: boolean | undefined; + city?: boolean | undefined; + zipCode?: boolean | undefined; + cloudFolders?: boolean | undefined; + communications?: boolean | undefined; firstName?: boolean | undefined; lastName?: boolean | undefined; gender?: boolean | undefined; address?: boolean | undefined; - city?: boolean | undefined; - zipCode?: boolean | undefined; insuranceId?: boolean | undefined; groupNumber?: boolean | undefined; policyHolder?: boolean | undefined; allergies?: boolean | undefined; medicalConditions?: boolean | undefined; + preferredLanguage?: boolean | undefined; groups?: boolean | undefined; documents?: boolean | undefined; - communications?: boolean | undefined; + conversation?: boolean | undefined; _count?: boolean | undefined; }>; export declare const PatientFindFirstSchema: z.ZodType; @@ -98,7 +110,7 @@ export declare const PatientFindFirstZodSchema: z.ZodObject<{ cursor: z.ZodOptional>; take: z.ZodOptional; skip: z.ZodOptional; - distinct: z.ZodOptional, z.ZodArray, "many">]>>; + distinct: z.ZodOptional, z.ZodArray, "many">]>>; }, "strict", z.ZodTypeAny, { where?: Prisma.PatientWhereInput | undefined; include?: Prisma.PatientInclude | undefined; @@ -107,7 +119,7 @@ export declare const PatientFindFirstZodSchema: z.ZodObject<{ cursor?: Prisma.PatientWhereUniqueInput | undefined; take?: number | undefined; skip?: number | 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; + distinct?: "status" | "id" | "createdAt" | "userId" | "email" | "phone" | "updatedAt" | "dateOfBirth" | "insuranceProvider" | "city" | "zipCode" | "firstName" | "lastName" | "gender" | "address" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions" | "preferredLanguage" | ("status" | "id" | "createdAt" | "userId" | "email" | "phone" | "updatedAt" | "dateOfBirth" | "insuranceProvider" | "city" | "zipCode" | "firstName" | "lastName" | "gender" | "address" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions" | "preferredLanguage")[] | undefined; }, { where?: Prisma.PatientWhereInput | undefined; include?: Prisma.PatientInclude | undefined; @@ -116,6 +128,6 @@ export declare const PatientFindFirstZodSchema: z.ZodObject<{ cursor?: Prisma.PatientWhereUniqueInput | undefined; take?: number | undefined; skip?: number | 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; + distinct?: "status" | "id" | "createdAt" | "userId" | "email" | "phone" | "updatedAt" | "dateOfBirth" | "insuranceProvider" | "city" | "zipCode" | "firstName" | "lastName" | "gender" | "address" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions" | "preferredLanguage" | ("status" | "id" | "createdAt" | "userId" | "email" | "phone" | "updatedAt" | "dateOfBirth" | "insuranceProvider" | "city" | "zipCode" | "firstName" | "lastName" | "gender" | "address" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions" | "preferredLanguage")[] | undefined; }>; //# sourceMappingURL=findFirstPatient.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstPatient.schema.d.ts.map b/packages/db/shared/schemas/findFirstPatient.schema.d.ts.map index f12df854..99836d67 100644 --- a/packages/db/shared/schemas/findFirstPatient.schema.d.ts.map +++ b/packages/db/shared/schemas/findFirstPatient.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"findFirstPatient.schema.d.ts","sourceRoot":"","sources":["findFirstPatient.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,4BAA4B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,aAAa,CA6Bd,CAAC;AAE5D,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA6B/B,CAAC;AAEd,eAAO,MAAM,sBAAsB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,oBAAoB,CAAqkB,CAAC;AAEhpB,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA+gB,CAAC"} \ No newline at end of file +{"version":3,"file":"findFirstPatient.schema.d.ts","sourceRoot":"","sources":["findFirstPatient.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,4BAA4B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,aAAa,CAiCd,CAAC;AAE5D,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiC/B,CAAC;AAEd,eAAO,MAAM,sBAAsB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,oBAAoB,CAAqkB,CAAC;AAEhpB,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA+gB,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstPayment.schema.d.ts b/packages/db/shared/schemas/findFirstPayment.schema.d.ts index b17e57a6..c1f6b444 100644 --- a/packages/db/shared/schemas/findFirstPayment.schema.d.ts +++ b/packages/db/shared/schemas/findFirstPayment.schema.d.ts @@ -7,10 +7,14 @@ export declare const PaymentFindFirstSelectZodSchema: z.ZodObject<{ patientId: z.ZodOptional; userId: z.ZodOptional; updatedById: z.ZodOptional; + npiProviderId: z.ZodOptional; totalBilled: z.ZodOptional; totalPaid: z.ZodOptional; totalAdjusted: z.ZodOptional; totalDue: z.ZodOptional; + mhPaidAmount: z.ZodOptional; + copayment: z.ZodOptional; + adjustment: z.ZodOptional; status: z.ZodOptional; notes: z.ZodOptional; icn: z.ZodOptional; @@ -19,8 +23,10 @@ export declare const PaymentFindFirstSelectZodSchema: z.ZodObject<{ claim: z.ZodOptional; patient: z.ZodOptional; updatedBy: z.ZodOptional; + npiProvider: z.ZodOptional; serviceLineTransactions: z.ZodOptional; serviceLines: z.ZodOptional; + commissionBatchItems: z.ZodOptional; _count: z.ZodOptional; }, "strict", z.ZodTypeAny, { status?: boolean | undefined; @@ -28,20 +34,26 @@ export declare const PaymentFindFirstSelectZodSchema: z.ZodObject<{ createdAt?: boolean | undefined; patientId?: boolean | undefined; patient?: boolean | undefined; - notes?: boolean | undefined; + npiProviderId?: boolean | undefined; + npiProvider?: boolean | undefined; userId?: boolean | undefined; claimId?: boolean | undefined; claim?: boolean | undefined; + notes?: boolean | undefined; + icn?: boolean | undefined; totalBilled?: boolean | undefined; totalPaid?: boolean | undefined; totalAdjusted?: boolean | undefined; totalDue?: boolean | undefined; serviceLineTransactions?: boolean | undefined; - icn?: boolean | undefined; - updatedAt?: boolean | undefined; - updatedBy?: boolean | undefined; - serviceLines?: boolean | undefined; updatedById?: boolean | undefined; + mhPaidAmount?: boolean | undefined; + copayment?: boolean | undefined; + adjustment?: boolean | undefined; + updatedAt?: boolean | undefined; + serviceLines?: boolean | undefined; + commissionBatchItems?: boolean | undefined; + updatedBy?: boolean | undefined; _count?: boolean | undefined; }, { status?: boolean | undefined; @@ -49,20 +61,26 @@ export declare const PaymentFindFirstSelectZodSchema: z.ZodObject<{ createdAt?: boolean | undefined; patientId?: boolean | undefined; patient?: boolean | undefined; - notes?: boolean | undefined; + npiProviderId?: boolean | undefined; + npiProvider?: boolean | undefined; userId?: boolean | undefined; claimId?: boolean | undefined; claim?: boolean | undefined; + notes?: boolean | undefined; + icn?: boolean | undefined; totalBilled?: boolean | undefined; totalPaid?: boolean | undefined; totalAdjusted?: boolean | undefined; totalDue?: boolean | undefined; serviceLineTransactions?: boolean | undefined; - icn?: boolean | undefined; - updatedAt?: boolean | undefined; - updatedBy?: boolean | undefined; - serviceLines?: boolean | undefined; updatedById?: boolean | undefined; + mhPaidAmount?: boolean | undefined; + copayment?: boolean | undefined; + adjustment?: boolean | undefined; + updatedAt?: boolean | undefined; + serviceLines?: boolean | undefined; + commissionBatchItems?: boolean | undefined; + updatedBy?: boolean | undefined; _count?: boolean | undefined; }>; export declare const PaymentFindFirstSchema: z.ZodType; @@ -74,7 +92,7 @@ export declare const PaymentFindFirstZodSchema: z.ZodObject<{ cursor: z.ZodOptional>; take: z.ZodOptional; skip: z.ZodOptional; - distinct: z.ZodOptional, z.ZodArray, "many">]>>; + distinct: z.ZodOptional, z.ZodArray, "many">]>>; }, "strict", z.ZodTypeAny, { where?: Prisma.PaymentWhereInput | undefined; include?: Prisma.PaymentInclude | undefined; @@ -83,7 +101,7 @@ export declare const PaymentFindFirstZodSchema: z.ZodObject<{ cursor?: Prisma.PaymentWhereUniqueInput | undefined; take?: number | undefined; skip?: number | 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; + distinct?: "status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "userId" | "claimId" | "notes" | "icn" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "updatedById" | "mhPaidAmount" | "copayment" | "adjustment" | "updatedAt" | ("status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "userId" | "claimId" | "notes" | "icn" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "updatedById" | "mhPaidAmount" | "copayment" | "adjustment" | "updatedAt")[] | undefined; }, { where?: Prisma.PaymentWhereInput | undefined; include?: Prisma.PaymentInclude | undefined; @@ -92,6 +110,6 @@ export declare const PaymentFindFirstZodSchema: z.ZodObject<{ cursor?: Prisma.PaymentWhereUniqueInput | undefined; take?: number | undefined; skip?: number | 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; + distinct?: "status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "userId" | "claimId" | "notes" | "icn" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "updatedById" | "mhPaidAmount" | "copayment" | "adjustment" | "updatedAt" | ("status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "userId" | "claimId" | "notes" | "icn" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "updatedById" | "mhPaidAmount" | "copayment" | "adjustment" | "updatedAt")[] | undefined; }>; //# sourceMappingURL=findFirstPayment.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstPayment.schema.d.ts.map b/packages/db/shared/schemas/findFirstPayment.schema.d.ts.map index cd0cd03d..6b9ea256 100644 --- a/packages/db/shared/schemas/findFirstPayment.schema.d.ts.map +++ b/packages/db/shared/schemas/findFirstPayment.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"findFirstPayment.schema.d.ts","sourceRoot":"","sources":["findFirstPayment.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,4BAA4B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,aAAa,CAqBd,CAAC;AAE5D,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqB/B,CAAC;AAEd,eAAO,MAAM,sBAAsB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,oBAAoB,CAAqkB,CAAC;AAEhpB,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA+gB,CAAC"} \ No newline at end of file +{"version":3,"file":"findFirstPayment.schema.d.ts","sourceRoot":"","sources":["findFirstPayment.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,4BAA4B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,aAAa,CA2Bd,CAAC;AAE5D,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA2B/B,CAAC;AAEd,eAAO,MAAM,sBAAsB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,oBAAoB,CAAqkB,CAAC;AAEhpB,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA+gB,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstSeleniumSettings.schema.js b/packages/db/shared/schemas/findFirstSeleniumSettings.schema.js new file mode 100644 index 00000000..a4263164 --- /dev/null +++ b/packages/db/shared/schemas/findFirstSeleniumSettings.schema.js @@ -0,0 +1,58 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsFindFirstZodSchema = exports.SeleniumSettingsFindFirstSchema = exports.SeleniumSettingsFindFirstSelectZodSchema = exports.SeleniumSettingsFindFirstSelectSchema = void 0; +const z = __importStar(require("zod")); +const SeleniumSettingsInclude_schema_1 = require("./objects/SeleniumSettingsInclude.schema"); +const SeleniumSettingsOrderByWithRelationInput_schema_1 = require("./objects/SeleniumSettingsOrderByWithRelationInput.schema"); +const SeleniumSettingsWhereInput_schema_1 = require("./objects/SeleniumSettingsWhereInput.schema"); +const SeleniumSettingsWhereUniqueInput_schema_1 = require("./objects/SeleniumSettingsWhereUniqueInput.schema"); +const SeleniumSettingsScalarFieldEnum_schema_1 = require("./enums/SeleniumSettingsScalarFieldEnum.schema"); +// Select schema needs to be in file to prevent circular imports +//------------------------------------------------------ +exports.SeleniumSettingsFindFirstSelectSchema = z.object({ + id: z.boolean().optional(), + userId: z.boolean().optional(), + paymentGroupId: z.boolean().optional(), + user: z.boolean().optional() +}).strict(); +exports.SeleniumSettingsFindFirstSelectZodSchema = z.object({ + id: z.boolean().optional(), + userId: z.boolean().optional(), + paymentGroupId: z.boolean().optional(), + user: z.boolean().optional() +}).strict(); +exports.SeleniumSettingsFindFirstSchema = z.object({ select: exports.SeleniumSettingsFindFirstSelectSchema.optional(), include: z.lazy(() => SeleniumSettingsInclude_schema_1.SeleniumSettingsIncludeObjectSchema.optional()), orderBy: z.union([SeleniumSettingsOrderByWithRelationInput_schema_1.SeleniumSettingsOrderByWithRelationInputObjectSchema, SeleniumSettingsOrderByWithRelationInput_schema_1.SeleniumSettingsOrderByWithRelationInputObjectSchema.array()]).optional(), where: SeleniumSettingsWhereInput_schema_1.SeleniumSettingsWhereInputObjectSchema.optional(), cursor: SeleniumSettingsWhereUniqueInput_schema_1.SeleniumSettingsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([SeleniumSettingsScalarFieldEnum_schema_1.SeleniumSettingsScalarFieldEnumSchema, SeleniumSettingsScalarFieldEnum_schema_1.SeleniumSettingsScalarFieldEnumSchema.array()]).optional() }).strict(); +exports.SeleniumSettingsFindFirstZodSchema = z.object({ select: exports.SeleniumSettingsFindFirstSelectSchema.optional(), include: z.lazy(() => SeleniumSettingsInclude_schema_1.SeleniumSettingsIncludeObjectSchema.optional()), orderBy: z.union([SeleniumSettingsOrderByWithRelationInput_schema_1.SeleniumSettingsOrderByWithRelationInputObjectSchema, SeleniumSettingsOrderByWithRelationInput_schema_1.SeleniumSettingsOrderByWithRelationInputObjectSchema.array()]).optional(), where: SeleniumSettingsWhereInput_schema_1.SeleniumSettingsWhereInputObjectSchema.optional(), cursor: SeleniumSettingsWhereUniqueInput_schema_1.SeleniumSettingsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([SeleniumSettingsScalarFieldEnum_schema_1.SeleniumSettingsScalarFieldEnumSchema, SeleniumSettingsScalarFieldEnum_schema_1.SeleniumSettingsScalarFieldEnumSchema.array()]).optional() }).strict(); diff --git a/packages/db/shared/schemas/findFirstServiceLine.schema.d.ts b/packages/db/shared/schemas/findFirstServiceLine.schema.d.ts index a3b1c12b..897887e2 100644 --- a/packages/db/shared/schemas/findFirstServiceLine.schema.d.ts +++ b/packages/db/shared/schemas/findFirstServiceLine.schema.d.ts @@ -11,6 +11,9 @@ export declare const ServiceLineFindFirstSelectZodSchema: z.ZodObject<{ arch: z.ZodOptional; toothNumber: z.ZodOptional; toothSurface: z.ZodOptional; + icn: z.ZodOptional; + paidCode: z.ZodOptional; + allowedAmount: z.ZodOptional; totalBilled: z.ZodOptional; totalPaid: z.ZodOptional; totalAdjusted: z.ZodOptional; @@ -33,6 +36,9 @@ export declare const ServiceLineFindFirstSelectZodSchema: z.ZodObject<{ procedureDate?: boolean | undefined; quad?: boolean | undefined; arch?: boolean | undefined; + icn?: boolean | undefined; + paidCode?: boolean | undefined; + allowedAmount?: boolean | undefined; totalBilled?: boolean | undefined; totalPaid?: boolean | undefined; totalAdjusted?: boolean | undefined; @@ -52,6 +58,9 @@ export declare const ServiceLineFindFirstSelectZodSchema: z.ZodObject<{ procedureDate?: boolean | undefined; quad?: boolean | undefined; arch?: boolean | undefined; + icn?: boolean | undefined; + paidCode?: boolean | undefined; + allowedAmount?: boolean | undefined; totalBilled?: boolean | undefined; totalPaid?: boolean | undefined; totalAdjusted?: boolean | undefined; @@ -68,7 +77,7 @@ export declare const ServiceLineFindFirstZodSchema: z.ZodObject<{ cursor: z.ZodOptional>; take: z.ZodOptional; skip: z.ZodOptional; - distinct: z.ZodOptional, z.ZodArray, "many">]>>; + distinct: z.ZodOptional, z.ZodArray, "many">]>>; }, "strict", z.ZodTypeAny, { where?: Prisma.ServiceLineWhereInput | undefined; include?: Prisma.ServiceLineInclude | undefined; @@ -77,7 +86,7 @@ export declare const ServiceLineFindFirstZodSchema: z.ZodObject<{ cursor?: Prisma.ServiceLineWhereUniqueInput | undefined; take?: number | undefined; skip?: number | undefined; - distinct?: "status" | "id" | "procedureCode" | "toothNumber" | "toothSurface" | "claimId" | "paymentId" | "procedureDate" | "quad" | "arch" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | ("status" | "id" | "procedureCode" | "toothNumber" | "toothSurface" | "claimId" | "paymentId" | "procedureDate" | "quad" | "arch" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue")[] | undefined; + distinct?: "status" | "id" | "procedureCode" | "toothNumber" | "toothSurface" | "claimId" | "paymentId" | "procedureDate" | "quad" | "arch" | "icn" | "paidCode" | "allowedAmount" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | ("status" | "id" | "procedureCode" | "toothNumber" | "toothSurface" | "claimId" | "paymentId" | "procedureDate" | "quad" | "arch" | "icn" | "paidCode" | "allowedAmount" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue")[] | undefined; }, { where?: Prisma.ServiceLineWhereInput | undefined; include?: Prisma.ServiceLineInclude | undefined; @@ -86,6 +95,6 @@ export declare const ServiceLineFindFirstZodSchema: z.ZodObject<{ cursor?: Prisma.ServiceLineWhereUniqueInput | undefined; take?: number | undefined; skip?: number | undefined; - distinct?: "status" | "id" | "procedureCode" | "toothNumber" | "toothSurface" | "claimId" | "paymentId" | "procedureDate" | "quad" | "arch" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | ("status" | "id" | "procedureCode" | "toothNumber" | "toothSurface" | "claimId" | "paymentId" | "procedureDate" | "quad" | "arch" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue")[] | undefined; + distinct?: "status" | "id" | "procedureCode" | "toothNumber" | "toothSurface" | "claimId" | "paymentId" | "procedureDate" | "quad" | "arch" | "icn" | "paidCode" | "allowedAmount" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | ("status" | "id" | "procedureCode" | "toothNumber" | "toothSurface" | "claimId" | "paymentId" | "procedureDate" | "quad" | "arch" | "icn" | "paidCode" | "allowedAmount" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue")[] | undefined; }>; //# sourceMappingURL=findFirstServiceLine.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstServiceLine.schema.d.ts.map b/packages/db/shared/schemas/findFirstServiceLine.schema.d.ts.map index 54e9379c..81f788b0 100644 --- a/packages/db/shared/schemas/findFirstServiceLine.schema.d.ts.map +++ b/packages/db/shared/schemas/findFirstServiceLine.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"findFirstServiceLine.schema.d.ts","sourceRoot":"","sources":["findFirstServiceLine.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,CAmBlB,CAAC;AAEhE,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmBnC,CAAC;AAEd,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,wBAAwB,CAAymB,CAAC;AAE5rB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA+iB,CAAC"} \ No newline at end of file +{"version":3,"file":"findFirstServiceLine.schema.d.ts","sourceRoot":"","sources":["findFirstServiceLine.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,CAsBlB,CAAC;AAEhE,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAsBnC,CAAC;AAEd,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,wBAAwB,CAAymB,CAAC;AAE5rB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA+iB,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstServiceLineTransaction.schema.d.ts b/packages/db/shared/schemas/findFirstServiceLineTransaction.schema.d.ts index 99f22253..1d3aea48 100644 --- a/packages/db/shared/schemas/findFirstServiceLineTransaction.schema.d.ts +++ b/packages/db/shared/schemas/findFirstServiceLineTransaction.schema.d.ts @@ -19,28 +19,28 @@ export declare const ServiceLineTransactionFindFirstSelectZodSchema: z.ZodObject id?: boolean | undefined; createdAt?: boolean | undefined; notes?: boolean | undefined; - paymentId?: boolean | undefined; + serviceLineId?: boolean | undefined; transactionId?: boolean | undefined; paidAmount?: boolean | undefined; adjustedAmount?: boolean | undefined; method?: boolean | undefined; receivedDate?: boolean | undefined; payerName?: boolean | undefined; - serviceLineId?: boolean | undefined; + paymentId?: boolean | undefined; payment?: boolean | undefined; serviceLine?: boolean | undefined; }, { id?: boolean | undefined; createdAt?: boolean | undefined; notes?: boolean | undefined; - paymentId?: boolean | undefined; + serviceLineId?: boolean | undefined; transactionId?: boolean | undefined; paidAmount?: boolean | undefined; adjustedAmount?: boolean | undefined; method?: boolean | undefined; receivedDate?: boolean | undefined; payerName?: boolean | undefined; - serviceLineId?: boolean | undefined; + paymentId?: boolean | undefined; payment?: boolean | undefined; serviceLine?: boolean | undefined; }>; @@ -62,7 +62,7 @@ export declare const ServiceLineTransactionFindFirstZodSchema: z.ZodObject<{ cursor?: Prisma.ServiceLineTransactionWhereUniqueInput | undefined; take?: number | undefined; skip?: number | 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; + distinct?: "id" | "createdAt" | "notes" | "serviceLineId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "paymentId" | ("id" | "createdAt" | "notes" | "serviceLineId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "paymentId")[] | undefined; }, { where?: Prisma.ServiceLineTransactionWhereInput | undefined; include?: Prisma.ServiceLineTransactionInclude | undefined; @@ -71,6 +71,6 @@ export declare const ServiceLineTransactionFindFirstZodSchema: z.ZodObject<{ cursor?: Prisma.ServiceLineTransactionWhereUniqueInput | undefined; take?: number | undefined; skip?: number | 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; + distinct?: "id" | "createdAt" | "notes" | "serviceLineId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "paymentId" | ("id" | "createdAt" | "notes" | "serviceLineId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "paymentId")[] | undefined; }>; //# sourceMappingURL=findFirstServiceLineTransaction.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstStaff.schema.d.ts b/packages/db/shared/schemas/findFirstStaff.schema.d.ts index d7d7913d..0db491f3 100644 --- a/packages/db/shared/schemas/findFirstStaff.schema.d.ts +++ b/packages/db/shared/schemas/findFirstStaff.schema.d.ts @@ -16,26 +16,26 @@ export declare const StaffFindFirstSelectZodSchema: z.ZodObject<{ }, "strict", z.ZodTypeAny, { id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; - claims?: boolean | undefined; + user?: boolean | undefined; name?: boolean | undefined; email?: boolean | undefined; role?: boolean | undefined; phone?: boolean | undefined; appointments?: boolean | undefined; + claims?: boolean | undefined; _count?: boolean | undefined; }, { id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; - claims?: boolean | undefined; + user?: boolean | undefined; name?: boolean | undefined; email?: boolean | undefined; role?: boolean | undefined; phone?: boolean | undefined; appointments?: boolean | undefined; + claims?: boolean | undefined; _count?: boolean | undefined; }>; export declare const StaffFindFirstSchema: z.ZodType; diff --git a/packages/db/shared/schemas/findFirstUser.schema.d.ts b/packages/db/shared/schemas/findFirstUser.schema.d.ts index beb2482b..c40c1a1c 100644 --- a/packages/db/shared/schemas/findFirstUser.schema.d.ts +++ b/packages/db/shared/schemas/findFirstUser.schema.d.ts @@ -6,13 +6,19 @@ export declare const UserFindFirstSelectZodSchema: z.ZodObject<{ username: z.ZodOptional; password: z.ZodOptional; autoBackupEnabled: z.ZodOptional; + autoBackupHour: z.ZodOptional; usbBackupEnabled: z.ZodOptional; + usbBackupHour: z.ZodOptional; + autoMhCheckEnabled: z.ZodOptional; + autoMhCheckDayOfWeek: z.ZodOptional; + autoMhCheckHour: z.ZodOptional; patients: z.ZodOptional; appointments: z.ZodOptional; staff: z.ZodOptional; npiProviders: z.ZodOptional; claims: z.ZodOptional; insuranceCredentials: z.ZodOptional; + shoppingVendors: z.ZodOptional; updatedPayments: z.ZodOptional; backups: z.ZodOptional; backupDestinations: z.ZodOptional; @@ -20,46 +26,85 @@ export declare const UserFindFirstSelectZodSchema: z.ZodObject<{ cloudFolders: z.ZodOptional; cloudFiles: z.ZodOptional; communications: z.ZodOptional; + twilioSettings: z.ZodOptional; + aiSettings: z.ZodOptional; + officeHours: z.ZodOptional; + officeContact: z.ZodOptional; + procedureTimeslot: z.ZodOptional; + insuranceContacts: z.ZodOptional; + patientConversations: z.ZodOptional; + labRxTemplates: z.ZodOptional; + seleniumSettings: z.ZodOptional; _count: z.ZodOptional; }, "strict", z.ZodTypeAny, { id?: boolean | undefined; - staff?: boolean | undefined; - claims?: boolean | undefined; - appointments?: boolean | undefined; username?: boolean | undefined; password?: boolean | undefined; - communications?: boolean | undefined; + appointments?: boolean | undefined; + staff?: boolean | undefined; + claims?: boolean | undefined; autoBackupEnabled?: boolean | undefined; + autoBackupHour?: boolean | undefined; usbBackupEnabled?: boolean | undefined; + usbBackupHour?: boolean | undefined; + autoMhCheckEnabled?: boolean | undefined; + autoMhCheckDayOfWeek?: boolean | undefined; + autoMhCheckHour?: boolean | undefined; patients?: boolean | undefined; npiProviders?: boolean | undefined; insuranceCredentials?: boolean | undefined; + shoppingVendors?: boolean | undefined; updatedPayments?: boolean | undefined; backups?: boolean | undefined; backupDestinations?: boolean | undefined; notifications?: boolean | undefined; cloudFolders?: boolean | undefined; cloudFiles?: boolean | undefined; + communications?: boolean | undefined; + twilioSettings?: boolean | undefined; + aiSettings?: boolean | undefined; + officeHours?: boolean | undefined; + officeContact?: boolean | undefined; + procedureTimeslot?: boolean | undefined; + insuranceContacts?: boolean | undefined; + labRxTemplates?: boolean | undefined; + seleniumSettings?: boolean | undefined; + patientConversations?: boolean | undefined; _count?: boolean | undefined; }, { id?: boolean | undefined; - staff?: boolean | undefined; - claims?: boolean | undefined; - appointments?: boolean | undefined; username?: boolean | undefined; password?: boolean | undefined; - communications?: boolean | undefined; + appointments?: boolean | undefined; + staff?: boolean | undefined; + claims?: boolean | undefined; autoBackupEnabled?: boolean | undefined; + autoBackupHour?: boolean | undefined; usbBackupEnabled?: boolean | undefined; + usbBackupHour?: boolean | undefined; + autoMhCheckEnabled?: boolean | undefined; + autoMhCheckDayOfWeek?: boolean | undefined; + autoMhCheckHour?: boolean | undefined; patients?: boolean | undefined; npiProviders?: boolean | undefined; insuranceCredentials?: boolean | undefined; + shoppingVendors?: boolean | undefined; updatedPayments?: boolean | undefined; backups?: boolean | undefined; backupDestinations?: boolean | undefined; notifications?: boolean | undefined; cloudFolders?: boolean | undefined; cloudFiles?: boolean | undefined; + communications?: boolean | undefined; + twilioSettings?: boolean | undefined; + aiSettings?: boolean | undefined; + officeHours?: boolean | undefined; + officeContact?: boolean | undefined; + procedureTimeslot?: boolean | undefined; + insuranceContacts?: boolean | undefined; + labRxTemplates?: boolean | undefined; + seleniumSettings?: boolean | undefined; + patientConversations?: boolean | undefined; _count?: boolean | undefined; }>; export declare const UserFindFirstSchema: z.ZodType; @@ -71,7 +116,7 @@ export declare const UserFindFirstZodSchema: z.ZodObject<{ cursor: z.ZodOptional>; take: z.ZodOptional; skip: z.ZodOptional; - distinct: z.ZodOptional, z.ZodArray, "many">]>>; + distinct: z.ZodOptional, z.ZodArray, "many">]>>; }, "strict", z.ZodTypeAny, { where?: Prisma.UserWhereInput | undefined; include?: Prisma.UserInclude | undefined; @@ -80,7 +125,7 @@ export declare const UserFindFirstZodSchema: z.ZodObject<{ cursor?: Prisma.UserWhereUniqueInput | undefined; take?: number | undefined; skip?: number | undefined; - distinct?: "id" | "username" | "password" | "autoBackupEnabled" | "usbBackupEnabled" | ("id" | "username" | "password" | "autoBackupEnabled" | "usbBackupEnabled")[] | undefined; + distinct?: "id" | "username" | "password" | "autoBackupEnabled" | "autoBackupHour" | "usbBackupEnabled" | "usbBackupHour" | "autoMhCheckEnabled" | "autoMhCheckDayOfWeek" | "autoMhCheckHour" | ("id" | "username" | "password" | "autoBackupEnabled" | "autoBackupHour" | "usbBackupEnabled" | "usbBackupHour" | "autoMhCheckEnabled" | "autoMhCheckDayOfWeek" | "autoMhCheckHour")[] | undefined; }, { where?: Prisma.UserWhereInput | undefined; include?: Prisma.UserInclude | undefined; @@ -89,6 +134,6 @@ export declare const UserFindFirstZodSchema: z.ZodObject<{ cursor?: Prisma.UserWhereUniqueInput | undefined; take?: number | undefined; skip?: number | undefined; - distinct?: "id" | "username" | "password" | "autoBackupEnabled" | "usbBackupEnabled" | ("id" | "username" | "password" | "autoBackupEnabled" | "usbBackupEnabled")[] | undefined; + distinct?: "id" | "username" | "password" | "autoBackupEnabled" | "autoBackupHour" | "usbBackupEnabled" | "usbBackupHour" | "autoMhCheckEnabled" | "autoMhCheckDayOfWeek" | "autoMhCheckHour" | ("id" | "username" | "password" | "autoBackupEnabled" | "autoBackupHour" | "usbBackupEnabled" | "usbBackupHour" | "autoMhCheckEnabled" | "autoMhCheckDayOfWeek" | "autoMhCheckHour")[] | undefined; }>; //# sourceMappingURL=findFirstUser.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstUser.schema.d.ts.map b/packages/db/shared/schemas/findFirstUser.schema.d.ts.map index 6cf7a9da..12c1d4f9 100644 --- a/packages/db/shared/schemas/findFirstUser.schema.d.ts.map +++ b/packages/db/shared/schemas/findFirstUser.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"findFirstUser.schema.d.ts","sourceRoot":"","sources":["findFirstUser.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,yBAAyB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,UAAU,CAoBX,CAAC;AAEzD,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoB5B,CAAC;AAEd,eAAO,MAAM,mBAAmB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,iBAAiB,CAA0iB,CAAC;AAE/mB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAuf,CAAC"} \ No newline at end of file +{"version":3,"file":"findFirstUser.schema.d.ts","sourceRoot":"","sources":["findFirstUser.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,yBAAyB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,UAAU,CAmCX,CAAC;AAEzD,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmC5B,CAAC;AAEd,eAAO,MAAM,mBAAmB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,iBAAiB,CAA0iB,CAAC;AAE/mB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAuf,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/findFirstUser.schema.js b/packages/db/shared/schemas/findFirstUser.schema.js index 27953467..89d05d5b 100644 --- a/packages/db/shared/schemas/findFirstUser.schema.js +++ b/packages/db/shared/schemas/findFirstUser.schema.js @@ -74,6 +74,8 @@ exports.UserFindFirstSelectSchema = z.object({ procedureTimeslot: z.boolean().optional(), insuranceContacts: z.boolean().optional(), patientConversations: z.boolean().optional(), + labRxTemplates: z.boolean().optional(), + seleniumSettings: z.boolean().optional(), _count: z.boolean().optional() }).strict(); exports.UserFindFirstSelectZodSchema = z.object({ @@ -108,6 +110,8 @@ exports.UserFindFirstSelectZodSchema = z.object({ procedureTimeslot: z.boolean().optional(), insuranceContacts: z.boolean().optional(), patientConversations: z.boolean().optional(), + labRxTemplates: z.boolean().optional(), + seleniumSettings: z.boolean().optional(), _count: z.boolean().optional() }).strict(); exports.UserFindFirstSchema = z.object({ select: exports.UserFindFirstSelectSchema.optional(), include: z.lazy(() => UserInclude_schema_1.UserIncludeObjectSchema.optional()), orderBy: z.union([UserOrderByWithRelationInput_schema_1.UserOrderByWithRelationInputObjectSchema, UserOrderByWithRelationInput_schema_1.UserOrderByWithRelationInputObjectSchema.array()]).optional(), where: UserWhereInput_schema_1.UserWhereInputObjectSchema.optional(), cursor: UserWhereUniqueInput_schema_1.UserWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([UserScalarFieldEnum_schema_1.UserScalarFieldEnumSchema, UserScalarFieldEnum_schema_1.UserScalarFieldEnumSchema.array()]).optional() }).strict(); diff --git a/packages/db/shared/schemas/findManyAppointment.schema.d.ts b/packages/db/shared/schemas/findManyAppointment.schema.d.ts index d906f553..7bc10770 100644 --- a/packages/db/shared/schemas/findManyAppointment.schema.d.ts +++ b/packages/db/shared/schemas/findManyAppointment.schema.d.ts @@ -6,21 +6,26 @@ export declare const AppointmentFindManySelectZodSchema: z.ZodObject<{ patientId: z.ZodOptional; userId: z.ZodOptional; staffId: z.ZodOptional; + npiProviderId: z.ZodOptional; title: z.ZodOptional; date: z.ZodOptional; startTime: z.ZodOptional; endTime: z.ZodOptional; type: z.ZodOptional; + typeLocked: z.ZodOptional; notes: z.ZodOptional; procedureCodeNotes: z.ZodOptional; status: z.ZodOptional; + movedByAi: z.ZodOptional; createdAt: z.ZodOptional; eligibilityStatus: z.ZodOptional; patient: z.ZodOptional; user: z.ZodOptional; staff: z.ZodOptional; + npiProvider: z.ZodOptional; procedures: z.ZodOptional; claims: z.ZodOptional; + files: z.ZodOptional; _count: z.ZodOptional; }, "strict", z.ZodTypeAny, { type?: boolean | undefined; @@ -31,17 +36,22 @@ export declare const AppointmentFindManySelectZodSchema: z.ZodObject<{ createdAt?: boolean | undefined; patientId?: boolean | undefined; patient?: boolean | undefined; + npiProviderId?: boolean | undefined; + npiProvider?: boolean | undefined; + userId?: boolean | undefined; + user?: boolean | undefined; startTime?: boolean | undefined; endTime?: boolean | undefined; + typeLocked?: boolean | undefined; notes?: boolean | undefined; procedureCodeNotes?: boolean | undefined; + movedByAi?: boolean | undefined; eligibilityStatus?: boolean | undefined; - user?: boolean | undefined; staff?: boolean | undefined; procedures?: boolean | undefined; - userId?: boolean | undefined; - staffId?: boolean | undefined; claims?: boolean | undefined; + files?: boolean | undefined; + staffId?: boolean | undefined; _count?: boolean | undefined; }, { type?: boolean | undefined; @@ -52,17 +62,22 @@ export declare const AppointmentFindManySelectZodSchema: z.ZodObject<{ createdAt?: boolean | undefined; patientId?: boolean | undefined; patient?: boolean | undefined; + npiProviderId?: boolean | undefined; + npiProvider?: boolean | undefined; + userId?: boolean | undefined; + user?: boolean | undefined; startTime?: boolean | undefined; endTime?: boolean | undefined; + typeLocked?: boolean | undefined; notes?: boolean | undefined; procedureCodeNotes?: boolean | undefined; + movedByAi?: boolean | undefined; eligibilityStatus?: boolean | undefined; - user?: boolean | undefined; staff?: boolean | undefined; procedures?: boolean | undefined; - userId?: boolean | undefined; - staffId?: boolean | undefined; claims?: boolean | undefined; + files?: boolean | undefined; + staffId?: boolean | undefined; _count?: boolean | undefined; }>; export declare const AppointmentFindManySchema: z.ZodType; @@ -74,7 +89,7 @@ export declare const AppointmentFindManyZodSchema: z.ZodObject<{ cursor: z.ZodOptional>; take: z.ZodOptional; skip: z.ZodOptional; - distinct: z.ZodOptional, z.ZodArray, "many">]>>; + distinct: z.ZodOptional, z.ZodArray, "many">]>>; }, "strict", z.ZodTypeAny, { where?: Prisma.AppointmentWhereInput | undefined; include?: Prisma.AppointmentInclude | undefined; @@ -83,7 +98,7 @@ export declare const AppointmentFindManyZodSchema: z.ZodObject<{ cursor?: Prisma.AppointmentWhereUniqueInput | undefined; take?: number | undefined; skip?: number | 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; + distinct?: "type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "npiProviderId" | "userId" | "startTime" | "endTime" | "typeLocked" | "notes" | "procedureCodeNotes" | "movedByAi" | "eligibilityStatus" | "staffId" | ("type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "npiProviderId" | "userId" | "startTime" | "endTime" | "typeLocked" | "notes" | "procedureCodeNotes" | "movedByAi" | "eligibilityStatus" | "staffId")[] | undefined; }, { where?: Prisma.AppointmentWhereInput | undefined; include?: Prisma.AppointmentInclude | undefined; @@ -92,6 +107,6 @@ export declare const AppointmentFindManyZodSchema: z.ZodObject<{ cursor?: Prisma.AppointmentWhereUniqueInput | undefined; take?: number | undefined; skip?: number | 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; + distinct?: "type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "npiProviderId" | "userId" | "startTime" | "endTime" | "typeLocked" | "notes" | "procedureCodeNotes" | "movedByAi" | "eligibilityStatus" | "staffId" | ("type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "npiProviderId" | "userId" | "startTime" | "endTime" | "typeLocked" | "notes" | "procedureCodeNotes" | "movedByAi" | "eligibilityStatus" | "staffId")[] | undefined; }>; //# sourceMappingURL=findManyAppointment.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/findManyAppointment.schema.d.ts.map b/packages/db/shared/schemas/findManyAppointment.schema.d.ts.map index fa4f132f..84777269 100644 --- a/packages/db/shared/schemas/findManyAppointment.schema.d.ts.map +++ b/packages/db/shared/schemas/findManyAppointment.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"findManyAppointment.schema.d.ts","sourceRoot":"","sources":["findManyAppointment.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,iBAAiB,CAqBjB,CAAC;AAEhE,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqBlC,CAAC;AAEd,eAAO,MAAM,yBAAyB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,uBAAuB,CAAumB,CAAC;AAExrB,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA8iB,CAAC"} \ No newline at end of file +{"version":3,"file":"findManyAppointment.schema.d.ts","sourceRoot":"","sources":["findManyAppointment.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,iBAAiB,CA0BjB,CAAC;AAEhE,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0BlC,CAAC;AAEd,eAAO,MAAM,yBAAyB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,uBAAuB,CAAumB,CAAC;AAExrB,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA8iB,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/findManyAppointment.schema.js b/packages/db/shared/schemas/findManyAppointment.schema.js index 9df7ba2c..4b825df7 100644 --- a/packages/db/shared/schemas/findManyAppointment.schema.js +++ b/packages/db/shared/schemas/findManyAppointment.schema.js @@ -47,6 +47,7 @@ exports.AppointmentFindManySelectSchema = z.object({ patientId: z.boolean().optional(), userId: z.boolean().optional(), staffId: z.boolean().optional(), + npiProviderId: z.boolean().optional(), title: z.boolean().optional(), date: z.boolean().optional(), startTime: z.boolean().optional(), @@ -62,6 +63,7 @@ exports.AppointmentFindManySelectSchema = z.object({ patient: z.boolean().optional(), user: z.boolean().optional(), staff: z.boolean().optional(), + npiProvider: z.boolean().optional(), procedures: z.boolean().optional(), claims: z.boolean().optional(), files: z.boolean().optional(), @@ -72,6 +74,7 @@ exports.AppointmentFindManySelectZodSchema = z.object({ patientId: z.boolean().optional(), userId: z.boolean().optional(), staffId: z.boolean().optional(), + npiProviderId: z.boolean().optional(), title: z.boolean().optional(), date: z.boolean().optional(), startTime: z.boolean().optional(), @@ -87,6 +90,7 @@ exports.AppointmentFindManySelectZodSchema = z.object({ patient: z.boolean().optional(), user: z.boolean().optional(), staff: z.boolean().optional(), + npiProvider: z.boolean().optional(), procedures: z.boolean().optional(), claims: z.boolean().optional(), files: z.boolean().optional(), diff --git a/packages/db/shared/schemas/findManyAppointment.schema.ts b/packages/db/shared/schemas/findManyAppointment.schema.ts index 093a6801..9634e322 100644 --- a/packages/db/shared/schemas/findManyAppointment.schema.ts +++ b/packages/db/shared/schemas/findManyAppointment.schema.ts @@ -14,6 +14,7 @@ export const AppointmentFindManySelectSchema: z.ZodType; export declare const BackupDestinationFindManySchema: z.ZodType; diff --git a/packages/db/shared/schemas/findManyClaim.schema.d.ts b/packages/db/shared/schemas/findManyClaim.schema.d.ts index f13b3139..24adfa87 100644 --- a/packages/db/shared/schemas/findManyClaim.schema.d.ts +++ b/packages/db/shared/schemas/findManyClaim.schema.d.ts @@ -19,6 +19,7 @@ export declare const ClaimFindManySelectZodSchema: z.ZodObject<{ updatedAt: z.ZodOptional; status: z.ZodOptional; claimNumber: z.ZodOptional; + preAuthNumber: z.ZodOptional; npiProviderId: z.ZodOptional; patient: z.ZodOptional; appointment: z.ZodOptional; @@ -39,9 +40,9 @@ export declare const ClaimFindManySelectZodSchema: z.ZodObject<{ appointmentId?: boolean | undefined; appointment?: boolean | undefined; npiProvider?: boolean | undefined; + userId?: boolean | undefined; user?: boolean | undefined; staff?: boolean | undefined; - userId?: boolean | undefined; staffId?: boolean | undefined; payment?: boolean | undefined; updatedAt?: boolean | undefined; @@ -55,6 +56,7 @@ export declare const ClaimFindManySelectZodSchema: z.ZodObject<{ serviceDate?: boolean | undefined; insuranceProvider?: boolean | undefined; claimNumber?: boolean | undefined; + preAuthNumber?: boolean | undefined; claimFiles?: boolean | undefined; _count?: boolean | undefined; }, { @@ -67,9 +69,9 @@ export declare const ClaimFindManySelectZodSchema: z.ZodObject<{ appointmentId?: boolean | undefined; appointment?: boolean | undefined; npiProvider?: boolean | undefined; + userId?: boolean | undefined; user?: boolean | undefined; staff?: boolean | undefined; - userId?: boolean | undefined; staffId?: boolean | undefined; payment?: boolean | undefined; updatedAt?: boolean | undefined; @@ -83,6 +85,7 @@ export declare const ClaimFindManySelectZodSchema: z.ZodObject<{ serviceDate?: boolean | undefined; insuranceProvider?: boolean | undefined; claimNumber?: boolean | undefined; + preAuthNumber?: boolean | undefined; claimFiles?: boolean | undefined; _count?: boolean | undefined; }>; @@ -95,7 +98,7 @@ export declare const ClaimFindManyZodSchema: z.ZodObject<{ cursor: z.ZodOptional>; take: z.ZodOptional; skip: z.ZodOptional; - distinct: z.ZodOptional, z.ZodArray, "many">]>>; + distinct: z.ZodOptional, z.ZodArray, "many">]>>; }, "strict", z.ZodTypeAny, { where?: Prisma.ClaimWhereInput | undefined; include?: Prisma.ClaimInclude | undefined; @@ -104,7 +107,7 @@ export declare const ClaimFindManyZodSchema: z.ZodObject<{ cursor?: Prisma.ClaimWhereUniqueInput | undefined; take?: number | undefined; skip?: number | 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; + distinct?: "status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber" | "preAuthNumber" | ("status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber" | "preAuthNumber")[] | undefined; }, { where?: Prisma.ClaimWhereInput | undefined; include?: Prisma.ClaimInclude | undefined; @@ -113,6 +116,6 @@ export declare const ClaimFindManyZodSchema: z.ZodObject<{ cursor?: Prisma.ClaimWhereUniqueInput | undefined; take?: number | undefined; skip?: number | 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; + distinct?: "status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber" | "preAuthNumber" | ("status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber" | "preAuthNumber")[] | undefined; }>; //# sourceMappingURL=findManyClaim.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/findManyClaim.schema.d.ts.map b/packages/db/shared/schemas/findManyClaim.schema.d.ts.map index b033dcd8..ec668956 100644 --- a/packages/db/shared/schemas/findManyClaim.schema.d.ts.map +++ b/packages/db/shared/schemas/findManyClaim.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"findManyClaim.schema.d.ts","sourceRoot":"","sources":["findManyClaim.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,yBAAyB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,WAAW,CA4BX,CAAC;AAE1D,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4B5B,CAAC;AAEd,eAAO,MAAM,mBAAmB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,iBAAiB,CAAijB,CAAC;AAEtnB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA8f,CAAC"} \ No newline at end of file +{"version":3,"file":"findManyClaim.schema.d.ts","sourceRoot":"","sources":["findManyClaim.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,yBAAyB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,WAAW,CA6BX,CAAC;AAE1D,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA6B5B,CAAC;AAEd,eAAO,MAAM,mBAAmB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,iBAAiB,CAAijB,CAAC;AAEtnB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA8f,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/findManyCloudFile.schema.d.ts b/packages/db/shared/schemas/findManyCloudFile.schema.d.ts index 9a935a41..1a6b4d75 100644 --- a/packages/db/shared/schemas/findManyCloudFile.schema.d.ts +++ b/packages/db/shared/schemas/findManyCloudFile.schema.d.ts @@ -20,8 +20,8 @@ export declare const CloudFileFindManySelectZodSchema: z.ZodObject<{ }, "strict", z.ZodTypeAny, { id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; name?: boolean | undefined; mimeType?: boolean | undefined; updatedAt?: boolean | undefined; @@ -36,8 +36,8 @@ export declare const CloudFileFindManySelectZodSchema: z.ZodObject<{ }, { id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; name?: boolean | undefined; mimeType?: boolean | undefined; updatedAt?: boolean | undefined; diff --git a/packages/db/shared/schemas/findManyCloudFolder.schema.d.ts b/packages/db/shared/schemas/findManyCloudFolder.schema.d.ts index 95132f2c..44a1146c 100644 --- a/packages/db/shared/schemas/findManyCloudFolder.schema.d.ts +++ b/packages/db/shared/schemas/findManyCloudFolder.schema.d.ts @@ -6,9 +6,11 @@ export declare const CloudFolderFindManySelectZodSchema: z.ZodObject<{ userId: z.ZodOptional; name: z.ZodOptional; parentId: z.ZodOptional; + patientId: z.ZodOptional; parent: z.ZodOptional; children: z.ZodOptional; user: z.ZodOptional; + patient: z.ZodOptional; files: z.ZodOptional; createdAt: z.ZodOptional; updatedAt: z.ZodOptional; @@ -16,24 +18,28 @@ export declare const CloudFolderFindManySelectZodSchema: z.ZodObject<{ }, "strict", z.ZodTypeAny, { id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; + patientId?: boolean | undefined; + patient?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; name?: boolean | undefined; + files?: boolean | undefined; updatedAt?: boolean | undefined; children?: boolean | undefined; - files?: boolean | undefined; parentId?: boolean | undefined; parent?: boolean | undefined; _count?: boolean | undefined; }, { id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; + patientId?: boolean | undefined; + patient?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; name?: boolean | undefined; + files?: boolean | undefined; updatedAt?: boolean | undefined; children?: boolean | undefined; - files?: boolean | undefined; parentId?: boolean | undefined; parent?: boolean | undefined; _count?: boolean | undefined; @@ -47,7 +53,7 @@ export declare const CloudFolderFindManyZodSchema: z.ZodObject<{ cursor: z.ZodOptional>; take: z.ZodOptional; skip: z.ZodOptional; - distinct: z.ZodOptional, z.ZodArray, "many">]>>; + distinct: z.ZodOptional, z.ZodArray, "many">]>>; }, "strict", z.ZodTypeAny, { where?: Prisma.CloudFolderWhereInput | undefined; include?: Prisma.CloudFolderInclude | undefined; @@ -56,7 +62,7 @@ export declare const CloudFolderFindManyZodSchema: z.ZodObject<{ cursor?: Prisma.CloudFolderWhereUniqueInput | undefined; take?: number | undefined; skip?: number | undefined; - distinct?: "id" | "createdAt" | "userId" | "name" | "updatedAt" | "parentId" | ("id" | "createdAt" | "userId" | "name" | "updatedAt" | "parentId")[] | undefined; + distinct?: "id" | "createdAt" | "patientId" | "userId" | "name" | "updatedAt" | "parentId" | ("id" | "createdAt" | "patientId" | "userId" | "name" | "updatedAt" | "parentId")[] | undefined; }, { where?: Prisma.CloudFolderWhereInput | undefined; include?: Prisma.CloudFolderInclude | undefined; @@ -65,6 +71,6 @@ export declare const CloudFolderFindManyZodSchema: z.ZodObject<{ cursor?: Prisma.CloudFolderWhereUniqueInput | undefined; take?: number | undefined; skip?: number | undefined; - distinct?: "id" | "createdAt" | "userId" | "name" | "updatedAt" | "parentId" | ("id" | "createdAt" | "userId" | "name" | "updatedAt" | "parentId")[] | undefined; + distinct?: "id" | "createdAt" | "patientId" | "userId" | "name" | "updatedAt" | "parentId" | ("id" | "createdAt" | "patientId" | "userId" | "name" | "updatedAt" | "parentId")[] | undefined; }>; //# sourceMappingURL=findManyCloudFolder.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/findManyCloudFolder.schema.d.ts.map b/packages/db/shared/schemas/findManyCloudFolder.schema.d.ts.map index 034fc314..62d9033f 100644 --- a/packages/db/shared/schemas/findManyCloudFolder.schema.d.ts.map +++ b/packages/db/shared/schemas/findManyCloudFolder.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"findManyCloudFolder.schema.d.ts","sourceRoot":"","sources":["findManyCloudFolder.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,iBAAiB,CAYjB,CAAC;AAEhE,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAYlC,CAAC;AAEd,eAAO,MAAM,yBAAyB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,uBAAuB,CAAumB,CAAC;AAExrB,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA8iB,CAAC"} \ No newline at end of file +{"version":3,"file":"findManyCloudFolder.schema.d.ts","sourceRoot":"","sources":["findManyCloudFolder.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,iBAAiB,CAcjB,CAAC;AAEhE,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAclC,CAAC;AAEd,eAAO,MAAM,yBAAyB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,uBAAuB,CAAumB,CAAC;AAExrB,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA8iB,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/findManyCommunication.schema.d.ts b/packages/db/shared/schemas/findManyCommunication.schema.d.ts index e8b59e26..7c8d2ab3 100644 --- a/packages/db/shared/schemas/findManyCommunication.schema.d.ts +++ b/packages/db/shared/schemas/findManyCommunication.schema.d.ts @@ -20,8 +20,8 @@ export declare const CommunicationFindManySelectZodSchema: z.ZodObject<{ createdAt?: boolean | undefined; patientId?: boolean | undefined; patient?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; channel?: boolean | undefined; direction?: boolean | undefined; body?: boolean | undefined; @@ -33,8 +33,8 @@ export declare const CommunicationFindManySelectZodSchema: z.ZodObject<{ createdAt?: boolean | undefined; patientId?: boolean | undefined; patient?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; channel?: boolean | undefined; direction?: boolean | undefined; body?: boolean | undefined; diff --git a/packages/db/shared/schemas/findManyDatabaseBackup.schema.d.ts b/packages/db/shared/schemas/findManyDatabaseBackup.schema.d.ts index d19a472c..5826ed96 100644 --- a/packages/db/shared/schemas/findManyDatabaseBackup.schema.d.ts +++ b/packages/db/shared/schemas/findManyDatabaseBackup.schema.d.ts @@ -9,13 +9,13 @@ export declare const DatabaseBackupFindManySelectZodSchema: z.ZodObject<{ }, "strict", z.ZodTypeAny, { id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; }, { id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; }>; export declare const DatabaseBackupFindManySchema: z.ZodType; export declare const DatabaseBackupFindManyZodSchema: z.ZodObject<{ diff --git a/packages/db/shared/schemas/findManyInsuranceCredential.schema.d.ts b/packages/db/shared/schemas/findManyInsuranceCredential.schema.d.ts index 5fbcc9ea..b6c0b860 100644 --- a/packages/db/shared/schemas/findManyInsuranceCredential.schema.d.ts +++ b/packages/db/shared/schemas/findManyInsuranceCredential.schema.d.ts @@ -10,18 +10,18 @@ export declare const InsuranceCredentialFindManySelectZodSchema: z.ZodObject<{ user: z.ZodOptional; }, "strict", z.ZodTypeAny, { id?: boolean | undefined; - user?: boolean | undefined; - userId?: boolean | undefined; siteKey?: boolean | undefined; username?: boolean | undefined; password?: boolean | undefined; + userId?: boolean | undefined; + user?: boolean | undefined; }, { id?: boolean | undefined; - user?: boolean | undefined; - userId?: boolean | undefined; siteKey?: boolean | undefined; username?: boolean | undefined; password?: boolean | undefined; + userId?: boolean | undefined; + user?: boolean | undefined; }>; export declare const InsuranceCredentialFindManySchema: z.ZodType; export declare const InsuranceCredentialFindManyZodSchema: z.ZodObject<{ @@ -41,7 +41,7 @@ export declare const InsuranceCredentialFindManyZodSchema: z.ZodObject<{ cursor?: Prisma.InsuranceCredentialWhereUniqueInput | undefined; take?: number | undefined; skip?: number | undefined; - distinct?: "id" | "userId" | "siteKey" | "username" | "password" | ("id" | "userId" | "siteKey" | "username" | "password")[] | undefined; + distinct?: "id" | "siteKey" | "username" | "password" | "userId" | ("id" | "siteKey" | "username" | "password" | "userId")[] | undefined; }, { where?: Prisma.InsuranceCredentialWhereInput | undefined; include?: Prisma.InsuranceCredentialInclude | undefined; @@ -50,6 +50,6 @@ export declare const InsuranceCredentialFindManyZodSchema: z.ZodObject<{ cursor?: Prisma.InsuranceCredentialWhereUniqueInput | undefined; take?: number | undefined; skip?: number | undefined; - distinct?: "id" | "userId" | "siteKey" | "username" | "password" | ("id" | "userId" | "siteKey" | "username" | "password")[] | undefined; + distinct?: "id" | "siteKey" | "username" | "password" | "userId" | ("id" | "siteKey" | "username" | "password" | "userId")[] | undefined; }>; //# sourceMappingURL=findManyInsuranceCredential.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/findManyLabRxTemplate.schema.js b/packages/db/shared/schemas/findManyLabRxTemplate.schema.js new file mode 100644 index 00000000..d784740c --- /dev/null +++ b/packages/db/shared/schemas/findManyLabRxTemplate.schema.js @@ -0,0 +1,80 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateFindManyZodSchema = exports.LabRxTemplateFindManySchema = exports.LabRxTemplateFindManySelectZodSchema = exports.LabRxTemplateFindManySelectSchema = void 0; +const z = __importStar(require("zod")); +const LabRxTemplateInclude_schema_1 = require("./objects/LabRxTemplateInclude.schema"); +const LabRxTemplateOrderByWithRelationInput_schema_1 = require("./objects/LabRxTemplateOrderByWithRelationInput.schema"); +const LabRxTemplateWhereInput_schema_1 = require("./objects/LabRxTemplateWhereInput.schema"); +const LabRxTemplateWhereUniqueInput_schema_1 = require("./objects/LabRxTemplateWhereUniqueInput.schema"); +const LabRxTemplateScalarFieldEnum_schema_1 = require("./enums/LabRxTemplateScalarFieldEnum.schema"); +// Select schema needs to be in file to prevent circular imports +//------------------------------------------------------ +exports.LabRxTemplateFindManySelectSchema = z.object({ + id: z.boolean().optional(), + userId: z.boolean().optional(), + name: z.boolean().optional(), + labName: z.boolean().optional(), + labPhone: z.boolean().optional(), + labFax: z.boolean().optional(), + labAddress: z.boolean().optional(), + labAccount: z.boolean().optional(), + caseType: z.boolean().optional(), + material: z.boolean().optional(), + instructions: z.boolean().optional(), + sortOrder: z.boolean().optional(), + createdAt: z.boolean().optional(), + updatedAt: z.boolean().optional(), + user: z.boolean().optional() +}).strict(); +exports.LabRxTemplateFindManySelectZodSchema = z.object({ + id: z.boolean().optional(), + userId: z.boolean().optional(), + name: z.boolean().optional(), + labName: z.boolean().optional(), + labPhone: z.boolean().optional(), + labFax: z.boolean().optional(), + labAddress: z.boolean().optional(), + labAccount: z.boolean().optional(), + caseType: z.boolean().optional(), + material: z.boolean().optional(), + instructions: z.boolean().optional(), + sortOrder: z.boolean().optional(), + createdAt: z.boolean().optional(), + updatedAt: z.boolean().optional(), + user: z.boolean().optional() +}).strict(); +exports.LabRxTemplateFindManySchema = z.object({ select: exports.LabRxTemplateFindManySelectSchema.optional(), include: z.lazy(() => LabRxTemplateInclude_schema_1.LabRxTemplateIncludeObjectSchema.optional()), orderBy: z.union([LabRxTemplateOrderByWithRelationInput_schema_1.LabRxTemplateOrderByWithRelationInputObjectSchema, LabRxTemplateOrderByWithRelationInput_schema_1.LabRxTemplateOrderByWithRelationInputObjectSchema.array()]).optional(), where: LabRxTemplateWhereInput_schema_1.LabRxTemplateWhereInputObjectSchema.optional(), cursor: LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([LabRxTemplateScalarFieldEnum_schema_1.LabRxTemplateScalarFieldEnumSchema, LabRxTemplateScalarFieldEnum_schema_1.LabRxTemplateScalarFieldEnumSchema.array()]).optional() }).strict(); +exports.LabRxTemplateFindManyZodSchema = z.object({ select: exports.LabRxTemplateFindManySelectSchema.optional(), include: z.lazy(() => LabRxTemplateInclude_schema_1.LabRxTemplateIncludeObjectSchema.optional()), orderBy: z.union([LabRxTemplateOrderByWithRelationInput_schema_1.LabRxTemplateOrderByWithRelationInputObjectSchema, LabRxTemplateOrderByWithRelationInput_schema_1.LabRxTemplateOrderByWithRelationInputObjectSchema.array()]).optional(), where: LabRxTemplateWhereInput_schema_1.LabRxTemplateWhereInputObjectSchema.optional(), cursor: LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([LabRxTemplateScalarFieldEnum_schema_1.LabRxTemplateScalarFieldEnumSchema, LabRxTemplateScalarFieldEnum_schema_1.LabRxTemplateScalarFieldEnumSchema.array()]).optional() }).strict(); diff --git a/packages/db/shared/schemas/findManyNotification.schema.d.ts b/packages/db/shared/schemas/findManyNotification.schema.d.ts index f06d7e74..84ebce40 100644 --- a/packages/db/shared/schemas/findManyNotification.schema.d.ts +++ b/packages/db/shared/schemas/findManyNotification.schema.d.ts @@ -14,16 +14,16 @@ export declare const NotificationFindManySelectZodSchema: z.ZodObject<{ type?: boolean | undefined; id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; read?: boolean | undefined; }, { message?: boolean | undefined; type?: boolean | undefined; id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; read?: boolean | undefined; }>; export declare const NotificationFindManySchema: z.ZodType; diff --git a/packages/db/shared/schemas/findManyNpiProvider.schema.d.ts b/packages/db/shared/schemas/findManyNpiProvider.schema.d.ts index 8049cdef..58966f8e 100644 --- a/packages/db/shared/schemas/findManyNpiProvider.schema.d.ts +++ b/packages/db/shared/schemas/findManyNpiProvider.schema.d.ts @@ -6,30 +6,42 @@ export declare const NpiProviderFindManySelectZodSchema: z.ZodObject<{ userId: z.ZodOptional; npiNumber: z.ZodOptional; providerName: z.ZodOptional; + sortOrder: z.ZodOptional; createdAt: z.ZodOptional; user: z.ZodOptional; claims: z.ZodOptional; + payments: z.ZodOptional; + commissionBatches: z.ZodOptional; appointmentProcedures: z.ZodOptional; + appointments: z.ZodOptional; _count: z.ZodOptional; }, "strict", z.ZodTypeAny, { id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; + appointments?: boolean | undefined; claims?: boolean | undefined; npiNumber?: boolean | undefined; providerName?: boolean | undefined; + sortOrder?: boolean | undefined; + payments?: boolean | undefined; appointmentProcedures?: boolean | undefined; + commissionBatches?: boolean | undefined; _count?: boolean | undefined; }, { id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; + user?: boolean | undefined; + appointments?: boolean | undefined; claims?: boolean | undefined; npiNumber?: boolean | undefined; providerName?: boolean | undefined; + sortOrder?: boolean | undefined; + payments?: boolean | undefined; appointmentProcedures?: boolean | undefined; + commissionBatches?: boolean | undefined; _count?: boolean | undefined; }>; export declare const NpiProviderFindManySchema: z.ZodType; @@ -41,7 +53,7 @@ export declare const NpiProviderFindManyZodSchema: z.ZodObject<{ cursor: z.ZodOptional>; take: z.ZodOptional; skip: z.ZodOptional; - distinct: z.ZodOptional, z.ZodArray, "many">]>>; + distinct: z.ZodOptional, z.ZodArray, "many">]>>; }, "strict", z.ZodTypeAny, { where?: Prisma.NpiProviderWhereInput | undefined; include?: Prisma.NpiProviderInclude | undefined; @@ -50,7 +62,7 @@ export declare const NpiProviderFindManyZodSchema: z.ZodObject<{ cursor?: Prisma.NpiProviderWhereUniqueInput | undefined; take?: number | undefined; skip?: number | undefined; - distinct?: "id" | "createdAt" | "userId" | "npiNumber" | "providerName" | ("id" | "createdAt" | "userId" | "npiNumber" | "providerName")[] | undefined; + distinct?: "id" | "createdAt" | "userId" | "npiNumber" | "providerName" | "sortOrder" | ("id" | "createdAt" | "userId" | "npiNumber" | "providerName" | "sortOrder")[] | undefined; }, { where?: Prisma.NpiProviderWhereInput | undefined; include?: Prisma.NpiProviderInclude | undefined; @@ -59,6 +71,6 @@ export declare const NpiProviderFindManyZodSchema: z.ZodObject<{ cursor?: Prisma.NpiProviderWhereUniqueInput | undefined; take?: number | undefined; skip?: number | undefined; - distinct?: "id" | "createdAt" | "userId" | "npiNumber" | "providerName" | ("id" | "createdAt" | "userId" | "npiNumber" | "providerName")[] | undefined; + distinct?: "id" | "createdAt" | "userId" | "npiNumber" | "providerName" | "sortOrder" | ("id" | "createdAt" | "userId" | "npiNumber" | "providerName" | "sortOrder")[] | undefined; }>; //# sourceMappingURL=findManyNpiProvider.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/findManyNpiProvider.schema.d.ts.map b/packages/db/shared/schemas/findManyNpiProvider.schema.d.ts.map index 5904a64a..3e053e55 100644 --- a/packages/db/shared/schemas/findManyNpiProvider.schema.d.ts.map +++ b/packages/db/shared/schemas/findManyNpiProvider.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"findManyNpiProvider.schema.d.ts","sourceRoot":"","sources":["findManyNpiProvider.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,iBAAiB,CAUjB,CAAC;AAEhE,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUlC,CAAC;AAEd,eAAO,MAAM,yBAAyB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,uBAAuB,CAAumB,CAAC;AAExrB,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA8iB,CAAC"} \ No newline at end of file +{"version":3,"file":"findManyNpiProvider.schema.d.ts","sourceRoot":"","sources":["findManyNpiProvider.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,iBAAiB,CAcjB,CAAC;AAEhE,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAclC,CAAC;AAEd,eAAO,MAAM,yBAAyB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,uBAAuB,CAAumB,CAAC;AAExrB,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA8iB,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/findManyNpiProvider.schema.js b/packages/db/shared/schemas/findManyNpiProvider.schema.js index b464d06b..7e6dff2d 100644 --- a/packages/db/shared/schemas/findManyNpiProvider.schema.js +++ b/packages/db/shared/schemas/findManyNpiProvider.schema.js @@ -54,6 +54,7 @@ exports.NpiProviderFindManySelectSchema = z.object({ payments: z.boolean().optional(), commissionBatches: z.boolean().optional(), appointmentProcedures: z.boolean().optional(), + appointments: z.boolean().optional(), _count: z.boolean().optional() }).strict(); exports.NpiProviderFindManySelectZodSchema = z.object({ @@ -68,6 +69,7 @@ exports.NpiProviderFindManySelectZodSchema = z.object({ payments: z.boolean().optional(), commissionBatches: z.boolean().optional(), appointmentProcedures: z.boolean().optional(), + appointments: z.boolean().optional(), _count: z.boolean().optional() }).strict(); exports.NpiProviderFindManySchema = z.object({ select: exports.NpiProviderFindManySelectSchema.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(); diff --git a/packages/db/shared/schemas/findManyNpiProvider.schema.ts b/packages/db/shared/schemas/findManyNpiProvider.schema.ts index b526b5a2..e7f6c0b3 100644 --- a/packages/db/shared/schemas/findManyNpiProvider.schema.ts +++ b/packages/db/shared/schemas/findManyNpiProvider.schema.ts @@ -21,6 +21,7 @@ export const NpiProviderFindManySelectSchema: z.ZodType; @@ -36,6 +37,7 @@ export const NpiProviderFindManySelectZodSchema = z.object({ payments: z.boolean().optional(), commissionBatches: z.boolean().optional(), appointmentProcedures: z.boolean().optional(), + appointments: z.boolean().optional(), _count: z.boolean().optional() }).strict(); diff --git a/packages/db/shared/schemas/findManyPatient.schema.d.ts b/packages/db/shared/schemas/findManyPatient.schema.d.ts index e8c18b8a..7d0d6c67 100644 --- a/packages/db/shared/schemas/findManyPatient.schema.d.ts +++ b/packages/db/shared/schemas/findManyPatient.schema.d.ts @@ -18,9 +18,11 @@ export declare const PatientFindManySelectZodSchema: z.ZodObject<{ policyHolder: z.ZodOptional; allergies: z.ZodOptional; medicalConditions: z.ZodOptional; + preferredLanguage: z.ZodOptional; status: z.ZodOptional; userId: z.ZodOptional; createdAt: z.ZodOptional; + updatedAt: z.ZodOptional; user: z.ZodOptional; appointments: z.ZodOptional; procedures: z.ZodOptional; @@ -29,64 +31,74 @@ export declare const PatientFindManySelectZodSchema: z.ZodObject<{ payment: z.ZodOptional; communications: z.ZodOptional; documents: z.ZodOptional; + conversation: z.ZodOptional; + cloudFolders: z.ZodOptional; _count: z.ZodOptional; }, "strict", z.ZodTypeAny, { status?: boolean | undefined; id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; - procedures?: boolean | undefined; userId?: boolean | undefined; - claims?: boolean | undefined; + user?: boolean | undefined; email?: boolean | undefined; phone?: boolean | undefined; appointments?: boolean | undefined; + procedures?: boolean | undefined; + claims?: boolean | undefined; payment?: boolean | undefined; + updatedAt?: boolean | undefined; dateOfBirth?: boolean | undefined; insuranceProvider?: boolean | undefined; + city?: boolean | undefined; + zipCode?: boolean | undefined; + cloudFolders?: boolean | undefined; + communications?: boolean | undefined; firstName?: boolean | undefined; lastName?: boolean | undefined; gender?: boolean | undefined; address?: boolean | undefined; - city?: boolean | undefined; - zipCode?: boolean | undefined; insuranceId?: boolean | undefined; groupNumber?: boolean | undefined; policyHolder?: boolean | undefined; allergies?: boolean | undefined; medicalConditions?: boolean | undefined; + preferredLanguage?: boolean | undefined; groups?: boolean | undefined; documents?: boolean | undefined; - communications?: boolean | undefined; + conversation?: boolean | undefined; _count?: boolean | undefined; }, { status?: boolean | undefined; id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; - procedures?: boolean | undefined; userId?: boolean | undefined; - claims?: boolean | undefined; + user?: boolean | undefined; email?: boolean | undefined; phone?: boolean | undefined; appointments?: boolean | undefined; + procedures?: boolean | undefined; + claims?: boolean | undefined; payment?: boolean | undefined; + updatedAt?: boolean | undefined; dateOfBirth?: boolean | undefined; insuranceProvider?: boolean | undefined; + city?: boolean | undefined; + zipCode?: boolean | undefined; + cloudFolders?: boolean | undefined; + communications?: boolean | undefined; firstName?: boolean | undefined; lastName?: boolean | undefined; gender?: boolean | undefined; address?: boolean | undefined; - city?: boolean | undefined; - zipCode?: boolean | undefined; insuranceId?: boolean | undefined; groupNumber?: boolean | undefined; policyHolder?: boolean | undefined; allergies?: boolean | undefined; medicalConditions?: boolean | undefined; + preferredLanguage?: boolean | undefined; groups?: boolean | undefined; documents?: boolean | undefined; - communications?: boolean | undefined; + conversation?: boolean | undefined; _count?: boolean | undefined; }>; export declare const PatientFindManySchema: z.ZodType; @@ -98,7 +110,7 @@ export declare const PatientFindManyZodSchema: z.ZodObject<{ cursor: z.ZodOptional>; take: z.ZodOptional; skip: z.ZodOptional; - distinct: z.ZodOptional, z.ZodArray, "many">]>>; + distinct: z.ZodOptional, z.ZodArray, "many">]>>; }, "strict", z.ZodTypeAny, { where?: Prisma.PatientWhereInput | undefined; include?: Prisma.PatientInclude | undefined; @@ -107,7 +119,7 @@ export declare const PatientFindManyZodSchema: z.ZodObject<{ cursor?: Prisma.PatientWhereUniqueInput | undefined; take?: number | undefined; skip?: number | 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; + distinct?: "status" | "id" | "createdAt" | "userId" | "email" | "phone" | "updatedAt" | "dateOfBirth" | "insuranceProvider" | "city" | "zipCode" | "firstName" | "lastName" | "gender" | "address" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions" | "preferredLanguage" | ("status" | "id" | "createdAt" | "userId" | "email" | "phone" | "updatedAt" | "dateOfBirth" | "insuranceProvider" | "city" | "zipCode" | "firstName" | "lastName" | "gender" | "address" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions" | "preferredLanguage")[] | undefined; }, { where?: Prisma.PatientWhereInput | undefined; include?: Prisma.PatientInclude | undefined; @@ -116,6 +128,6 @@ export declare const PatientFindManyZodSchema: z.ZodObject<{ cursor?: Prisma.PatientWhereUniqueInput | undefined; take?: number | undefined; skip?: number | 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; + distinct?: "status" | "id" | "createdAt" | "userId" | "email" | "phone" | "updatedAt" | "dateOfBirth" | "insuranceProvider" | "city" | "zipCode" | "firstName" | "lastName" | "gender" | "address" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions" | "preferredLanguage" | ("status" | "id" | "createdAt" | "userId" | "email" | "phone" | "updatedAt" | "dateOfBirth" | "insuranceProvider" | "city" | "zipCode" | "firstName" | "lastName" | "gender" | "address" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions" | "preferredLanguage")[] | undefined; }>; //# sourceMappingURL=findManyPatient.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/findManyPatient.schema.d.ts.map b/packages/db/shared/schemas/findManyPatient.schema.d.ts.map index e605e4da..ef468740 100644 --- a/packages/db/shared/schemas/findManyPatient.schema.d.ts.map +++ b/packages/db/shared/schemas/findManyPatient.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"findManyPatient.schema.d.ts","sourceRoot":"","sources":["findManyPatient.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,2BAA2B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,aAAa,CA6Bb,CAAC;AAE5D,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA6B9B,CAAC;AAEd,eAAO,MAAM,qBAAqB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,mBAAmB,CAAmkB,CAAC;AAE5oB,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA8gB,CAAC"} \ No newline at end of file +{"version":3,"file":"findManyPatient.schema.d.ts","sourceRoot":"","sources":["findManyPatient.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,2BAA2B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,aAAa,CAiCb,CAAC;AAE5D,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiC9B,CAAC;AAEd,eAAO,MAAM,qBAAqB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,mBAAmB,CAAmkB,CAAC;AAE5oB,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA8gB,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/findManyPayment.schema.d.ts b/packages/db/shared/schemas/findManyPayment.schema.d.ts index 803ca89c..318f8a7d 100644 --- a/packages/db/shared/schemas/findManyPayment.schema.d.ts +++ b/packages/db/shared/schemas/findManyPayment.schema.d.ts @@ -7,10 +7,14 @@ export declare const PaymentFindManySelectZodSchema: z.ZodObject<{ patientId: z.ZodOptional; userId: z.ZodOptional; updatedById: z.ZodOptional; + npiProviderId: z.ZodOptional; totalBilled: z.ZodOptional; totalPaid: z.ZodOptional; totalAdjusted: z.ZodOptional; totalDue: z.ZodOptional; + mhPaidAmount: z.ZodOptional; + copayment: z.ZodOptional; + adjustment: z.ZodOptional; status: z.ZodOptional; notes: z.ZodOptional; icn: z.ZodOptional; @@ -19,8 +23,10 @@ export declare const PaymentFindManySelectZodSchema: z.ZodObject<{ claim: z.ZodOptional; patient: z.ZodOptional; updatedBy: z.ZodOptional; + npiProvider: z.ZodOptional; serviceLineTransactions: z.ZodOptional; serviceLines: z.ZodOptional; + commissionBatchItems: z.ZodOptional; _count: z.ZodOptional; }, "strict", z.ZodTypeAny, { status?: boolean | undefined; @@ -28,20 +34,26 @@ export declare const PaymentFindManySelectZodSchema: z.ZodObject<{ createdAt?: boolean | undefined; patientId?: boolean | undefined; patient?: boolean | undefined; - notes?: boolean | undefined; + npiProviderId?: boolean | undefined; + npiProvider?: boolean | undefined; userId?: boolean | undefined; claimId?: boolean | undefined; claim?: boolean | undefined; + notes?: boolean | undefined; + icn?: boolean | undefined; totalBilled?: boolean | undefined; totalPaid?: boolean | undefined; totalAdjusted?: boolean | undefined; totalDue?: boolean | undefined; serviceLineTransactions?: boolean | undefined; - icn?: boolean | undefined; - updatedAt?: boolean | undefined; - updatedBy?: boolean | undefined; - serviceLines?: boolean | undefined; updatedById?: boolean | undefined; + mhPaidAmount?: boolean | undefined; + copayment?: boolean | undefined; + adjustment?: boolean | undefined; + updatedAt?: boolean | undefined; + serviceLines?: boolean | undefined; + commissionBatchItems?: boolean | undefined; + updatedBy?: boolean | undefined; _count?: boolean | undefined; }, { status?: boolean | undefined; @@ -49,20 +61,26 @@ export declare const PaymentFindManySelectZodSchema: z.ZodObject<{ createdAt?: boolean | undefined; patientId?: boolean | undefined; patient?: boolean | undefined; - notes?: boolean | undefined; + npiProviderId?: boolean | undefined; + npiProvider?: boolean | undefined; userId?: boolean | undefined; claimId?: boolean | undefined; claim?: boolean | undefined; + notes?: boolean | undefined; + icn?: boolean | undefined; totalBilled?: boolean | undefined; totalPaid?: boolean | undefined; totalAdjusted?: boolean | undefined; totalDue?: boolean | undefined; serviceLineTransactions?: boolean | undefined; - icn?: boolean | undefined; - updatedAt?: boolean | undefined; - updatedBy?: boolean | undefined; - serviceLines?: boolean | undefined; updatedById?: boolean | undefined; + mhPaidAmount?: boolean | undefined; + copayment?: boolean | undefined; + adjustment?: boolean | undefined; + updatedAt?: boolean | undefined; + serviceLines?: boolean | undefined; + commissionBatchItems?: boolean | undefined; + updatedBy?: boolean | undefined; _count?: boolean | undefined; }>; export declare const PaymentFindManySchema: z.ZodType; @@ -74,7 +92,7 @@ export declare const PaymentFindManyZodSchema: z.ZodObject<{ cursor: z.ZodOptional>; take: z.ZodOptional; skip: z.ZodOptional; - distinct: z.ZodOptional, z.ZodArray, "many">]>>; + distinct: z.ZodOptional, z.ZodArray, "many">]>>; }, "strict", z.ZodTypeAny, { where?: Prisma.PaymentWhereInput | undefined; include?: Prisma.PaymentInclude | undefined; @@ -83,7 +101,7 @@ export declare const PaymentFindManyZodSchema: z.ZodObject<{ cursor?: Prisma.PaymentWhereUniqueInput | undefined; take?: number | undefined; skip?: number | 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; + distinct?: "status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "userId" | "claimId" | "notes" | "icn" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "updatedById" | "mhPaidAmount" | "copayment" | "adjustment" | "updatedAt" | ("status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "userId" | "claimId" | "notes" | "icn" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "updatedById" | "mhPaidAmount" | "copayment" | "adjustment" | "updatedAt")[] | undefined; }, { where?: Prisma.PaymentWhereInput | undefined; include?: Prisma.PaymentInclude | undefined; @@ -92,6 +110,6 @@ export declare const PaymentFindManyZodSchema: z.ZodObject<{ cursor?: Prisma.PaymentWhereUniqueInput | undefined; take?: number | undefined; skip?: number | 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; + distinct?: "status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "userId" | "claimId" | "notes" | "icn" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "updatedById" | "mhPaidAmount" | "copayment" | "adjustment" | "updatedAt" | ("status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "userId" | "claimId" | "notes" | "icn" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "updatedById" | "mhPaidAmount" | "copayment" | "adjustment" | "updatedAt")[] | undefined; }>; //# sourceMappingURL=findManyPayment.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/findManyPayment.schema.d.ts.map b/packages/db/shared/schemas/findManyPayment.schema.d.ts.map index 5020d9c3..a6f9abfa 100644 --- a/packages/db/shared/schemas/findManyPayment.schema.d.ts.map +++ b/packages/db/shared/schemas/findManyPayment.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"findManyPayment.schema.d.ts","sourceRoot":"","sources":["findManyPayment.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,2BAA2B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,aAAa,CAqBb,CAAC;AAE5D,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqB9B,CAAC;AAEd,eAAO,MAAM,qBAAqB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,mBAAmB,CAAmkB,CAAC;AAE5oB,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA8gB,CAAC"} \ No newline at end of file +{"version":3,"file":"findManyPayment.schema.d.ts","sourceRoot":"","sources":["findManyPayment.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,2BAA2B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,aAAa,CA2Bb,CAAC;AAE5D,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA2B9B,CAAC;AAEd,eAAO,MAAM,qBAAqB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,mBAAmB,CAAmkB,CAAC;AAE5oB,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA8gB,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/findManySeleniumSettings.schema.js b/packages/db/shared/schemas/findManySeleniumSettings.schema.js new file mode 100644 index 00000000..bb134b11 --- /dev/null +++ b/packages/db/shared/schemas/findManySeleniumSettings.schema.js @@ -0,0 +1,58 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsFindManyZodSchema = exports.SeleniumSettingsFindManySchema = exports.SeleniumSettingsFindManySelectZodSchema = exports.SeleniumSettingsFindManySelectSchema = void 0; +const z = __importStar(require("zod")); +const SeleniumSettingsInclude_schema_1 = require("./objects/SeleniumSettingsInclude.schema"); +const SeleniumSettingsOrderByWithRelationInput_schema_1 = require("./objects/SeleniumSettingsOrderByWithRelationInput.schema"); +const SeleniumSettingsWhereInput_schema_1 = require("./objects/SeleniumSettingsWhereInput.schema"); +const SeleniumSettingsWhereUniqueInput_schema_1 = require("./objects/SeleniumSettingsWhereUniqueInput.schema"); +const SeleniumSettingsScalarFieldEnum_schema_1 = require("./enums/SeleniumSettingsScalarFieldEnum.schema"); +// Select schema needs to be in file to prevent circular imports +//------------------------------------------------------ +exports.SeleniumSettingsFindManySelectSchema = z.object({ + id: z.boolean().optional(), + userId: z.boolean().optional(), + paymentGroupId: z.boolean().optional(), + user: z.boolean().optional() +}).strict(); +exports.SeleniumSettingsFindManySelectZodSchema = z.object({ + id: z.boolean().optional(), + userId: z.boolean().optional(), + paymentGroupId: z.boolean().optional(), + user: z.boolean().optional() +}).strict(); +exports.SeleniumSettingsFindManySchema = z.object({ select: exports.SeleniumSettingsFindManySelectSchema.optional(), include: z.lazy(() => SeleniumSettingsInclude_schema_1.SeleniumSettingsIncludeObjectSchema.optional()), orderBy: z.union([SeleniumSettingsOrderByWithRelationInput_schema_1.SeleniumSettingsOrderByWithRelationInputObjectSchema, SeleniumSettingsOrderByWithRelationInput_schema_1.SeleniumSettingsOrderByWithRelationInputObjectSchema.array()]).optional(), where: SeleniumSettingsWhereInput_schema_1.SeleniumSettingsWhereInputObjectSchema.optional(), cursor: SeleniumSettingsWhereUniqueInput_schema_1.SeleniumSettingsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([SeleniumSettingsScalarFieldEnum_schema_1.SeleniumSettingsScalarFieldEnumSchema, SeleniumSettingsScalarFieldEnum_schema_1.SeleniumSettingsScalarFieldEnumSchema.array()]).optional() }).strict(); +exports.SeleniumSettingsFindManyZodSchema = z.object({ select: exports.SeleniumSettingsFindManySelectSchema.optional(), include: z.lazy(() => SeleniumSettingsInclude_schema_1.SeleniumSettingsIncludeObjectSchema.optional()), orderBy: z.union([SeleniumSettingsOrderByWithRelationInput_schema_1.SeleniumSettingsOrderByWithRelationInputObjectSchema, SeleniumSettingsOrderByWithRelationInput_schema_1.SeleniumSettingsOrderByWithRelationInputObjectSchema.array()]).optional(), where: SeleniumSettingsWhereInput_schema_1.SeleniumSettingsWhereInputObjectSchema.optional(), cursor: SeleniumSettingsWhereUniqueInput_schema_1.SeleniumSettingsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([SeleniumSettingsScalarFieldEnum_schema_1.SeleniumSettingsScalarFieldEnumSchema, SeleniumSettingsScalarFieldEnum_schema_1.SeleniumSettingsScalarFieldEnumSchema.array()]).optional() }).strict(); diff --git a/packages/db/shared/schemas/findManyServiceLine.schema.d.ts b/packages/db/shared/schemas/findManyServiceLine.schema.d.ts index fcfe5b05..23a89220 100644 --- a/packages/db/shared/schemas/findManyServiceLine.schema.d.ts +++ b/packages/db/shared/schemas/findManyServiceLine.schema.d.ts @@ -11,6 +11,9 @@ export declare const ServiceLineFindManySelectZodSchema: z.ZodObject<{ arch: z.ZodOptional; toothNumber: z.ZodOptional; toothSurface: z.ZodOptional; + icn: z.ZodOptional; + paidCode: z.ZodOptional; + allowedAmount: z.ZodOptional; totalBilled: z.ZodOptional; totalPaid: z.ZodOptional; totalAdjusted: z.ZodOptional; @@ -33,6 +36,9 @@ export declare const ServiceLineFindManySelectZodSchema: z.ZodObject<{ procedureDate?: boolean | undefined; quad?: boolean | undefined; arch?: boolean | undefined; + icn?: boolean | undefined; + paidCode?: boolean | undefined; + allowedAmount?: boolean | undefined; totalBilled?: boolean | undefined; totalPaid?: boolean | undefined; totalAdjusted?: boolean | undefined; @@ -52,6 +58,9 @@ export declare const ServiceLineFindManySelectZodSchema: z.ZodObject<{ procedureDate?: boolean | undefined; quad?: boolean | undefined; arch?: boolean | undefined; + icn?: boolean | undefined; + paidCode?: boolean | undefined; + allowedAmount?: boolean | undefined; totalBilled?: boolean | undefined; totalPaid?: boolean | undefined; totalAdjusted?: boolean | undefined; @@ -68,7 +77,7 @@ export declare const ServiceLineFindManyZodSchema: z.ZodObject<{ cursor: z.ZodOptional>; take: z.ZodOptional; skip: z.ZodOptional; - distinct: z.ZodOptional, z.ZodArray, "many">]>>; + distinct: z.ZodOptional, z.ZodArray, "many">]>>; }, "strict", z.ZodTypeAny, { where?: Prisma.ServiceLineWhereInput | undefined; include?: Prisma.ServiceLineInclude | undefined; @@ -77,7 +86,7 @@ export declare const ServiceLineFindManyZodSchema: z.ZodObject<{ cursor?: Prisma.ServiceLineWhereUniqueInput | undefined; take?: number | undefined; skip?: number | undefined; - distinct?: "status" | "id" | "procedureCode" | "toothNumber" | "toothSurface" | "claimId" | "paymentId" | "procedureDate" | "quad" | "arch" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | ("status" | "id" | "procedureCode" | "toothNumber" | "toothSurface" | "claimId" | "paymentId" | "procedureDate" | "quad" | "arch" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue")[] | undefined; + distinct?: "status" | "id" | "procedureCode" | "toothNumber" | "toothSurface" | "claimId" | "paymentId" | "procedureDate" | "quad" | "arch" | "icn" | "paidCode" | "allowedAmount" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | ("status" | "id" | "procedureCode" | "toothNumber" | "toothSurface" | "claimId" | "paymentId" | "procedureDate" | "quad" | "arch" | "icn" | "paidCode" | "allowedAmount" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue")[] | undefined; }, { where?: Prisma.ServiceLineWhereInput | undefined; include?: Prisma.ServiceLineInclude | undefined; @@ -86,6 +95,6 @@ export declare const ServiceLineFindManyZodSchema: z.ZodObject<{ cursor?: Prisma.ServiceLineWhereUniqueInput | undefined; take?: number | undefined; skip?: number | undefined; - distinct?: "status" | "id" | "procedureCode" | "toothNumber" | "toothSurface" | "claimId" | "paymentId" | "procedureDate" | "quad" | "arch" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | ("status" | "id" | "procedureCode" | "toothNumber" | "toothSurface" | "claimId" | "paymentId" | "procedureDate" | "quad" | "arch" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue")[] | undefined; + distinct?: "status" | "id" | "procedureCode" | "toothNumber" | "toothSurface" | "claimId" | "paymentId" | "procedureDate" | "quad" | "arch" | "icn" | "paidCode" | "allowedAmount" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | ("status" | "id" | "procedureCode" | "toothNumber" | "toothSurface" | "claimId" | "paymentId" | "procedureDate" | "quad" | "arch" | "icn" | "paidCode" | "allowedAmount" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue")[] | undefined; }>; //# sourceMappingURL=findManyServiceLine.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/findManyServiceLine.schema.d.ts.map b/packages/db/shared/schemas/findManyServiceLine.schema.d.ts.map index a503e7fc..dad5706e 100644 --- a/packages/db/shared/schemas/findManyServiceLine.schema.d.ts.map +++ b/packages/db/shared/schemas/findManyServiceLine.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"findManyServiceLine.schema.d.ts","sourceRoot":"","sources":["findManyServiceLine.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,iBAAiB,CAmBjB,CAAC;AAEhE,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmBlC,CAAC;AAEd,eAAO,MAAM,yBAAyB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,uBAAuB,CAAumB,CAAC;AAExrB,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA8iB,CAAC"} \ No newline at end of file +{"version":3,"file":"findManyServiceLine.schema.d.ts","sourceRoot":"","sources":["findManyServiceLine.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,iBAAiB,CAsBjB,CAAC;AAEhE,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAsBlC,CAAC;AAEd,eAAO,MAAM,yBAAyB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,uBAAuB,CAAumB,CAAC;AAExrB,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA8iB,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/findManyServiceLineTransaction.schema.d.ts b/packages/db/shared/schemas/findManyServiceLineTransaction.schema.d.ts index 93a28b4a..1cabdd01 100644 --- a/packages/db/shared/schemas/findManyServiceLineTransaction.schema.d.ts +++ b/packages/db/shared/schemas/findManyServiceLineTransaction.schema.d.ts @@ -19,28 +19,28 @@ export declare const ServiceLineTransactionFindManySelectZodSchema: z.ZodObject< id?: boolean | undefined; createdAt?: boolean | undefined; notes?: boolean | undefined; - paymentId?: boolean | undefined; + serviceLineId?: boolean | undefined; transactionId?: boolean | undefined; paidAmount?: boolean | undefined; adjustedAmount?: boolean | undefined; method?: boolean | undefined; receivedDate?: boolean | undefined; payerName?: boolean | undefined; - serviceLineId?: boolean | undefined; + paymentId?: boolean | undefined; payment?: boolean | undefined; serviceLine?: boolean | undefined; }, { id?: boolean | undefined; createdAt?: boolean | undefined; notes?: boolean | undefined; - paymentId?: boolean | undefined; + serviceLineId?: boolean | undefined; transactionId?: boolean | undefined; paidAmount?: boolean | undefined; adjustedAmount?: boolean | undefined; method?: boolean | undefined; receivedDate?: boolean | undefined; payerName?: boolean | undefined; - serviceLineId?: boolean | undefined; + paymentId?: boolean | undefined; payment?: boolean | undefined; serviceLine?: boolean | undefined; }>; @@ -62,7 +62,7 @@ export declare const ServiceLineTransactionFindManyZodSchema: z.ZodObject<{ cursor?: Prisma.ServiceLineTransactionWhereUniqueInput | undefined; take?: number | undefined; skip?: number | 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; + distinct?: "id" | "createdAt" | "notes" | "serviceLineId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "paymentId" | ("id" | "createdAt" | "notes" | "serviceLineId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "paymentId")[] | undefined; }, { where?: Prisma.ServiceLineTransactionWhereInput | undefined; include?: Prisma.ServiceLineTransactionInclude | undefined; @@ -71,6 +71,6 @@ export declare const ServiceLineTransactionFindManyZodSchema: z.ZodObject<{ cursor?: Prisma.ServiceLineTransactionWhereUniqueInput | undefined; take?: number | undefined; skip?: number | 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; + distinct?: "id" | "createdAt" | "notes" | "serviceLineId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "paymentId" | ("id" | "createdAt" | "notes" | "serviceLineId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "paymentId")[] | undefined; }>; //# sourceMappingURL=findManyServiceLineTransaction.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/findManyStaff.schema.d.ts b/packages/db/shared/schemas/findManyStaff.schema.d.ts index 34c23f40..402a688d 100644 --- a/packages/db/shared/schemas/findManyStaff.schema.d.ts +++ b/packages/db/shared/schemas/findManyStaff.schema.d.ts @@ -16,26 +16,26 @@ export declare const StaffFindManySelectZodSchema: z.ZodObject<{ }, "strict", z.ZodTypeAny, { id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; - claims?: boolean | undefined; + user?: boolean | undefined; name?: boolean | undefined; email?: boolean | undefined; role?: boolean | undefined; phone?: boolean | undefined; appointments?: boolean | undefined; + claims?: boolean | undefined; _count?: boolean | undefined; }, { id?: boolean | undefined; createdAt?: boolean | undefined; - user?: boolean | undefined; userId?: boolean | undefined; - claims?: boolean | undefined; + user?: boolean | undefined; name?: boolean | undefined; email?: boolean | undefined; role?: boolean | undefined; phone?: boolean | undefined; appointments?: boolean | undefined; + claims?: boolean | undefined; _count?: boolean | undefined; }>; export declare const StaffFindManySchema: z.ZodType; diff --git a/packages/db/shared/schemas/findManyUser.schema.d.ts b/packages/db/shared/schemas/findManyUser.schema.d.ts index 95e781b6..1520714d 100644 --- a/packages/db/shared/schemas/findManyUser.schema.d.ts +++ b/packages/db/shared/schemas/findManyUser.schema.d.ts @@ -6,13 +6,19 @@ export declare const UserFindManySelectZodSchema: z.ZodObject<{ username: z.ZodOptional; password: z.ZodOptional; autoBackupEnabled: z.ZodOptional; + autoBackupHour: z.ZodOptional; usbBackupEnabled: z.ZodOptional; + usbBackupHour: z.ZodOptional; + autoMhCheckEnabled: z.ZodOptional; + autoMhCheckDayOfWeek: z.ZodOptional; + autoMhCheckHour: z.ZodOptional; patients: z.ZodOptional; appointments: z.ZodOptional; staff: z.ZodOptional; npiProviders: z.ZodOptional; claims: z.ZodOptional; insuranceCredentials: z.ZodOptional; + shoppingVendors: z.ZodOptional; updatedPayments: z.ZodOptional; backups: z.ZodOptional; backupDestinations: z.ZodOptional; @@ -20,46 +26,85 @@ export declare const UserFindManySelectZodSchema: z.ZodObject<{ cloudFolders: z.ZodOptional; cloudFiles: z.ZodOptional; communications: z.ZodOptional; + twilioSettings: z.ZodOptional; + aiSettings: z.ZodOptional; + officeHours: z.ZodOptional; + officeContact: z.ZodOptional; + procedureTimeslot: z.ZodOptional; + insuranceContacts: z.ZodOptional; + patientConversations: z.ZodOptional; + labRxTemplates: z.ZodOptional; + seleniumSettings: z.ZodOptional; _count: z.ZodOptional; }, "strict", z.ZodTypeAny, { id?: boolean | undefined; - staff?: boolean | undefined; - claims?: boolean | undefined; - appointments?: boolean | undefined; username?: boolean | undefined; password?: boolean | undefined; - communications?: boolean | undefined; + appointments?: boolean | undefined; + staff?: boolean | undefined; + claims?: boolean | undefined; autoBackupEnabled?: boolean | undefined; + autoBackupHour?: boolean | undefined; usbBackupEnabled?: boolean | undefined; + usbBackupHour?: boolean | undefined; + autoMhCheckEnabled?: boolean | undefined; + autoMhCheckDayOfWeek?: boolean | undefined; + autoMhCheckHour?: boolean | undefined; patients?: boolean | undefined; npiProviders?: boolean | undefined; insuranceCredentials?: boolean | undefined; + shoppingVendors?: boolean | undefined; updatedPayments?: boolean | undefined; backups?: boolean | undefined; backupDestinations?: boolean | undefined; notifications?: boolean | undefined; cloudFolders?: boolean | undefined; cloudFiles?: boolean | undefined; + communications?: boolean | undefined; + twilioSettings?: boolean | undefined; + aiSettings?: boolean | undefined; + officeHours?: boolean | undefined; + officeContact?: boolean | undefined; + procedureTimeslot?: boolean | undefined; + insuranceContacts?: boolean | undefined; + labRxTemplates?: boolean | undefined; + seleniumSettings?: boolean | undefined; + patientConversations?: boolean | undefined; _count?: boolean | undefined; }, { id?: boolean | undefined; - staff?: boolean | undefined; - claims?: boolean | undefined; - appointments?: boolean | undefined; username?: boolean | undefined; password?: boolean | undefined; - communications?: boolean | undefined; + appointments?: boolean | undefined; + staff?: boolean | undefined; + claims?: boolean | undefined; autoBackupEnabled?: boolean | undefined; + autoBackupHour?: boolean | undefined; usbBackupEnabled?: boolean | undefined; + usbBackupHour?: boolean | undefined; + autoMhCheckEnabled?: boolean | undefined; + autoMhCheckDayOfWeek?: boolean | undefined; + autoMhCheckHour?: boolean | undefined; patients?: boolean | undefined; npiProviders?: boolean | undefined; insuranceCredentials?: boolean | undefined; + shoppingVendors?: boolean | undefined; updatedPayments?: boolean | undefined; backups?: boolean | undefined; backupDestinations?: boolean | undefined; notifications?: boolean | undefined; cloudFolders?: boolean | undefined; cloudFiles?: boolean | undefined; + communications?: boolean | undefined; + twilioSettings?: boolean | undefined; + aiSettings?: boolean | undefined; + officeHours?: boolean | undefined; + officeContact?: boolean | undefined; + procedureTimeslot?: boolean | undefined; + insuranceContacts?: boolean | undefined; + labRxTemplates?: boolean | undefined; + seleniumSettings?: boolean | undefined; + patientConversations?: boolean | undefined; _count?: boolean | undefined; }>; export declare const UserFindManySchema: z.ZodType; @@ -71,7 +116,7 @@ export declare const UserFindManyZodSchema: z.ZodObject<{ cursor: z.ZodOptional>; take: z.ZodOptional; skip: z.ZodOptional; - distinct: z.ZodOptional, z.ZodArray, "many">]>>; + distinct: z.ZodOptional, z.ZodArray, "many">]>>; }, "strict", z.ZodTypeAny, { where?: Prisma.UserWhereInput | undefined; include?: Prisma.UserInclude | undefined; @@ -80,7 +125,7 @@ export declare const UserFindManyZodSchema: z.ZodObject<{ cursor?: Prisma.UserWhereUniqueInput | undefined; take?: number | undefined; skip?: number | undefined; - distinct?: "id" | "username" | "password" | "autoBackupEnabled" | "usbBackupEnabled" | ("id" | "username" | "password" | "autoBackupEnabled" | "usbBackupEnabled")[] | undefined; + distinct?: "id" | "username" | "password" | "autoBackupEnabled" | "autoBackupHour" | "usbBackupEnabled" | "usbBackupHour" | "autoMhCheckEnabled" | "autoMhCheckDayOfWeek" | "autoMhCheckHour" | ("id" | "username" | "password" | "autoBackupEnabled" | "autoBackupHour" | "usbBackupEnabled" | "usbBackupHour" | "autoMhCheckEnabled" | "autoMhCheckDayOfWeek" | "autoMhCheckHour")[] | undefined; }, { where?: Prisma.UserWhereInput | undefined; include?: Prisma.UserInclude | undefined; @@ -89,6 +134,6 @@ export declare const UserFindManyZodSchema: z.ZodObject<{ cursor?: Prisma.UserWhereUniqueInput | undefined; take?: number | undefined; skip?: number | undefined; - distinct?: "id" | "username" | "password" | "autoBackupEnabled" | "usbBackupEnabled" | ("id" | "username" | "password" | "autoBackupEnabled" | "usbBackupEnabled")[] | undefined; + distinct?: "id" | "username" | "password" | "autoBackupEnabled" | "autoBackupHour" | "usbBackupEnabled" | "usbBackupHour" | "autoMhCheckEnabled" | "autoMhCheckDayOfWeek" | "autoMhCheckHour" | ("id" | "username" | "password" | "autoBackupEnabled" | "autoBackupHour" | "usbBackupEnabled" | "usbBackupHour" | "autoMhCheckEnabled" | "autoMhCheckDayOfWeek" | "autoMhCheckHour")[] | undefined; }>; //# sourceMappingURL=findManyUser.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/findManyUser.schema.d.ts.map b/packages/db/shared/schemas/findManyUser.schema.d.ts.map index 40013dcf..a104d8f2 100644 --- a/packages/db/shared/schemas/findManyUser.schema.d.ts.map +++ b/packages/db/shared/schemas/findManyUser.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"findManyUser.schema.d.ts","sourceRoot":"","sources":["findManyUser.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,wBAAwB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,UAAU,CAoBV,CAAC;AAEzD,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoB3B,CAAC;AAEd,eAAO,MAAM,kBAAkB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,gBAAgB,CAAwiB,CAAC;AAE3mB,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAsf,CAAC"} \ No newline at end of file +{"version":3,"file":"findManyUser.schema.d.ts","sourceRoot":"","sources":["findManyUser.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,wBAAwB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,UAAU,CAmCV,CAAC;AAEzD,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmC3B,CAAC;AAEd,eAAO,MAAM,kBAAkB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,gBAAgB,CAAwiB,CAAC;AAE3mB,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAsf,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/findManyUser.schema.js b/packages/db/shared/schemas/findManyUser.schema.js index cd870f95..56913682 100644 --- a/packages/db/shared/schemas/findManyUser.schema.js +++ b/packages/db/shared/schemas/findManyUser.schema.js @@ -74,6 +74,8 @@ exports.UserFindManySelectSchema = z.object({ procedureTimeslot: z.boolean().optional(), insuranceContacts: z.boolean().optional(), patientConversations: z.boolean().optional(), + labRxTemplates: z.boolean().optional(), + seleniumSettings: z.boolean().optional(), _count: z.boolean().optional() }).strict(); exports.UserFindManySelectZodSchema = z.object({ @@ -108,6 +110,8 @@ exports.UserFindManySelectZodSchema = z.object({ procedureTimeslot: z.boolean().optional(), insuranceContacts: z.boolean().optional(), patientConversations: z.boolean().optional(), + labRxTemplates: z.boolean().optional(), + seleniumSettings: z.boolean().optional(), _count: z.boolean().optional() }).strict(); exports.UserFindManySchema = z.object({ select: exports.UserFindManySelectSchema.optional(), include: z.lazy(() => UserInclude_schema_1.UserIncludeObjectSchema.optional()), orderBy: z.union([UserOrderByWithRelationInput_schema_1.UserOrderByWithRelationInputObjectSchema, UserOrderByWithRelationInput_schema_1.UserOrderByWithRelationInputObjectSchema.array()]).optional(), where: UserWhereInput_schema_1.UserWhereInputObjectSchema.optional(), cursor: UserWhereUniqueInput_schema_1.UserWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([UserScalarFieldEnum_schema_1.UserScalarFieldEnumSchema, UserScalarFieldEnum_schema_1.UserScalarFieldEnumSchema.array()]).optional() }).strict(); diff --git a/packages/db/shared/schemas/findUniqueLabRxTemplate.schema.js b/packages/db/shared/schemas/findUniqueLabRxTemplate.schema.js new file mode 100644 index 00000000..ee3c9a34 --- /dev/null +++ b/packages/db/shared/schemas/findUniqueLabRxTemplate.schema.js @@ -0,0 +1,42 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateFindUniqueZodSchema = exports.LabRxTemplateFindUniqueSchema = void 0; +const z = __importStar(require("zod")); +const LabRxTemplateSelect_schema_1 = require("./objects/LabRxTemplateSelect.schema"); +const LabRxTemplateInclude_schema_1 = require("./objects/LabRxTemplateInclude.schema"); +const LabRxTemplateWhereUniqueInput_schema_1 = require("./objects/LabRxTemplateWhereUniqueInput.schema"); +exports.LabRxTemplateFindUniqueSchema = z.object({ select: LabRxTemplateSelect_schema_1.LabRxTemplateSelectObjectSchema.optional(), include: LabRxTemplateInclude_schema_1.LabRxTemplateIncludeObjectSchema.optional(), where: LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema }).strict(); +exports.LabRxTemplateFindUniqueZodSchema = z.object({ select: LabRxTemplateSelect_schema_1.LabRxTemplateSelectObjectSchema.optional(), include: LabRxTemplateInclude_schema_1.LabRxTemplateIncludeObjectSchema.optional(), where: LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema }).strict(); diff --git a/packages/db/shared/schemas/findUniqueOrThrowLabRxTemplate.schema.js b/packages/db/shared/schemas/findUniqueOrThrowLabRxTemplate.schema.js new file mode 100644 index 00000000..ff211634 --- /dev/null +++ b/packages/db/shared/schemas/findUniqueOrThrowLabRxTemplate.schema.js @@ -0,0 +1,42 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateFindUniqueOrThrowZodSchema = exports.LabRxTemplateFindUniqueOrThrowSchema = void 0; +const z = __importStar(require("zod")); +const LabRxTemplateSelect_schema_1 = require("./objects/LabRxTemplateSelect.schema"); +const LabRxTemplateInclude_schema_1 = require("./objects/LabRxTemplateInclude.schema"); +const LabRxTemplateWhereUniqueInput_schema_1 = require("./objects/LabRxTemplateWhereUniqueInput.schema"); +exports.LabRxTemplateFindUniqueOrThrowSchema = z.object({ select: LabRxTemplateSelect_schema_1.LabRxTemplateSelectObjectSchema.optional(), include: LabRxTemplateInclude_schema_1.LabRxTemplateIncludeObjectSchema.optional(), where: LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema }).strict(); +exports.LabRxTemplateFindUniqueOrThrowZodSchema = z.object({ select: LabRxTemplateSelect_schema_1.LabRxTemplateSelectObjectSchema.optional(), include: LabRxTemplateInclude_schema_1.LabRxTemplateIncludeObjectSchema.optional(), where: LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema }).strict(); diff --git a/packages/db/shared/schemas/findUniqueOrThrowSeleniumSettings.schema.js b/packages/db/shared/schemas/findUniqueOrThrowSeleniumSettings.schema.js new file mode 100644 index 00000000..71c18dba --- /dev/null +++ b/packages/db/shared/schemas/findUniqueOrThrowSeleniumSettings.schema.js @@ -0,0 +1,42 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsFindUniqueOrThrowZodSchema = exports.SeleniumSettingsFindUniqueOrThrowSchema = void 0; +const z = __importStar(require("zod")); +const SeleniumSettingsSelect_schema_1 = require("./objects/SeleniumSettingsSelect.schema"); +const SeleniumSettingsInclude_schema_1 = require("./objects/SeleniumSettingsInclude.schema"); +const SeleniumSettingsWhereUniqueInput_schema_1 = require("./objects/SeleniumSettingsWhereUniqueInput.schema"); +exports.SeleniumSettingsFindUniqueOrThrowSchema = z.object({ select: SeleniumSettingsSelect_schema_1.SeleniumSettingsSelectObjectSchema.optional(), include: SeleniumSettingsInclude_schema_1.SeleniumSettingsIncludeObjectSchema.optional(), where: SeleniumSettingsWhereUniqueInput_schema_1.SeleniumSettingsWhereUniqueInputObjectSchema }).strict(); +exports.SeleniumSettingsFindUniqueOrThrowZodSchema = z.object({ select: SeleniumSettingsSelect_schema_1.SeleniumSettingsSelectObjectSchema.optional(), include: SeleniumSettingsInclude_schema_1.SeleniumSettingsIncludeObjectSchema.optional(), where: SeleniumSettingsWhereUniqueInput_schema_1.SeleniumSettingsWhereUniqueInputObjectSchema }).strict(); diff --git a/packages/db/shared/schemas/findUniqueSeleniumSettings.schema.js b/packages/db/shared/schemas/findUniqueSeleniumSettings.schema.js new file mode 100644 index 00000000..ea2e206e --- /dev/null +++ b/packages/db/shared/schemas/findUniqueSeleniumSettings.schema.js @@ -0,0 +1,42 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsFindUniqueZodSchema = exports.SeleniumSettingsFindUniqueSchema = void 0; +const z = __importStar(require("zod")); +const SeleniumSettingsSelect_schema_1 = require("./objects/SeleniumSettingsSelect.schema"); +const SeleniumSettingsInclude_schema_1 = require("./objects/SeleniumSettingsInclude.schema"); +const SeleniumSettingsWhereUniqueInput_schema_1 = require("./objects/SeleniumSettingsWhereUniqueInput.schema"); +exports.SeleniumSettingsFindUniqueSchema = z.object({ select: SeleniumSettingsSelect_schema_1.SeleniumSettingsSelectObjectSchema.optional(), include: SeleniumSettingsInclude_schema_1.SeleniumSettingsIncludeObjectSchema.optional(), where: SeleniumSettingsWhereUniqueInput_schema_1.SeleniumSettingsWhereUniqueInputObjectSchema }).strict(); +exports.SeleniumSettingsFindUniqueZodSchema = z.object({ select: SeleniumSettingsSelect_schema_1.SeleniumSettingsSelectObjectSchema.optional(), include: SeleniumSettingsInclude_schema_1.SeleniumSettingsIncludeObjectSchema.optional(), where: SeleniumSettingsWhereUniqueInput_schema_1.SeleniumSettingsWhereUniqueInputObjectSchema }).strict(); diff --git a/packages/db/shared/schemas/groupByAppointment.schema.d.ts b/packages/db/shared/schemas/groupByAppointment.schema.d.ts index fa08307e..7dcfacf5 100644 --- a/packages/db/shared/schemas/groupByAppointment.schema.d.ts +++ b/packages/db/shared/schemas/groupByAppointment.schema.d.ts @@ -7,14 +7,14 @@ export declare const AppointmentGroupByZodSchema: z.ZodObject<{ having: z.ZodOptional>; take: z.ZodOptional; skip: z.ZodOptional; - by: z.ZodArray, "many">; + by: z.ZodArray, "many">; _count: z.ZodOptional, z.ZodType]>>; _min: z.ZodOptional>; _max: z.ZodOptional>; _avg: z.ZodOptional>; _sum: z.ZodOptional>; }, "strict", z.ZodTypeAny, { - by: ("type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "userId" | "staffId")[]; + by: ("type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "npiProviderId" | "userId" | "startTime" | "endTime" | "typeLocked" | "notes" | "procedureCodeNotes" | "movedByAi" | "eligibilityStatus" | "staffId")[]; where?: Prisma.AppointmentWhereInput | undefined; _count?: true | Prisma.AppointmentCountAggregateInputType | undefined; orderBy?: Prisma.AppointmentOrderByWithAggregationInput | Prisma.AppointmentOrderByWithAggregationInput[] | undefined; @@ -26,7 +26,7 @@ export declare const AppointmentGroupByZodSchema: z.ZodObject<{ _sum?: Prisma.AppointmentSumAggregateInputType | undefined; having?: Prisma.AppointmentScalarWhereWithAggregatesInput | undefined; }, { - by: ("type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "userId" | "staffId")[]; + by: ("type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "npiProviderId" | "userId" | "startTime" | "endTime" | "typeLocked" | "notes" | "procedureCodeNotes" | "movedByAi" | "eligibilityStatus" | "staffId")[]; where?: Prisma.AppointmentWhereInput | undefined; _count?: true | Prisma.AppointmentCountAggregateInputType | undefined; orderBy?: Prisma.AppointmentOrderByWithAggregationInput | Prisma.AppointmentOrderByWithAggregationInput[] | undefined; diff --git a/packages/db/shared/schemas/groupByClaim.schema.d.ts b/packages/db/shared/schemas/groupByClaim.schema.d.ts index 5b01babe..f000c675 100644 --- a/packages/db/shared/schemas/groupByClaim.schema.d.ts +++ b/packages/db/shared/schemas/groupByClaim.schema.d.ts @@ -7,14 +7,14 @@ export declare const ClaimGroupByZodSchema: z.ZodObject<{ having: z.ZodOptional>; take: z.ZodOptional; skip: z.ZodOptional; - by: z.ZodArray, "many">; + by: z.ZodArray, "many">; _count: z.ZodOptional, z.ZodType]>>; _min: z.ZodOptional>; _max: z.ZodOptional>; _avg: z.ZodOptional>; _sum: z.ZodOptional>; }, "strict", z.ZodTypeAny, { - by: ("status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber")[]; + by: ("status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber" | "preAuthNumber")[]; where?: Prisma.ClaimWhereInput | undefined; _count?: true | Prisma.ClaimCountAggregateInputType | undefined; orderBy?: Prisma.ClaimOrderByWithAggregationInput | Prisma.ClaimOrderByWithAggregationInput[] | undefined; @@ -26,7 +26,7 @@ export declare const ClaimGroupByZodSchema: z.ZodObject<{ _sum?: Prisma.ClaimSumAggregateInputType | undefined; having?: Prisma.ClaimScalarWhereWithAggregatesInput | undefined; }, { - by: ("status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber")[]; + by: ("status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber" | "preAuthNumber")[]; where?: Prisma.ClaimWhereInput | undefined; _count?: true | Prisma.ClaimCountAggregateInputType | undefined; orderBy?: Prisma.ClaimOrderByWithAggregationInput | Prisma.ClaimOrderByWithAggregationInput[] | undefined; diff --git a/packages/db/shared/schemas/groupByCloudFolder.schema.d.ts b/packages/db/shared/schemas/groupByCloudFolder.schema.d.ts index 86645a58..6e04ff60 100644 --- a/packages/db/shared/schemas/groupByCloudFolder.schema.d.ts +++ b/packages/db/shared/schemas/groupByCloudFolder.schema.d.ts @@ -7,14 +7,14 @@ export declare const CloudFolderGroupByZodSchema: z.ZodObject<{ having: z.ZodOptional>; take: z.ZodOptional; skip: z.ZodOptional; - by: z.ZodArray, "many">; + by: z.ZodArray, "many">; _count: z.ZodOptional, z.ZodType]>>; _min: z.ZodOptional>; _max: z.ZodOptional>; _avg: z.ZodOptional>; _sum: z.ZodOptional>; }, "strict", z.ZodTypeAny, { - by: ("id" | "createdAt" | "userId" | "name" | "updatedAt" | "parentId")[]; + by: ("id" | "createdAt" | "patientId" | "userId" | "name" | "updatedAt" | "parentId")[]; where?: Prisma.CloudFolderWhereInput | undefined; _count?: true | Prisma.CloudFolderCountAggregateInputType | undefined; orderBy?: Prisma.CloudFolderOrderByWithAggregationInput | Prisma.CloudFolderOrderByWithAggregationInput[] | undefined; @@ -26,7 +26,7 @@ export declare const CloudFolderGroupByZodSchema: z.ZodObject<{ _sum?: Prisma.CloudFolderSumAggregateInputType | undefined; having?: Prisma.CloudFolderScalarWhereWithAggregatesInput | undefined; }, { - by: ("id" | "createdAt" | "userId" | "name" | "updatedAt" | "parentId")[]; + by: ("id" | "createdAt" | "patientId" | "userId" | "name" | "updatedAt" | "parentId")[]; where?: Prisma.CloudFolderWhereInput | undefined; _count?: true | Prisma.CloudFolderCountAggregateInputType | undefined; orderBy?: Prisma.CloudFolderOrderByWithAggregationInput | Prisma.CloudFolderOrderByWithAggregationInput[] | undefined; diff --git a/packages/db/shared/schemas/groupByInsuranceCredential.schema.d.ts b/packages/db/shared/schemas/groupByInsuranceCredential.schema.d.ts index 8112b093..56223692 100644 --- a/packages/db/shared/schemas/groupByInsuranceCredential.schema.d.ts +++ b/packages/db/shared/schemas/groupByInsuranceCredential.schema.d.ts @@ -14,7 +14,7 @@ export declare const InsuranceCredentialGroupByZodSchema: z.ZodObject<{ _avg: z.ZodOptional>; _sum: z.ZodOptional>; }, "strict", z.ZodTypeAny, { - by: ("id" | "userId" | "siteKey" | "username" | "password")[]; + by: ("id" | "siteKey" | "username" | "password" | "userId")[]; where?: Prisma.InsuranceCredentialWhereInput | undefined; _count?: true | Prisma.InsuranceCredentialCountAggregateInputType | undefined; orderBy?: Prisma.InsuranceCredentialOrderByWithAggregationInput | Prisma.InsuranceCredentialOrderByWithAggregationInput[] | undefined; @@ -26,7 +26,7 @@ export declare const InsuranceCredentialGroupByZodSchema: z.ZodObject<{ _sum?: Prisma.InsuranceCredentialSumAggregateInputType | undefined; having?: Prisma.InsuranceCredentialScalarWhereWithAggregatesInput | undefined; }, { - by: ("id" | "userId" | "siteKey" | "username" | "password")[]; + by: ("id" | "siteKey" | "username" | "password" | "userId")[]; where?: Prisma.InsuranceCredentialWhereInput | undefined; _count?: true | Prisma.InsuranceCredentialCountAggregateInputType | undefined; orderBy?: Prisma.InsuranceCredentialOrderByWithAggregationInput | Prisma.InsuranceCredentialOrderByWithAggregationInput[] | undefined; diff --git a/packages/db/shared/schemas/groupByLabRxTemplate.schema.js b/packages/db/shared/schemas/groupByLabRxTemplate.schema.js new file mode 100644 index 00000000..903be210 --- /dev/null +++ b/packages/db/shared/schemas/groupByLabRxTemplate.schema.js @@ -0,0 +1,48 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateGroupByZodSchema = exports.LabRxTemplateGroupBySchema = void 0; +const z = __importStar(require("zod")); +const LabRxTemplateWhereInput_schema_1 = require("./objects/LabRxTemplateWhereInput.schema"); +const LabRxTemplateOrderByWithAggregationInput_schema_1 = require("./objects/LabRxTemplateOrderByWithAggregationInput.schema"); +const LabRxTemplateScalarWhereWithAggregatesInput_schema_1 = require("./objects/LabRxTemplateScalarWhereWithAggregatesInput.schema"); +const LabRxTemplateScalarFieldEnum_schema_1 = require("./enums/LabRxTemplateScalarFieldEnum.schema"); +const LabRxTemplateCountAggregateInput_schema_1 = require("./objects/LabRxTemplateCountAggregateInput.schema"); +const LabRxTemplateMinAggregateInput_schema_1 = require("./objects/LabRxTemplateMinAggregateInput.schema"); +const LabRxTemplateMaxAggregateInput_schema_1 = require("./objects/LabRxTemplateMaxAggregateInput.schema"); +const LabRxTemplateAvgAggregateInput_schema_1 = require("./objects/LabRxTemplateAvgAggregateInput.schema"); +const LabRxTemplateSumAggregateInput_schema_1 = require("./objects/LabRxTemplateSumAggregateInput.schema"); +exports.LabRxTemplateGroupBySchema = z.object({ where: LabRxTemplateWhereInput_schema_1.LabRxTemplateWhereInputObjectSchema.optional(), orderBy: z.union([LabRxTemplateOrderByWithAggregationInput_schema_1.LabRxTemplateOrderByWithAggregationInputObjectSchema, LabRxTemplateOrderByWithAggregationInput_schema_1.LabRxTemplateOrderByWithAggregationInputObjectSchema.array()]).optional(), having: LabRxTemplateScalarWhereWithAggregatesInput_schema_1.LabRxTemplateScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(LabRxTemplateScalarFieldEnum_schema_1.LabRxTemplateScalarFieldEnumSchema), _count: z.union([z.literal(true), LabRxTemplateCountAggregateInput_schema_1.LabRxTemplateCountAggregateInputObjectSchema]).optional(), _min: LabRxTemplateMinAggregateInput_schema_1.LabRxTemplateMinAggregateInputObjectSchema.optional(), _max: LabRxTemplateMaxAggregateInput_schema_1.LabRxTemplateMaxAggregateInputObjectSchema.optional(), _avg: LabRxTemplateAvgAggregateInput_schema_1.LabRxTemplateAvgAggregateInputObjectSchema.optional(), _sum: LabRxTemplateSumAggregateInput_schema_1.LabRxTemplateSumAggregateInputObjectSchema.optional() }).strict(); +exports.LabRxTemplateGroupByZodSchema = z.object({ where: LabRxTemplateWhereInput_schema_1.LabRxTemplateWhereInputObjectSchema.optional(), orderBy: z.union([LabRxTemplateOrderByWithAggregationInput_schema_1.LabRxTemplateOrderByWithAggregationInputObjectSchema, LabRxTemplateOrderByWithAggregationInput_schema_1.LabRxTemplateOrderByWithAggregationInputObjectSchema.array()]).optional(), having: LabRxTemplateScalarWhereWithAggregatesInput_schema_1.LabRxTemplateScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(LabRxTemplateScalarFieldEnum_schema_1.LabRxTemplateScalarFieldEnumSchema), _count: z.union([z.literal(true), LabRxTemplateCountAggregateInput_schema_1.LabRxTemplateCountAggregateInputObjectSchema]).optional(), _min: LabRxTemplateMinAggregateInput_schema_1.LabRxTemplateMinAggregateInputObjectSchema.optional(), _max: LabRxTemplateMaxAggregateInput_schema_1.LabRxTemplateMaxAggregateInputObjectSchema.optional(), _avg: LabRxTemplateAvgAggregateInput_schema_1.LabRxTemplateAvgAggregateInputObjectSchema.optional(), _sum: LabRxTemplateSumAggregateInput_schema_1.LabRxTemplateSumAggregateInputObjectSchema.optional() }).strict(); diff --git a/packages/db/shared/schemas/groupByNpiProvider.schema.d.ts b/packages/db/shared/schemas/groupByNpiProvider.schema.d.ts index 4cc208ea..df28d7e8 100644 --- a/packages/db/shared/schemas/groupByNpiProvider.schema.d.ts +++ b/packages/db/shared/schemas/groupByNpiProvider.schema.d.ts @@ -7,14 +7,14 @@ export declare const NpiProviderGroupByZodSchema: z.ZodObject<{ having: z.ZodOptional>; take: z.ZodOptional; skip: z.ZodOptional; - by: z.ZodArray, "many">; + by: z.ZodArray, "many">; _count: z.ZodOptional, z.ZodType]>>; _min: z.ZodOptional>; _max: z.ZodOptional>; _avg: z.ZodOptional>; _sum: z.ZodOptional>; }, "strict", z.ZodTypeAny, { - by: ("id" | "createdAt" | "userId" | "npiNumber" | "providerName")[]; + by: ("id" | "createdAt" | "userId" | "npiNumber" | "providerName" | "sortOrder")[]; where?: Prisma.NpiProviderWhereInput | undefined; _count?: true | Prisma.NpiProviderCountAggregateInputType | undefined; orderBy?: Prisma.NpiProviderOrderByWithAggregationInput | Prisma.NpiProviderOrderByWithAggregationInput[] | undefined; @@ -26,7 +26,7 @@ export declare const NpiProviderGroupByZodSchema: z.ZodObject<{ _sum?: Prisma.NpiProviderSumAggregateInputType | undefined; having?: Prisma.NpiProviderScalarWhereWithAggregatesInput | undefined; }, { - by: ("id" | "createdAt" | "userId" | "npiNumber" | "providerName")[]; + by: ("id" | "createdAt" | "userId" | "npiNumber" | "providerName" | "sortOrder")[]; where?: Prisma.NpiProviderWhereInput | undefined; _count?: true | Prisma.NpiProviderCountAggregateInputType | undefined; orderBy?: Prisma.NpiProviderOrderByWithAggregationInput | Prisma.NpiProviderOrderByWithAggregationInput[] | undefined; diff --git a/packages/db/shared/schemas/groupByPatient.schema.d.ts b/packages/db/shared/schemas/groupByPatient.schema.d.ts index d3b06ba7..2a986455 100644 --- a/packages/db/shared/schemas/groupByPatient.schema.d.ts +++ b/packages/db/shared/schemas/groupByPatient.schema.d.ts @@ -7,14 +7,14 @@ export declare const PatientGroupByZodSchema: z.ZodObject<{ having: z.ZodOptional>; take: z.ZodOptional; skip: z.ZodOptional; - by: z.ZodArray, "many">; + by: z.ZodArray, "many">; _count: z.ZodOptional, z.ZodType]>>; _min: z.ZodOptional>; _max: z.ZodOptional>; _avg: z.ZodOptional>; _sum: z.ZodOptional>; }, "strict", z.ZodTypeAny, { - by: ("status" | "id" | "createdAt" | "userId" | "email" | "phone" | "dateOfBirth" | "insuranceProvider" | "firstName" | "lastName" | "gender" | "address" | "city" | "zipCode" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions")[]; + by: ("status" | "id" | "createdAt" | "userId" | "email" | "phone" | "updatedAt" | "dateOfBirth" | "insuranceProvider" | "city" | "zipCode" | "firstName" | "lastName" | "gender" | "address" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions" | "preferredLanguage")[]; where?: Prisma.PatientWhereInput | undefined; _count?: true | Prisma.PatientCountAggregateInputType | undefined; orderBy?: Prisma.PatientOrderByWithAggregationInput | Prisma.PatientOrderByWithAggregationInput[] | undefined; @@ -26,7 +26,7 @@ export declare const PatientGroupByZodSchema: z.ZodObject<{ _sum?: Prisma.PatientSumAggregateInputType | undefined; having?: Prisma.PatientScalarWhereWithAggregatesInput | undefined; }, { - by: ("status" | "id" | "createdAt" | "userId" | "email" | "phone" | "dateOfBirth" | "insuranceProvider" | "firstName" | "lastName" | "gender" | "address" | "city" | "zipCode" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions")[]; + by: ("status" | "id" | "createdAt" | "userId" | "email" | "phone" | "updatedAt" | "dateOfBirth" | "insuranceProvider" | "city" | "zipCode" | "firstName" | "lastName" | "gender" | "address" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions" | "preferredLanguage")[]; where?: Prisma.PatientWhereInput | undefined; _count?: true | Prisma.PatientCountAggregateInputType | undefined; orderBy?: Prisma.PatientOrderByWithAggregationInput | Prisma.PatientOrderByWithAggregationInput[] | undefined; diff --git a/packages/db/shared/schemas/groupByPayment.schema.d.ts b/packages/db/shared/schemas/groupByPayment.schema.d.ts index 02b54caa..a6f5b9fb 100644 --- a/packages/db/shared/schemas/groupByPayment.schema.d.ts +++ b/packages/db/shared/schemas/groupByPayment.schema.d.ts @@ -7,14 +7,14 @@ export declare const PaymentGroupByZodSchema: z.ZodObject<{ having: z.ZodOptional>; take: z.ZodOptional; skip: z.ZodOptional; - by: z.ZodArray, "many">; + by: z.ZodArray, "many">; _count: z.ZodOptional, z.ZodType]>>; _min: z.ZodOptional>; _max: z.ZodOptional>; _avg: z.ZodOptional>; _sum: z.ZodOptional>; }, "strict", z.ZodTypeAny, { - by: ("status" | "id" | "createdAt" | "patientId" | "notes" | "userId" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById")[]; + by: ("status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "userId" | "claimId" | "notes" | "icn" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "updatedById" | "mhPaidAmount" | "copayment" | "adjustment" | "updatedAt")[]; where?: Prisma.PaymentWhereInput | undefined; _count?: true | Prisma.PaymentCountAggregateInputType | undefined; orderBy?: Prisma.PaymentOrderByWithAggregationInput | Prisma.PaymentOrderByWithAggregationInput[] | undefined; @@ -26,7 +26,7 @@ export declare const PaymentGroupByZodSchema: z.ZodObject<{ _sum?: Prisma.PaymentSumAggregateInputType | undefined; having?: Prisma.PaymentScalarWhereWithAggregatesInput | undefined; }, { - by: ("status" | "id" | "createdAt" | "patientId" | "notes" | "userId" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById")[]; + by: ("status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "userId" | "claimId" | "notes" | "icn" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "updatedById" | "mhPaidAmount" | "copayment" | "adjustment" | "updatedAt")[]; where?: Prisma.PaymentWhereInput | undefined; _count?: true | Prisma.PaymentCountAggregateInputType | undefined; orderBy?: Prisma.PaymentOrderByWithAggregationInput | Prisma.PaymentOrderByWithAggregationInput[] | undefined; diff --git a/packages/db/shared/schemas/groupBySeleniumSettings.schema.js b/packages/db/shared/schemas/groupBySeleniumSettings.schema.js new file mode 100644 index 00000000..b86e0da8 --- /dev/null +++ b/packages/db/shared/schemas/groupBySeleniumSettings.schema.js @@ -0,0 +1,48 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsGroupByZodSchema = exports.SeleniumSettingsGroupBySchema = void 0; +const z = __importStar(require("zod")); +const SeleniumSettingsWhereInput_schema_1 = require("./objects/SeleniumSettingsWhereInput.schema"); +const SeleniumSettingsOrderByWithAggregationInput_schema_1 = require("./objects/SeleniumSettingsOrderByWithAggregationInput.schema"); +const SeleniumSettingsScalarWhereWithAggregatesInput_schema_1 = require("./objects/SeleniumSettingsScalarWhereWithAggregatesInput.schema"); +const SeleniumSettingsScalarFieldEnum_schema_1 = require("./enums/SeleniumSettingsScalarFieldEnum.schema"); +const SeleniumSettingsCountAggregateInput_schema_1 = require("./objects/SeleniumSettingsCountAggregateInput.schema"); +const SeleniumSettingsMinAggregateInput_schema_1 = require("./objects/SeleniumSettingsMinAggregateInput.schema"); +const SeleniumSettingsMaxAggregateInput_schema_1 = require("./objects/SeleniumSettingsMaxAggregateInput.schema"); +const SeleniumSettingsAvgAggregateInput_schema_1 = require("./objects/SeleniumSettingsAvgAggregateInput.schema"); +const SeleniumSettingsSumAggregateInput_schema_1 = require("./objects/SeleniumSettingsSumAggregateInput.schema"); +exports.SeleniumSettingsGroupBySchema = z.object({ where: SeleniumSettingsWhereInput_schema_1.SeleniumSettingsWhereInputObjectSchema.optional(), orderBy: z.union([SeleniumSettingsOrderByWithAggregationInput_schema_1.SeleniumSettingsOrderByWithAggregationInputObjectSchema, SeleniumSettingsOrderByWithAggregationInput_schema_1.SeleniumSettingsOrderByWithAggregationInputObjectSchema.array()]).optional(), having: SeleniumSettingsScalarWhereWithAggregatesInput_schema_1.SeleniumSettingsScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(SeleniumSettingsScalarFieldEnum_schema_1.SeleniumSettingsScalarFieldEnumSchema), _count: z.union([z.literal(true), SeleniumSettingsCountAggregateInput_schema_1.SeleniumSettingsCountAggregateInputObjectSchema]).optional(), _min: SeleniumSettingsMinAggregateInput_schema_1.SeleniumSettingsMinAggregateInputObjectSchema.optional(), _max: SeleniumSettingsMaxAggregateInput_schema_1.SeleniumSettingsMaxAggregateInputObjectSchema.optional(), _avg: SeleniumSettingsAvgAggregateInput_schema_1.SeleniumSettingsAvgAggregateInputObjectSchema.optional(), _sum: SeleniumSettingsSumAggregateInput_schema_1.SeleniumSettingsSumAggregateInputObjectSchema.optional() }).strict(); +exports.SeleniumSettingsGroupByZodSchema = z.object({ where: SeleniumSettingsWhereInput_schema_1.SeleniumSettingsWhereInputObjectSchema.optional(), orderBy: z.union([SeleniumSettingsOrderByWithAggregationInput_schema_1.SeleniumSettingsOrderByWithAggregationInputObjectSchema, SeleniumSettingsOrderByWithAggregationInput_schema_1.SeleniumSettingsOrderByWithAggregationInputObjectSchema.array()]).optional(), having: SeleniumSettingsScalarWhereWithAggregatesInput_schema_1.SeleniumSettingsScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(SeleniumSettingsScalarFieldEnum_schema_1.SeleniumSettingsScalarFieldEnumSchema), _count: z.union([z.literal(true), SeleniumSettingsCountAggregateInput_schema_1.SeleniumSettingsCountAggregateInputObjectSchema]).optional(), _min: SeleniumSettingsMinAggregateInput_schema_1.SeleniumSettingsMinAggregateInputObjectSchema.optional(), _max: SeleniumSettingsMaxAggregateInput_schema_1.SeleniumSettingsMaxAggregateInputObjectSchema.optional(), _avg: SeleniumSettingsAvgAggregateInput_schema_1.SeleniumSettingsAvgAggregateInputObjectSchema.optional(), _sum: SeleniumSettingsSumAggregateInput_schema_1.SeleniumSettingsSumAggregateInputObjectSchema.optional() }).strict(); diff --git a/packages/db/shared/schemas/groupByServiceLine.schema.d.ts b/packages/db/shared/schemas/groupByServiceLine.schema.d.ts index be5dc430..b666687d 100644 --- a/packages/db/shared/schemas/groupByServiceLine.schema.d.ts +++ b/packages/db/shared/schemas/groupByServiceLine.schema.d.ts @@ -7,14 +7,14 @@ export declare const ServiceLineGroupByZodSchema: z.ZodObject<{ having: z.ZodOptional>; take: z.ZodOptional; skip: z.ZodOptional; - by: z.ZodArray, "many">; + by: z.ZodArray, "many">; _count: z.ZodOptional, z.ZodType]>>; _min: z.ZodOptional>; _max: z.ZodOptional>; _avg: z.ZodOptional>; _sum: z.ZodOptional>; }, "strict", z.ZodTypeAny, { - by: ("status" | "id" | "procedureCode" | "toothNumber" | "toothSurface" | "claimId" | "paymentId" | "procedureDate" | "quad" | "arch" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue")[]; + by: ("status" | "id" | "procedureCode" | "toothNumber" | "toothSurface" | "claimId" | "paymentId" | "procedureDate" | "quad" | "arch" | "icn" | "paidCode" | "allowedAmount" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue")[]; where?: Prisma.ServiceLineWhereInput | undefined; _count?: true | Prisma.ServiceLineCountAggregateInputType | undefined; orderBy?: Prisma.ServiceLineOrderByWithAggregationInput | Prisma.ServiceLineOrderByWithAggregationInput[] | undefined; @@ -26,7 +26,7 @@ export declare const ServiceLineGroupByZodSchema: z.ZodObject<{ _sum?: Prisma.ServiceLineSumAggregateInputType | undefined; having?: Prisma.ServiceLineScalarWhereWithAggregatesInput | undefined; }, { - by: ("status" | "id" | "procedureCode" | "toothNumber" | "toothSurface" | "claimId" | "paymentId" | "procedureDate" | "quad" | "arch" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue")[]; + by: ("status" | "id" | "procedureCode" | "toothNumber" | "toothSurface" | "claimId" | "paymentId" | "procedureDate" | "quad" | "arch" | "icn" | "paidCode" | "allowedAmount" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue")[]; where?: Prisma.ServiceLineWhereInput | undefined; _count?: true | Prisma.ServiceLineCountAggregateInputType | undefined; orderBy?: Prisma.ServiceLineOrderByWithAggregationInput | Prisma.ServiceLineOrderByWithAggregationInput[] | undefined; diff --git a/packages/db/shared/schemas/groupByServiceLineTransaction.schema.d.ts b/packages/db/shared/schemas/groupByServiceLineTransaction.schema.d.ts index 2d908e2d..1457702e 100644 --- a/packages/db/shared/schemas/groupByServiceLineTransaction.schema.d.ts +++ b/packages/db/shared/schemas/groupByServiceLineTransaction.schema.d.ts @@ -14,7 +14,7 @@ export declare const ServiceLineTransactionGroupByZodSchema: z.ZodObject<{ _avg: z.ZodOptional>; _sum: z.ZodOptional>; }, "strict", z.ZodTypeAny, { - by: ("id" | "createdAt" | "notes" | "paymentId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "serviceLineId")[]; + by: ("id" | "createdAt" | "notes" | "serviceLineId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "paymentId")[]; where?: Prisma.ServiceLineTransactionWhereInput | undefined; _count?: true | Prisma.ServiceLineTransactionCountAggregateInputType | undefined; orderBy?: Prisma.ServiceLineTransactionOrderByWithAggregationInput | Prisma.ServiceLineTransactionOrderByWithAggregationInput[] | undefined; @@ -26,7 +26,7 @@ export declare const ServiceLineTransactionGroupByZodSchema: z.ZodObject<{ _sum?: Prisma.ServiceLineTransactionSumAggregateInputType | undefined; having?: Prisma.ServiceLineTransactionScalarWhereWithAggregatesInput | undefined; }, { - by: ("id" | "createdAt" | "notes" | "paymentId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "serviceLineId")[]; + by: ("id" | "createdAt" | "notes" | "serviceLineId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "paymentId")[]; where?: Prisma.ServiceLineTransactionWhereInput | undefined; _count?: true | Prisma.ServiceLineTransactionCountAggregateInputType | undefined; orderBy?: Prisma.ServiceLineTransactionOrderByWithAggregationInput | Prisma.ServiceLineTransactionOrderByWithAggregationInput[] | undefined; diff --git a/packages/db/shared/schemas/groupByUser.schema.d.ts b/packages/db/shared/schemas/groupByUser.schema.d.ts index fa8cee78..bf12b442 100644 --- a/packages/db/shared/schemas/groupByUser.schema.d.ts +++ b/packages/db/shared/schemas/groupByUser.schema.d.ts @@ -7,14 +7,14 @@ export declare const UserGroupByZodSchema: z.ZodObject<{ having: z.ZodOptional>; take: z.ZodOptional; skip: z.ZodOptional; - by: z.ZodArray, "many">; + by: z.ZodArray, "many">; _count: z.ZodOptional, z.ZodType]>>; _min: z.ZodOptional>; _max: z.ZodOptional>; _avg: z.ZodOptional>; _sum: z.ZodOptional>; }, "strict", z.ZodTypeAny, { - by: ("id" | "username" | "password" | "autoBackupEnabled" | "usbBackupEnabled")[]; + by: ("id" | "username" | "password" | "autoBackupEnabled" | "autoBackupHour" | "usbBackupEnabled" | "usbBackupHour" | "autoMhCheckEnabled" | "autoMhCheckDayOfWeek" | "autoMhCheckHour")[]; where?: Prisma.UserWhereInput | undefined; _count?: true | Prisma.UserCountAggregateInputType | undefined; orderBy?: Prisma.UserOrderByWithAggregationInput | Prisma.UserOrderByWithAggregationInput[] | undefined; @@ -26,7 +26,7 @@ export declare const UserGroupByZodSchema: z.ZodObject<{ _sum?: Prisma.UserSumAggregateInputType | undefined; having?: Prisma.UserScalarWhereWithAggregatesInput | undefined; }, { - by: ("id" | "username" | "password" | "autoBackupEnabled" | "usbBackupEnabled")[]; + by: ("id" | "username" | "password" | "autoBackupEnabled" | "autoBackupHour" | "usbBackupEnabled" | "usbBackupHour" | "autoMhCheckEnabled" | "autoMhCheckDayOfWeek" | "autoMhCheckHour")[]; where?: Prisma.UserWhereInput | undefined; _count?: true | Prisma.UserCountAggregateInputType | undefined; orderBy?: Prisma.UserOrderByWithAggregationInput | Prisma.UserOrderByWithAggregationInput[] | undefined; diff --git a/packages/db/shared/schemas/index.d.ts b/packages/db/shared/schemas/index.d.ts index 8c057c94..b0306924 100644 --- a/packages/db/shared/schemas/index.d.ts +++ b/packages/db/shared/schemas/index.d.ts @@ -2,6 +2,7 @@ export * from './enums/TransactionIsolationLevel.schema'; export * from './enums/UserScalarFieldEnum.schema'; export * from './enums/PatientScalarFieldEnum.schema'; export * from './enums/AppointmentScalarFieldEnum.schema'; +export * from './enums/AppointmentFileScalarFieldEnum.schema'; export * from './enums/StaffScalarFieldEnum.schema'; export * from './enums/NpiProviderScalarFieldEnum.schema'; export * from './enums/AppointmentProcedureScalarFieldEnum.schema'; @@ -9,6 +10,7 @@ export * from './enums/ClaimScalarFieldEnum.schema'; export * from './enums/ServiceLineScalarFieldEnum.schema'; export * from './enums/ClaimFileScalarFieldEnum.schema'; export * from './enums/InsuranceCredentialScalarFieldEnum.schema'; +export * from './enums/ShoppingVendorScalarFieldEnum.schema'; export * from './enums/PdfGroupScalarFieldEnum.schema'; export * from './enums/PdfFileScalarFieldEnum.schema'; export * from './enums/PaymentScalarFieldEnum.schema'; @@ -22,8 +24,20 @@ export * from './enums/CloudFileScalarFieldEnum.schema'; export * from './enums/CloudFileChunkScalarFieldEnum.schema'; export * from './enums/CommunicationScalarFieldEnum.schema'; export * from './enums/PatientDocumentScalarFieldEnum.schema'; +export * from './enums/TwilioSettingsScalarFieldEnum.schema'; +export * from './enums/AiSettingsScalarFieldEnum.schema'; +export * from './enums/OfficeHoursScalarFieldEnum.schema'; +export * from './enums/OfficeContactScalarFieldEnum.schema'; +export * from './enums/InsuranceContactScalarFieldEnum.schema'; +export * from './enums/ProcedureTimeslotScalarFieldEnum.schema'; +export * from './enums/PatientConversationScalarFieldEnum.schema'; +export * from './enums/LabRxTemplateScalarFieldEnum.schema'; +export * from './enums/CommissionBatchScalarFieldEnum.schema'; +export * from './enums/CommissionBatchItemScalarFieldEnum.schema'; +export * from './enums/SeleniumSettingsScalarFieldEnum.schema'; export * from './enums/SortOrder.schema'; export * from './enums/NullableJsonNullValueInput.schema'; +export * from './enums/JsonNullValueInput.schema'; export * from './enums/QueryMode.schema'; export * from './enums/NullsOrder.schema'; export * from './enums/JsonNullValueFilter.schema'; @@ -90,6 +104,23 @@ export * from './updateManyAndReturnAppointment.schema'; export * from './upsertOneAppointment.schema'; export * from './aggregateAppointment.schema'; export * from './groupByAppointment.schema'; +export * from './findUniqueAppointmentFile.schema'; +export * from './findUniqueOrThrowAppointmentFile.schema'; +export * from './findFirstAppointmentFile.schema'; +export * from './findFirstOrThrowAppointmentFile.schema'; +export * from './findManyAppointmentFile.schema'; +export * from './countAppointmentFile.schema'; +export * from './createOneAppointmentFile.schema'; +export * from './createManyAppointmentFile.schema'; +export * from './createManyAndReturnAppointmentFile.schema'; +export * from './deleteOneAppointmentFile.schema'; +export * from './deleteManyAppointmentFile.schema'; +export * from './updateOneAppointmentFile.schema'; +export * from './updateManyAppointmentFile.schema'; +export * from './updateManyAndReturnAppointmentFile.schema'; +export * from './upsertOneAppointmentFile.schema'; +export * from './aggregateAppointmentFile.schema'; +export * from './groupByAppointmentFile.schema'; export * from './findUniqueStaff.schema'; export * from './findUniqueOrThrowStaff.schema'; export * from './findFirstStaff.schema'; @@ -209,6 +240,23 @@ export * from './updateManyAndReturnInsuranceCredential.schema'; export * from './upsertOneInsuranceCredential.schema'; export * from './aggregateInsuranceCredential.schema'; export * from './groupByInsuranceCredential.schema'; +export * from './findUniqueShoppingVendor.schema'; +export * from './findUniqueOrThrowShoppingVendor.schema'; +export * from './findFirstShoppingVendor.schema'; +export * from './findFirstOrThrowShoppingVendor.schema'; +export * from './findManyShoppingVendor.schema'; +export * from './countShoppingVendor.schema'; +export * from './createOneShoppingVendor.schema'; +export * from './createManyShoppingVendor.schema'; +export * from './createManyAndReturnShoppingVendor.schema'; +export * from './deleteOneShoppingVendor.schema'; +export * from './deleteManyShoppingVendor.schema'; +export * from './updateOneShoppingVendor.schema'; +export * from './updateManyShoppingVendor.schema'; +export * from './updateManyAndReturnShoppingVendor.schema'; +export * from './upsertOneShoppingVendor.schema'; +export * from './aggregateShoppingVendor.schema'; +export * from './groupByShoppingVendor.schema'; export * from './findUniquePdfGroup.schema'; export * from './findUniqueOrThrowPdfGroup.schema'; export * from './findFirstPdfGroup.schema'; @@ -430,6 +478,193 @@ export * from './updateManyAndReturnPatientDocument.schema'; export * from './upsertOnePatientDocument.schema'; export * from './aggregatePatientDocument.schema'; export * from './groupByPatientDocument.schema'; +export * from './findUniqueTwilioSettings.schema'; +export * from './findUniqueOrThrowTwilioSettings.schema'; +export * from './findFirstTwilioSettings.schema'; +export * from './findFirstOrThrowTwilioSettings.schema'; +export * from './findManyTwilioSettings.schema'; +export * from './countTwilioSettings.schema'; +export * from './createOneTwilioSettings.schema'; +export * from './createManyTwilioSettings.schema'; +export * from './createManyAndReturnTwilioSettings.schema'; +export * from './deleteOneTwilioSettings.schema'; +export * from './deleteManyTwilioSettings.schema'; +export * from './updateOneTwilioSettings.schema'; +export * from './updateManyTwilioSettings.schema'; +export * from './updateManyAndReturnTwilioSettings.schema'; +export * from './upsertOneTwilioSettings.schema'; +export * from './aggregateTwilioSettings.schema'; +export * from './groupByTwilioSettings.schema'; +export * from './findUniqueAiSettings.schema'; +export * from './findUniqueOrThrowAiSettings.schema'; +export * from './findFirstAiSettings.schema'; +export * from './findFirstOrThrowAiSettings.schema'; +export * from './findManyAiSettings.schema'; +export * from './countAiSettings.schema'; +export * from './createOneAiSettings.schema'; +export * from './createManyAiSettings.schema'; +export * from './createManyAndReturnAiSettings.schema'; +export * from './deleteOneAiSettings.schema'; +export * from './deleteManyAiSettings.schema'; +export * from './updateOneAiSettings.schema'; +export * from './updateManyAiSettings.schema'; +export * from './updateManyAndReturnAiSettings.schema'; +export * from './upsertOneAiSettings.schema'; +export * from './aggregateAiSettings.schema'; +export * from './groupByAiSettings.schema'; +export * from './findUniqueOfficeHours.schema'; +export * from './findUniqueOrThrowOfficeHours.schema'; +export * from './findFirstOfficeHours.schema'; +export * from './findFirstOrThrowOfficeHours.schema'; +export * from './findManyOfficeHours.schema'; +export * from './countOfficeHours.schema'; +export * from './createOneOfficeHours.schema'; +export * from './createManyOfficeHours.schema'; +export * from './createManyAndReturnOfficeHours.schema'; +export * from './deleteOneOfficeHours.schema'; +export * from './deleteManyOfficeHours.schema'; +export * from './updateOneOfficeHours.schema'; +export * from './updateManyOfficeHours.schema'; +export * from './updateManyAndReturnOfficeHours.schema'; +export * from './upsertOneOfficeHours.schema'; +export * from './aggregateOfficeHours.schema'; +export * from './groupByOfficeHours.schema'; +export * from './findUniqueOfficeContact.schema'; +export * from './findUniqueOrThrowOfficeContact.schema'; +export * from './findFirstOfficeContact.schema'; +export * from './findFirstOrThrowOfficeContact.schema'; +export * from './findManyOfficeContact.schema'; +export * from './countOfficeContact.schema'; +export * from './createOneOfficeContact.schema'; +export * from './createManyOfficeContact.schema'; +export * from './createManyAndReturnOfficeContact.schema'; +export * from './deleteOneOfficeContact.schema'; +export * from './deleteManyOfficeContact.schema'; +export * from './updateOneOfficeContact.schema'; +export * from './updateManyOfficeContact.schema'; +export * from './updateManyAndReturnOfficeContact.schema'; +export * from './upsertOneOfficeContact.schema'; +export * from './aggregateOfficeContact.schema'; +export * from './groupByOfficeContact.schema'; +export * from './findUniqueInsuranceContact.schema'; +export * from './findUniqueOrThrowInsuranceContact.schema'; +export * from './findFirstInsuranceContact.schema'; +export * from './findFirstOrThrowInsuranceContact.schema'; +export * from './findManyInsuranceContact.schema'; +export * from './countInsuranceContact.schema'; +export * from './createOneInsuranceContact.schema'; +export * from './createManyInsuranceContact.schema'; +export * from './createManyAndReturnInsuranceContact.schema'; +export * from './deleteOneInsuranceContact.schema'; +export * from './deleteManyInsuranceContact.schema'; +export * from './updateOneInsuranceContact.schema'; +export * from './updateManyInsuranceContact.schema'; +export * from './updateManyAndReturnInsuranceContact.schema'; +export * from './upsertOneInsuranceContact.schema'; +export * from './aggregateInsuranceContact.schema'; +export * from './groupByInsuranceContact.schema'; +export * from './findUniqueProcedureTimeslot.schema'; +export * from './findUniqueOrThrowProcedureTimeslot.schema'; +export * from './findFirstProcedureTimeslot.schema'; +export * from './findFirstOrThrowProcedureTimeslot.schema'; +export * from './findManyProcedureTimeslot.schema'; +export * from './countProcedureTimeslot.schema'; +export * from './createOneProcedureTimeslot.schema'; +export * from './createManyProcedureTimeslot.schema'; +export * from './createManyAndReturnProcedureTimeslot.schema'; +export * from './deleteOneProcedureTimeslot.schema'; +export * from './deleteManyProcedureTimeslot.schema'; +export * from './updateOneProcedureTimeslot.schema'; +export * from './updateManyProcedureTimeslot.schema'; +export * from './updateManyAndReturnProcedureTimeslot.schema'; +export * from './upsertOneProcedureTimeslot.schema'; +export * from './aggregateProcedureTimeslot.schema'; +export * from './groupByProcedureTimeslot.schema'; +export * from './findUniquePatientConversation.schema'; +export * from './findUniqueOrThrowPatientConversation.schema'; +export * from './findFirstPatientConversation.schema'; +export * from './findFirstOrThrowPatientConversation.schema'; +export * from './findManyPatientConversation.schema'; +export * from './countPatientConversation.schema'; +export * from './createOnePatientConversation.schema'; +export * from './createManyPatientConversation.schema'; +export * from './createManyAndReturnPatientConversation.schema'; +export * from './deleteOnePatientConversation.schema'; +export * from './deleteManyPatientConversation.schema'; +export * from './updateOnePatientConversation.schema'; +export * from './updateManyPatientConversation.schema'; +export * from './updateManyAndReturnPatientConversation.schema'; +export * from './upsertOnePatientConversation.schema'; +export * from './aggregatePatientConversation.schema'; +export * from './groupByPatientConversation.schema'; +export * from './findUniqueLabRxTemplate.schema'; +export * from './findUniqueOrThrowLabRxTemplate.schema'; +export * from './findFirstLabRxTemplate.schema'; +export * from './findFirstOrThrowLabRxTemplate.schema'; +export * from './findManyLabRxTemplate.schema'; +export * from './countLabRxTemplate.schema'; +export * from './createOneLabRxTemplate.schema'; +export * from './createManyLabRxTemplate.schema'; +export * from './createManyAndReturnLabRxTemplate.schema'; +export * from './deleteOneLabRxTemplate.schema'; +export * from './deleteManyLabRxTemplate.schema'; +export * from './updateOneLabRxTemplate.schema'; +export * from './updateManyLabRxTemplate.schema'; +export * from './updateManyAndReturnLabRxTemplate.schema'; +export * from './upsertOneLabRxTemplate.schema'; +export * from './aggregateLabRxTemplate.schema'; +export * from './groupByLabRxTemplate.schema'; +export * from './findUniqueCommissionBatch.schema'; +export * from './findUniqueOrThrowCommissionBatch.schema'; +export * from './findFirstCommissionBatch.schema'; +export * from './findFirstOrThrowCommissionBatch.schema'; +export * from './findManyCommissionBatch.schema'; +export * from './countCommissionBatch.schema'; +export * from './createOneCommissionBatch.schema'; +export * from './createManyCommissionBatch.schema'; +export * from './createManyAndReturnCommissionBatch.schema'; +export * from './deleteOneCommissionBatch.schema'; +export * from './deleteManyCommissionBatch.schema'; +export * from './updateOneCommissionBatch.schema'; +export * from './updateManyCommissionBatch.schema'; +export * from './updateManyAndReturnCommissionBatch.schema'; +export * from './upsertOneCommissionBatch.schema'; +export * from './aggregateCommissionBatch.schema'; +export * from './groupByCommissionBatch.schema'; +export * from './findUniqueCommissionBatchItem.schema'; +export * from './findUniqueOrThrowCommissionBatchItem.schema'; +export * from './findFirstCommissionBatchItem.schema'; +export * from './findFirstOrThrowCommissionBatchItem.schema'; +export * from './findManyCommissionBatchItem.schema'; +export * from './countCommissionBatchItem.schema'; +export * from './createOneCommissionBatchItem.schema'; +export * from './createManyCommissionBatchItem.schema'; +export * from './createManyAndReturnCommissionBatchItem.schema'; +export * from './deleteOneCommissionBatchItem.schema'; +export * from './deleteManyCommissionBatchItem.schema'; +export * from './updateOneCommissionBatchItem.schema'; +export * from './updateManyCommissionBatchItem.schema'; +export * from './updateManyAndReturnCommissionBatchItem.schema'; +export * from './upsertOneCommissionBatchItem.schema'; +export * from './aggregateCommissionBatchItem.schema'; +export * from './groupByCommissionBatchItem.schema'; +export * from './findUniqueSeleniumSettings.schema'; +export * from './findUniqueOrThrowSeleniumSettings.schema'; +export * from './findFirstSeleniumSettings.schema'; +export * from './findFirstOrThrowSeleniumSettings.schema'; +export * from './findManySeleniumSettings.schema'; +export * from './countSeleniumSettings.schema'; +export * from './createOneSeleniumSettings.schema'; +export * from './createManySeleniumSettings.schema'; +export * from './createManyAndReturnSeleniumSettings.schema'; +export * from './deleteOneSeleniumSettings.schema'; +export * from './deleteManySeleniumSettings.schema'; +export * from './updateOneSeleniumSettings.schema'; +export * from './updateManySeleniumSettings.schema'; +export * from './updateManyAndReturnSeleniumSettings.schema'; +export * from './upsertOneSeleniumSettings.schema'; +export * from './aggregateSeleniumSettings.schema'; +export * from './groupBySeleniumSettings.schema'; export * from './results/UserFindUniqueResult.schema'; export * from './results/UserFindFirstResult.schema'; export * from './results/UserFindManyResult.schema'; @@ -469,6 +704,19 @@ export * from './results/AppointmentDeleteManyResult.schema'; export * from './results/AppointmentAggregateResult.schema'; export * from './results/AppointmentGroupByResult.schema'; export * from './results/AppointmentCountResult.schema'; +export * from './results/AppointmentFileFindUniqueResult.schema'; +export * from './results/AppointmentFileFindFirstResult.schema'; +export * from './results/AppointmentFileFindManyResult.schema'; +export * from './results/AppointmentFileCreateResult.schema'; +export * from './results/AppointmentFileCreateManyResult.schema'; +export * from './results/AppointmentFileUpdateResult.schema'; +export * from './results/AppointmentFileUpdateManyResult.schema'; +export * from './results/AppointmentFileUpsertResult.schema'; +export * from './results/AppointmentFileDeleteResult.schema'; +export * from './results/AppointmentFileDeleteManyResult.schema'; +export * from './results/AppointmentFileAggregateResult.schema'; +export * from './results/AppointmentFileGroupByResult.schema'; +export * from './results/AppointmentFileCountResult.schema'; export * from './results/StaffFindUniqueResult.schema'; export * from './results/StaffFindFirstResult.schema'; export * from './results/StaffFindManyResult.schema'; @@ -560,6 +808,19 @@ export * from './results/InsuranceCredentialDeleteManyResult.schema'; export * from './results/InsuranceCredentialAggregateResult.schema'; export * from './results/InsuranceCredentialGroupByResult.schema'; export * from './results/InsuranceCredentialCountResult.schema'; +export * from './results/ShoppingVendorFindUniqueResult.schema'; +export * from './results/ShoppingVendorFindFirstResult.schema'; +export * from './results/ShoppingVendorFindManyResult.schema'; +export * from './results/ShoppingVendorCreateResult.schema'; +export * from './results/ShoppingVendorCreateManyResult.schema'; +export * from './results/ShoppingVendorUpdateResult.schema'; +export * from './results/ShoppingVendorUpdateManyResult.schema'; +export * from './results/ShoppingVendorUpsertResult.schema'; +export * from './results/ShoppingVendorDeleteResult.schema'; +export * from './results/ShoppingVendorDeleteManyResult.schema'; +export * from './results/ShoppingVendorAggregateResult.schema'; +export * from './results/ShoppingVendorGroupByResult.schema'; +export * from './results/ShoppingVendorCountResult.schema'; export * from './results/PdfGroupFindUniqueResult.schema'; export * from './results/PdfGroupFindFirstResult.schema'; export * from './results/PdfGroupFindManyResult.schema'; @@ -729,11 +990,155 @@ export * from './results/PatientDocumentDeleteManyResult.schema'; export * from './results/PatientDocumentAggregateResult.schema'; export * from './results/PatientDocumentGroupByResult.schema'; export * from './results/PatientDocumentCountResult.schema'; +export * from './results/TwilioSettingsFindUniqueResult.schema'; +export * from './results/TwilioSettingsFindFirstResult.schema'; +export * from './results/TwilioSettingsFindManyResult.schema'; +export * from './results/TwilioSettingsCreateResult.schema'; +export * from './results/TwilioSettingsCreateManyResult.schema'; +export * from './results/TwilioSettingsUpdateResult.schema'; +export * from './results/TwilioSettingsUpdateManyResult.schema'; +export * from './results/TwilioSettingsUpsertResult.schema'; +export * from './results/TwilioSettingsDeleteResult.schema'; +export * from './results/TwilioSettingsDeleteManyResult.schema'; +export * from './results/TwilioSettingsAggregateResult.schema'; +export * from './results/TwilioSettingsGroupByResult.schema'; +export * from './results/TwilioSettingsCountResult.schema'; +export * from './results/AiSettingsFindUniqueResult.schema'; +export * from './results/AiSettingsFindFirstResult.schema'; +export * from './results/AiSettingsFindManyResult.schema'; +export * from './results/AiSettingsCreateResult.schema'; +export * from './results/AiSettingsCreateManyResult.schema'; +export * from './results/AiSettingsUpdateResult.schema'; +export * from './results/AiSettingsUpdateManyResult.schema'; +export * from './results/AiSettingsUpsertResult.schema'; +export * from './results/AiSettingsDeleteResult.schema'; +export * from './results/AiSettingsDeleteManyResult.schema'; +export * from './results/AiSettingsAggregateResult.schema'; +export * from './results/AiSettingsGroupByResult.schema'; +export * from './results/AiSettingsCountResult.schema'; +export * from './results/OfficeHoursFindUniqueResult.schema'; +export * from './results/OfficeHoursFindFirstResult.schema'; +export * from './results/OfficeHoursFindManyResult.schema'; +export * from './results/OfficeHoursCreateResult.schema'; +export * from './results/OfficeHoursCreateManyResult.schema'; +export * from './results/OfficeHoursUpdateResult.schema'; +export * from './results/OfficeHoursUpdateManyResult.schema'; +export * from './results/OfficeHoursUpsertResult.schema'; +export * from './results/OfficeHoursDeleteResult.schema'; +export * from './results/OfficeHoursDeleteManyResult.schema'; +export * from './results/OfficeHoursAggregateResult.schema'; +export * from './results/OfficeHoursGroupByResult.schema'; +export * from './results/OfficeHoursCountResult.schema'; +export * from './results/OfficeContactFindUniqueResult.schema'; +export * from './results/OfficeContactFindFirstResult.schema'; +export * from './results/OfficeContactFindManyResult.schema'; +export * from './results/OfficeContactCreateResult.schema'; +export * from './results/OfficeContactCreateManyResult.schema'; +export * from './results/OfficeContactUpdateResult.schema'; +export * from './results/OfficeContactUpdateManyResult.schema'; +export * from './results/OfficeContactUpsertResult.schema'; +export * from './results/OfficeContactDeleteResult.schema'; +export * from './results/OfficeContactDeleteManyResult.schema'; +export * from './results/OfficeContactAggregateResult.schema'; +export * from './results/OfficeContactGroupByResult.schema'; +export * from './results/OfficeContactCountResult.schema'; +export * from './results/InsuranceContactFindUniqueResult.schema'; +export * from './results/InsuranceContactFindFirstResult.schema'; +export * from './results/InsuranceContactFindManyResult.schema'; +export * from './results/InsuranceContactCreateResult.schema'; +export * from './results/InsuranceContactCreateManyResult.schema'; +export * from './results/InsuranceContactUpdateResult.schema'; +export * from './results/InsuranceContactUpdateManyResult.schema'; +export * from './results/InsuranceContactUpsertResult.schema'; +export * from './results/InsuranceContactDeleteResult.schema'; +export * from './results/InsuranceContactDeleteManyResult.schema'; +export * from './results/InsuranceContactAggregateResult.schema'; +export * from './results/InsuranceContactGroupByResult.schema'; +export * from './results/InsuranceContactCountResult.schema'; +export * from './results/ProcedureTimeslotFindUniqueResult.schema'; +export * from './results/ProcedureTimeslotFindFirstResult.schema'; +export * from './results/ProcedureTimeslotFindManyResult.schema'; +export * from './results/ProcedureTimeslotCreateResult.schema'; +export * from './results/ProcedureTimeslotCreateManyResult.schema'; +export * from './results/ProcedureTimeslotUpdateResult.schema'; +export * from './results/ProcedureTimeslotUpdateManyResult.schema'; +export * from './results/ProcedureTimeslotUpsertResult.schema'; +export * from './results/ProcedureTimeslotDeleteResult.schema'; +export * from './results/ProcedureTimeslotDeleteManyResult.schema'; +export * from './results/ProcedureTimeslotAggregateResult.schema'; +export * from './results/ProcedureTimeslotGroupByResult.schema'; +export * from './results/ProcedureTimeslotCountResult.schema'; +export * from './results/PatientConversationFindUniqueResult.schema'; +export * from './results/PatientConversationFindFirstResult.schema'; +export * from './results/PatientConversationFindManyResult.schema'; +export * from './results/PatientConversationCreateResult.schema'; +export * from './results/PatientConversationCreateManyResult.schema'; +export * from './results/PatientConversationUpdateResult.schema'; +export * from './results/PatientConversationUpdateManyResult.schema'; +export * from './results/PatientConversationUpsertResult.schema'; +export * from './results/PatientConversationDeleteResult.schema'; +export * from './results/PatientConversationDeleteManyResult.schema'; +export * from './results/PatientConversationAggregateResult.schema'; +export * from './results/PatientConversationGroupByResult.schema'; +export * from './results/PatientConversationCountResult.schema'; +export * from './results/LabRxTemplateFindUniqueResult.schema'; +export * from './results/LabRxTemplateFindFirstResult.schema'; +export * from './results/LabRxTemplateFindManyResult.schema'; +export * from './results/LabRxTemplateCreateResult.schema'; +export * from './results/LabRxTemplateCreateManyResult.schema'; +export * from './results/LabRxTemplateUpdateResult.schema'; +export * from './results/LabRxTemplateUpdateManyResult.schema'; +export * from './results/LabRxTemplateUpsertResult.schema'; +export * from './results/LabRxTemplateDeleteResult.schema'; +export * from './results/LabRxTemplateDeleteManyResult.schema'; +export * from './results/LabRxTemplateAggregateResult.schema'; +export * from './results/LabRxTemplateGroupByResult.schema'; +export * from './results/LabRxTemplateCountResult.schema'; +export * from './results/CommissionBatchFindUniqueResult.schema'; +export * from './results/CommissionBatchFindFirstResult.schema'; +export * from './results/CommissionBatchFindManyResult.schema'; +export * from './results/CommissionBatchCreateResult.schema'; +export * from './results/CommissionBatchCreateManyResult.schema'; +export * from './results/CommissionBatchUpdateResult.schema'; +export * from './results/CommissionBatchUpdateManyResult.schema'; +export * from './results/CommissionBatchUpsertResult.schema'; +export * from './results/CommissionBatchDeleteResult.schema'; +export * from './results/CommissionBatchDeleteManyResult.schema'; +export * from './results/CommissionBatchAggregateResult.schema'; +export * from './results/CommissionBatchGroupByResult.schema'; +export * from './results/CommissionBatchCountResult.schema'; +export * from './results/CommissionBatchItemFindUniqueResult.schema'; +export * from './results/CommissionBatchItemFindFirstResult.schema'; +export * from './results/CommissionBatchItemFindManyResult.schema'; +export * from './results/CommissionBatchItemCreateResult.schema'; +export * from './results/CommissionBatchItemCreateManyResult.schema'; +export * from './results/CommissionBatchItemUpdateResult.schema'; +export * from './results/CommissionBatchItemUpdateManyResult.schema'; +export * from './results/CommissionBatchItemUpsertResult.schema'; +export * from './results/CommissionBatchItemDeleteResult.schema'; +export * from './results/CommissionBatchItemDeleteManyResult.schema'; +export * from './results/CommissionBatchItemAggregateResult.schema'; +export * from './results/CommissionBatchItemGroupByResult.schema'; +export * from './results/CommissionBatchItemCountResult.schema'; +export * from './results/SeleniumSettingsFindUniqueResult.schema'; +export * from './results/SeleniumSettingsFindFirstResult.schema'; +export * from './results/SeleniumSettingsFindManyResult.schema'; +export * from './results/SeleniumSettingsCreateResult.schema'; +export * from './results/SeleniumSettingsCreateManyResult.schema'; +export * from './results/SeleniumSettingsUpdateResult.schema'; +export * from './results/SeleniumSettingsUpdateManyResult.schema'; +export * from './results/SeleniumSettingsUpsertResult.schema'; +export * from './results/SeleniumSettingsDeleteResult.schema'; +export * from './results/SeleniumSettingsDeleteManyResult.schema'; +export * from './results/SeleniumSettingsAggregateResult.schema'; +export * from './results/SeleniumSettingsGroupByResult.schema'; +export * from './results/SeleniumSettingsCountResult.schema'; export * from './results/index'; export * from './objects/index'; export * from './variants/pure/User.pure'; export * from './variants/pure/Patient.pure'; export * from './variants/pure/Appointment.pure'; +export * from './variants/pure/AppointmentFile.pure'; export * from './variants/pure/Staff.pure'; export * from './variants/pure/NpiProvider.pure'; export * from './variants/pure/AppointmentProcedure.pure'; @@ -741,6 +1146,7 @@ export * from './variants/pure/Claim.pure'; export * from './variants/pure/ServiceLine.pure'; export * from './variants/pure/ClaimFile.pure'; export * from './variants/pure/InsuranceCredential.pure'; +export * from './variants/pure/ShoppingVendor.pure'; export * from './variants/pure/PdfGroup.pure'; export * from './variants/pure/PdfFile.pure'; export * from './variants/pure/Payment.pure'; @@ -754,10 +1160,22 @@ export * from './variants/pure/CloudFile.pure'; export * from './variants/pure/CloudFileChunk.pure'; export * from './variants/pure/Communication.pure'; export * from './variants/pure/PatientDocument.pure'; +export * from './variants/pure/TwilioSettings.pure'; +export * from './variants/pure/AiSettings.pure'; +export * from './variants/pure/OfficeHours.pure'; +export * from './variants/pure/OfficeContact.pure'; +export * from './variants/pure/InsuranceContact.pure'; +export * from './variants/pure/ProcedureTimeslot.pure'; +export * from './variants/pure/PatientConversation.pure'; +export * from './variants/pure/LabRxTemplate.pure'; +export * from './variants/pure/CommissionBatch.pure'; +export * from './variants/pure/CommissionBatchItem.pure'; +export * from './variants/pure/SeleniumSettings.pure'; export * from './variants/pure/index'; export * from './variants/input/User.input'; export * from './variants/input/Patient.input'; export * from './variants/input/Appointment.input'; +export * from './variants/input/AppointmentFile.input'; export * from './variants/input/Staff.input'; export * from './variants/input/NpiProvider.input'; export * from './variants/input/AppointmentProcedure.input'; @@ -765,6 +1183,7 @@ export * from './variants/input/Claim.input'; export * from './variants/input/ServiceLine.input'; export * from './variants/input/ClaimFile.input'; export * from './variants/input/InsuranceCredential.input'; +export * from './variants/input/ShoppingVendor.input'; export * from './variants/input/PdfGroup.input'; export * from './variants/input/PdfFile.input'; export * from './variants/input/Payment.input'; @@ -778,10 +1197,22 @@ export * from './variants/input/CloudFile.input'; export * from './variants/input/CloudFileChunk.input'; export * from './variants/input/Communication.input'; export * from './variants/input/PatientDocument.input'; +export * from './variants/input/TwilioSettings.input'; +export * from './variants/input/AiSettings.input'; +export * from './variants/input/OfficeHours.input'; +export * from './variants/input/OfficeContact.input'; +export * from './variants/input/InsuranceContact.input'; +export * from './variants/input/ProcedureTimeslot.input'; +export * from './variants/input/PatientConversation.input'; +export * from './variants/input/LabRxTemplate.input'; +export * from './variants/input/CommissionBatch.input'; +export * from './variants/input/CommissionBatchItem.input'; +export * from './variants/input/SeleniumSettings.input'; export * from './variants/input/index'; export * from './variants/result/User.result'; export * from './variants/result/Patient.result'; export * from './variants/result/Appointment.result'; +export * from './variants/result/AppointmentFile.result'; export * from './variants/result/Staff.result'; export * from './variants/result/NpiProvider.result'; export * from './variants/result/AppointmentProcedure.result'; @@ -789,6 +1220,7 @@ export * from './variants/result/Claim.result'; export * from './variants/result/ServiceLine.result'; export * from './variants/result/ClaimFile.result'; export * from './variants/result/InsuranceCredential.result'; +export * from './variants/result/ShoppingVendor.result'; export * from './variants/result/PdfGroup.result'; export * from './variants/result/PdfFile.result'; export * from './variants/result/Payment.result'; @@ -802,6 +1234,17 @@ export * from './variants/result/CloudFile.result'; export * from './variants/result/CloudFileChunk.result'; export * from './variants/result/Communication.result'; export * from './variants/result/PatientDocument.result'; +export * from './variants/result/TwilioSettings.result'; +export * from './variants/result/AiSettings.result'; +export * from './variants/result/OfficeHours.result'; +export * from './variants/result/OfficeContact.result'; +export * from './variants/result/InsuranceContact.result'; +export * from './variants/result/ProcedureTimeslot.result'; +export * from './variants/result/PatientConversation.result'; +export * from './variants/result/LabRxTemplate.result'; +export * from './variants/result/CommissionBatch.result'; +export * from './variants/result/CommissionBatchItem.result'; +export * from './variants/result/SeleniumSettings.result'; export * from './variants/result/index'; export * from './variants/index'; //# sourceMappingURL=index.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/index.d.ts.map b/packages/db/shared/schemas/index.d.ts.map index e134b944..82285fb6 100644 --- a/packages/db/shared/schemas/index.d.ts.map +++ b/packages/db/shared/schemas/index.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/packages/db/shared/schemas/index.js b/packages/db/shared/schemas/index.js index f90b2867..a3e0829a 100644 --- a/packages/db/shared/schemas/index.js +++ b/packages/db/shared/schemas/index.js @@ -47,8 +47,10 @@ __exportStar(require("./enums/OfficeContactScalarFieldEnum.schema"), exports); __exportStar(require("./enums/InsuranceContactScalarFieldEnum.schema"), exports); __exportStar(require("./enums/ProcedureTimeslotScalarFieldEnum.schema"), exports); __exportStar(require("./enums/PatientConversationScalarFieldEnum.schema"), exports); +__exportStar(require("./enums/LabRxTemplateScalarFieldEnum.schema"), exports); __exportStar(require("./enums/CommissionBatchScalarFieldEnum.schema"), exports); __exportStar(require("./enums/CommissionBatchItemScalarFieldEnum.schema"), exports); +__exportStar(require("./enums/SeleniumSettingsScalarFieldEnum.schema"), exports); __exportStar(require("./enums/SortOrder.schema"), exports); __exportStar(require("./enums/NullableJsonNullValueInput.schema"), exports); __exportStar(require("./enums/JsonNullValueInput.schema"), exports); @@ -611,6 +613,23 @@ __exportStar(require("./updateManyAndReturnPatientConversation.schema"), exports __exportStar(require("./upsertOnePatientConversation.schema"), exports); __exportStar(require("./aggregatePatientConversation.schema"), exports); __exportStar(require("./groupByPatientConversation.schema"), exports); +__exportStar(require("./findUniqueLabRxTemplate.schema"), exports); +__exportStar(require("./findUniqueOrThrowLabRxTemplate.schema"), exports); +__exportStar(require("./findFirstLabRxTemplate.schema"), exports); +__exportStar(require("./findFirstOrThrowLabRxTemplate.schema"), exports); +__exportStar(require("./findManyLabRxTemplate.schema"), exports); +__exportStar(require("./countLabRxTemplate.schema"), exports); +__exportStar(require("./createOneLabRxTemplate.schema"), exports); +__exportStar(require("./createManyLabRxTemplate.schema"), exports); +__exportStar(require("./createManyAndReturnLabRxTemplate.schema"), exports); +__exportStar(require("./deleteOneLabRxTemplate.schema"), exports); +__exportStar(require("./deleteManyLabRxTemplate.schema"), exports); +__exportStar(require("./updateOneLabRxTemplate.schema"), exports); +__exportStar(require("./updateManyLabRxTemplate.schema"), exports); +__exportStar(require("./updateManyAndReturnLabRxTemplate.schema"), exports); +__exportStar(require("./upsertOneLabRxTemplate.schema"), exports); +__exportStar(require("./aggregateLabRxTemplate.schema"), exports); +__exportStar(require("./groupByLabRxTemplate.schema"), exports); __exportStar(require("./findUniqueCommissionBatch.schema"), exports); __exportStar(require("./findUniqueOrThrowCommissionBatch.schema"), exports); __exportStar(require("./findFirstCommissionBatch.schema"), exports); @@ -645,6 +664,23 @@ __exportStar(require("./updateManyAndReturnCommissionBatchItem.schema"), exports __exportStar(require("./upsertOneCommissionBatchItem.schema"), exports); __exportStar(require("./aggregateCommissionBatchItem.schema"), exports); __exportStar(require("./groupByCommissionBatchItem.schema"), exports); +__exportStar(require("./findUniqueSeleniumSettings.schema"), exports); +__exportStar(require("./findUniqueOrThrowSeleniumSettings.schema"), exports); +__exportStar(require("./findFirstSeleniumSettings.schema"), exports); +__exportStar(require("./findFirstOrThrowSeleniumSettings.schema"), exports); +__exportStar(require("./findManySeleniumSettings.schema"), exports); +__exportStar(require("./countSeleniumSettings.schema"), exports); +__exportStar(require("./createOneSeleniumSettings.schema"), exports); +__exportStar(require("./createManySeleniumSettings.schema"), exports); +__exportStar(require("./createManyAndReturnSeleniumSettings.schema"), exports); +__exportStar(require("./deleteOneSeleniumSettings.schema"), exports); +__exportStar(require("./deleteManySeleniumSettings.schema"), exports); +__exportStar(require("./updateOneSeleniumSettings.schema"), exports); +__exportStar(require("./updateManySeleniumSettings.schema"), exports); +__exportStar(require("./updateManyAndReturnSeleniumSettings.schema"), exports); +__exportStar(require("./upsertOneSeleniumSettings.schema"), exports); +__exportStar(require("./aggregateSeleniumSettings.schema"), exports); +__exportStar(require("./groupBySeleniumSettings.schema"), exports); __exportStar(require("./results/UserFindUniqueResult.schema"), exports); __exportStar(require("./results/UserFindFirstResult.schema"), exports); __exportStar(require("./results/UserFindManyResult.schema"), exports); @@ -1061,6 +1097,19 @@ __exportStar(require("./results/PatientConversationDeleteManyResult.schema"), ex __exportStar(require("./results/PatientConversationAggregateResult.schema"), exports); __exportStar(require("./results/PatientConversationGroupByResult.schema"), exports); __exportStar(require("./results/PatientConversationCountResult.schema"), exports); +__exportStar(require("./results/LabRxTemplateFindUniqueResult.schema"), exports); +__exportStar(require("./results/LabRxTemplateFindFirstResult.schema"), exports); +__exportStar(require("./results/LabRxTemplateFindManyResult.schema"), exports); +__exportStar(require("./results/LabRxTemplateCreateResult.schema"), exports); +__exportStar(require("./results/LabRxTemplateCreateManyResult.schema"), exports); +__exportStar(require("./results/LabRxTemplateUpdateResult.schema"), exports); +__exportStar(require("./results/LabRxTemplateUpdateManyResult.schema"), exports); +__exportStar(require("./results/LabRxTemplateUpsertResult.schema"), exports); +__exportStar(require("./results/LabRxTemplateDeleteResult.schema"), exports); +__exportStar(require("./results/LabRxTemplateDeleteManyResult.schema"), exports); +__exportStar(require("./results/LabRxTemplateAggregateResult.schema"), exports); +__exportStar(require("./results/LabRxTemplateGroupByResult.schema"), exports); +__exportStar(require("./results/LabRxTemplateCountResult.schema"), exports); __exportStar(require("./results/CommissionBatchFindUniqueResult.schema"), exports); __exportStar(require("./results/CommissionBatchFindFirstResult.schema"), exports); __exportStar(require("./results/CommissionBatchFindManyResult.schema"), exports); @@ -1087,6 +1136,19 @@ __exportStar(require("./results/CommissionBatchItemDeleteManyResult.schema"), ex __exportStar(require("./results/CommissionBatchItemAggregateResult.schema"), exports); __exportStar(require("./results/CommissionBatchItemGroupByResult.schema"), exports); __exportStar(require("./results/CommissionBatchItemCountResult.schema"), exports); +__exportStar(require("./results/SeleniumSettingsFindUniqueResult.schema"), exports); +__exportStar(require("./results/SeleniumSettingsFindFirstResult.schema"), exports); +__exportStar(require("./results/SeleniumSettingsFindManyResult.schema"), exports); +__exportStar(require("./results/SeleniumSettingsCreateResult.schema"), exports); +__exportStar(require("./results/SeleniumSettingsCreateManyResult.schema"), exports); +__exportStar(require("./results/SeleniumSettingsUpdateResult.schema"), exports); +__exportStar(require("./results/SeleniumSettingsUpdateManyResult.schema"), exports); +__exportStar(require("./results/SeleniumSettingsUpsertResult.schema"), exports); +__exportStar(require("./results/SeleniumSettingsDeleteResult.schema"), exports); +__exportStar(require("./results/SeleniumSettingsDeleteManyResult.schema"), exports); +__exportStar(require("./results/SeleniumSettingsAggregateResult.schema"), exports); +__exportStar(require("./results/SeleniumSettingsGroupByResult.schema"), exports); +__exportStar(require("./results/SeleniumSettingsCountResult.schema"), exports); __exportStar(require("./results/index"), exports); __exportStar(require("./objects/index"), exports); __exportStar(require("./variants/pure/User.pure"), exports); @@ -1121,8 +1183,10 @@ __exportStar(require("./variants/pure/OfficeContact.pure"), exports); __exportStar(require("./variants/pure/InsuranceContact.pure"), exports); __exportStar(require("./variants/pure/ProcedureTimeslot.pure"), exports); __exportStar(require("./variants/pure/PatientConversation.pure"), exports); +__exportStar(require("./variants/pure/LabRxTemplate.pure"), exports); __exportStar(require("./variants/pure/CommissionBatch.pure"), exports); __exportStar(require("./variants/pure/CommissionBatchItem.pure"), exports); +__exportStar(require("./variants/pure/SeleniumSettings.pure"), exports); __exportStar(require("./variants/pure/index"), exports); __exportStar(require("./variants/input/User.input"), exports); __exportStar(require("./variants/input/Patient.input"), exports); @@ -1156,8 +1220,10 @@ __exportStar(require("./variants/input/OfficeContact.input"), exports); __exportStar(require("./variants/input/InsuranceContact.input"), exports); __exportStar(require("./variants/input/ProcedureTimeslot.input"), exports); __exportStar(require("./variants/input/PatientConversation.input"), exports); +__exportStar(require("./variants/input/LabRxTemplate.input"), exports); __exportStar(require("./variants/input/CommissionBatch.input"), exports); __exportStar(require("./variants/input/CommissionBatchItem.input"), exports); +__exportStar(require("./variants/input/SeleniumSettings.input"), exports); __exportStar(require("./variants/input/index"), exports); __exportStar(require("./variants/result/User.result"), exports); __exportStar(require("./variants/result/Patient.result"), exports); @@ -1191,7 +1257,9 @@ __exportStar(require("./variants/result/OfficeContact.result"), exports); __exportStar(require("./variants/result/InsuranceContact.result"), exports); __exportStar(require("./variants/result/ProcedureTimeslot.result"), exports); __exportStar(require("./variants/result/PatientConversation.result"), exports); +__exportStar(require("./variants/result/LabRxTemplate.result"), exports); __exportStar(require("./variants/result/CommissionBatch.result"), exports); __exportStar(require("./variants/result/CommissionBatchItem.result"), exports); +__exportStar(require("./variants/result/SeleniumSettings.result"), exports); __exportStar(require("./variants/result/index"), exports); __exportStar(require("./variants/index"), exports); diff --git a/packages/db/shared/schemas/objects/AppointmentAvgAggregateInput.schema.js b/packages/db/shared/schemas/objects/AppointmentAvgAggregateInput.schema.js index df893029..6ea9760b 100644 --- a/packages/db/shared/schemas/objects/AppointmentAvgAggregateInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentAvgAggregateInput.schema.js @@ -39,7 +39,8 @@ const makeSchema = () => z.object({ id: z.literal(true).optional(), patientId: z.literal(true).optional(), userId: z.literal(true).optional(), - staffId: z.literal(true).optional() + staffId: z.literal(true).optional(), + npiProviderId: z.literal(true).optional() }).strict(); exports.AppointmentAvgAggregateInputObjectSchema = makeSchema(); exports.AppointmentAvgAggregateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentAvgAggregateInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentAvgAggregateInput.schema.ts index 84b2c999..3655c3b8 100644 --- a/packages/db/shared/schemas/objects/AppointmentAvgAggregateInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentAvgAggregateInput.schema.ts @@ -6,7 +6,8 @@ const makeSchema = () => z.object({ id: z.literal(true).optional(), patientId: z.literal(true).optional(), userId: z.literal(true).optional(), - staffId: z.literal(true).optional() + staffId: z.literal(true).optional(), + npiProviderId: z.literal(true).optional() }).strict(); export const AppointmentAvgAggregateInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const AppointmentAvgAggregateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentAvgOrderByAggregateInput.schema.js b/packages/db/shared/schemas/objects/AppointmentAvgOrderByAggregateInput.schema.js index 988b5086..d4c7678d 100644 --- a/packages/db/shared/schemas/objects/AppointmentAvgOrderByAggregateInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentAvgOrderByAggregateInput.schema.js @@ -40,7 +40,8 @@ const makeSchema = () => z.object({ id: SortOrder_schema_1.SortOrderSchema.optional(), patientId: SortOrder_schema_1.SortOrderSchema.optional(), userId: SortOrder_schema_1.SortOrderSchema.optional(), - staffId: SortOrder_schema_1.SortOrderSchema.optional() + staffId: SortOrder_schema_1.SortOrderSchema.optional(), + npiProviderId: SortOrder_schema_1.SortOrderSchema.optional() }).strict(); exports.AppointmentAvgOrderByAggregateInputObjectSchema = makeSchema(); exports.AppointmentAvgOrderByAggregateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentAvgOrderByAggregateInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentAvgOrderByAggregateInput.schema.ts index 46c86648..76fea070 100644 --- a/packages/db/shared/schemas/objects/AppointmentAvgOrderByAggregateInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentAvgOrderByAggregateInput.schema.ts @@ -6,7 +6,8 @@ const makeSchema = () => z.object({ id: SortOrderSchema.optional(), patientId: SortOrderSchema.optional(), userId: SortOrderSchema.optional(), - staffId: SortOrderSchema.optional() + staffId: SortOrderSchema.optional(), + npiProviderId: SortOrderSchema.optional() }).strict(); export const AppointmentAvgOrderByAggregateInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const AppointmentAvgOrderByAggregateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentCountAggregateInput.schema.js b/packages/db/shared/schemas/objects/AppointmentCountAggregateInput.schema.js index 0a11d125..060ee51c 100644 --- a/packages/db/shared/schemas/objects/AppointmentCountAggregateInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentCountAggregateInput.schema.js @@ -40,6 +40,7 @@ const makeSchema = () => z.object({ patientId: z.literal(true).optional(), userId: z.literal(true).optional(), staffId: z.literal(true).optional(), + npiProviderId: z.literal(true).optional(), title: z.literal(true).optional(), date: z.literal(true).optional(), startTime: z.literal(true).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentCountAggregateInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentCountAggregateInput.schema.ts index 0af7816a..b987db18 100644 --- a/packages/db/shared/schemas/objects/AppointmentCountAggregateInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentCountAggregateInput.schema.ts @@ -7,6 +7,7 @@ const makeSchema = () => z.object({ patientId: z.literal(true).optional(), userId: z.literal(true).optional(), staffId: z.literal(true).optional(), + npiProviderId: z.literal(true).optional(), title: z.literal(true).optional(), date: z.literal(true).optional(), startTime: z.literal(true).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentCountOrderByAggregateInput.schema.js b/packages/db/shared/schemas/objects/AppointmentCountOrderByAggregateInput.schema.js index 1757aa44..7c58ae61 100644 --- a/packages/db/shared/schemas/objects/AppointmentCountOrderByAggregateInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentCountOrderByAggregateInput.schema.js @@ -41,6 +41,7 @@ const makeSchema = () => z.object({ patientId: SortOrder_schema_1.SortOrderSchema.optional(), userId: SortOrder_schema_1.SortOrderSchema.optional(), staffId: SortOrder_schema_1.SortOrderSchema.optional(), + npiProviderId: SortOrder_schema_1.SortOrderSchema.optional(), title: SortOrder_schema_1.SortOrderSchema.optional(), date: SortOrder_schema_1.SortOrderSchema.optional(), startTime: SortOrder_schema_1.SortOrderSchema.optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentCountOrderByAggregateInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentCountOrderByAggregateInput.schema.ts index 4d7c1f52..b8fccbec 100644 --- a/packages/db/shared/schemas/objects/AppointmentCountOrderByAggregateInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentCountOrderByAggregateInput.schema.ts @@ -7,6 +7,7 @@ const makeSchema = () => z.object({ patientId: SortOrderSchema.optional(), userId: SortOrderSchema.optional(), staffId: SortOrderSchema.optional(), + npiProviderId: SortOrderSchema.optional(), title: SortOrderSchema.optional(), date: SortOrderSchema.optional(), startTime: SortOrderSchema.optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentCreateInput.schema.js b/packages/db/shared/schemas/objects/AppointmentCreateInput.schema.js index a40b47a5..e8a654b0 100644 --- a/packages/db/shared/schemas/objects/AppointmentCreateInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentCreateInput.schema.js @@ -39,6 +39,7 @@ const PatientStatus_schema_1 = require("../enums/PatientStatus.schema"); const PatientCreateNestedOneWithoutAppointmentsInput_schema_1 = require("./PatientCreateNestedOneWithoutAppointmentsInput.schema"); const UserCreateNestedOneWithoutAppointmentsInput_schema_1 = require("./UserCreateNestedOneWithoutAppointmentsInput.schema"); const StaffCreateNestedOneWithoutAppointmentsInput_schema_1 = require("./StaffCreateNestedOneWithoutAppointmentsInput.schema"); +const NpiProviderCreateNestedOneWithoutAppointmentsInput_schema_1 = require("./NpiProviderCreateNestedOneWithoutAppointmentsInput.schema"); const AppointmentProcedureCreateNestedManyWithoutAppointmentInput_schema_1 = require("./AppointmentProcedureCreateNestedManyWithoutAppointmentInput.schema"); const ClaimCreateNestedManyWithoutAppointmentInput_schema_1 = require("./ClaimCreateNestedManyWithoutAppointmentInput.schema"); const AppointmentFileCreateNestedManyWithoutAppointmentInput_schema_1 = require("./AppointmentFileCreateNestedManyWithoutAppointmentInput.schema"); @@ -58,6 +59,7 @@ const makeSchema = () => z.object({ patient: z.lazy(() => PatientCreateNestedOneWithoutAppointmentsInput_schema_1.PatientCreateNestedOneWithoutAppointmentsInputObjectSchema), user: z.lazy(() => UserCreateNestedOneWithoutAppointmentsInput_schema_1.UserCreateNestedOneWithoutAppointmentsInputObjectSchema), staff: z.lazy(() => StaffCreateNestedOneWithoutAppointmentsInput_schema_1.StaffCreateNestedOneWithoutAppointmentsInputObjectSchema).optional(), + npiProvider: z.lazy(() => NpiProviderCreateNestedOneWithoutAppointmentsInput_schema_1.NpiProviderCreateNestedOneWithoutAppointmentsInputObjectSchema).optional(), procedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutAppointmentInput_schema_1.AppointmentProcedureCreateNestedManyWithoutAppointmentInputObjectSchema).optional(), claims: z.lazy(() => ClaimCreateNestedManyWithoutAppointmentInput_schema_1.ClaimCreateNestedManyWithoutAppointmentInputObjectSchema).optional(), files: z.lazy(() => AppointmentFileCreateNestedManyWithoutAppointmentInput_schema_1.AppointmentFileCreateNestedManyWithoutAppointmentInputObjectSchema).optional() diff --git a/packages/db/shared/schemas/objects/AppointmentCreateInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentCreateInput.schema.ts index c97e142b..7d92c1f4 100644 --- a/packages/db/shared/schemas/objects/AppointmentCreateInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentCreateInput.schema.ts @@ -4,6 +4,7 @@ import { PatientStatusSchema } from '../enums/PatientStatus.schema'; import { PatientCreateNestedOneWithoutAppointmentsInputObjectSchema as PatientCreateNestedOneWithoutAppointmentsInputObjectSchema } from './PatientCreateNestedOneWithoutAppointmentsInput.schema'; import { UserCreateNestedOneWithoutAppointmentsInputObjectSchema as UserCreateNestedOneWithoutAppointmentsInputObjectSchema } from './UserCreateNestedOneWithoutAppointmentsInput.schema'; import { StaffCreateNestedOneWithoutAppointmentsInputObjectSchema as StaffCreateNestedOneWithoutAppointmentsInputObjectSchema } from './StaffCreateNestedOneWithoutAppointmentsInput.schema'; +import { NpiProviderCreateNestedOneWithoutAppointmentsInputObjectSchema as NpiProviderCreateNestedOneWithoutAppointmentsInputObjectSchema } from './NpiProviderCreateNestedOneWithoutAppointmentsInput.schema'; import { AppointmentProcedureCreateNestedManyWithoutAppointmentInputObjectSchema as AppointmentProcedureCreateNestedManyWithoutAppointmentInputObjectSchema } from './AppointmentProcedureCreateNestedManyWithoutAppointmentInput.schema'; import { ClaimCreateNestedManyWithoutAppointmentInputObjectSchema as ClaimCreateNestedManyWithoutAppointmentInputObjectSchema } from './ClaimCreateNestedManyWithoutAppointmentInput.schema'; import { AppointmentFileCreateNestedManyWithoutAppointmentInputObjectSchema as AppointmentFileCreateNestedManyWithoutAppointmentInputObjectSchema } from './AppointmentFileCreateNestedManyWithoutAppointmentInput.schema' @@ -24,6 +25,7 @@ const makeSchema = () => z.object({ patient: z.lazy(() => PatientCreateNestedOneWithoutAppointmentsInputObjectSchema), user: z.lazy(() => UserCreateNestedOneWithoutAppointmentsInputObjectSchema), staff: z.lazy(() => StaffCreateNestedOneWithoutAppointmentsInputObjectSchema).optional(), + npiProvider: z.lazy(() => NpiProviderCreateNestedOneWithoutAppointmentsInputObjectSchema).optional(), procedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutAppointmentInputObjectSchema).optional(), claims: z.lazy(() => ClaimCreateNestedManyWithoutAppointmentInputObjectSchema).optional(), files: z.lazy(() => AppointmentFileCreateNestedManyWithoutAppointmentInputObjectSchema).optional() diff --git a/packages/db/shared/schemas/objects/AppointmentCreateManyInput.schema.js b/packages/db/shared/schemas/objects/AppointmentCreateManyInput.schema.js index a154663a..5ee5749d 100644 --- a/packages/db/shared/schemas/objects/AppointmentCreateManyInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentCreateManyInput.schema.js @@ -41,6 +41,7 @@ const makeSchema = () => z.object({ patientId: z.number().int(), userId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().optional().nullable(), title: z.string(), date: z.coerce.date(), startTime: z.string(), diff --git a/packages/db/shared/schemas/objects/AppointmentCreateManyInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentCreateManyInput.schema.ts index cf957ebe..44e811cf 100644 --- a/packages/db/shared/schemas/objects/AppointmentCreateManyInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentCreateManyInput.schema.ts @@ -7,6 +7,7 @@ const makeSchema = () => z.object({ patientId: z.number().int(), userId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().optional().nullable(), title: z.string(), date: z.coerce.date(), startTime: z.string(), diff --git a/packages/db/shared/schemas/objects/AppointmentCreateManyNpiProviderInput.schema.js b/packages/db/shared/schemas/objects/AppointmentCreateManyNpiProviderInput.schema.js new file mode 100644 index 00000000..9108d4c4 --- /dev/null +++ b/packages/db/shared/schemas/objects/AppointmentCreateManyNpiProviderInput.schema.js @@ -0,0 +1,58 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.AppointmentCreateManyNpiProviderInputObjectZodSchema = exports.AppointmentCreateManyNpiProviderInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const PatientStatus_schema_1 = require("../enums/PatientStatus.schema"); +const makeSchema = () => z.object({ + id: z.number().int().optional(), + patientId: z.number().int(), + userId: z.number().int(), + staffId: z.number().int(), + title: z.string(), + date: z.coerce.date(), + startTime: z.string(), + endTime: z.string(), + type: z.string(), + typeLocked: z.boolean().optional(), + notes: z.string().optional().nullable(), + procedureCodeNotes: z.string().optional().nullable(), + status: z.string().optional(), + movedByAi: z.boolean().optional(), + createdAt: z.coerce.date().optional(), + eligibilityStatus: PatientStatus_schema_1.PatientStatusSchema.optional() +}).strict(); +exports.AppointmentCreateManyNpiProviderInputObjectSchema = makeSchema(); +exports.AppointmentCreateManyNpiProviderInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentCreateManyNpiProviderInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentCreateManyNpiProviderInput.schema.ts new file mode 100644 index 00000000..3457d8b8 --- /dev/null +++ b/packages/db/shared/schemas/objects/AppointmentCreateManyNpiProviderInput.schema.ts @@ -0,0 +1,24 @@ +import * as z from 'zod'; +import type { Prisma } from '../../../generated/prisma'; +import { PatientStatusSchema } from '../enums/PatientStatus.schema' + +const makeSchema = () => z.object({ + id: z.number().int().optional(), + patientId: z.number().int(), + userId: z.number().int(), + staffId: z.number().int(), + title: z.string(), + date: z.coerce.date(), + startTime: z.string(), + endTime: z.string(), + type: z.string(), + typeLocked: z.boolean().optional(), + notes: z.string().optional().nullable(), + procedureCodeNotes: z.string().optional().nullable(), + status: z.string().optional(), + movedByAi: z.boolean().optional(), + createdAt: z.coerce.date().optional(), + eligibilityStatus: PatientStatusSchema.optional() +}).strict(); +export const AppointmentCreateManyNpiProviderInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; +export const AppointmentCreateManyNpiProviderInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentCreateManyNpiProviderInputEnvelope.schema.js b/packages/db/shared/schemas/objects/AppointmentCreateManyNpiProviderInputEnvelope.schema.js new file mode 100644 index 00000000..1125886e --- /dev/null +++ b/packages/db/shared/schemas/objects/AppointmentCreateManyNpiProviderInputEnvelope.schema.js @@ -0,0 +1,44 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.AppointmentCreateManyNpiProviderInputEnvelopeObjectZodSchema = exports.AppointmentCreateManyNpiProviderInputEnvelopeObjectSchema = void 0; +const z = __importStar(require("zod")); +const AppointmentCreateManyNpiProviderInput_schema_1 = require("./AppointmentCreateManyNpiProviderInput.schema"); +const makeSchema = () => z.object({ + data: z.union([z.lazy(() => AppointmentCreateManyNpiProviderInput_schema_1.AppointmentCreateManyNpiProviderInputObjectSchema), z.lazy(() => AppointmentCreateManyNpiProviderInput_schema_1.AppointmentCreateManyNpiProviderInputObjectSchema).array()]), + skipDuplicates: z.boolean().optional() +}).strict(); +exports.AppointmentCreateManyNpiProviderInputEnvelopeObjectSchema = makeSchema(); +exports.AppointmentCreateManyNpiProviderInputEnvelopeObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentCreateManyNpiProviderInputEnvelope.schema.ts b/packages/db/shared/schemas/objects/AppointmentCreateManyNpiProviderInputEnvelope.schema.ts new file mode 100644 index 00000000..c945f0c2 --- /dev/null +++ b/packages/db/shared/schemas/objects/AppointmentCreateManyNpiProviderInputEnvelope.schema.ts @@ -0,0 +1,10 @@ +import * as z from 'zod'; +import type { Prisma } from '../../../generated/prisma'; +import { AppointmentCreateManyNpiProviderInputObjectSchema as AppointmentCreateManyNpiProviderInputObjectSchema } from './AppointmentCreateManyNpiProviderInput.schema' + +const makeSchema = () => z.object({ + data: z.union([z.lazy(() => AppointmentCreateManyNpiProviderInputObjectSchema), z.lazy(() => AppointmentCreateManyNpiProviderInputObjectSchema).array()]), + skipDuplicates: z.boolean().optional() +}).strict(); +export const AppointmentCreateManyNpiProviderInputEnvelopeObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; +export const AppointmentCreateManyNpiProviderInputEnvelopeObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentCreateManyPatientInput.schema.js b/packages/db/shared/schemas/objects/AppointmentCreateManyPatientInput.schema.js index d055ade5..c9532d71 100644 --- a/packages/db/shared/schemas/objects/AppointmentCreateManyPatientInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentCreateManyPatientInput.schema.js @@ -40,6 +40,7 @@ const makeSchema = () => z.object({ id: z.number().int().optional(), userId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().optional().nullable(), title: z.string(), date: z.coerce.date(), startTime: z.string(), diff --git a/packages/db/shared/schemas/objects/AppointmentCreateManyPatientInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentCreateManyPatientInput.schema.ts index 0875a67e..433677a8 100644 --- a/packages/db/shared/schemas/objects/AppointmentCreateManyPatientInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentCreateManyPatientInput.schema.ts @@ -6,6 +6,7 @@ const makeSchema = () => z.object({ id: z.number().int().optional(), userId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().optional().nullable(), title: z.string(), date: z.coerce.date(), startTime: z.string(), diff --git a/packages/db/shared/schemas/objects/AppointmentCreateManyStaffInput.schema.js b/packages/db/shared/schemas/objects/AppointmentCreateManyStaffInput.schema.js index dfb5ec0c..fb6def7a 100644 --- a/packages/db/shared/schemas/objects/AppointmentCreateManyStaffInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentCreateManyStaffInput.schema.js @@ -40,6 +40,7 @@ const makeSchema = () => z.object({ id: z.number().int().optional(), patientId: z.number().int(), userId: z.number().int(), + npiProviderId: z.number().int().optional().nullable(), title: z.string(), date: z.coerce.date(), startTime: z.string(), diff --git a/packages/db/shared/schemas/objects/AppointmentCreateManyStaffInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentCreateManyStaffInput.schema.ts index 08896843..30e4d401 100644 --- a/packages/db/shared/schemas/objects/AppointmentCreateManyStaffInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentCreateManyStaffInput.schema.ts @@ -6,6 +6,7 @@ const makeSchema = () => z.object({ id: z.number().int().optional(), patientId: z.number().int(), userId: z.number().int(), + npiProviderId: z.number().int().optional().nullable(), title: z.string(), date: z.coerce.date(), startTime: z.string(), diff --git a/packages/db/shared/schemas/objects/AppointmentCreateManyUserInput.schema.js b/packages/db/shared/schemas/objects/AppointmentCreateManyUserInput.schema.js index ee1d99c1..b73b70e7 100644 --- a/packages/db/shared/schemas/objects/AppointmentCreateManyUserInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentCreateManyUserInput.schema.js @@ -40,6 +40,7 @@ const makeSchema = () => z.object({ id: z.number().int().optional(), patientId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().optional().nullable(), title: z.string(), date: z.coerce.date(), startTime: z.string(), diff --git a/packages/db/shared/schemas/objects/AppointmentCreateManyUserInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentCreateManyUserInput.schema.ts index 91009143..1b985812 100644 --- a/packages/db/shared/schemas/objects/AppointmentCreateManyUserInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentCreateManyUserInput.schema.ts @@ -6,6 +6,7 @@ const makeSchema = () => z.object({ id: z.number().int().optional(), patientId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().optional().nullable(), title: z.string(), date: z.coerce.date(), startTime: z.string(), diff --git a/packages/db/shared/schemas/objects/AppointmentCreateNestedManyWithoutNpiProviderInput.schema.js b/packages/db/shared/schemas/objects/AppointmentCreateNestedManyWithoutNpiProviderInput.schema.js new file mode 100644 index 00000000..9a5196b6 --- /dev/null +++ b/packages/db/shared/schemas/objects/AppointmentCreateNestedManyWithoutNpiProviderInput.schema.js @@ -0,0 +1,50 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.AppointmentCreateNestedManyWithoutNpiProviderInputObjectZodSchema = exports.AppointmentCreateNestedManyWithoutNpiProviderInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const AppointmentCreateWithoutNpiProviderInput_schema_1 = require("./AppointmentCreateWithoutNpiProviderInput.schema"); +const AppointmentUncheckedCreateWithoutNpiProviderInput_schema_1 = require("./AppointmentUncheckedCreateWithoutNpiProviderInput.schema"); +const AppointmentCreateOrConnectWithoutNpiProviderInput_schema_1 = require("./AppointmentCreateOrConnectWithoutNpiProviderInput.schema"); +const AppointmentCreateManyNpiProviderInputEnvelope_schema_1 = require("./AppointmentCreateManyNpiProviderInputEnvelope.schema"); +const AppointmentWhereUniqueInput_schema_1 = require("./AppointmentWhereUniqueInput.schema"); +const makeSchema = () => z.object({ + create: z.union([z.lazy(() => AppointmentCreateWithoutNpiProviderInput_schema_1.AppointmentCreateWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentCreateWithoutNpiProviderInput_schema_1.AppointmentCreateWithoutNpiProviderInputObjectSchema).array(), z.lazy(() => AppointmentUncheckedCreateWithoutNpiProviderInput_schema_1.AppointmentUncheckedCreateWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentUncheckedCreateWithoutNpiProviderInput_schema_1.AppointmentUncheckedCreateWithoutNpiProviderInputObjectSchema).array()]).optional(), + connectOrCreate: z.union([z.lazy(() => AppointmentCreateOrConnectWithoutNpiProviderInput_schema_1.AppointmentCreateOrConnectWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentCreateOrConnectWithoutNpiProviderInput_schema_1.AppointmentCreateOrConnectWithoutNpiProviderInputObjectSchema).array()]).optional(), + createMany: z.lazy(() => AppointmentCreateManyNpiProviderInputEnvelope_schema_1.AppointmentCreateManyNpiProviderInputEnvelopeObjectSchema).optional(), + connect: z.union([z.lazy(() => AppointmentWhereUniqueInput_schema_1.AppointmentWhereUniqueInputObjectSchema), z.lazy(() => AppointmentWhereUniqueInput_schema_1.AppointmentWhereUniqueInputObjectSchema).array()]).optional() +}).strict(); +exports.AppointmentCreateNestedManyWithoutNpiProviderInputObjectSchema = makeSchema(); +exports.AppointmentCreateNestedManyWithoutNpiProviderInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentCreateNestedManyWithoutNpiProviderInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentCreateNestedManyWithoutNpiProviderInput.schema.ts new file mode 100644 index 00000000..801cf129 --- /dev/null +++ b/packages/db/shared/schemas/objects/AppointmentCreateNestedManyWithoutNpiProviderInput.schema.ts @@ -0,0 +1,16 @@ +import * as z from 'zod'; +import type { Prisma } from '../../../generated/prisma'; +import { AppointmentCreateWithoutNpiProviderInputObjectSchema as AppointmentCreateWithoutNpiProviderInputObjectSchema } from './AppointmentCreateWithoutNpiProviderInput.schema'; +import { AppointmentUncheckedCreateWithoutNpiProviderInputObjectSchema as AppointmentUncheckedCreateWithoutNpiProviderInputObjectSchema } from './AppointmentUncheckedCreateWithoutNpiProviderInput.schema'; +import { AppointmentCreateOrConnectWithoutNpiProviderInputObjectSchema as AppointmentCreateOrConnectWithoutNpiProviderInputObjectSchema } from './AppointmentCreateOrConnectWithoutNpiProviderInput.schema'; +import { AppointmentCreateManyNpiProviderInputEnvelopeObjectSchema as AppointmentCreateManyNpiProviderInputEnvelopeObjectSchema } from './AppointmentCreateManyNpiProviderInputEnvelope.schema'; +import { AppointmentWhereUniqueInputObjectSchema as AppointmentWhereUniqueInputObjectSchema } from './AppointmentWhereUniqueInput.schema' + +const makeSchema = () => z.object({ + create: z.union([z.lazy(() => AppointmentCreateWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentCreateWithoutNpiProviderInputObjectSchema).array(), z.lazy(() => AppointmentUncheckedCreateWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentUncheckedCreateWithoutNpiProviderInputObjectSchema).array()]).optional(), + connectOrCreate: z.union([z.lazy(() => AppointmentCreateOrConnectWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentCreateOrConnectWithoutNpiProviderInputObjectSchema).array()]).optional(), + createMany: z.lazy(() => AppointmentCreateManyNpiProviderInputEnvelopeObjectSchema).optional(), + connect: z.union([z.lazy(() => AppointmentWhereUniqueInputObjectSchema), z.lazy(() => AppointmentWhereUniqueInputObjectSchema).array()]).optional() +}).strict(); +export const AppointmentCreateNestedManyWithoutNpiProviderInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; +export const AppointmentCreateNestedManyWithoutNpiProviderInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentCreateOrConnectWithoutNpiProviderInput.schema.js b/packages/db/shared/schemas/objects/AppointmentCreateOrConnectWithoutNpiProviderInput.schema.js new file mode 100644 index 00000000..a69f4eb9 --- /dev/null +++ b/packages/db/shared/schemas/objects/AppointmentCreateOrConnectWithoutNpiProviderInput.schema.js @@ -0,0 +1,46 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.AppointmentCreateOrConnectWithoutNpiProviderInputObjectZodSchema = exports.AppointmentCreateOrConnectWithoutNpiProviderInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const AppointmentWhereUniqueInput_schema_1 = require("./AppointmentWhereUniqueInput.schema"); +const AppointmentCreateWithoutNpiProviderInput_schema_1 = require("./AppointmentCreateWithoutNpiProviderInput.schema"); +const AppointmentUncheckedCreateWithoutNpiProviderInput_schema_1 = require("./AppointmentUncheckedCreateWithoutNpiProviderInput.schema"); +const makeSchema = () => z.object({ + where: z.lazy(() => AppointmentWhereUniqueInput_schema_1.AppointmentWhereUniqueInputObjectSchema), + create: z.union([z.lazy(() => AppointmentCreateWithoutNpiProviderInput_schema_1.AppointmentCreateWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentUncheckedCreateWithoutNpiProviderInput_schema_1.AppointmentUncheckedCreateWithoutNpiProviderInputObjectSchema)]) +}).strict(); +exports.AppointmentCreateOrConnectWithoutNpiProviderInputObjectSchema = makeSchema(); +exports.AppointmentCreateOrConnectWithoutNpiProviderInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentCreateOrConnectWithoutNpiProviderInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentCreateOrConnectWithoutNpiProviderInput.schema.ts new file mode 100644 index 00000000..7c1b95e6 --- /dev/null +++ b/packages/db/shared/schemas/objects/AppointmentCreateOrConnectWithoutNpiProviderInput.schema.ts @@ -0,0 +1,12 @@ +import * as z from 'zod'; +import type { Prisma } from '../../../generated/prisma'; +import { AppointmentWhereUniqueInputObjectSchema as AppointmentWhereUniqueInputObjectSchema } from './AppointmentWhereUniqueInput.schema'; +import { AppointmentCreateWithoutNpiProviderInputObjectSchema as AppointmentCreateWithoutNpiProviderInputObjectSchema } from './AppointmentCreateWithoutNpiProviderInput.schema'; +import { AppointmentUncheckedCreateWithoutNpiProviderInputObjectSchema as AppointmentUncheckedCreateWithoutNpiProviderInputObjectSchema } from './AppointmentUncheckedCreateWithoutNpiProviderInput.schema' + +const makeSchema = () => z.object({ + where: z.lazy(() => AppointmentWhereUniqueInputObjectSchema), + create: z.union([z.lazy(() => AppointmentCreateWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentUncheckedCreateWithoutNpiProviderInputObjectSchema)]) +}).strict(); +export const AppointmentCreateOrConnectWithoutNpiProviderInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; +export const AppointmentCreateOrConnectWithoutNpiProviderInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentCreateWithoutClaimsInput.schema.js b/packages/db/shared/schemas/objects/AppointmentCreateWithoutClaimsInput.schema.js index b9a16ef9..83f96c2f 100644 --- a/packages/db/shared/schemas/objects/AppointmentCreateWithoutClaimsInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentCreateWithoutClaimsInput.schema.js @@ -39,6 +39,7 @@ const PatientStatus_schema_1 = require("../enums/PatientStatus.schema"); const PatientCreateNestedOneWithoutAppointmentsInput_schema_1 = require("./PatientCreateNestedOneWithoutAppointmentsInput.schema"); const UserCreateNestedOneWithoutAppointmentsInput_schema_1 = require("./UserCreateNestedOneWithoutAppointmentsInput.schema"); const StaffCreateNestedOneWithoutAppointmentsInput_schema_1 = require("./StaffCreateNestedOneWithoutAppointmentsInput.schema"); +const NpiProviderCreateNestedOneWithoutAppointmentsInput_schema_1 = require("./NpiProviderCreateNestedOneWithoutAppointmentsInput.schema"); const AppointmentProcedureCreateNestedManyWithoutAppointmentInput_schema_1 = require("./AppointmentProcedureCreateNestedManyWithoutAppointmentInput.schema"); const AppointmentFileCreateNestedManyWithoutAppointmentInput_schema_1 = require("./AppointmentFileCreateNestedManyWithoutAppointmentInput.schema"); const makeSchema = () => z.object({ @@ -57,6 +58,7 @@ const makeSchema = () => z.object({ patient: z.lazy(() => PatientCreateNestedOneWithoutAppointmentsInput_schema_1.PatientCreateNestedOneWithoutAppointmentsInputObjectSchema), user: z.lazy(() => UserCreateNestedOneWithoutAppointmentsInput_schema_1.UserCreateNestedOneWithoutAppointmentsInputObjectSchema), staff: z.lazy(() => StaffCreateNestedOneWithoutAppointmentsInput_schema_1.StaffCreateNestedOneWithoutAppointmentsInputObjectSchema).optional(), + npiProvider: z.lazy(() => NpiProviderCreateNestedOneWithoutAppointmentsInput_schema_1.NpiProviderCreateNestedOneWithoutAppointmentsInputObjectSchema).optional(), procedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutAppointmentInput_schema_1.AppointmentProcedureCreateNestedManyWithoutAppointmentInputObjectSchema).optional(), files: z.lazy(() => AppointmentFileCreateNestedManyWithoutAppointmentInput_schema_1.AppointmentFileCreateNestedManyWithoutAppointmentInputObjectSchema).optional() }).strict(); diff --git a/packages/db/shared/schemas/objects/AppointmentCreateWithoutClaimsInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentCreateWithoutClaimsInput.schema.ts index adfa08fb..154e3e14 100644 --- a/packages/db/shared/schemas/objects/AppointmentCreateWithoutClaimsInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentCreateWithoutClaimsInput.schema.ts @@ -4,6 +4,7 @@ import { PatientStatusSchema } from '../enums/PatientStatus.schema'; import { PatientCreateNestedOneWithoutAppointmentsInputObjectSchema as PatientCreateNestedOneWithoutAppointmentsInputObjectSchema } from './PatientCreateNestedOneWithoutAppointmentsInput.schema'; import { UserCreateNestedOneWithoutAppointmentsInputObjectSchema as UserCreateNestedOneWithoutAppointmentsInputObjectSchema } from './UserCreateNestedOneWithoutAppointmentsInput.schema'; import { StaffCreateNestedOneWithoutAppointmentsInputObjectSchema as StaffCreateNestedOneWithoutAppointmentsInputObjectSchema } from './StaffCreateNestedOneWithoutAppointmentsInput.schema'; +import { NpiProviderCreateNestedOneWithoutAppointmentsInputObjectSchema as NpiProviderCreateNestedOneWithoutAppointmentsInputObjectSchema } from './NpiProviderCreateNestedOneWithoutAppointmentsInput.schema'; import { AppointmentProcedureCreateNestedManyWithoutAppointmentInputObjectSchema as AppointmentProcedureCreateNestedManyWithoutAppointmentInputObjectSchema } from './AppointmentProcedureCreateNestedManyWithoutAppointmentInput.schema'; import { AppointmentFileCreateNestedManyWithoutAppointmentInputObjectSchema as AppointmentFileCreateNestedManyWithoutAppointmentInputObjectSchema } from './AppointmentFileCreateNestedManyWithoutAppointmentInput.schema' @@ -23,6 +24,7 @@ const makeSchema = () => z.object({ patient: z.lazy(() => PatientCreateNestedOneWithoutAppointmentsInputObjectSchema), user: z.lazy(() => UserCreateNestedOneWithoutAppointmentsInputObjectSchema), staff: z.lazy(() => StaffCreateNestedOneWithoutAppointmentsInputObjectSchema).optional(), + npiProvider: z.lazy(() => NpiProviderCreateNestedOneWithoutAppointmentsInputObjectSchema).optional(), procedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutAppointmentInputObjectSchema).optional(), files: z.lazy(() => AppointmentFileCreateNestedManyWithoutAppointmentInputObjectSchema).optional() }).strict(); diff --git a/packages/db/shared/schemas/objects/AppointmentCreateWithoutFilesInput.schema.js b/packages/db/shared/schemas/objects/AppointmentCreateWithoutFilesInput.schema.js index 4eb06683..cb9fe286 100644 --- a/packages/db/shared/schemas/objects/AppointmentCreateWithoutFilesInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentCreateWithoutFilesInput.schema.js @@ -39,6 +39,7 @@ const PatientStatus_schema_1 = require("../enums/PatientStatus.schema"); const PatientCreateNestedOneWithoutAppointmentsInput_schema_1 = require("./PatientCreateNestedOneWithoutAppointmentsInput.schema"); const UserCreateNestedOneWithoutAppointmentsInput_schema_1 = require("./UserCreateNestedOneWithoutAppointmentsInput.schema"); const StaffCreateNestedOneWithoutAppointmentsInput_schema_1 = require("./StaffCreateNestedOneWithoutAppointmentsInput.schema"); +const NpiProviderCreateNestedOneWithoutAppointmentsInput_schema_1 = require("./NpiProviderCreateNestedOneWithoutAppointmentsInput.schema"); const AppointmentProcedureCreateNestedManyWithoutAppointmentInput_schema_1 = require("./AppointmentProcedureCreateNestedManyWithoutAppointmentInput.schema"); const ClaimCreateNestedManyWithoutAppointmentInput_schema_1 = require("./ClaimCreateNestedManyWithoutAppointmentInput.schema"); const makeSchema = () => z.object({ @@ -57,6 +58,7 @@ const makeSchema = () => z.object({ patient: z.lazy(() => PatientCreateNestedOneWithoutAppointmentsInput_schema_1.PatientCreateNestedOneWithoutAppointmentsInputObjectSchema), user: z.lazy(() => UserCreateNestedOneWithoutAppointmentsInput_schema_1.UserCreateNestedOneWithoutAppointmentsInputObjectSchema), staff: z.lazy(() => StaffCreateNestedOneWithoutAppointmentsInput_schema_1.StaffCreateNestedOneWithoutAppointmentsInputObjectSchema).optional(), + npiProvider: z.lazy(() => NpiProviderCreateNestedOneWithoutAppointmentsInput_schema_1.NpiProviderCreateNestedOneWithoutAppointmentsInputObjectSchema).optional(), procedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutAppointmentInput_schema_1.AppointmentProcedureCreateNestedManyWithoutAppointmentInputObjectSchema).optional(), claims: z.lazy(() => ClaimCreateNestedManyWithoutAppointmentInput_schema_1.ClaimCreateNestedManyWithoutAppointmentInputObjectSchema).optional() }).strict(); diff --git a/packages/db/shared/schemas/objects/AppointmentCreateWithoutFilesInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentCreateWithoutFilesInput.schema.ts index 4c4e7e8e..f243db50 100644 --- a/packages/db/shared/schemas/objects/AppointmentCreateWithoutFilesInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentCreateWithoutFilesInput.schema.ts @@ -4,6 +4,7 @@ import { PatientStatusSchema } from '../enums/PatientStatus.schema'; import { PatientCreateNestedOneWithoutAppointmentsInputObjectSchema as PatientCreateNestedOneWithoutAppointmentsInputObjectSchema } from './PatientCreateNestedOneWithoutAppointmentsInput.schema'; import { UserCreateNestedOneWithoutAppointmentsInputObjectSchema as UserCreateNestedOneWithoutAppointmentsInputObjectSchema } from './UserCreateNestedOneWithoutAppointmentsInput.schema'; import { StaffCreateNestedOneWithoutAppointmentsInputObjectSchema as StaffCreateNestedOneWithoutAppointmentsInputObjectSchema } from './StaffCreateNestedOneWithoutAppointmentsInput.schema'; +import { NpiProviderCreateNestedOneWithoutAppointmentsInputObjectSchema as NpiProviderCreateNestedOneWithoutAppointmentsInputObjectSchema } from './NpiProviderCreateNestedOneWithoutAppointmentsInput.schema'; import { AppointmentProcedureCreateNestedManyWithoutAppointmentInputObjectSchema as AppointmentProcedureCreateNestedManyWithoutAppointmentInputObjectSchema } from './AppointmentProcedureCreateNestedManyWithoutAppointmentInput.schema'; import { ClaimCreateNestedManyWithoutAppointmentInputObjectSchema as ClaimCreateNestedManyWithoutAppointmentInputObjectSchema } from './ClaimCreateNestedManyWithoutAppointmentInput.schema' @@ -23,6 +24,7 @@ const makeSchema = () => z.object({ patient: z.lazy(() => PatientCreateNestedOneWithoutAppointmentsInputObjectSchema), user: z.lazy(() => UserCreateNestedOneWithoutAppointmentsInputObjectSchema), staff: z.lazy(() => StaffCreateNestedOneWithoutAppointmentsInputObjectSchema).optional(), + npiProvider: z.lazy(() => NpiProviderCreateNestedOneWithoutAppointmentsInputObjectSchema).optional(), procedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutAppointmentInputObjectSchema).optional(), claims: z.lazy(() => ClaimCreateNestedManyWithoutAppointmentInputObjectSchema).optional() }).strict(); diff --git a/packages/db/shared/schemas/objects/AppointmentCreateWithoutNpiProviderInput.schema.js b/packages/db/shared/schemas/objects/AppointmentCreateWithoutNpiProviderInput.schema.js new file mode 100644 index 00000000..b39a40c4 --- /dev/null +++ b/packages/db/shared/schemas/objects/AppointmentCreateWithoutNpiProviderInput.schema.js @@ -0,0 +1,66 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.AppointmentCreateWithoutNpiProviderInputObjectZodSchema = exports.AppointmentCreateWithoutNpiProviderInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const PatientStatus_schema_1 = require("../enums/PatientStatus.schema"); +const PatientCreateNestedOneWithoutAppointmentsInput_schema_1 = require("./PatientCreateNestedOneWithoutAppointmentsInput.schema"); +const UserCreateNestedOneWithoutAppointmentsInput_schema_1 = require("./UserCreateNestedOneWithoutAppointmentsInput.schema"); +const StaffCreateNestedOneWithoutAppointmentsInput_schema_1 = require("./StaffCreateNestedOneWithoutAppointmentsInput.schema"); +const AppointmentProcedureCreateNestedManyWithoutAppointmentInput_schema_1 = require("./AppointmentProcedureCreateNestedManyWithoutAppointmentInput.schema"); +const ClaimCreateNestedManyWithoutAppointmentInput_schema_1 = require("./ClaimCreateNestedManyWithoutAppointmentInput.schema"); +const AppointmentFileCreateNestedManyWithoutAppointmentInput_schema_1 = require("./AppointmentFileCreateNestedManyWithoutAppointmentInput.schema"); +const makeSchema = () => z.object({ + title: z.string(), + date: z.coerce.date(), + startTime: z.string(), + endTime: z.string(), + type: z.string(), + typeLocked: z.boolean().optional(), + notes: z.string().optional().nullable(), + procedureCodeNotes: z.string().optional().nullable(), + status: z.string().optional(), + movedByAi: z.boolean().optional(), + createdAt: z.coerce.date().optional(), + eligibilityStatus: PatientStatus_schema_1.PatientStatusSchema.optional(), + patient: z.lazy(() => PatientCreateNestedOneWithoutAppointmentsInput_schema_1.PatientCreateNestedOneWithoutAppointmentsInputObjectSchema), + user: z.lazy(() => UserCreateNestedOneWithoutAppointmentsInput_schema_1.UserCreateNestedOneWithoutAppointmentsInputObjectSchema), + staff: z.lazy(() => StaffCreateNestedOneWithoutAppointmentsInput_schema_1.StaffCreateNestedOneWithoutAppointmentsInputObjectSchema).optional(), + procedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutAppointmentInput_schema_1.AppointmentProcedureCreateNestedManyWithoutAppointmentInputObjectSchema).optional(), + claims: z.lazy(() => ClaimCreateNestedManyWithoutAppointmentInput_schema_1.ClaimCreateNestedManyWithoutAppointmentInputObjectSchema).optional(), + files: z.lazy(() => AppointmentFileCreateNestedManyWithoutAppointmentInput_schema_1.AppointmentFileCreateNestedManyWithoutAppointmentInputObjectSchema).optional() +}).strict(); +exports.AppointmentCreateWithoutNpiProviderInputObjectSchema = makeSchema(); +exports.AppointmentCreateWithoutNpiProviderInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentCreateWithoutNpiProviderInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentCreateWithoutNpiProviderInput.schema.ts new file mode 100644 index 00000000..47e71770 --- /dev/null +++ b/packages/db/shared/schemas/objects/AppointmentCreateWithoutNpiProviderInput.schema.ts @@ -0,0 +1,32 @@ +import * as z from 'zod'; +import type { Prisma } from '../../../generated/prisma'; +import { PatientStatusSchema } from '../enums/PatientStatus.schema'; +import { PatientCreateNestedOneWithoutAppointmentsInputObjectSchema as PatientCreateNestedOneWithoutAppointmentsInputObjectSchema } from './PatientCreateNestedOneWithoutAppointmentsInput.schema'; +import { UserCreateNestedOneWithoutAppointmentsInputObjectSchema as UserCreateNestedOneWithoutAppointmentsInputObjectSchema } from './UserCreateNestedOneWithoutAppointmentsInput.schema'; +import { StaffCreateNestedOneWithoutAppointmentsInputObjectSchema as StaffCreateNestedOneWithoutAppointmentsInputObjectSchema } from './StaffCreateNestedOneWithoutAppointmentsInput.schema'; +import { AppointmentProcedureCreateNestedManyWithoutAppointmentInputObjectSchema as AppointmentProcedureCreateNestedManyWithoutAppointmentInputObjectSchema } from './AppointmentProcedureCreateNestedManyWithoutAppointmentInput.schema'; +import { ClaimCreateNestedManyWithoutAppointmentInputObjectSchema as ClaimCreateNestedManyWithoutAppointmentInputObjectSchema } from './ClaimCreateNestedManyWithoutAppointmentInput.schema'; +import { AppointmentFileCreateNestedManyWithoutAppointmentInputObjectSchema as AppointmentFileCreateNestedManyWithoutAppointmentInputObjectSchema } from './AppointmentFileCreateNestedManyWithoutAppointmentInput.schema' + +const makeSchema = () => z.object({ + title: z.string(), + date: z.coerce.date(), + startTime: z.string(), + endTime: z.string(), + type: z.string(), + typeLocked: z.boolean().optional(), + notes: z.string().optional().nullable(), + procedureCodeNotes: z.string().optional().nullable(), + status: z.string().optional(), + movedByAi: z.boolean().optional(), + createdAt: z.coerce.date().optional(), + eligibilityStatus: PatientStatusSchema.optional(), + patient: z.lazy(() => PatientCreateNestedOneWithoutAppointmentsInputObjectSchema), + user: z.lazy(() => UserCreateNestedOneWithoutAppointmentsInputObjectSchema), + staff: z.lazy(() => StaffCreateNestedOneWithoutAppointmentsInputObjectSchema).optional(), + procedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutAppointmentInputObjectSchema).optional(), + claims: z.lazy(() => ClaimCreateNestedManyWithoutAppointmentInputObjectSchema).optional(), + files: z.lazy(() => AppointmentFileCreateNestedManyWithoutAppointmentInputObjectSchema).optional() +}).strict(); +export const AppointmentCreateWithoutNpiProviderInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; +export const AppointmentCreateWithoutNpiProviderInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentCreateWithoutPatientInput.schema.js b/packages/db/shared/schemas/objects/AppointmentCreateWithoutPatientInput.schema.js index ef9a1aca..abbe4ea4 100644 --- a/packages/db/shared/schemas/objects/AppointmentCreateWithoutPatientInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentCreateWithoutPatientInput.schema.js @@ -38,6 +38,7 @@ const z = __importStar(require("zod")); const PatientStatus_schema_1 = require("../enums/PatientStatus.schema"); const UserCreateNestedOneWithoutAppointmentsInput_schema_1 = require("./UserCreateNestedOneWithoutAppointmentsInput.schema"); const StaffCreateNestedOneWithoutAppointmentsInput_schema_1 = require("./StaffCreateNestedOneWithoutAppointmentsInput.schema"); +const NpiProviderCreateNestedOneWithoutAppointmentsInput_schema_1 = require("./NpiProviderCreateNestedOneWithoutAppointmentsInput.schema"); const AppointmentProcedureCreateNestedManyWithoutAppointmentInput_schema_1 = require("./AppointmentProcedureCreateNestedManyWithoutAppointmentInput.schema"); const ClaimCreateNestedManyWithoutAppointmentInput_schema_1 = require("./ClaimCreateNestedManyWithoutAppointmentInput.schema"); const AppointmentFileCreateNestedManyWithoutAppointmentInput_schema_1 = require("./AppointmentFileCreateNestedManyWithoutAppointmentInput.schema"); @@ -56,6 +57,7 @@ const makeSchema = () => z.object({ eligibilityStatus: PatientStatus_schema_1.PatientStatusSchema.optional(), user: z.lazy(() => UserCreateNestedOneWithoutAppointmentsInput_schema_1.UserCreateNestedOneWithoutAppointmentsInputObjectSchema), staff: z.lazy(() => StaffCreateNestedOneWithoutAppointmentsInput_schema_1.StaffCreateNestedOneWithoutAppointmentsInputObjectSchema).optional(), + npiProvider: z.lazy(() => NpiProviderCreateNestedOneWithoutAppointmentsInput_schema_1.NpiProviderCreateNestedOneWithoutAppointmentsInputObjectSchema).optional(), procedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutAppointmentInput_schema_1.AppointmentProcedureCreateNestedManyWithoutAppointmentInputObjectSchema).optional(), claims: z.lazy(() => ClaimCreateNestedManyWithoutAppointmentInput_schema_1.ClaimCreateNestedManyWithoutAppointmentInputObjectSchema).optional(), files: z.lazy(() => AppointmentFileCreateNestedManyWithoutAppointmentInput_schema_1.AppointmentFileCreateNestedManyWithoutAppointmentInputObjectSchema).optional() diff --git a/packages/db/shared/schemas/objects/AppointmentCreateWithoutPatientInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentCreateWithoutPatientInput.schema.ts index 99f5be8a..fa67a061 100644 --- a/packages/db/shared/schemas/objects/AppointmentCreateWithoutPatientInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentCreateWithoutPatientInput.schema.ts @@ -3,6 +3,7 @@ import type { Prisma } from '../../../generated/prisma'; import { PatientStatusSchema } from '../enums/PatientStatus.schema'; import { UserCreateNestedOneWithoutAppointmentsInputObjectSchema as UserCreateNestedOneWithoutAppointmentsInputObjectSchema } from './UserCreateNestedOneWithoutAppointmentsInput.schema'; import { StaffCreateNestedOneWithoutAppointmentsInputObjectSchema as StaffCreateNestedOneWithoutAppointmentsInputObjectSchema } from './StaffCreateNestedOneWithoutAppointmentsInput.schema'; +import { NpiProviderCreateNestedOneWithoutAppointmentsInputObjectSchema as NpiProviderCreateNestedOneWithoutAppointmentsInputObjectSchema } from './NpiProviderCreateNestedOneWithoutAppointmentsInput.schema'; import { AppointmentProcedureCreateNestedManyWithoutAppointmentInputObjectSchema as AppointmentProcedureCreateNestedManyWithoutAppointmentInputObjectSchema } from './AppointmentProcedureCreateNestedManyWithoutAppointmentInput.schema'; import { ClaimCreateNestedManyWithoutAppointmentInputObjectSchema as ClaimCreateNestedManyWithoutAppointmentInputObjectSchema } from './ClaimCreateNestedManyWithoutAppointmentInput.schema'; import { AppointmentFileCreateNestedManyWithoutAppointmentInputObjectSchema as AppointmentFileCreateNestedManyWithoutAppointmentInputObjectSchema } from './AppointmentFileCreateNestedManyWithoutAppointmentInput.schema' @@ -22,6 +23,7 @@ const makeSchema = () => z.object({ eligibilityStatus: PatientStatusSchema.optional(), user: z.lazy(() => UserCreateNestedOneWithoutAppointmentsInputObjectSchema), staff: z.lazy(() => StaffCreateNestedOneWithoutAppointmentsInputObjectSchema).optional(), + npiProvider: z.lazy(() => NpiProviderCreateNestedOneWithoutAppointmentsInputObjectSchema).optional(), procedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutAppointmentInputObjectSchema).optional(), claims: z.lazy(() => ClaimCreateNestedManyWithoutAppointmentInputObjectSchema).optional(), files: z.lazy(() => AppointmentFileCreateNestedManyWithoutAppointmentInputObjectSchema).optional() diff --git a/packages/db/shared/schemas/objects/AppointmentCreateWithoutProceduresInput.schema.js b/packages/db/shared/schemas/objects/AppointmentCreateWithoutProceduresInput.schema.js index c30619fc..9e9ea353 100644 --- a/packages/db/shared/schemas/objects/AppointmentCreateWithoutProceduresInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentCreateWithoutProceduresInput.schema.js @@ -39,6 +39,7 @@ const PatientStatus_schema_1 = require("../enums/PatientStatus.schema"); const PatientCreateNestedOneWithoutAppointmentsInput_schema_1 = require("./PatientCreateNestedOneWithoutAppointmentsInput.schema"); const UserCreateNestedOneWithoutAppointmentsInput_schema_1 = require("./UserCreateNestedOneWithoutAppointmentsInput.schema"); const StaffCreateNestedOneWithoutAppointmentsInput_schema_1 = require("./StaffCreateNestedOneWithoutAppointmentsInput.schema"); +const NpiProviderCreateNestedOneWithoutAppointmentsInput_schema_1 = require("./NpiProviderCreateNestedOneWithoutAppointmentsInput.schema"); const ClaimCreateNestedManyWithoutAppointmentInput_schema_1 = require("./ClaimCreateNestedManyWithoutAppointmentInput.schema"); const AppointmentFileCreateNestedManyWithoutAppointmentInput_schema_1 = require("./AppointmentFileCreateNestedManyWithoutAppointmentInput.schema"); const makeSchema = () => z.object({ @@ -57,6 +58,7 @@ const makeSchema = () => z.object({ patient: z.lazy(() => PatientCreateNestedOneWithoutAppointmentsInput_schema_1.PatientCreateNestedOneWithoutAppointmentsInputObjectSchema), user: z.lazy(() => UserCreateNestedOneWithoutAppointmentsInput_schema_1.UserCreateNestedOneWithoutAppointmentsInputObjectSchema), staff: z.lazy(() => StaffCreateNestedOneWithoutAppointmentsInput_schema_1.StaffCreateNestedOneWithoutAppointmentsInputObjectSchema).optional(), + npiProvider: z.lazy(() => NpiProviderCreateNestedOneWithoutAppointmentsInput_schema_1.NpiProviderCreateNestedOneWithoutAppointmentsInputObjectSchema).optional(), claims: z.lazy(() => ClaimCreateNestedManyWithoutAppointmentInput_schema_1.ClaimCreateNestedManyWithoutAppointmentInputObjectSchema).optional(), files: z.lazy(() => AppointmentFileCreateNestedManyWithoutAppointmentInput_schema_1.AppointmentFileCreateNestedManyWithoutAppointmentInputObjectSchema).optional() }).strict(); diff --git a/packages/db/shared/schemas/objects/AppointmentCreateWithoutProceduresInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentCreateWithoutProceduresInput.schema.ts index a8e93579..a1870381 100644 --- a/packages/db/shared/schemas/objects/AppointmentCreateWithoutProceduresInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentCreateWithoutProceduresInput.schema.ts @@ -4,6 +4,7 @@ import { PatientStatusSchema } from '../enums/PatientStatus.schema'; import { PatientCreateNestedOneWithoutAppointmentsInputObjectSchema as PatientCreateNestedOneWithoutAppointmentsInputObjectSchema } from './PatientCreateNestedOneWithoutAppointmentsInput.schema'; import { UserCreateNestedOneWithoutAppointmentsInputObjectSchema as UserCreateNestedOneWithoutAppointmentsInputObjectSchema } from './UserCreateNestedOneWithoutAppointmentsInput.schema'; import { StaffCreateNestedOneWithoutAppointmentsInputObjectSchema as StaffCreateNestedOneWithoutAppointmentsInputObjectSchema } from './StaffCreateNestedOneWithoutAppointmentsInput.schema'; +import { NpiProviderCreateNestedOneWithoutAppointmentsInputObjectSchema as NpiProviderCreateNestedOneWithoutAppointmentsInputObjectSchema } from './NpiProviderCreateNestedOneWithoutAppointmentsInput.schema'; import { ClaimCreateNestedManyWithoutAppointmentInputObjectSchema as ClaimCreateNestedManyWithoutAppointmentInputObjectSchema } from './ClaimCreateNestedManyWithoutAppointmentInput.schema'; import { AppointmentFileCreateNestedManyWithoutAppointmentInputObjectSchema as AppointmentFileCreateNestedManyWithoutAppointmentInputObjectSchema } from './AppointmentFileCreateNestedManyWithoutAppointmentInput.schema' @@ -23,6 +24,7 @@ const makeSchema = () => z.object({ patient: z.lazy(() => PatientCreateNestedOneWithoutAppointmentsInputObjectSchema), user: z.lazy(() => UserCreateNestedOneWithoutAppointmentsInputObjectSchema), staff: z.lazy(() => StaffCreateNestedOneWithoutAppointmentsInputObjectSchema).optional(), + npiProvider: z.lazy(() => NpiProviderCreateNestedOneWithoutAppointmentsInputObjectSchema).optional(), claims: z.lazy(() => ClaimCreateNestedManyWithoutAppointmentInputObjectSchema).optional(), files: z.lazy(() => AppointmentFileCreateNestedManyWithoutAppointmentInputObjectSchema).optional() }).strict(); diff --git a/packages/db/shared/schemas/objects/AppointmentCreateWithoutStaffInput.schema.js b/packages/db/shared/schemas/objects/AppointmentCreateWithoutStaffInput.schema.js index f0764b2c..74218829 100644 --- a/packages/db/shared/schemas/objects/AppointmentCreateWithoutStaffInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentCreateWithoutStaffInput.schema.js @@ -38,6 +38,7 @@ const z = __importStar(require("zod")); const PatientStatus_schema_1 = require("../enums/PatientStatus.schema"); const PatientCreateNestedOneWithoutAppointmentsInput_schema_1 = require("./PatientCreateNestedOneWithoutAppointmentsInput.schema"); const UserCreateNestedOneWithoutAppointmentsInput_schema_1 = require("./UserCreateNestedOneWithoutAppointmentsInput.schema"); +const NpiProviderCreateNestedOneWithoutAppointmentsInput_schema_1 = require("./NpiProviderCreateNestedOneWithoutAppointmentsInput.schema"); const AppointmentProcedureCreateNestedManyWithoutAppointmentInput_schema_1 = require("./AppointmentProcedureCreateNestedManyWithoutAppointmentInput.schema"); const ClaimCreateNestedManyWithoutAppointmentInput_schema_1 = require("./ClaimCreateNestedManyWithoutAppointmentInput.schema"); const AppointmentFileCreateNestedManyWithoutAppointmentInput_schema_1 = require("./AppointmentFileCreateNestedManyWithoutAppointmentInput.schema"); @@ -56,6 +57,7 @@ const makeSchema = () => z.object({ eligibilityStatus: PatientStatus_schema_1.PatientStatusSchema.optional(), patient: z.lazy(() => PatientCreateNestedOneWithoutAppointmentsInput_schema_1.PatientCreateNestedOneWithoutAppointmentsInputObjectSchema), user: z.lazy(() => UserCreateNestedOneWithoutAppointmentsInput_schema_1.UserCreateNestedOneWithoutAppointmentsInputObjectSchema), + npiProvider: z.lazy(() => NpiProviderCreateNestedOneWithoutAppointmentsInput_schema_1.NpiProviderCreateNestedOneWithoutAppointmentsInputObjectSchema).optional(), procedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutAppointmentInput_schema_1.AppointmentProcedureCreateNestedManyWithoutAppointmentInputObjectSchema).optional(), claims: z.lazy(() => ClaimCreateNestedManyWithoutAppointmentInput_schema_1.ClaimCreateNestedManyWithoutAppointmentInputObjectSchema).optional(), files: z.lazy(() => AppointmentFileCreateNestedManyWithoutAppointmentInput_schema_1.AppointmentFileCreateNestedManyWithoutAppointmentInputObjectSchema).optional() diff --git a/packages/db/shared/schemas/objects/AppointmentCreateWithoutStaffInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentCreateWithoutStaffInput.schema.ts index b64c904e..8cb87a33 100644 --- a/packages/db/shared/schemas/objects/AppointmentCreateWithoutStaffInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentCreateWithoutStaffInput.schema.ts @@ -3,6 +3,7 @@ import type { Prisma } from '../../../generated/prisma'; import { PatientStatusSchema } from '../enums/PatientStatus.schema'; import { PatientCreateNestedOneWithoutAppointmentsInputObjectSchema as PatientCreateNestedOneWithoutAppointmentsInputObjectSchema } from './PatientCreateNestedOneWithoutAppointmentsInput.schema'; import { UserCreateNestedOneWithoutAppointmentsInputObjectSchema as UserCreateNestedOneWithoutAppointmentsInputObjectSchema } from './UserCreateNestedOneWithoutAppointmentsInput.schema'; +import { NpiProviderCreateNestedOneWithoutAppointmentsInputObjectSchema as NpiProviderCreateNestedOneWithoutAppointmentsInputObjectSchema } from './NpiProviderCreateNestedOneWithoutAppointmentsInput.schema'; import { AppointmentProcedureCreateNestedManyWithoutAppointmentInputObjectSchema as AppointmentProcedureCreateNestedManyWithoutAppointmentInputObjectSchema } from './AppointmentProcedureCreateNestedManyWithoutAppointmentInput.schema'; import { ClaimCreateNestedManyWithoutAppointmentInputObjectSchema as ClaimCreateNestedManyWithoutAppointmentInputObjectSchema } from './ClaimCreateNestedManyWithoutAppointmentInput.schema'; import { AppointmentFileCreateNestedManyWithoutAppointmentInputObjectSchema as AppointmentFileCreateNestedManyWithoutAppointmentInputObjectSchema } from './AppointmentFileCreateNestedManyWithoutAppointmentInput.schema' @@ -22,6 +23,7 @@ const makeSchema = () => z.object({ eligibilityStatus: PatientStatusSchema.optional(), patient: z.lazy(() => PatientCreateNestedOneWithoutAppointmentsInputObjectSchema), user: z.lazy(() => UserCreateNestedOneWithoutAppointmentsInputObjectSchema), + npiProvider: z.lazy(() => NpiProviderCreateNestedOneWithoutAppointmentsInputObjectSchema).optional(), procedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutAppointmentInputObjectSchema).optional(), claims: z.lazy(() => ClaimCreateNestedManyWithoutAppointmentInputObjectSchema).optional(), files: z.lazy(() => AppointmentFileCreateNestedManyWithoutAppointmentInputObjectSchema).optional() diff --git a/packages/db/shared/schemas/objects/AppointmentCreateWithoutUserInput.schema.js b/packages/db/shared/schemas/objects/AppointmentCreateWithoutUserInput.schema.js index 721c4c68..66d2f4bb 100644 --- a/packages/db/shared/schemas/objects/AppointmentCreateWithoutUserInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentCreateWithoutUserInput.schema.js @@ -38,6 +38,7 @@ const z = __importStar(require("zod")); const PatientStatus_schema_1 = require("../enums/PatientStatus.schema"); const PatientCreateNestedOneWithoutAppointmentsInput_schema_1 = require("./PatientCreateNestedOneWithoutAppointmentsInput.schema"); const StaffCreateNestedOneWithoutAppointmentsInput_schema_1 = require("./StaffCreateNestedOneWithoutAppointmentsInput.schema"); +const NpiProviderCreateNestedOneWithoutAppointmentsInput_schema_1 = require("./NpiProviderCreateNestedOneWithoutAppointmentsInput.schema"); const AppointmentProcedureCreateNestedManyWithoutAppointmentInput_schema_1 = require("./AppointmentProcedureCreateNestedManyWithoutAppointmentInput.schema"); const ClaimCreateNestedManyWithoutAppointmentInput_schema_1 = require("./ClaimCreateNestedManyWithoutAppointmentInput.schema"); const AppointmentFileCreateNestedManyWithoutAppointmentInput_schema_1 = require("./AppointmentFileCreateNestedManyWithoutAppointmentInput.schema"); @@ -56,6 +57,7 @@ const makeSchema = () => z.object({ eligibilityStatus: PatientStatus_schema_1.PatientStatusSchema.optional(), patient: z.lazy(() => PatientCreateNestedOneWithoutAppointmentsInput_schema_1.PatientCreateNestedOneWithoutAppointmentsInputObjectSchema), staff: z.lazy(() => StaffCreateNestedOneWithoutAppointmentsInput_schema_1.StaffCreateNestedOneWithoutAppointmentsInputObjectSchema).optional(), + npiProvider: z.lazy(() => NpiProviderCreateNestedOneWithoutAppointmentsInput_schema_1.NpiProviderCreateNestedOneWithoutAppointmentsInputObjectSchema).optional(), procedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutAppointmentInput_schema_1.AppointmentProcedureCreateNestedManyWithoutAppointmentInputObjectSchema).optional(), claims: z.lazy(() => ClaimCreateNestedManyWithoutAppointmentInput_schema_1.ClaimCreateNestedManyWithoutAppointmentInputObjectSchema).optional(), files: z.lazy(() => AppointmentFileCreateNestedManyWithoutAppointmentInput_schema_1.AppointmentFileCreateNestedManyWithoutAppointmentInputObjectSchema).optional() diff --git a/packages/db/shared/schemas/objects/AppointmentCreateWithoutUserInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentCreateWithoutUserInput.schema.ts index 97b4d71d..303b780e 100644 --- a/packages/db/shared/schemas/objects/AppointmentCreateWithoutUserInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentCreateWithoutUserInput.schema.ts @@ -3,6 +3,7 @@ import type { Prisma } from '../../../generated/prisma'; import { PatientStatusSchema } from '../enums/PatientStatus.schema'; import { PatientCreateNestedOneWithoutAppointmentsInputObjectSchema as PatientCreateNestedOneWithoutAppointmentsInputObjectSchema } from './PatientCreateNestedOneWithoutAppointmentsInput.schema'; import { StaffCreateNestedOneWithoutAppointmentsInputObjectSchema as StaffCreateNestedOneWithoutAppointmentsInputObjectSchema } from './StaffCreateNestedOneWithoutAppointmentsInput.schema'; +import { NpiProviderCreateNestedOneWithoutAppointmentsInputObjectSchema as NpiProviderCreateNestedOneWithoutAppointmentsInputObjectSchema } from './NpiProviderCreateNestedOneWithoutAppointmentsInput.schema'; import { AppointmentProcedureCreateNestedManyWithoutAppointmentInputObjectSchema as AppointmentProcedureCreateNestedManyWithoutAppointmentInputObjectSchema } from './AppointmentProcedureCreateNestedManyWithoutAppointmentInput.schema'; import { ClaimCreateNestedManyWithoutAppointmentInputObjectSchema as ClaimCreateNestedManyWithoutAppointmentInputObjectSchema } from './ClaimCreateNestedManyWithoutAppointmentInput.schema'; import { AppointmentFileCreateNestedManyWithoutAppointmentInputObjectSchema as AppointmentFileCreateNestedManyWithoutAppointmentInputObjectSchema } from './AppointmentFileCreateNestedManyWithoutAppointmentInput.schema' @@ -22,6 +23,7 @@ const makeSchema = () => z.object({ eligibilityStatus: PatientStatusSchema.optional(), patient: z.lazy(() => PatientCreateNestedOneWithoutAppointmentsInputObjectSchema), staff: z.lazy(() => StaffCreateNestedOneWithoutAppointmentsInputObjectSchema).optional(), + npiProvider: z.lazy(() => NpiProviderCreateNestedOneWithoutAppointmentsInputObjectSchema).optional(), procedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutAppointmentInputObjectSchema).optional(), claims: z.lazy(() => ClaimCreateNestedManyWithoutAppointmentInputObjectSchema).optional(), files: z.lazy(() => AppointmentFileCreateNestedManyWithoutAppointmentInputObjectSchema).optional() diff --git a/packages/db/shared/schemas/objects/AppointmentInclude.schema.js b/packages/db/shared/schemas/objects/AppointmentInclude.schema.js index 63099fd5..d9e0f92d 100644 --- a/packages/db/shared/schemas/objects/AppointmentInclude.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentInclude.schema.js @@ -38,6 +38,7 @@ const z = __importStar(require("zod")); const PatientArgs_schema_1 = require("./PatientArgs.schema"); const UserArgs_schema_1 = require("./UserArgs.schema"); const StaffArgs_schema_1 = require("./StaffArgs.schema"); +const NpiProviderArgs_schema_1 = require("./NpiProviderArgs.schema"); const findManyAppointmentProcedure_schema_1 = require("../findManyAppointmentProcedure.schema"); const findManyClaim_schema_1 = require("../findManyClaim.schema"); const findManyAppointmentFile_schema_1 = require("../findManyAppointmentFile.schema"); @@ -46,6 +47,7 @@ const makeSchema = () => z.object({ patient: z.union([z.boolean(), z.lazy(() => PatientArgs_schema_1.PatientArgsObjectSchema)]).optional(), user: z.union([z.boolean(), z.lazy(() => UserArgs_schema_1.UserArgsObjectSchema)]).optional(), staff: z.union([z.boolean(), z.lazy(() => StaffArgs_schema_1.StaffArgsObjectSchema)]).optional(), + npiProvider: z.union([z.boolean(), z.lazy(() => NpiProviderArgs_schema_1.NpiProviderArgsObjectSchema)]).optional(), procedures: z.union([z.boolean(), z.lazy(() => findManyAppointmentProcedure_schema_1.AppointmentProcedureFindManySchema)]).optional(), claims: z.union([z.boolean(), z.lazy(() => findManyClaim_schema_1.ClaimFindManySchema)]).optional(), files: z.union([z.boolean(), z.lazy(() => findManyAppointmentFile_schema_1.AppointmentFileFindManySchema)]).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentInclude.schema.ts b/packages/db/shared/schemas/objects/AppointmentInclude.schema.ts index 95685a30..59ce852a 100644 --- a/packages/db/shared/schemas/objects/AppointmentInclude.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentInclude.schema.ts @@ -3,6 +3,7 @@ import type { Prisma } from '../../../generated/prisma'; import { PatientArgsObjectSchema as PatientArgsObjectSchema } from './PatientArgs.schema'; import { UserArgsObjectSchema as UserArgsObjectSchema } from './UserArgs.schema'; import { StaffArgsObjectSchema as StaffArgsObjectSchema } from './StaffArgs.schema'; +import { NpiProviderArgsObjectSchema as NpiProviderArgsObjectSchema } from './NpiProviderArgs.schema'; import { AppointmentProcedureFindManySchema as AppointmentProcedureFindManySchema } from '../findManyAppointmentProcedure.schema'; import { ClaimFindManySchema as ClaimFindManySchema } from '../findManyClaim.schema'; import { AppointmentFileFindManySchema as AppointmentFileFindManySchema } from '../findManyAppointmentFile.schema'; @@ -12,6 +13,7 @@ const makeSchema = () => z.object({ patient: z.union([z.boolean(), z.lazy(() => PatientArgsObjectSchema)]).optional(), user: z.union([z.boolean(), z.lazy(() => UserArgsObjectSchema)]).optional(), staff: z.union([z.boolean(), z.lazy(() => StaffArgsObjectSchema)]).optional(), + npiProvider: z.union([z.boolean(), z.lazy(() => NpiProviderArgsObjectSchema)]).optional(), procedures: z.union([z.boolean(), z.lazy(() => AppointmentProcedureFindManySchema)]).optional(), claims: z.union([z.boolean(), z.lazy(() => ClaimFindManySchema)]).optional(), files: z.union([z.boolean(), z.lazy(() => AppointmentFileFindManySchema)]).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentMaxAggregateInput.schema.js b/packages/db/shared/schemas/objects/AppointmentMaxAggregateInput.schema.js index d35e61cf..93af277a 100644 --- a/packages/db/shared/schemas/objects/AppointmentMaxAggregateInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentMaxAggregateInput.schema.js @@ -40,6 +40,7 @@ const makeSchema = () => z.object({ patientId: z.literal(true).optional(), userId: z.literal(true).optional(), staffId: z.literal(true).optional(), + npiProviderId: z.literal(true).optional(), title: z.literal(true).optional(), date: z.literal(true).optional(), startTime: z.literal(true).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentMaxAggregateInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentMaxAggregateInput.schema.ts index eac80af9..6b227b33 100644 --- a/packages/db/shared/schemas/objects/AppointmentMaxAggregateInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentMaxAggregateInput.schema.ts @@ -7,6 +7,7 @@ const makeSchema = () => z.object({ patientId: z.literal(true).optional(), userId: z.literal(true).optional(), staffId: z.literal(true).optional(), + npiProviderId: z.literal(true).optional(), title: z.literal(true).optional(), date: z.literal(true).optional(), startTime: z.literal(true).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentMaxOrderByAggregateInput.schema.js b/packages/db/shared/schemas/objects/AppointmentMaxOrderByAggregateInput.schema.js index 6f1fcdf1..d88381e3 100644 --- a/packages/db/shared/schemas/objects/AppointmentMaxOrderByAggregateInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentMaxOrderByAggregateInput.schema.js @@ -41,6 +41,7 @@ const makeSchema = () => z.object({ patientId: SortOrder_schema_1.SortOrderSchema.optional(), userId: SortOrder_schema_1.SortOrderSchema.optional(), staffId: SortOrder_schema_1.SortOrderSchema.optional(), + npiProviderId: SortOrder_schema_1.SortOrderSchema.optional(), title: SortOrder_schema_1.SortOrderSchema.optional(), date: SortOrder_schema_1.SortOrderSchema.optional(), startTime: SortOrder_schema_1.SortOrderSchema.optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentMaxOrderByAggregateInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentMaxOrderByAggregateInput.schema.ts index 218de8d7..643d2e1f 100644 --- a/packages/db/shared/schemas/objects/AppointmentMaxOrderByAggregateInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentMaxOrderByAggregateInput.schema.ts @@ -7,6 +7,7 @@ const makeSchema = () => z.object({ patientId: SortOrderSchema.optional(), userId: SortOrderSchema.optional(), staffId: SortOrderSchema.optional(), + npiProviderId: SortOrderSchema.optional(), title: SortOrderSchema.optional(), date: SortOrderSchema.optional(), startTime: SortOrderSchema.optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentMinAggregateInput.schema.js b/packages/db/shared/schemas/objects/AppointmentMinAggregateInput.schema.js index 55e0851a..e054f837 100644 --- a/packages/db/shared/schemas/objects/AppointmentMinAggregateInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentMinAggregateInput.schema.js @@ -40,6 +40,7 @@ const makeSchema = () => z.object({ patientId: z.literal(true).optional(), userId: z.literal(true).optional(), staffId: z.literal(true).optional(), + npiProviderId: z.literal(true).optional(), title: z.literal(true).optional(), date: z.literal(true).optional(), startTime: z.literal(true).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentMinAggregateInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentMinAggregateInput.schema.ts index c08eed5f..5448f883 100644 --- a/packages/db/shared/schemas/objects/AppointmentMinAggregateInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentMinAggregateInput.schema.ts @@ -7,6 +7,7 @@ const makeSchema = () => z.object({ patientId: z.literal(true).optional(), userId: z.literal(true).optional(), staffId: z.literal(true).optional(), + npiProviderId: z.literal(true).optional(), title: z.literal(true).optional(), date: z.literal(true).optional(), startTime: z.literal(true).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentMinOrderByAggregateInput.schema.js b/packages/db/shared/schemas/objects/AppointmentMinOrderByAggregateInput.schema.js index 55113cab..2da1e976 100644 --- a/packages/db/shared/schemas/objects/AppointmentMinOrderByAggregateInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentMinOrderByAggregateInput.schema.js @@ -41,6 +41,7 @@ const makeSchema = () => z.object({ patientId: SortOrder_schema_1.SortOrderSchema.optional(), userId: SortOrder_schema_1.SortOrderSchema.optional(), staffId: SortOrder_schema_1.SortOrderSchema.optional(), + npiProviderId: SortOrder_schema_1.SortOrderSchema.optional(), title: SortOrder_schema_1.SortOrderSchema.optional(), date: SortOrder_schema_1.SortOrderSchema.optional(), startTime: SortOrder_schema_1.SortOrderSchema.optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentMinOrderByAggregateInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentMinOrderByAggregateInput.schema.ts index 3e0dc16c..d2f1881c 100644 --- a/packages/db/shared/schemas/objects/AppointmentMinOrderByAggregateInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentMinOrderByAggregateInput.schema.ts @@ -7,6 +7,7 @@ const makeSchema = () => z.object({ patientId: SortOrderSchema.optional(), userId: SortOrderSchema.optional(), staffId: SortOrderSchema.optional(), + npiProviderId: SortOrderSchema.optional(), title: SortOrderSchema.optional(), date: SortOrderSchema.optional(), startTime: SortOrderSchema.optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentOrderByWithAggregationInput.schema.js b/packages/db/shared/schemas/objects/AppointmentOrderByWithAggregationInput.schema.js index 3e1fafc7..2fc229e9 100644 --- a/packages/db/shared/schemas/objects/AppointmentOrderByWithAggregationInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentOrderByWithAggregationInput.schema.js @@ -47,6 +47,7 @@ const makeSchema = () => z.object({ patientId: SortOrder_schema_1.SortOrderSchema.optional(), userId: SortOrder_schema_1.SortOrderSchema.optional(), staffId: SortOrder_schema_1.SortOrderSchema.optional(), + npiProviderId: z.union([SortOrder_schema_1.SortOrderSchema, z.lazy(() => SortOrderInput_schema_1.SortOrderInputObjectSchema)]).optional(), title: SortOrder_schema_1.SortOrderSchema.optional(), date: SortOrder_schema_1.SortOrderSchema.optional(), startTime: SortOrder_schema_1.SortOrderSchema.optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentOrderByWithAggregationInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentOrderByWithAggregationInput.schema.ts index 0f9c076d..49c21263 100644 --- a/packages/db/shared/schemas/objects/AppointmentOrderByWithAggregationInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentOrderByWithAggregationInput.schema.ts @@ -13,6 +13,7 @@ const makeSchema = () => z.object({ patientId: SortOrderSchema.optional(), userId: SortOrderSchema.optional(), staffId: SortOrderSchema.optional(), + npiProviderId: z.union([SortOrderSchema, z.lazy(() => SortOrderInputObjectSchema)]).optional(), title: SortOrderSchema.optional(), date: SortOrderSchema.optional(), startTime: SortOrderSchema.optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentOrderByWithRelationInput.schema.js b/packages/db/shared/schemas/objects/AppointmentOrderByWithRelationInput.schema.js index b967fc37..14346d02 100644 --- a/packages/db/shared/schemas/objects/AppointmentOrderByWithRelationInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentOrderByWithRelationInput.schema.js @@ -40,6 +40,7 @@ const SortOrderInput_schema_1 = require("./SortOrderInput.schema"); const PatientOrderByWithRelationInput_schema_1 = require("./PatientOrderByWithRelationInput.schema"); const UserOrderByWithRelationInput_schema_1 = require("./UserOrderByWithRelationInput.schema"); const StaffOrderByWithRelationInput_schema_1 = require("./StaffOrderByWithRelationInput.schema"); +const NpiProviderOrderByWithRelationInput_schema_1 = require("./NpiProviderOrderByWithRelationInput.schema"); const AppointmentProcedureOrderByRelationAggregateInput_schema_1 = require("./AppointmentProcedureOrderByRelationAggregateInput.schema"); const ClaimOrderByRelationAggregateInput_schema_1 = require("./ClaimOrderByRelationAggregateInput.schema"); const AppointmentFileOrderByRelationAggregateInput_schema_1 = require("./AppointmentFileOrderByRelationAggregateInput.schema"); @@ -48,6 +49,7 @@ const makeSchema = () => z.object({ patientId: SortOrder_schema_1.SortOrderSchema.optional(), userId: SortOrder_schema_1.SortOrderSchema.optional(), staffId: SortOrder_schema_1.SortOrderSchema.optional(), + npiProviderId: z.union([SortOrder_schema_1.SortOrderSchema, z.lazy(() => SortOrderInput_schema_1.SortOrderInputObjectSchema)]).optional(), title: SortOrder_schema_1.SortOrderSchema.optional(), date: SortOrder_schema_1.SortOrderSchema.optional(), startTime: SortOrder_schema_1.SortOrderSchema.optional(), @@ -63,6 +65,7 @@ const makeSchema = () => z.object({ patient: z.lazy(() => PatientOrderByWithRelationInput_schema_1.PatientOrderByWithRelationInputObjectSchema).optional(), user: z.lazy(() => UserOrderByWithRelationInput_schema_1.UserOrderByWithRelationInputObjectSchema).optional(), staff: z.lazy(() => StaffOrderByWithRelationInput_schema_1.StaffOrderByWithRelationInputObjectSchema).optional(), + npiProvider: z.lazy(() => NpiProviderOrderByWithRelationInput_schema_1.NpiProviderOrderByWithRelationInputObjectSchema).optional(), procedures: z.lazy(() => AppointmentProcedureOrderByRelationAggregateInput_schema_1.AppointmentProcedureOrderByRelationAggregateInputObjectSchema).optional(), claims: z.lazy(() => ClaimOrderByRelationAggregateInput_schema_1.ClaimOrderByRelationAggregateInputObjectSchema).optional(), files: z.lazy(() => AppointmentFileOrderByRelationAggregateInput_schema_1.AppointmentFileOrderByRelationAggregateInputObjectSchema).optional() diff --git a/packages/db/shared/schemas/objects/AppointmentOrderByWithRelationInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentOrderByWithRelationInput.schema.ts index 2275022d..b6b6ee14 100644 --- a/packages/db/shared/schemas/objects/AppointmentOrderByWithRelationInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentOrderByWithRelationInput.schema.ts @@ -5,6 +5,7 @@ import { SortOrderInputObjectSchema as SortOrderInputObjectSchema } from './Sort import { PatientOrderByWithRelationInputObjectSchema as PatientOrderByWithRelationInputObjectSchema } from './PatientOrderByWithRelationInput.schema'; import { UserOrderByWithRelationInputObjectSchema as UserOrderByWithRelationInputObjectSchema } from './UserOrderByWithRelationInput.schema'; import { StaffOrderByWithRelationInputObjectSchema as StaffOrderByWithRelationInputObjectSchema } from './StaffOrderByWithRelationInput.schema'; +import { NpiProviderOrderByWithRelationInputObjectSchema as NpiProviderOrderByWithRelationInputObjectSchema } from './NpiProviderOrderByWithRelationInput.schema'; import { AppointmentProcedureOrderByRelationAggregateInputObjectSchema as AppointmentProcedureOrderByRelationAggregateInputObjectSchema } from './AppointmentProcedureOrderByRelationAggregateInput.schema'; import { ClaimOrderByRelationAggregateInputObjectSchema as ClaimOrderByRelationAggregateInputObjectSchema } from './ClaimOrderByRelationAggregateInput.schema'; import { AppointmentFileOrderByRelationAggregateInputObjectSchema as AppointmentFileOrderByRelationAggregateInputObjectSchema } from './AppointmentFileOrderByRelationAggregateInput.schema' @@ -14,6 +15,7 @@ const makeSchema = () => z.object({ patientId: SortOrderSchema.optional(), userId: SortOrderSchema.optional(), staffId: SortOrderSchema.optional(), + npiProviderId: z.union([SortOrderSchema, z.lazy(() => SortOrderInputObjectSchema)]).optional(), title: SortOrderSchema.optional(), date: SortOrderSchema.optional(), startTime: SortOrderSchema.optional(), @@ -29,6 +31,7 @@ const makeSchema = () => z.object({ patient: z.lazy(() => PatientOrderByWithRelationInputObjectSchema).optional(), user: z.lazy(() => UserOrderByWithRelationInputObjectSchema).optional(), staff: z.lazy(() => StaffOrderByWithRelationInputObjectSchema).optional(), + npiProvider: z.lazy(() => NpiProviderOrderByWithRelationInputObjectSchema).optional(), procedures: z.lazy(() => AppointmentProcedureOrderByRelationAggregateInputObjectSchema).optional(), claims: z.lazy(() => ClaimOrderByRelationAggregateInputObjectSchema).optional(), files: z.lazy(() => AppointmentFileOrderByRelationAggregateInputObjectSchema).optional() diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureCreateInput.schema.js b/packages/db/shared/schemas/objects/AppointmentProcedureCreateInput.schema.js index 25c0d518..f23caa14 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureCreateInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentProcedureCreateInput.schema.js @@ -38,13 +38,12 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentProcedureCreateInputObjectZodSchema = exports.AppointmentProcedureCreateInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const ProcedureSource_schema_1 = require("../enums/ProcedureSource.schema"); const AppointmentCreateNestedOneWithoutProceduresInput_schema_1 = require("./AppointmentCreateNestedOneWithoutProceduresInput.schema"); const PatientCreateNestedOneWithoutProceduresInput_schema_1 = require("./PatientCreateNestedOneWithoutProceduresInput.schema"); const NpiProviderCreateNestedOneWithoutAppointmentProceduresInput_schema_1 = require("./NpiProviderCreateNestedOneWithoutAppointmentProceduresInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ procedureCode: z.string(), procedureLabel: z.string().optional().nullable(), @@ -52,7 +51,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureCreateInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentProcedureCreateInput.schema.ts index 5d89234f..a2e39303 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureCreateInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentProcedureCreateInput.schema.ts @@ -1,12 +1,13 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; -import { AppointmentCreateNestedOneWithoutProceduresInputObjectSchema as AppointmentCreateNestedOneWithoutProceduresInputObjectSchema } from './AppointmentCreateNestedOneWithoutProceduresInput.schema'; -import { PatientCreateNestedOneWithoutProceduresInputObjectSchema as PatientCreateNestedOneWithoutProceduresInputObjectSchema } from './PatientCreateNestedOneWithoutProceduresInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; +import { AppointmentCreateNestedOneWithoutProceduresInputObjectSchema as AppointmentCreateNestedOneWithoutProceduresInputObjectSchema } from './AppointmentCreateNestedOneWithoutProceduresInput.schema'; +import { PatientCreateNestedOneWithoutProceduresInputObjectSchema as PatientCreateNestedOneWithoutProceduresInputObjectSchema } from './PatientCreateNestedOneWithoutProceduresInput.schema'; import { NpiProviderCreateNestedOneWithoutAppointmentProceduresInputObjectSchema as NpiProviderCreateNestedOneWithoutAppointmentProceduresInputObjectSchema } from './NpiProviderCreateNestedOneWithoutAppointmentProceduresInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ procedureCode: z.string(), procedureLabel: z.string().optional().nullable(), @@ -14,7 +15,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureCreateManyAppointmentInput.schema.js b/packages/db/shared/schemas/objects/AppointmentProcedureCreateManyAppointmentInput.schema.js index 74756a75..5027bc2b 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureCreateManyAppointmentInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentProcedureCreateManyAppointmentInput.schema.js @@ -38,10 +38,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentProcedureCreateManyAppointmentInputObjectZodSchema = exports.AppointmentProcedureCreateManyAppointmentInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const ProcedureSource_schema_1 = require("../enums/ProcedureSource.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), patientId: z.number().int(), @@ -52,7 +51,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureCreateManyAppointmentInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentProcedureCreateManyAppointmentInput.schema.ts index 4d6336bb..6b91ce57 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureCreateManyAppointmentInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentProcedureCreateManyAppointmentInput.schema.ts @@ -1,9 +1,10 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; +import type { Prisma } from '../../../generated/prisma'; import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), patientId: z.number().int(), @@ -14,7 +15,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureCreateManyInput.schema.js b/packages/db/shared/schemas/objects/AppointmentProcedureCreateManyInput.schema.js index bf2d79a9..a6b66410 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureCreateManyInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentProcedureCreateManyInput.schema.js @@ -38,10 +38,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentProcedureCreateManyInputObjectZodSchema = exports.AppointmentProcedureCreateManyInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const ProcedureSource_schema_1 = require("../enums/ProcedureSource.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), appointmentId: z.number().int(), @@ -53,7 +52,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureCreateManyInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentProcedureCreateManyInput.schema.ts index b9563f9b..aec716cc 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureCreateManyInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentProcedureCreateManyInput.schema.ts @@ -1,9 +1,10 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; +import type { Prisma } from '../../../generated/prisma'; import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), appointmentId: z.number().int(), @@ -15,7 +16,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureCreateManyNpiProviderInput.schema.js b/packages/db/shared/schemas/objects/AppointmentProcedureCreateManyNpiProviderInput.schema.js index 0db8f4af..cf320897 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureCreateManyNpiProviderInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentProcedureCreateManyNpiProviderInput.schema.js @@ -38,10 +38,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentProcedureCreateManyNpiProviderInputObjectZodSchema = exports.AppointmentProcedureCreateManyNpiProviderInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const ProcedureSource_schema_1 = require("../enums/ProcedureSource.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), appointmentId: z.number().int(), @@ -52,7 +51,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureCreateManyNpiProviderInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentProcedureCreateManyNpiProviderInput.schema.ts index c1ca1876..ba0e216a 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureCreateManyNpiProviderInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentProcedureCreateManyNpiProviderInput.schema.ts @@ -1,9 +1,10 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; +import type { Prisma } from '../../../generated/prisma'; import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), appointmentId: z.number().int(), @@ -14,7 +15,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureCreateManyPatientInput.schema.js b/packages/db/shared/schemas/objects/AppointmentProcedureCreateManyPatientInput.schema.js index e7323b31..8724f2e6 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureCreateManyPatientInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentProcedureCreateManyPatientInput.schema.js @@ -38,10 +38,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentProcedureCreateManyPatientInputObjectZodSchema = exports.AppointmentProcedureCreateManyPatientInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const ProcedureSource_schema_1 = require("../enums/ProcedureSource.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), appointmentId: z.number().int(), @@ -52,7 +51,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureCreateManyPatientInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentProcedureCreateManyPatientInput.schema.ts index b25338a2..64a61660 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureCreateManyPatientInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentProcedureCreateManyPatientInput.schema.ts @@ -1,9 +1,10 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; +import type { Prisma } from '../../../generated/prisma'; import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), appointmentId: z.number().int(), @@ -14,7 +15,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureCreateWithoutAppointmentInput.schema.js b/packages/db/shared/schemas/objects/AppointmentProcedureCreateWithoutAppointmentInput.schema.js index b83ede0c..86e1b084 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureCreateWithoutAppointmentInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentProcedureCreateWithoutAppointmentInput.schema.js @@ -38,12 +38,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentProcedureCreateWithoutAppointmentInputObjectZodSchema = exports.AppointmentProcedureCreateWithoutAppointmentInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const ProcedureSource_schema_1 = require("../enums/ProcedureSource.schema"); const PatientCreateNestedOneWithoutProceduresInput_schema_1 = require("./PatientCreateNestedOneWithoutProceduresInput.schema"); const NpiProviderCreateNestedOneWithoutAppointmentProceduresInput_schema_1 = require("./NpiProviderCreateNestedOneWithoutAppointmentProceduresInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ procedureCode: z.string(), procedureLabel: z.string().optional().nullable(), @@ -51,7 +50,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureCreateWithoutAppointmentInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentProcedureCreateWithoutAppointmentInput.schema.ts index 92f4ce81..18d18163 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureCreateWithoutAppointmentInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentProcedureCreateWithoutAppointmentInput.schema.ts @@ -1,11 +1,12 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; -import { PatientCreateNestedOneWithoutProceduresInputObjectSchema as PatientCreateNestedOneWithoutProceduresInputObjectSchema } from './PatientCreateNestedOneWithoutProceduresInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; +import { PatientCreateNestedOneWithoutProceduresInputObjectSchema as PatientCreateNestedOneWithoutProceduresInputObjectSchema } from './PatientCreateNestedOneWithoutProceduresInput.schema'; import { NpiProviderCreateNestedOneWithoutAppointmentProceduresInputObjectSchema as NpiProviderCreateNestedOneWithoutAppointmentProceduresInputObjectSchema } from './NpiProviderCreateNestedOneWithoutAppointmentProceduresInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ procedureCode: z.string(), procedureLabel: z.string().optional().nullable(), @@ -13,7 +14,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureCreateWithoutNpiProviderInput.schema.js b/packages/db/shared/schemas/objects/AppointmentProcedureCreateWithoutNpiProviderInput.schema.js index 26da4f52..05ad707a 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureCreateWithoutNpiProviderInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentProcedureCreateWithoutNpiProviderInput.schema.js @@ -38,12 +38,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentProcedureCreateWithoutNpiProviderInputObjectZodSchema = exports.AppointmentProcedureCreateWithoutNpiProviderInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const ProcedureSource_schema_1 = require("../enums/ProcedureSource.schema"); const AppointmentCreateNestedOneWithoutProceduresInput_schema_1 = require("./AppointmentCreateNestedOneWithoutProceduresInput.schema"); const PatientCreateNestedOneWithoutProceduresInput_schema_1 = require("./PatientCreateNestedOneWithoutProceduresInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ procedureCode: z.string(), procedureLabel: z.string().optional().nullable(), @@ -51,7 +50,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureCreateWithoutNpiProviderInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentProcedureCreateWithoutNpiProviderInput.schema.ts index 125d848c..5064cee9 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureCreateWithoutNpiProviderInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentProcedureCreateWithoutNpiProviderInput.schema.ts @@ -1,11 +1,12 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; -import { AppointmentCreateNestedOneWithoutProceduresInputObjectSchema as AppointmentCreateNestedOneWithoutProceduresInputObjectSchema } from './AppointmentCreateNestedOneWithoutProceduresInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; +import { AppointmentCreateNestedOneWithoutProceduresInputObjectSchema as AppointmentCreateNestedOneWithoutProceduresInputObjectSchema } from './AppointmentCreateNestedOneWithoutProceduresInput.schema'; import { PatientCreateNestedOneWithoutProceduresInputObjectSchema as PatientCreateNestedOneWithoutProceduresInputObjectSchema } from './PatientCreateNestedOneWithoutProceduresInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ procedureCode: z.string(), procedureLabel: z.string().optional().nullable(), @@ -13,7 +14,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureCreateWithoutPatientInput.schema.js b/packages/db/shared/schemas/objects/AppointmentProcedureCreateWithoutPatientInput.schema.js index a238f7e4..d5b099db 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureCreateWithoutPatientInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentProcedureCreateWithoutPatientInput.schema.js @@ -38,12 +38,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentProcedureCreateWithoutPatientInputObjectZodSchema = exports.AppointmentProcedureCreateWithoutPatientInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const ProcedureSource_schema_1 = require("../enums/ProcedureSource.schema"); const AppointmentCreateNestedOneWithoutProceduresInput_schema_1 = require("./AppointmentCreateNestedOneWithoutProceduresInput.schema"); const NpiProviderCreateNestedOneWithoutAppointmentProceduresInput_schema_1 = require("./NpiProviderCreateNestedOneWithoutAppointmentProceduresInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ procedureCode: z.string(), procedureLabel: z.string().optional().nullable(), @@ -51,7 +50,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureCreateWithoutPatientInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentProcedureCreateWithoutPatientInput.schema.ts index b5608d56..444735dd 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureCreateWithoutPatientInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentProcedureCreateWithoutPatientInput.schema.ts @@ -1,11 +1,12 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; -import { AppointmentCreateNestedOneWithoutProceduresInputObjectSchema as AppointmentCreateNestedOneWithoutProceduresInputObjectSchema } from './AppointmentCreateNestedOneWithoutProceduresInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; +import { AppointmentCreateNestedOneWithoutProceduresInputObjectSchema as AppointmentCreateNestedOneWithoutProceduresInputObjectSchema } from './AppointmentCreateNestedOneWithoutProceduresInput.schema'; import { NpiProviderCreateNestedOneWithoutAppointmentProceduresInputObjectSchema as NpiProviderCreateNestedOneWithoutAppointmentProceduresInputObjectSchema } from './NpiProviderCreateNestedOneWithoutAppointmentProceduresInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ procedureCode: z.string(), procedureLabel: z.string().optional().nullable(), @@ -13,7 +14,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureScalarWhereInput.schema.js b/packages/db/shared/schemas/objects/AppointmentProcedureScalarWhereInput.schema.js index c7ca1928..f6521dcc 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureScalarWhereInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentProcedureScalarWhereInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentProcedureScalarWhereInputObjectZodSchema = exports.AppointmentProcedureScalarWhereInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFilter_schema_1 = require("./IntFilter.schema"); const IntNullableFilter_schema_1 = require("./IntNullableFilter.schema"); const StringFilter_schema_1 = require("./StringFilter.schema"); @@ -49,6 +47,7 @@ const EnumProcedureSourceFilter_schema_1 = require("./EnumProcedureSourceFilter. const ProcedureSource_schema_1 = require("../enums/ProcedureSource.schema"); const DateTimeFilter_schema_1 = require("./DateTimeFilter.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const appointmentprocedurescalarwhereinputSchema = z.object({ AND: z.union([z.lazy(() => exports.AppointmentProcedureScalarWhereInputObjectSchema), z.lazy(() => exports.AppointmentProcedureScalarWhereInputObjectSchema).array()]).optional(), OR: z.lazy(() => exports.AppointmentProcedureScalarWhereInputObjectSchema).array().optional(), @@ -63,7 +62,7 @@ const appointmentprocedurescalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureScalarWhereInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentProcedureScalarWhereInput.schema.ts index c15ed55a..3aaa85c3 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureScalarWhereInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentProcedureScalarWhereInput.schema.ts @@ -1,16 +1,17 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFilterObjectSchema as IntFilterObjectSchema } from './IntFilter.schema'; -import { IntNullableFilterObjectSchema as IntNullableFilterObjectSchema } from './IntNullableFilter.schema'; -import { StringFilterObjectSchema as StringFilterObjectSchema } from './StringFilter.schema'; -import { StringNullableFilterObjectSchema as StringNullableFilterObjectSchema } from './StringNullableFilter.schema'; -import { DecimalNullableFilterObjectSchema as DecimalNullableFilterObjectSchema } from './DecimalNullableFilter.schema'; -import { EnumProcedureSourceFilterObjectSchema as EnumProcedureSourceFilterObjectSchema } from './EnumProcedureSourceFilter.schema'; -import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFilterObjectSchema as IntFilterObjectSchema } from './IntFilter.schema'; +import { IntNullableFilterObjectSchema as IntNullableFilterObjectSchema } from './IntNullableFilter.schema'; +import { StringFilterObjectSchema as StringFilterObjectSchema } from './StringFilter.schema'; +import { StringNullableFilterObjectSchema as StringNullableFilterObjectSchema } from './StringNullableFilter.schema'; +import { DecimalNullableFilterObjectSchema as DecimalNullableFilterObjectSchema } from './DecimalNullableFilter.schema'; +import { EnumProcedureSourceFilterObjectSchema as EnumProcedureSourceFilterObjectSchema } from './EnumProcedureSourceFilter.schema'; +import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; import { DateTimeFilterObjectSchema as DateTimeFilterObjectSchema } from './DateTimeFilter.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const appointmentprocedurescalarwhereinputSchema = z.object({ AND: z.union([z.lazy(() => AppointmentProcedureScalarWhereInputObjectSchema), z.lazy(() => AppointmentProcedureScalarWhereInputObjectSchema).array()]).optional(), OR: z.lazy(() => AppointmentProcedureScalarWhereInputObjectSchema).array().optional(), @@ -25,7 +26,7 @@ const appointmentprocedurescalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureScalarWhereWithAggregatesInput.schema.js b/packages/db/shared/schemas/objects/AppointmentProcedureScalarWhereWithAggregatesInput.schema.js index fd0f49c6..284d2bfc 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureScalarWhereWithAggregatesInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentProcedureScalarWhereWithAggregatesInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentProcedureScalarWhereWithAggregatesInputObjectZodSchema = exports.AppointmentProcedureScalarWhereWithAggregatesInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntWithAggregatesFilter_schema_1 = require("./IntWithAggregatesFilter.schema"); const IntNullableWithAggregatesFilter_schema_1 = require("./IntNullableWithAggregatesFilter.schema"); const StringWithAggregatesFilter_schema_1 = require("./StringWithAggregatesFilter.schema"); @@ -49,6 +47,7 @@ const EnumProcedureSourceWithAggregatesFilter_schema_1 = require("./EnumProcedur const ProcedureSource_schema_1 = require("../enums/ProcedureSource.schema"); const DateTimeWithAggregatesFilter_schema_1 = require("./DateTimeWithAggregatesFilter.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const appointmentprocedurescalarwherewithaggregatesinputSchema = z.object({ AND: z.union([z.lazy(() => exports.AppointmentProcedureScalarWhereWithAggregatesInputObjectSchema), z.lazy(() => exports.AppointmentProcedureScalarWhereWithAggregatesInputObjectSchema).array()]).optional(), OR: z.lazy(() => exports.AppointmentProcedureScalarWhereWithAggregatesInputObjectSchema).array().optional(), @@ -63,7 +62,7 @@ const appointmentprocedurescalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureScalarWhereWithAggregatesInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentProcedureScalarWhereWithAggregatesInput.schema.ts index ff5ad478..e3ad66f6 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureScalarWhereWithAggregatesInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentProcedureScalarWhereWithAggregatesInput.schema.ts @@ -1,16 +1,17 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntWithAggregatesFilterObjectSchema as IntWithAggregatesFilterObjectSchema } from './IntWithAggregatesFilter.schema'; -import { IntNullableWithAggregatesFilterObjectSchema as IntNullableWithAggregatesFilterObjectSchema } from './IntNullableWithAggregatesFilter.schema'; -import { StringWithAggregatesFilterObjectSchema as StringWithAggregatesFilterObjectSchema } from './StringWithAggregatesFilter.schema'; -import { StringNullableWithAggregatesFilterObjectSchema as StringNullableWithAggregatesFilterObjectSchema } from './StringNullableWithAggregatesFilter.schema'; -import { DecimalNullableWithAggregatesFilterObjectSchema as DecimalNullableWithAggregatesFilterObjectSchema } from './DecimalNullableWithAggregatesFilter.schema'; -import { EnumProcedureSourceWithAggregatesFilterObjectSchema as EnumProcedureSourceWithAggregatesFilterObjectSchema } from './EnumProcedureSourceWithAggregatesFilter.schema'; -import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntWithAggregatesFilterObjectSchema as IntWithAggregatesFilterObjectSchema } from './IntWithAggregatesFilter.schema'; +import { IntNullableWithAggregatesFilterObjectSchema as IntNullableWithAggregatesFilterObjectSchema } from './IntNullableWithAggregatesFilter.schema'; +import { StringWithAggregatesFilterObjectSchema as StringWithAggregatesFilterObjectSchema } from './StringWithAggregatesFilter.schema'; +import { StringNullableWithAggregatesFilterObjectSchema as StringNullableWithAggregatesFilterObjectSchema } from './StringNullableWithAggregatesFilter.schema'; +import { DecimalNullableWithAggregatesFilterObjectSchema as DecimalNullableWithAggregatesFilterObjectSchema } from './DecimalNullableWithAggregatesFilter.schema'; +import { EnumProcedureSourceWithAggregatesFilterObjectSchema as EnumProcedureSourceWithAggregatesFilterObjectSchema } from './EnumProcedureSourceWithAggregatesFilter.schema'; +import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; import { DateTimeWithAggregatesFilterObjectSchema as DateTimeWithAggregatesFilterObjectSchema } from './DateTimeWithAggregatesFilter.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const appointmentprocedurescalarwherewithaggregatesinputSchema = z.object({ AND: z.union([z.lazy(() => AppointmentProcedureScalarWhereWithAggregatesInputObjectSchema), z.lazy(() => AppointmentProcedureScalarWhereWithAggregatesInputObjectSchema).array()]).optional(), OR: z.lazy(() => AppointmentProcedureScalarWhereWithAggregatesInputObjectSchema).array().optional(), @@ -25,7 +26,7 @@ const appointmentprocedurescalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedCreateInput.schema.js b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedCreateInput.schema.js index 98d954db..2e9f9d6d 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedCreateInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedCreateInput.schema.js @@ -38,10 +38,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentProcedureUncheckedCreateInputObjectZodSchema = exports.AppointmentProcedureUncheckedCreateInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const ProcedureSource_schema_1 = require("../enums/ProcedureSource.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), appointmentId: z.number().int(), @@ -53,7 +52,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedCreateInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedCreateInput.schema.ts index ba3cd935..a2bea29c 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedCreateInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedCreateInput.schema.ts @@ -1,9 +1,10 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; +import type { Prisma } from '../../../generated/prisma'; import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), appointmentId: z.number().int(), @@ -15,7 +16,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedCreateWithoutAppointmentInput.schema.js b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedCreateWithoutAppointmentInput.schema.js index 71e7edac..f3888025 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedCreateWithoutAppointmentInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedCreateWithoutAppointmentInput.schema.js @@ -38,10 +38,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentProcedureUncheckedCreateWithoutAppointmentInputObjectZodSchema = exports.AppointmentProcedureUncheckedCreateWithoutAppointmentInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const ProcedureSource_schema_1 = require("../enums/ProcedureSource.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), patientId: z.number().int(), @@ -52,7 +51,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedCreateWithoutAppointmentInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedCreateWithoutAppointmentInput.schema.ts index 6ab9693b..b73fa0fd 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedCreateWithoutAppointmentInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedCreateWithoutAppointmentInput.schema.ts @@ -1,9 +1,10 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; +import type { Prisma } from '../../../generated/prisma'; import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), patientId: z.number().int(), @@ -14,7 +15,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedCreateWithoutNpiProviderInput.schema.js b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedCreateWithoutNpiProviderInput.schema.js index 153e4590..22c59777 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedCreateWithoutNpiProviderInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedCreateWithoutNpiProviderInput.schema.js @@ -38,10 +38,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentProcedureUncheckedCreateWithoutNpiProviderInputObjectZodSchema = exports.AppointmentProcedureUncheckedCreateWithoutNpiProviderInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const ProcedureSource_schema_1 = require("../enums/ProcedureSource.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), appointmentId: z.number().int(), @@ -52,7 +51,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedCreateWithoutNpiProviderInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedCreateWithoutNpiProviderInput.schema.ts index 22d05ee2..0f8382ff 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedCreateWithoutNpiProviderInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedCreateWithoutNpiProviderInput.schema.ts @@ -1,9 +1,10 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; +import type { Prisma } from '../../../generated/prisma'; import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), appointmentId: z.number().int(), @@ -14,7 +15,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedCreateWithoutPatientInput.schema.js b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedCreateWithoutPatientInput.schema.js index 1d2c7164..fbc5d792 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedCreateWithoutPatientInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedCreateWithoutPatientInput.schema.js @@ -38,10 +38,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentProcedureUncheckedCreateWithoutPatientInputObjectZodSchema = exports.AppointmentProcedureUncheckedCreateWithoutPatientInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const ProcedureSource_schema_1 = require("../enums/ProcedureSource.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), appointmentId: z.number().int(), @@ -52,7 +51,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedCreateWithoutPatientInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedCreateWithoutPatientInput.schema.ts index bcc7861f..719696ee 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedCreateWithoutPatientInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedCreateWithoutPatientInput.schema.ts @@ -1,9 +1,10 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; +import type { Prisma } from '../../../generated/prisma'; import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), appointmentId: z.number().int(), @@ -14,7 +15,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateInput.schema.js b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateInput.schema.js index bbeedc72..c71b9825 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentProcedureUncheckedUpdateInputObjectZodSchema = exports.AppointmentProcedureUncheckedUpdateInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); @@ -49,6 +47,7 @@ const ProcedureSource_schema_1 = require("../enums/ProcedureSource.schema"); const EnumProcedureSourceFieldUpdateOperationsInput_schema_1 = require("./EnumProcedureSourceFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), appointmentId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -60,7 +59,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateInput.schema.ts index 20e87806..617af16a 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateInput.schema.ts @@ -1,16 +1,17 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; -import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; -import { EnumProcedureSourceFieldUpdateOperationsInputObjectSchema as EnumProcedureSourceFieldUpdateOperationsInputObjectSchema } from './EnumProcedureSourceFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; +import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; +import { EnumProcedureSourceFieldUpdateOperationsInputObjectSchema as EnumProcedureSourceFieldUpdateOperationsInputObjectSchema } from './EnumProcedureSourceFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), appointmentId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -22,7 +23,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateManyInput.schema.js b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateManyInput.schema.js index 3bd0b103..cc1c0fe0 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateManyInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateManyInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentProcedureUncheckedUpdateManyInputObjectZodSchema = exports.AppointmentProcedureUncheckedUpdateManyInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); @@ -49,6 +47,7 @@ const ProcedureSource_schema_1 = require("../enums/ProcedureSource.schema"); const EnumProcedureSourceFieldUpdateOperationsInput_schema_1 = require("./EnumProcedureSourceFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), appointmentId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -60,7 +59,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateManyInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateManyInput.schema.ts index 4a0e24c1..0b0e85ef 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateManyInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateManyInput.schema.ts @@ -1,16 +1,17 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; -import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; -import { EnumProcedureSourceFieldUpdateOperationsInputObjectSchema as EnumProcedureSourceFieldUpdateOperationsInputObjectSchema } from './EnumProcedureSourceFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; +import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; +import { EnumProcedureSourceFieldUpdateOperationsInputObjectSchema as EnumProcedureSourceFieldUpdateOperationsInputObjectSchema } from './EnumProcedureSourceFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), appointmentId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -22,7 +23,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateManyWithoutAppointmentInput.schema.js b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateManyWithoutAppointmentInput.schema.js index 95f47ce7..82481312 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateManyWithoutAppointmentInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateManyWithoutAppointmentInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentProcedureUncheckedUpdateManyWithoutAppointmentInputObjectZodSchema = exports.AppointmentProcedureUncheckedUpdateManyWithoutAppointmentInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); @@ -49,6 +47,7 @@ const ProcedureSource_schema_1 = require("../enums/ProcedureSource.schema"); const EnumProcedureSourceFieldUpdateOperationsInput_schema_1 = require("./EnumProcedureSourceFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), patientId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -59,7 +58,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateManyWithoutAppointmentInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateManyWithoutAppointmentInput.schema.ts index 6b072cb3..2bc19643 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateManyWithoutAppointmentInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateManyWithoutAppointmentInput.schema.ts @@ -1,16 +1,17 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; -import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; -import { EnumProcedureSourceFieldUpdateOperationsInputObjectSchema as EnumProcedureSourceFieldUpdateOperationsInputObjectSchema } from './EnumProcedureSourceFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; +import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; +import { EnumProcedureSourceFieldUpdateOperationsInputObjectSchema as EnumProcedureSourceFieldUpdateOperationsInputObjectSchema } from './EnumProcedureSourceFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), patientId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -21,7 +22,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderInput.schema.js b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderInput.schema.js index 65097d70..d165a27b 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderInputObjectZodSchema = exports.AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); @@ -48,6 +46,7 @@ const ProcedureSource_schema_1 = require("../enums/ProcedureSource.schema"); const EnumProcedureSourceFieldUpdateOperationsInput_schema_1 = require("./EnumProcedureSourceFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), appointmentId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -58,7 +57,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderInput.schema.ts index 57148f79..4f003275 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderInput.schema.ts @@ -1,15 +1,16 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; -import { EnumProcedureSourceFieldUpdateOperationsInputObjectSchema as EnumProcedureSourceFieldUpdateOperationsInputObjectSchema } from './EnumProcedureSourceFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; +import { EnumProcedureSourceFieldUpdateOperationsInputObjectSchema as EnumProcedureSourceFieldUpdateOperationsInputObjectSchema } from './EnumProcedureSourceFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), appointmentId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -20,7 +21,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateManyWithoutPatientInput.schema.js b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateManyWithoutPatientInput.schema.js index c4629e57..2bf8921e 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateManyWithoutPatientInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateManyWithoutPatientInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentProcedureUncheckedUpdateManyWithoutPatientInputObjectZodSchema = exports.AppointmentProcedureUncheckedUpdateManyWithoutPatientInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); @@ -49,6 +47,7 @@ const ProcedureSource_schema_1 = require("../enums/ProcedureSource.schema"); const EnumProcedureSourceFieldUpdateOperationsInput_schema_1 = require("./EnumProcedureSourceFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), appointmentId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -59,7 +58,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateManyWithoutPatientInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateManyWithoutPatientInput.schema.ts index c97f12de..f723cf52 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateManyWithoutPatientInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateManyWithoutPatientInput.schema.ts @@ -1,16 +1,17 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; -import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; -import { EnumProcedureSourceFieldUpdateOperationsInputObjectSchema as EnumProcedureSourceFieldUpdateOperationsInputObjectSchema } from './EnumProcedureSourceFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; +import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; +import { EnumProcedureSourceFieldUpdateOperationsInputObjectSchema as EnumProcedureSourceFieldUpdateOperationsInputObjectSchema } from './EnumProcedureSourceFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), appointmentId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -21,7 +22,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateWithoutAppointmentInput.schema.js b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateWithoutAppointmentInput.schema.js index 10a68e5c..f426dca4 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateWithoutAppointmentInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateWithoutAppointmentInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentProcedureUncheckedUpdateWithoutAppointmentInputObjectZodSchema = exports.AppointmentProcedureUncheckedUpdateWithoutAppointmentInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); @@ -49,6 +47,7 @@ const ProcedureSource_schema_1 = require("../enums/ProcedureSource.schema"); const EnumProcedureSourceFieldUpdateOperationsInput_schema_1 = require("./EnumProcedureSourceFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), patientId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -59,7 +58,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateWithoutAppointmentInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateWithoutAppointmentInput.schema.ts index d4a64112..cfe9d034 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateWithoutAppointmentInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateWithoutAppointmentInput.schema.ts @@ -1,16 +1,17 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; -import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; -import { EnumProcedureSourceFieldUpdateOperationsInputObjectSchema as EnumProcedureSourceFieldUpdateOperationsInputObjectSchema } from './EnumProcedureSourceFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; +import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; +import { EnumProcedureSourceFieldUpdateOperationsInputObjectSchema as EnumProcedureSourceFieldUpdateOperationsInputObjectSchema } from './EnumProcedureSourceFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), patientId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -21,7 +22,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateWithoutNpiProviderInput.schema.js b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateWithoutNpiProviderInput.schema.js index 699801ff..028dcf10 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateWithoutNpiProviderInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateWithoutNpiProviderInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentProcedureUncheckedUpdateWithoutNpiProviderInputObjectZodSchema = exports.AppointmentProcedureUncheckedUpdateWithoutNpiProviderInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); @@ -48,6 +46,7 @@ const ProcedureSource_schema_1 = require("../enums/ProcedureSource.schema"); const EnumProcedureSourceFieldUpdateOperationsInput_schema_1 = require("./EnumProcedureSourceFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), appointmentId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -58,7 +57,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateWithoutNpiProviderInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateWithoutNpiProviderInput.schema.ts index 760ff559..0c1c146c 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateWithoutNpiProviderInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateWithoutNpiProviderInput.schema.ts @@ -1,15 +1,16 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; -import { EnumProcedureSourceFieldUpdateOperationsInputObjectSchema as EnumProcedureSourceFieldUpdateOperationsInputObjectSchema } from './EnumProcedureSourceFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; +import { EnumProcedureSourceFieldUpdateOperationsInputObjectSchema as EnumProcedureSourceFieldUpdateOperationsInputObjectSchema } from './EnumProcedureSourceFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), appointmentId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -20,7 +21,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateWithoutPatientInput.schema.js b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateWithoutPatientInput.schema.js index c297c278..547581c3 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateWithoutPatientInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateWithoutPatientInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentProcedureUncheckedUpdateWithoutPatientInputObjectZodSchema = exports.AppointmentProcedureUncheckedUpdateWithoutPatientInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); @@ -49,6 +47,7 @@ const ProcedureSource_schema_1 = require("../enums/ProcedureSource.schema"); const EnumProcedureSourceFieldUpdateOperationsInput_schema_1 = require("./EnumProcedureSourceFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), appointmentId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -59,7 +58,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateWithoutPatientInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateWithoutPatientInput.schema.ts index 42efdce1..09f36b77 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateWithoutPatientInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentProcedureUncheckedUpdateWithoutPatientInput.schema.ts @@ -1,16 +1,17 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; -import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; -import { EnumProcedureSourceFieldUpdateOperationsInputObjectSchema as EnumProcedureSourceFieldUpdateOperationsInputObjectSchema } from './EnumProcedureSourceFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; +import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; +import { EnumProcedureSourceFieldUpdateOperationsInputObjectSchema as EnumProcedureSourceFieldUpdateOperationsInputObjectSchema } from './EnumProcedureSourceFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), appointmentId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -21,7 +22,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureUpdateInput.schema.js b/packages/db/shared/schemas/objects/AppointmentProcedureUpdateInput.schema.js index 3513a477..e6c49aff 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureUpdateInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentProcedureUpdateInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentProcedureUpdateInputObjectZodSchema = exports.AppointmentProcedureUpdateInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); const NullableDecimalFieldUpdateOperationsInput_schema_1 = require("./NullableDecimalFieldUpdateOperationsInput.schema"); @@ -50,6 +48,7 @@ const AppointmentUpdateOneRequiredWithoutProceduresNestedInput_schema_1 = requir const PatientUpdateOneRequiredWithoutProceduresNestedInput_schema_1 = require("./PatientUpdateOneRequiredWithoutProceduresNestedInput.schema"); const NpiProviderUpdateOneWithoutAppointmentProceduresNestedInput_schema_1 = require("./NpiProviderUpdateOneWithoutAppointmentProceduresNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ procedureCode: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), procedureLabel: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -57,7 +56,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureUpdateInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentProcedureUpdateInput.schema.ts index 6e95d41b..7b2a9b80 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureUpdateInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentProcedureUpdateInput.schema.ts @@ -1,17 +1,18 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; -import { EnumProcedureSourceFieldUpdateOperationsInputObjectSchema as EnumProcedureSourceFieldUpdateOperationsInputObjectSchema } from './EnumProcedureSourceFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; -import { AppointmentUpdateOneRequiredWithoutProceduresNestedInputObjectSchema as AppointmentUpdateOneRequiredWithoutProceduresNestedInputObjectSchema } from './AppointmentUpdateOneRequiredWithoutProceduresNestedInput.schema'; -import { PatientUpdateOneRequiredWithoutProceduresNestedInputObjectSchema as PatientUpdateOneRequiredWithoutProceduresNestedInputObjectSchema } from './PatientUpdateOneRequiredWithoutProceduresNestedInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; +import { EnumProcedureSourceFieldUpdateOperationsInputObjectSchema as EnumProcedureSourceFieldUpdateOperationsInputObjectSchema } from './EnumProcedureSourceFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { AppointmentUpdateOneRequiredWithoutProceduresNestedInputObjectSchema as AppointmentUpdateOneRequiredWithoutProceduresNestedInputObjectSchema } from './AppointmentUpdateOneRequiredWithoutProceduresNestedInput.schema'; +import { PatientUpdateOneRequiredWithoutProceduresNestedInputObjectSchema as PatientUpdateOneRequiredWithoutProceduresNestedInputObjectSchema } from './PatientUpdateOneRequiredWithoutProceduresNestedInput.schema'; import { NpiProviderUpdateOneWithoutAppointmentProceduresNestedInputObjectSchema as NpiProviderUpdateOneWithoutAppointmentProceduresNestedInputObjectSchema } from './NpiProviderUpdateOneWithoutAppointmentProceduresNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ procedureCode: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), procedureLabel: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -19,7 +20,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureUpdateManyMutationInput.schema.js b/packages/db/shared/schemas/objects/AppointmentProcedureUpdateManyMutationInput.schema.js index fb3698e3..4b15ab8b 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureUpdateManyMutationInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentProcedureUpdateManyMutationInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentProcedureUpdateManyMutationInputObjectZodSchema = exports.AppointmentProcedureUpdateManyMutationInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); const NullableDecimalFieldUpdateOperationsInput_schema_1 = require("./NullableDecimalFieldUpdateOperationsInput.schema"); @@ -47,6 +45,7 @@ const ProcedureSource_schema_1 = require("../enums/ProcedureSource.schema"); const EnumProcedureSourceFieldUpdateOperationsInput_schema_1 = require("./EnumProcedureSourceFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ procedureCode: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), procedureLabel: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -54,7 +53,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureUpdateManyMutationInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentProcedureUpdateManyMutationInput.schema.ts index ca7ec031..586be425 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureUpdateManyMutationInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentProcedureUpdateManyMutationInput.schema.ts @@ -1,14 +1,15 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; -import { EnumProcedureSourceFieldUpdateOperationsInputObjectSchema as EnumProcedureSourceFieldUpdateOperationsInputObjectSchema } from './EnumProcedureSourceFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; +import { EnumProcedureSourceFieldUpdateOperationsInputObjectSchema as EnumProcedureSourceFieldUpdateOperationsInputObjectSchema } from './EnumProcedureSourceFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ procedureCode: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), procedureLabel: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -16,7 +17,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureUpdateWithoutAppointmentInput.schema.js b/packages/db/shared/schemas/objects/AppointmentProcedureUpdateWithoutAppointmentInput.schema.js index 1da662e8..625828f8 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureUpdateWithoutAppointmentInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentProcedureUpdateWithoutAppointmentInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentProcedureUpdateWithoutAppointmentInputObjectZodSchema = exports.AppointmentProcedureUpdateWithoutAppointmentInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); const NullableDecimalFieldUpdateOperationsInput_schema_1 = require("./NullableDecimalFieldUpdateOperationsInput.schema"); @@ -49,6 +47,7 @@ const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpda const PatientUpdateOneRequiredWithoutProceduresNestedInput_schema_1 = require("./PatientUpdateOneRequiredWithoutProceduresNestedInput.schema"); const NpiProviderUpdateOneWithoutAppointmentProceduresNestedInput_schema_1 = require("./NpiProviderUpdateOneWithoutAppointmentProceduresNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ procedureCode: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), procedureLabel: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -56,7 +55,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureUpdateWithoutAppointmentInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentProcedureUpdateWithoutAppointmentInput.schema.ts index bfe51bee..153e629b 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureUpdateWithoutAppointmentInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentProcedureUpdateWithoutAppointmentInput.schema.ts @@ -1,16 +1,17 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; -import { EnumProcedureSourceFieldUpdateOperationsInputObjectSchema as EnumProcedureSourceFieldUpdateOperationsInputObjectSchema } from './EnumProcedureSourceFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; -import { PatientUpdateOneRequiredWithoutProceduresNestedInputObjectSchema as PatientUpdateOneRequiredWithoutProceduresNestedInputObjectSchema } from './PatientUpdateOneRequiredWithoutProceduresNestedInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; +import { EnumProcedureSourceFieldUpdateOperationsInputObjectSchema as EnumProcedureSourceFieldUpdateOperationsInputObjectSchema } from './EnumProcedureSourceFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { PatientUpdateOneRequiredWithoutProceduresNestedInputObjectSchema as PatientUpdateOneRequiredWithoutProceduresNestedInputObjectSchema } from './PatientUpdateOneRequiredWithoutProceduresNestedInput.schema'; import { NpiProviderUpdateOneWithoutAppointmentProceduresNestedInputObjectSchema as NpiProviderUpdateOneWithoutAppointmentProceduresNestedInputObjectSchema } from './NpiProviderUpdateOneWithoutAppointmentProceduresNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ procedureCode: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), procedureLabel: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -18,7 +19,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureUpdateWithoutNpiProviderInput.schema.js b/packages/db/shared/schemas/objects/AppointmentProcedureUpdateWithoutNpiProviderInput.schema.js index 6dc42092..b40eadf2 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureUpdateWithoutNpiProviderInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentProcedureUpdateWithoutNpiProviderInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentProcedureUpdateWithoutNpiProviderInputObjectZodSchema = exports.AppointmentProcedureUpdateWithoutNpiProviderInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); const NullableDecimalFieldUpdateOperationsInput_schema_1 = require("./NullableDecimalFieldUpdateOperationsInput.schema"); @@ -49,6 +47,7 @@ const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpda const AppointmentUpdateOneRequiredWithoutProceduresNestedInput_schema_1 = require("./AppointmentUpdateOneRequiredWithoutProceduresNestedInput.schema"); const PatientUpdateOneRequiredWithoutProceduresNestedInput_schema_1 = require("./PatientUpdateOneRequiredWithoutProceduresNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ procedureCode: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), procedureLabel: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -56,7 +55,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureUpdateWithoutNpiProviderInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentProcedureUpdateWithoutNpiProviderInput.schema.ts index caeed9b5..d34f7008 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureUpdateWithoutNpiProviderInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentProcedureUpdateWithoutNpiProviderInput.schema.ts @@ -1,16 +1,17 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; -import { EnumProcedureSourceFieldUpdateOperationsInputObjectSchema as EnumProcedureSourceFieldUpdateOperationsInputObjectSchema } from './EnumProcedureSourceFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; -import { AppointmentUpdateOneRequiredWithoutProceduresNestedInputObjectSchema as AppointmentUpdateOneRequiredWithoutProceduresNestedInputObjectSchema } from './AppointmentUpdateOneRequiredWithoutProceduresNestedInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; +import { EnumProcedureSourceFieldUpdateOperationsInputObjectSchema as EnumProcedureSourceFieldUpdateOperationsInputObjectSchema } from './EnumProcedureSourceFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { AppointmentUpdateOneRequiredWithoutProceduresNestedInputObjectSchema as AppointmentUpdateOneRequiredWithoutProceduresNestedInputObjectSchema } from './AppointmentUpdateOneRequiredWithoutProceduresNestedInput.schema'; import { PatientUpdateOneRequiredWithoutProceduresNestedInputObjectSchema as PatientUpdateOneRequiredWithoutProceduresNestedInputObjectSchema } from './PatientUpdateOneRequiredWithoutProceduresNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ procedureCode: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), procedureLabel: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -18,7 +19,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureUpdateWithoutPatientInput.schema.js b/packages/db/shared/schemas/objects/AppointmentProcedureUpdateWithoutPatientInput.schema.js index cd57a703..9e9c904d 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureUpdateWithoutPatientInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentProcedureUpdateWithoutPatientInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentProcedureUpdateWithoutPatientInputObjectZodSchema = exports.AppointmentProcedureUpdateWithoutPatientInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); const NullableDecimalFieldUpdateOperationsInput_schema_1 = require("./NullableDecimalFieldUpdateOperationsInput.schema"); @@ -49,6 +47,7 @@ const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpda const AppointmentUpdateOneRequiredWithoutProceduresNestedInput_schema_1 = require("./AppointmentUpdateOneRequiredWithoutProceduresNestedInput.schema"); const NpiProviderUpdateOneWithoutAppointmentProceduresNestedInput_schema_1 = require("./NpiProviderUpdateOneWithoutAppointmentProceduresNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ procedureCode: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), procedureLabel: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -56,7 +55,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureUpdateWithoutPatientInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentProcedureUpdateWithoutPatientInput.schema.ts index 079aaae7..77ccc445 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureUpdateWithoutPatientInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentProcedureUpdateWithoutPatientInput.schema.ts @@ -1,16 +1,17 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; -import { EnumProcedureSourceFieldUpdateOperationsInputObjectSchema as EnumProcedureSourceFieldUpdateOperationsInputObjectSchema } from './EnumProcedureSourceFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; -import { AppointmentUpdateOneRequiredWithoutProceduresNestedInputObjectSchema as AppointmentUpdateOneRequiredWithoutProceduresNestedInputObjectSchema } from './AppointmentUpdateOneRequiredWithoutProceduresNestedInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; +import { EnumProcedureSourceFieldUpdateOperationsInputObjectSchema as EnumProcedureSourceFieldUpdateOperationsInputObjectSchema } from './EnumProcedureSourceFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { AppointmentUpdateOneRequiredWithoutProceduresNestedInputObjectSchema as AppointmentUpdateOneRequiredWithoutProceduresNestedInputObjectSchema } from './AppointmentUpdateOneRequiredWithoutProceduresNestedInput.schema'; import { NpiProviderUpdateOneWithoutAppointmentProceduresNestedInputObjectSchema as NpiProviderUpdateOneWithoutAppointmentProceduresNestedInputObjectSchema } from './NpiProviderUpdateOneWithoutAppointmentProceduresNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ procedureCode: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), procedureLabel: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -18,7 +19,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureWhereInput.schema.js b/packages/db/shared/schemas/objects/AppointmentProcedureWhereInput.schema.js index 48ad740c..0aa02e53 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureWhereInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentProcedureWhereInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentProcedureWhereInputObjectZodSchema = exports.AppointmentProcedureWhereInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFilter_schema_1 = require("./IntFilter.schema"); const IntNullableFilter_schema_1 = require("./IntNullableFilter.schema"); const StringFilter_schema_1 = require("./StringFilter.schema"); @@ -55,6 +53,7 @@ const PatientWhereInput_schema_1 = require("./PatientWhereInput.schema"); const NpiProviderNullableScalarRelationFilter_schema_1 = require("./NpiProviderNullableScalarRelationFilter.schema"); const NpiProviderWhereInput_schema_1 = require("./NpiProviderWhereInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const appointmentprocedurewhereinputSchema = z.object({ AND: z.union([z.lazy(() => exports.AppointmentProcedureWhereInputObjectSchema), z.lazy(() => exports.AppointmentProcedureWhereInputObjectSchema).array()]).optional(), OR: z.lazy(() => exports.AppointmentProcedureWhereInputObjectSchema).array().optional(), @@ -69,7 +68,7 @@ const appointmentprocedurewhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentProcedureWhereInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentProcedureWhereInput.schema.ts index 8efcd71c..4740f1a6 100644 --- a/packages/db/shared/schemas/objects/AppointmentProcedureWhereInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentProcedureWhereInput.schema.ts @@ -1,22 +1,23 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFilterObjectSchema as IntFilterObjectSchema } from './IntFilter.schema'; -import { IntNullableFilterObjectSchema as IntNullableFilterObjectSchema } from './IntNullableFilter.schema'; -import { StringFilterObjectSchema as StringFilterObjectSchema } from './StringFilter.schema'; -import { StringNullableFilterObjectSchema as StringNullableFilterObjectSchema } from './StringNullableFilter.schema'; -import { DecimalNullableFilterObjectSchema as DecimalNullableFilterObjectSchema } from './DecimalNullableFilter.schema'; -import { EnumProcedureSourceFilterObjectSchema as EnumProcedureSourceFilterObjectSchema } from './EnumProcedureSourceFilter.schema'; -import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; -import { DateTimeFilterObjectSchema as DateTimeFilterObjectSchema } from './DateTimeFilter.schema'; -import { AppointmentScalarRelationFilterObjectSchema as AppointmentScalarRelationFilterObjectSchema } from './AppointmentScalarRelationFilter.schema'; -import { AppointmentWhereInputObjectSchema as AppointmentWhereInputObjectSchema } from './AppointmentWhereInput.schema'; -import { PatientScalarRelationFilterObjectSchema as PatientScalarRelationFilterObjectSchema } from './PatientScalarRelationFilter.schema'; -import { PatientWhereInputObjectSchema as PatientWhereInputObjectSchema } from './PatientWhereInput.schema'; -import { NpiProviderNullableScalarRelationFilterObjectSchema as NpiProviderNullableScalarRelationFilterObjectSchema } from './NpiProviderNullableScalarRelationFilter.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFilterObjectSchema as IntFilterObjectSchema } from './IntFilter.schema'; +import { IntNullableFilterObjectSchema as IntNullableFilterObjectSchema } from './IntNullableFilter.schema'; +import { StringFilterObjectSchema as StringFilterObjectSchema } from './StringFilter.schema'; +import { StringNullableFilterObjectSchema as StringNullableFilterObjectSchema } from './StringNullableFilter.schema'; +import { DecimalNullableFilterObjectSchema as DecimalNullableFilterObjectSchema } from './DecimalNullableFilter.schema'; +import { EnumProcedureSourceFilterObjectSchema as EnumProcedureSourceFilterObjectSchema } from './EnumProcedureSourceFilter.schema'; +import { ProcedureSourceSchema } from '../enums/ProcedureSource.schema'; +import { DateTimeFilterObjectSchema as DateTimeFilterObjectSchema } from './DateTimeFilter.schema'; +import { AppointmentScalarRelationFilterObjectSchema as AppointmentScalarRelationFilterObjectSchema } from './AppointmentScalarRelationFilter.schema'; +import { AppointmentWhereInputObjectSchema as AppointmentWhereInputObjectSchema } from './AppointmentWhereInput.schema'; +import { PatientScalarRelationFilterObjectSchema as PatientScalarRelationFilterObjectSchema } from './PatientScalarRelationFilter.schema'; +import { PatientWhereInputObjectSchema as PatientWhereInputObjectSchema } from './PatientWhereInput.schema'; +import { NpiProviderNullableScalarRelationFilterObjectSchema as NpiProviderNullableScalarRelationFilterObjectSchema } from './NpiProviderNullableScalarRelationFilter.schema'; import { NpiProviderWhereInputObjectSchema as NpiProviderWhereInputObjectSchema } from './NpiProviderWhereInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const appointmentprocedurewhereinputSchema = z.object({ AND: z.union([z.lazy(() => AppointmentProcedureWhereInputObjectSchema), z.lazy(() => AppointmentProcedureWhereInputObjectSchema).array()]).optional(), OR: z.lazy(() => AppointmentProcedureWhereInputObjectSchema).array().optional(), @@ -31,7 +32,7 @@ const appointmentprocedurewhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'fee' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/AppointmentScalarWhereInput.schema.js b/packages/db/shared/schemas/objects/AppointmentScalarWhereInput.schema.js index 82fb2649..b4d1eb42 100644 --- a/packages/db/shared/schemas/objects/AppointmentScalarWhereInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentScalarWhereInput.schema.js @@ -36,6 +36,7 @@ Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentScalarWhereInputObjectZodSchema = exports.AppointmentScalarWhereInputObjectSchema = void 0; const z = __importStar(require("zod")); const IntFilter_schema_1 = require("./IntFilter.schema"); +const IntNullableFilter_schema_1 = require("./IntNullableFilter.schema"); const StringFilter_schema_1 = require("./StringFilter.schema"); const DateTimeFilter_schema_1 = require("./DateTimeFilter.schema"); const BoolFilter_schema_1 = require("./BoolFilter.schema"); @@ -50,6 +51,7 @@ const appointmentscalarwhereinputSchema = z.object({ patientId: z.union([z.lazy(() => IntFilter_schema_1.IntFilterObjectSchema), z.number().int()]).optional(), userId: z.union([z.lazy(() => IntFilter_schema_1.IntFilterObjectSchema), z.number().int()]).optional(), staffId: z.union([z.lazy(() => IntFilter_schema_1.IntFilterObjectSchema), z.number().int()]).optional(), + npiProviderId: z.union([z.lazy(() => IntNullableFilter_schema_1.IntNullableFilterObjectSchema), z.number().int()]).optional().nullable(), title: z.union([z.lazy(() => StringFilter_schema_1.StringFilterObjectSchema), z.string()]).optional(), date: z.union([z.lazy(() => DateTimeFilter_schema_1.DateTimeFilterObjectSchema), z.coerce.date()]).optional(), startTime: z.union([z.lazy(() => StringFilter_schema_1.StringFilterObjectSchema), z.string()]).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentScalarWhereInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentScalarWhereInput.schema.ts index 25eab0e7..7f58dd5a 100644 --- a/packages/db/shared/schemas/objects/AppointmentScalarWhereInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentScalarWhereInput.schema.ts @@ -1,6 +1,7 @@ import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { IntFilterObjectSchema as IntFilterObjectSchema } from './IntFilter.schema'; +import { IntNullableFilterObjectSchema as IntNullableFilterObjectSchema } from './IntNullableFilter.schema'; import { StringFilterObjectSchema as StringFilterObjectSchema } from './StringFilter.schema'; import { DateTimeFilterObjectSchema as DateTimeFilterObjectSchema } from './DateTimeFilter.schema'; import { BoolFilterObjectSchema as BoolFilterObjectSchema } from './BoolFilter.schema'; @@ -16,6 +17,7 @@ const appointmentscalarwhereinputSchema = z.object({ patientId: z.union([z.lazy(() => IntFilterObjectSchema), z.number().int()]).optional(), userId: z.union([z.lazy(() => IntFilterObjectSchema), z.number().int()]).optional(), staffId: z.union([z.lazy(() => IntFilterObjectSchema), z.number().int()]).optional(), + npiProviderId: z.union([z.lazy(() => IntNullableFilterObjectSchema), z.number().int()]).optional().nullable(), title: z.union([z.lazy(() => StringFilterObjectSchema), z.string()]).optional(), date: z.union([z.lazy(() => DateTimeFilterObjectSchema), z.coerce.date()]).optional(), startTime: z.union([z.lazy(() => StringFilterObjectSchema), z.string()]).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentScalarWhereWithAggregatesInput.schema.js b/packages/db/shared/schemas/objects/AppointmentScalarWhereWithAggregatesInput.schema.js index c9325f99..530ce4b7 100644 --- a/packages/db/shared/schemas/objects/AppointmentScalarWhereWithAggregatesInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentScalarWhereWithAggregatesInput.schema.js @@ -36,6 +36,7 @@ Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentScalarWhereWithAggregatesInputObjectZodSchema = exports.AppointmentScalarWhereWithAggregatesInputObjectSchema = void 0; const z = __importStar(require("zod")); const IntWithAggregatesFilter_schema_1 = require("./IntWithAggregatesFilter.schema"); +const IntNullableWithAggregatesFilter_schema_1 = require("./IntNullableWithAggregatesFilter.schema"); const StringWithAggregatesFilter_schema_1 = require("./StringWithAggregatesFilter.schema"); const DateTimeWithAggregatesFilter_schema_1 = require("./DateTimeWithAggregatesFilter.schema"); const BoolWithAggregatesFilter_schema_1 = require("./BoolWithAggregatesFilter.schema"); @@ -50,6 +51,7 @@ const appointmentscalarwherewithaggregatesinputSchema = z.object({ patientId: z.union([z.lazy(() => IntWithAggregatesFilter_schema_1.IntWithAggregatesFilterObjectSchema), z.number().int()]).optional(), userId: z.union([z.lazy(() => IntWithAggregatesFilter_schema_1.IntWithAggregatesFilterObjectSchema), z.number().int()]).optional(), staffId: z.union([z.lazy(() => IntWithAggregatesFilter_schema_1.IntWithAggregatesFilterObjectSchema), z.number().int()]).optional(), + npiProviderId: z.union([z.lazy(() => IntNullableWithAggregatesFilter_schema_1.IntNullableWithAggregatesFilterObjectSchema), z.number().int()]).optional().nullable(), title: z.union([z.lazy(() => StringWithAggregatesFilter_schema_1.StringWithAggregatesFilterObjectSchema), z.string()]).optional(), date: z.union([z.lazy(() => DateTimeWithAggregatesFilter_schema_1.DateTimeWithAggregatesFilterObjectSchema), z.coerce.date()]).optional(), startTime: z.union([z.lazy(() => StringWithAggregatesFilter_schema_1.StringWithAggregatesFilterObjectSchema), z.string()]).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentScalarWhereWithAggregatesInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentScalarWhereWithAggregatesInput.schema.ts index aa0ee872..8d300b4d 100644 --- a/packages/db/shared/schemas/objects/AppointmentScalarWhereWithAggregatesInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentScalarWhereWithAggregatesInput.schema.ts @@ -1,6 +1,7 @@ import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { IntWithAggregatesFilterObjectSchema as IntWithAggregatesFilterObjectSchema } from './IntWithAggregatesFilter.schema'; +import { IntNullableWithAggregatesFilterObjectSchema as IntNullableWithAggregatesFilterObjectSchema } from './IntNullableWithAggregatesFilter.schema'; import { StringWithAggregatesFilterObjectSchema as StringWithAggregatesFilterObjectSchema } from './StringWithAggregatesFilter.schema'; import { DateTimeWithAggregatesFilterObjectSchema as DateTimeWithAggregatesFilterObjectSchema } from './DateTimeWithAggregatesFilter.schema'; import { BoolWithAggregatesFilterObjectSchema as BoolWithAggregatesFilterObjectSchema } from './BoolWithAggregatesFilter.schema'; @@ -16,6 +17,7 @@ const appointmentscalarwherewithaggregatesinputSchema = z.object({ patientId: z.union([z.lazy(() => IntWithAggregatesFilterObjectSchema), z.number().int()]).optional(), userId: z.union([z.lazy(() => IntWithAggregatesFilterObjectSchema), z.number().int()]).optional(), staffId: z.union([z.lazy(() => IntWithAggregatesFilterObjectSchema), z.number().int()]).optional(), + npiProviderId: z.union([z.lazy(() => IntNullableWithAggregatesFilterObjectSchema), z.number().int()]).optional().nullable(), title: z.union([z.lazy(() => StringWithAggregatesFilterObjectSchema), z.string()]).optional(), date: z.union([z.lazy(() => DateTimeWithAggregatesFilterObjectSchema), z.coerce.date()]).optional(), startTime: z.union([z.lazy(() => StringWithAggregatesFilterObjectSchema), z.string()]).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentSelect.schema.js b/packages/db/shared/schemas/objects/AppointmentSelect.schema.js index b1509ebd..c66bd44b 100644 --- a/packages/db/shared/schemas/objects/AppointmentSelect.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentSelect.schema.js @@ -38,6 +38,7 @@ const z = __importStar(require("zod")); const PatientArgs_schema_1 = require("./PatientArgs.schema"); const UserArgs_schema_1 = require("./UserArgs.schema"); const StaffArgs_schema_1 = require("./StaffArgs.schema"); +const NpiProviderArgs_schema_1 = require("./NpiProviderArgs.schema"); const findManyAppointmentProcedure_schema_1 = require("../findManyAppointmentProcedure.schema"); const findManyClaim_schema_1 = require("../findManyClaim.schema"); const findManyAppointmentFile_schema_1 = require("../findManyAppointmentFile.schema"); @@ -47,6 +48,7 @@ const makeSchema = () => z.object({ patientId: z.boolean().optional(), userId: z.boolean().optional(), staffId: z.boolean().optional(), + npiProviderId: z.boolean().optional(), title: z.boolean().optional(), date: z.boolean().optional(), startTime: z.boolean().optional(), @@ -62,6 +64,7 @@ const makeSchema = () => z.object({ patient: z.union([z.boolean(), z.lazy(() => PatientArgs_schema_1.PatientArgsObjectSchema)]).optional(), user: z.union([z.boolean(), z.lazy(() => UserArgs_schema_1.UserArgsObjectSchema)]).optional(), staff: z.union([z.boolean(), z.lazy(() => StaffArgs_schema_1.StaffArgsObjectSchema)]).optional(), + npiProvider: z.union([z.boolean(), z.lazy(() => NpiProviderArgs_schema_1.NpiProviderArgsObjectSchema)]).optional(), procedures: z.union([z.boolean(), z.lazy(() => findManyAppointmentProcedure_schema_1.AppointmentProcedureFindManySchema)]).optional(), claims: z.union([z.boolean(), z.lazy(() => findManyClaim_schema_1.ClaimFindManySchema)]).optional(), files: z.union([z.boolean(), z.lazy(() => findManyAppointmentFile_schema_1.AppointmentFileFindManySchema)]).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentSelect.schema.ts b/packages/db/shared/schemas/objects/AppointmentSelect.schema.ts index e297b276..21787ea1 100644 --- a/packages/db/shared/schemas/objects/AppointmentSelect.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentSelect.schema.ts @@ -3,6 +3,7 @@ import type { Prisma } from '../../../generated/prisma'; import { PatientArgsObjectSchema as PatientArgsObjectSchema } from './PatientArgs.schema'; import { UserArgsObjectSchema as UserArgsObjectSchema } from './UserArgs.schema'; import { StaffArgsObjectSchema as StaffArgsObjectSchema } from './StaffArgs.schema'; +import { NpiProviderArgsObjectSchema as NpiProviderArgsObjectSchema } from './NpiProviderArgs.schema'; import { AppointmentProcedureFindManySchema as AppointmentProcedureFindManySchema } from '../findManyAppointmentProcedure.schema'; import { ClaimFindManySchema as ClaimFindManySchema } from '../findManyClaim.schema'; import { AppointmentFileFindManySchema as AppointmentFileFindManySchema } from '../findManyAppointmentFile.schema'; @@ -13,6 +14,7 @@ const makeSchema = () => z.object({ patientId: z.boolean().optional(), userId: z.boolean().optional(), staffId: z.boolean().optional(), + npiProviderId: z.boolean().optional(), title: z.boolean().optional(), date: z.boolean().optional(), startTime: z.boolean().optional(), @@ -28,6 +30,7 @@ const makeSchema = () => z.object({ patient: z.union([z.boolean(), z.lazy(() => PatientArgsObjectSchema)]).optional(), user: z.union([z.boolean(), z.lazy(() => UserArgsObjectSchema)]).optional(), staff: z.union([z.boolean(), z.lazy(() => StaffArgsObjectSchema)]).optional(), + npiProvider: z.union([z.boolean(), z.lazy(() => NpiProviderArgsObjectSchema)]).optional(), procedures: z.union([z.boolean(), z.lazy(() => AppointmentProcedureFindManySchema)]).optional(), claims: z.union([z.boolean(), z.lazy(() => ClaimFindManySchema)]).optional(), files: z.union([z.boolean(), z.lazy(() => AppointmentFileFindManySchema)]).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentSumAggregateInput.schema.js b/packages/db/shared/schemas/objects/AppointmentSumAggregateInput.schema.js index e4efb245..a67bbd23 100644 --- a/packages/db/shared/schemas/objects/AppointmentSumAggregateInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentSumAggregateInput.schema.js @@ -39,7 +39,8 @@ const makeSchema = () => z.object({ id: z.literal(true).optional(), patientId: z.literal(true).optional(), userId: z.literal(true).optional(), - staffId: z.literal(true).optional() + staffId: z.literal(true).optional(), + npiProviderId: z.literal(true).optional() }).strict(); exports.AppointmentSumAggregateInputObjectSchema = makeSchema(); exports.AppointmentSumAggregateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentSumAggregateInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentSumAggregateInput.schema.ts index b8710ec9..6623cb62 100644 --- a/packages/db/shared/schemas/objects/AppointmentSumAggregateInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentSumAggregateInput.schema.ts @@ -6,7 +6,8 @@ const makeSchema = () => z.object({ id: z.literal(true).optional(), patientId: z.literal(true).optional(), userId: z.literal(true).optional(), - staffId: z.literal(true).optional() + staffId: z.literal(true).optional(), + npiProviderId: z.literal(true).optional() }).strict(); export const AppointmentSumAggregateInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const AppointmentSumAggregateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentSumOrderByAggregateInput.schema.js b/packages/db/shared/schemas/objects/AppointmentSumOrderByAggregateInput.schema.js index 0dbe25e0..5b6045bf 100644 --- a/packages/db/shared/schemas/objects/AppointmentSumOrderByAggregateInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentSumOrderByAggregateInput.schema.js @@ -40,7 +40,8 @@ const makeSchema = () => z.object({ id: SortOrder_schema_1.SortOrderSchema.optional(), patientId: SortOrder_schema_1.SortOrderSchema.optional(), userId: SortOrder_schema_1.SortOrderSchema.optional(), - staffId: SortOrder_schema_1.SortOrderSchema.optional() + staffId: SortOrder_schema_1.SortOrderSchema.optional(), + npiProviderId: SortOrder_schema_1.SortOrderSchema.optional() }).strict(); exports.AppointmentSumOrderByAggregateInputObjectSchema = makeSchema(); exports.AppointmentSumOrderByAggregateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentSumOrderByAggregateInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentSumOrderByAggregateInput.schema.ts index 42d5655c..25838ebf 100644 --- a/packages/db/shared/schemas/objects/AppointmentSumOrderByAggregateInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentSumOrderByAggregateInput.schema.ts @@ -6,7 +6,8 @@ const makeSchema = () => z.object({ id: SortOrderSchema.optional(), patientId: SortOrderSchema.optional(), userId: SortOrderSchema.optional(), - staffId: SortOrderSchema.optional() + staffId: SortOrderSchema.optional(), + npiProviderId: SortOrderSchema.optional() }).strict(); export const AppointmentSumOrderByAggregateInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const AppointmentSumOrderByAggregateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedCreateInput.schema.js b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateInput.schema.js index 03e3d0ff..5ac89afb 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedCreateInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateInput.schema.js @@ -44,6 +44,7 @@ const makeSchema = () => z.object({ patientId: z.number().int(), userId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().optional().nullable(), title: z.string(), date: z.coerce.date(), startTime: z.string(), diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedCreateInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateInput.schema.ts index 791c1dd2..7a2abe3a 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedCreateInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateInput.schema.ts @@ -10,6 +10,7 @@ const makeSchema = () => z.object({ patientId: z.number().int(), userId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().optional().nullable(), title: z.string(), date: z.coerce.date(), startTime: z.string(), diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput.schema.js b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput.schema.js new file mode 100644 index 00000000..f2249e5a --- /dev/null +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput.schema.js @@ -0,0 +1,50 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.AppointmentUncheckedCreateNestedManyWithoutNpiProviderInputObjectZodSchema = exports.AppointmentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const AppointmentCreateWithoutNpiProviderInput_schema_1 = require("./AppointmentCreateWithoutNpiProviderInput.schema"); +const AppointmentUncheckedCreateWithoutNpiProviderInput_schema_1 = require("./AppointmentUncheckedCreateWithoutNpiProviderInput.schema"); +const AppointmentCreateOrConnectWithoutNpiProviderInput_schema_1 = require("./AppointmentCreateOrConnectWithoutNpiProviderInput.schema"); +const AppointmentCreateManyNpiProviderInputEnvelope_schema_1 = require("./AppointmentCreateManyNpiProviderInputEnvelope.schema"); +const AppointmentWhereUniqueInput_schema_1 = require("./AppointmentWhereUniqueInput.schema"); +const makeSchema = () => z.object({ + create: z.union([z.lazy(() => AppointmentCreateWithoutNpiProviderInput_schema_1.AppointmentCreateWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentCreateWithoutNpiProviderInput_schema_1.AppointmentCreateWithoutNpiProviderInputObjectSchema).array(), z.lazy(() => AppointmentUncheckedCreateWithoutNpiProviderInput_schema_1.AppointmentUncheckedCreateWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentUncheckedCreateWithoutNpiProviderInput_schema_1.AppointmentUncheckedCreateWithoutNpiProviderInputObjectSchema).array()]).optional(), + connectOrCreate: z.union([z.lazy(() => AppointmentCreateOrConnectWithoutNpiProviderInput_schema_1.AppointmentCreateOrConnectWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentCreateOrConnectWithoutNpiProviderInput_schema_1.AppointmentCreateOrConnectWithoutNpiProviderInputObjectSchema).array()]).optional(), + createMany: z.lazy(() => AppointmentCreateManyNpiProviderInputEnvelope_schema_1.AppointmentCreateManyNpiProviderInputEnvelopeObjectSchema).optional(), + connect: z.union([z.lazy(() => AppointmentWhereUniqueInput_schema_1.AppointmentWhereUniqueInputObjectSchema), z.lazy(() => AppointmentWhereUniqueInput_schema_1.AppointmentWhereUniqueInputObjectSchema).array()]).optional() +}).strict(); +exports.AppointmentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema = makeSchema(); +exports.AppointmentUncheckedCreateNestedManyWithoutNpiProviderInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput.schema.ts new file mode 100644 index 00000000..bab8cc77 --- /dev/null +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput.schema.ts @@ -0,0 +1,16 @@ +import * as z from 'zod'; +import type { Prisma } from '../../../generated/prisma'; +import { AppointmentCreateWithoutNpiProviderInputObjectSchema as AppointmentCreateWithoutNpiProviderInputObjectSchema } from './AppointmentCreateWithoutNpiProviderInput.schema'; +import { AppointmentUncheckedCreateWithoutNpiProviderInputObjectSchema as AppointmentUncheckedCreateWithoutNpiProviderInputObjectSchema } from './AppointmentUncheckedCreateWithoutNpiProviderInput.schema'; +import { AppointmentCreateOrConnectWithoutNpiProviderInputObjectSchema as AppointmentCreateOrConnectWithoutNpiProviderInputObjectSchema } from './AppointmentCreateOrConnectWithoutNpiProviderInput.schema'; +import { AppointmentCreateManyNpiProviderInputEnvelopeObjectSchema as AppointmentCreateManyNpiProviderInputEnvelopeObjectSchema } from './AppointmentCreateManyNpiProviderInputEnvelope.schema'; +import { AppointmentWhereUniqueInputObjectSchema as AppointmentWhereUniqueInputObjectSchema } from './AppointmentWhereUniqueInput.schema' + +const makeSchema = () => z.object({ + create: z.union([z.lazy(() => AppointmentCreateWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentCreateWithoutNpiProviderInputObjectSchema).array(), z.lazy(() => AppointmentUncheckedCreateWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentUncheckedCreateWithoutNpiProviderInputObjectSchema).array()]).optional(), + connectOrCreate: z.union([z.lazy(() => AppointmentCreateOrConnectWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentCreateOrConnectWithoutNpiProviderInputObjectSchema).array()]).optional(), + createMany: z.lazy(() => AppointmentCreateManyNpiProviderInputEnvelopeObjectSchema).optional(), + connect: z.union([z.lazy(() => AppointmentWhereUniqueInputObjectSchema), z.lazy(() => AppointmentWhereUniqueInputObjectSchema).array()]).optional() +}).strict(); +export const AppointmentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; +export const AppointmentUncheckedCreateNestedManyWithoutNpiProviderInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutClaimsInput.schema.js b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutClaimsInput.schema.js index 79effcd5..9229e728 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutClaimsInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutClaimsInput.schema.js @@ -43,6 +43,7 @@ const makeSchema = () => z.object({ patientId: z.number().int(), userId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().optional().nullable(), title: z.string(), date: z.coerce.date(), startTime: z.string(), diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutClaimsInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutClaimsInput.schema.ts index 7eedf2b9..b425f51e 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutClaimsInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutClaimsInput.schema.ts @@ -9,6 +9,7 @@ const makeSchema = () => z.object({ patientId: z.number().int(), userId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().optional().nullable(), title: z.string(), date: z.coerce.date(), startTime: z.string(), diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutFilesInput.schema.js b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutFilesInput.schema.js index edea4a4d..b59c1fed 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutFilesInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutFilesInput.schema.js @@ -43,6 +43,7 @@ const makeSchema = () => z.object({ patientId: z.number().int(), userId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().optional().nullable(), title: z.string(), date: z.coerce.date(), startTime: z.string(), diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutFilesInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutFilesInput.schema.ts index 959d88f9..484b41b4 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutFilesInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutFilesInput.schema.ts @@ -9,6 +9,7 @@ const makeSchema = () => z.object({ patientId: z.number().int(), userId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().optional().nullable(), title: z.string(), date: z.coerce.date(), startTime: z.string(), diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutNpiProviderInput.schema.js b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutNpiProviderInput.schema.js new file mode 100644 index 00000000..49965afa --- /dev/null +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutNpiProviderInput.schema.js @@ -0,0 +1,64 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.AppointmentUncheckedCreateWithoutNpiProviderInputObjectZodSchema = exports.AppointmentUncheckedCreateWithoutNpiProviderInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const PatientStatus_schema_1 = require("../enums/PatientStatus.schema"); +const AppointmentProcedureUncheckedCreateNestedManyWithoutAppointmentInput_schema_1 = require("./AppointmentProcedureUncheckedCreateNestedManyWithoutAppointmentInput.schema"); +const ClaimUncheckedCreateNestedManyWithoutAppointmentInput_schema_1 = require("./ClaimUncheckedCreateNestedManyWithoutAppointmentInput.schema"); +const AppointmentFileUncheckedCreateNestedManyWithoutAppointmentInput_schema_1 = require("./AppointmentFileUncheckedCreateNestedManyWithoutAppointmentInput.schema"); +const makeSchema = () => z.object({ + id: z.number().int().optional(), + patientId: z.number().int(), + userId: z.number().int(), + staffId: z.number().int(), + title: z.string(), + date: z.coerce.date(), + startTime: z.string(), + endTime: z.string(), + type: z.string(), + typeLocked: z.boolean().optional(), + notes: z.string().optional().nullable(), + procedureCodeNotes: z.string().optional().nullable(), + status: z.string().optional(), + movedByAi: z.boolean().optional(), + createdAt: z.coerce.date().optional(), + eligibilityStatus: PatientStatus_schema_1.PatientStatusSchema.optional(), + procedures: z.lazy(() => AppointmentProcedureUncheckedCreateNestedManyWithoutAppointmentInput_schema_1.AppointmentProcedureUncheckedCreateNestedManyWithoutAppointmentInputObjectSchema).optional(), + claims: z.lazy(() => ClaimUncheckedCreateNestedManyWithoutAppointmentInput_schema_1.ClaimUncheckedCreateNestedManyWithoutAppointmentInputObjectSchema).optional(), + files: z.lazy(() => AppointmentFileUncheckedCreateNestedManyWithoutAppointmentInput_schema_1.AppointmentFileUncheckedCreateNestedManyWithoutAppointmentInputObjectSchema).optional() +}).strict(); +exports.AppointmentUncheckedCreateWithoutNpiProviderInputObjectSchema = makeSchema(); +exports.AppointmentUncheckedCreateWithoutNpiProviderInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutNpiProviderInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutNpiProviderInput.schema.ts new file mode 100644 index 00000000..667c69f3 --- /dev/null +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutNpiProviderInput.schema.ts @@ -0,0 +1,30 @@ +import * as z from 'zod'; +import type { Prisma } from '../../../generated/prisma'; +import { PatientStatusSchema } from '../enums/PatientStatus.schema'; +import { AppointmentProcedureUncheckedCreateNestedManyWithoutAppointmentInputObjectSchema as AppointmentProcedureUncheckedCreateNestedManyWithoutAppointmentInputObjectSchema } from './AppointmentProcedureUncheckedCreateNestedManyWithoutAppointmentInput.schema'; +import { ClaimUncheckedCreateNestedManyWithoutAppointmentInputObjectSchema as ClaimUncheckedCreateNestedManyWithoutAppointmentInputObjectSchema } from './ClaimUncheckedCreateNestedManyWithoutAppointmentInput.schema'; +import { AppointmentFileUncheckedCreateNestedManyWithoutAppointmentInputObjectSchema as AppointmentFileUncheckedCreateNestedManyWithoutAppointmentInputObjectSchema } from './AppointmentFileUncheckedCreateNestedManyWithoutAppointmentInput.schema' + +const makeSchema = () => z.object({ + id: z.number().int().optional(), + patientId: z.number().int(), + userId: z.number().int(), + staffId: z.number().int(), + title: z.string(), + date: z.coerce.date(), + startTime: z.string(), + endTime: z.string(), + type: z.string(), + typeLocked: z.boolean().optional(), + notes: z.string().optional().nullable(), + procedureCodeNotes: z.string().optional().nullable(), + status: z.string().optional(), + movedByAi: z.boolean().optional(), + createdAt: z.coerce.date().optional(), + eligibilityStatus: PatientStatusSchema.optional(), + procedures: z.lazy(() => AppointmentProcedureUncheckedCreateNestedManyWithoutAppointmentInputObjectSchema).optional(), + claims: z.lazy(() => ClaimUncheckedCreateNestedManyWithoutAppointmentInputObjectSchema).optional(), + files: z.lazy(() => AppointmentFileUncheckedCreateNestedManyWithoutAppointmentInputObjectSchema).optional() +}).strict(); +export const AppointmentUncheckedCreateWithoutNpiProviderInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; +export const AppointmentUncheckedCreateWithoutNpiProviderInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutPatientInput.schema.js b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutPatientInput.schema.js index 927f3faf..906dd3ca 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutPatientInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutPatientInput.schema.js @@ -43,6 +43,7 @@ const makeSchema = () => z.object({ id: z.number().int().optional(), userId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().optional().nullable(), title: z.string(), date: z.coerce.date(), startTime: z.string(), diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutPatientInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutPatientInput.schema.ts index 3fa812ed..07b87886 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutPatientInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutPatientInput.schema.ts @@ -9,6 +9,7 @@ const makeSchema = () => z.object({ id: z.number().int().optional(), userId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().optional().nullable(), title: z.string(), date: z.coerce.date(), startTime: z.string(), diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutProceduresInput.schema.js b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutProceduresInput.schema.js index d7885e6e..f2c2c72a 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutProceduresInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutProceduresInput.schema.js @@ -43,6 +43,7 @@ const makeSchema = () => z.object({ patientId: z.number().int(), userId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().optional().nullable(), title: z.string(), date: z.coerce.date(), startTime: z.string(), diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutProceduresInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutProceduresInput.schema.ts index 22c72b4a..80440800 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutProceduresInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutProceduresInput.schema.ts @@ -9,6 +9,7 @@ const makeSchema = () => z.object({ patientId: z.number().int(), userId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().optional().nullable(), title: z.string(), date: z.coerce.date(), startTime: z.string(), diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutStaffInput.schema.js b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutStaffInput.schema.js index 21e8c955..58818496 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutStaffInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutStaffInput.schema.js @@ -43,6 +43,7 @@ const makeSchema = () => z.object({ id: z.number().int().optional(), patientId: z.number().int(), userId: z.number().int(), + npiProviderId: z.number().int().optional().nullable(), title: z.string(), date: z.coerce.date(), startTime: z.string(), diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutStaffInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutStaffInput.schema.ts index b5cedcd1..6d901f13 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutStaffInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutStaffInput.schema.ts @@ -9,6 +9,7 @@ const makeSchema = () => z.object({ id: z.number().int().optional(), patientId: z.number().int(), userId: z.number().int(), + npiProviderId: z.number().int().optional().nullable(), title: z.string(), date: z.coerce.date(), startTime: z.string(), diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutUserInput.schema.js b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutUserInput.schema.js index 40adc75f..cfc9b4c4 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutUserInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutUserInput.schema.js @@ -43,6 +43,7 @@ const makeSchema = () => z.object({ id: z.number().int().optional(), patientId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().optional().nullable(), title: z.string(), date: z.coerce.date(), startTime: z.string(), diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutUserInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutUserInput.schema.ts index b81ccf9b..e521b5d3 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutUserInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutUserInput.schema.ts @@ -9,6 +9,7 @@ const makeSchema = () => z.object({ id: z.number().int().optional(), patientId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().optional().nullable(), title: z.string(), date: z.coerce.date(), startTime: z.string(), diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateInput.schema.js b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateInput.schema.js index 4090f243..d7e0fa21 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateInput.schema.js @@ -36,6 +36,7 @@ Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentUncheckedUpdateInputObjectZodSchema = exports.AppointmentUncheckedUpdateInputObjectSchema = void 0; const z = __importStar(require("zod")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); +const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const BoolFieldUpdateOperationsInput_schema_1 = require("./BoolFieldUpdateOperationsInput.schema"); @@ -50,6 +51,7 @@ const makeSchema = () => z.object({ patientId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), staffId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + npiProviderId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInput_schema_1.NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), title: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), date: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), startTime: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateInput.schema.ts index 9caa0067..6db9b2ef 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateInput.schema.ts @@ -1,6 +1,7 @@ import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; import { BoolFieldUpdateOperationsInputObjectSchema as BoolFieldUpdateOperationsInputObjectSchema } from './BoolFieldUpdateOperationsInput.schema'; @@ -16,6 +17,7 @@ const makeSchema = () => z.object({ patientId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), staffId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), + npiProviderId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), title: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), date: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), startTime: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyInput.schema.js b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyInput.schema.js index 1bd744ab..43ec6de5 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyInput.schema.js @@ -36,6 +36,7 @@ Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentUncheckedUpdateManyInputObjectZodSchema = exports.AppointmentUncheckedUpdateManyInputObjectSchema = void 0; const z = __importStar(require("zod")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); +const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const BoolFieldUpdateOperationsInput_schema_1 = require("./BoolFieldUpdateOperationsInput.schema"); @@ -47,6 +48,7 @@ const makeSchema = () => z.object({ patientId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), staffId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + npiProviderId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInput_schema_1.NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), title: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), date: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), startTime: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyInput.schema.ts index 21ec65d3..03f7717a 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyInput.schema.ts @@ -1,6 +1,7 @@ import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; import { BoolFieldUpdateOperationsInputObjectSchema as BoolFieldUpdateOperationsInputObjectSchema } from './BoolFieldUpdateOperationsInput.schema'; @@ -13,6 +14,7 @@ const makeSchema = () => z.object({ patientId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), staffId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), + npiProviderId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), title: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), date: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), startTime: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutNpiProviderInput.schema.js b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutNpiProviderInput.schema.js new file mode 100644 index 00000000..7dbc7b21 --- /dev/null +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutNpiProviderInput.schema.js @@ -0,0 +1,64 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.AppointmentUncheckedUpdateManyWithoutNpiProviderInputObjectZodSchema = exports.AppointmentUncheckedUpdateManyWithoutNpiProviderInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); +const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); +const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); +const BoolFieldUpdateOperationsInput_schema_1 = require("./BoolFieldUpdateOperationsInput.schema"); +const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); +const PatientStatus_schema_1 = require("../enums/PatientStatus.schema"); +const EnumPatientStatusFieldUpdateOperationsInput_schema_1 = require("./EnumPatientStatusFieldUpdateOperationsInput.schema"); +const makeSchema = () => z.object({ + id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + patientId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + staffId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + title: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), + date: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), + startTime: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), + endTime: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), + type: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), + typeLocked: z.union([z.boolean(), z.lazy(() => BoolFieldUpdateOperationsInput_schema_1.BoolFieldUpdateOperationsInputObjectSchema)]).optional(), + notes: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + procedureCodeNotes: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + status: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), + movedByAi: z.union([z.boolean(), z.lazy(() => BoolFieldUpdateOperationsInput_schema_1.BoolFieldUpdateOperationsInputObjectSchema)]).optional(), + createdAt: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), + eligibilityStatus: z.union([PatientStatus_schema_1.PatientStatusSchema, z.lazy(() => EnumPatientStatusFieldUpdateOperationsInput_schema_1.EnumPatientStatusFieldUpdateOperationsInputObjectSchema)]).optional() +}).strict(); +exports.AppointmentUncheckedUpdateManyWithoutNpiProviderInputObjectSchema = makeSchema(); +exports.AppointmentUncheckedUpdateManyWithoutNpiProviderInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutNpiProviderInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutNpiProviderInput.schema.ts new file mode 100644 index 00000000..03f41202 --- /dev/null +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutNpiProviderInput.schema.ts @@ -0,0 +1,30 @@ +import * as z from 'zod'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { BoolFieldUpdateOperationsInputObjectSchema as BoolFieldUpdateOperationsInputObjectSchema } from './BoolFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { PatientStatusSchema } from '../enums/PatientStatus.schema'; +import { EnumPatientStatusFieldUpdateOperationsInputObjectSchema as EnumPatientStatusFieldUpdateOperationsInputObjectSchema } from './EnumPatientStatusFieldUpdateOperationsInput.schema' + +const makeSchema = () => z.object({ + id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), + patientId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), + userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), + staffId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), + title: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), + date: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), + startTime: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), + endTime: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), + type: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), + typeLocked: z.union([z.boolean(), z.lazy(() => BoolFieldUpdateOperationsInputObjectSchema)]).optional(), + notes: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + procedureCodeNotes: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + status: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), + movedByAi: z.union([z.boolean(), z.lazy(() => BoolFieldUpdateOperationsInputObjectSchema)]).optional(), + createdAt: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), + eligibilityStatus: z.union([PatientStatusSchema, z.lazy(() => EnumPatientStatusFieldUpdateOperationsInputObjectSchema)]).optional() +}).strict(); +export const AppointmentUncheckedUpdateManyWithoutNpiProviderInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; +export const AppointmentUncheckedUpdateManyWithoutNpiProviderInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema.js b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema.js new file mode 100644 index 00000000..f17d529b --- /dev/null +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema.js @@ -0,0 +1,61 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectZodSchema = exports.AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const AppointmentCreateWithoutNpiProviderInput_schema_1 = require("./AppointmentCreateWithoutNpiProviderInput.schema"); +const AppointmentUncheckedCreateWithoutNpiProviderInput_schema_1 = require("./AppointmentUncheckedCreateWithoutNpiProviderInput.schema"); +const AppointmentCreateOrConnectWithoutNpiProviderInput_schema_1 = require("./AppointmentCreateOrConnectWithoutNpiProviderInput.schema"); +const AppointmentUpsertWithWhereUniqueWithoutNpiProviderInput_schema_1 = require("./AppointmentUpsertWithWhereUniqueWithoutNpiProviderInput.schema"); +const AppointmentCreateManyNpiProviderInputEnvelope_schema_1 = require("./AppointmentCreateManyNpiProviderInputEnvelope.schema"); +const AppointmentWhereUniqueInput_schema_1 = require("./AppointmentWhereUniqueInput.schema"); +const AppointmentUpdateWithWhereUniqueWithoutNpiProviderInput_schema_1 = require("./AppointmentUpdateWithWhereUniqueWithoutNpiProviderInput.schema"); +const AppointmentUpdateManyWithWhereWithoutNpiProviderInput_schema_1 = require("./AppointmentUpdateManyWithWhereWithoutNpiProviderInput.schema"); +const AppointmentScalarWhereInput_schema_1 = require("./AppointmentScalarWhereInput.schema"); +const makeSchema = () => z.object({ + create: z.union([z.lazy(() => AppointmentCreateWithoutNpiProviderInput_schema_1.AppointmentCreateWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentCreateWithoutNpiProviderInput_schema_1.AppointmentCreateWithoutNpiProviderInputObjectSchema).array(), z.lazy(() => AppointmentUncheckedCreateWithoutNpiProviderInput_schema_1.AppointmentUncheckedCreateWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentUncheckedCreateWithoutNpiProviderInput_schema_1.AppointmentUncheckedCreateWithoutNpiProviderInputObjectSchema).array()]).optional(), + connectOrCreate: z.union([z.lazy(() => AppointmentCreateOrConnectWithoutNpiProviderInput_schema_1.AppointmentCreateOrConnectWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentCreateOrConnectWithoutNpiProviderInput_schema_1.AppointmentCreateOrConnectWithoutNpiProviderInputObjectSchema).array()]).optional(), + upsert: z.union([z.lazy(() => AppointmentUpsertWithWhereUniqueWithoutNpiProviderInput_schema_1.AppointmentUpsertWithWhereUniqueWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentUpsertWithWhereUniqueWithoutNpiProviderInput_schema_1.AppointmentUpsertWithWhereUniqueWithoutNpiProviderInputObjectSchema).array()]).optional(), + createMany: z.lazy(() => AppointmentCreateManyNpiProviderInputEnvelope_schema_1.AppointmentCreateManyNpiProviderInputEnvelopeObjectSchema).optional(), + set: z.union([z.lazy(() => AppointmentWhereUniqueInput_schema_1.AppointmentWhereUniqueInputObjectSchema), z.lazy(() => AppointmentWhereUniqueInput_schema_1.AppointmentWhereUniqueInputObjectSchema).array()]).optional(), + disconnect: z.union([z.lazy(() => AppointmentWhereUniqueInput_schema_1.AppointmentWhereUniqueInputObjectSchema), z.lazy(() => AppointmentWhereUniqueInput_schema_1.AppointmentWhereUniqueInputObjectSchema).array()]).optional(), + delete: z.union([z.lazy(() => AppointmentWhereUniqueInput_schema_1.AppointmentWhereUniqueInputObjectSchema), z.lazy(() => AppointmentWhereUniqueInput_schema_1.AppointmentWhereUniqueInputObjectSchema).array()]).optional(), + connect: z.union([z.lazy(() => AppointmentWhereUniqueInput_schema_1.AppointmentWhereUniqueInputObjectSchema), z.lazy(() => AppointmentWhereUniqueInput_schema_1.AppointmentWhereUniqueInputObjectSchema).array()]).optional(), + update: z.union([z.lazy(() => AppointmentUpdateWithWhereUniqueWithoutNpiProviderInput_schema_1.AppointmentUpdateWithWhereUniqueWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentUpdateWithWhereUniqueWithoutNpiProviderInput_schema_1.AppointmentUpdateWithWhereUniqueWithoutNpiProviderInputObjectSchema).array()]).optional(), + updateMany: z.union([z.lazy(() => AppointmentUpdateManyWithWhereWithoutNpiProviderInput_schema_1.AppointmentUpdateManyWithWhereWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentUpdateManyWithWhereWithoutNpiProviderInput_schema_1.AppointmentUpdateManyWithWhereWithoutNpiProviderInputObjectSchema).array()]).optional(), + deleteMany: z.union([z.lazy(() => AppointmentScalarWhereInput_schema_1.AppointmentScalarWhereInputObjectSchema), z.lazy(() => AppointmentScalarWhereInput_schema_1.AppointmentScalarWhereInputObjectSchema).array()]).optional() +}).strict(); +exports.AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema = makeSchema(); +exports.AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema.ts new file mode 100644 index 00000000..c8cfea56 --- /dev/null +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema.ts @@ -0,0 +1,27 @@ +import * as z from 'zod'; +import type { Prisma } from '../../../generated/prisma'; +import { AppointmentCreateWithoutNpiProviderInputObjectSchema as AppointmentCreateWithoutNpiProviderInputObjectSchema } from './AppointmentCreateWithoutNpiProviderInput.schema'; +import { AppointmentUncheckedCreateWithoutNpiProviderInputObjectSchema as AppointmentUncheckedCreateWithoutNpiProviderInputObjectSchema } from './AppointmentUncheckedCreateWithoutNpiProviderInput.schema'; +import { AppointmentCreateOrConnectWithoutNpiProviderInputObjectSchema as AppointmentCreateOrConnectWithoutNpiProviderInputObjectSchema } from './AppointmentCreateOrConnectWithoutNpiProviderInput.schema'; +import { AppointmentUpsertWithWhereUniqueWithoutNpiProviderInputObjectSchema as AppointmentUpsertWithWhereUniqueWithoutNpiProviderInputObjectSchema } from './AppointmentUpsertWithWhereUniqueWithoutNpiProviderInput.schema'; +import { AppointmentCreateManyNpiProviderInputEnvelopeObjectSchema as AppointmentCreateManyNpiProviderInputEnvelopeObjectSchema } from './AppointmentCreateManyNpiProviderInputEnvelope.schema'; +import { AppointmentWhereUniqueInputObjectSchema as AppointmentWhereUniqueInputObjectSchema } from './AppointmentWhereUniqueInput.schema'; +import { AppointmentUpdateWithWhereUniqueWithoutNpiProviderInputObjectSchema as AppointmentUpdateWithWhereUniqueWithoutNpiProviderInputObjectSchema } from './AppointmentUpdateWithWhereUniqueWithoutNpiProviderInput.schema'; +import { AppointmentUpdateManyWithWhereWithoutNpiProviderInputObjectSchema as AppointmentUpdateManyWithWhereWithoutNpiProviderInputObjectSchema } from './AppointmentUpdateManyWithWhereWithoutNpiProviderInput.schema'; +import { AppointmentScalarWhereInputObjectSchema as AppointmentScalarWhereInputObjectSchema } from './AppointmentScalarWhereInput.schema' + +const makeSchema = () => z.object({ + create: z.union([z.lazy(() => AppointmentCreateWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentCreateWithoutNpiProviderInputObjectSchema).array(), z.lazy(() => AppointmentUncheckedCreateWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentUncheckedCreateWithoutNpiProviderInputObjectSchema).array()]).optional(), + connectOrCreate: z.union([z.lazy(() => AppointmentCreateOrConnectWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentCreateOrConnectWithoutNpiProviderInputObjectSchema).array()]).optional(), + upsert: z.union([z.lazy(() => AppointmentUpsertWithWhereUniqueWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentUpsertWithWhereUniqueWithoutNpiProviderInputObjectSchema).array()]).optional(), + createMany: z.lazy(() => AppointmentCreateManyNpiProviderInputEnvelopeObjectSchema).optional(), + set: z.union([z.lazy(() => AppointmentWhereUniqueInputObjectSchema), z.lazy(() => AppointmentWhereUniqueInputObjectSchema).array()]).optional(), + disconnect: z.union([z.lazy(() => AppointmentWhereUniqueInputObjectSchema), z.lazy(() => AppointmentWhereUniqueInputObjectSchema).array()]).optional(), + delete: z.union([z.lazy(() => AppointmentWhereUniqueInputObjectSchema), z.lazy(() => AppointmentWhereUniqueInputObjectSchema).array()]).optional(), + connect: z.union([z.lazy(() => AppointmentWhereUniqueInputObjectSchema), z.lazy(() => AppointmentWhereUniqueInputObjectSchema).array()]).optional(), + update: z.union([z.lazy(() => AppointmentUpdateWithWhereUniqueWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentUpdateWithWhereUniqueWithoutNpiProviderInputObjectSchema).array()]).optional(), + updateMany: z.union([z.lazy(() => AppointmentUpdateManyWithWhereWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentUpdateManyWithWhereWithoutNpiProviderInputObjectSchema).array()]).optional(), + deleteMany: z.union([z.lazy(() => AppointmentScalarWhereInputObjectSchema), z.lazy(() => AppointmentScalarWhereInputObjectSchema).array()]).optional() +}).strict(); +export const AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; +export const AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutPatientInput.schema.js b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutPatientInput.schema.js index b256a69f..7a1a5da2 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutPatientInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutPatientInput.schema.js @@ -36,6 +36,7 @@ Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentUncheckedUpdateManyWithoutPatientInputObjectZodSchema = exports.AppointmentUncheckedUpdateManyWithoutPatientInputObjectSchema = void 0; const z = __importStar(require("zod")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); +const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const BoolFieldUpdateOperationsInput_schema_1 = require("./BoolFieldUpdateOperationsInput.schema"); @@ -46,6 +47,7 @@ const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), staffId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + npiProviderId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInput_schema_1.NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), title: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), date: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), startTime: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutPatientInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutPatientInput.schema.ts index f1ec8d09..d8396165 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutPatientInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutPatientInput.schema.ts @@ -1,6 +1,7 @@ import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; import { BoolFieldUpdateOperationsInputObjectSchema as BoolFieldUpdateOperationsInputObjectSchema } from './BoolFieldUpdateOperationsInput.schema'; @@ -12,6 +13,7 @@ const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), staffId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), + npiProviderId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), title: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), date: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), startTime: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutStaffInput.schema.js b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutStaffInput.schema.js index a6137a85..dc051de7 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutStaffInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutStaffInput.schema.js @@ -36,6 +36,7 @@ Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentUncheckedUpdateManyWithoutStaffInputObjectZodSchema = exports.AppointmentUncheckedUpdateManyWithoutStaffInputObjectSchema = void 0; const z = __importStar(require("zod")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); +const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const BoolFieldUpdateOperationsInput_schema_1 = require("./BoolFieldUpdateOperationsInput.schema"); @@ -46,6 +47,7 @@ const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), patientId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + npiProviderId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInput_schema_1.NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), title: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), date: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), startTime: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutStaffInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutStaffInput.schema.ts index 283be3f4..68601146 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutStaffInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutStaffInput.schema.ts @@ -1,6 +1,7 @@ import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; import { BoolFieldUpdateOperationsInputObjectSchema as BoolFieldUpdateOperationsInputObjectSchema } from './BoolFieldUpdateOperationsInput.schema'; @@ -12,6 +13,7 @@ const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), patientId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), + npiProviderId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), title: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), date: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), startTime: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutUserInput.schema.js b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutUserInput.schema.js index b2b275c3..82a804ad 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutUserInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutUserInput.schema.js @@ -36,6 +36,7 @@ Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentUncheckedUpdateManyWithoutUserInputObjectZodSchema = exports.AppointmentUncheckedUpdateManyWithoutUserInputObjectSchema = void 0; const z = __importStar(require("zod")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); +const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const BoolFieldUpdateOperationsInput_schema_1 = require("./BoolFieldUpdateOperationsInput.schema"); @@ -46,6 +47,7 @@ const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), patientId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), staffId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + npiProviderId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInput_schema_1.NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), title: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), date: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), startTime: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutUserInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutUserInput.schema.ts index ed246606..0e5006fa 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutUserInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateManyWithoutUserInput.schema.ts @@ -1,6 +1,7 @@ import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; import { BoolFieldUpdateOperationsInputObjectSchema as BoolFieldUpdateOperationsInputObjectSchema } from './BoolFieldUpdateOperationsInput.schema'; @@ -12,6 +13,7 @@ const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), patientId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), staffId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), + npiProviderId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), title: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), date: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), startTime: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutClaimsInput.schema.js b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutClaimsInput.schema.js index d8dd1f6a..6fa3e64f 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutClaimsInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutClaimsInput.schema.js @@ -36,6 +36,7 @@ Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentUncheckedUpdateWithoutClaimsInputObjectZodSchema = exports.AppointmentUncheckedUpdateWithoutClaimsInputObjectSchema = void 0; const z = __importStar(require("zod")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); +const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const BoolFieldUpdateOperationsInput_schema_1 = require("./BoolFieldUpdateOperationsInput.schema"); @@ -49,6 +50,7 @@ const makeSchema = () => z.object({ patientId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), staffId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + npiProviderId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInput_schema_1.NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), title: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), date: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), startTime: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutClaimsInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutClaimsInput.schema.ts index 5c91f51a..19522039 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutClaimsInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutClaimsInput.schema.ts @@ -1,6 +1,7 @@ import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; import { BoolFieldUpdateOperationsInputObjectSchema as BoolFieldUpdateOperationsInputObjectSchema } from './BoolFieldUpdateOperationsInput.schema'; @@ -15,6 +16,7 @@ const makeSchema = () => z.object({ patientId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), staffId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), + npiProviderId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), title: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), date: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), startTime: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutFilesInput.schema.js b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutFilesInput.schema.js index 8ba45e24..d3ea3251 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutFilesInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutFilesInput.schema.js @@ -36,6 +36,7 @@ Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentUncheckedUpdateWithoutFilesInputObjectZodSchema = exports.AppointmentUncheckedUpdateWithoutFilesInputObjectSchema = void 0; const z = __importStar(require("zod")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); +const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const BoolFieldUpdateOperationsInput_schema_1 = require("./BoolFieldUpdateOperationsInput.schema"); @@ -49,6 +50,7 @@ const makeSchema = () => z.object({ patientId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), staffId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + npiProviderId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInput_schema_1.NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), title: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), date: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), startTime: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutFilesInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutFilesInput.schema.ts index 7696a3ac..3ee58b51 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutFilesInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutFilesInput.schema.ts @@ -1,6 +1,7 @@ import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; import { BoolFieldUpdateOperationsInputObjectSchema as BoolFieldUpdateOperationsInputObjectSchema } from './BoolFieldUpdateOperationsInput.schema'; @@ -15,6 +16,7 @@ const makeSchema = () => z.object({ patientId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), staffId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), + npiProviderId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), title: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), date: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), startTime: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutNpiProviderInput.schema.js b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutNpiProviderInput.schema.js new file mode 100644 index 00000000..4cfc6e29 --- /dev/null +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutNpiProviderInput.schema.js @@ -0,0 +1,70 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.AppointmentUncheckedUpdateWithoutNpiProviderInputObjectZodSchema = exports.AppointmentUncheckedUpdateWithoutNpiProviderInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); +const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); +const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); +const BoolFieldUpdateOperationsInput_schema_1 = require("./BoolFieldUpdateOperationsInput.schema"); +const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); +const PatientStatus_schema_1 = require("../enums/PatientStatus.schema"); +const EnumPatientStatusFieldUpdateOperationsInput_schema_1 = require("./EnumPatientStatusFieldUpdateOperationsInput.schema"); +const AppointmentProcedureUncheckedUpdateManyWithoutAppointmentNestedInput_schema_1 = require("./AppointmentProcedureUncheckedUpdateManyWithoutAppointmentNestedInput.schema"); +const ClaimUncheckedUpdateManyWithoutAppointmentNestedInput_schema_1 = require("./ClaimUncheckedUpdateManyWithoutAppointmentNestedInput.schema"); +const AppointmentFileUncheckedUpdateManyWithoutAppointmentNestedInput_schema_1 = require("./AppointmentFileUncheckedUpdateManyWithoutAppointmentNestedInput.schema"); +const makeSchema = () => z.object({ + id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + patientId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + staffId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + title: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), + date: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), + startTime: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), + endTime: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), + type: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), + typeLocked: z.union([z.boolean(), z.lazy(() => BoolFieldUpdateOperationsInput_schema_1.BoolFieldUpdateOperationsInputObjectSchema)]).optional(), + notes: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + procedureCodeNotes: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + status: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), + movedByAi: z.union([z.boolean(), z.lazy(() => BoolFieldUpdateOperationsInput_schema_1.BoolFieldUpdateOperationsInputObjectSchema)]).optional(), + createdAt: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), + eligibilityStatus: z.union([PatientStatus_schema_1.PatientStatusSchema, z.lazy(() => EnumPatientStatusFieldUpdateOperationsInput_schema_1.EnumPatientStatusFieldUpdateOperationsInputObjectSchema)]).optional(), + procedures: z.lazy(() => AppointmentProcedureUncheckedUpdateManyWithoutAppointmentNestedInput_schema_1.AppointmentProcedureUncheckedUpdateManyWithoutAppointmentNestedInputObjectSchema).optional(), + claims: z.lazy(() => ClaimUncheckedUpdateManyWithoutAppointmentNestedInput_schema_1.ClaimUncheckedUpdateManyWithoutAppointmentNestedInputObjectSchema).optional(), + files: z.lazy(() => AppointmentFileUncheckedUpdateManyWithoutAppointmentNestedInput_schema_1.AppointmentFileUncheckedUpdateManyWithoutAppointmentNestedInputObjectSchema).optional() +}).strict(); +exports.AppointmentUncheckedUpdateWithoutNpiProviderInputObjectSchema = makeSchema(); +exports.AppointmentUncheckedUpdateWithoutNpiProviderInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutNpiProviderInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutNpiProviderInput.schema.ts new file mode 100644 index 00000000..4fed4db3 --- /dev/null +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutNpiProviderInput.schema.ts @@ -0,0 +1,36 @@ +import * as z from 'zod'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { BoolFieldUpdateOperationsInputObjectSchema as BoolFieldUpdateOperationsInputObjectSchema } from './BoolFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { PatientStatusSchema } from '../enums/PatientStatus.schema'; +import { EnumPatientStatusFieldUpdateOperationsInputObjectSchema as EnumPatientStatusFieldUpdateOperationsInputObjectSchema } from './EnumPatientStatusFieldUpdateOperationsInput.schema'; +import { AppointmentProcedureUncheckedUpdateManyWithoutAppointmentNestedInputObjectSchema as AppointmentProcedureUncheckedUpdateManyWithoutAppointmentNestedInputObjectSchema } from './AppointmentProcedureUncheckedUpdateManyWithoutAppointmentNestedInput.schema'; +import { ClaimUncheckedUpdateManyWithoutAppointmentNestedInputObjectSchema as ClaimUncheckedUpdateManyWithoutAppointmentNestedInputObjectSchema } from './ClaimUncheckedUpdateManyWithoutAppointmentNestedInput.schema'; +import { AppointmentFileUncheckedUpdateManyWithoutAppointmentNestedInputObjectSchema as AppointmentFileUncheckedUpdateManyWithoutAppointmentNestedInputObjectSchema } from './AppointmentFileUncheckedUpdateManyWithoutAppointmentNestedInput.schema' + +const makeSchema = () => z.object({ + id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), + patientId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), + userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), + staffId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), + title: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), + date: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), + startTime: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), + endTime: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), + type: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), + typeLocked: z.union([z.boolean(), z.lazy(() => BoolFieldUpdateOperationsInputObjectSchema)]).optional(), + notes: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + procedureCodeNotes: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + status: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), + movedByAi: z.union([z.boolean(), z.lazy(() => BoolFieldUpdateOperationsInputObjectSchema)]).optional(), + createdAt: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), + eligibilityStatus: z.union([PatientStatusSchema, z.lazy(() => EnumPatientStatusFieldUpdateOperationsInputObjectSchema)]).optional(), + procedures: z.lazy(() => AppointmentProcedureUncheckedUpdateManyWithoutAppointmentNestedInputObjectSchema).optional(), + claims: z.lazy(() => ClaimUncheckedUpdateManyWithoutAppointmentNestedInputObjectSchema).optional(), + files: z.lazy(() => AppointmentFileUncheckedUpdateManyWithoutAppointmentNestedInputObjectSchema).optional() +}).strict(); +export const AppointmentUncheckedUpdateWithoutNpiProviderInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; +export const AppointmentUncheckedUpdateWithoutNpiProviderInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutPatientInput.schema.js b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutPatientInput.schema.js index 844c37bd..e9302a39 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutPatientInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutPatientInput.schema.js @@ -36,6 +36,7 @@ Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentUncheckedUpdateWithoutPatientInputObjectZodSchema = exports.AppointmentUncheckedUpdateWithoutPatientInputObjectSchema = void 0; const z = __importStar(require("zod")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); +const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const BoolFieldUpdateOperationsInput_schema_1 = require("./BoolFieldUpdateOperationsInput.schema"); @@ -49,6 +50,7 @@ const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), staffId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + npiProviderId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInput_schema_1.NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), title: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), date: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), startTime: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutPatientInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutPatientInput.schema.ts index e5e82d7e..558d65ee 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutPatientInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutPatientInput.schema.ts @@ -1,6 +1,7 @@ import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; import { BoolFieldUpdateOperationsInputObjectSchema as BoolFieldUpdateOperationsInputObjectSchema } from './BoolFieldUpdateOperationsInput.schema'; @@ -15,6 +16,7 @@ const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), staffId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), + npiProviderId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), title: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), date: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), startTime: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutProceduresInput.schema.js b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutProceduresInput.schema.js index bd3ca766..821e5549 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutProceduresInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutProceduresInput.schema.js @@ -36,6 +36,7 @@ Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentUncheckedUpdateWithoutProceduresInputObjectZodSchema = exports.AppointmentUncheckedUpdateWithoutProceduresInputObjectSchema = void 0; const z = __importStar(require("zod")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); +const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const BoolFieldUpdateOperationsInput_schema_1 = require("./BoolFieldUpdateOperationsInput.schema"); @@ -49,6 +50,7 @@ const makeSchema = () => z.object({ patientId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), staffId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + npiProviderId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInput_schema_1.NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), title: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), date: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), startTime: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutProceduresInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutProceduresInput.schema.ts index 6e64a7f9..b8534f48 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutProceduresInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutProceduresInput.schema.ts @@ -1,6 +1,7 @@ import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; import { BoolFieldUpdateOperationsInputObjectSchema as BoolFieldUpdateOperationsInputObjectSchema } from './BoolFieldUpdateOperationsInput.schema'; @@ -15,6 +16,7 @@ const makeSchema = () => z.object({ patientId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), staffId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), + npiProviderId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), title: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), date: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), startTime: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutStaffInput.schema.js b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutStaffInput.schema.js index 60a32638..3d7db9cf 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutStaffInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutStaffInput.schema.js @@ -36,6 +36,7 @@ Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentUncheckedUpdateWithoutStaffInputObjectZodSchema = exports.AppointmentUncheckedUpdateWithoutStaffInputObjectSchema = void 0; const z = __importStar(require("zod")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); +const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const BoolFieldUpdateOperationsInput_schema_1 = require("./BoolFieldUpdateOperationsInput.schema"); @@ -49,6 +50,7 @@ const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), patientId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + npiProviderId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInput_schema_1.NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), title: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), date: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), startTime: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutStaffInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutStaffInput.schema.ts index 73e2e8ff..59b72b40 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutStaffInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutStaffInput.schema.ts @@ -1,6 +1,7 @@ import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; import { BoolFieldUpdateOperationsInputObjectSchema as BoolFieldUpdateOperationsInputObjectSchema } from './BoolFieldUpdateOperationsInput.schema'; @@ -15,6 +16,7 @@ const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), patientId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), + npiProviderId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), title: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), date: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), startTime: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutUserInput.schema.js b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutUserInput.schema.js index ee65777a..76ea2fac 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutUserInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutUserInput.schema.js @@ -36,6 +36,7 @@ Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentUncheckedUpdateWithoutUserInputObjectZodSchema = exports.AppointmentUncheckedUpdateWithoutUserInputObjectSchema = void 0; const z = __importStar(require("zod")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); +const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const BoolFieldUpdateOperationsInput_schema_1 = require("./BoolFieldUpdateOperationsInput.schema"); @@ -49,6 +50,7 @@ const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), patientId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), staffId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + npiProviderId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInput_schema_1.NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), title: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), date: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), startTime: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutUserInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutUserInput.schema.ts index 2020b2d3..3da47548 100644 --- a/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutUserInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentUncheckedUpdateWithoutUserInput.schema.ts @@ -1,6 +1,7 @@ import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; import { BoolFieldUpdateOperationsInputObjectSchema as BoolFieldUpdateOperationsInputObjectSchema } from './BoolFieldUpdateOperationsInput.schema'; @@ -15,6 +16,7 @@ const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), patientId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), staffId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), + npiProviderId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), title: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), date: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), startTime: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), diff --git a/packages/db/shared/schemas/objects/AppointmentUpdateInput.schema.js b/packages/db/shared/schemas/objects/AppointmentUpdateInput.schema.js index 535095d9..1eeb62fe 100644 --- a/packages/db/shared/schemas/objects/AppointmentUpdateInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentUpdateInput.schema.js @@ -44,6 +44,7 @@ const EnumPatientStatusFieldUpdateOperationsInput_schema_1 = require("./EnumPati const PatientUpdateOneRequiredWithoutAppointmentsNestedInput_schema_1 = require("./PatientUpdateOneRequiredWithoutAppointmentsNestedInput.schema"); const UserUpdateOneRequiredWithoutAppointmentsNestedInput_schema_1 = require("./UserUpdateOneRequiredWithoutAppointmentsNestedInput.schema"); const StaffUpdateOneWithoutAppointmentsNestedInput_schema_1 = require("./StaffUpdateOneWithoutAppointmentsNestedInput.schema"); +const NpiProviderUpdateOneWithoutAppointmentsNestedInput_schema_1 = require("./NpiProviderUpdateOneWithoutAppointmentsNestedInput.schema"); const AppointmentProcedureUpdateManyWithoutAppointmentNestedInput_schema_1 = require("./AppointmentProcedureUpdateManyWithoutAppointmentNestedInput.schema"); const ClaimUpdateManyWithoutAppointmentNestedInput_schema_1 = require("./ClaimUpdateManyWithoutAppointmentNestedInput.schema"); const AppointmentFileUpdateManyWithoutAppointmentNestedInput_schema_1 = require("./AppointmentFileUpdateManyWithoutAppointmentNestedInput.schema"); @@ -63,6 +64,7 @@ const makeSchema = () => z.object({ patient: z.lazy(() => PatientUpdateOneRequiredWithoutAppointmentsNestedInput_schema_1.PatientUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema).optional(), user: z.lazy(() => UserUpdateOneRequiredWithoutAppointmentsNestedInput_schema_1.UserUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema).optional(), staff: z.lazy(() => StaffUpdateOneWithoutAppointmentsNestedInput_schema_1.StaffUpdateOneWithoutAppointmentsNestedInputObjectSchema).optional(), + npiProvider: z.lazy(() => NpiProviderUpdateOneWithoutAppointmentsNestedInput_schema_1.NpiProviderUpdateOneWithoutAppointmentsNestedInputObjectSchema).optional(), procedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutAppointmentNestedInput_schema_1.AppointmentProcedureUpdateManyWithoutAppointmentNestedInputObjectSchema).optional(), claims: z.lazy(() => ClaimUpdateManyWithoutAppointmentNestedInput_schema_1.ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema).optional(), files: z.lazy(() => AppointmentFileUpdateManyWithoutAppointmentNestedInput_schema_1.AppointmentFileUpdateManyWithoutAppointmentNestedInputObjectSchema).optional() diff --git a/packages/db/shared/schemas/objects/AppointmentUpdateInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentUpdateInput.schema.ts index f7195e42..51c89b2b 100644 --- a/packages/db/shared/schemas/objects/AppointmentUpdateInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentUpdateInput.schema.ts @@ -9,6 +9,7 @@ import { EnumPatientStatusFieldUpdateOperationsInputObjectSchema as EnumPatientS import { PatientUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema as PatientUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema } from './PatientUpdateOneRequiredWithoutAppointmentsNestedInput.schema'; import { UserUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema as UserUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema } from './UserUpdateOneRequiredWithoutAppointmentsNestedInput.schema'; import { StaffUpdateOneWithoutAppointmentsNestedInputObjectSchema as StaffUpdateOneWithoutAppointmentsNestedInputObjectSchema } from './StaffUpdateOneWithoutAppointmentsNestedInput.schema'; +import { NpiProviderUpdateOneWithoutAppointmentsNestedInputObjectSchema as NpiProviderUpdateOneWithoutAppointmentsNestedInputObjectSchema } from './NpiProviderUpdateOneWithoutAppointmentsNestedInput.schema'; import { AppointmentProcedureUpdateManyWithoutAppointmentNestedInputObjectSchema as AppointmentProcedureUpdateManyWithoutAppointmentNestedInputObjectSchema } from './AppointmentProcedureUpdateManyWithoutAppointmentNestedInput.schema'; import { ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema as ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema } from './ClaimUpdateManyWithoutAppointmentNestedInput.schema'; import { AppointmentFileUpdateManyWithoutAppointmentNestedInputObjectSchema as AppointmentFileUpdateManyWithoutAppointmentNestedInputObjectSchema } from './AppointmentFileUpdateManyWithoutAppointmentNestedInput.schema' @@ -29,6 +30,7 @@ const makeSchema = () => z.object({ patient: z.lazy(() => PatientUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema).optional(), user: z.lazy(() => UserUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema).optional(), staff: z.lazy(() => StaffUpdateOneWithoutAppointmentsNestedInputObjectSchema).optional(), + npiProvider: z.lazy(() => NpiProviderUpdateOneWithoutAppointmentsNestedInputObjectSchema).optional(), procedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutAppointmentNestedInputObjectSchema).optional(), claims: z.lazy(() => ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema).optional(), files: z.lazy(() => AppointmentFileUpdateManyWithoutAppointmentNestedInputObjectSchema).optional() diff --git a/packages/db/shared/schemas/objects/AppointmentUpdateManyWithWhereWithoutNpiProviderInput.schema.js b/packages/db/shared/schemas/objects/AppointmentUpdateManyWithWhereWithoutNpiProviderInput.schema.js new file mode 100644 index 00000000..eea14b70 --- /dev/null +++ b/packages/db/shared/schemas/objects/AppointmentUpdateManyWithWhereWithoutNpiProviderInput.schema.js @@ -0,0 +1,46 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.AppointmentUpdateManyWithWhereWithoutNpiProviderInputObjectZodSchema = exports.AppointmentUpdateManyWithWhereWithoutNpiProviderInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const AppointmentScalarWhereInput_schema_1 = require("./AppointmentScalarWhereInput.schema"); +const AppointmentUpdateManyMutationInput_schema_1 = require("./AppointmentUpdateManyMutationInput.schema"); +const AppointmentUncheckedUpdateManyWithoutNpiProviderInput_schema_1 = require("./AppointmentUncheckedUpdateManyWithoutNpiProviderInput.schema"); +const makeSchema = () => z.object({ + where: z.lazy(() => AppointmentScalarWhereInput_schema_1.AppointmentScalarWhereInputObjectSchema), + data: z.union([z.lazy(() => AppointmentUpdateManyMutationInput_schema_1.AppointmentUpdateManyMutationInputObjectSchema), z.lazy(() => AppointmentUncheckedUpdateManyWithoutNpiProviderInput_schema_1.AppointmentUncheckedUpdateManyWithoutNpiProviderInputObjectSchema)]) +}).strict(); +exports.AppointmentUpdateManyWithWhereWithoutNpiProviderInputObjectSchema = makeSchema(); +exports.AppointmentUpdateManyWithWhereWithoutNpiProviderInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentUpdateManyWithWhereWithoutNpiProviderInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentUpdateManyWithWhereWithoutNpiProviderInput.schema.ts new file mode 100644 index 00000000..83319ff6 --- /dev/null +++ b/packages/db/shared/schemas/objects/AppointmentUpdateManyWithWhereWithoutNpiProviderInput.schema.ts @@ -0,0 +1,12 @@ +import * as z from 'zod'; +import type { Prisma } from '../../../generated/prisma'; +import { AppointmentScalarWhereInputObjectSchema as AppointmentScalarWhereInputObjectSchema } from './AppointmentScalarWhereInput.schema'; +import { AppointmentUpdateManyMutationInputObjectSchema as AppointmentUpdateManyMutationInputObjectSchema } from './AppointmentUpdateManyMutationInput.schema'; +import { AppointmentUncheckedUpdateManyWithoutNpiProviderInputObjectSchema as AppointmentUncheckedUpdateManyWithoutNpiProviderInputObjectSchema } from './AppointmentUncheckedUpdateManyWithoutNpiProviderInput.schema' + +const makeSchema = () => z.object({ + where: z.lazy(() => AppointmentScalarWhereInputObjectSchema), + data: z.union([z.lazy(() => AppointmentUpdateManyMutationInputObjectSchema), z.lazy(() => AppointmentUncheckedUpdateManyWithoutNpiProviderInputObjectSchema)]) +}).strict(); +export const AppointmentUpdateManyWithWhereWithoutNpiProviderInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; +export const AppointmentUpdateManyWithWhereWithoutNpiProviderInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentUpdateManyWithoutNpiProviderNestedInput.schema.js b/packages/db/shared/schemas/objects/AppointmentUpdateManyWithoutNpiProviderNestedInput.schema.js new file mode 100644 index 00000000..c2f07f22 --- /dev/null +++ b/packages/db/shared/schemas/objects/AppointmentUpdateManyWithoutNpiProviderNestedInput.schema.js @@ -0,0 +1,61 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.AppointmentUpdateManyWithoutNpiProviderNestedInputObjectZodSchema = exports.AppointmentUpdateManyWithoutNpiProviderNestedInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const AppointmentCreateWithoutNpiProviderInput_schema_1 = require("./AppointmentCreateWithoutNpiProviderInput.schema"); +const AppointmentUncheckedCreateWithoutNpiProviderInput_schema_1 = require("./AppointmentUncheckedCreateWithoutNpiProviderInput.schema"); +const AppointmentCreateOrConnectWithoutNpiProviderInput_schema_1 = require("./AppointmentCreateOrConnectWithoutNpiProviderInput.schema"); +const AppointmentUpsertWithWhereUniqueWithoutNpiProviderInput_schema_1 = require("./AppointmentUpsertWithWhereUniqueWithoutNpiProviderInput.schema"); +const AppointmentCreateManyNpiProviderInputEnvelope_schema_1 = require("./AppointmentCreateManyNpiProviderInputEnvelope.schema"); +const AppointmentWhereUniqueInput_schema_1 = require("./AppointmentWhereUniqueInput.schema"); +const AppointmentUpdateWithWhereUniqueWithoutNpiProviderInput_schema_1 = require("./AppointmentUpdateWithWhereUniqueWithoutNpiProviderInput.schema"); +const AppointmentUpdateManyWithWhereWithoutNpiProviderInput_schema_1 = require("./AppointmentUpdateManyWithWhereWithoutNpiProviderInput.schema"); +const AppointmentScalarWhereInput_schema_1 = require("./AppointmentScalarWhereInput.schema"); +const makeSchema = () => z.object({ + create: z.union([z.lazy(() => AppointmentCreateWithoutNpiProviderInput_schema_1.AppointmentCreateWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentCreateWithoutNpiProviderInput_schema_1.AppointmentCreateWithoutNpiProviderInputObjectSchema).array(), z.lazy(() => AppointmentUncheckedCreateWithoutNpiProviderInput_schema_1.AppointmentUncheckedCreateWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentUncheckedCreateWithoutNpiProviderInput_schema_1.AppointmentUncheckedCreateWithoutNpiProviderInputObjectSchema).array()]).optional(), + connectOrCreate: z.union([z.lazy(() => AppointmentCreateOrConnectWithoutNpiProviderInput_schema_1.AppointmentCreateOrConnectWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentCreateOrConnectWithoutNpiProviderInput_schema_1.AppointmentCreateOrConnectWithoutNpiProviderInputObjectSchema).array()]).optional(), + upsert: z.union([z.lazy(() => AppointmentUpsertWithWhereUniqueWithoutNpiProviderInput_schema_1.AppointmentUpsertWithWhereUniqueWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentUpsertWithWhereUniqueWithoutNpiProviderInput_schema_1.AppointmentUpsertWithWhereUniqueWithoutNpiProviderInputObjectSchema).array()]).optional(), + createMany: z.lazy(() => AppointmentCreateManyNpiProviderInputEnvelope_schema_1.AppointmentCreateManyNpiProviderInputEnvelopeObjectSchema).optional(), + set: z.union([z.lazy(() => AppointmentWhereUniqueInput_schema_1.AppointmentWhereUniqueInputObjectSchema), z.lazy(() => AppointmentWhereUniqueInput_schema_1.AppointmentWhereUniqueInputObjectSchema).array()]).optional(), + disconnect: z.union([z.lazy(() => AppointmentWhereUniqueInput_schema_1.AppointmentWhereUniqueInputObjectSchema), z.lazy(() => AppointmentWhereUniqueInput_schema_1.AppointmentWhereUniqueInputObjectSchema).array()]).optional(), + delete: z.union([z.lazy(() => AppointmentWhereUniqueInput_schema_1.AppointmentWhereUniqueInputObjectSchema), z.lazy(() => AppointmentWhereUniqueInput_schema_1.AppointmentWhereUniqueInputObjectSchema).array()]).optional(), + connect: z.union([z.lazy(() => AppointmentWhereUniqueInput_schema_1.AppointmentWhereUniqueInputObjectSchema), z.lazy(() => AppointmentWhereUniqueInput_schema_1.AppointmentWhereUniqueInputObjectSchema).array()]).optional(), + update: z.union([z.lazy(() => AppointmentUpdateWithWhereUniqueWithoutNpiProviderInput_schema_1.AppointmentUpdateWithWhereUniqueWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentUpdateWithWhereUniqueWithoutNpiProviderInput_schema_1.AppointmentUpdateWithWhereUniqueWithoutNpiProviderInputObjectSchema).array()]).optional(), + updateMany: z.union([z.lazy(() => AppointmentUpdateManyWithWhereWithoutNpiProviderInput_schema_1.AppointmentUpdateManyWithWhereWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentUpdateManyWithWhereWithoutNpiProviderInput_schema_1.AppointmentUpdateManyWithWhereWithoutNpiProviderInputObjectSchema).array()]).optional(), + deleteMany: z.union([z.lazy(() => AppointmentScalarWhereInput_schema_1.AppointmentScalarWhereInputObjectSchema), z.lazy(() => AppointmentScalarWhereInput_schema_1.AppointmentScalarWhereInputObjectSchema).array()]).optional() +}).strict(); +exports.AppointmentUpdateManyWithoutNpiProviderNestedInputObjectSchema = makeSchema(); +exports.AppointmentUpdateManyWithoutNpiProviderNestedInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentUpdateManyWithoutNpiProviderNestedInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentUpdateManyWithoutNpiProviderNestedInput.schema.ts new file mode 100644 index 00000000..2a390460 --- /dev/null +++ b/packages/db/shared/schemas/objects/AppointmentUpdateManyWithoutNpiProviderNestedInput.schema.ts @@ -0,0 +1,27 @@ +import * as z from 'zod'; +import type { Prisma } from '../../../generated/prisma'; +import { AppointmentCreateWithoutNpiProviderInputObjectSchema as AppointmentCreateWithoutNpiProviderInputObjectSchema } from './AppointmentCreateWithoutNpiProviderInput.schema'; +import { AppointmentUncheckedCreateWithoutNpiProviderInputObjectSchema as AppointmentUncheckedCreateWithoutNpiProviderInputObjectSchema } from './AppointmentUncheckedCreateWithoutNpiProviderInput.schema'; +import { AppointmentCreateOrConnectWithoutNpiProviderInputObjectSchema as AppointmentCreateOrConnectWithoutNpiProviderInputObjectSchema } from './AppointmentCreateOrConnectWithoutNpiProviderInput.schema'; +import { AppointmentUpsertWithWhereUniqueWithoutNpiProviderInputObjectSchema as AppointmentUpsertWithWhereUniqueWithoutNpiProviderInputObjectSchema } from './AppointmentUpsertWithWhereUniqueWithoutNpiProviderInput.schema'; +import { AppointmentCreateManyNpiProviderInputEnvelopeObjectSchema as AppointmentCreateManyNpiProviderInputEnvelopeObjectSchema } from './AppointmentCreateManyNpiProviderInputEnvelope.schema'; +import { AppointmentWhereUniqueInputObjectSchema as AppointmentWhereUniqueInputObjectSchema } from './AppointmentWhereUniqueInput.schema'; +import { AppointmentUpdateWithWhereUniqueWithoutNpiProviderInputObjectSchema as AppointmentUpdateWithWhereUniqueWithoutNpiProviderInputObjectSchema } from './AppointmentUpdateWithWhereUniqueWithoutNpiProviderInput.schema'; +import { AppointmentUpdateManyWithWhereWithoutNpiProviderInputObjectSchema as AppointmentUpdateManyWithWhereWithoutNpiProviderInputObjectSchema } from './AppointmentUpdateManyWithWhereWithoutNpiProviderInput.schema'; +import { AppointmentScalarWhereInputObjectSchema as AppointmentScalarWhereInputObjectSchema } from './AppointmentScalarWhereInput.schema' + +const makeSchema = () => z.object({ + create: z.union([z.lazy(() => AppointmentCreateWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentCreateWithoutNpiProviderInputObjectSchema).array(), z.lazy(() => AppointmentUncheckedCreateWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentUncheckedCreateWithoutNpiProviderInputObjectSchema).array()]).optional(), + connectOrCreate: z.union([z.lazy(() => AppointmentCreateOrConnectWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentCreateOrConnectWithoutNpiProviderInputObjectSchema).array()]).optional(), + upsert: z.union([z.lazy(() => AppointmentUpsertWithWhereUniqueWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentUpsertWithWhereUniqueWithoutNpiProviderInputObjectSchema).array()]).optional(), + createMany: z.lazy(() => AppointmentCreateManyNpiProviderInputEnvelopeObjectSchema).optional(), + set: z.union([z.lazy(() => AppointmentWhereUniqueInputObjectSchema), z.lazy(() => AppointmentWhereUniqueInputObjectSchema).array()]).optional(), + disconnect: z.union([z.lazy(() => AppointmentWhereUniqueInputObjectSchema), z.lazy(() => AppointmentWhereUniqueInputObjectSchema).array()]).optional(), + delete: z.union([z.lazy(() => AppointmentWhereUniqueInputObjectSchema), z.lazy(() => AppointmentWhereUniqueInputObjectSchema).array()]).optional(), + connect: z.union([z.lazy(() => AppointmentWhereUniqueInputObjectSchema), z.lazy(() => AppointmentWhereUniqueInputObjectSchema).array()]).optional(), + update: z.union([z.lazy(() => AppointmentUpdateWithWhereUniqueWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentUpdateWithWhereUniqueWithoutNpiProviderInputObjectSchema).array()]).optional(), + updateMany: z.union([z.lazy(() => AppointmentUpdateManyWithWhereWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentUpdateManyWithWhereWithoutNpiProviderInputObjectSchema).array()]).optional(), + deleteMany: z.union([z.lazy(() => AppointmentScalarWhereInputObjectSchema), z.lazy(() => AppointmentScalarWhereInputObjectSchema).array()]).optional() +}).strict(); +export const AppointmentUpdateManyWithoutNpiProviderNestedInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; +export const AppointmentUpdateManyWithoutNpiProviderNestedInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentUpdateWithWhereUniqueWithoutNpiProviderInput.schema.js b/packages/db/shared/schemas/objects/AppointmentUpdateWithWhereUniqueWithoutNpiProviderInput.schema.js new file mode 100644 index 00000000..161ce919 --- /dev/null +++ b/packages/db/shared/schemas/objects/AppointmentUpdateWithWhereUniqueWithoutNpiProviderInput.schema.js @@ -0,0 +1,46 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.AppointmentUpdateWithWhereUniqueWithoutNpiProviderInputObjectZodSchema = exports.AppointmentUpdateWithWhereUniqueWithoutNpiProviderInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const AppointmentWhereUniqueInput_schema_1 = require("./AppointmentWhereUniqueInput.schema"); +const AppointmentUpdateWithoutNpiProviderInput_schema_1 = require("./AppointmentUpdateWithoutNpiProviderInput.schema"); +const AppointmentUncheckedUpdateWithoutNpiProviderInput_schema_1 = require("./AppointmentUncheckedUpdateWithoutNpiProviderInput.schema"); +const makeSchema = () => z.object({ + where: z.lazy(() => AppointmentWhereUniqueInput_schema_1.AppointmentWhereUniqueInputObjectSchema), + data: z.union([z.lazy(() => AppointmentUpdateWithoutNpiProviderInput_schema_1.AppointmentUpdateWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentUncheckedUpdateWithoutNpiProviderInput_schema_1.AppointmentUncheckedUpdateWithoutNpiProviderInputObjectSchema)]) +}).strict(); +exports.AppointmentUpdateWithWhereUniqueWithoutNpiProviderInputObjectSchema = makeSchema(); +exports.AppointmentUpdateWithWhereUniqueWithoutNpiProviderInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentUpdateWithWhereUniqueWithoutNpiProviderInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentUpdateWithWhereUniqueWithoutNpiProviderInput.schema.ts new file mode 100644 index 00000000..c7deee6f --- /dev/null +++ b/packages/db/shared/schemas/objects/AppointmentUpdateWithWhereUniqueWithoutNpiProviderInput.schema.ts @@ -0,0 +1,12 @@ +import * as z from 'zod'; +import type { Prisma } from '../../../generated/prisma'; +import { AppointmentWhereUniqueInputObjectSchema as AppointmentWhereUniqueInputObjectSchema } from './AppointmentWhereUniqueInput.schema'; +import { AppointmentUpdateWithoutNpiProviderInputObjectSchema as AppointmentUpdateWithoutNpiProviderInputObjectSchema } from './AppointmentUpdateWithoutNpiProviderInput.schema'; +import { AppointmentUncheckedUpdateWithoutNpiProviderInputObjectSchema as AppointmentUncheckedUpdateWithoutNpiProviderInputObjectSchema } from './AppointmentUncheckedUpdateWithoutNpiProviderInput.schema' + +const makeSchema = () => z.object({ + where: z.lazy(() => AppointmentWhereUniqueInputObjectSchema), + data: z.union([z.lazy(() => AppointmentUpdateWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentUncheckedUpdateWithoutNpiProviderInputObjectSchema)]) +}).strict(); +export const AppointmentUpdateWithWhereUniqueWithoutNpiProviderInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; +export const AppointmentUpdateWithWhereUniqueWithoutNpiProviderInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentUpdateWithoutClaimsInput.schema.js b/packages/db/shared/schemas/objects/AppointmentUpdateWithoutClaimsInput.schema.js index e8cfffa6..43fb64c4 100644 --- a/packages/db/shared/schemas/objects/AppointmentUpdateWithoutClaimsInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentUpdateWithoutClaimsInput.schema.js @@ -44,6 +44,7 @@ const EnumPatientStatusFieldUpdateOperationsInput_schema_1 = require("./EnumPati const PatientUpdateOneRequiredWithoutAppointmentsNestedInput_schema_1 = require("./PatientUpdateOneRequiredWithoutAppointmentsNestedInput.schema"); const UserUpdateOneRequiredWithoutAppointmentsNestedInput_schema_1 = require("./UserUpdateOneRequiredWithoutAppointmentsNestedInput.schema"); const StaffUpdateOneWithoutAppointmentsNestedInput_schema_1 = require("./StaffUpdateOneWithoutAppointmentsNestedInput.schema"); +const NpiProviderUpdateOneWithoutAppointmentsNestedInput_schema_1 = require("./NpiProviderUpdateOneWithoutAppointmentsNestedInput.schema"); const AppointmentProcedureUpdateManyWithoutAppointmentNestedInput_schema_1 = require("./AppointmentProcedureUpdateManyWithoutAppointmentNestedInput.schema"); const AppointmentFileUpdateManyWithoutAppointmentNestedInput_schema_1 = require("./AppointmentFileUpdateManyWithoutAppointmentNestedInput.schema"); const makeSchema = () => z.object({ @@ -62,6 +63,7 @@ const makeSchema = () => z.object({ patient: z.lazy(() => PatientUpdateOneRequiredWithoutAppointmentsNestedInput_schema_1.PatientUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema).optional(), user: z.lazy(() => UserUpdateOneRequiredWithoutAppointmentsNestedInput_schema_1.UserUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema).optional(), staff: z.lazy(() => StaffUpdateOneWithoutAppointmentsNestedInput_schema_1.StaffUpdateOneWithoutAppointmentsNestedInputObjectSchema).optional(), + npiProvider: z.lazy(() => NpiProviderUpdateOneWithoutAppointmentsNestedInput_schema_1.NpiProviderUpdateOneWithoutAppointmentsNestedInputObjectSchema).optional(), procedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutAppointmentNestedInput_schema_1.AppointmentProcedureUpdateManyWithoutAppointmentNestedInputObjectSchema).optional(), files: z.lazy(() => AppointmentFileUpdateManyWithoutAppointmentNestedInput_schema_1.AppointmentFileUpdateManyWithoutAppointmentNestedInputObjectSchema).optional() }).strict(); diff --git a/packages/db/shared/schemas/objects/AppointmentUpdateWithoutClaimsInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentUpdateWithoutClaimsInput.schema.ts index e258ca86..a0164b97 100644 --- a/packages/db/shared/schemas/objects/AppointmentUpdateWithoutClaimsInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentUpdateWithoutClaimsInput.schema.ts @@ -9,6 +9,7 @@ import { EnumPatientStatusFieldUpdateOperationsInputObjectSchema as EnumPatientS import { PatientUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema as PatientUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema } from './PatientUpdateOneRequiredWithoutAppointmentsNestedInput.schema'; import { UserUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema as UserUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema } from './UserUpdateOneRequiredWithoutAppointmentsNestedInput.schema'; import { StaffUpdateOneWithoutAppointmentsNestedInputObjectSchema as StaffUpdateOneWithoutAppointmentsNestedInputObjectSchema } from './StaffUpdateOneWithoutAppointmentsNestedInput.schema'; +import { NpiProviderUpdateOneWithoutAppointmentsNestedInputObjectSchema as NpiProviderUpdateOneWithoutAppointmentsNestedInputObjectSchema } from './NpiProviderUpdateOneWithoutAppointmentsNestedInput.schema'; import { AppointmentProcedureUpdateManyWithoutAppointmentNestedInputObjectSchema as AppointmentProcedureUpdateManyWithoutAppointmentNestedInputObjectSchema } from './AppointmentProcedureUpdateManyWithoutAppointmentNestedInput.schema'; import { AppointmentFileUpdateManyWithoutAppointmentNestedInputObjectSchema as AppointmentFileUpdateManyWithoutAppointmentNestedInputObjectSchema } from './AppointmentFileUpdateManyWithoutAppointmentNestedInput.schema' @@ -28,6 +29,7 @@ const makeSchema = () => z.object({ patient: z.lazy(() => PatientUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema).optional(), user: z.lazy(() => UserUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema).optional(), staff: z.lazy(() => StaffUpdateOneWithoutAppointmentsNestedInputObjectSchema).optional(), + npiProvider: z.lazy(() => NpiProviderUpdateOneWithoutAppointmentsNestedInputObjectSchema).optional(), procedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutAppointmentNestedInputObjectSchema).optional(), files: z.lazy(() => AppointmentFileUpdateManyWithoutAppointmentNestedInputObjectSchema).optional() }).strict(); diff --git a/packages/db/shared/schemas/objects/AppointmentUpdateWithoutFilesInput.schema.js b/packages/db/shared/schemas/objects/AppointmentUpdateWithoutFilesInput.schema.js index 0771e205..403f2890 100644 --- a/packages/db/shared/schemas/objects/AppointmentUpdateWithoutFilesInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentUpdateWithoutFilesInput.schema.js @@ -44,6 +44,7 @@ const EnumPatientStatusFieldUpdateOperationsInput_schema_1 = require("./EnumPati const PatientUpdateOneRequiredWithoutAppointmentsNestedInput_schema_1 = require("./PatientUpdateOneRequiredWithoutAppointmentsNestedInput.schema"); const UserUpdateOneRequiredWithoutAppointmentsNestedInput_schema_1 = require("./UserUpdateOneRequiredWithoutAppointmentsNestedInput.schema"); const StaffUpdateOneWithoutAppointmentsNestedInput_schema_1 = require("./StaffUpdateOneWithoutAppointmentsNestedInput.schema"); +const NpiProviderUpdateOneWithoutAppointmentsNestedInput_schema_1 = require("./NpiProviderUpdateOneWithoutAppointmentsNestedInput.schema"); const AppointmentProcedureUpdateManyWithoutAppointmentNestedInput_schema_1 = require("./AppointmentProcedureUpdateManyWithoutAppointmentNestedInput.schema"); const ClaimUpdateManyWithoutAppointmentNestedInput_schema_1 = require("./ClaimUpdateManyWithoutAppointmentNestedInput.schema"); const makeSchema = () => z.object({ @@ -62,6 +63,7 @@ const makeSchema = () => z.object({ patient: z.lazy(() => PatientUpdateOneRequiredWithoutAppointmentsNestedInput_schema_1.PatientUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema).optional(), user: z.lazy(() => UserUpdateOneRequiredWithoutAppointmentsNestedInput_schema_1.UserUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema).optional(), staff: z.lazy(() => StaffUpdateOneWithoutAppointmentsNestedInput_schema_1.StaffUpdateOneWithoutAppointmentsNestedInputObjectSchema).optional(), + npiProvider: z.lazy(() => NpiProviderUpdateOneWithoutAppointmentsNestedInput_schema_1.NpiProviderUpdateOneWithoutAppointmentsNestedInputObjectSchema).optional(), procedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutAppointmentNestedInput_schema_1.AppointmentProcedureUpdateManyWithoutAppointmentNestedInputObjectSchema).optional(), claims: z.lazy(() => ClaimUpdateManyWithoutAppointmentNestedInput_schema_1.ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema).optional() }).strict(); diff --git a/packages/db/shared/schemas/objects/AppointmentUpdateWithoutFilesInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentUpdateWithoutFilesInput.schema.ts index 7efca2e7..06385c4e 100644 --- a/packages/db/shared/schemas/objects/AppointmentUpdateWithoutFilesInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentUpdateWithoutFilesInput.schema.ts @@ -9,6 +9,7 @@ import { EnumPatientStatusFieldUpdateOperationsInputObjectSchema as EnumPatientS import { PatientUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema as PatientUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema } from './PatientUpdateOneRequiredWithoutAppointmentsNestedInput.schema'; import { UserUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema as UserUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema } from './UserUpdateOneRequiredWithoutAppointmentsNestedInput.schema'; import { StaffUpdateOneWithoutAppointmentsNestedInputObjectSchema as StaffUpdateOneWithoutAppointmentsNestedInputObjectSchema } from './StaffUpdateOneWithoutAppointmentsNestedInput.schema'; +import { NpiProviderUpdateOneWithoutAppointmentsNestedInputObjectSchema as NpiProviderUpdateOneWithoutAppointmentsNestedInputObjectSchema } from './NpiProviderUpdateOneWithoutAppointmentsNestedInput.schema'; import { AppointmentProcedureUpdateManyWithoutAppointmentNestedInputObjectSchema as AppointmentProcedureUpdateManyWithoutAppointmentNestedInputObjectSchema } from './AppointmentProcedureUpdateManyWithoutAppointmentNestedInput.schema'; import { ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema as ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema } from './ClaimUpdateManyWithoutAppointmentNestedInput.schema' @@ -28,6 +29,7 @@ const makeSchema = () => z.object({ patient: z.lazy(() => PatientUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema).optional(), user: z.lazy(() => UserUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema).optional(), staff: z.lazy(() => StaffUpdateOneWithoutAppointmentsNestedInputObjectSchema).optional(), + npiProvider: z.lazy(() => NpiProviderUpdateOneWithoutAppointmentsNestedInputObjectSchema).optional(), procedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutAppointmentNestedInputObjectSchema).optional(), claims: z.lazy(() => ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema).optional() }).strict(); diff --git a/packages/db/shared/schemas/objects/AppointmentUpdateWithoutNpiProviderInput.schema.js b/packages/db/shared/schemas/objects/AppointmentUpdateWithoutNpiProviderInput.schema.js new file mode 100644 index 00000000..8bcdf4f3 --- /dev/null +++ b/packages/db/shared/schemas/objects/AppointmentUpdateWithoutNpiProviderInput.schema.js @@ -0,0 +1,71 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.AppointmentUpdateWithoutNpiProviderInputObjectZodSchema = exports.AppointmentUpdateWithoutNpiProviderInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); +const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); +const BoolFieldUpdateOperationsInput_schema_1 = require("./BoolFieldUpdateOperationsInput.schema"); +const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); +const PatientStatus_schema_1 = require("../enums/PatientStatus.schema"); +const EnumPatientStatusFieldUpdateOperationsInput_schema_1 = require("./EnumPatientStatusFieldUpdateOperationsInput.schema"); +const PatientUpdateOneRequiredWithoutAppointmentsNestedInput_schema_1 = require("./PatientUpdateOneRequiredWithoutAppointmentsNestedInput.schema"); +const UserUpdateOneRequiredWithoutAppointmentsNestedInput_schema_1 = require("./UserUpdateOneRequiredWithoutAppointmentsNestedInput.schema"); +const StaffUpdateOneWithoutAppointmentsNestedInput_schema_1 = require("./StaffUpdateOneWithoutAppointmentsNestedInput.schema"); +const AppointmentProcedureUpdateManyWithoutAppointmentNestedInput_schema_1 = require("./AppointmentProcedureUpdateManyWithoutAppointmentNestedInput.schema"); +const ClaimUpdateManyWithoutAppointmentNestedInput_schema_1 = require("./ClaimUpdateManyWithoutAppointmentNestedInput.schema"); +const AppointmentFileUpdateManyWithoutAppointmentNestedInput_schema_1 = require("./AppointmentFileUpdateManyWithoutAppointmentNestedInput.schema"); +const makeSchema = () => z.object({ + title: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), + date: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), + startTime: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), + endTime: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), + type: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), + typeLocked: z.union([z.boolean(), z.lazy(() => BoolFieldUpdateOperationsInput_schema_1.BoolFieldUpdateOperationsInputObjectSchema)]).optional(), + notes: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + procedureCodeNotes: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + status: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), + movedByAi: z.union([z.boolean(), z.lazy(() => BoolFieldUpdateOperationsInput_schema_1.BoolFieldUpdateOperationsInputObjectSchema)]).optional(), + createdAt: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), + eligibilityStatus: z.union([PatientStatus_schema_1.PatientStatusSchema, z.lazy(() => EnumPatientStatusFieldUpdateOperationsInput_schema_1.EnumPatientStatusFieldUpdateOperationsInputObjectSchema)]).optional(), + patient: z.lazy(() => PatientUpdateOneRequiredWithoutAppointmentsNestedInput_schema_1.PatientUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema).optional(), + user: z.lazy(() => UserUpdateOneRequiredWithoutAppointmentsNestedInput_schema_1.UserUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema).optional(), + staff: z.lazy(() => StaffUpdateOneWithoutAppointmentsNestedInput_schema_1.StaffUpdateOneWithoutAppointmentsNestedInputObjectSchema).optional(), + procedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutAppointmentNestedInput_schema_1.AppointmentProcedureUpdateManyWithoutAppointmentNestedInputObjectSchema).optional(), + claims: z.lazy(() => ClaimUpdateManyWithoutAppointmentNestedInput_schema_1.ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema).optional(), + files: z.lazy(() => AppointmentFileUpdateManyWithoutAppointmentNestedInput_schema_1.AppointmentFileUpdateManyWithoutAppointmentNestedInputObjectSchema).optional() +}).strict(); +exports.AppointmentUpdateWithoutNpiProviderInputObjectSchema = makeSchema(); +exports.AppointmentUpdateWithoutNpiProviderInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentUpdateWithoutNpiProviderInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentUpdateWithoutNpiProviderInput.schema.ts new file mode 100644 index 00000000..38ef4d04 --- /dev/null +++ b/packages/db/shared/schemas/objects/AppointmentUpdateWithoutNpiProviderInput.schema.ts @@ -0,0 +1,37 @@ +import * as z from 'zod'; +import type { Prisma } from '../../../generated/prisma'; +import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { BoolFieldUpdateOperationsInputObjectSchema as BoolFieldUpdateOperationsInputObjectSchema } from './BoolFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { PatientStatusSchema } from '../enums/PatientStatus.schema'; +import { EnumPatientStatusFieldUpdateOperationsInputObjectSchema as EnumPatientStatusFieldUpdateOperationsInputObjectSchema } from './EnumPatientStatusFieldUpdateOperationsInput.schema'; +import { PatientUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema as PatientUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema } from './PatientUpdateOneRequiredWithoutAppointmentsNestedInput.schema'; +import { UserUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema as UserUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema } from './UserUpdateOneRequiredWithoutAppointmentsNestedInput.schema'; +import { StaffUpdateOneWithoutAppointmentsNestedInputObjectSchema as StaffUpdateOneWithoutAppointmentsNestedInputObjectSchema } from './StaffUpdateOneWithoutAppointmentsNestedInput.schema'; +import { AppointmentProcedureUpdateManyWithoutAppointmentNestedInputObjectSchema as AppointmentProcedureUpdateManyWithoutAppointmentNestedInputObjectSchema } from './AppointmentProcedureUpdateManyWithoutAppointmentNestedInput.schema'; +import { ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema as ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema } from './ClaimUpdateManyWithoutAppointmentNestedInput.schema'; +import { AppointmentFileUpdateManyWithoutAppointmentNestedInputObjectSchema as AppointmentFileUpdateManyWithoutAppointmentNestedInputObjectSchema } from './AppointmentFileUpdateManyWithoutAppointmentNestedInput.schema' + +const makeSchema = () => z.object({ + title: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), + date: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), + startTime: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), + endTime: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), + type: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), + typeLocked: z.union([z.boolean(), z.lazy(() => BoolFieldUpdateOperationsInputObjectSchema)]).optional(), + notes: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + procedureCodeNotes: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + status: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), + movedByAi: z.union([z.boolean(), z.lazy(() => BoolFieldUpdateOperationsInputObjectSchema)]).optional(), + createdAt: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), + eligibilityStatus: z.union([PatientStatusSchema, z.lazy(() => EnumPatientStatusFieldUpdateOperationsInputObjectSchema)]).optional(), + patient: z.lazy(() => PatientUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema).optional(), + user: z.lazy(() => UserUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema).optional(), + staff: z.lazy(() => StaffUpdateOneWithoutAppointmentsNestedInputObjectSchema).optional(), + procedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutAppointmentNestedInputObjectSchema).optional(), + claims: z.lazy(() => ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema).optional(), + files: z.lazy(() => AppointmentFileUpdateManyWithoutAppointmentNestedInputObjectSchema).optional() +}).strict(); +export const AppointmentUpdateWithoutNpiProviderInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; +export const AppointmentUpdateWithoutNpiProviderInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentUpdateWithoutPatientInput.schema.js b/packages/db/shared/schemas/objects/AppointmentUpdateWithoutPatientInput.schema.js index 5f993b3e..e9b8be0a 100644 --- a/packages/db/shared/schemas/objects/AppointmentUpdateWithoutPatientInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentUpdateWithoutPatientInput.schema.js @@ -43,6 +43,7 @@ const PatientStatus_schema_1 = require("../enums/PatientStatus.schema"); const EnumPatientStatusFieldUpdateOperationsInput_schema_1 = require("./EnumPatientStatusFieldUpdateOperationsInput.schema"); const UserUpdateOneRequiredWithoutAppointmentsNestedInput_schema_1 = require("./UserUpdateOneRequiredWithoutAppointmentsNestedInput.schema"); const StaffUpdateOneWithoutAppointmentsNestedInput_schema_1 = require("./StaffUpdateOneWithoutAppointmentsNestedInput.schema"); +const NpiProviderUpdateOneWithoutAppointmentsNestedInput_schema_1 = require("./NpiProviderUpdateOneWithoutAppointmentsNestedInput.schema"); const AppointmentProcedureUpdateManyWithoutAppointmentNestedInput_schema_1 = require("./AppointmentProcedureUpdateManyWithoutAppointmentNestedInput.schema"); const ClaimUpdateManyWithoutAppointmentNestedInput_schema_1 = require("./ClaimUpdateManyWithoutAppointmentNestedInput.schema"); const AppointmentFileUpdateManyWithoutAppointmentNestedInput_schema_1 = require("./AppointmentFileUpdateManyWithoutAppointmentNestedInput.schema"); @@ -61,6 +62,7 @@ const makeSchema = () => z.object({ eligibilityStatus: z.union([PatientStatus_schema_1.PatientStatusSchema, z.lazy(() => EnumPatientStatusFieldUpdateOperationsInput_schema_1.EnumPatientStatusFieldUpdateOperationsInputObjectSchema)]).optional(), user: z.lazy(() => UserUpdateOneRequiredWithoutAppointmentsNestedInput_schema_1.UserUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema).optional(), staff: z.lazy(() => StaffUpdateOneWithoutAppointmentsNestedInput_schema_1.StaffUpdateOneWithoutAppointmentsNestedInputObjectSchema).optional(), + npiProvider: z.lazy(() => NpiProviderUpdateOneWithoutAppointmentsNestedInput_schema_1.NpiProviderUpdateOneWithoutAppointmentsNestedInputObjectSchema).optional(), procedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutAppointmentNestedInput_schema_1.AppointmentProcedureUpdateManyWithoutAppointmentNestedInputObjectSchema).optional(), claims: z.lazy(() => ClaimUpdateManyWithoutAppointmentNestedInput_schema_1.ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema).optional(), files: z.lazy(() => AppointmentFileUpdateManyWithoutAppointmentNestedInput_schema_1.AppointmentFileUpdateManyWithoutAppointmentNestedInputObjectSchema).optional() diff --git a/packages/db/shared/schemas/objects/AppointmentUpdateWithoutPatientInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentUpdateWithoutPatientInput.schema.ts index cb5a1bc3..822d7884 100644 --- a/packages/db/shared/schemas/objects/AppointmentUpdateWithoutPatientInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentUpdateWithoutPatientInput.schema.ts @@ -8,6 +8,7 @@ import { PatientStatusSchema } from '../enums/PatientStatus.schema'; import { EnumPatientStatusFieldUpdateOperationsInputObjectSchema as EnumPatientStatusFieldUpdateOperationsInputObjectSchema } from './EnumPatientStatusFieldUpdateOperationsInput.schema'; import { UserUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema as UserUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema } from './UserUpdateOneRequiredWithoutAppointmentsNestedInput.schema'; import { StaffUpdateOneWithoutAppointmentsNestedInputObjectSchema as StaffUpdateOneWithoutAppointmentsNestedInputObjectSchema } from './StaffUpdateOneWithoutAppointmentsNestedInput.schema'; +import { NpiProviderUpdateOneWithoutAppointmentsNestedInputObjectSchema as NpiProviderUpdateOneWithoutAppointmentsNestedInputObjectSchema } from './NpiProviderUpdateOneWithoutAppointmentsNestedInput.schema'; import { AppointmentProcedureUpdateManyWithoutAppointmentNestedInputObjectSchema as AppointmentProcedureUpdateManyWithoutAppointmentNestedInputObjectSchema } from './AppointmentProcedureUpdateManyWithoutAppointmentNestedInput.schema'; import { ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema as ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema } from './ClaimUpdateManyWithoutAppointmentNestedInput.schema'; import { AppointmentFileUpdateManyWithoutAppointmentNestedInputObjectSchema as AppointmentFileUpdateManyWithoutAppointmentNestedInputObjectSchema } from './AppointmentFileUpdateManyWithoutAppointmentNestedInput.schema' @@ -27,6 +28,7 @@ const makeSchema = () => z.object({ eligibilityStatus: z.union([PatientStatusSchema, z.lazy(() => EnumPatientStatusFieldUpdateOperationsInputObjectSchema)]).optional(), user: z.lazy(() => UserUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema).optional(), staff: z.lazy(() => StaffUpdateOneWithoutAppointmentsNestedInputObjectSchema).optional(), + npiProvider: z.lazy(() => NpiProviderUpdateOneWithoutAppointmentsNestedInputObjectSchema).optional(), procedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutAppointmentNestedInputObjectSchema).optional(), claims: z.lazy(() => ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema).optional(), files: z.lazy(() => AppointmentFileUpdateManyWithoutAppointmentNestedInputObjectSchema).optional() diff --git a/packages/db/shared/schemas/objects/AppointmentUpdateWithoutProceduresInput.schema.js b/packages/db/shared/schemas/objects/AppointmentUpdateWithoutProceduresInput.schema.js index 6924190d..18ad3534 100644 --- a/packages/db/shared/schemas/objects/AppointmentUpdateWithoutProceduresInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentUpdateWithoutProceduresInput.schema.js @@ -44,6 +44,7 @@ const EnumPatientStatusFieldUpdateOperationsInput_schema_1 = require("./EnumPati const PatientUpdateOneRequiredWithoutAppointmentsNestedInput_schema_1 = require("./PatientUpdateOneRequiredWithoutAppointmentsNestedInput.schema"); const UserUpdateOneRequiredWithoutAppointmentsNestedInput_schema_1 = require("./UserUpdateOneRequiredWithoutAppointmentsNestedInput.schema"); const StaffUpdateOneWithoutAppointmentsNestedInput_schema_1 = require("./StaffUpdateOneWithoutAppointmentsNestedInput.schema"); +const NpiProviderUpdateOneWithoutAppointmentsNestedInput_schema_1 = require("./NpiProviderUpdateOneWithoutAppointmentsNestedInput.schema"); const ClaimUpdateManyWithoutAppointmentNestedInput_schema_1 = require("./ClaimUpdateManyWithoutAppointmentNestedInput.schema"); const AppointmentFileUpdateManyWithoutAppointmentNestedInput_schema_1 = require("./AppointmentFileUpdateManyWithoutAppointmentNestedInput.schema"); const makeSchema = () => z.object({ @@ -62,6 +63,7 @@ const makeSchema = () => z.object({ patient: z.lazy(() => PatientUpdateOneRequiredWithoutAppointmentsNestedInput_schema_1.PatientUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema).optional(), user: z.lazy(() => UserUpdateOneRequiredWithoutAppointmentsNestedInput_schema_1.UserUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema).optional(), staff: z.lazy(() => StaffUpdateOneWithoutAppointmentsNestedInput_schema_1.StaffUpdateOneWithoutAppointmentsNestedInputObjectSchema).optional(), + npiProvider: z.lazy(() => NpiProviderUpdateOneWithoutAppointmentsNestedInput_schema_1.NpiProviderUpdateOneWithoutAppointmentsNestedInputObjectSchema).optional(), claims: z.lazy(() => ClaimUpdateManyWithoutAppointmentNestedInput_schema_1.ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema).optional(), files: z.lazy(() => AppointmentFileUpdateManyWithoutAppointmentNestedInput_schema_1.AppointmentFileUpdateManyWithoutAppointmentNestedInputObjectSchema).optional() }).strict(); diff --git a/packages/db/shared/schemas/objects/AppointmentUpdateWithoutProceduresInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentUpdateWithoutProceduresInput.schema.ts index 46c5b128..bb634dce 100644 --- a/packages/db/shared/schemas/objects/AppointmentUpdateWithoutProceduresInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentUpdateWithoutProceduresInput.schema.ts @@ -9,6 +9,7 @@ import { EnumPatientStatusFieldUpdateOperationsInputObjectSchema as EnumPatientS import { PatientUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema as PatientUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema } from './PatientUpdateOneRequiredWithoutAppointmentsNestedInput.schema'; import { UserUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema as UserUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema } from './UserUpdateOneRequiredWithoutAppointmentsNestedInput.schema'; import { StaffUpdateOneWithoutAppointmentsNestedInputObjectSchema as StaffUpdateOneWithoutAppointmentsNestedInputObjectSchema } from './StaffUpdateOneWithoutAppointmentsNestedInput.schema'; +import { NpiProviderUpdateOneWithoutAppointmentsNestedInputObjectSchema as NpiProviderUpdateOneWithoutAppointmentsNestedInputObjectSchema } from './NpiProviderUpdateOneWithoutAppointmentsNestedInput.schema'; import { ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema as ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema } from './ClaimUpdateManyWithoutAppointmentNestedInput.schema'; import { AppointmentFileUpdateManyWithoutAppointmentNestedInputObjectSchema as AppointmentFileUpdateManyWithoutAppointmentNestedInputObjectSchema } from './AppointmentFileUpdateManyWithoutAppointmentNestedInput.schema' @@ -28,6 +29,7 @@ const makeSchema = () => z.object({ patient: z.lazy(() => PatientUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema).optional(), user: z.lazy(() => UserUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema).optional(), staff: z.lazy(() => StaffUpdateOneWithoutAppointmentsNestedInputObjectSchema).optional(), + npiProvider: z.lazy(() => NpiProviderUpdateOneWithoutAppointmentsNestedInputObjectSchema).optional(), claims: z.lazy(() => ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema).optional(), files: z.lazy(() => AppointmentFileUpdateManyWithoutAppointmentNestedInputObjectSchema).optional() }).strict(); diff --git a/packages/db/shared/schemas/objects/AppointmentUpdateWithoutStaffInput.schema.js b/packages/db/shared/schemas/objects/AppointmentUpdateWithoutStaffInput.schema.js index aab96973..5c197482 100644 --- a/packages/db/shared/schemas/objects/AppointmentUpdateWithoutStaffInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentUpdateWithoutStaffInput.schema.js @@ -43,6 +43,7 @@ const PatientStatus_schema_1 = require("../enums/PatientStatus.schema"); const EnumPatientStatusFieldUpdateOperationsInput_schema_1 = require("./EnumPatientStatusFieldUpdateOperationsInput.schema"); const PatientUpdateOneRequiredWithoutAppointmentsNestedInput_schema_1 = require("./PatientUpdateOneRequiredWithoutAppointmentsNestedInput.schema"); const UserUpdateOneRequiredWithoutAppointmentsNestedInput_schema_1 = require("./UserUpdateOneRequiredWithoutAppointmentsNestedInput.schema"); +const NpiProviderUpdateOneWithoutAppointmentsNestedInput_schema_1 = require("./NpiProviderUpdateOneWithoutAppointmentsNestedInput.schema"); const AppointmentProcedureUpdateManyWithoutAppointmentNestedInput_schema_1 = require("./AppointmentProcedureUpdateManyWithoutAppointmentNestedInput.schema"); const ClaimUpdateManyWithoutAppointmentNestedInput_schema_1 = require("./ClaimUpdateManyWithoutAppointmentNestedInput.schema"); const AppointmentFileUpdateManyWithoutAppointmentNestedInput_schema_1 = require("./AppointmentFileUpdateManyWithoutAppointmentNestedInput.schema"); @@ -61,6 +62,7 @@ const makeSchema = () => z.object({ eligibilityStatus: z.union([PatientStatus_schema_1.PatientStatusSchema, z.lazy(() => EnumPatientStatusFieldUpdateOperationsInput_schema_1.EnumPatientStatusFieldUpdateOperationsInputObjectSchema)]).optional(), patient: z.lazy(() => PatientUpdateOneRequiredWithoutAppointmentsNestedInput_schema_1.PatientUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema).optional(), user: z.lazy(() => UserUpdateOneRequiredWithoutAppointmentsNestedInput_schema_1.UserUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema).optional(), + npiProvider: z.lazy(() => NpiProviderUpdateOneWithoutAppointmentsNestedInput_schema_1.NpiProviderUpdateOneWithoutAppointmentsNestedInputObjectSchema).optional(), procedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutAppointmentNestedInput_schema_1.AppointmentProcedureUpdateManyWithoutAppointmentNestedInputObjectSchema).optional(), claims: z.lazy(() => ClaimUpdateManyWithoutAppointmentNestedInput_schema_1.ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema).optional(), files: z.lazy(() => AppointmentFileUpdateManyWithoutAppointmentNestedInput_schema_1.AppointmentFileUpdateManyWithoutAppointmentNestedInputObjectSchema).optional() diff --git a/packages/db/shared/schemas/objects/AppointmentUpdateWithoutStaffInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentUpdateWithoutStaffInput.schema.ts index a815d5d1..837f83fb 100644 --- a/packages/db/shared/schemas/objects/AppointmentUpdateWithoutStaffInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentUpdateWithoutStaffInput.schema.ts @@ -8,6 +8,7 @@ import { PatientStatusSchema } from '../enums/PatientStatus.schema'; import { EnumPatientStatusFieldUpdateOperationsInputObjectSchema as EnumPatientStatusFieldUpdateOperationsInputObjectSchema } from './EnumPatientStatusFieldUpdateOperationsInput.schema'; import { PatientUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema as PatientUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema } from './PatientUpdateOneRequiredWithoutAppointmentsNestedInput.schema'; import { UserUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema as UserUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema } from './UserUpdateOneRequiredWithoutAppointmentsNestedInput.schema'; +import { NpiProviderUpdateOneWithoutAppointmentsNestedInputObjectSchema as NpiProviderUpdateOneWithoutAppointmentsNestedInputObjectSchema } from './NpiProviderUpdateOneWithoutAppointmentsNestedInput.schema'; import { AppointmentProcedureUpdateManyWithoutAppointmentNestedInputObjectSchema as AppointmentProcedureUpdateManyWithoutAppointmentNestedInputObjectSchema } from './AppointmentProcedureUpdateManyWithoutAppointmentNestedInput.schema'; import { ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema as ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema } from './ClaimUpdateManyWithoutAppointmentNestedInput.schema'; import { AppointmentFileUpdateManyWithoutAppointmentNestedInputObjectSchema as AppointmentFileUpdateManyWithoutAppointmentNestedInputObjectSchema } from './AppointmentFileUpdateManyWithoutAppointmentNestedInput.schema' @@ -27,6 +28,7 @@ const makeSchema = () => z.object({ eligibilityStatus: z.union([PatientStatusSchema, z.lazy(() => EnumPatientStatusFieldUpdateOperationsInputObjectSchema)]).optional(), patient: z.lazy(() => PatientUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema).optional(), user: z.lazy(() => UserUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema).optional(), + npiProvider: z.lazy(() => NpiProviderUpdateOneWithoutAppointmentsNestedInputObjectSchema).optional(), procedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutAppointmentNestedInputObjectSchema).optional(), claims: z.lazy(() => ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema).optional(), files: z.lazy(() => AppointmentFileUpdateManyWithoutAppointmentNestedInputObjectSchema).optional() diff --git a/packages/db/shared/schemas/objects/AppointmentUpdateWithoutUserInput.schema.js b/packages/db/shared/schemas/objects/AppointmentUpdateWithoutUserInput.schema.js index 28940da1..c32895f3 100644 --- a/packages/db/shared/schemas/objects/AppointmentUpdateWithoutUserInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentUpdateWithoutUserInput.schema.js @@ -43,6 +43,7 @@ const PatientStatus_schema_1 = require("../enums/PatientStatus.schema"); const EnumPatientStatusFieldUpdateOperationsInput_schema_1 = require("./EnumPatientStatusFieldUpdateOperationsInput.schema"); const PatientUpdateOneRequiredWithoutAppointmentsNestedInput_schema_1 = require("./PatientUpdateOneRequiredWithoutAppointmentsNestedInput.schema"); const StaffUpdateOneWithoutAppointmentsNestedInput_schema_1 = require("./StaffUpdateOneWithoutAppointmentsNestedInput.schema"); +const NpiProviderUpdateOneWithoutAppointmentsNestedInput_schema_1 = require("./NpiProviderUpdateOneWithoutAppointmentsNestedInput.schema"); const AppointmentProcedureUpdateManyWithoutAppointmentNestedInput_schema_1 = require("./AppointmentProcedureUpdateManyWithoutAppointmentNestedInput.schema"); const ClaimUpdateManyWithoutAppointmentNestedInput_schema_1 = require("./ClaimUpdateManyWithoutAppointmentNestedInput.schema"); const AppointmentFileUpdateManyWithoutAppointmentNestedInput_schema_1 = require("./AppointmentFileUpdateManyWithoutAppointmentNestedInput.schema"); @@ -61,6 +62,7 @@ const makeSchema = () => z.object({ eligibilityStatus: z.union([PatientStatus_schema_1.PatientStatusSchema, z.lazy(() => EnumPatientStatusFieldUpdateOperationsInput_schema_1.EnumPatientStatusFieldUpdateOperationsInputObjectSchema)]).optional(), patient: z.lazy(() => PatientUpdateOneRequiredWithoutAppointmentsNestedInput_schema_1.PatientUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema).optional(), staff: z.lazy(() => StaffUpdateOneWithoutAppointmentsNestedInput_schema_1.StaffUpdateOneWithoutAppointmentsNestedInputObjectSchema).optional(), + npiProvider: z.lazy(() => NpiProviderUpdateOneWithoutAppointmentsNestedInput_schema_1.NpiProviderUpdateOneWithoutAppointmentsNestedInputObjectSchema).optional(), procedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutAppointmentNestedInput_schema_1.AppointmentProcedureUpdateManyWithoutAppointmentNestedInputObjectSchema).optional(), claims: z.lazy(() => ClaimUpdateManyWithoutAppointmentNestedInput_schema_1.ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema).optional(), files: z.lazy(() => AppointmentFileUpdateManyWithoutAppointmentNestedInput_schema_1.AppointmentFileUpdateManyWithoutAppointmentNestedInputObjectSchema).optional() diff --git a/packages/db/shared/schemas/objects/AppointmentUpdateWithoutUserInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentUpdateWithoutUserInput.schema.ts index f44b2b6a..1d9df423 100644 --- a/packages/db/shared/schemas/objects/AppointmentUpdateWithoutUserInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentUpdateWithoutUserInput.schema.ts @@ -8,6 +8,7 @@ import { PatientStatusSchema } from '../enums/PatientStatus.schema'; import { EnumPatientStatusFieldUpdateOperationsInputObjectSchema as EnumPatientStatusFieldUpdateOperationsInputObjectSchema } from './EnumPatientStatusFieldUpdateOperationsInput.schema'; import { PatientUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema as PatientUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema } from './PatientUpdateOneRequiredWithoutAppointmentsNestedInput.schema'; import { StaffUpdateOneWithoutAppointmentsNestedInputObjectSchema as StaffUpdateOneWithoutAppointmentsNestedInputObjectSchema } from './StaffUpdateOneWithoutAppointmentsNestedInput.schema'; +import { NpiProviderUpdateOneWithoutAppointmentsNestedInputObjectSchema as NpiProviderUpdateOneWithoutAppointmentsNestedInputObjectSchema } from './NpiProviderUpdateOneWithoutAppointmentsNestedInput.schema'; import { AppointmentProcedureUpdateManyWithoutAppointmentNestedInputObjectSchema as AppointmentProcedureUpdateManyWithoutAppointmentNestedInputObjectSchema } from './AppointmentProcedureUpdateManyWithoutAppointmentNestedInput.schema'; import { ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema as ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema } from './ClaimUpdateManyWithoutAppointmentNestedInput.schema'; import { AppointmentFileUpdateManyWithoutAppointmentNestedInputObjectSchema as AppointmentFileUpdateManyWithoutAppointmentNestedInputObjectSchema } from './AppointmentFileUpdateManyWithoutAppointmentNestedInput.schema' @@ -27,6 +28,7 @@ const makeSchema = () => z.object({ eligibilityStatus: z.union([PatientStatusSchema, z.lazy(() => EnumPatientStatusFieldUpdateOperationsInputObjectSchema)]).optional(), patient: z.lazy(() => PatientUpdateOneRequiredWithoutAppointmentsNestedInputObjectSchema).optional(), staff: z.lazy(() => StaffUpdateOneWithoutAppointmentsNestedInputObjectSchema).optional(), + npiProvider: z.lazy(() => NpiProviderUpdateOneWithoutAppointmentsNestedInputObjectSchema).optional(), procedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutAppointmentNestedInputObjectSchema).optional(), claims: z.lazy(() => ClaimUpdateManyWithoutAppointmentNestedInputObjectSchema).optional(), files: z.lazy(() => AppointmentFileUpdateManyWithoutAppointmentNestedInputObjectSchema).optional() diff --git a/packages/db/shared/schemas/objects/AppointmentUpsertWithWhereUniqueWithoutNpiProviderInput.schema.js b/packages/db/shared/schemas/objects/AppointmentUpsertWithWhereUniqueWithoutNpiProviderInput.schema.js new file mode 100644 index 00000000..bc036d0b --- /dev/null +++ b/packages/db/shared/schemas/objects/AppointmentUpsertWithWhereUniqueWithoutNpiProviderInput.schema.js @@ -0,0 +1,49 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.AppointmentUpsertWithWhereUniqueWithoutNpiProviderInputObjectZodSchema = exports.AppointmentUpsertWithWhereUniqueWithoutNpiProviderInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const AppointmentWhereUniqueInput_schema_1 = require("./AppointmentWhereUniqueInput.schema"); +const AppointmentUpdateWithoutNpiProviderInput_schema_1 = require("./AppointmentUpdateWithoutNpiProviderInput.schema"); +const AppointmentUncheckedUpdateWithoutNpiProviderInput_schema_1 = require("./AppointmentUncheckedUpdateWithoutNpiProviderInput.schema"); +const AppointmentCreateWithoutNpiProviderInput_schema_1 = require("./AppointmentCreateWithoutNpiProviderInput.schema"); +const AppointmentUncheckedCreateWithoutNpiProviderInput_schema_1 = require("./AppointmentUncheckedCreateWithoutNpiProviderInput.schema"); +const makeSchema = () => z.object({ + where: z.lazy(() => AppointmentWhereUniqueInput_schema_1.AppointmentWhereUniqueInputObjectSchema), + update: z.union([z.lazy(() => AppointmentUpdateWithoutNpiProviderInput_schema_1.AppointmentUpdateWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentUncheckedUpdateWithoutNpiProviderInput_schema_1.AppointmentUncheckedUpdateWithoutNpiProviderInputObjectSchema)]), + create: z.union([z.lazy(() => AppointmentCreateWithoutNpiProviderInput_schema_1.AppointmentCreateWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentUncheckedCreateWithoutNpiProviderInput_schema_1.AppointmentUncheckedCreateWithoutNpiProviderInputObjectSchema)]) +}).strict(); +exports.AppointmentUpsertWithWhereUniqueWithoutNpiProviderInputObjectSchema = makeSchema(); +exports.AppointmentUpsertWithWhereUniqueWithoutNpiProviderInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentUpsertWithWhereUniqueWithoutNpiProviderInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentUpsertWithWhereUniqueWithoutNpiProviderInput.schema.ts new file mode 100644 index 00000000..fd05e304 --- /dev/null +++ b/packages/db/shared/schemas/objects/AppointmentUpsertWithWhereUniqueWithoutNpiProviderInput.schema.ts @@ -0,0 +1,15 @@ +import * as z from 'zod'; +import type { Prisma } from '../../../generated/prisma'; +import { AppointmentWhereUniqueInputObjectSchema as AppointmentWhereUniqueInputObjectSchema } from './AppointmentWhereUniqueInput.schema'; +import { AppointmentUpdateWithoutNpiProviderInputObjectSchema as AppointmentUpdateWithoutNpiProviderInputObjectSchema } from './AppointmentUpdateWithoutNpiProviderInput.schema'; +import { AppointmentUncheckedUpdateWithoutNpiProviderInputObjectSchema as AppointmentUncheckedUpdateWithoutNpiProviderInputObjectSchema } from './AppointmentUncheckedUpdateWithoutNpiProviderInput.schema'; +import { AppointmentCreateWithoutNpiProviderInputObjectSchema as AppointmentCreateWithoutNpiProviderInputObjectSchema } from './AppointmentCreateWithoutNpiProviderInput.schema'; +import { AppointmentUncheckedCreateWithoutNpiProviderInputObjectSchema as AppointmentUncheckedCreateWithoutNpiProviderInputObjectSchema } from './AppointmentUncheckedCreateWithoutNpiProviderInput.schema' + +const makeSchema = () => z.object({ + where: z.lazy(() => AppointmentWhereUniqueInputObjectSchema), + update: z.union([z.lazy(() => AppointmentUpdateWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentUncheckedUpdateWithoutNpiProviderInputObjectSchema)]), + create: z.union([z.lazy(() => AppointmentCreateWithoutNpiProviderInputObjectSchema), z.lazy(() => AppointmentUncheckedCreateWithoutNpiProviderInputObjectSchema)]) +}).strict(); +export const AppointmentUpsertWithWhereUniqueWithoutNpiProviderInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; +export const AppointmentUpsertWithWhereUniqueWithoutNpiProviderInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/AppointmentWhereInput.schema.js b/packages/db/shared/schemas/objects/AppointmentWhereInput.schema.js index 94633602..fecc4d32 100644 --- a/packages/db/shared/schemas/objects/AppointmentWhereInput.schema.js +++ b/packages/db/shared/schemas/objects/AppointmentWhereInput.schema.js @@ -36,6 +36,7 @@ Object.defineProperty(exports, "__esModule", { value: true }); exports.AppointmentWhereInputObjectZodSchema = exports.AppointmentWhereInputObjectSchema = void 0; const z = __importStar(require("zod")); const IntFilter_schema_1 = require("./IntFilter.schema"); +const IntNullableFilter_schema_1 = require("./IntNullableFilter.schema"); const StringFilter_schema_1 = require("./StringFilter.schema"); const DateTimeFilter_schema_1 = require("./DateTimeFilter.schema"); const BoolFilter_schema_1 = require("./BoolFilter.schema"); @@ -48,6 +49,8 @@ const UserScalarRelationFilter_schema_1 = require("./UserScalarRelationFilter.sc const UserWhereInput_schema_1 = require("./UserWhereInput.schema"); const StaffNullableScalarRelationFilter_schema_1 = require("./StaffNullableScalarRelationFilter.schema"); const StaffWhereInput_schema_1 = require("./StaffWhereInput.schema"); +const NpiProviderNullableScalarRelationFilter_schema_1 = require("./NpiProviderNullableScalarRelationFilter.schema"); +const NpiProviderWhereInput_schema_1 = require("./NpiProviderWhereInput.schema"); const AppointmentProcedureListRelationFilter_schema_1 = require("./AppointmentProcedureListRelationFilter.schema"); const ClaimListRelationFilter_schema_1 = require("./ClaimListRelationFilter.schema"); const AppointmentFileListRelationFilter_schema_1 = require("./AppointmentFileListRelationFilter.schema"); @@ -59,6 +62,7 @@ const appointmentwhereinputSchema = z.object({ patientId: z.union([z.lazy(() => IntFilter_schema_1.IntFilterObjectSchema), z.number().int()]).optional(), userId: z.union([z.lazy(() => IntFilter_schema_1.IntFilterObjectSchema), z.number().int()]).optional(), staffId: z.union([z.lazy(() => IntFilter_schema_1.IntFilterObjectSchema), z.number().int()]).optional(), + npiProviderId: z.union([z.lazy(() => IntNullableFilter_schema_1.IntNullableFilterObjectSchema), z.number().int()]).optional().nullable(), title: z.union([z.lazy(() => StringFilter_schema_1.StringFilterObjectSchema), z.string()]).optional(), date: z.union([z.lazy(() => DateTimeFilter_schema_1.DateTimeFilterObjectSchema), z.coerce.date()]).optional(), startTime: z.union([z.lazy(() => StringFilter_schema_1.StringFilterObjectSchema), z.string()]).optional(), @@ -74,6 +78,7 @@ const appointmentwhereinputSchema = z.object({ patient: z.union([z.lazy(() => PatientScalarRelationFilter_schema_1.PatientScalarRelationFilterObjectSchema), z.lazy(() => PatientWhereInput_schema_1.PatientWhereInputObjectSchema)]).optional(), user: z.union([z.lazy(() => UserScalarRelationFilter_schema_1.UserScalarRelationFilterObjectSchema), z.lazy(() => UserWhereInput_schema_1.UserWhereInputObjectSchema)]).optional(), staff: z.union([z.lazy(() => StaffNullableScalarRelationFilter_schema_1.StaffNullableScalarRelationFilterObjectSchema), z.lazy(() => StaffWhereInput_schema_1.StaffWhereInputObjectSchema)]).optional(), + npiProvider: z.union([z.lazy(() => NpiProviderNullableScalarRelationFilter_schema_1.NpiProviderNullableScalarRelationFilterObjectSchema), z.lazy(() => NpiProviderWhereInput_schema_1.NpiProviderWhereInputObjectSchema)]).optional(), procedures: z.lazy(() => AppointmentProcedureListRelationFilter_schema_1.AppointmentProcedureListRelationFilterObjectSchema).optional(), claims: z.lazy(() => ClaimListRelationFilter_schema_1.ClaimListRelationFilterObjectSchema).optional(), files: z.lazy(() => AppointmentFileListRelationFilter_schema_1.AppointmentFileListRelationFilterObjectSchema).optional() diff --git a/packages/db/shared/schemas/objects/AppointmentWhereInput.schema.ts b/packages/db/shared/schemas/objects/AppointmentWhereInput.schema.ts index b0c3f960..cef982fc 100644 --- a/packages/db/shared/schemas/objects/AppointmentWhereInput.schema.ts +++ b/packages/db/shared/schemas/objects/AppointmentWhereInput.schema.ts @@ -1,6 +1,7 @@ import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { IntFilterObjectSchema as IntFilterObjectSchema } from './IntFilter.schema'; +import { IntNullableFilterObjectSchema as IntNullableFilterObjectSchema } from './IntNullableFilter.schema'; import { StringFilterObjectSchema as StringFilterObjectSchema } from './StringFilter.schema'; import { DateTimeFilterObjectSchema as DateTimeFilterObjectSchema } from './DateTimeFilter.schema'; import { BoolFilterObjectSchema as BoolFilterObjectSchema } from './BoolFilter.schema'; @@ -13,6 +14,8 @@ import { UserScalarRelationFilterObjectSchema as UserScalarRelationFilterObjectS import { UserWhereInputObjectSchema as UserWhereInputObjectSchema } from './UserWhereInput.schema'; import { StaffNullableScalarRelationFilterObjectSchema as StaffNullableScalarRelationFilterObjectSchema } from './StaffNullableScalarRelationFilter.schema'; import { StaffWhereInputObjectSchema as StaffWhereInputObjectSchema } from './StaffWhereInput.schema'; +import { NpiProviderNullableScalarRelationFilterObjectSchema as NpiProviderNullableScalarRelationFilterObjectSchema } from './NpiProviderNullableScalarRelationFilter.schema'; +import { NpiProviderWhereInputObjectSchema as NpiProviderWhereInputObjectSchema } from './NpiProviderWhereInput.schema'; import { AppointmentProcedureListRelationFilterObjectSchema as AppointmentProcedureListRelationFilterObjectSchema } from './AppointmentProcedureListRelationFilter.schema'; import { ClaimListRelationFilterObjectSchema as ClaimListRelationFilterObjectSchema } from './ClaimListRelationFilter.schema'; import { AppointmentFileListRelationFilterObjectSchema as AppointmentFileListRelationFilterObjectSchema } from './AppointmentFileListRelationFilter.schema' @@ -25,6 +28,7 @@ const appointmentwhereinputSchema = z.object({ patientId: z.union([z.lazy(() => IntFilterObjectSchema), z.number().int()]).optional(), userId: z.union([z.lazy(() => IntFilterObjectSchema), z.number().int()]).optional(), staffId: z.union([z.lazy(() => IntFilterObjectSchema), z.number().int()]).optional(), + npiProviderId: z.union([z.lazy(() => IntNullableFilterObjectSchema), z.number().int()]).optional().nullable(), title: z.union([z.lazy(() => StringFilterObjectSchema), z.string()]).optional(), date: z.union([z.lazy(() => DateTimeFilterObjectSchema), z.coerce.date()]).optional(), startTime: z.union([z.lazy(() => StringFilterObjectSchema), z.string()]).optional(), @@ -40,6 +44,7 @@ const appointmentwhereinputSchema = z.object({ patient: z.union([z.lazy(() => PatientScalarRelationFilterObjectSchema), z.lazy(() => PatientWhereInputObjectSchema)]).optional(), user: z.union([z.lazy(() => UserScalarRelationFilterObjectSchema), z.lazy(() => UserWhereInputObjectSchema)]).optional(), staff: z.union([z.lazy(() => StaffNullableScalarRelationFilterObjectSchema), z.lazy(() => StaffWhereInputObjectSchema)]).optional(), + npiProvider: z.union([z.lazy(() => NpiProviderNullableScalarRelationFilterObjectSchema), z.lazy(() => NpiProviderWhereInputObjectSchema)]).optional(), procedures: z.lazy(() => AppointmentProcedureListRelationFilterObjectSchema).optional(), claims: z.lazy(() => ClaimListRelationFilterObjectSchema).optional(), files: z.lazy(() => AppointmentFileListRelationFilterObjectSchema).optional() diff --git a/packages/db/shared/schemas/objects/CommissionBatchCreateInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchCreateInput.schema.js index c6ed1022..69c8f3cd 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchCreateInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchCreateInput.schema.js @@ -38,17 +38,16 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchCreateInputObjectZodSchema = exports.CommissionBatchCreateInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const NpiProviderCreateNestedOneWithoutCommissionBatchesInput_schema_1 = require("./NpiProviderCreateNestedOneWithoutCommissionBatchesInput.schema"); const CommissionBatchItemCreateNestedManyWithoutCommissionBatchInput_schema_1 = require("./CommissionBatchItemCreateNestedManyWithoutCommissionBatchInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ totalCollection: z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalCollection' must be a Decimal", @@ -57,7 +56,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchCreateInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchCreateInput.schema.ts index 192e9996..fb791a68 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchCreateInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchCreateInput.schema.ts @@ -1,16 +1,17 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { NpiProviderCreateNestedOneWithoutCommissionBatchesInputObjectSchema as NpiProviderCreateNestedOneWithoutCommissionBatchesInputObjectSchema } from './NpiProviderCreateNestedOneWithoutCommissionBatchesInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { NpiProviderCreateNestedOneWithoutCommissionBatchesInputObjectSchema as NpiProviderCreateNestedOneWithoutCommissionBatchesInputObjectSchema } from './NpiProviderCreateNestedOneWithoutCommissionBatchesInput.schema'; import { CommissionBatchItemCreateNestedManyWithoutCommissionBatchInputObjectSchema as CommissionBatchItemCreateNestedManyWithoutCommissionBatchInputObjectSchema } from './CommissionBatchItemCreateNestedManyWithoutCommissionBatchInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ totalCollection: z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalCollection' must be a Decimal", @@ -19,7 +20,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchCreateManyInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchCreateManyInput.schema.js index 4d6d97b7..25bb4a4c 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchCreateManyInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchCreateManyInput.schema.js @@ -38,9 +38,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchCreateManyInputObjectZodSchema = exports.CommissionBatchCreateManyInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), npiProviderId: z.number().int(), @@ -48,7 +47,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalCollection' must be a Decimal", @@ -57,7 +56,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchCreateManyInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchCreateManyInput.schema.ts index 7caf772e..497f03a7 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchCreateManyInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchCreateManyInput.schema.ts @@ -1,9 +1,9 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; - +import type { Prisma } from '../../../generated/prisma'; import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), npiProviderId: z.number().int(), @@ -11,7 +11,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalCollection' must be a Decimal", @@ -20,7 +20,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchCreateManyNpiProviderInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchCreateManyNpiProviderInput.schema.js index 16b92f9d..7a2922c5 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchCreateManyNpiProviderInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchCreateManyNpiProviderInput.schema.js @@ -38,16 +38,15 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchCreateManyNpiProviderInputObjectZodSchema = exports.CommissionBatchCreateManyNpiProviderInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), totalCollection: z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalCollection' must be a Decimal", @@ -56,7 +55,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchCreateManyNpiProviderInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchCreateManyNpiProviderInput.schema.ts index 15c71c73..427aa442 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchCreateManyNpiProviderInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchCreateManyNpiProviderInput.schema.ts @@ -1,16 +1,16 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; - +import type { Prisma } from '../../../generated/prisma'; import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), totalCollection: z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalCollection' must be a Decimal", @@ -19,7 +19,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchCreateWithoutItemsInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchCreateWithoutItemsInput.schema.js index f5bb01be..019d5a04 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchCreateWithoutItemsInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchCreateWithoutItemsInput.schema.js @@ -38,16 +38,15 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchCreateWithoutItemsInputObjectZodSchema = exports.CommissionBatchCreateWithoutItemsInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const NpiProviderCreateNestedOneWithoutCommissionBatchesInput_schema_1 = require("./NpiProviderCreateNestedOneWithoutCommissionBatchesInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ totalCollection: z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalCollection' must be a Decimal", @@ -56,7 +55,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchCreateWithoutItemsInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchCreateWithoutItemsInput.schema.ts index 39f017c3..2360b645 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchCreateWithoutItemsInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchCreateWithoutItemsInput.schema.ts @@ -1,15 +1,16 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; +import type { Prisma } from '../../../generated/prisma'; import { NpiProviderCreateNestedOneWithoutCommissionBatchesInputObjectSchema as NpiProviderCreateNestedOneWithoutCommissionBatchesInputObjectSchema } from './NpiProviderCreateNestedOneWithoutCommissionBatchesInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ totalCollection: z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalCollection' must be a Decimal", @@ -18,7 +19,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchCreateWithoutNpiProviderInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchCreateWithoutNpiProviderInput.schema.js index f07bb0c4..d4c30968 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchCreateWithoutNpiProviderInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchCreateWithoutNpiProviderInput.schema.js @@ -38,16 +38,15 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchCreateWithoutNpiProviderInputObjectZodSchema = exports.CommissionBatchCreateWithoutNpiProviderInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const CommissionBatchItemCreateNestedManyWithoutCommissionBatchInput_schema_1 = require("./CommissionBatchItemCreateNestedManyWithoutCommissionBatchInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ totalCollection: z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalCollection' must be a Decimal", @@ -56,7 +55,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchCreateWithoutNpiProviderInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchCreateWithoutNpiProviderInput.schema.ts index eb60505c..59ee2324 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchCreateWithoutNpiProviderInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchCreateWithoutNpiProviderInput.schema.ts @@ -1,15 +1,16 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; +import type { Prisma } from '../../../generated/prisma'; import { CommissionBatchItemCreateNestedManyWithoutCommissionBatchInputObjectSchema as CommissionBatchItemCreateNestedManyWithoutCommissionBatchInputObjectSchema } from './CommissionBatchItemCreateNestedManyWithoutCommissionBatchInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ totalCollection: z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalCollection' must be a Decimal", @@ -18,7 +19,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemCreateInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchItemCreateInput.schema.js index 469e7aef..884a1c46 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemCreateInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchItemCreateInput.schema.js @@ -38,17 +38,16 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchItemCreateInputObjectZodSchema = exports.CommissionBatchItemCreateInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const CommissionBatchCreateNestedOneWithoutItemsInput_schema_1 = require("./CommissionBatchCreateNestedOneWithoutItemsInput.schema"); const PaymentCreateNestedOneWithoutCommissionBatchItemsInput_schema_1 = require("./PaymentCreateNestedOneWithoutCommissionBatchItemsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ collectionAmount: z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemCreateInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchItemCreateInput.schema.ts index 16da5a38..7441994a 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemCreateInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchItemCreateInput.schema.ts @@ -1,16 +1,17 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { CommissionBatchCreateNestedOneWithoutItemsInputObjectSchema as CommissionBatchCreateNestedOneWithoutItemsInputObjectSchema } from './CommissionBatchCreateNestedOneWithoutItemsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { CommissionBatchCreateNestedOneWithoutItemsInputObjectSchema as CommissionBatchCreateNestedOneWithoutItemsInputObjectSchema } from './CommissionBatchCreateNestedOneWithoutItemsInput.schema'; import { PaymentCreateNestedOneWithoutCommissionBatchItemsInputObjectSchema as PaymentCreateNestedOneWithoutCommissionBatchItemsInputObjectSchema } from './PaymentCreateNestedOneWithoutCommissionBatchItemsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ collectionAmount: z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemCreateManyCommissionBatchInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchItemCreateManyCommissionBatchInput.schema.js index ecd578b5..2cc128ee 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemCreateManyCommissionBatchInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchItemCreateManyCommissionBatchInput.schema.js @@ -38,9 +38,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchItemCreateManyCommissionBatchInputObjectZodSchema = exports.CommissionBatchItemCreateManyCommissionBatchInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), paymentId: z.number().int(), @@ -48,7 +47,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemCreateManyCommissionBatchInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchItemCreateManyCommissionBatchInput.schema.ts index 48482f41..5a372db2 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemCreateManyCommissionBatchInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchItemCreateManyCommissionBatchInput.schema.ts @@ -1,9 +1,9 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; - +import type { Prisma } from '../../../generated/prisma'; import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), paymentId: z.number().int(), @@ -11,7 +11,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemCreateManyInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchItemCreateManyInput.schema.js index 88109ebe..ebe77e40 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemCreateManyInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchItemCreateManyInput.schema.js @@ -38,9 +38,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchItemCreateManyInputObjectZodSchema = exports.CommissionBatchItemCreateManyInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), commissionBatchId: z.number().int(), @@ -49,7 +48,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemCreateManyInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchItemCreateManyInput.schema.ts index 25fcbf60..3ab7c691 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemCreateManyInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchItemCreateManyInput.schema.ts @@ -1,9 +1,9 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; - +import type { Prisma } from '../../../generated/prisma'; import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), commissionBatchId: z.number().int(), @@ -12,7 +12,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemCreateManyPaymentInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchItemCreateManyPaymentInput.schema.js index 65a1dccd..3ac460d1 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemCreateManyPaymentInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchItemCreateManyPaymentInput.schema.js @@ -38,9 +38,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchItemCreateManyPaymentInputObjectZodSchema = exports.CommissionBatchItemCreateManyPaymentInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), commissionBatchId: z.number().int(), @@ -48,7 +47,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemCreateManyPaymentInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchItemCreateManyPaymentInput.schema.ts index 5f75cd76..d6d4945a 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemCreateManyPaymentInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchItemCreateManyPaymentInput.schema.ts @@ -1,9 +1,9 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; - +import type { Prisma } from '../../../generated/prisma'; import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), commissionBatchId: z.number().int(), @@ -11,7 +11,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemCreateWithoutCommissionBatchInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchItemCreateWithoutCommissionBatchInput.schema.js index 53423037..e273a4dc 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemCreateWithoutCommissionBatchInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchItemCreateWithoutCommissionBatchInput.schema.js @@ -38,16 +38,15 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchItemCreateWithoutCommissionBatchInputObjectZodSchema = exports.CommissionBatchItemCreateWithoutCommissionBatchInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const PaymentCreateNestedOneWithoutCommissionBatchItemsInput_schema_1 = require("./PaymentCreateNestedOneWithoutCommissionBatchItemsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ collectionAmount: z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemCreateWithoutCommissionBatchInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchItemCreateWithoutCommissionBatchInput.schema.ts index 2a4bfba1..77331966 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemCreateWithoutCommissionBatchInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchItemCreateWithoutCommissionBatchInput.schema.ts @@ -1,15 +1,16 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; +import type { Prisma } from '../../../generated/prisma'; import { PaymentCreateNestedOneWithoutCommissionBatchItemsInputObjectSchema as PaymentCreateNestedOneWithoutCommissionBatchItemsInputObjectSchema } from './PaymentCreateNestedOneWithoutCommissionBatchItemsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ collectionAmount: z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemCreateWithoutPaymentInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchItemCreateWithoutPaymentInput.schema.js index 1d0ccc64..8ee9042d 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemCreateWithoutPaymentInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchItemCreateWithoutPaymentInput.schema.js @@ -38,16 +38,15 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchItemCreateWithoutPaymentInputObjectZodSchema = exports.CommissionBatchItemCreateWithoutPaymentInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const CommissionBatchCreateNestedOneWithoutItemsInput_schema_1 = require("./CommissionBatchCreateNestedOneWithoutItemsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ collectionAmount: z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemCreateWithoutPaymentInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchItemCreateWithoutPaymentInput.schema.ts index 0dbb9d85..e1dc8425 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemCreateWithoutPaymentInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchItemCreateWithoutPaymentInput.schema.ts @@ -1,15 +1,16 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; +import type { Prisma } from '../../../generated/prisma'; import { CommissionBatchCreateNestedOneWithoutItemsInputObjectSchema as CommissionBatchCreateNestedOneWithoutItemsInputObjectSchema } from './CommissionBatchCreateNestedOneWithoutItemsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ collectionAmount: z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemScalarWhereInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchItemScalarWhereInput.schema.js index 9301b26e..8c255684 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemScalarWhereInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchItemScalarWhereInput.schema.js @@ -38,11 +38,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchItemScalarWhereInputObjectZodSchema = exports.CommissionBatchItemScalarWhereInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFilter_schema_1 = require("./IntFilter.schema"); const DecimalFilter_schema_1 = require("./DecimalFilter.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const commissionbatchitemscalarwhereinputSchema = z.object({ AND: z.union([z.lazy(() => exports.CommissionBatchItemScalarWhereInputObjectSchema), z.lazy(() => exports.CommissionBatchItemScalarWhereInputObjectSchema).array()]).optional(), OR: z.lazy(() => exports.CommissionBatchItemScalarWhereInputObjectSchema).array().optional(), @@ -54,7 +53,7 @@ const commissionbatchitemscalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemScalarWhereInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchItemScalarWhereInput.schema.ts index 5e8865e0..9439dc53 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemScalarWhereInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchItemScalarWhereInput.schema.ts @@ -1,10 +1,11 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFilterObjectSchema as IntFilterObjectSchema } from './IntFilter.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFilterObjectSchema as IntFilterObjectSchema } from './IntFilter.schema'; import { DecimalFilterObjectSchema as DecimalFilterObjectSchema } from './DecimalFilter.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const commissionbatchitemscalarwhereinputSchema = z.object({ AND: z.union([z.lazy(() => CommissionBatchItemScalarWhereInputObjectSchema), z.lazy(() => CommissionBatchItemScalarWhereInputObjectSchema).array()]).optional(), OR: z.lazy(() => CommissionBatchItemScalarWhereInputObjectSchema).array().optional(), @@ -16,7 +17,7 @@ const commissionbatchitemscalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemScalarWhereWithAggregatesInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchItemScalarWhereWithAggregatesInput.schema.js index 0fba8ad3..d0382c37 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemScalarWhereWithAggregatesInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchItemScalarWhereWithAggregatesInput.schema.js @@ -38,11 +38,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchItemScalarWhereWithAggregatesInputObjectZodSchema = exports.CommissionBatchItemScalarWhereWithAggregatesInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntWithAggregatesFilter_schema_1 = require("./IntWithAggregatesFilter.schema"); const DecimalWithAggregatesFilter_schema_1 = require("./DecimalWithAggregatesFilter.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const commissionbatchitemscalarwherewithaggregatesinputSchema = z.object({ AND: z.union([z.lazy(() => exports.CommissionBatchItemScalarWhereWithAggregatesInputObjectSchema), z.lazy(() => exports.CommissionBatchItemScalarWhereWithAggregatesInputObjectSchema).array()]).optional(), OR: z.lazy(() => exports.CommissionBatchItemScalarWhereWithAggregatesInputObjectSchema).array().optional(), @@ -54,7 +53,7 @@ const commissionbatchitemscalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemScalarWhereWithAggregatesInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchItemScalarWhereWithAggregatesInput.schema.ts index 9bca0f14..410a527b 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemScalarWhereWithAggregatesInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchItemScalarWhereWithAggregatesInput.schema.ts @@ -1,10 +1,11 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntWithAggregatesFilterObjectSchema as IntWithAggregatesFilterObjectSchema } from './IntWithAggregatesFilter.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntWithAggregatesFilterObjectSchema as IntWithAggregatesFilterObjectSchema } from './IntWithAggregatesFilter.schema'; import { DecimalWithAggregatesFilterObjectSchema as DecimalWithAggregatesFilterObjectSchema } from './DecimalWithAggregatesFilter.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const commissionbatchitemscalarwherewithaggregatesinputSchema = z.object({ AND: z.union([z.lazy(() => CommissionBatchItemScalarWhereWithAggregatesInputObjectSchema), z.lazy(() => CommissionBatchItemScalarWhereWithAggregatesInputObjectSchema).array()]).optional(), OR: z.lazy(() => CommissionBatchItemScalarWhereWithAggregatesInputObjectSchema).array().optional(), @@ -16,7 +17,7 @@ const commissionbatchitemscalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedCreateInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedCreateInput.schema.js index 50c92ae2..feba1581 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedCreateInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedCreateInput.schema.js @@ -38,9 +38,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchItemUncheckedCreateInputObjectZodSchema = exports.CommissionBatchItemUncheckedCreateInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), commissionBatchId: z.number().int(), @@ -49,7 +48,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedCreateInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedCreateInput.schema.ts index 65ac5c97..95387cd8 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedCreateInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedCreateInput.schema.ts @@ -1,9 +1,9 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; - +import type { Prisma } from '../../../generated/prisma'; import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), commissionBatchId: z.number().int(), @@ -12,7 +12,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedCreateWithoutCommissionBatchInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedCreateWithoutCommissionBatchInput.schema.js index f024812e..91303df3 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedCreateWithoutCommissionBatchInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedCreateWithoutCommissionBatchInput.schema.js @@ -38,9 +38,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchItemUncheckedCreateWithoutCommissionBatchInputObjectZodSchema = exports.CommissionBatchItemUncheckedCreateWithoutCommissionBatchInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), paymentId: z.number().int(), @@ -48,7 +47,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedCreateWithoutCommissionBatchInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedCreateWithoutCommissionBatchInput.schema.ts index acfe4ea7..a403fbf9 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedCreateWithoutCommissionBatchInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedCreateWithoutCommissionBatchInput.schema.ts @@ -1,9 +1,9 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; - +import type { Prisma } from '../../../generated/prisma'; import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), paymentId: z.number().int(), @@ -11,7 +11,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedCreateWithoutPaymentInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedCreateWithoutPaymentInput.schema.js index f5b3420a..44ba347a 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedCreateWithoutPaymentInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedCreateWithoutPaymentInput.schema.js @@ -38,9 +38,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchItemUncheckedCreateWithoutPaymentInputObjectZodSchema = exports.CommissionBatchItemUncheckedCreateWithoutPaymentInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), commissionBatchId: z.number().int(), @@ -48,7 +47,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedCreateWithoutPaymentInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedCreateWithoutPaymentInput.schema.ts index 8e959146..52e9425b 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedCreateWithoutPaymentInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedCreateWithoutPaymentInput.schema.ts @@ -1,9 +1,9 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; - +import type { Prisma } from '../../../generated/prisma'; import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), commissionBatchId: z.number().int(), @@ -11,7 +11,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateInput.schema.js index d80d5cd4..48da2a0a 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateInput.schema.js @@ -38,11 +38,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchItemUncheckedUpdateInputObjectZodSchema = exports.CommissionBatchItemUncheckedUpdateInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), commissionBatchId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -51,7 +50,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateInput.schema.ts index 7a2f426b..c7825080 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateInput.schema.ts @@ -1,10 +1,11 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), commissionBatchId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -13,7 +14,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateManyInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateManyInput.schema.js index eac9d8ca..aabb96b9 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateManyInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateManyInput.schema.js @@ -38,11 +38,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchItemUncheckedUpdateManyInputObjectZodSchema = exports.CommissionBatchItemUncheckedUpdateManyInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), commissionBatchId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -51,7 +50,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateManyInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateManyInput.schema.ts index 4776d04c..32f62a21 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateManyInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateManyInput.schema.ts @@ -1,10 +1,11 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), commissionBatchId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -13,7 +14,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateManyWithoutCommissionBatchInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateManyWithoutCommissionBatchInput.schema.js index 81e491b1..bfbfdcd3 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateManyWithoutCommissionBatchInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateManyWithoutCommissionBatchInput.schema.js @@ -38,11 +38,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchItemUncheckedUpdateManyWithoutCommissionBatchInputObjectZodSchema = exports.CommissionBatchItemUncheckedUpdateManyWithoutCommissionBatchInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), paymentId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -50,7 +49,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateManyWithoutCommissionBatchInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateManyWithoutCommissionBatchInput.schema.ts index 20847d28..c4658c6f 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateManyWithoutCommissionBatchInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateManyWithoutCommissionBatchInput.schema.ts @@ -1,10 +1,11 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), paymentId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -12,7 +13,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateManyWithoutPaymentInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateManyWithoutPaymentInput.schema.js index 0c16fda3..26f9878d 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateManyWithoutPaymentInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateManyWithoutPaymentInput.schema.js @@ -38,11 +38,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchItemUncheckedUpdateManyWithoutPaymentInputObjectZodSchema = exports.CommissionBatchItemUncheckedUpdateManyWithoutPaymentInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), commissionBatchId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -50,7 +49,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateManyWithoutPaymentInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateManyWithoutPaymentInput.schema.ts index a50b61d1..d14312c9 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateManyWithoutPaymentInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateManyWithoutPaymentInput.schema.ts @@ -1,10 +1,11 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), commissionBatchId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -12,7 +13,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateWithoutCommissionBatchInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateWithoutCommissionBatchInput.schema.js index 10bc261d..4afe84fe 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateWithoutCommissionBatchInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateWithoutCommissionBatchInput.schema.js @@ -38,11 +38,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchItemUncheckedUpdateWithoutCommissionBatchInputObjectZodSchema = exports.CommissionBatchItemUncheckedUpdateWithoutCommissionBatchInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), paymentId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -50,7 +49,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateWithoutCommissionBatchInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateWithoutCommissionBatchInput.schema.ts index 78b94288..c5b82e58 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateWithoutCommissionBatchInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateWithoutCommissionBatchInput.schema.ts @@ -1,10 +1,11 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), paymentId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -12,7 +13,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateWithoutPaymentInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateWithoutPaymentInput.schema.js index 5f8f8783..4f01e87d 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateWithoutPaymentInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateWithoutPaymentInput.schema.js @@ -38,11 +38,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchItemUncheckedUpdateWithoutPaymentInputObjectZodSchema = exports.CommissionBatchItemUncheckedUpdateWithoutPaymentInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), commissionBatchId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -50,7 +49,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateWithoutPaymentInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateWithoutPaymentInput.schema.ts index 367f12dd..b70e49ef 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateWithoutPaymentInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchItemUncheckedUpdateWithoutPaymentInput.schema.ts @@ -1,10 +1,11 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), commissionBatchId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -12,7 +13,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemUpdateInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchItemUpdateInput.schema.js index 87c756d8..7d7ff369 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemUpdateInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchItemUpdateInput.schema.js @@ -38,18 +38,17 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchItemUpdateInputObjectZodSchema = exports.CommissionBatchItemUpdateInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); const CommissionBatchUpdateOneRequiredWithoutItemsNestedInput_schema_1 = require("./CommissionBatchUpdateOneRequiredWithoutItemsNestedInput.schema"); const PaymentUpdateOneRequiredWithoutCommissionBatchItemsNestedInput_schema_1 = require("./PaymentUpdateOneRequiredWithoutCommissionBatchItemsNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ collectionAmount: z.union([z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemUpdateInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchItemUpdateInput.schema.ts index 96c4da7a..b78e68ff 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemUpdateInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchItemUpdateInput.schema.ts @@ -1,17 +1,18 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { CommissionBatchUpdateOneRequiredWithoutItemsNestedInputObjectSchema as CommissionBatchUpdateOneRequiredWithoutItemsNestedInputObjectSchema } from './CommissionBatchUpdateOneRequiredWithoutItemsNestedInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { CommissionBatchUpdateOneRequiredWithoutItemsNestedInputObjectSchema as CommissionBatchUpdateOneRequiredWithoutItemsNestedInputObjectSchema } from './CommissionBatchUpdateOneRequiredWithoutItemsNestedInput.schema'; import { PaymentUpdateOneRequiredWithoutCommissionBatchItemsNestedInputObjectSchema as PaymentUpdateOneRequiredWithoutCommissionBatchItemsNestedInputObjectSchema } from './PaymentUpdateOneRequiredWithoutCommissionBatchItemsNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ collectionAmount: z.union([z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemUpdateManyMutationInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchItemUpdateManyMutationInput.schema.js index c805f891..c33032de 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemUpdateManyMutationInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchItemUpdateManyMutationInput.schema.js @@ -38,16 +38,15 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchItemUpdateManyMutationInputObjectZodSchema = exports.CommissionBatchItemUpdateManyMutationInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ collectionAmount: z.union([z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemUpdateManyMutationInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchItemUpdateManyMutationInput.schema.ts index 50f48f9f..219313f5 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemUpdateManyMutationInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchItemUpdateManyMutationInput.schema.ts @@ -1,15 +1,16 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; +import type { Prisma } from '../../../generated/prisma'; import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ collectionAmount: z.union([z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemUpdateWithoutCommissionBatchInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchItemUpdateWithoutCommissionBatchInput.schema.js index 343ab696..4cfe91aa 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemUpdateWithoutCommissionBatchInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchItemUpdateWithoutCommissionBatchInput.schema.js @@ -38,17 +38,16 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchItemUpdateWithoutCommissionBatchInputObjectZodSchema = exports.CommissionBatchItemUpdateWithoutCommissionBatchInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); const PaymentUpdateOneRequiredWithoutCommissionBatchItemsNestedInput_schema_1 = require("./PaymentUpdateOneRequiredWithoutCommissionBatchItemsNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ collectionAmount: z.union([z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemUpdateWithoutCommissionBatchInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchItemUpdateWithoutCommissionBatchInput.schema.ts index 2291c275..2c4c570e 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemUpdateWithoutCommissionBatchInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchItemUpdateWithoutCommissionBatchInput.schema.ts @@ -1,16 +1,17 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; import { PaymentUpdateOneRequiredWithoutCommissionBatchItemsNestedInputObjectSchema as PaymentUpdateOneRequiredWithoutCommissionBatchItemsNestedInputObjectSchema } from './PaymentUpdateOneRequiredWithoutCommissionBatchItemsNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ collectionAmount: z.union([z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemUpdateWithoutPaymentInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchItemUpdateWithoutPaymentInput.schema.js index ca86fffc..83853e75 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemUpdateWithoutPaymentInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchItemUpdateWithoutPaymentInput.schema.js @@ -38,17 +38,16 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchItemUpdateWithoutPaymentInputObjectZodSchema = exports.CommissionBatchItemUpdateWithoutPaymentInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); const CommissionBatchUpdateOneRequiredWithoutItemsNestedInput_schema_1 = require("./CommissionBatchUpdateOneRequiredWithoutItemsNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ collectionAmount: z.union([z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemUpdateWithoutPaymentInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchItemUpdateWithoutPaymentInput.schema.ts index 6f3bf4cc..335c0581 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemUpdateWithoutPaymentInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchItemUpdateWithoutPaymentInput.schema.ts @@ -1,16 +1,17 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; import { CommissionBatchUpdateOneRequiredWithoutItemsNestedInputObjectSchema as CommissionBatchUpdateOneRequiredWithoutItemsNestedInputObjectSchema } from './CommissionBatchUpdateOneRequiredWithoutItemsNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ collectionAmount: z.union([z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemWhereInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchItemWhereInput.schema.js index dc753647..9d34dc63 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemWhereInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchItemWhereInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchItemWhereInputObjectZodSchema = exports.CommissionBatchItemWhereInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFilter_schema_1 = require("./IntFilter.schema"); const DecimalFilter_schema_1 = require("./DecimalFilter.schema"); const CommissionBatchScalarRelationFilter_schema_1 = require("./CommissionBatchScalarRelationFilter.schema"); @@ -47,6 +45,7 @@ const CommissionBatchWhereInput_schema_1 = require("./CommissionBatchWhereInput. const PaymentScalarRelationFilter_schema_1 = require("./PaymentScalarRelationFilter.schema"); const PaymentWhereInput_schema_1 = require("./PaymentWhereInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const commissionbatchitemwhereinputSchema = z.object({ AND: z.union([z.lazy(() => exports.CommissionBatchItemWhereInputObjectSchema), z.lazy(() => exports.CommissionBatchItemWhereInputObjectSchema).array()]).optional(), OR: z.lazy(() => exports.CommissionBatchItemWhereInputObjectSchema).array().optional(), @@ -58,7 +57,7 @@ const commissionbatchitemwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchItemWhereInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchItemWhereInput.schema.ts index 2fbec886..65175786 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchItemWhereInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchItemWhereInput.schema.ts @@ -1,14 +1,15 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFilterObjectSchema as IntFilterObjectSchema } from './IntFilter.schema'; -import { DecimalFilterObjectSchema as DecimalFilterObjectSchema } from './DecimalFilter.schema'; -import { CommissionBatchScalarRelationFilterObjectSchema as CommissionBatchScalarRelationFilterObjectSchema } from './CommissionBatchScalarRelationFilter.schema'; -import { CommissionBatchWhereInputObjectSchema as CommissionBatchWhereInputObjectSchema } from './CommissionBatchWhereInput.schema'; -import { PaymentScalarRelationFilterObjectSchema as PaymentScalarRelationFilterObjectSchema } from './PaymentScalarRelationFilter.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFilterObjectSchema as IntFilterObjectSchema } from './IntFilter.schema'; +import { DecimalFilterObjectSchema as DecimalFilterObjectSchema } from './DecimalFilter.schema'; +import { CommissionBatchScalarRelationFilterObjectSchema as CommissionBatchScalarRelationFilterObjectSchema } from './CommissionBatchScalarRelationFilter.schema'; +import { CommissionBatchWhereInputObjectSchema as CommissionBatchWhereInputObjectSchema } from './CommissionBatchWhereInput.schema'; +import { PaymentScalarRelationFilterObjectSchema as PaymentScalarRelationFilterObjectSchema } from './PaymentScalarRelationFilter.schema'; import { PaymentWhereInputObjectSchema as PaymentWhereInputObjectSchema } from './PaymentWhereInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const commissionbatchitemwhereinputSchema = z.object({ AND: z.union([z.lazy(() => CommissionBatchItemWhereInputObjectSchema), z.lazy(() => CommissionBatchItemWhereInputObjectSchema).array()]).optional(), OR: z.lazy(() => CommissionBatchItemWhereInputObjectSchema).array().optional(), @@ -20,7 +21,7 @@ const commissionbatchitemwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'collectionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchScalarWhereInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchScalarWhereInput.schema.js index b326536b..50298031 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchScalarWhereInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchScalarWhereInput.schema.js @@ -38,13 +38,12 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchScalarWhereInputObjectZodSchema = exports.CommissionBatchScalarWhereInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFilter_schema_1 = require("./IntFilter.schema"); const DecimalFilter_schema_1 = require("./DecimalFilter.schema"); const StringNullableFilter_schema_1 = require("./StringNullableFilter.schema"); const DateTimeFilter_schema_1 = require("./DateTimeFilter.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const commissionbatchscalarwhereinputSchema = z.object({ AND: z.union([z.lazy(() => exports.CommissionBatchScalarWhereInputObjectSchema), z.lazy(() => exports.CommissionBatchScalarWhereInputObjectSchema).array()]).optional(), OR: z.lazy(() => exports.CommissionBatchScalarWhereInputObjectSchema).array().optional(), @@ -55,7 +54,7 @@ const commissionbatchscalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalCollection' must be a Decimal", @@ -64,7 +63,7 @@ const commissionbatchscalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchScalarWhereInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchScalarWhereInput.schema.ts index 6cca8e39..67fe5305 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchScalarWhereInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchScalarWhereInput.schema.ts @@ -1,12 +1,13 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFilterObjectSchema as IntFilterObjectSchema } from './IntFilter.schema'; -import { DecimalFilterObjectSchema as DecimalFilterObjectSchema } from './DecimalFilter.schema'; -import { StringNullableFilterObjectSchema as StringNullableFilterObjectSchema } from './StringNullableFilter.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFilterObjectSchema as IntFilterObjectSchema } from './IntFilter.schema'; +import { DecimalFilterObjectSchema as DecimalFilterObjectSchema } from './DecimalFilter.schema'; +import { StringNullableFilterObjectSchema as StringNullableFilterObjectSchema } from './StringNullableFilter.schema'; import { DateTimeFilterObjectSchema as DateTimeFilterObjectSchema } from './DateTimeFilter.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const commissionbatchscalarwhereinputSchema = z.object({ AND: z.union([z.lazy(() => CommissionBatchScalarWhereInputObjectSchema), z.lazy(() => CommissionBatchScalarWhereInputObjectSchema).array()]).optional(), OR: z.lazy(() => CommissionBatchScalarWhereInputObjectSchema).array().optional(), @@ -17,7 +18,7 @@ const commissionbatchscalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalCollection' must be a Decimal", @@ -26,7 +27,7 @@ const commissionbatchscalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchScalarWhereWithAggregatesInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchScalarWhereWithAggregatesInput.schema.js index 092c18f7..b8bd7425 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchScalarWhereWithAggregatesInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchScalarWhereWithAggregatesInput.schema.js @@ -38,13 +38,12 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchScalarWhereWithAggregatesInputObjectZodSchema = exports.CommissionBatchScalarWhereWithAggregatesInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntWithAggregatesFilter_schema_1 = require("./IntWithAggregatesFilter.schema"); const DecimalWithAggregatesFilter_schema_1 = require("./DecimalWithAggregatesFilter.schema"); const StringNullableWithAggregatesFilter_schema_1 = require("./StringNullableWithAggregatesFilter.schema"); const DateTimeWithAggregatesFilter_schema_1 = require("./DateTimeWithAggregatesFilter.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const commissionbatchscalarwherewithaggregatesinputSchema = z.object({ AND: z.union([z.lazy(() => exports.CommissionBatchScalarWhereWithAggregatesInputObjectSchema), z.lazy(() => exports.CommissionBatchScalarWhereWithAggregatesInputObjectSchema).array()]).optional(), OR: z.lazy(() => exports.CommissionBatchScalarWhereWithAggregatesInputObjectSchema).array().optional(), @@ -55,7 +54,7 @@ const commissionbatchscalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalCollection' must be a Decimal", @@ -64,7 +63,7 @@ const commissionbatchscalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchScalarWhereWithAggregatesInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchScalarWhereWithAggregatesInput.schema.ts index 6e5d77eb..d46a307f 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchScalarWhereWithAggregatesInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchScalarWhereWithAggregatesInput.schema.ts @@ -1,12 +1,13 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntWithAggregatesFilterObjectSchema as IntWithAggregatesFilterObjectSchema } from './IntWithAggregatesFilter.schema'; -import { DecimalWithAggregatesFilterObjectSchema as DecimalWithAggregatesFilterObjectSchema } from './DecimalWithAggregatesFilter.schema'; -import { StringNullableWithAggregatesFilterObjectSchema as StringNullableWithAggregatesFilterObjectSchema } from './StringNullableWithAggregatesFilter.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntWithAggregatesFilterObjectSchema as IntWithAggregatesFilterObjectSchema } from './IntWithAggregatesFilter.schema'; +import { DecimalWithAggregatesFilterObjectSchema as DecimalWithAggregatesFilterObjectSchema } from './DecimalWithAggregatesFilter.schema'; +import { StringNullableWithAggregatesFilterObjectSchema as StringNullableWithAggregatesFilterObjectSchema } from './StringNullableWithAggregatesFilter.schema'; import { DateTimeWithAggregatesFilterObjectSchema as DateTimeWithAggregatesFilterObjectSchema } from './DateTimeWithAggregatesFilter.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const commissionbatchscalarwherewithaggregatesinputSchema = z.object({ AND: z.union([z.lazy(() => CommissionBatchScalarWhereWithAggregatesInputObjectSchema), z.lazy(() => CommissionBatchScalarWhereWithAggregatesInputObjectSchema).array()]).optional(), OR: z.lazy(() => CommissionBatchScalarWhereWithAggregatesInputObjectSchema).array().optional(), @@ -17,7 +18,7 @@ const commissionbatchscalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalCollection' must be a Decimal", @@ -26,7 +27,7 @@ const commissionbatchscalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchUncheckedCreateInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchUncheckedCreateInput.schema.js index a31605f5..85f26876 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchUncheckedCreateInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchUncheckedCreateInput.schema.js @@ -38,10 +38,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchUncheckedCreateInputObjectZodSchema = exports.CommissionBatchUncheckedCreateInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const CommissionBatchItemUncheckedCreateNestedManyWithoutCommissionBatchInput_schema_1 = require("./CommissionBatchItemUncheckedCreateNestedManyWithoutCommissionBatchInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), npiProviderId: z.number().int(), @@ -49,7 +48,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalCollection' must be a Decimal", @@ -58,7 +57,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchUncheckedCreateInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchUncheckedCreateInput.schema.ts index fce4f6a2..65edeadb 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchUncheckedCreateInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchUncheckedCreateInput.schema.ts @@ -1,9 +1,10 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; +import type { Prisma } from '../../../generated/prisma'; import { CommissionBatchItemUncheckedCreateNestedManyWithoutCommissionBatchInputObjectSchema as CommissionBatchItemUncheckedCreateNestedManyWithoutCommissionBatchInputObjectSchema } from './CommissionBatchItemUncheckedCreateNestedManyWithoutCommissionBatchInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), npiProviderId: z.number().int(), @@ -11,7 +12,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalCollection' must be a Decimal", @@ -20,7 +21,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchUncheckedCreateWithoutItemsInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchUncheckedCreateWithoutItemsInput.schema.js index 7ab2b60c..8c8aa9b8 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchUncheckedCreateWithoutItemsInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchUncheckedCreateWithoutItemsInput.schema.js @@ -38,9 +38,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchUncheckedCreateWithoutItemsInputObjectZodSchema = exports.CommissionBatchUncheckedCreateWithoutItemsInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), npiProviderId: z.number().int(), @@ -48,7 +47,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalCollection' must be a Decimal", @@ -57,7 +56,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchUncheckedCreateWithoutItemsInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchUncheckedCreateWithoutItemsInput.schema.ts index f3ee1d07..308bd52e 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchUncheckedCreateWithoutItemsInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchUncheckedCreateWithoutItemsInput.schema.ts @@ -1,9 +1,9 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; - +import type { Prisma } from '../../../generated/prisma'; import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), npiProviderId: z.number().int(), @@ -11,7 +11,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalCollection' must be a Decimal", @@ -20,7 +20,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchUncheckedCreateWithoutNpiProviderInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchUncheckedCreateWithoutNpiProviderInput.schema.js index 55256b14..8cd7db0a 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchUncheckedCreateWithoutNpiProviderInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchUncheckedCreateWithoutNpiProviderInput.schema.js @@ -38,17 +38,16 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchUncheckedCreateWithoutNpiProviderInputObjectZodSchema = exports.CommissionBatchUncheckedCreateWithoutNpiProviderInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const CommissionBatchItemUncheckedCreateNestedManyWithoutCommissionBatchInput_schema_1 = require("./CommissionBatchItemUncheckedCreateNestedManyWithoutCommissionBatchInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), totalCollection: z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalCollection' must be a Decimal", @@ -57,7 +56,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchUncheckedCreateWithoutNpiProviderInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchUncheckedCreateWithoutNpiProviderInput.schema.ts index cbfb9ca3..3110b0ad 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchUncheckedCreateWithoutNpiProviderInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchUncheckedCreateWithoutNpiProviderInput.schema.ts @@ -1,16 +1,17 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; +import type { Prisma } from '../../../generated/prisma'; import { CommissionBatchItemUncheckedCreateNestedManyWithoutCommissionBatchInputObjectSchema as CommissionBatchItemUncheckedCreateNestedManyWithoutCommissionBatchInputObjectSchema } from './CommissionBatchItemUncheckedCreateNestedManyWithoutCommissionBatchInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), totalCollection: z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalCollection' must be a Decimal", @@ -19,7 +20,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateInput.schema.js index 12b9d235..220a9a4d 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateInput.schema.js @@ -38,14 +38,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchUncheckedUpdateInputObjectZodSchema = exports.CommissionBatchUncheckedUpdateInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const CommissionBatchItemUncheckedUpdateManyWithoutCommissionBatchNestedInput_schema_1 = require("./CommissionBatchItemUncheckedUpdateManyWithoutCommissionBatchNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), npiProviderId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -53,7 +52,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalCollection' must be a Decimal", @@ -62,7 +61,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateInput.schema.ts index d5e53c57..d4e41131 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateInput.schema.ts @@ -1,13 +1,14 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; import { CommissionBatchItemUncheckedUpdateManyWithoutCommissionBatchNestedInputObjectSchema as CommissionBatchItemUncheckedUpdateManyWithoutCommissionBatchNestedInputObjectSchema } from './CommissionBatchItemUncheckedUpdateManyWithoutCommissionBatchNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), npiProviderId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -15,7 +16,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalCollection' must be a Decimal", @@ -24,7 +25,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateManyInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateManyInput.schema.js index 08795379..0420afcd 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateManyInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateManyInput.schema.js @@ -38,13 +38,12 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchUncheckedUpdateManyInputObjectZodSchema = exports.CommissionBatchUncheckedUpdateManyInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), npiProviderId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -52,7 +51,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalCollection' must be a Decimal", @@ -61,7 +60,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateManyInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateManyInput.schema.ts index 6a6d03e0..bce7a93b 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateManyInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateManyInput.schema.ts @@ -1,12 +1,13 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), npiProviderId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -14,7 +15,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalCollection' must be a Decimal", @@ -23,7 +24,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateManyWithoutNpiProviderInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateManyWithoutNpiProviderInput.schema.js index 474beb84..9600cae8 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateManyWithoutNpiProviderInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateManyWithoutNpiProviderInput.schema.js @@ -38,20 +38,19 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchUncheckedUpdateManyWithoutNpiProviderInputObjectZodSchema = exports.CommissionBatchUncheckedUpdateManyWithoutNpiProviderInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), totalCollection: z.union([z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalCollection' must be a Decimal", @@ -60,7 +59,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateManyWithoutNpiProviderInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateManyWithoutNpiProviderInput.schema.ts index f4b6584e..01f951a4 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateManyWithoutNpiProviderInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateManyWithoutNpiProviderInput.schema.ts @@ -1,19 +1,20 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), totalCollection: z.union([z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalCollection' must be a Decimal", @@ -22,7 +23,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateWithoutItemsInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateWithoutItemsInput.schema.js index 7c799584..7e2515ec 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateWithoutItemsInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateWithoutItemsInput.schema.js @@ -38,13 +38,12 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchUncheckedUpdateWithoutItemsInputObjectZodSchema = exports.CommissionBatchUncheckedUpdateWithoutItemsInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), npiProviderId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -52,7 +51,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalCollection' must be a Decimal", @@ -61,7 +60,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateWithoutItemsInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateWithoutItemsInput.schema.ts index 38e993fb..fd35ced7 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateWithoutItemsInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateWithoutItemsInput.schema.ts @@ -1,12 +1,13 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), npiProviderId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -14,7 +15,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalCollection' must be a Decimal", @@ -23,7 +24,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateWithoutNpiProviderInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateWithoutNpiProviderInput.schema.js index 2b14e2dd..746a849e 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateWithoutNpiProviderInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateWithoutNpiProviderInput.schema.js @@ -38,21 +38,20 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchUncheckedUpdateWithoutNpiProviderInputObjectZodSchema = exports.CommissionBatchUncheckedUpdateWithoutNpiProviderInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const CommissionBatchItemUncheckedUpdateManyWithoutCommissionBatchNestedInput_schema_1 = require("./CommissionBatchItemUncheckedUpdateManyWithoutCommissionBatchNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), totalCollection: z.union([z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalCollection' must be a Decimal", @@ -61,7 +60,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateWithoutNpiProviderInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateWithoutNpiProviderInput.schema.ts index 9f898427..63f17dcb 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateWithoutNpiProviderInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchUncheckedUpdateWithoutNpiProviderInput.schema.ts @@ -1,20 +1,21 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; import { CommissionBatchItemUncheckedUpdateManyWithoutCommissionBatchNestedInputObjectSchema as CommissionBatchItemUncheckedUpdateManyWithoutCommissionBatchNestedInputObjectSchema } from './CommissionBatchItemUncheckedUpdateManyWithoutCommissionBatchNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), totalCollection: z.union([z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalCollection' must be a Decimal", @@ -23,7 +24,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchUpdateInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchUpdateInput.schema.js index 082de4c0..48219475 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchUpdateInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchUpdateInput.schema.js @@ -38,20 +38,19 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchUpdateInputObjectZodSchema = exports.CommissionBatchUpdateInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const NpiProviderUpdateOneRequiredWithoutCommissionBatchesNestedInput_schema_1 = require("./NpiProviderUpdateOneRequiredWithoutCommissionBatchesNestedInput.schema"); const CommissionBatchItemUpdateManyWithoutCommissionBatchNestedInput_schema_1 = require("./CommissionBatchItemUpdateManyWithoutCommissionBatchNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ totalCollection: z.union([z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalCollection' must be a Decimal", @@ -60,7 +59,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchUpdateInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchUpdateInput.schema.ts index bd62dc0e..55f71da8 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchUpdateInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchUpdateInput.schema.ts @@ -1,19 +1,20 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; -import { NpiProviderUpdateOneRequiredWithoutCommissionBatchesNestedInputObjectSchema as NpiProviderUpdateOneRequiredWithoutCommissionBatchesNestedInputObjectSchema } from './NpiProviderUpdateOneRequiredWithoutCommissionBatchesNestedInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { NpiProviderUpdateOneRequiredWithoutCommissionBatchesNestedInputObjectSchema as NpiProviderUpdateOneRequiredWithoutCommissionBatchesNestedInputObjectSchema } from './NpiProviderUpdateOneRequiredWithoutCommissionBatchesNestedInput.schema'; import { CommissionBatchItemUpdateManyWithoutCommissionBatchNestedInputObjectSchema as CommissionBatchItemUpdateManyWithoutCommissionBatchNestedInputObjectSchema } from './CommissionBatchItemUpdateManyWithoutCommissionBatchNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ totalCollection: z.union([z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalCollection' must be a Decimal", @@ -22,7 +23,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchUpdateManyMutationInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchUpdateManyMutationInput.schema.js index ad4cd596..b4dd6bf7 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchUpdateManyMutationInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchUpdateManyMutationInput.schema.js @@ -38,18 +38,17 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchUpdateManyMutationInputObjectZodSchema = exports.CommissionBatchUpdateManyMutationInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ totalCollection: z.union([z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalCollection' must be a Decimal", @@ -58,7 +57,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchUpdateManyMutationInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchUpdateManyMutationInput.schema.ts index 1da19cf3..d47dcd6e 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchUpdateManyMutationInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchUpdateManyMutationInput.schema.ts @@ -1,17 +1,18 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ totalCollection: z.union([z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalCollection' must be a Decimal", @@ -20,7 +21,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchUpdateWithoutItemsInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchUpdateWithoutItemsInput.schema.js index 82b552ba..a940d441 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchUpdateWithoutItemsInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchUpdateWithoutItemsInput.schema.js @@ -38,19 +38,18 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchUpdateWithoutItemsInputObjectZodSchema = exports.CommissionBatchUpdateWithoutItemsInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const NpiProviderUpdateOneRequiredWithoutCommissionBatchesNestedInput_schema_1 = require("./NpiProviderUpdateOneRequiredWithoutCommissionBatchesNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ totalCollection: z.union([z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalCollection' must be a Decimal", @@ -59,7 +58,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchUpdateWithoutItemsInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchUpdateWithoutItemsInput.schema.ts index b45b2151..b402e70e 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchUpdateWithoutItemsInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchUpdateWithoutItemsInput.schema.ts @@ -1,18 +1,19 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; import { NpiProviderUpdateOneRequiredWithoutCommissionBatchesNestedInputObjectSchema as NpiProviderUpdateOneRequiredWithoutCommissionBatchesNestedInputObjectSchema } from './NpiProviderUpdateOneRequiredWithoutCommissionBatchesNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ totalCollection: z.union([z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalCollection' must be a Decimal", @@ -21,7 +22,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchUpdateWithoutNpiProviderInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchUpdateWithoutNpiProviderInput.schema.js index ddce0ff1..b29e72ce 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchUpdateWithoutNpiProviderInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchUpdateWithoutNpiProviderInput.schema.js @@ -38,19 +38,18 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchUpdateWithoutNpiProviderInputObjectZodSchema = exports.CommissionBatchUpdateWithoutNpiProviderInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const CommissionBatchItemUpdateManyWithoutCommissionBatchNestedInput_schema_1 = require("./CommissionBatchItemUpdateManyWithoutCommissionBatchNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ totalCollection: z.union([z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalCollection' must be a Decimal", @@ -59,7 +58,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchUpdateWithoutNpiProviderInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchUpdateWithoutNpiProviderInput.schema.ts index 92a1bc5c..3122a800 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchUpdateWithoutNpiProviderInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchUpdateWithoutNpiProviderInput.schema.ts @@ -1,18 +1,19 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; import { CommissionBatchItemUpdateManyWithoutCommissionBatchNestedInputObjectSchema as CommissionBatchItemUpdateManyWithoutCommissionBatchNestedInputObjectSchema } from './CommissionBatchItemUpdateManyWithoutCommissionBatchNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ totalCollection: z.union([z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalCollection' must be a Decimal", @@ -21,7 +22,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchWhereInput.schema.js b/packages/db/shared/schemas/objects/CommissionBatchWhereInput.schema.js index ffda1701..f417dbd4 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchWhereInput.schema.js +++ b/packages/db/shared/schemas/objects/CommissionBatchWhereInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.CommissionBatchWhereInputObjectZodSchema = exports.CommissionBatchWhereInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFilter_schema_1 = require("./IntFilter.schema"); const DecimalFilter_schema_1 = require("./DecimalFilter.schema"); const StringNullableFilter_schema_1 = require("./StringNullableFilter.schema"); @@ -48,6 +46,7 @@ const NpiProviderScalarRelationFilter_schema_1 = require("./NpiProviderScalarRel const NpiProviderWhereInput_schema_1 = require("./NpiProviderWhereInput.schema"); const CommissionBatchItemListRelationFilter_schema_1 = require("./CommissionBatchItemListRelationFilter.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const commissionbatchwhereinputSchema = z.object({ AND: z.union([z.lazy(() => exports.CommissionBatchWhereInputObjectSchema), z.lazy(() => exports.CommissionBatchWhereInputObjectSchema).array()]).optional(), OR: z.lazy(() => exports.CommissionBatchWhereInputObjectSchema).array().optional(), @@ -58,7 +57,7 @@ const commissionbatchwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalCollection' must be a Decimal", @@ -67,7 +66,7 @@ const commissionbatchwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/CommissionBatchWhereInput.schema.ts b/packages/db/shared/schemas/objects/CommissionBatchWhereInput.schema.ts index 45a7f078..1074a55c 100644 --- a/packages/db/shared/schemas/objects/CommissionBatchWhereInput.schema.ts +++ b/packages/db/shared/schemas/objects/CommissionBatchWhereInput.schema.ts @@ -1,15 +1,16 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFilterObjectSchema as IntFilterObjectSchema } from './IntFilter.schema'; -import { DecimalFilterObjectSchema as DecimalFilterObjectSchema } from './DecimalFilter.schema'; -import { StringNullableFilterObjectSchema as StringNullableFilterObjectSchema } from './StringNullableFilter.schema'; -import { DateTimeFilterObjectSchema as DateTimeFilterObjectSchema } from './DateTimeFilter.schema'; -import { NpiProviderScalarRelationFilterObjectSchema as NpiProviderScalarRelationFilterObjectSchema } from './NpiProviderScalarRelationFilter.schema'; -import { NpiProviderWhereInputObjectSchema as NpiProviderWhereInputObjectSchema } from './NpiProviderWhereInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFilterObjectSchema as IntFilterObjectSchema } from './IntFilter.schema'; +import { DecimalFilterObjectSchema as DecimalFilterObjectSchema } from './DecimalFilter.schema'; +import { StringNullableFilterObjectSchema as StringNullableFilterObjectSchema } from './StringNullableFilter.schema'; +import { DateTimeFilterObjectSchema as DateTimeFilterObjectSchema } from './DateTimeFilter.schema'; +import { NpiProviderScalarRelationFilterObjectSchema as NpiProviderScalarRelationFilterObjectSchema } from './NpiProviderScalarRelationFilter.schema'; +import { NpiProviderWhereInputObjectSchema as NpiProviderWhereInputObjectSchema } from './NpiProviderWhereInput.schema'; import { CommissionBatchItemListRelationFilterObjectSchema as CommissionBatchItemListRelationFilterObjectSchema } from './CommissionBatchItemListRelationFilter.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const commissionbatchwhereinputSchema = z.object({ AND: z.union([z.lazy(() => CommissionBatchWhereInputObjectSchema), z.lazy(() => CommissionBatchWhereInputObjectSchema).array()]).optional(), OR: z.lazy(() => CommissionBatchWhereInputObjectSchema).array().optional(), @@ -20,7 +21,7 @@ const commissionbatchwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalCollection' must be a Decimal", @@ -29,7 +30,7 @@ const commissionbatchwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'commissionAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/DecimalFieldUpdateOperationsInput.schema.js b/packages/db/shared/schemas/objects/DecimalFieldUpdateOperationsInput.schema.js index 5551dddc..33e8f08f 100644 --- a/packages/db/shared/schemas/objects/DecimalFieldUpdateOperationsInput.schema.js +++ b/packages/db/shared/schemas/objects/DecimalFieldUpdateOperationsInput.schema.js @@ -38,15 +38,14 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.DecimalFieldUpdateOperationsInputObjectZodSchema = exports.DecimalFieldUpdateOperationsInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ set: z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'set' must be a Decimal", @@ -55,7 +54,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'increment' must be a Decimal", @@ -64,7 +63,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'decrement' must be a Decimal", @@ -73,7 +72,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'multiply' must be a Decimal", @@ -82,7 +81,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'divide' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/DecimalFieldUpdateOperationsInput.schema.ts b/packages/db/shared/schemas/objects/DecimalFieldUpdateOperationsInput.schema.ts index cbd75823..3ef00956 100644 --- a/packages/db/shared/schemas/objects/DecimalFieldUpdateOperationsInput.schema.ts +++ b/packages/db/shared/schemas/objects/DecimalFieldUpdateOperationsInput.schema.ts @@ -1,15 +1,15 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; - +import type { Prisma } from '../../../generated/prisma'; import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ set: z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'set' must be a Decimal", @@ -18,7 +18,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'increment' must be a Decimal", @@ -27,7 +27,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'decrement' must be a Decimal", @@ -36,7 +36,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'multiply' must be a Decimal", @@ -45,7 +45,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'divide' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/DecimalFilter.schema.js b/packages/db/shared/schemas/objects/DecimalFilter.schema.js index 864db0f0..6d3f55fd 100644 --- a/packages/db/shared/schemas/objects/DecimalFilter.schema.js +++ b/packages/db/shared/schemas/objects/DecimalFilter.schema.js @@ -38,16 +38,15 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.DecimalFilterObjectZodSchema = exports.DecimalFilterObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const NestedDecimalFilter_schema_1 = require("./NestedDecimalFilter.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ equals: z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'equals' must be a Decimal", @@ -56,7 +55,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'in' must be a Decimal", @@ -65,7 +64,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'notIn' must be a Decimal", @@ -74,7 +73,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'lt' must be a Decimal", @@ -83,7 +82,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'lte' must be a Decimal", @@ -92,7 +91,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'gt' must be a Decimal", @@ -101,7 +100,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'gte' must be a Decimal", @@ -110,7 +109,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'not' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/DecimalFilter.schema.ts b/packages/db/shared/schemas/objects/DecimalFilter.schema.ts index 8cda5f02..64a79128 100644 --- a/packages/db/shared/schemas/objects/DecimalFilter.schema.ts +++ b/packages/db/shared/schemas/objects/DecimalFilter.schema.ts @@ -1,15 +1,16 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; +import type { Prisma } from '../../../generated/prisma'; import { NestedDecimalFilterObjectSchema as NestedDecimalFilterObjectSchema } from './NestedDecimalFilter.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ equals: z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'equals' must be a Decimal", @@ -18,7 +19,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'in' must be a Decimal", @@ -27,7 +28,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'notIn' must be a Decimal", @@ -36,7 +37,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'lt' must be a Decimal", @@ -45,7 +46,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'lte' must be a Decimal", @@ -54,7 +55,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'gt' must be a Decimal", @@ -63,7 +64,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'gte' must be a Decimal", @@ -72,7 +73,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'not' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/DecimalNullableFilter.schema.js b/packages/db/shared/schemas/objects/DecimalNullableFilter.schema.js index 0507d3e0..52dd89dd 100644 --- a/packages/db/shared/schemas/objects/DecimalNullableFilter.schema.js +++ b/packages/db/shared/schemas/objects/DecimalNullableFilter.schema.js @@ -38,16 +38,15 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.DecimalNullableFilterObjectZodSchema = exports.DecimalNullableFilterObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const NestedDecimalNullableFilter_schema_1 = require("./NestedDecimalNullableFilter.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ equals: z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'equals' must be a Decimal", @@ -56,7 +55,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'in' must be a Decimal", @@ -65,7 +64,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'notIn' must be a Decimal", @@ -74,7 +73,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'lt' must be a Decimal", @@ -83,7 +82,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'lte' must be a Decimal", @@ -92,7 +91,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'gt' must be a Decimal", @@ -101,7 +100,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'gte' must be a Decimal", @@ -110,7 +109,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'not' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/DecimalNullableFilter.schema.ts b/packages/db/shared/schemas/objects/DecimalNullableFilter.schema.ts index 5df89b5b..5d4567ea 100644 --- a/packages/db/shared/schemas/objects/DecimalNullableFilter.schema.ts +++ b/packages/db/shared/schemas/objects/DecimalNullableFilter.schema.ts @@ -1,15 +1,16 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; +import type { Prisma } from '../../../generated/prisma'; import { NestedDecimalNullableFilterObjectSchema as NestedDecimalNullableFilterObjectSchema } from './NestedDecimalNullableFilter.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ equals: z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'equals' must be a Decimal", @@ -18,7 +19,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'in' must be a Decimal", @@ -27,7 +28,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'notIn' must be a Decimal", @@ -36,7 +37,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'lt' must be a Decimal", @@ -45,7 +46,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'lte' must be a Decimal", @@ -54,7 +55,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'gt' must be a Decimal", @@ -63,7 +64,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'gte' must be a Decimal", @@ -72,7 +73,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'not' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/DecimalNullableWithAggregatesFilter.schema.js b/packages/db/shared/schemas/objects/DecimalNullableWithAggregatesFilter.schema.js index c4a48f01..6e684d87 100644 --- a/packages/db/shared/schemas/objects/DecimalNullableWithAggregatesFilter.schema.js +++ b/packages/db/shared/schemas/objects/DecimalNullableWithAggregatesFilter.schema.js @@ -38,18 +38,17 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.DecimalNullableWithAggregatesFilterObjectZodSchema = exports.DecimalNullableWithAggregatesFilterObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const NestedDecimalNullableWithAggregatesFilter_schema_1 = require("./NestedDecimalNullableWithAggregatesFilter.schema"); const NestedIntNullableFilter_schema_1 = require("./NestedIntNullableFilter.schema"); const NestedDecimalNullableFilter_schema_1 = require("./NestedDecimalNullableFilter.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ equals: z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'equals' must be a Decimal", @@ -58,7 +57,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'in' must be a Decimal", @@ -67,7 +66,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'notIn' must be a Decimal", @@ -76,7 +75,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'lt' must be a Decimal", @@ -85,7 +84,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'lte' must be a Decimal", @@ -94,7 +93,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'gt' must be a Decimal", @@ -103,7 +102,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'gte' must be a Decimal", @@ -112,7 +111,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'not' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/DecimalNullableWithAggregatesFilter.schema.ts b/packages/db/shared/schemas/objects/DecimalNullableWithAggregatesFilter.schema.ts index 8265d2ee..16311b5c 100644 --- a/packages/db/shared/schemas/objects/DecimalNullableWithAggregatesFilter.schema.ts +++ b/packages/db/shared/schemas/objects/DecimalNullableWithAggregatesFilter.schema.ts @@ -1,17 +1,18 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { NestedDecimalNullableWithAggregatesFilterObjectSchema as NestedDecimalNullableWithAggregatesFilterObjectSchema } from './NestedDecimalNullableWithAggregatesFilter.schema'; -import { NestedIntNullableFilterObjectSchema as NestedIntNullableFilterObjectSchema } from './NestedIntNullableFilter.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { NestedDecimalNullableWithAggregatesFilterObjectSchema as NestedDecimalNullableWithAggregatesFilterObjectSchema } from './NestedDecimalNullableWithAggregatesFilter.schema'; +import { NestedIntNullableFilterObjectSchema as NestedIntNullableFilterObjectSchema } from './NestedIntNullableFilter.schema'; import { NestedDecimalNullableFilterObjectSchema as NestedDecimalNullableFilterObjectSchema } from './NestedDecimalNullableFilter.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ equals: z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'equals' must be a Decimal", @@ -20,7 +21,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'in' must be a Decimal", @@ -29,7 +30,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'notIn' must be a Decimal", @@ -38,7 +39,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'lt' must be a Decimal", @@ -47,7 +48,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'lte' must be a Decimal", @@ -56,7 +57,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'gt' must be a Decimal", @@ -65,7 +66,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'gte' must be a Decimal", @@ -74,7 +75,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'not' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/DecimalWithAggregatesFilter.schema.js b/packages/db/shared/schemas/objects/DecimalWithAggregatesFilter.schema.js index 75741598..6be4ebd8 100644 --- a/packages/db/shared/schemas/objects/DecimalWithAggregatesFilter.schema.js +++ b/packages/db/shared/schemas/objects/DecimalWithAggregatesFilter.schema.js @@ -38,18 +38,17 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.DecimalWithAggregatesFilterObjectZodSchema = exports.DecimalWithAggregatesFilterObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const NestedDecimalWithAggregatesFilter_schema_1 = require("./NestedDecimalWithAggregatesFilter.schema"); const NestedIntFilter_schema_1 = require("./NestedIntFilter.schema"); const NestedDecimalFilter_schema_1 = require("./NestedDecimalFilter.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ equals: z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'equals' must be a Decimal", @@ -58,7 +57,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'in' must be a Decimal", @@ -67,7 +66,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'notIn' must be a Decimal", @@ -76,7 +75,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'lt' must be a Decimal", @@ -85,7 +84,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'lte' must be a Decimal", @@ -94,7 +93,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'gt' must be a Decimal", @@ -103,7 +102,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'gte' must be a Decimal", @@ -112,7 +111,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'not' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/DecimalWithAggregatesFilter.schema.ts b/packages/db/shared/schemas/objects/DecimalWithAggregatesFilter.schema.ts index a52c01bb..014be08a 100644 --- a/packages/db/shared/schemas/objects/DecimalWithAggregatesFilter.schema.ts +++ b/packages/db/shared/schemas/objects/DecimalWithAggregatesFilter.schema.ts @@ -1,17 +1,18 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { NestedDecimalWithAggregatesFilterObjectSchema as NestedDecimalWithAggregatesFilterObjectSchema } from './NestedDecimalWithAggregatesFilter.schema'; -import { NestedIntFilterObjectSchema as NestedIntFilterObjectSchema } from './NestedIntFilter.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { NestedDecimalWithAggregatesFilterObjectSchema as NestedDecimalWithAggregatesFilterObjectSchema } from './NestedDecimalWithAggregatesFilter.schema'; +import { NestedIntFilterObjectSchema as NestedIntFilterObjectSchema } from './NestedIntFilter.schema'; import { NestedDecimalFilterObjectSchema as NestedDecimalFilterObjectSchema } from './NestedDecimalFilter.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ equals: z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'equals' must be a Decimal", @@ -20,7 +21,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'in' must be a Decimal", @@ -29,7 +30,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'notIn' must be a Decimal", @@ -38,7 +39,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'lt' must be a Decimal", @@ -47,7 +48,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'lte' must be a Decimal", @@ -56,7 +57,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'gt' must be a Decimal", @@ -65,7 +66,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'gte' must be a Decimal", @@ -74,7 +75,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'not' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/LabRxTemplateArgs.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateArgs.schema.js new file mode 100644 index 00000000..7ee4c596 --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateArgs.schema.js @@ -0,0 +1,45 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateArgsObjectZodSchema = exports.LabRxTemplateArgsObjectSchema = void 0; +const z = __importStar(require("zod")); +const LabRxTemplateSelect_schema_1 = require("./LabRxTemplateSelect.schema"); +const LabRxTemplateInclude_schema_1 = require("./LabRxTemplateInclude.schema"); +const makeSchema = () => z.object({ + select: z.lazy(() => LabRxTemplateSelect_schema_1.LabRxTemplateSelectObjectSchema).optional(), + include: z.lazy(() => LabRxTemplateInclude_schema_1.LabRxTemplateIncludeObjectSchema).optional() +}).strict(); +exports.LabRxTemplateArgsObjectSchema = makeSchema(); +exports.LabRxTemplateArgsObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateAvgAggregateInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateAvgAggregateInput.schema.js new file mode 100644 index 00000000..4c1ba5b9 --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateAvgAggregateInput.schema.js @@ -0,0 +1,44 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateAvgAggregateInputObjectZodSchema = exports.LabRxTemplateAvgAggregateInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const makeSchema = () => z.object({ + id: z.literal(true).optional(), + userId: z.literal(true).optional(), + sortOrder: z.literal(true).optional() +}).strict(); +exports.LabRxTemplateAvgAggregateInputObjectSchema = makeSchema(); +exports.LabRxTemplateAvgAggregateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateAvgOrderByAggregateInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateAvgOrderByAggregateInput.schema.js new file mode 100644 index 00000000..890974e5 --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateAvgOrderByAggregateInput.schema.js @@ -0,0 +1,45 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateAvgOrderByAggregateInputObjectZodSchema = exports.LabRxTemplateAvgOrderByAggregateInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const SortOrder_schema_1 = require("../enums/SortOrder.schema"); +const makeSchema = () => z.object({ + id: SortOrder_schema_1.SortOrderSchema.optional(), + userId: SortOrder_schema_1.SortOrderSchema.optional(), + sortOrder: SortOrder_schema_1.SortOrderSchema.optional() +}).strict(); +exports.LabRxTemplateAvgOrderByAggregateInputObjectSchema = makeSchema(); +exports.LabRxTemplateAvgOrderByAggregateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateCountAggregateInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateCountAggregateInput.schema.js new file mode 100644 index 00000000..fb8db97b --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateCountAggregateInput.schema.js @@ -0,0 +1,56 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateCountAggregateInputObjectZodSchema = exports.LabRxTemplateCountAggregateInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const makeSchema = () => z.object({ + id: z.literal(true).optional(), + userId: z.literal(true).optional(), + name: z.literal(true).optional(), + labName: z.literal(true).optional(), + labPhone: z.literal(true).optional(), + labFax: z.literal(true).optional(), + labAddress: z.literal(true).optional(), + labAccount: z.literal(true).optional(), + caseType: z.literal(true).optional(), + material: z.literal(true).optional(), + instructions: z.literal(true).optional(), + sortOrder: z.literal(true).optional(), + createdAt: z.literal(true).optional(), + updatedAt: z.literal(true).optional(), + _all: z.literal(true).optional() +}).strict(); +exports.LabRxTemplateCountAggregateInputObjectSchema = makeSchema(); +exports.LabRxTemplateCountAggregateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateCountOrderByAggregateInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateCountOrderByAggregateInput.schema.js new file mode 100644 index 00000000..44742446 --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateCountOrderByAggregateInput.schema.js @@ -0,0 +1,56 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateCountOrderByAggregateInputObjectZodSchema = exports.LabRxTemplateCountOrderByAggregateInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const SortOrder_schema_1 = require("../enums/SortOrder.schema"); +const makeSchema = () => z.object({ + id: SortOrder_schema_1.SortOrderSchema.optional(), + userId: SortOrder_schema_1.SortOrderSchema.optional(), + name: SortOrder_schema_1.SortOrderSchema.optional(), + labName: SortOrder_schema_1.SortOrderSchema.optional(), + labPhone: SortOrder_schema_1.SortOrderSchema.optional(), + labFax: SortOrder_schema_1.SortOrderSchema.optional(), + labAddress: SortOrder_schema_1.SortOrderSchema.optional(), + labAccount: SortOrder_schema_1.SortOrderSchema.optional(), + caseType: SortOrder_schema_1.SortOrderSchema.optional(), + material: SortOrder_schema_1.SortOrderSchema.optional(), + instructions: SortOrder_schema_1.SortOrderSchema.optional(), + sortOrder: SortOrder_schema_1.SortOrderSchema.optional(), + createdAt: SortOrder_schema_1.SortOrderSchema.optional(), + updatedAt: SortOrder_schema_1.SortOrderSchema.optional() +}).strict(); +exports.LabRxTemplateCountOrderByAggregateInputObjectSchema = makeSchema(); +exports.LabRxTemplateCountOrderByAggregateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateCreateInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateCreateInput.schema.js new file mode 100644 index 00000000..89d05b99 --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateCreateInput.schema.js @@ -0,0 +1,54 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateCreateInputObjectZodSchema = exports.LabRxTemplateCreateInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const UserCreateNestedOneWithoutLabRxTemplatesInput_schema_1 = require("./UserCreateNestedOneWithoutLabRxTemplatesInput.schema"); +const makeSchema = () => z.object({ + name: z.string(), + labName: z.string().optional().nullable(), + labPhone: z.string().optional().nullable(), + labFax: z.string().optional().nullable(), + labAddress: z.string().optional().nullable(), + labAccount: z.string().optional().nullable(), + caseType: z.string().optional().nullable(), + material: z.string().optional().nullable(), + instructions: z.string().optional().nullable(), + sortOrder: z.number().int().optional(), + createdAt: z.coerce.date().optional(), + user: z.lazy(() => UserCreateNestedOneWithoutLabRxTemplatesInput_schema_1.UserCreateNestedOneWithoutLabRxTemplatesInputObjectSchema) +}).strict(); +exports.LabRxTemplateCreateInputObjectSchema = makeSchema(); +exports.LabRxTemplateCreateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateCreateManyInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateCreateManyInput.schema.js new file mode 100644 index 00000000..93d52ff3 --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateCreateManyInput.schema.js @@ -0,0 +1,55 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateCreateManyInputObjectZodSchema = exports.LabRxTemplateCreateManyInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const makeSchema = () => z.object({ + id: z.number().int().optional(), + userId: z.number().int(), + name: z.string(), + labName: z.string().optional().nullable(), + labPhone: z.string().optional().nullable(), + labFax: z.string().optional().nullable(), + labAddress: z.string().optional().nullable(), + labAccount: z.string().optional().nullable(), + caseType: z.string().optional().nullable(), + material: z.string().optional().nullable(), + instructions: z.string().optional().nullable(), + sortOrder: z.number().int().optional(), + createdAt: z.coerce.date().optional(), + updatedAt: z.coerce.date().optional() +}).strict(); +exports.LabRxTemplateCreateManyInputObjectSchema = makeSchema(); +exports.LabRxTemplateCreateManyInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateCreateManyUserInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateCreateManyUserInput.schema.js new file mode 100644 index 00000000..ac0d28e9 --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateCreateManyUserInput.schema.js @@ -0,0 +1,54 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateCreateManyUserInputObjectZodSchema = exports.LabRxTemplateCreateManyUserInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const makeSchema = () => z.object({ + id: z.number().int().optional(), + name: z.string(), + labName: z.string().optional().nullable(), + labPhone: z.string().optional().nullable(), + labFax: z.string().optional().nullable(), + labAddress: z.string().optional().nullable(), + labAccount: z.string().optional().nullable(), + caseType: z.string().optional().nullable(), + material: z.string().optional().nullable(), + instructions: z.string().optional().nullable(), + sortOrder: z.number().int().optional(), + createdAt: z.coerce.date().optional(), + updatedAt: z.coerce.date().optional() +}).strict(); +exports.LabRxTemplateCreateManyUserInputObjectSchema = makeSchema(); +exports.LabRxTemplateCreateManyUserInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateCreateManyUserInputEnvelope.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateCreateManyUserInputEnvelope.schema.js new file mode 100644 index 00000000..009c0105 --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateCreateManyUserInputEnvelope.schema.js @@ -0,0 +1,44 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateCreateManyUserInputEnvelopeObjectZodSchema = exports.LabRxTemplateCreateManyUserInputEnvelopeObjectSchema = void 0; +const z = __importStar(require("zod")); +const LabRxTemplateCreateManyUserInput_schema_1 = require("./LabRxTemplateCreateManyUserInput.schema"); +const makeSchema = () => z.object({ + data: z.union([z.lazy(() => LabRxTemplateCreateManyUserInput_schema_1.LabRxTemplateCreateManyUserInputObjectSchema), z.lazy(() => LabRxTemplateCreateManyUserInput_schema_1.LabRxTemplateCreateManyUserInputObjectSchema).array()]), + skipDuplicates: z.boolean().optional() +}).strict(); +exports.LabRxTemplateCreateManyUserInputEnvelopeObjectSchema = makeSchema(); +exports.LabRxTemplateCreateManyUserInputEnvelopeObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateCreateNestedManyWithoutUserInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateCreateNestedManyWithoutUserInput.schema.js new file mode 100644 index 00000000..d44a5441 --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateCreateNestedManyWithoutUserInput.schema.js @@ -0,0 +1,50 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateCreateNestedManyWithoutUserInputObjectZodSchema = exports.LabRxTemplateCreateNestedManyWithoutUserInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const LabRxTemplateCreateWithoutUserInput_schema_1 = require("./LabRxTemplateCreateWithoutUserInput.schema"); +const LabRxTemplateUncheckedCreateWithoutUserInput_schema_1 = require("./LabRxTemplateUncheckedCreateWithoutUserInput.schema"); +const LabRxTemplateCreateOrConnectWithoutUserInput_schema_1 = require("./LabRxTemplateCreateOrConnectWithoutUserInput.schema"); +const LabRxTemplateCreateManyUserInputEnvelope_schema_1 = require("./LabRxTemplateCreateManyUserInputEnvelope.schema"); +const LabRxTemplateWhereUniqueInput_schema_1 = require("./LabRxTemplateWhereUniqueInput.schema"); +const makeSchema = () => z.object({ + create: z.union([z.lazy(() => LabRxTemplateCreateWithoutUserInput_schema_1.LabRxTemplateCreateWithoutUserInputObjectSchema), z.lazy(() => LabRxTemplateCreateWithoutUserInput_schema_1.LabRxTemplateCreateWithoutUserInputObjectSchema).array(), z.lazy(() => LabRxTemplateUncheckedCreateWithoutUserInput_schema_1.LabRxTemplateUncheckedCreateWithoutUserInputObjectSchema), z.lazy(() => LabRxTemplateUncheckedCreateWithoutUserInput_schema_1.LabRxTemplateUncheckedCreateWithoutUserInputObjectSchema).array()]).optional(), + connectOrCreate: z.union([z.lazy(() => LabRxTemplateCreateOrConnectWithoutUserInput_schema_1.LabRxTemplateCreateOrConnectWithoutUserInputObjectSchema), z.lazy(() => LabRxTemplateCreateOrConnectWithoutUserInput_schema_1.LabRxTemplateCreateOrConnectWithoutUserInputObjectSchema).array()]).optional(), + createMany: z.lazy(() => LabRxTemplateCreateManyUserInputEnvelope_schema_1.LabRxTemplateCreateManyUserInputEnvelopeObjectSchema).optional(), + connect: z.union([z.lazy(() => LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema), z.lazy(() => LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema).array()]).optional() +}).strict(); +exports.LabRxTemplateCreateNestedManyWithoutUserInputObjectSchema = makeSchema(); +exports.LabRxTemplateCreateNestedManyWithoutUserInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateCreateOrConnectWithoutUserInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateCreateOrConnectWithoutUserInput.schema.js new file mode 100644 index 00000000..4d697d01 --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateCreateOrConnectWithoutUserInput.schema.js @@ -0,0 +1,46 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateCreateOrConnectWithoutUserInputObjectZodSchema = exports.LabRxTemplateCreateOrConnectWithoutUserInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const LabRxTemplateWhereUniqueInput_schema_1 = require("./LabRxTemplateWhereUniqueInput.schema"); +const LabRxTemplateCreateWithoutUserInput_schema_1 = require("./LabRxTemplateCreateWithoutUserInput.schema"); +const LabRxTemplateUncheckedCreateWithoutUserInput_schema_1 = require("./LabRxTemplateUncheckedCreateWithoutUserInput.schema"); +const makeSchema = () => z.object({ + where: z.lazy(() => LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema), + create: z.union([z.lazy(() => LabRxTemplateCreateWithoutUserInput_schema_1.LabRxTemplateCreateWithoutUserInputObjectSchema), z.lazy(() => LabRxTemplateUncheckedCreateWithoutUserInput_schema_1.LabRxTemplateUncheckedCreateWithoutUserInputObjectSchema)]) +}).strict(); +exports.LabRxTemplateCreateOrConnectWithoutUserInputObjectSchema = makeSchema(); +exports.LabRxTemplateCreateOrConnectWithoutUserInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateCreateWithoutUserInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateCreateWithoutUserInput.schema.js new file mode 100644 index 00000000..a3e28843 --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateCreateWithoutUserInput.schema.js @@ -0,0 +1,53 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateCreateWithoutUserInputObjectZodSchema = exports.LabRxTemplateCreateWithoutUserInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const makeSchema = () => z.object({ + name: z.string(), + labName: z.string().optional().nullable(), + labPhone: z.string().optional().nullable(), + labFax: z.string().optional().nullable(), + labAddress: z.string().optional().nullable(), + labAccount: z.string().optional().nullable(), + caseType: z.string().optional().nullable(), + material: z.string().optional().nullable(), + instructions: z.string().optional().nullable(), + sortOrder: z.number().int().optional(), + createdAt: z.coerce.date().optional(), + updatedAt: z.coerce.date().optional() +}).strict(); +exports.LabRxTemplateCreateWithoutUserInputObjectSchema = makeSchema(); +exports.LabRxTemplateCreateWithoutUserInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateInclude.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateInclude.schema.js new file mode 100644 index 00000000..57c8281f --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateInclude.schema.js @@ -0,0 +1,43 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateIncludeObjectZodSchema = exports.LabRxTemplateIncludeObjectSchema = void 0; +const z = __importStar(require("zod")); +const UserArgs_schema_1 = require("./UserArgs.schema"); +const makeSchema = () => z.object({ + user: z.union([z.boolean(), z.lazy(() => UserArgs_schema_1.UserArgsObjectSchema)]).optional() +}).strict(); +exports.LabRxTemplateIncludeObjectSchema = makeSchema(); +exports.LabRxTemplateIncludeObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateListRelationFilter.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateListRelationFilter.schema.js new file mode 100644 index 00000000..70a9e1de --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateListRelationFilter.schema.js @@ -0,0 +1,45 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateListRelationFilterObjectZodSchema = exports.LabRxTemplateListRelationFilterObjectSchema = void 0; +const z = __importStar(require("zod")); +const LabRxTemplateWhereInput_schema_1 = require("./LabRxTemplateWhereInput.schema"); +const makeSchema = () => z.object({ + every: z.lazy(() => LabRxTemplateWhereInput_schema_1.LabRxTemplateWhereInputObjectSchema).optional(), + some: z.lazy(() => LabRxTemplateWhereInput_schema_1.LabRxTemplateWhereInputObjectSchema).optional(), + none: z.lazy(() => LabRxTemplateWhereInput_schema_1.LabRxTemplateWhereInputObjectSchema).optional() +}).strict(); +exports.LabRxTemplateListRelationFilterObjectSchema = makeSchema(); +exports.LabRxTemplateListRelationFilterObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateMaxAggregateInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateMaxAggregateInput.schema.js new file mode 100644 index 00000000..4d879b4b --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateMaxAggregateInput.schema.js @@ -0,0 +1,55 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateMaxAggregateInputObjectZodSchema = exports.LabRxTemplateMaxAggregateInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const makeSchema = () => z.object({ + id: z.literal(true).optional(), + userId: z.literal(true).optional(), + name: z.literal(true).optional(), + labName: z.literal(true).optional(), + labPhone: z.literal(true).optional(), + labFax: z.literal(true).optional(), + labAddress: z.literal(true).optional(), + labAccount: z.literal(true).optional(), + caseType: z.literal(true).optional(), + material: z.literal(true).optional(), + instructions: z.literal(true).optional(), + sortOrder: z.literal(true).optional(), + createdAt: z.literal(true).optional(), + updatedAt: z.literal(true).optional() +}).strict(); +exports.LabRxTemplateMaxAggregateInputObjectSchema = makeSchema(); +exports.LabRxTemplateMaxAggregateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateMaxOrderByAggregateInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateMaxOrderByAggregateInput.schema.js new file mode 100644 index 00000000..68677ad6 --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateMaxOrderByAggregateInput.schema.js @@ -0,0 +1,56 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateMaxOrderByAggregateInputObjectZodSchema = exports.LabRxTemplateMaxOrderByAggregateInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const SortOrder_schema_1 = require("../enums/SortOrder.schema"); +const makeSchema = () => z.object({ + id: SortOrder_schema_1.SortOrderSchema.optional(), + userId: SortOrder_schema_1.SortOrderSchema.optional(), + name: SortOrder_schema_1.SortOrderSchema.optional(), + labName: SortOrder_schema_1.SortOrderSchema.optional(), + labPhone: SortOrder_schema_1.SortOrderSchema.optional(), + labFax: SortOrder_schema_1.SortOrderSchema.optional(), + labAddress: SortOrder_schema_1.SortOrderSchema.optional(), + labAccount: SortOrder_schema_1.SortOrderSchema.optional(), + caseType: SortOrder_schema_1.SortOrderSchema.optional(), + material: SortOrder_schema_1.SortOrderSchema.optional(), + instructions: SortOrder_schema_1.SortOrderSchema.optional(), + sortOrder: SortOrder_schema_1.SortOrderSchema.optional(), + createdAt: SortOrder_schema_1.SortOrderSchema.optional(), + updatedAt: SortOrder_schema_1.SortOrderSchema.optional() +}).strict(); +exports.LabRxTemplateMaxOrderByAggregateInputObjectSchema = makeSchema(); +exports.LabRxTemplateMaxOrderByAggregateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateMinAggregateInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateMinAggregateInput.schema.js new file mode 100644 index 00000000..518bd183 --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateMinAggregateInput.schema.js @@ -0,0 +1,55 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateMinAggregateInputObjectZodSchema = exports.LabRxTemplateMinAggregateInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const makeSchema = () => z.object({ + id: z.literal(true).optional(), + userId: z.literal(true).optional(), + name: z.literal(true).optional(), + labName: z.literal(true).optional(), + labPhone: z.literal(true).optional(), + labFax: z.literal(true).optional(), + labAddress: z.literal(true).optional(), + labAccount: z.literal(true).optional(), + caseType: z.literal(true).optional(), + material: z.literal(true).optional(), + instructions: z.literal(true).optional(), + sortOrder: z.literal(true).optional(), + createdAt: z.literal(true).optional(), + updatedAt: z.literal(true).optional() +}).strict(); +exports.LabRxTemplateMinAggregateInputObjectSchema = makeSchema(); +exports.LabRxTemplateMinAggregateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateMinOrderByAggregateInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateMinOrderByAggregateInput.schema.js new file mode 100644 index 00000000..bda23c61 --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateMinOrderByAggregateInput.schema.js @@ -0,0 +1,56 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateMinOrderByAggregateInputObjectZodSchema = exports.LabRxTemplateMinOrderByAggregateInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const SortOrder_schema_1 = require("../enums/SortOrder.schema"); +const makeSchema = () => z.object({ + id: SortOrder_schema_1.SortOrderSchema.optional(), + userId: SortOrder_schema_1.SortOrderSchema.optional(), + name: SortOrder_schema_1.SortOrderSchema.optional(), + labName: SortOrder_schema_1.SortOrderSchema.optional(), + labPhone: SortOrder_schema_1.SortOrderSchema.optional(), + labFax: SortOrder_schema_1.SortOrderSchema.optional(), + labAddress: SortOrder_schema_1.SortOrderSchema.optional(), + labAccount: SortOrder_schema_1.SortOrderSchema.optional(), + caseType: SortOrder_schema_1.SortOrderSchema.optional(), + material: SortOrder_schema_1.SortOrderSchema.optional(), + instructions: SortOrder_schema_1.SortOrderSchema.optional(), + sortOrder: SortOrder_schema_1.SortOrderSchema.optional(), + createdAt: SortOrder_schema_1.SortOrderSchema.optional(), + updatedAt: SortOrder_schema_1.SortOrderSchema.optional() +}).strict(); +exports.LabRxTemplateMinOrderByAggregateInputObjectSchema = makeSchema(); +exports.LabRxTemplateMinOrderByAggregateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateOrderByRelationAggregateInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateOrderByRelationAggregateInput.schema.js new file mode 100644 index 00000000..34bfb34b --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateOrderByRelationAggregateInput.schema.js @@ -0,0 +1,43 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateOrderByRelationAggregateInputObjectZodSchema = exports.LabRxTemplateOrderByRelationAggregateInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const SortOrder_schema_1 = require("../enums/SortOrder.schema"); +const makeSchema = () => z.object({ + _count: SortOrder_schema_1.SortOrderSchema.optional() +}).strict(); +exports.LabRxTemplateOrderByRelationAggregateInputObjectSchema = makeSchema(); +exports.LabRxTemplateOrderByRelationAggregateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateOrderByWithAggregationInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateOrderByWithAggregationInput.schema.js new file mode 100644 index 00000000..daccd9ab --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateOrderByWithAggregationInput.schema.js @@ -0,0 +1,67 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateOrderByWithAggregationInputObjectZodSchema = exports.LabRxTemplateOrderByWithAggregationInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const SortOrder_schema_1 = require("../enums/SortOrder.schema"); +const SortOrderInput_schema_1 = require("./SortOrderInput.schema"); +const LabRxTemplateCountOrderByAggregateInput_schema_1 = require("./LabRxTemplateCountOrderByAggregateInput.schema"); +const LabRxTemplateAvgOrderByAggregateInput_schema_1 = require("./LabRxTemplateAvgOrderByAggregateInput.schema"); +const LabRxTemplateMaxOrderByAggregateInput_schema_1 = require("./LabRxTemplateMaxOrderByAggregateInput.schema"); +const LabRxTemplateMinOrderByAggregateInput_schema_1 = require("./LabRxTemplateMinOrderByAggregateInput.schema"); +const LabRxTemplateSumOrderByAggregateInput_schema_1 = require("./LabRxTemplateSumOrderByAggregateInput.schema"); +const makeSchema = () => z.object({ + id: SortOrder_schema_1.SortOrderSchema.optional(), + userId: SortOrder_schema_1.SortOrderSchema.optional(), + name: SortOrder_schema_1.SortOrderSchema.optional(), + labName: z.union([SortOrder_schema_1.SortOrderSchema, z.lazy(() => SortOrderInput_schema_1.SortOrderInputObjectSchema)]).optional(), + labPhone: z.union([SortOrder_schema_1.SortOrderSchema, z.lazy(() => SortOrderInput_schema_1.SortOrderInputObjectSchema)]).optional(), + labFax: z.union([SortOrder_schema_1.SortOrderSchema, z.lazy(() => SortOrderInput_schema_1.SortOrderInputObjectSchema)]).optional(), + labAddress: z.union([SortOrder_schema_1.SortOrderSchema, z.lazy(() => SortOrderInput_schema_1.SortOrderInputObjectSchema)]).optional(), + labAccount: z.union([SortOrder_schema_1.SortOrderSchema, z.lazy(() => SortOrderInput_schema_1.SortOrderInputObjectSchema)]).optional(), + caseType: z.union([SortOrder_schema_1.SortOrderSchema, z.lazy(() => SortOrderInput_schema_1.SortOrderInputObjectSchema)]).optional(), + material: z.union([SortOrder_schema_1.SortOrderSchema, z.lazy(() => SortOrderInput_schema_1.SortOrderInputObjectSchema)]).optional(), + instructions: z.union([SortOrder_schema_1.SortOrderSchema, z.lazy(() => SortOrderInput_schema_1.SortOrderInputObjectSchema)]).optional(), + sortOrder: SortOrder_schema_1.SortOrderSchema.optional(), + createdAt: SortOrder_schema_1.SortOrderSchema.optional(), + updatedAt: SortOrder_schema_1.SortOrderSchema.optional(), + _count: z.lazy(() => LabRxTemplateCountOrderByAggregateInput_schema_1.LabRxTemplateCountOrderByAggregateInputObjectSchema).optional(), + _avg: z.lazy(() => LabRxTemplateAvgOrderByAggregateInput_schema_1.LabRxTemplateAvgOrderByAggregateInputObjectSchema).optional(), + _max: z.lazy(() => LabRxTemplateMaxOrderByAggregateInput_schema_1.LabRxTemplateMaxOrderByAggregateInputObjectSchema).optional(), + _min: z.lazy(() => LabRxTemplateMinOrderByAggregateInput_schema_1.LabRxTemplateMinOrderByAggregateInputObjectSchema).optional(), + _sum: z.lazy(() => LabRxTemplateSumOrderByAggregateInput_schema_1.LabRxTemplateSumOrderByAggregateInputObjectSchema).optional() +}).strict(); +exports.LabRxTemplateOrderByWithAggregationInputObjectSchema = makeSchema(); +exports.LabRxTemplateOrderByWithAggregationInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateOrderByWithRelationInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateOrderByWithRelationInput.schema.js new file mode 100644 index 00000000..c50f21ef --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateOrderByWithRelationInput.schema.js @@ -0,0 +1,59 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateOrderByWithRelationInputObjectZodSchema = exports.LabRxTemplateOrderByWithRelationInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const SortOrder_schema_1 = require("../enums/SortOrder.schema"); +const SortOrderInput_schema_1 = require("./SortOrderInput.schema"); +const UserOrderByWithRelationInput_schema_1 = require("./UserOrderByWithRelationInput.schema"); +const makeSchema = () => z.object({ + id: SortOrder_schema_1.SortOrderSchema.optional(), + userId: SortOrder_schema_1.SortOrderSchema.optional(), + name: SortOrder_schema_1.SortOrderSchema.optional(), + labName: z.union([SortOrder_schema_1.SortOrderSchema, z.lazy(() => SortOrderInput_schema_1.SortOrderInputObjectSchema)]).optional(), + labPhone: z.union([SortOrder_schema_1.SortOrderSchema, z.lazy(() => SortOrderInput_schema_1.SortOrderInputObjectSchema)]).optional(), + labFax: z.union([SortOrder_schema_1.SortOrderSchema, z.lazy(() => SortOrderInput_schema_1.SortOrderInputObjectSchema)]).optional(), + labAddress: z.union([SortOrder_schema_1.SortOrderSchema, z.lazy(() => SortOrderInput_schema_1.SortOrderInputObjectSchema)]).optional(), + labAccount: z.union([SortOrder_schema_1.SortOrderSchema, z.lazy(() => SortOrderInput_schema_1.SortOrderInputObjectSchema)]).optional(), + caseType: z.union([SortOrder_schema_1.SortOrderSchema, z.lazy(() => SortOrderInput_schema_1.SortOrderInputObjectSchema)]).optional(), + material: z.union([SortOrder_schema_1.SortOrderSchema, z.lazy(() => SortOrderInput_schema_1.SortOrderInputObjectSchema)]).optional(), + instructions: z.union([SortOrder_schema_1.SortOrderSchema, z.lazy(() => SortOrderInput_schema_1.SortOrderInputObjectSchema)]).optional(), + sortOrder: SortOrder_schema_1.SortOrderSchema.optional(), + createdAt: SortOrder_schema_1.SortOrderSchema.optional(), + updatedAt: SortOrder_schema_1.SortOrderSchema.optional(), + user: z.lazy(() => UserOrderByWithRelationInput_schema_1.UserOrderByWithRelationInputObjectSchema).optional() +}).strict(); +exports.LabRxTemplateOrderByWithRelationInputObjectSchema = makeSchema(); +exports.LabRxTemplateOrderByWithRelationInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateScalarWhereInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateScalarWhereInput.schema.js new file mode 100644 index 00000000..44eb576d --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateScalarWhereInput.schema.js @@ -0,0 +1,62 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateScalarWhereInputObjectZodSchema = exports.LabRxTemplateScalarWhereInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const IntFilter_schema_1 = require("./IntFilter.schema"); +const StringFilter_schema_1 = require("./StringFilter.schema"); +const StringNullableFilter_schema_1 = require("./StringNullableFilter.schema"); +const DateTimeFilter_schema_1 = require("./DateTimeFilter.schema"); +const labrxtemplatescalarwhereinputSchema = z.object({ + AND: z.union([z.lazy(() => exports.LabRxTemplateScalarWhereInputObjectSchema), z.lazy(() => exports.LabRxTemplateScalarWhereInputObjectSchema).array()]).optional(), + OR: z.lazy(() => exports.LabRxTemplateScalarWhereInputObjectSchema).array().optional(), + NOT: z.union([z.lazy(() => exports.LabRxTemplateScalarWhereInputObjectSchema), z.lazy(() => exports.LabRxTemplateScalarWhereInputObjectSchema).array()]).optional(), + id: z.union([z.lazy(() => IntFilter_schema_1.IntFilterObjectSchema), z.number().int()]).optional(), + userId: z.union([z.lazy(() => IntFilter_schema_1.IntFilterObjectSchema), z.number().int()]).optional(), + name: z.union([z.lazy(() => StringFilter_schema_1.StringFilterObjectSchema), z.string()]).optional(), + labName: z.union([z.lazy(() => StringNullableFilter_schema_1.StringNullableFilterObjectSchema), z.string()]).optional().nullable(), + labPhone: z.union([z.lazy(() => StringNullableFilter_schema_1.StringNullableFilterObjectSchema), z.string()]).optional().nullable(), + labFax: z.union([z.lazy(() => StringNullableFilter_schema_1.StringNullableFilterObjectSchema), z.string()]).optional().nullable(), + labAddress: z.union([z.lazy(() => StringNullableFilter_schema_1.StringNullableFilterObjectSchema), z.string()]).optional().nullable(), + labAccount: z.union([z.lazy(() => StringNullableFilter_schema_1.StringNullableFilterObjectSchema), z.string()]).optional().nullable(), + caseType: z.union([z.lazy(() => StringNullableFilter_schema_1.StringNullableFilterObjectSchema), z.string()]).optional().nullable(), + material: z.union([z.lazy(() => StringNullableFilter_schema_1.StringNullableFilterObjectSchema), z.string()]).optional().nullable(), + instructions: z.union([z.lazy(() => StringNullableFilter_schema_1.StringNullableFilterObjectSchema), z.string()]).optional().nullable(), + sortOrder: z.union([z.lazy(() => IntFilter_schema_1.IntFilterObjectSchema), z.number().int()]).optional(), + createdAt: z.union([z.lazy(() => DateTimeFilter_schema_1.DateTimeFilterObjectSchema), z.coerce.date()]).optional(), + updatedAt: z.union([z.lazy(() => DateTimeFilter_schema_1.DateTimeFilterObjectSchema), z.coerce.date()]).optional() +}).strict(); +exports.LabRxTemplateScalarWhereInputObjectSchema = labrxtemplatescalarwhereinputSchema; +exports.LabRxTemplateScalarWhereInputObjectZodSchema = labrxtemplatescalarwhereinputSchema; diff --git a/packages/db/shared/schemas/objects/LabRxTemplateScalarWhereWithAggregatesInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateScalarWhereWithAggregatesInput.schema.js new file mode 100644 index 00000000..36ed44d8 --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateScalarWhereWithAggregatesInput.schema.js @@ -0,0 +1,62 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateScalarWhereWithAggregatesInputObjectZodSchema = exports.LabRxTemplateScalarWhereWithAggregatesInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const IntWithAggregatesFilter_schema_1 = require("./IntWithAggregatesFilter.schema"); +const StringWithAggregatesFilter_schema_1 = require("./StringWithAggregatesFilter.schema"); +const StringNullableWithAggregatesFilter_schema_1 = require("./StringNullableWithAggregatesFilter.schema"); +const DateTimeWithAggregatesFilter_schema_1 = require("./DateTimeWithAggregatesFilter.schema"); +const labrxtemplatescalarwherewithaggregatesinputSchema = z.object({ + AND: z.union([z.lazy(() => exports.LabRxTemplateScalarWhereWithAggregatesInputObjectSchema), z.lazy(() => exports.LabRxTemplateScalarWhereWithAggregatesInputObjectSchema).array()]).optional(), + OR: z.lazy(() => exports.LabRxTemplateScalarWhereWithAggregatesInputObjectSchema).array().optional(), + NOT: z.union([z.lazy(() => exports.LabRxTemplateScalarWhereWithAggregatesInputObjectSchema), z.lazy(() => exports.LabRxTemplateScalarWhereWithAggregatesInputObjectSchema).array()]).optional(), + id: z.union([z.lazy(() => IntWithAggregatesFilter_schema_1.IntWithAggregatesFilterObjectSchema), z.number().int()]).optional(), + userId: z.union([z.lazy(() => IntWithAggregatesFilter_schema_1.IntWithAggregatesFilterObjectSchema), z.number().int()]).optional(), + name: z.union([z.lazy(() => StringWithAggregatesFilter_schema_1.StringWithAggregatesFilterObjectSchema), z.string()]).optional(), + labName: z.union([z.lazy(() => StringNullableWithAggregatesFilter_schema_1.StringNullableWithAggregatesFilterObjectSchema), z.string()]).optional().nullable(), + labPhone: z.union([z.lazy(() => StringNullableWithAggregatesFilter_schema_1.StringNullableWithAggregatesFilterObjectSchema), z.string()]).optional().nullable(), + labFax: z.union([z.lazy(() => StringNullableWithAggregatesFilter_schema_1.StringNullableWithAggregatesFilterObjectSchema), z.string()]).optional().nullable(), + labAddress: z.union([z.lazy(() => StringNullableWithAggregatesFilter_schema_1.StringNullableWithAggregatesFilterObjectSchema), z.string()]).optional().nullable(), + labAccount: z.union([z.lazy(() => StringNullableWithAggregatesFilter_schema_1.StringNullableWithAggregatesFilterObjectSchema), z.string()]).optional().nullable(), + caseType: z.union([z.lazy(() => StringNullableWithAggregatesFilter_schema_1.StringNullableWithAggregatesFilterObjectSchema), z.string()]).optional().nullable(), + material: z.union([z.lazy(() => StringNullableWithAggregatesFilter_schema_1.StringNullableWithAggregatesFilterObjectSchema), z.string()]).optional().nullable(), + instructions: z.union([z.lazy(() => StringNullableWithAggregatesFilter_schema_1.StringNullableWithAggregatesFilterObjectSchema), z.string()]).optional().nullable(), + sortOrder: z.union([z.lazy(() => IntWithAggregatesFilter_schema_1.IntWithAggregatesFilterObjectSchema), z.number().int()]).optional(), + createdAt: z.union([z.lazy(() => DateTimeWithAggregatesFilter_schema_1.DateTimeWithAggregatesFilterObjectSchema), z.coerce.date()]).optional(), + updatedAt: z.union([z.lazy(() => DateTimeWithAggregatesFilter_schema_1.DateTimeWithAggregatesFilterObjectSchema), z.coerce.date()]).optional() +}).strict(); +exports.LabRxTemplateScalarWhereWithAggregatesInputObjectSchema = labrxtemplatescalarwherewithaggregatesinputSchema; +exports.LabRxTemplateScalarWhereWithAggregatesInputObjectZodSchema = labrxtemplatescalarwherewithaggregatesinputSchema; diff --git a/packages/db/shared/schemas/objects/LabRxTemplateSelect.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateSelect.schema.js new file mode 100644 index 00000000..70cfe472 --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateSelect.schema.js @@ -0,0 +1,57 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateSelectObjectZodSchema = exports.LabRxTemplateSelectObjectSchema = void 0; +const z = __importStar(require("zod")); +const UserArgs_schema_1 = require("./UserArgs.schema"); +const makeSchema = () => z.object({ + id: z.boolean().optional(), + userId: z.boolean().optional(), + name: z.boolean().optional(), + labName: z.boolean().optional(), + labPhone: z.boolean().optional(), + labFax: z.boolean().optional(), + labAddress: z.boolean().optional(), + labAccount: z.boolean().optional(), + caseType: z.boolean().optional(), + material: z.boolean().optional(), + instructions: z.boolean().optional(), + sortOrder: z.boolean().optional(), + createdAt: z.boolean().optional(), + updatedAt: z.boolean().optional(), + user: z.union([z.boolean(), z.lazy(() => UserArgs_schema_1.UserArgsObjectSchema)]).optional() +}).strict(); +exports.LabRxTemplateSelectObjectSchema = makeSchema(); +exports.LabRxTemplateSelectObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateSumAggregateInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateSumAggregateInput.schema.js new file mode 100644 index 00000000..d3cfe9a3 --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateSumAggregateInput.schema.js @@ -0,0 +1,44 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateSumAggregateInputObjectZodSchema = exports.LabRxTemplateSumAggregateInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const makeSchema = () => z.object({ + id: z.literal(true).optional(), + userId: z.literal(true).optional(), + sortOrder: z.literal(true).optional() +}).strict(); +exports.LabRxTemplateSumAggregateInputObjectSchema = makeSchema(); +exports.LabRxTemplateSumAggregateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateSumOrderByAggregateInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateSumOrderByAggregateInput.schema.js new file mode 100644 index 00000000..6de70038 --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateSumOrderByAggregateInput.schema.js @@ -0,0 +1,45 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateSumOrderByAggregateInputObjectZodSchema = exports.LabRxTemplateSumOrderByAggregateInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const SortOrder_schema_1 = require("../enums/SortOrder.schema"); +const makeSchema = () => z.object({ + id: SortOrder_schema_1.SortOrderSchema.optional(), + userId: SortOrder_schema_1.SortOrderSchema.optional(), + sortOrder: SortOrder_schema_1.SortOrderSchema.optional() +}).strict(); +exports.LabRxTemplateSumOrderByAggregateInputObjectSchema = makeSchema(); +exports.LabRxTemplateSumOrderByAggregateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateUncheckedCreateInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateUncheckedCreateInput.schema.js new file mode 100644 index 00000000..bc1c6e01 --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateUncheckedCreateInput.schema.js @@ -0,0 +1,54 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateUncheckedCreateInputObjectZodSchema = exports.LabRxTemplateUncheckedCreateInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const makeSchema = () => z.object({ + id: z.number().int().optional(), + userId: z.number().int(), + name: z.string(), + labName: z.string().optional().nullable(), + labPhone: z.string().optional().nullable(), + labFax: z.string().optional().nullable(), + labAddress: z.string().optional().nullable(), + labAccount: z.string().optional().nullable(), + caseType: z.string().optional().nullable(), + material: z.string().optional().nullable(), + instructions: z.string().optional().nullable(), + sortOrder: z.number().int().optional(), + createdAt: z.coerce.date().optional() +}).strict(); +exports.LabRxTemplateUncheckedCreateInputObjectSchema = makeSchema(); +exports.LabRxTemplateUncheckedCreateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateUncheckedCreateNestedManyWithoutUserInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateUncheckedCreateNestedManyWithoutUserInput.schema.js new file mode 100644 index 00000000..68dc3dc2 --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateUncheckedCreateNestedManyWithoutUserInput.schema.js @@ -0,0 +1,50 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateUncheckedCreateNestedManyWithoutUserInputObjectZodSchema = exports.LabRxTemplateUncheckedCreateNestedManyWithoutUserInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const LabRxTemplateCreateWithoutUserInput_schema_1 = require("./LabRxTemplateCreateWithoutUserInput.schema"); +const LabRxTemplateUncheckedCreateWithoutUserInput_schema_1 = require("./LabRxTemplateUncheckedCreateWithoutUserInput.schema"); +const LabRxTemplateCreateOrConnectWithoutUserInput_schema_1 = require("./LabRxTemplateCreateOrConnectWithoutUserInput.schema"); +const LabRxTemplateCreateManyUserInputEnvelope_schema_1 = require("./LabRxTemplateCreateManyUserInputEnvelope.schema"); +const LabRxTemplateWhereUniqueInput_schema_1 = require("./LabRxTemplateWhereUniqueInput.schema"); +const makeSchema = () => z.object({ + create: z.union([z.lazy(() => LabRxTemplateCreateWithoutUserInput_schema_1.LabRxTemplateCreateWithoutUserInputObjectSchema), z.lazy(() => LabRxTemplateCreateWithoutUserInput_schema_1.LabRxTemplateCreateWithoutUserInputObjectSchema).array(), z.lazy(() => LabRxTemplateUncheckedCreateWithoutUserInput_schema_1.LabRxTemplateUncheckedCreateWithoutUserInputObjectSchema), z.lazy(() => LabRxTemplateUncheckedCreateWithoutUserInput_schema_1.LabRxTemplateUncheckedCreateWithoutUserInputObjectSchema).array()]).optional(), + connectOrCreate: z.union([z.lazy(() => LabRxTemplateCreateOrConnectWithoutUserInput_schema_1.LabRxTemplateCreateOrConnectWithoutUserInputObjectSchema), z.lazy(() => LabRxTemplateCreateOrConnectWithoutUserInput_schema_1.LabRxTemplateCreateOrConnectWithoutUserInputObjectSchema).array()]).optional(), + createMany: z.lazy(() => LabRxTemplateCreateManyUserInputEnvelope_schema_1.LabRxTemplateCreateManyUserInputEnvelopeObjectSchema).optional(), + connect: z.union([z.lazy(() => LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema), z.lazy(() => LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema).array()]).optional() +}).strict(); +exports.LabRxTemplateUncheckedCreateNestedManyWithoutUserInputObjectSchema = makeSchema(); +exports.LabRxTemplateUncheckedCreateNestedManyWithoutUserInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateUncheckedCreateWithoutUserInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateUncheckedCreateWithoutUserInput.schema.js new file mode 100644 index 00000000..cf143499 --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateUncheckedCreateWithoutUserInput.schema.js @@ -0,0 +1,54 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateUncheckedCreateWithoutUserInputObjectZodSchema = exports.LabRxTemplateUncheckedCreateWithoutUserInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const makeSchema = () => z.object({ + id: z.number().int().optional(), + name: z.string(), + labName: z.string().optional().nullable(), + labPhone: z.string().optional().nullable(), + labFax: z.string().optional().nullable(), + labAddress: z.string().optional().nullable(), + labAccount: z.string().optional().nullable(), + caseType: z.string().optional().nullable(), + material: z.string().optional().nullable(), + instructions: z.string().optional().nullable(), + sortOrder: z.number().int().optional(), + createdAt: z.coerce.date().optional(), + updatedAt: z.coerce.date().optional() +}).strict(); +exports.LabRxTemplateUncheckedCreateWithoutUserInputObjectSchema = makeSchema(); +exports.LabRxTemplateUncheckedCreateWithoutUserInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateUncheckedUpdateInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateUncheckedUpdateInput.schema.js new file mode 100644 index 00000000..2f1026e5 --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateUncheckedUpdateInput.schema.js @@ -0,0 +1,59 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateUncheckedUpdateInputObjectZodSchema = exports.LabRxTemplateUncheckedUpdateInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); +const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); +const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); +const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); +const makeSchema = () => z.object({ + id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + name: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), + labName: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + labPhone: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + labFax: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + labAddress: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + labAccount: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + caseType: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + material: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + instructions: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + sortOrder: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + createdAt: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), + updatedAt: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional() +}).strict(); +exports.LabRxTemplateUncheckedUpdateInputObjectSchema = makeSchema(); +exports.LabRxTemplateUncheckedUpdateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateUncheckedUpdateManyInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateUncheckedUpdateManyInput.schema.js new file mode 100644 index 00000000..41acf7c9 --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateUncheckedUpdateManyInput.schema.js @@ -0,0 +1,59 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateUncheckedUpdateManyInputObjectZodSchema = exports.LabRxTemplateUncheckedUpdateManyInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); +const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); +const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); +const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); +const makeSchema = () => z.object({ + id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + name: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), + labName: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + labPhone: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + labFax: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + labAddress: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + labAccount: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + caseType: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + material: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + instructions: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + sortOrder: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + createdAt: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), + updatedAt: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional() +}).strict(); +exports.LabRxTemplateUncheckedUpdateManyInputObjectSchema = makeSchema(); +exports.LabRxTemplateUncheckedUpdateManyInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateUncheckedUpdateManyWithoutUserInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateUncheckedUpdateManyWithoutUserInput.schema.js new file mode 100644 index 00000000..dd66538a --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateUncheckedUpdateManyWithoutUserInput.schema.js @@ -0,0 +1,58 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateUncheckedUpdateManyWithoutUserInputObjectZodSchema = exports.LabRxTemplateUncheckedUpdateManyWithoutUserInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); +const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); +const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); +const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); +const makeSchema = () => z.object({ + id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + name: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), + labName: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + labPhone: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + labFax: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + labAddress: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + labAccount: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + caseType: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + material: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + instructions: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + sortOrder: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + createdAt: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), + updatedAt: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional() +}).strict(); +exports.LabRxTemplateUncheckedUpdateManyWithoutUserInputObjectSchema = makeSchema(); +exports.LabRxTemplateUncheckedUpdateManyWithoutUserInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput.schema.js new file mode 100644 index 00000000..0a4fd68f --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput.schema.js @@ -0,0 +1,61 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateUncheckedUpdateManyWithoutUserNestedInputObjectZodSchema = exports.LabRxTemplateUncheckedUpdateManyWithoutUserNestedInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const LabRxTemplateCreateWithoutUserInput_schema_1 = require("./LabRxTemplateCreateWithoutUserInput.schema"); +const LabRxTemplateUncheckedCreateWithoutUserInput_schema_1 = require("./LabRxTemplateUncheckedCreateWithoutUserInput.schema"); +const LabRxTemplateCreateOrConnectWithoutUserInput_schema_1 = require("./LabRxTemplateCreateOrConnectWithoutUserInput.schema"); +const LabRxTemplateUpsertWithWhereUniqueWithoutUserInput_schema_1 = require("./LabRxTemplateUpsertWithWhereUniqueWithoutUserInput.schema"); +const LabRxTemplateCreateManyUserInputEnvelope_schema_1 = require("./LabRxTemplateCreateManyUserInputEnvelope.schema"); +const LabRxTemplateWhereUniqueInput_schema_1 = require("./LabRxTemplateWhereUniqueInput.schema"); +const LabRxTemplateUpdateWithWhereUniqueWithoutUserInput_schema_1 = require("./LabRxTemplateUpdateWithWhereUniqueWithoutUserInput.schema"); +const LabRxTemplateUpdateManyWithWhereWithoutUserInput_schema_1 = require("./LabRxTemplateUpdateManyWithWhereWithoutUserInput.schema"); +const LabRxTemplateScalarWhereInput_schema_1 = require("./LabRxTemplateScalarWhereInput.schema"); +const makeSchema = () => z.object({ + create: z.union([z.lazy(() => LabRxTemplateCreateWithoutUserInput_schema_1.LabRxTemplateCreateWithoutUserInputObjectSchema), z.lazy(() => LabRxTemplateCreateWithoutUserInput_schema_1.LabRxTemplateCreateWithoutUserInputObjectSchema).array(), z.lazy(() => LabRxTemplateUncheckedCreateWithoutUserInput_schema_1.LabRxTemplateUncheckedCreateWithoutUserInputObjectSchema), z.lazy(() => LabRxTemplateUncheckedCreateWithoutUserInput_schema_1.LabRxTemplateUncheckedCreateWithoutUserInputObjectSchema).array()]).optional(), + connectOrCreate: z.union([z.lazy(() => LabRxTemplateCreateOrConnectWithoutUserInput_schema_1.LabRxTemplateCreateOrConnectWithoutUserInputObjectSchema), z.lazy(() => LabRxTemplateCreateOrConnectWithoutUserInput_schema_1.LabRxTemplateCreateOrConnectWithoutUserInputObjectSchema).array()]).optional(), + upsert: z.union([z.lazy(() => LabRxTemplateUpsertWithWhereUniqueWithoutUserInput_schema_1.LabRxTemplateUpsertWithWhereUniqueWithoutUserInputObjectSchema), z.lazy(() => LabRxTemplateUpsertWithWhereUniqueWithoutUserInput_schema_1.LabRxTemplateUpsertWithWhereUniqueWithoutUserInputObjectSchema).array()]).optional(), + createMany: z.lazy(() => LabRxTemplateCreateManyUserInputEnvelope_schema_1.LabRxTemplateCreateManyUserInputEnvelopeObjectSchema).optional(), + set: z.union([z.lazy(() => LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema), z.lazy(() => LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema).array()]).optional(), + disconnect: z.union([z.lazy(() => LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema), z.lazy(() => LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema).array()]).optional(), + delete: z.union([z.lazy(() => LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema), z.lazy(() => LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema).array()]).optional(), + connect: z.union([z.lazy(() => LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema), z.lazy(() => LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema).array()]).optional(), + update: z.union([z.lazy(() => LabRxTemplateUpdateWithWhereUniqueWithoutUserInput_schema_1.LabRxTemplateUpdateWithWhereUniqueWithoutUserInputObjectSchema), z.lazy(() => LabRxTemplateUpdateWithWhereUniqueWithoutUserInput_schema_1.LabRxTemplateUpdateWithWhereUniqueWithoutUserInputObjectSchema).array()]).optional(), + updateMany: z.union([z.lazy(() => LabRxTemplateUpdateManyWithWhereWithoutUserInput_schema_1.LabRxTemplateUpdateManyWithWhereWithoutUserInputObjectSchema), z.lazy(() => LabRxTemplateUpdateManyWithWhereWithoutUserInput_schema_1.LabRxTemplateUpdateManyWithWhereWithoutUserInputObjectSchema).array()]).optional(), + deleteMany: z.union([z.lazy(() => LabRxTemplateScalarWhereInput_schema_1.LabRxTemplateScalarWhereInputObjectSchema), z.lazy(() => LabRxTemplateScalarWhereInput_schema_1.LabRxTemplateScalarWhereInputObjectSchema).array()]).optional() +}).strict(); +exports.LabRxTemplateUncheckedUpdateManyWithoutUserNestedInputObjectSchema = makeSchema(); +exports.LabRxTemplateUncheckedUpdateManyWithoutUserNestedInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateUncheckedUpdateWithoutUserInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateUncheckedUpdateWithoutUserInput.schema.js new file mode 100644 index 00000000..8a49d6a8 --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateUncheckedUpdateWithoutUserInput.schema.js @@ -0,0 +1,58 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateUncheckedUpdateWithoutUserInputObjectZodSchema = exports.LabRxTemplateUncheckedUpdateWithoutUserInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); +const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); +const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); +const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); +const makeSchema = () => z.object({ + id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + name: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), + labName: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + labPhone: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + labFax: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + labAddress: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + labAccount: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + caseType: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + material: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + instructions: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + sortOrder: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + createdAt: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), + updatedAt: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional() +}).strict(); +exports.LabRxTemplateUncheckedUpdateWithoutUserInputObjectSchema = makeSchema(); +exports.LabRxTemplateUncheckedUpdateWithoutUserInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateUpdateInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateUpdateInput.schema.js new file mode 100644 index 00000000..99de1160 --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateUpdateInput.schema.js @@ -0,0 +1,59 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateUpdateInputObjectZodSchema = exports.LabRxTemplateUpdateInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); +const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); +const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); +const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); +const UserUpdateOneRequiredWithoutLabRxTemplatesNestedInput_schema_1 = require("./UserUpdateOneRequiredWithoutLabRxTemplatesNestedInput.schema"); +const makeSchema = () => z.object({ + name: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), + labName: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + labPhone: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + labFax: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + labAddress: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + labAccount: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + caseType: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + material: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + instructions: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + sortOrder: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + createdAt: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), + updatedAt: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), + user: z.lazy(() => UserUpdateOneRequiredWithoutLabRxTemplatesNestedInput_schema_1.UserUpdateOneRequiredWithoutLabRxTemplatesNestedInputObjectSchema).optional() +}).strict(); +exports.LabRxTemplateUpdateInputObjectSchema = makeSchema(); +exports.LabRxTemplateUpdateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateUpdateManyMutationInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateUpdateManyMutationInput.schema.js new file mode 100644 index 00000000..da30e999 --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateUpdateManyMutationInput.schema.js @@ -0,0 +1,57 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateUpdateManyMutationInputObjectZodSchema = exports.LabRxTemplateUpdateManyMutationInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); +const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); +const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); +const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); +const makeSchema = () => z.object({ + name: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), + labName: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + labPhone: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + labFax: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + labAddress: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + labAccount: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + caseType: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + material: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + instructions: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + sortOrder: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + createdAt: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), + updatedAt: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional() +}).strict(); +exports.LabRxTemplateUpdateManyMutationInputObjectSchema = makeSchema(); +exports.LabRxTemplateUpdateManyMutationInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateUpdateManyWithWhereWithoutUserInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateUpdateManyWithWhereWithoutUserInput.schema.js new file mode 100644 index 00000000..33504ded --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateUpdateManyWithWhereWithoutUserInput.schema.js @@ -0,0 +1,46 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateUpdateManyWithWhereWithoutUserInputObjectZodSchema = exports.LabRxTemplateUpdateManyWithWhereWithoutUserInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const LabRxTemplateScalarWhereInput_schema_1 = require("./LabRxTemplateScalarWhereInput.schema"); +const LabRxTemplateUpdateManyMutationInput_schema_1 = require("./LabRxTemplateUpdateManyMutationInput.schema"); +const LabRxTemplateUncheckedUpdateManyWithoutUserInput_schema_1 = require("./LabRxTemplateUncheckedUpdateManyWithoutUserInput.schema"); +const makeSchema = () => z.object({ + where: z.lazy(() => LabRxTemplateScalarWhereInput_schema_1.LabRxTemplateScalarWhereInputObjectSchema), + data: z.union([z.lazy(() => LabRxTemplateUpdateManyMutationInput_schema_1.LabRxTemplateUpdateManyMutationInputObjectSchema), z.lazy(() => LabRxTemplateUncheckedUpdateManyWithoutUserInput_schema_1.LabRxTemplateUncheckedUpdateManyWithoutUserInputObjectSchema)]) +}).strict(); +exports.LabRxTemplateUpdateManyWithWhereWithoutUserInputObjectSchema = makeSchema(); +exports.LabRxTemplateUpdateManyWithWhereWithoutUserInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateUpdateManyWithoutUserNestedInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateUpdateManyWithoutUserNestedInput.schema.js new file mode 100644 index 00000000..bdeb7c71 --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateUpdateManyWithoutUserNestedInput.schema.js @@ -0,0 +1,61 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateUpdateManyWithoutUserNestedInputObjectZodSchema = exports.LabRxTemplateUpdateManyWithoutUserNestedInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const LabRxTemplateCreateWithoutUserInput_schema_1 = require("./LabRxTemplateCreateWithoutUserInput.schema"); +const LabRxTemplateUncheckedCreateWithoutUserInput_schema_1 = require("./LabRxTemplateUncheckedCreateWithoutUserInput.schema"); +const LabRxTemplateCreateOrConnectWithoutUserInput_schema_1 = require("./LabRxTemplateCreateOrConnectWithoutUserInput.schema"); +const LabRxTemplateUpsertWithWhereUniqueWithoutUserInput_schema_1 = require("./LabRxTemplateUpsertWithWhereUniqueWithoutUserInput.schema"); +const LabRxTemplateCreateManyUserInputEnvelope_schema_1 = require("./LabRxTemplateCreateManyUserInputEnvelope.schema"); +const LabRxTemplateWhereUniqueInput_schema_1 = require("./LabRxTemplateWhereUniqueInput.schema"); +const LabRxTemplateUpdateWithWhereUniqueWithoutUserInput_schema_1 = require("./LabRxTemplateUpdateWithWhereUniqueWithoutUserInput.schema"); +const LabRxTemplateUpdateManyWithWhereWithoutUserInput_schema_1 = require("./LabRxTemplateUpdateManyWithWhereWithoutUserInput.schema"); +const LabRxTemplateScalarWhereInput_schema_1 = require("./LabRxTemplateScalarWhereInput.schema"); +const makeSchema = () => z.object({ + create: z.union([z.lazy(() => LabRxTemplateCreateWithoutUserInput_schema_1.LabRxTemplateCreateWithoutUserInputObjectSchema), z.lazy(() => LabRxTemplateCreateWithoutUserInput_schema_1.LabRxTemplateCreateWithoutUserInputObjectSchema).array(), z.lazy(() => LabRxTemplateUncheckedCreateWithoutUserInput_schema_1.LabRxTemplateUncheckedCreateWithoutUserInputObjectSchema), z.lazy(() => LabRxTemplateUncheckedCreateWithoutUserInput_schema_1.LabRxTemplateUncheckedCreateWithoutUserInputObjectSchema).array()]).optional(), + connectOrCreate: z.union([z.lazy(() => LabRxTemplateCreateOrConnectWithoutUserInput_schema_1.LabRxTemplateCreateOrConnectWithoutUserInputObjectSchema), z.lazy(() => LabRxTemplateCreateOrConnectWithoutUserInput_schema_1.LabRxTemplateCreateOrConnectWithoutUserInputObjectSchema).array()]).optional(), + upsert: z.union([z.lazy(() => LabRxTemplateUpsertWithWhereUniqueWithoutUserInput_schema_1.LabRxTemplateUpsertWithWhereUniqueWithoutUserInputObjectSchema), z.lazy(() => LabRxTemplateUpsertWithWhereUniqueWithoutUserInput_schema_1.LabRxTemplateUpsertWithWhereUniqueWithoutUserInputObjectSchema).array()]).optional(), + createMany: z.lazy(() => LabRxTemplateCreateManyUserInputEnvelope_schema_1.LabRxTemplateCreateManyUserInputEnvelopeObjectSchema).optional(), + set: z.union([z.lazy(() => LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema), z.lazy(() => LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema).array()]).optional(), + disconnect: z.union([z.lazy(() => LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema), z.lazy(() => LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema).array()]).optional(), + delete: z.union([z.lazy(() => LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema), z.lazy(() => LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema).array()]).optional(), + connect: z.union([z.lazy(() => LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema), z.lazy(() => LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema).array()]).optional(), + update: z.union([z.lazy(() => LabRxTemplateUpdateWithWhereUniqueWithoutUserInput_schema_1.LabRxTemplateUpdateWithWhereUniqueWithoutUserInputObjectSchema), z.lazy(() => LabRxTemplateUpdateWithWhereUniqueWithoutUserInput_schema_1.LabRxTemplateUpdateWithWhereUniqueWithoutUserInputObjectSchema).array()]).optional(), + updateMany: z.union([z.lazy(() => LabRxTemplateUpdateManyWithWhereWithoutUserInput_schema_1.LabRxTemplateUpdateManyWithWhereWithoutUserInputObjectSchema), z.lazy(() => LabRxTemplateUpdateManyWithWhereWithoutUserInput_schema_1.LabRxTemplateUpdateManyWithWhereWithoutUserInputObjectSchema).array()]).optional(), + deleteMany: z.union([z.lazy(() => LabRxTemplateScalarWhereInput_schema_1.LabRxTemplateScalarWhereInputObjectSchema), z.lazy(() => LabRxTemplateScalarWhereInput_schema_1.LabRxTemplateScalarWhereInputObjectSchema).array()]).optional() +}).strict(); +exports.LabRxTemplateUpdateManyWithoutUserNestedInputObjectSchema = makeSchema(); +exports.LabRxTemplateUpdateManyWithoutUserNestedInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateUpdateWithWhereUniqueWithoutUserInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateUpdateWithWhereUniqueWithoutUserInput.schema.js new file mode 100644 index 00000000..74e257ef --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateUpdateWithWhereUniqueWithoutUserInput.schema.js @@ -0,0 +1,46 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateUpdateWithWhereUniqueWithoutUserInputObjectZodSchema = exports.LabRxTemplateUpdateWithWhereUniqueWithoutUserInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const LabRxTemplateWhereUniqueInput_schema_1 = require("./LabRxTemplateWhereUniqueInput.schema"); +const LabRxTemplateUpdateWithoutUserInput_schema_1 = require("./LabRxTemplateUpdateWithoutUserInput.schema"); +const LabRxTemplateUncheckedUpdateWithoutUserInput_schema_1 = require("./LabRxTemplateUncheckedUpdateWithoutUserInput.schema"); +const makeSchema = () => z.object({ + where: z.lazy(() => LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema), + data: z.union([z.lazy(() => LabRxTemplateUpdateWithoutUserInput_schema_1.LabRxTemplateUpdateWithoutUserInputObjectSchema), z.lazy(() => LabRxTemplateUncheckedUpdateWithoutUserInput_schema_1.LabRxTemplateUncheckedUpdateWithoutUserInputObjectSchema)]) +}).strict(); +exports.LabRxTemplateUpdateWithWhereUniqueWithoutUserInputObjectSchema = makeSchema(); +exports.LabRxTemplateUpdateWithWhereUniqueWithoutUserInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateUpdateWithoutUserInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateUpdateWithoutUserInput.schema.js new file mode 100644 index 00000000..10868188 --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateUpdateWithoutUserInput.schema.js @@ -0,0 +1,57 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateUpdateWithoutUserInputObjectZodSchema = exports.LabRxTemplateUpdateWithoutUserInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); +const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); +const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); +const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); +const makeSchema = () => z.object({ + name: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), + labName: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + labPhone: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + labFax: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + labAddress: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + labAccount: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + caseType: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + material: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + instructions: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), + sortOrder: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + createdAt: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), + updatedAt: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional() +}).strict(); +exports.LabRxTemplateUpdateWithoutUserInputObjectSchema = makeSchema(); +exports.LabRxTemplateUpdateWithoutUserInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateUpsertWithWhereUniqueWithoutUserInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateUpsertWithWhereUniqueWithoutUserInput.schema.js new file mode 100644 index 00000000..42300492 --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateUpsertWithWhereUniqueWithoutUserInput.schema.js @@ -0,0 +1,49 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateUpsertWithWhereUniqueWithoutUserInputObjectZodSchema = exports.LabRxTemplateUpsertWithWhereUniqueWithoutUserInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const LabRxTemplateWhereUniqueInput_schema_1 = require("./LabRxTemplateWhereUniqueInput.schema"); +const LabRxTemplateUpdateWithoutUserInput_schema_1 = require("./LabRxTemplateUpdateWithoutUserInput.schema"); +const LabRxTemplateUncheckedUpdateWithoutUserInput_schema_1 = require("./LabRxTemplateUncheckedUpdateWithoutUserInput.schema"); +const LabRxTemplateCreateWithoutUserInput_schema_1 = require("./LabRxTemplateCreateWithoutUserInput.schema"); +const LabRxTemplateUncheckedCreateWithoutUserInput_schema_1 = require("./LabRxTemplateUncheckedCreateWithoutUserInput.schema"); +const makeSchema = () => z.object({ + where: z.lazy(() => LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema), + update: z.union([z.lazy(() => LabRxTemplateUpdateWithoutUserInput_schema_1.LabRxTemplateUpdateWithoutUserInputObjectSchema), z.lazy(() => LabRxTemplateUncheckedUpdateWithoutUserInput_schema_1.LabRxTemplateUncheckedUpdateWithoutUserInputObjectSchema)]), + create: z.union([z.lazy(() => LabRxTemplateCreateWithoutUserInput_schema_1.LabRxTemplateCreateWithoutUserInputObjectSchema), z.lazy(() => LabRxTemplateUncheckedCreateWithoutUserInput_schema_1.LabRxTemplateUncheckedCreateWithoutUserInputObjectSchema)]) +}).strict(); +exports.LabRxTemplateUpsertWithWhereUniqueWithoutUserInputObjectSchema = makeSchema(); +exports.LabRxTemplateUpsertWithWhereUniqueWithoutUserInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/LabRxTemplateWhereInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateWhereInput.schema.js new file mode 100644 index 00000000..4e082367 --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateWhereInput.schema.js @@ -0,0 +1,65 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateWhereInputObjectZodSchema = exports.LabRxTemplateWhereInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const IntFilter_schema_1 = require("./IntFilter.schema"); +const StringFilter_schema_1 = require("./StringFilter.schema"); +const StringNullableFilter_schema_1 = require("./StringNullableFilter.schema"); +const DateTimeFilter_schema_1 = require("./DateTimeFilter.schema"); +const UserScalarRelationFilter_schema_1 = require("./UserScalarRelationFilter.schema"); +const UserWhereInput_schema_1 = require("./UserWhereInput.schema"); +const labrxtemplatewhereinputSchema = z.object({ + AND: z.union([z.lazy(() => exports.LabRxTemplateWhereInputObjectSchema), z.lazy(() => exports.LabRxTemplateWhereInputObjectSchema).array()]).optional(), + OR: z.lazy(() => exports.LabRxTemplateWhereInputObjectSchema).array().optional(), + NOT: z.union([z.lazy(() => exports.LabRxTemplateWhereInputObjectSchema), z.lazy(() => exports.LabRxTemplateWhereInputObjectSchema).array()]).optional(), + id: z.union([z.lazy(() => IntFilter_schema_1.IntFilterObjectSchema), z.number().int()]).optional(), + userId: z.union([z.lazy(() => IntFilter_schema_1.IntFilterObjectSchema), z.number().int()]).optional(), + name: z.union([z.lazy(() => StringFilter_schema_1.StringFilterObjectSchema), z.string()]).optional(), + labName: z.union([z.lazy(() => StringNullableFilter_schema_1.StringNullableFilterObjectSchema), z.string()]).optional().nullable(), + labPhone: z.union([z.lazy(() => StringNullableFilter_schema_1.StringNullableFilterObjectSchema), z.string()]).optional().nullable(), + labFax: z.union([z.lazy(() => StringNullableFilter_schema_1.StringNullableFilterObjectSchema), z.string()]).optional().nullable(), + labAddress: z.union([z.lazy(() => StringNullableFilter_schema_1.StringNullableFilterObjectSchema), z.string()]).optional().nullable(), + labAccount: z.union([z.lazy(() => StringNullableFilter_schema_1.StringNullableFilterObjectSchema), z.string()]).optional().nullable(), + caseType: z.union([z.lazy(() => StringNullableFilter_schema_1.StringNullableFilterObjectSchema), z.string()]).optional().nullable(), + material: z.union([z.lazy(() => StringNullableFilter_schema_1.StringNullableFilterObjectSchema), z.string()]).optional().nullable(), + instructions: z.union([z.lazy(() => StringNullableFilter_schema_1.StringNullableFilterObjectSchema), z.string()]).optional().nullable(), + sortOrder: z.union([z.lazy(() => IntFilter_schema_1.IntFilterObjectSchema), z.number().int()]).optional(), + createdAt: z.union([z.lazy(() => DateTimeFilter_schema_1.DateTimeFilterObjectSchema), z.coerce.date()]).optional(), + updatedAt: z.union([z.lazy(() => DateTimeFilter_schema_1.DateTimeFilterObjectSchema), z.coerce.date()]).optional(), + user: z.union([z.lazy(() => UserScalarRelationFilter_schema_1.UserScalarRelationFilterObjectSchema), z.lazy(() => UserWhereInput_schema_1.UserWhereInputObjectSchema)]).optional() +}).strict(); +exports.LabRxTemplateWhereInputObjectSchema = labrxtemplatewhereinputSchema; +exports.LabRxTemplateWhereInputObjectZodSchema = labrxtemplatewhereinputSchema; diff --git a/packages/db/shared/schemas/objects/LabRxTemplateWhereUniqueInput.schema.js b/packages/db/shared/schemas/objects/LabRxTemplateWhereUniqueInput.schema.js new file mode 100644 index 00000000..e82b4482 --- /dev/null +++ b/packages/db/shared/schemas/objects/LabRxTemplateWhereUniqueInput.schema.js @@ -0,0 +1,42 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateWhereUniqueInputObjectZodSchema = exports.LabRxTemplateWhereUniqueInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const makeSchema = () => z.object({ + id: z.number().int().optional() +}).strict(); +exports.LabRxTemplateWhereUniqueInputObjectSchema = makeSchema(); +exports.LabRxTemplateWhereUniqueInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NestedDecimalFilter.schema.js b/packages/db/shared/schemas/objects/NestedDecimalFilter.schema.js index ab66fded..8374a1af 100644 --- a/packages/db/shared/schemas/objects/NestedDecimalFilter.schema.js +++ b/packages/db/shared/schemas/objects/NestedDecimalFilter.schema.js @@ -38,15 +38,14 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.NestedDecimalFilterObjectZodSchema = exports.NestedDecimalFilterObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const nesteddecimalfilterSchema = z.object({ equals: z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'equals' must be a Decimal", @@ -55,7 +54,7 @@ const nesteddecimalfilterSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'in' must be a Decimal", @@ -64,7 +63,7 @@ const nesteddecimalfilterSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'notIn' must be a Decimal", @@ -73,7 +72,7 @@ const nesteddecimalfilterSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'lt' must be a Decimal", @@ -82,7 +81,7 @@ const nesteddecimalfilterSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'lte' must be a Decimal", @@ -91,7 +90,7 @@ const nesteddecimalfilterSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'gt' must be a Decimal", @@ -100,7 +99,7 @@ const nesteddecimalfilterSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'gte' must be a Decimal", @@ -109,7 +108,7 @@ const nesteddecimalfilterSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'not' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/NestedDecimalFilter.schema.ts b/packages/db/shared/schemas/objects/NestedDecimalFilter.schema.ts index 2f55c6d7..7af57e93 100644 --- a/packages/db/shared/schemas/objects/NestedDecimalFilter.schema.ts +++ b/packages/db/shared/schemas/objects/NestedDecimalFilter.schema.ts @@ -1,15 +1,15 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; - +import type { Prisma } from '../../../generated/prisma'; import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const nesteddecimalfilterSchema = z.object({ equals: z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'equals' must be a Decimal", @@ -18,7 +18,7 @@ const nesteddecimalfilterSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'in' must be a Decimal", @@ -27,7 +27,7 @@ const nesteddecimalfilterSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'notIn' must be a Decimal", @@ -36,7 +36,7 @@ const nesteddecimalfilterSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'lt' must be a Decimal", @@ -45,7 +45,7 @@ const nesteddecimalfilterSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'lte' must be a Decimal", @@ -54,7 +54,7 @@ const nesteddecimalfilterSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'gt' must be a Decimal", @@ -63,7 +63,7 @@ const nesteddecimalfilterSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'gte' must be a Decimal", @@ -72,7 +72,7 @@ const nesteddecimalfilterSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'not' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/NestedDecimalNullableFilter.schema.js b/packages/db/shared/schemas/objects/NestedDecimalNullableFilter.schema.js index 74becc89..a2adcfe1 100644 --- a/packages/db/shared/schemas/objects/NestedDecimalNullableFilter.schema.js +++ b/packages/db/shared/schemas/objects/NestedDecimalNullableFilter.schema.js @@ -38,15 +38,14 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.NestedDecimalNullableFilterObjectZodSchema = exports.NestedDecimalNullableFilterObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const nesteddecimalnullablefilterSchema = z.object({ equals: z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'equals' must be a Decimal", @@ -55,7 +54,7 @@ const nesteddecimalnullablefilterSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'in' must be a Decimal", @@ -64,7 +63,7 @@ const nesteddecimalnullablefilterSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'notIn' must be a Decimal", @@ -73,7 +72,7 @@ const nesteddecimalnullablefilterSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'lt' must be a Decimal", @@ -82,7 +81,7 @@ const nesteddecimalnullablefilterSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'lte' must be a Decimal", @@ -91,7 +90,7 @@ const nesteddecimalnullablefilterSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'gt' must be a Decimal", @@ -100,7 +99,7 @@ const nesteddecimalnullablefilterSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'gte' must be a Decimal", @@ -109,7 +108,7 @@ const nesteddecimalnullablefilterSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'not' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/NestedDecimalNullableFilter.schema.ts b/packages/db/shared/schemas/objects/NestedDecimalNullableFilter.schema.ts index bf3b0c01..00960d09 100644 --- a/packages/db/shared/schemas/objects/NestedDecimalNullableFilter.schema.ts +++ b/packages/db/shared/schemas/objects/NestedDecimalNullableFilter.schema.ts @@ -1,15 +1,15 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; - +import type { Prisma } from '../../../generated/prisma'; import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const nesteddecimalnullablefilterSchema = z.object({ equals: z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'equals' must be a Decimal", @@ -18,7 +18,7 @@ const nesteddecimalnullablefilterSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'in' must be a Decimal", @@ -27,7 +27,7 @@ const nesteddecimalnullablefilterSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'notIn' must be a Decimal", @@ -36,7 +36,7 @@ const nesteddecimalnullablefilterSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'lt' must be a Decimal", @@ -45,7 +45,7 @@ const nesteddecimalnullablefilterSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'lte' must be a Decimal", @@ -54,7 +54,7 @@ const nesteddecimalnullablefilterSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'gt' must be a Decimal", @@ -63,7 +63,7 @@ const nesteddecimalnullablefilterSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'gte' must be a Decimal", @@ -72,7 +72,7 @@ const nesteddecimalnullablefilterSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'not' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/NestedDecimalNullableWithAggregatesFilter.schema.js b/packages/db/shared/schemas/objects/NestedDecimalNullableWithAggregatesFilter.schema.js index de747855..2eba14b3 100644 --- a/packages/db/shared/schemas/objects/NestedDecimalNullableWithAggregatesFilter.schema.js +++ b/packages/db/shared/schemas/objects/NestedDecimalNullableWithAggregatesFilter.schema.js @@ -38,17 +38,16 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.NestedDecimalNullableWithAggregatesFilterObjectZodSchema = exports.NestedDecimalNullableWithAggregatesFilterObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const NestedIntNullableFilter_schema_1 = require("./NestedIntNullableFilter.schema"); const NestedDecimalNullableFilter_schema_1 = require("./NestedDecimalNullableFilter.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const nesteddecimalnullablewithaggregatesfilterSchema = z.object({ equals: z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'equals' must be a Decimal", @@ -57,7 +56,7 @@ const nesteddecimalnullablewithaggregatesfilterSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'in' must be a Decimal", @@ -66,7 +65,7 @@ const nesteddecimalnullablewithaggregatesfilterSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'notIn' must be a Decimal", @@ -75,7 +74,7 @@ const nesteddecimalnullablewithaggregatesfilterSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'lt' must be a Decimal", @@ -84,7 +83,7 @@ const nesteddecimalnullablewithaggregatesfilterSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'lte' must be a Decimal", @@ -93,7 +92,7 @@ const nesteddecimalnullablewithaggregatesfilterSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'gt' must be a Decimal", @@ -102,7 +101,7 @@ const nesteddecimalnullablewithaggregatesfilterSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'gte' must be a Decimal", @@ -111,7 +110,7 @@ const nesteddecimalnullablewithaggregatesfilterSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'not' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/NestedDecimalNullableWithAggregatesFilter.schema.ts b/packages/db/shared/schemas/objects/NestedDecimalNullableWithAggregatesFilter.schema.ts index d1bb1a1a..499c9e2f 100644 --- a/packages/db/shared/schemas/objects/NestedDecimalNullableWithAggregatesFilter.schema.ts +++ b/packages/db/shared/schemas/objects/NestedDecimalNullableWithAggregatesFilter.schema.ts @@ -1,16 +1,17 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { NestedIntNullableFilterObjectSchema as NestedIntNullableFilterObjectSchema } from './NestedIntNullableFilter.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { NestedIntNullableFilterObjectSchema as NestedIntNullableFilterObjectSchema } from './NestedIntNullableFilter.schema'; import { NestedDecimalNullableFilterObjectSchema as NestedDecimalNullableFilterObjectSchema } from './NestedDecimalNullableFilter.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const nesteddecimalnullablewithaggregatesfilterSchema = z.object({ equals: z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'equals' must be a Decimal", @@ -19,7 +20,7 @@ const nesteddecimalnullablewithaggregatesfilterSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'in' must be a Decimal", @@ -28,7 +29,7 @@ const nesteddecimalnullablewithaggregatesfilterSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'notIn' must be a Decimal", @@ -37,7 +38,7 @@ const nesteddecimalnullablewithaggregatesfilterSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'lt' must be a Decimal", @@ -46,7 +47,7 @@ const nesteddecimalnullablewithaggregatesfilterSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'lte' must be a Decimal", @@ -55,7 +56,7 @@ const nesteddecimalnullablewithaggregatesfilterSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'gt' must be a Decimal", @@ -64,7 +65,7 @@ const nesteddecimalnullablewithaggregatesfilterSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'gte' must be a Decimal", @@ -73,7 +74,7 @@ const nesteddecimalnullablewithaggregatesfilterSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'not' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/NestedDecimalWithAggregatesFilter.schema.js b/packages/db/shared/schemas/objects/NestedDecimalWithAggregatesFilter.schema.js index d7126307..ed9ced91 100644 --- a/packages/db/shared/schemas/objects/NestedDecimalWithAggregatesFilter.schema.js +++ b/packages/db/shared/schemas/objects/NestedDecimalWithAggregatesFilter.schema.js @@ -38,17 +38,16 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.NestedDecimalWithAggregatesFilterObjectZodSchema = exports.NestedDecimalWithAggregatesFilterObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const NestedIntFilter_schema_1 = require("./NestedIntFilter.schema"); const NestedDecimalFilter_schema_1 = require("./NestedDecimalFilter.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const nesteddecimalwithaggregatesfilterSchema = z.object({ equals: z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'equals' must be a Decimal", @@ -57,7 +56,7 @@ const nesteddecimalwithaggregatesfilterSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'in' must be a Decimal", @@ -66,7 +65,7 @@ const nesteddecimalwithaggregatesfilterSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'notIn' must be a Decimal", @@ -75,7 +74,7 @@ const nesteddecimalwithaggregatesfilterSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'lt' must be a Decimal", @@ -84,7 +83,7 @@ const nesteddecimalwithaggregatesfilterSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'lte' must be a Decimal", @@ -93,7 +92,7 @@ const nesteddecimalwithaggregatesfilterSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'gt' must be a Decimal", @@ -102,7 +101,7 @@ const nesteddecimalwithaggregatesfilterSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'gte' must be a Decimal", @@ -111,7 +110,7 @@ const nesteddecimalwithaggregatesfilterSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'not' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/NestedDecimalWithAggregatesFilter.schema.ts b/packages/db/shared/schemas/objects/NestedDecimalWithAggregatesFilter.schema.ts index c4843ab9..9abb7610 100644 --- a/packages/db/shared/schemas/objects/NestedDecimalWithAggregatesFilter.schema.ts +++ b/packages/db/shared/schemas/objects/NestedDecimalWithAggregatesFilter.schema.ts @@ -1,16 +1,17 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { NestedIntFilterObjectSchema as NestedIntFilterObjectSchema } from './NestedIntFilter.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { NestedIntFilterObjectSchema as NestedIntFilterObjectSchema } from './NestedIntFilter.schema'; import { NestedDecimalFilterObjectSchema as NestedDecimalFilterObjectSchema } from './NestedDecimalFilter.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const nesteddecimalwithaggregatesfilterSchema = z.object({ equals: z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'equals' must be a Decimal", @@ -19,7 +20,7 @@ const nesteddecimalwithaggregatesfilterSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'in' must be a Decimal", @@ -28,7 +29,7 @@ const nesteddecimalwithaggregatesfilterSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'notIn' must be a Decimal", @@ -37,7 +38,7 @@ const nesteddecimalwithaggregatesfilterSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'lt' must be a Decimal", @@ -46,7 +47,7 @@ const nesteddecimalwithaggregatesfilterSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'lte' must be a Decimal", @@ -55,7 +56,7 @@ const nesteddecimalwithaggregatesfilterSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'gt' must be a Decimal", @@ -64,7 +65,7 @@ const nesteddecimalwithaggregatesfilterSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'gte' must be a Decimal", @@ -73,7 +74,7 @@ const nesteddecimalwithaggregatesfilterSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'not' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/NpiProviderCountOutputTypeCountAppointmentsArgs.schema.js b/packages/db/shared/schemas/objects/NpiProviderCountOutputTypeCountAppointmentsArgs.schema.js new file mode 100644 index 00000000..d34dcad0 --- /dev/null +++ b/packages/db/shared/schemas/objects/NpiProviderCountOutputTypeCountAppointmentsArgs.schema.js @@ -0,0 +1,43 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.NpiProviderCountOutputTypeCountAppointmentsArgsObjectZodSchema = exports.NpiProviderCountOutputTypeCountAppointmentsArgsObjectSchema = void 0; +const z = __importStar(require("zod")); +const AppointmentWhereInput_schema_1 = require("./AppointmentWhereInput.schema"); +const makeSchema = () => z.object({ + where: z.lazy(() => AppointmentWhereInput_schema_1.AppointmentWhereInputObjectSchema).optional() +}).strict(); +exports.NpiProviderCountOutputTypeCountAppointmentsArgsObjectSchema = makeSchema(); +exports.NpiProviderCountOutputTypeCountAppointmentsArgsObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderCountOutputTypeCountAppointmentsArgs.schema.ts b/packages/db/shared/schemas/objects/NpiProviderCountOutputTypeCountAppointmentsArgs.schema.ts new file mode 100644 index 00000000..a5f364d0 --- /dev/null +++ b/packages/db/shared/schemas/objects/NpiProviderCountOutputTypeCountAppointmentsArgs.schema.ts @@ -0,0 +1,9 @@ +import * as z from 'zod'; +import type { Prisma } from '../../../generated/prisma'; +import { AppointmentWhereInputObjectSchema as AppointmentWhereInputObjectSchema } from './AppointmentWhereInput.schema' + +const makeSchema = () => z.object({ + where: z.lazy(() => AppointmentWhereInputObjectSchema).optional() +}).strict(); +export const NpiProviderCountOutputTypeCountAppointmentsArgsObjectSchema = makeSchema(); +export const NpiProviderCountOutputTypeCountAppointmentsArgsObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderCountOutputTypeSelect.schema.js b/packages/db/shared/schemas/objects/NpiProviderCountOutputTypeSelect.schema.js index 69d8d482..4b041196 100644 --- a/packages/db/shared/schemas/objects/NpiProviderCountOutputTypeSelect.schema.js +++ b/packages/db/shared/schemas/objects/NpiProviderCountOutputTypeSelect.schema.js @@ -39,11 +39,13 @@ const NpiProviderCountOutputTypeCountClaimsArgs_schema_1 = require("./NpiProvide const NpiProviderCountOutputTypeCountPaymentsArgs_schema_1 = require("./NpiProviderCountOutputTypeCountPaymentsArgs.schema"); const NpiProviderCountOutputTypeCountCommissionBatchesArgs_schema_1 = require("./NpiProviderCountOutputTypeCountCommissionBatchesArgs.schema"); const NpiProviderCountOutputTypeCountAppointmentProceduresArgs_schema_1 = require("./NpiProviderCountOutputTypeCountAppointmentProceduresArgs.schema"); +const NpiProviderCountOutputTypeCountAppointmentsArgs_schema_1 = require("./NpiProviderCountOutputTypeCountAppointmentsArgs.schema"); const makeSchema = () => z.object({ claims: z.union([z.boolean(), z.lazy(() => NpiProviderCountOutputTypeCountClaimsArgs_schema_1.NpiProviderCountOutputTypeCountClaimsArgsObjectSchema)]).optional(), payments: z.union([z.boolean(), z.lazy(() => NpiProviderCountOutputTypeCountPaymentsArgs_schema_1.NpiProviderCountOutputTypeCountPaymentsArgsObjectSchema)]).optional(), commissionBatches: z.union([z.boolean(), z.lazy(() => NpiProviderCountOutputTypeCountCommissionBatchesArgs_schema_1.NpiProviderCountOutputTypeCountCommissionBatchesArgsObjectSchema)]).optional(), - appointmentProcedures: z.union([z.boolean(), z.lazy(() => NpiProviderCountOutputTypeCountAppointmentProceduresArgs_schema_1.NpiProviderCountOutputTypeCountAppointmentProceduresArgsObjectSchema)]).optional() + appointmentProcedures: z.union([z.boolean(), z.lazy(() => NpiProviderCountOutputTypeCountAppointmentProceduresArgs_schema_1.NpiProviderCountOutputTypeCountAppointmentProceduresArgsObjectSchema)]).optional(), + appointments: z.union([z.boolean(), z.lazy(() => NpiProviderCountOutputTypeCountAppointmentsArgs_schema_1.NpiProviderCountOutputTypeCountAppointmentsArgsObjectSchema)]).optional() }).strict(); exports.NpiProviderCountOutputTypeSelectObjectSchema = makeSchema(); exports.NpiProviderCountOutputTypeSelectObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderCountOutputTypeSelect.schema.ts b/packages/db/shared/schemas/objects/NpiProviderCountOutputTypeSelect.schema.ts index 0a82e1f0..34786b9e 100644 --- a/packages/db/shared/schemas/objects/NpiProviderCountOutputTypeSelect.schema.ts +++ b/packages/db/shared/schemas/objects/NpiProviderCountOutputTypeSelect.schema.ts @@ -3,13 +3,15 @@ import type { Prisma } from '../../../generated/prisma'; import { NpiProviderCountOutputTypeCountClaimsArgsObjectSchema as NpiProviderCountOutputTypeCountClaimsArgsObjectSchema } from './NpiProviderCountOutputTypeCountClaimsArgs.schema'; import { NpiProviderCountOutputTypeCountPaymentsArgsObjectSchema as NpiProviderCountOutputTypeCountPaymentsArgsObjectSchema } from './NpiProviderCountOutputTypeCountPaymentsArgs.schema'; import { NpiProviderCountOutputTypeCountCommissionBatchesArgsObjectSchema as NpiProviderCountOutputTypeCountCommissionBatchesArgsObjectSchema } from './NpiProviderCountOutputTypeCountCommissionBatchesArgs.schema'; -import { NpiProviderCountOutputTypeCountAppointmentProceduresArgsObjectSchema as NpiProviderCountOutputTypeCountAppointmentProceduresArgsObjectSchema } from './NpiProviderCountOutputTypeCountAppointmentProceduresArgs.schema' +import { NpiProviderCountOutputTypeCountAppointmentProceduresArgsObjectSchema as NpiProviderCountOutputTypeCountAppointmentProceduresArgsObjectSchema } from './NpiProviderCountOutputTypeCountAppointmentProceduresArgs.schema'; +import { NpiProviderCountOutputTypeCountAppointmentsArgsObjectSchema as NpiProviderCountOutputTypeCountAppointmentsArgsObjectSchema } from './NpiProviderCountOutputTypeCountAppointmentsArgs.schema' const makeSchema = () => z.object({ claims: z.union([z.boolean(), z.lazy(() => NpiProviderCountOutputTypeCountClaimsArgsObjectSchema)]).optional(), payments: z.union([z.boolean(), z.lazy(() => NpiProviderCountOutputTypeCountPaymentsArgsObjectSchema)]).optional(), commissionBatches: z.union([z.boolean(), z.lazy(() => NpiProviderCountOutputTypeCountCommissionBatchesArgsObjectSchema)]).optional(), - appointmentProcedures: z.union([z.boolean(), z.lazy(() => NpiProviderCountOutputTypeCountAppointmentProceduresArgsObjectSchema)]).optional() + appointmentProcedures: z.union([z.boolean(), z.lazy(() => NpiProviderCountOutputTypeCountAppointmentProceduresArgsObjectSchema)]).optional(), + appointments: z.union([z.boolean(), z.lazy(() => NpiProviderCountOutputTypeCountAppointmentsArgsObjectSchema)]).optional() }).strict(); export const NpiProviderCountOutputTypeSelectObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const NpiProviderCountOutputTypeSelectObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderCreateInput.schema.js b/packages/db/shared/schemas/objects/NpiProviderCreateInput.schema.js index f13deec8..16c755cf 100644 --- a/packages/db/shared/schemas/objects/NpiProviderCreateInput.schema.js +++ b/packages/db/shared/schemas/objects/NpiProviderCreateInput.schema.js @@ -40,6 +40,7 @@ const ClaimCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./ClaimCr const PaymentCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./PaymentCreateNestedManyWithoutNpiProviderInput.schema"); const CommissionBatchCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./CommissionBatchCreateNestedManyWithoutNpiProviderInput.schema"); const AppointmentProcedureCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./AppointmentProcedureCreateNestedManyWithoutNpiProviderInput.schema"); +const AppointmentCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./AppointmentCreateNestedManyWithoutNpiProviderInput.schema"); const makeSchema = () => z.object({ npiNumber: z.string(), providerName: z.string(), @@ -49,7 +50,8 @@ const makeSchema = () => z.object({ claims: z.lazy(() => ClaimCreateNestedManyWithoutNpiProviderInput_schema_1.ClaimCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), payments: z.lazy(() => PaymentCreateNestedManyWithoutNpiProviderInput_schema_1.PaymentCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchCreateNestedManyWithoutNpiProviderInput_schema_1.CommissionBatchCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() }).strict(); exports.NpiProviderCreateInputObjectSchema = makeSchema(); exports.NpiProviderCreateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderCreateInput.schema.ts b/packages/db/shared/schemas/objects/NpiProviderCreateInput.schema.ts index 4a193d10..52ec613a 100644 --- a/packages/db/shared/schemas/objects/NpiProviderCreateInput.schema.ts +++ b/packages/db/shared/schemas/objects/NpiProviderCreateInput.schema.ts @@ -4,7 +4,8 @@ import { UserCreateNestedOneWithoutNpiProvidersInputObjectSchema as UserCreateNe import { ClaimCreateNestedManyWithoutNpiProviderInputObjectSchema as ClaimCreateNestedManyWithoutNpiProviderInputObjectSchema } from './ClaimCreateNestedManyWithoutNpiProviderInput.schema'; import { PaymentCreateNestedManyWithoutNpiProviderInputObjectSchema as PaymentCreateNestedManyWithoutNpiProviderInputObjectSchema } from './PaymentCreateNestedManyWithoutNpiProviderInput.schema'; import { CommissionBatchCreateNestedManyWithoutNpiProviderInputObjectSchema as CommissionBatchCreateNestedManyWithoutNpiProviderInputObjectSchema } from './CommissionBatchCreateNestedManyWithoutNpiProviderInput.schema'; -import { AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema as AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema } from './AppointmentProcedureCreateNestedManyWithoutNpiProviderInput.schema' +import { AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema as AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema } from './AppointmentProcedureCreateNestedManyWithoutNpiProviderInput.schema'; +import { AppointmentCreateNestedManyWithoutNpiProviderInputObjectSchema as AppointmentCreateNestedManyWithoutNpiProviderInputObjectSchema } from './AppointmentCreateNestedManyWithoutNpiProviderInput.schema' const makeSchema = () => z.object({ npiNumber: z.string(), @@ -15,7 +16,8 @@ const makeSchema = () => z.object({ claims: z.lazy(() => ClaimCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), payments: z.lazy(() => PaymentCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() }).strict(); export const NpiProviderCreateInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const NpiProviderCreateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderCreateNestedOneWithoutAppointmentsInput.schema.js b/packages/db/shared/schemas/objects/NpiProviderCreateNestedOneWithoutAppointmentsInput.schema.js new file mode 100644 index 00000000..f7af863c --- /dev/null +++ b/packages/db/shared/schemas/objects/NpiProviderCreateNestedOneWithoutAppointmentsInput.schema.js @@ -0,0 +1,48 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.NpiProviderCreateNestedOneWithoutAppointmentsInputObjectZodSchema = exports.NpiProviderCreateNestedOneWithoutAppointmentsInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const NpiProviderCreateWithoutAppointmentsInput_schema_1 = require("./NpiProviderCreateWithoutAppointmentsInput.schema"); +const NpiProviderUncheckedCreateWithoutAppointmentsInput_schema_1 = require("./NpiProviderUncheckedCreateWithoutAppointmentsInput.schema"); +const NpiProviderCreateOrConnectWithoutAppointmentsInput_schema_1 = require("./NpiProviderCreateOrConnectWithoutAppointmentsInput.schema"); +const NpiProviderWhereUniqueInput_schema_1 = require("./NpiProviderWhereUniqueInput.schema"); +const makeSchema = () => z.object({ + create: z.union([z.lazy(() => NpiProviderCreateWithoutAppointmentsInput_schema_1.NpiProviderCreateWithoutAppointmentsInputObjectSchema), z.lazy(() => NpiProviderUncheckedCreateWithoutAppointmentsInput_schema_1.NpiProviderUncheckedCreateWithoutAppointmentsInputObjectSchema)]).optional(), + connectOrCreate: z.lazy(() => NpiProviderCreateOrConnectWithoutAppointmentsInput_schema_1.NpiProviderCreateOrConnectWithoutAppointmentsInputObjectSchema).optional(), + connect: z.lazy(() => NpiProviderWhereUniqueInput_schema_1.NpiProviderWhereUniqueInputObjectSchema).optional() +}).strict(); +exports.NpiProviderCreateNestedOneWithoutAppointmentsInputObjectSchema = makeSchema(); +exports.NpiProviderCreateNestedOneWithoutAppointmentsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderCreateNestedOneWithoutAppointmentsInput.schema.ts b/packages/db/shared/schemas/objects/NpiProviderCreateNestedOneWithoutAppointmentsInput.schema.ts new file mode 100644 index 00000000..6f871699 --- /dev/null +++ b/packages/db/shared/schemas/objects/NpiProviderCreateNestedOneWithoutAppointmentsInput.schema.ts @@ -0,0 +1,14 @@ +import * as z from 'zod'; +import type { Prisma } from '../../../generated/prisma'; +import { NpiProviderCreateWithoutAppointmentsInputObjectSchema as NpiProviderCreateWithoutAppointmentsInputObjectSchema } from './NpiProviderCreateWithoutAppointmentsInput.schema'; +import { NpiProviderUncheckedCreateWithoutAppointmentsInputObjectSchema as NpiProviderUncheckedCreateWithoutAppointmentsInputObjectSchema } from './NpiProviderUncheckedCreateWithoutAppointmentsInput.schema'; +import { NpiProviderCreateOrConnectWithoutAppointmentsInputObjectSchema as NpiProviderCreateOrConnectWithoutAppointmentsInputObjectSchema } from './NpiProviderCreateOrConnectWithoutAppointmentsInput.schema'; +import { NpiProviderWhereUniqueInputObjectSchema as NpiProviderWhereUniqueInputObjectSchema } from './NpiProviderWhereUniqueInput.schema' + +const makeSchema = () => z.object({ + create: z.union([z.lazy(() => NpiProviderCreateWithoutAppointmentsInputObjectSchema), z.lazy(() => NpiProviderUncheckedCreateWithoutAppointmentsInputObjectSchema)]).optional(), + connectOrCreate: z.lazy(() => NpiProviderCreateOrConnectWithoutAppointmentsInputObjectSchema).optional(), + connect: z.lazy(() => NpiProviderWhereUniqueInputObjectSchema).optional() +}).strict(); +export const NpiProviderCreateNestedOneWithoutAppointmentsInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; +export const NpiProviderCreateNestedOneWithoutAppointmentsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderCreateOrConnectWithoutAppointmentsInput.schema.js b/packages/db/shared/schemas/objects/NpiProviderCreateOrConnectWithoutAppointmentsInput.schema.js new file mode 100644 index 00000000..64f7acdc --- /dev/null +++ b/packages/db/shared/schemas/objects/NpiProviderCreateOrConnectWithoutAppointmentsInput.schema.js @@ -0,0 +1,46 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.NpiProviderCreateOrConnectWithoutAppointmentsInputObjectZodSchema = exports.NpiProviderCreateOrConnectWithoutAppointmentsInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const NpiProviderWhereUniqueInput_schema_1 = require("./NpiProviderWhereUniqueInput.schema"); +const NpiProviderCreateWithoutAppointmentsInput_schema_1 = require("./NpiProviderCreateWithoutAppointmentsInput.schema"); +const NpiProviderUncheckedCreateWithoutAppointmentsInput_schema_1 = require("./NpiProviderUncheckedCreateWithoutAppointmentsInput.schema"); +const makeSchema = () => z.object({ + where: z.lazy(() => NpiProviderWhereUniqueInput_schema_1.NpiProviderWhereUniqueInputObjectSchema), + create: z.union([z.lazy(() => NpiProviderCreateWithoutAppointmentsInput_schema_1.NpiProviderCreateWithoutAppointmentsInputObjectSchema), z.lazy(() => NpiProviderUncheckedCreateWithoutAppointmentsInput_schema_1.NpiProviderUncheckedCreateWithoutAppointmentsInputObjectSchema)]) +}).strict(); +exports.NpiProviderCreateOrConnectWithoutAppointmentsInputObjectSchema = makeSchema(); +exports.NpiProviderCreateOrConnectWithoutAppointmentsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderCreateOrConnectWithoutAppointmentsInput.schema.ts b/packages/db/shared/schemas/objects/NpiProviderCreateOrConnectWithoutAppointmentsInput.schema.ts new file mode 100644 index 00000000..a7b26737 --- /dev/null +++ b/packages/db/shared/schemas/objects/NpiProviderCreateOrConnectWithoutAppointmentsInput.schema.ts @@ -0,0 +1,12 @@ +import * as z from 'zod'; +import type { Prisma } from '../../../generated/prisma'; +import { NpiProviderWhereUniqueInputObjectSchema as NpiProviderWhereUniqueInputObjectSchema } from './NpiProviderWhereUniqueInput.schema'; +import { NpiProviderCreateWithoutAppointmentsInputObjectSchema as NpiProviderCreateWithoutAppointmentsInputObjectSchema } from './NpiProviderCreateWithoutAppointmentsInput.schema'; +import { NpiProviderUncheckedCreateWithoutAppointmentsInputObjectSchema as NpiProviderUncheckedCreateWithoutAppointmentsInputObjectSchema } from './NpiProviderUncheckedCreateWithoutAppointmentsInput.schema' + +const makeSchema = () => z.object({ + where: z.lazy(() => NpiProviderWhereUniqueInputObjectSchema), + create: z.union([z.lazy(() => NpiProviderCreateWithoutAppointmentsInputObjectSchema), z.lazy(() => NpiProviderUncheckedCreateWithoutAppointmentsInputObjectSchema)]) +}).strict(); +export const NpiProviderCreateOrConnectWithoutAppointmentsInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; +export const NpiProviderCreateOrConnectWithoutAppointmentsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderCreateWithoutAppointmentProceduresInput.schema.js b/packages/db/shared/schemas/objects/NpiProviderCreateWithoutAppointmentProceduresInput.schema.js index 941fdc0d..fbf4d90e 100644 --- a/packages/db/shared/schemas/objects/NpiProviderCreateWithoutAppointmentProceduresInput.schema.js +++ b/packages/db/shared/schemas/objects/NpiProviderCreateWithoutAppointmentProceduresInput.schema.js @@ -39,6 +39,7 @@ const UserCreateNestedOneWithoutNpiProvidersInput_schema_1 = require("./UserCrea const ClaimCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./ClaimCreateNestedManyWithoutNpiProviderInput.schema"); const PaymentCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./PaymentCreateNestedManyWithoutNpiProviderInput.schema"); const CommissionBatchCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./CommissionBatchCreateNestedManyWithoutNpiProviderInput.schema"); +const AppointmentCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./AppointmentCreateNestedManyWithoutNpiProviderInput.schema"); const makeSchema = () => z.object({ npiNumber: z.string(), providerName: z.string(), @@ -47,7 +48,8 @@ const makeSchema = () => z.object({ user: z.lazy(() => UserCreateNestedOneWithoutNpiProvidersInput_schema_1.UserCreateNestedOneWithoutNpiProvidersInputObjectSchema), claims: z.lazy(() => ClaimCreateNestedManyWithoutNpiProviderInput_schema_1.ClaimCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), payments: z.lazy(() => PaymentCreateNestedManyWithoutNpiProviderInput_schema_1.PaymentCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), - commissionBatches: z.lazy(() => CommissionBatchCreateNestedManyWithoutNpiProviderInput_schema_1.CommissionBatchCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() + commissionBatches: z.lazy(() => CommissionBatchCreateNestedManyWithoutNpiProviderInput_schema_1.CommissionBatchCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() }).strict(); exports.NpiProviderCreateWithoutAppointmentProceduresInputObjectSchema = makeSchema(); exports.NpiProviderCreateWithoutAppointmentProceduresInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderCreateWithoutAppointmentProceduresInput.schema.ts b/packages/db/shared/schemas/objects/NpiProviderCreateWithoutAppointmentProceduresInput.schema.ts index cb7171f1..dc5b0e0e 100644 --- a/packages/db/shared/schemas/objects/NpiProviderCreateWithoutAppointmentProceduresInput.schema.ts +++ b/packages/db/shared/schemas/objects/NpiProviderCreateWithoutAppointmentProceduresInput.schema.ts @@ -3,7 +3,8 @@ import type { Prisma } from '../../../generated/prisma'; import { UserCreateNestedOneWithoutNpiProvidersInputObjectSchema as UserCreateNestedOneWithoutNpiProvidersInputObjectSchema } from './UserCreateNestedOneWithoutNpiProvidersInput.schema'; import { ClaimCreateNestedManyWithoutNpiProviderInputObjectSchema as ClaimCreateNestedManyWithoutNpiProviderInputObjectSchema } from './ClaimCreateNestedManyWithoutNpiProviderInput.schema'; import { PaymentCreateNestedManyWithoutNpiProviderInputObjectSchema as PaymentCreateNestedManyWithoutNpiProviderInputObjectSchema } from './PaymentCreateNestedManyWithoutNpiProviderInput.schema'; -import { CommissionBatchCreateNestedManyWithoutNpiProviderInputObjectSchema as CommissionBatchCreateNestedManyWithoutNpiProviderInputObjectSchema } from './CommissionBatchCreateNestedManyWithoutNpiProviderInput.schema' +import { CommissionBatchCreateNestedManyWithoutNpiProviderInputObjectSchema as CommissionBatchCreateNestedManyWithoutNpiProviderInputObjectSchema } from './CommissionBatchCreateNestedManyWithoutNpiProviderInput.schema'; +import { AppointmentCreateNestedManyWithoutNpiProviderInputObjectSchema as AppointmentCreateNestedManyWithoutNpiProviderInputObjectSchema } from './AppointmentCreateNestedManyWithoutNpiProviderInput.schema' const makeSchema = () => z.object({ npiNumber: z.string(), @@ -13,7 +14,8 @@ const makeSchema = () => z.object({ user: z.lazy(() => UserCreateNestedOneWithoutNpiProvidersInputObjectSchema), claims: z.lazy(() => ClaimCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), payments: z.lazy(() => PaymentCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), - commissionBatches: z.lazy(() => CommissionBatchCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() + commissionBatches: z.lazy(() => CommissionBatchCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() }).strict(); export const NpiProviderCreateWithoutAppointmentProceduresInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const NpiProviderCreateWithoutAppointmentProceduresInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderCreateWithoutAppointmentsInput.schema.js b/packages/db/shared/schemas/objects/NpiProviderCreateWithoutAppointmentsInput.schema.js new file mode 100644 index 00000000..37bf6f70 --- /dev/null +++ b/packages/db/shared/schemas/objects/NpiProviderCreateWithoutAppointmentsInput.schema.js @@ -0,0 +1,55 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.NpiProviderCreateWithoutAppointmentsInputObjectZodSchema = exports.NpiProviderCreateWithoutAppointmentsInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const UserCreateNestedOneWithoutNpiProvidersInput_schema_1 = require("./UserCreateNestedOneWithoutNpiProvidersInput.schema"); +const ClaimCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./ClaimCreateNestedManyWithoutNpiProviderInput.schema"); +const PaymentCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./PaymentCreateNestedManyWithoutNpiProviderInput.schema"); +const CommissionBatchCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./CommissionBatchCreateNestedManyWithoutNpiProviderInput.schema"); +const AppointmentProcedureCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./AppointmentProcedureCreateNestedManyWithoutNpiProviderInput.schema"); +const makeSchema = () => z.object({ + npiNumber: z.string(), + providerName: z.string(), + sortOrder: z.number().int().optional(), + createdAt: z.coerce.date().optional(), + user: z.lazy(() => UserCreateNestedOneWithoutNpiProvidersInput_schema_1.UserCreateNestedOneWithoutNpiProvidersInputObjectSchema), + claims: z.lazy(() => ClaimCreateNestedManyWithoutNpiProviderInput_schema_1.ClaimCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + payments: z.lazy(() => PaymentCreateNestedManyWithoutNpiProviderInput_schema_1.PaymentCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + commissionBatches: z.lazy(() => CommissionBatchCreateNestedManyWithoutNpiProviderInput_schema_1.CommissionBatchCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + appointmentProcedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() +}).strict(); +exports.NpiProviderCreateWithoutAppointmentsInputObjectSchema = makeSchema(); +exports.NpiProviderCreateWithoutAppointmentsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderCreateWithoutAppointmentsInput.schema.ts b/packages/db/shared/schemas/objects/NpiProviderCreateWithoutAppointmentsInput.schema.ts new file mode 100644 index 00000000..9e18efe9 --- /dev/null +++ b/packages/db/shared/schemas/objects/NpiProviderCreateWithoutAppointmentsInput.schema.ts @@ -0,0 +1,21 @@ +import * as z from 'zod'; +import type { Prisma } from '../../../generated/prisma'; +import { UserCreateNestedOneWithoutNpiProvidersInputObjectSchema as UserCreateNestedOneWithoutNpiProvidersInputObjectSchema } from './UserCreateNestedOneWithoutNpiProvidersInput.schema'; +import { ClaimCreateNestedManyWithoutNpiProviderInputObjectSchema as ClaimCreateNestedManyWithoutNpiProviderInputObjectSchema } from './ClaimCreateNestedManyWithoutNpiProviderInput.schema'; +import { PaymentCreateNestedManyWithoutNpiProviderInputObjectSchema as PaymentCreateNestedManyWithoutNpiProviderInputObjectSchema } from './PaymentCreateNestedManyWithoutNpiProviderInput.schema'; +import { CommissionBatchCreateNestedManyWithoutNpiProviderInputObjectSchema as CommissionBatchCreateNestedManyWithoutNpiProviderInputObjectSchema } from './CommissionBatchCreateNestedManyWithoutNpiProviderInput.schema'; +import { AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema as AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema } from './AppointmentProcedureCreateNestedManyWithoutNpiProviderInput.schema' + +const makeSchema = () => z.object({ + npiNumber: z.string(), + providerName: z.string(), + sortOrder: z.number().int().optional(), + createdAt: z.coerce.date().optional(), + user: z.lazy(() => UserCreateNestedOneWithoutNpiProvidersInputObjectSchema), + claims: z.lazy(() => ClaimCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + payments: z.lazy(() => PaymentCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + commissionBatches: z.lazy(() => CommissionBatchCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + appointmentProcedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() +}).strict(); +export const NpiProviderCreateWithoutAppointmentsInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; +export const NpiProviderCreateWithoutAppointmentsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderCreateWithoutClaimsInput.schema.js b/packages/db/shared/schemas/objects/NpiProviderCreateWithoutClaimsInput.schema.js index cd803d3d..684fed0e 100644 --- a/packages/db/shared/schemas/objects/NpiProviderCreateWithoutClaimsInput.schema.js +++ b/packages/db/shared/schemas/objects/NpiProviderCreateWithoutClaimsInput.schema.js @@ -39,6 +39,7 @@ const UserCreateNestedOneWithoutNpiProvidersInput_schema_1 = require("./UserCrea const PaymentCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./PaymentCreateNestedManyWithoutNpiProviderInput.schema"); const CommissionBatchCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./CommissionBatchCreateNestedManyWithoutNpiProviderInput.schema"); const AppointmentProcedureCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./AppointmentProcedureCreateNestedManyWithoutNpiProviderInput.schema"); +const AppointmentCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./AppointmentCreateNestedManyWithoutNpiProviderInput.schema"); const makeSchema = () => z.object({ npiNumber: z.string(), providerName: z.string(), @@ -47,7 +48,8 @@ const makeSchema = () => z.object({ user: z.lazy(() => UserCreateNestedOneWithoutNpiProvidersInput_schema_1.UserCreateNestedOneWithoutNpiProvidersInputObjectSchema), payments: z.lazy(() => PaymentCreateNestedManyWithoutNpiProviderInput_schema_1.PaymentCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchCreateNestedManyWithoutNpiProviderInput_schema_1.CommissionBatchCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() }).strict(); exports.NpiProviderCreateWithoutClaimsInputObjectSchema = makeSchema(); exports.NpiProviderCreateWithoutClaimsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderCreateWithoutClaimsInput.schema.ts b/packages/db/shared/schemas/objects/NpiProviderCreateWithoutClaimsInput.schema.ts index fe926489..8b0a7f42 100644 --- a/packages/db/shared/schemas/objects/NpiProviderCreateWithoutClaimsInput.schema.ts +++ b/packages/db/shared/schemas/objects/NpiProviderCreateWithoutClaimsInput.schema.ts @@ -3,7 +3,8 @@ import type { Prisma } from '../../../generated/prisma'; import { UserCreateNestedOneWithoutNpiProvidersInputObjectSchema as UserCreateNestedOneWithoutNpiProvidersInputObjectSchema } from './UserCreateNestedOneWithoutNpiProvidersInput.schema'; import { PaymentCreateNestedManyWithoutNpiProviderInputObjectSchema as PaymentCreateNestedManyWithoutNpiProviderInputObjectSchema } from './PaymentCreateNestedManyWithoutNpiProviderInput.schema'; import { CommissionBatchCreateNestedManyWithoutNpiProviderInputObjectSchema as CommissionBatchCreateNestedManyWithoutNpiProviderInputObjectSchema } from './CommissionBatchCreateNestedManyWithoutNpiProviderInput.schema'; -import { AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema as AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema } from './AppointmentProcedureCreateNestedManyWithoutNpiProviderInput.schema' +import { AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema as AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema } from './AppointmentProcedureCreateNestedManyWithoutNpiProviderInput.schema'; +import { AppointmentCreateNestedManyWithoutNpiProviderInputObjectSchema as AppointmentCreateNestedManyWithoutNpiProviderInputObjectSchema } from './AppointmentCreateNestedManyWithoutNpiProviderInput.schema' const makeSchema = () => z.object({ npiNumber: z.string(), @@ -13,7 +14,8 @@ const makeSchema = () => z.object({ user: z.lazy(() => UserCreateNestedOneWithoutNpiProvidersInputObjectSchema), payments: z.lazy(() => PaymentCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() }).strict(); export const NpiProviderCreateWithoutClaimsInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const NpiProviderCreateWithoutClaimsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderCreateWithoutCommissionBatchesInput.schema.js b/packages/db/shared/schemas/objects/NpiProviderCreateWithoutCommissionBatchesInput.schema.js index ae4c4a6e..6caa4ce9 100644 --- a/packages/db/shared/schemas/objects/NpiProviderCreateWithoutCommissionBatchesInput.schema.js +++ b/packages/db/shared/schemas/objects/NpiProviderCreateWithoutCommissionBatchesInput.schema.js @@ -39,6 +39,7 @@ const UserCreateNestedOneWithoutNpiProvidersInput_schema_1 = require("./UserCrea const ClaimCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./ClaimCreateNestedManyWithoutNpiProviderInput.schema"); const PaymentCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./PaymentCreateNestedManyWithoutNpiProviderInput.schema"); const AppointmentProcedureCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./AppointmentProcedureCreateNestedManyWithoutNpiProviderInput.schema"); +const AppointmentCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./AppointmentCreateNestedManyWithoutNpiProviderInput.schema"); const makeSchema = () => z.object({ npiNumber: z.string(), providerName: z.string(), @@ -47,7 +48,8 @@ const makeSchema = () => z.object({ user: z.lazy(() => UserCreateNestedOneWithoutNpiProvidersInput_schema_1.UserCreateNestedOneWithoutNpiProvidersInputObjectSchema), claims: z.lazy(() => ClaimCreateNestedManyWithoutNpiProviderInput_schema_1.ClaimCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), payments: z.lazy(() => PaymentCreateNestedManyWithoutNpiProviderInput_schema_1.PaymentCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() }).strict(); exports.NpiProviderCreateWithoutCommissionBatchesInputObjectSchema = makeSchema(); exports.NpiProviderCreateWithoutCommissionBatchesInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderCreateWithoutCommissionBatchesInput.schema.ts b/packages/db/shared/schemas/objects/NpiProviderCreateWithoutCommissionBatchesInput.schema.ts index 59401441..8cccba30 100644 --- a/packages/db/shared/schemas/objects/NpiProviderCreateWithoutCommissionBatchesInput.schema.ts +++ b/packages/db/shared/schemas/objects/NpiProviderCreateWithoutCommissionBatchesInput.schema.ts @@ -3,7 +3,8 @@ import type { Prisma } from '../../../generated/prisma'; import { UserCreateNestedOneWithoutNpiProvidersInputObjectSchema as UserCreateNestedOneWithoutNpiProvidersInputObjectSchema } from './UserCreateNestedOneWithoutNpiProvidersInput.schema'; import { ClaimCreateNestedManyWithoutNpiProviderInputObjectSchema as ClaimCreateNestedManyWithoutNpiProviderInputObjectSchema } from './ClaimCreateNestedManyWithoutNpiProviderInput.schema'; import { PaymentCreateNestedManyWithoutNpiProviderInputObjectSchema as PaymentCreateNestedManyWithoutNpiProviderInputObjectSchema } from './PaymentCreateNestedManyWithoutNpiProviderInput.schema'; -import { AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema as AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema } from './AppointmentProcedureCreateNestedManyWithoutNpiProviderInput.schema' +import { AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema as AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema } from './AppointmentProcedureCreateNestedManyWithoutNpiProviderInput.schema'; +import { AppointmentCreateNestedManyWithoutNpiProviderInputObjectSchema as AppointmentCreateNestedManyWithoutNpiProviderInputObjectSchema } from './AppointmentCreateNestedManyWithoutNpiProviderInput.schema' const makeSchema = () => z.object({ npiNumber: z.string(), @@ -13,7 +14,8 @@ const makeSchema = () => z.object({ user: z.lazy(() => UserCreateNestedOneWithoutNpiProvidersInputObjectSchema), claims: z.lazy(() => ClaimCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), payments: z.lazy(() => PaymentCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() }).strict(); export const NpiProviderCreateWithoutCommissionBatchesInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const NpiProviderCreateWithoutCommissionBatchesInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderCreateWithoutPaymentsInput.schema.js b/packages/db/shared/schemas/objects/NpiProviderCreateWithoutPaymentsInput.schema.js index a23d6d92..884692bd 100644 --- a/packages/db/shared/schemas/objects/NpiProviderCreateWithoutPaymentsInput.schema.js +++ b/packages/db/shared/schemas/objects/NpiProviderCreateWithoutPaymentsInput.schema.js @@ -39,6 +39,7 @@ const UserCreateNestedOneWithoutNpiProvidersInput_schema_1 = require("./UserCrea const ClaimCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./ClaimCreateNestedManyWithoutNpiProviderInput.schema"); const CommissionBatchCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./CommissionBatchCreateNestedManyWithoutNpiProviderInput.schema"); const AppointmentProcedureCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./AppointmentProcedureCreateNestedManyWithoutNpiProviderInput.schema"); +const AppointmentCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./AppointmentCreateNestedManyWithoutNpiProviderInput.schema"); const makeSchema = () => z.object({ npiNumber: z.string(), providerName: z.string(), @@ -47,7 +48,8 @@ const makeSchema = () => z.object({ user: z.lazy(() => UserCreateNestedOneWithoutNpiProvidersInput_schema_1.UserCreateNestedOneWithoutNpiProvidersInputObjectSchema), claims: z.lazy(() => ClaimCreateNestedManyWithoutNpiProviderInput_schema_1.ClaimCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchCreateNestedManyWithoutNpiProviderInput_schema_1.CommissionBatchCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() }).strict(); exports.NpiProviderCreateWithoutPaymentsInputObjectSchema = makeSchema(); exports.NpiProviderCreateWithoutPaymentsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderCreateWithoutPaymentsInput.schema.ts b/packages/db/shared/schemas/objects/NpiProviderCreateWithoutPaymentsInput.schema.ts index c5c11d59..0dde92ee 100644 --- a/packages/db/shared/schemas/objects/NpiProviderCreateWithoutPaymentsInput.schema.ts +++ b/packages/db/shared/schemas/objects/NpiProviderCreateWithoutPaymentsInput.schema.ts @@ -3,7 +3,8 @@ import type { Prisma } from '../../../generated/prisma'; import { UserCreateNestedOneWithoutNpiProvidersInputObjectSchema as UserCreateNestedOneWithoutNpiProvidersInputObjectSchema } from './UserCreateNestedOneWithoutNpiProvidersInput.schema'; import { ClaimCreateNestedManyWithoutNpiProviderInputObjectSchema as ClaimCreateNestedManyWithoutNpiProviderInputObjectSchema } from './ClaimCreateNestedManyWithoutNpiProviderInput.schema'; import { CommissionBatchCreateNestedManyWithoutNpiProviderInputObjectSchema as CommissionBatchCreateNestedManyWithoutNpiProviderInputObjectSchema } from './CommissionBatchCreateNestedManyWithoutNpiProviderInput.schema'; -import { AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema as AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema } from './AppointmentProcedureCreateNestedManyWithoutNpiProviderInput.schema' +import { AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema as AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema } from './AppointmentProcedureCreateNestedManyWithoutNpiProviderInput.schema'; +import { AppointmentCreateNestedManyWithoutNpiProviderInputObjectSchema as AppointmentCreateNestedManyWithoutNpiProviderInputObjectSchema } from './AppointmentCreateNestedManyWithoutNpiProviderInput.schema' const makeSchema = () => z.object({ npiNumber: z.string(), @@ -13,7 +14,8 @@ const makeSchema = () => z.object({ user: z.lazy(() => UserCreateNestedOneWithoutNpiProvidersInputObjectSchema), claims: z.lazy(() => ClaimCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() }).strict(); export const NpiProviderCreateWithoutPaymentsInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const NpiProviderCreateWithoutPaymentsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderCreateWithoutUserInput.schema.js b/packages/db/shared/schemas/objects/NpiProviderCreateWithoutUserInput.schema.js index 5e070f63..9f8d44d5 100644 --- a/packages/db/shared/schemas/objects/NpiProviderCreateWithoutUserInput.schema.js +++ b/packages/db/shared/schemas/objects/NpiProviderCreateWithoutUserInput.schema.js @@ -39,6 +39,7 @@ const ClaimCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./ClaimCr const PaymentCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./PaymentCreateNestedManyWithoutNpiProviderInput.schema"); const CommissionBatchCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./CommissionBatchCreateNestedManyWithoutNpiProviderInput.schema"); const AppointmentProcedureCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./AppointmentProcedureCreateNestedManyWithoutNpiProviderInput.schema"); +const AppointmentCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./AppointmentCreateNestedManyWithoutNpiProviderInput.schema"); const makeSchema = () => z.object({ npiNumber: z.string(), providerName: z.string(), @@ -47,7 +48,8 @@ const makeSchema = () => z.object({ claims: z.lazy(() => ClaimCreateNestedManyWithoutNpiProviderInput_schema_1.ClaimCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), payments: z.lazy(() => PaymentCreateNestedManyWithoutNpiProviderInput_schema_1.PaymentCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchCreateNestedManyWithoutNpiProviderInput_schema_1.CommissionBatchCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() }).strict(); exports.NpiProviderCreateWithoutUserInputObjectSchema = makeSchema(); exports.NpiProviderCreateWithoutUserInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderCreateWithoutUserInput.schema.ts b/packages/db/shared/schemas/objects/NpiProviderCreateWithoutUserInput.schema.ts index 095c5c5e..a4176273 100644 --- a/packages/db/shared/schemas/objects/NpiProviderCreateWithoutUserInput.schema.ts +++ b/packages/db/shared/schemas/objects/NpiProviderCreateWithoutUserInput.schema.ts @@ -3,7 +3,8 @@ import type { Prisma } from '../../../generated/prisma'; import { ClaimCreateNestedManyWithoutNpiProviderInputObjectSchema as ClaimCreateNestedManyWithoutNpiProviderInputObjectSchema } from './ClaimCreateNestedManyWithoutNpiProviderInput.schema'; import { PaymentCreateNestedManyWithoutNpiProviderInputObjectSchema as PaymentCreateNestedManyWithoutNpiProviderInputObjectSchema } from './PaymentCreateNestedManyWithoutNpiProviderInput.schema'; import { CommissionBatchCreateNestedManyWithoutNpiProviderInputObjectSchema as CommissionBatchCreateNestedManyWithoutNpiProviderInputObjectSchema } from './CommissionBatchCreateNestedManyWithoutNpiProviderInput.schema'; -import { AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema as AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema } from './AppointmentProcedureCreateNestedManyWithoutNpiProviderInput.schema' +import { AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema as AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema } from './AppointmentProcedureCreateNestedManyWithoutNpiProviderInput.schema'; +import { AppointmentCreateNestedManyWithoutNpiProviderInputObjectSchema as AppointmentCreateNestedManyWithoutNpiProviderInputObjectSchema } from './AppointmentCreateNestedManyWithoutNpiProviderInput.schema' const makeSchema = () => z.object({ npiNumber: z.string(), @@ -13,7 +14,8 @@ const makeSchema = () => z.object({ claims: z.lazy(() => ClaimCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), payments: z.lazy(() => PaymentCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() }).strict(); export const NpiProviderCreateWithoutUserInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const NpiProviderCreateWithoutUserInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderInclude.schema.js b/packages/db/shared/schemas/objects/NpiProviderInclude.schema.js index 8cc234f1..68c3d763 100644 --- a/packages/db/shared/schemas/objects/NpiProviderInclude.schema.js +++ b/packages/db/shared/schemas/objects/NpiProviderInclude.schema.js @@ -40,6 +40,7 @@ const findManyClaim_schema_1 = require("../findManyClaim.schema"); const findManyPayment_schema_1 = require("../findManyPayment.schema"); const findManyCommissionBatch_schema_1 = require("../findManyCommissionBatch.schema"); const findManyAppointmentProcedure_schema_1 = require("../findManyAppointmentProcedure.schema"); +const findManyAppointment_schema_1 = require("../findManyAppointment.schema"); const NpiProviderCountOutputTypeArgs_schema_1 = require("./NpiProviderCountOutputTypeArgs.schema"); const makeSchema = () => z.object({ user: z.union([z.boolean(), z.lazy(() => UserArgs_schema_1.UserArgsObjectSchema)]).optional(), @@ -47,6 +48,7 @@ const makeSchema = () => z.object({ payments: z.union([z.boolean(), z.lazy(() => findManyPayment_schema_1.PaymentFindManySchema)]).optional(), commissionBatches: z.union([z.boolean(), z.lazy(() => findManyCommissionBatch_schema_1.CommissionBatchFindManySchema)]).optional(), appointmentProcedures: z.union([z.boolean(), z.lazy(() => findManyAppointmentProcedure_schema_1.AppointmentProcedureFindManySchema)]).optional(), + appointments: z.union([z.boolean(), z.lazy(() => findManyAppointment_schema_1.AppointmentFindManySchema)]).optional(), _count: z.union([z.boolean(), z.lazy(() => NpiProviderCountOutputTypeArgs_schema_1.NpiProviderCountOutputTypeArgsObjectSchema)]).optional() }).strict(); exports.NpiProviderIncludeObjectSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderInclude.schema.ts b/packages/db/shared/schemas/objects/NpiProviderInclude.schema.ts index af28cf79..85cb2edb 100644 --- a/packages/db/shared/schemas/objects/NpiProviderInclude.schema.ts +++ b/packages/db/shared/schemas/objects/NpiProviderInclude.schema.ts @@ -5,6 +5,7 @@ import { ClaimFindManySchema as ClaimFindManySchema } from '../findManyClaim.sch import { PaymentFindManySchema as PaymentFindManySchema } from '../findManyPayment.schema'; import { CommissionBatchFindManySchema as CommissionBatchFindManySchema } from '../findManyCommissionBatch.schema'; import { AppointmentProcedureFindManySchema as AppointmentProcedureFindManySchema } from '../findManyAppointmentProcedure.schema'; +import { AppointmentFindManySchema as AppointmentFindManySchema } from '../findManyAppointment.schema'; import { NpiProviderCountOutputTypeArgsObjectSchema as NpiProviderCountOutputTypeArgsObjectSchema } from './NpiProviderCountOutputTypeArgs.schema' const makeSchema = () => z.object({ @@ -13,6 +14,7 @@ const makeSchema = () => z.object({ payments: z.union([z.boolean(), z.lazy(() => PaymentFindManySchema)]).optional(), commissionBatches: z.union([z.boolean(), z.lazy(() => CommissionBatchFindManySchema)]).optional(), appointmentProcedures: z.union([z.boolean(), z.lazy(() => AppointmentProcedureFindManySchema)]).optional(), + appointments: z.union([z.boolean(), z.lazy(() => AppointmentFindManySchema)]).optional(), _count: z.union([z.boolean(), z.lazy(() => NpiProviderCountOutputTypeArgsObjectSchema)]).optional() }).strict(); export const NpiProviderIncludeObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; diff --git a/packages/db/shared/schemas/objects/NpiProviderOrderByWithRelationInput.schema.js b/packages/db/shared/schemas/objects/NpiProviderOrderByWithRelationInput.schema.js index c1507828..d1e7a53d 100644 --- a/packages/db/shared/schemas/objects/NpiProviderOrderByWithRelationInput.schema.js +++ b/packages/db/shared/schemas/objects/NpiProviderOrderByWithRelationInput.schema.js @@ -41,6 +41,7 @@ const ClaimOrderByRelationAggregateInput_schema_1 = require("./ClaimOrderByRelat const PaymentOrderByRelationAggregateInput_schema_1 = require("./PaymentOrderByRelationAggregateInput.schema"); const CommissionBatchOrderByRelationAggregateInput_schema_1 = require("./CommissionBatchOrderByRelationAggregateInput.schema"); const AppointmentProcedureOrderByRelationAggregateInput_schema_1 = require("./AppointmentProcedureOrderByRelationAggregateInput.schema"); +const AppointmentOrderByRelationAggregateInput_schema_1 = require("./AppointmentOrderByRelationAggregateInput.schema"); const makeSchema = () => z.object({ id: SortOrder_schema_1.SortOrderSchema.optional(), userId: SortOrder_schema_1.SortOrderSchema.optional(), @@ -52,7 +53,8 @@ const makeSchema = () => z.object({ claims: z.lazy(() => ClaimOrderByRelationAggregateInput_schema_1.ClaimOrderByRelationAggregateInputObjectSchema).optional(), payments: z.lazy(() => PaymentOrderByRelationAggregateInput_schema_1.PaymentOrderByRelationAggregateInputObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchOrderByRelationAggregateInput_schema_1.CommissionBatchOrderByRelationAggregateInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureOrderByRelationAggregateInput_schema_1.AppointmentProcedureOrderByRelationAggregateInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureOrderByRelationAggregateInput_schema_1.AppointmentProcedureOrderByRelationAggregateInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentOrderByRelationAggregateInput_schema_1.AppointmentOrderByRelationAggregateInputObjectSchema).optional() }).strict(); exports.NpiProviderOrderByWithRelationInputObjectSchema = makeSchema(); exports.NpiProviderOrderByWithRelationInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderOrderByWithRelationInput.schema.ts b/packages/db/shared/schemas/objects/NpiProviderOrderByWithRelationInput.schema.ts index ac2083d4..bf95a2b0 100644 --- a/packages/db/shared/schemas/objects/NpiProviderOrderByWithRelationInput.schema.ts +++ b/packages/db/shared/schemas/objects/NpiProviderOrderByWithRelationInput.schema.ts @@ -5,7 +5,8 @@ import { UserOrderByWithRelationInputObjectSchema as UserOrderByWithRelationInpu import { ClaimOrderByRelationAggregateInputObjectSchema as ClaimOrderByRelationAggregateInputObjectSchema } from './ClaimOrderByRelationAggregateInput.schema'; import { PaymentOrderByRelationAggregateInputObjectSchema as PaymentOrderByRelationAggregateInputObjectSchema } from './PaymentOrderByRelationAggregateInput.schema'; import { CommissionBatchOrderByRelationAggregateInputObjectSchema as CommissionBatchOrderByRelationAggregateInputObjectSchema } from './CommissionBatchOrderByRelationAggregateInput.schema'; -import { AppointmentProcedureOrderByRelationAggregateInputObjectSchema as AppointmentProcedureOrderByRelationAggregateInputObjectSchema } from './AppointmentProcedureOrderByRelationAggregateInput.schema' +import { AppointmentProcedureOrderByRelationAggregateInputObjectSchema as AppointmentProcedureOrderByRelationAggregateInputObjectSchema } from './AppointmentProcedureOrderByRelationAggregateInput.schema'; +import { AppointmentOrderByRelationAggregateInputObjectSchema as AppointmentOrderByRelationAggregateInputObjectSchema } from './AppointmentOrderByRelationAggregateInput.schema' const makeSchema = () => z.object({ id: SortOrderSchema.optional(), @@ -18,7 +19,8 @@ const makeSchema = () => z.object({ claims: z.lazy(() => ClaimOrderByRelationAggregateInputObjectSchema).optional(), payments: z.lazy(() => PaymentOrderByRelationAggregateInputObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchOrderByRelationAggregateInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureOrderByRelationAggregateInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureOrderByRelationAggregateInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentOrderByRelationAggregateInputObjectSchema).optional() }).strict(); export const NpiProviderOrderByWithRelationInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const NpiProviderOrderByWithRelationInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderSelect.schema.js b/packages/db/shared/schemas/objects/NpiProviderSelect.schema.js index 6663047b..a4e6c641 100644 --- a/packages/db/shared/schemas/objects/NpiProviderSelect.schema.js +++ b/packages/db/shared/schemas/objects/NpiProviderSelect.schema.js @@ -40,6 +40,7 @@ const findManyClaim_schema_1 = require("../findManyClaim.schema"); const findManyPayment_schema_1 = require("../findManyPayment.schema"); const findManyCommissionBatch_schema_1 = require("../findManyCommissionBatch.schema"); const findManyAppointmentProcedure_schema_1 = require("../findManyAppointmentProcedure.schema"); +const findManyAppointment_schema_1 = require("../findManyAppointment.schema"); const NpiProviderCountOutputTypeArgs_schema_1 = require("./NpiProviderCountOutputTypeArgs.schema"); const makeSchema = () => z.object({ id: z.boolean().optional(), @@ -53,6 +54,7 @@ const makeSchema = () => z.object({ payments: z.union([z.boolean(), z.lazy(() => findManyPayment_schema_1.PaymentFindManySchema)]).optional(), commissionBatches: z.union([z.boolean(), z.lazy(() => findManyCommissionBatch_schema_1.CommissionBatchFindManySchema)]).optional(), appointmentProcedures: z.union([z.boolean(), z.lazy(() => findManyAppointmentProcedure_schema_1.AppointmentProcedureFindManySchema)]).optional(), + appointments: z.union([z.boolean(), z.lazy(() => findManyAppointment_schema_1.AppointmentFindManySchema)]).optional(), _count: z.union([z.boolean(), z.lazy(() => NpiProviderCountOutputTypeArgs_schema_1.NpiProviderCountOutputTypeArgsObjectSchema)]).optional() }).strict(); exports.NpiProviderSelectObjectSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderSelect.schema.ts b/packages/db/shared/schemas/objects/NpiProviderSelect.schema.ts index 63edead3..9dcbe4cb 100644 --- a/packages/db/shared/schemas/objects/NpiProviderSelect.schema.ts +++ b/packages/db/shared/schemas/objects/NpiProviderSelect.schema.ts @@ -5,6 +5,7 @@ import { ClaimFindManySchema as ClaimFindManySchema } from '../findManyClaim.sch import { PaymentFindManySchema as PaymentFindManySchema } from '../findManyPayment.schema'; import { CommissionBatchFindManySchema as CommissionBatchFindManySchema } from '../findManyCommissionBatch.schema'; import { AppointmentProcedureFindManySchema as AppointmentProcedureFindManySchema } from '../findManyAppointmentProcedure.schema'; +import { AppointmentFindManySchema as AppointmentFindManySchema } from '../findManyAppointment.schema'; import { NpiProviderCountOutputTypeArgsObjectSchema as NpiProviderCountOutputTypeArgsObjectSchema } from './NpiProviderCountOutputTypeArgs.schema' const makeSchema = () => z.object({ @@ -19,6 +20,7 @@ const makeSchema = () => z.object({ payments: z.union([z.boolean(), z.lazy(() => PaymentFindManySchema)]).optional(), commissionBatches: z.union([z.boolean(), z.lazy(() => CommissionBatchFindManySchema)]).optional(), appointmentProcedures: z.union([z.boolean(), z.lazy(() => AppointmentProcedureFindManySchema)]).optional(), + appointments: z.union([z.boolean(), z.lazy(() => AppointmentFindManySchema)]).optional(), _count: z.union([z.boolean(), z.lazy(() => NpiProviderCountOutputTypeArgsObjectSchema)]).optional() }).strict(); export const NpiProviderSelectObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; diff --git a/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateInput.schema.js b/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateInput.schema.js index f9df353e..ccc100e6 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateInput.schema.js +++ b/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateInput.schema.js @@ -39,6 +39,7 @@ const ClaimUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1 = require(" const PaymentUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./PaymentUncheckedCreateNestedManyWithoutNpiProviderInput.schema"); const CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput.schema"); const AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput.schema"); +const AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput.schema"); const makeSchema = () => z.object({ id: z.number().int().optional(), userId: z.number().int(), @@ -49,7 +50,8 @@ const makeSchema = () => z.object({ claims: z.lazy(() => ClaimUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.ClaimUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), payments: z.lazy(() => PaymentUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.PaymentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() }).strict(); exports.NpiProviderUncheckedCreateInputObjectSchema = makeSchema(); exports.NpiProviderUncheckedCreateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateInput.schema.ts b/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateInput.schema.ts index c6aa11fc..01dd4580 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateInput.schema.ts +++ b/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateInput.schema.ts @@ -3,7 +3,8 @@ import type { Prisma } from '../../../generated/prisma'; import { ClaimUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as ClaimUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './ClaimUncheckedCreateNestedManyWithoutNpiProviderInput.schema'; import { PaymentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as PaymentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './PaymentUncheckedCreateNestedManyWithoutNpiProviderInput.schema'; import { CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput.schema'; -import { AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput.schema' +import { AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput.schema'; +import { AppointmentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as AppointmentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput.schema' const makeSchema = () => z.object({ id: z.number().int().optional(), @@ -15,7 +16,8 @@ const makeSchema = () => z.object({ claims: z.lazy(() => ClaimUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), payments: z.lazy(() => PaymentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() }).strict(); export const NpiProviderUncheckedCreateInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const NpiProviderUncheckedCreateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutAppointmentProceduresInput.schema.js b/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutAppointmentProceduresInput.schema.js index 70ac9950..2b76c7b9 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutAppointmentProceduresInput.schema.js +++ b/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutAppointmentProceduresInput.schema.js @@ -38,6 +38,7 @@ const z = __importStar(require("zod")); const ClaimUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./ClaimUncheckedCreateNestedManyWithoutNpiProviderInput.schema"); const PaymentUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./PaymentUncheckedCreateNestedManyWithoutNpiProviderInput.schema"); const CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput.schema"); +const AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput.schema"); const makeSchema = () => z.object({ id: z.number().int().optional(), userId: z.number().int(), @@ -47,7 +48,8 @@ const makeSchema = () => z.object({ createdAt: z.coerce.date().optional(), claims: z.lazy(() => ClaimUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.ClaimUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), payments: z.lazy(() => PaymentUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.PaymentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), - commissionBatches: z.lazy(() => CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() + commissionBatches: z.lazy(() => CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() }).strict(); exports.NpiProviderUncheckedCreateWithoutAppointmentProceduresInputObjectSchema = makeSchema(); exports.NpiProviderUncheckedCreateWithoutAppointmentProceduresInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutAppointmentProceduresInput.schema.ts b/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutAppointmentProceduresInput.schema.ts index 118e11f3..c5ebd378 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutAppointmentProceduresInput.schema.ts +++ b/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutAppointmentProceduresInput.schema.ts @@ -2,7 +2,8 @@ import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { ClaimUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as ClaimUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './ClaimUncheckedCreateNestedManyWithoutNpiProviderInput.schema'; import { PaymentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as PaymentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './PaymentUncheckedCreateNestedManyWithoutNpiProviderInput.schema'; -import { CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput.schema' +import { CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput.schema'; +import { AppointmentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as AppointmentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput.schema' const makeSchema = () => z.object({ id: z.number().int().optional(), @@ -13,7 +14,8 @@ const makeSchema = () => z.object({ createdAt: z.coerce.date().optional(), claims: z.lazy(() => ClaimUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), payments: z.lazy(() => PaymentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), - commissionBatches: z.lazy(() => CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() + commissionBatches: z.lazy(() => CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() }).strict(); export const NpiProviderUncheckedCreateWithoutAppointmentProceduresInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const NpiProviderUncheckedCreateWithoutAppointmentProceduresInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutAppointmentsInput.schema.js b/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutAppointmentsInput.schema.js new file mode 100644 index 00000000..b3bed95c --- /dev/null +++ b/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutAppointmentsInput.schema.js @@ -0,0 +1,55 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.NpiProviderUncheckedCreateWithoutAppointmentsInputObjectZodSchema = exports.NpiProviderUncheckedCreateWithoutAppointmentsInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const ClaimUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./ClaimUncheckedCreateNestedManyWithoutNpiProviderInput.schema"); +const PaymentUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./PaymentUncheckedCreateNestedManyWithoutNpiProviderInput.schema"); +const CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput.schema"); +const AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput.schema"); +const makeSchema = () => z.object({ + id: z.number().int().optional(), + userId: z.number().int(), + npiNumber: z.string(), + providerName: z.string(), + sortOrder: z.number().int().optional(), + createdAt: z.coerce.date().optional(), + claims: z.lazy(() => ClaimUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.ClaimUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + payments: z.lazy(() => PaymentUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.PaymentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + commissionBatches: z.lazy(() => CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() +}).strict(); +exports.NpiProviderUncheckedCreateWithoutAppointmentsInputObjectSchema = makeSchema(); +exports.NpiProviderUncheckedCreateWithoutAppointmentsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutAppointmentsInput.schema.ts b/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutAppointmentsInput.schema.ts new file mode 100644 index 00000000..98563c34 --- /dev/null +++ b/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutAppointmentsInput.schema.ts @@ -0,0 +1,21 @@ +import * as z from 'zod'; +import type { Prisma } from '../../../generated/prisma'; +import { ClaimUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as ClaimUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './ClaimUncheckedCreateNestedManyWithoutNpiProviderInput.schema'; +import { PaymentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as PaymentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './PaymentUncheckedCreateNestedManyWithoutNpiProviderInput.schema'; +import { CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput.schema'; +import { AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput.schema' + +const makeSchema = () => z.object({ + id: z.number().int().optional(), + userId: z.number().int(), + npiNumber: z.string(), + providerName: z.string(), + sortOrder: z.number().int().optional(), + createdAt: z.coerce.date().optional(), + claims: z.lazy(() => ClaimUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + payments: z.lazy(() => PaymentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + commissionBatches: z.lazy(() => CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() +}).strict(); +export const NpiProviderUncheckedCreateWithoutAppointmentsInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; +export const NpiProviderUncheckedCreateWithoutAppointmentsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutClaimsInput.schema.js b/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutClaimsInput.schema.js index bf4f789a..ac89f8f8 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutClaimsInput.schema.js +++ b/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutClaimsInput.schema.js @@ -38,6 +38,7 @@ const z = __importStar(require("zod")); const PaymentUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./PaymentUncheckedCreateNestedManyWithoutNpiProviderInput.schema"); const CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput.schema"); const AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput.schema"); +const AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput.schema"); const makeSchema = () => z.object({ id: z.number().int().optional(), userId: z.number().int(), @@ -47,7 +48,8 @@ const makeSchema = () => z.object({ createdAt: z.coerce.date().optional(), payments: z.lazy(() => PaymentUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.PaymentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() }).strict(); exports.NpiProviderUncheckedCreateWithoutClaimsInputObjectSchema = makeSchema(); exports.NpiProviderUncheckedCreateWithoutClaimsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutClaimsInput.schema.ts b/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutClaimsInput.schema.ts index 074a5634..16abce01 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutClaimsInput.schema.ts +++ b/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutClaimsInput.schema.ts @@ -2,7 +2,8 @@ import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { PaymentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as PaymentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './PaymentUncheckedCreateNestedManyWithoutNpiProviderInput.schema'; import { CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput.schema'; -import { AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput.schema' +import { AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput.schema'; +import { AppointmentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as AppointmentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput.schema' const makeSchema = () => z.object({ id: z.number().int().optional(), @@ -13,7 +14,8 @@ const makeSchema = () => z.object({ createdAt: z.coerce.date().optional(), payments: z.lazy(() => PaymentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() }).strict(); export const NpiProviderUncheckedCreateWithoutClaimsInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const NpiProviderUncheckedCreateWithoutClaimsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutCommissionBatchesInput.schema.js b/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutCommissionBatchesInput.schema.js index 6642332e..119a1811 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutCommissionBatchesInput.schema.js +++ b/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutCommissionBatchesInput.schema.js @@ -38,6 +38,7 @@ const z = __importStar(require("zod")); const ClaimUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./ClaimUncheckedCreateNestedManyWithoutNpiProviderInput.schema"); const PaymentUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./PaymentUncheckedCreateNestedManyWithoutNpiProviderInput.schema"); const AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput.schema"); +const AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput.schema"); const makeSchema = () => z.object({ id: z.number().int().optional(), userId: z.number().int(), @@ -47,7 +48,8 @@ const makeSchema = () => z.object({ createdAt: z.coerce.date().optional(), claims: z.lazy(() => ClaimUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.ClaimUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), payments: z.lazy(() => PaymentUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.PaymentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() }).strict(); exports.NpiProviderUncheckedCreateWithoutCommissionBatchesInputObjectSchema = makeSchema(); exports.NpiProviderUncheckedCreateWithoutCommissionBatchesInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutCommissionBatchesInput.schema.ts b/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutCommissionBatchesInput.schema.ts index 7757bd13..870f7ff7 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutCommissionBatchesInput.schema.ts +++ b/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutCommissionBatchesInput.schema.ts @@ -2,7 +2,8 @@ import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { ClaimUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as ClaimUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './ClaimUncheckedCreateNestedManyWithoutNpiProviderInput.schema'; import { PaymentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as PaymentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './PaymentUncheckedCreateNestedManyWithoutNpiProviderInput.schema'; -import { AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput.schema' +import { AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput.schema'; +import { AppointmentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as AppointmentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput.schema' const makeSchema = () => z.object({ id: z.number().int().optional(), @@ -13,7 +14,8 @@ const makeSchema = () => z.object({ createdAt: z.coerce.date().optional(), claims: z.lazy(() => ClaimUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), payments: z.lazy(() => PaymentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() }).strict(); export const NpiProviderUncheckedCreateWithoutCommissionBatchesInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const NpiProviderUncheckedCreateWithoutCommissionBatchesInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutPaymentsInput.schema.js b/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutPaymentsInput.schema.js index 0105f867..2d980e26 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutPaymentsInput.schema.js +++ b/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutPaymentsInput.schema.js @@ -38,6 +38,7 @@ const z = __importStar(require("zod")); const ClaimUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./ClaimUncheckedCreateNestedManyWithoutNpiProviderInput.schema"); const CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput.schema"); const AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput.schema"); +const AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput.schema"); const makeSchema = () => z.object({ id: z.number().int().optional(), userId: z.number().int(), @@ -47,7 +48,8 @@ const makeSchema = () => z.object({ createdAt: z.coerce.date().optional(), claims: z.lazy(() => ClaimUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.ClaimUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() }).strict(); exports.NpiProviderUncheckedCreateWithoutPaymentsInputObjectSchema = makeSchema(); exports.NpiProviderUncheckedCreateWithoutPaymentsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutPaymentsInput.schema.ts b/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutPaymentsInput.schema.ts index d331d7fa..9cc89322 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutPaymentsInput.schema.ts +++ b/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutPaymentsInput.schema.ts @@ -2,7 +2,8 @@ import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { ClaimUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as ClaimUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './ClaimUncheckedCreateNestedManyWithoutNpiProviderInput.schema'; import { CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput.schema'; -import { AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput.schema' +import { AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput.schema'; +import { AppointmentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as AppointmentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput.schema' const makeSchema = () => z.object({ id: z.number().int().optional(), @@ -13,7 +14,8 @@ const makeSchema = () => z.object({ createdAt: z.coerce.date().optional(), claims: z.lazy(() => ClaimUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() }).strict(); export const NpiProviderUncheckedCreateWithoutPaymentsInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const NpiProviderUncheckedCreateWithoutPaymentsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutUserInput.schema.js b/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutUserInput.schema.js index 2766c8ac..94050be8 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutUserInput.schema.js +++ b/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutUserInput.schema.js @@ -39,6 +39,7 @@ const ClaimUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1 = require(" const PaymentUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./PaymentUncheckedCreateNestedManyWithoutNpiProviderInput.schema"); const CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput.schema"); const AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput.schema"); +const AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput.schema"); const makeSchema = () => z.object({ id: z.number().int().optional(), npiNumber: z.string(), @@ -48,7 +49,8 @@ const makeSchema = () => z.object({ claims: z.lazy(() => ClaimUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.ClaimUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), payments: z.lazy(() => PaymentUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.PaymentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() }).strict(); exports.NpiProviderUncheckedCreateWithoutUserInputObjectSchema = makeSchema(); exports.NpiProviderUncheckedCreateWithoutUserInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutUserInput.schema.ts b/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutUserInput.schema.ts index 5c447e6d..6fef6d1c 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutUserInput.schema.ts +++ b/packages/db/shared/schemas/objects/NpiProviderUncheckedCreateWithoutUserInput.schema.ts @@ -3,7 +3,8 @@ import type { Prisma } from '../../../generated/prisma'; import { ClaimUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as ClaimUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './ClaimUncheckedCreateNestedManyWithoutNpiProviderInput.schema'; import { PaymentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as PaymentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './PaymentUncheckedCreateNestedManyWithoutNpiProviderInput.schema'; import { CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput.schema'; -import { AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput.schema' +import { AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput.schema'; +import { AppointmentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema as AppointmentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema } from './AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput.schema' const makeSchema = () => z.object({ id: z.number().int().optional(), @@ -14,7 +15,8 @@ const makeSchema = () => z.object({ claims: z.lazy(() => ClaimUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), payments: z.lazy(() => PaymentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional() }).strict(); export const NpiProviderUncheckedCreateWithoutUserInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const NpiProviderUncheckedCreateWithoutUserInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateInput.schema.js b/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateInput.schema.js index f42c8e88..7753e4c5 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateInput.schema.js +++ b/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateInput.schema.js @@ -42,6 +42,7 @@ const ClaimUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1 = require(" const PaymentUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./PaymentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema"); const CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput.schema"); const AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput.schema"); +const AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema"); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -52,7 +53,8 @@ const makeSchema = () => z.object({ claims: z.lazy(() => ClaimUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.ClaimUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), payments: z.lazy(() => PaymentUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.PaymentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() }).strict(); exports.NpiProviderUncheckedUpdateInputObjectSchema = makeSchema(); exports.NpiProviderUncheckedUpdateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateInput.schema.ts b/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateInput.schema.ts index 72eed36d..eabc14d2 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateInput.schema.ts +++ b/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateInput.schema.ts @@ -6,7 +6,8 @@ import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOp import { ClaimUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as ClaimUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './ClaimUncheckedUpdateManyWithoutNpiProviderNestedInput.schema'; import { PaymentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as PaymentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './PaymentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema'; import { CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput.schema'; -import { AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput.schema' +import { AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput.schema'; +import { AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema' const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -18,7 +19,8 @@ const makeSchema = () => z.object({ claims: z.lazy(() => ClaimUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), payments: z.lazy(() => PaymentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() }).strict(); export const NpiProviderUncheckedUpdateInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const NpiProviderUncheckedUpdateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutAppointmentProceduresInput.schema.js b/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutAppointmentProceduresInput.schema.js index 63d0d3da..855a7357 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutAppointmentProceduresInput.schema.js +++ b/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutAppointmentProceduresInput.schema.js @@ -41,6 +41,7 @@ const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpda const ClaimUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./ClaimUncheckedUpdateManyWithoutNpiProviderNestedInput.schema"); const PaymentUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./PaymentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema"); const CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput.schema"); +const AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema"); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -50,7 +51,8 @@ const makeSchema = () => z.object({ createdAt: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), claims: z.lazy(() => ClaimUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.ClaimUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), payments: z.lazy(() => PaymentUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.PaymentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), - commissionBatches: z.lazy(() => CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() + commissionBatches: z.lazy(() => CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() }).strict(); exports.NpiProviderUncheckedUpdateWithoutAppointmentProceduresInputObjectSchema = makeSchema(); exports.NpiProviderUncheckedUpdateWithoutAppointmentProceduresInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutAppointmentProceduresInput.schema.ts b/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutAppointmentProceduresInput.schema.ts index 488cd8be..e31c806e 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutAppointmentProceduresInput.schema.ts +++ b/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutAppointmentProceduresInput.schema.ts @@ -5,7 +5,8 @@ import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperat import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; import { ClaimUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as ClaimUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './ClaimUncheckedUpdateManyWithoutNpiProviderNestedInput.schema'; import { PaymentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as PaymentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './PaymentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema'; -import { CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput.schema' +import { CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput.schema'; +import { AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema' const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -16,7 +17,8 @@ const makeSchema = () => z.object({ createdAt: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), claims: z.lazy(() => ClaimUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), payments: z.lazy(() => PaymentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), - commissionBatches: z.lazy(() => CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() + commissionBatches: z.lazy(() => CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() }).strict(); export const NpiProviderUncheckedUpdateWithoutAppointmentProceduresInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const NpiProviderUncheckedUpdateWithoutAppointmentProceduresInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutAppointmentsInput.schema.js b/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutAppointmentsInput.schema.js new file mode 100644 index 00000000..426728e0 --- /dev/null +++ b/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutAppointmentsInput.schema.js @@ -0,0 +1,58 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.NpiProviderUncheckedUpdateWithoutAppointmentsInputObjectZodSchema = exports.NpiProviderUncheckedUpdateWithoutAppointmentsInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); +const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); +const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); +const ClaimUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./ClaimUncheckedUpdateManyWithoutNpiProviderNestedInput.schema"); +const PaymentUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./PaymentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema"); +const CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput.schema"); +const AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput.schema"); +const makeSchema = () => z.object({ + id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + npiNumber: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), + providerName: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), + sortOrder: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + createdAt: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), + claims: z.lazy(() => ClaimUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.ClaimUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + payments: z.lazy(() => PaymentUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.PaymentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + commissionBatches: z.lazy(() => CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() +}).strict(); +exports.NpiProviderUncheckedUpdateWithoutAppointmentsInputObjectSchema = makeSchema(); +exports.NpiProviderUncheckedUpdateWithoutAppointmentsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutAppointmentsInput.schema.ts b/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutAppointmentsInput.schema.ts new file mode 100644 index 00000000..e6a59267 --- /dev/null +++ b/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutAppointmentsInput.schema.ts @@ -0,0 +1,24 @@ +import * as z from 'zod'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { ClaimUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as ClaimUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './ClaimUncheckedUpdateManyWithoutNpiProviderNestedInput.schema'; +import { PaymentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as PaymentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './PaymentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema'; +import { CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput.schema'; +import { AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput.schema' + +const makeSchema = () => z.object({ + id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), + userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), + npiNumber: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), + providerName: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), + sortOrder: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), + createdAt: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), + claims: z.lazy(() => ClaimUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + payments: z.lazy(() => PaymentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + commissionBatches: z.lazy(() => CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() +}).strict(); +export const NpiProviderUncheckedUpdateWithoutAppointmentsInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; +export const NpiProviderUncheckedUpdateWithoutAppointmentsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutClaimsInput.schema.js b/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutClaimsInput.schema.js index 2198024c..8bcbd34f 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutClaimsInput.schema.js +++ b/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutClaimsInput.schema.js @@ -41,6 +41,7 @@ const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpda const PaymentUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./PaymentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema"); const CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput.schema"); const AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput.schema"); +const AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema"); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -50,7 +51,8 @@ const makeSchema = () => z.object({ createdAt: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), payments: z.lazy(() => PaymentUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.PaymentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() }).strict(); exports.NpiProviderUncheckedUpdateWithoutClaimsInputObjectSchema = makeSchema(); exports.NpiProviderUncheckedUpdateWithoutClaimsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutClaimsInput.schema.ts b/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutClaimsInput.schema.ts index 9ccfde2e..eb6c4b71 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutClaimsInput.schema.ts +++ b/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutClaimsInput.schema.ts @@ -5,7 +5,8 @@ import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperat import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; import { PaymentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as PaymentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './PaymentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema'; import { CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput.schema'; -import { AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput.schema' +import { AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput.schema'; +import { AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema' const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -16,7 +17,8 @@ const makeSchema = () => z.object({ createdAt: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), payments: z.lazy(() => PaymentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() }).strict(); export const NpiProviderUncheckedUpdateWithoutClaimsInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const NpiProviderUncheckedUpdateWithoutClaimsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutCommissionBatchesInput.schema.js b/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutCommissionBatchesInput.schema.js index ce22f14a..f5a27798 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutCommissionBatchesInput.schema.js +++ b/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutCommissionBatchesInput.schema.js @@ -41,6 +41,7 @@ const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpda const ClaimUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./ClaimUncheckedUpdateManyWithoutNpiProviderNestedInput.schema"); const PaymentUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./PaymentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema"); const AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput.schema"); +const AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema"); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -50,7 +51,8 @@ const makeSchema = () => z.object({ createdAt: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), claims: z.lazy(() => ClaimUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.ClaimUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), payments: z.lazy(() => PaymentUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.PaymentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() }).strict(); exports.NpiProviderUncheckedUpdateWithoutCommissionBatchesInputObjectSchema = makeSchema(); exports.NpiProviderUncheckedUpdateWithoutCommissionBatchesInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutCommissionBatchesInput.schema.ts b/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutCommissionBatchesInput.schema.ts index 14191695..60d6b4e4 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutCommissionBatchesInput.schema.ts +++ b/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutCommissionBatchesInput.schema.ts @@ -5,7 +5,8 @@ import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperat import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; import { ClaimUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as ClaimUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './ClaimUncheckedUpdateManyWithoutNpiProviderNestedInput.schema'; import { PaymentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as PaymentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './PaymentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema'; -import { AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput.schema' +import { AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput.schema'; +import { AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema' const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -16,7 +17,8 @@ const makeSchema = () => z.object({ createdAt: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), claims: z.lazy(() => ClaimUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), payments: z.lazy(() => PaymentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() }).strict(); export const NpiProviderUncheckedUpdateWithoutCommissionBatchesInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const NpiProviderUncheckedUpdateWithoutCommissionBatchesInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutPaymentsInput.schema.js b/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutPaymentsInput.schema.js index 1653b987..181f0eea 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutPaymentsInput.schema.js +++ b/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutPaymentsInput.schema.js @@ -41,6 +41,7 @@ const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpda const ClaimUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./ClaimUncheckedUpdateManyWithoutNpiProviderNestedInput.schema"); const CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput.schema"); const AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput.schema"); +const AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema"); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -50,7 +51,8 @@ const makeSchema = () => z.object({ createdAt: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), claims: z.lazy(() => ClaimUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.ClaimUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() }).strict(); exports.NpiProviderUncheckedUpdateWithoutPaymentsInputObjectSchema = makeSchema(); exports.NpiProviderUncheckedUpdateWithoutPaymentsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutPaymentsInput.schema.ts b/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutPaymentsInput.schema.ts index 63545484..d41d9286 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutPaymentsInput.schema.ts +++ b/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutPaymentsInput.schema.ts @@ -5,7 +5,8 @@ import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperat import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; import { ClaimUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as ClaimUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './ClaimUncheckedUpdateManyWithoutNpiProviderNestedInput.schema'; import { CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput.schema'; -import { AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput.schema' +import { AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput.schema'; +import { AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema' const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -16,7 +17,8 @@ const makeSchema = () => z.object({ createdAt: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), claims: z.lazy(() => ClaimUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() }).strict(); export const NpiProviderUncheckedUpdateWithoutPaymentsInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const NpiProviderUncheckedUpdateWithoutPaymentsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutUserInput.schema.js b/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutUserInput.schema.js index 8570c904..942bef20 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutUserInput.schema.js +++ b/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutUserInput.schema.js @@ -42,6 +42,7 @@ const ClaimUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1 = require(" const PaymentUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./PaymentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema"); const CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput.schema"); const AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput.schema"); +const AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema"); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), npiNumber: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -51,7 +52,8 @@ const makeSchema = () => z.object({ claims: z.lazy(() => ClaimUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.ClaimUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), payments: z.lazy(() => PaymentUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.PaymentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput_schema_1.AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() }).strict(); exports.NpiProviderUncheckedUpdateWithoutUserInputObjectSchema = makeSchema(); exports.NpiProviderUncheckedUpdateWithoutUserInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutUserInput.schema.ts b/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutUserInput.schema.ts index cd78a5b9..56db12b3 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutUserInput.schema.ts +++ b/packages/db/shared/schemas/objects/NpiProviderUncheckedUpdateWithoutUserInput.schema.ts @@ -6,7 +6,8 @@ import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOp import { ClaimUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as ClaimUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './ClaimUncheckedUpdateManyWithoutNpiProviderNestedInput.schema'; import { PaymentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as PaymentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './PaymentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema'; import { CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput.schema'; -import { AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput.schema' +import { AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInput.schema'; +import { AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema as AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema' const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -17,7 +18,8 @@ const makeSchema = () => z.object({ claims: z.lazy(() => ClaimUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), payments: z.lazy(() => PaymentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() }).strict(); export const NpiProviderUncheckedUpdateWithoutUserInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const NpiProviderUncheckedUpdateWithoutUserInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUpdateInput.schema.js b/packages/db/shared/schemas/objects/NpiProviderUpdateInput.schema.js index 0dd88b6f..c92ac9ec 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUpdateInput.schema.js +++ b/packages/db/shared/schemas/objects/NpiProviderUpdateInput.schema.js @@ -43,6 +43,7 @@ const ClaimUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./ClaimUp const PaymentUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./PaymentUpdateManyWithoutNpiProviderNestedInput.schema"); const CommissionBatchUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./CommissionBatchUpdateManyWithoutNpiProviderNestedInput.schema"); const AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput.schema"); +const AppointmentUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./AppointmentUpdateManyWithoutNpiProviderNestedInput.schema"); const makeSchema = () => z.object({ npiNumber: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), providerName: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -52,7 +53,8 @@ const makeSchema = () => z.object({ claims: z.lazy(() => ClaimUpdateManyWithoutNpiProviderNestedInput_schema_1.ClaimUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), payments: z.lazy(() => PaymentUpdateManyWithoutNpiProviderNestedInput_schema_1.PaymentUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchUpdateManyWithoutNpiProviderNestedInput_schema_1.CommissionBatchUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput_schema_1.AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput_schema_1.AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUpdateManyWithoutNpiProviderNestedInput_schema_1.AppointmentUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() }).strict(); exports.NpiProviderUpdateInputObjectSchema = makeSchema(); exports.NpiProviderUpdateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUpdateInput.schema.ts b/packages/db/shared/schemas/objects/NpiProviderUpdateInput.schema.ts index c5a990fa..55680f77 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUpdateInput.schema.ts +++ b/packages/db/shared/schemas/objects/NpiProviderUpdateInput.schema.ts @@ -7,7 +7,8 @@ import { UserUpdateOneRequiredWithoutNpiProvidersNestedInputObjectSchema as User import { ClaimUpdateManyWithoutNpiProviderNestedInputObjectSchema as ClaimUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './ClaimUpdateManyWithoutNpiProviderNestedInput.schema'; import { PaymentUpdateManyWithoutNpiProviderNestedInputObjectSchema as PaymentUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './PaymentUpdateManyWithoutNpiProviderNestedInput.schema'; import { CommissionBatchUpdateManyWithoutNpiProviderNestedInputObjectSchema as CommissionBatchUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './CommissionBatchUpdateManyWithoutNpiProviderNestedInput.schema'; -import { AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema as AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput.schema' +import { AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema as AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput.schema'; +import { AppointmentUpdateManyWithoutNpiProviderNestedInputObjectSchema as AppointmentUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './AppointmentUpdateManyWithoutNpiProviderNestedInput.schema' const makeSchema = () => z.object({ npiNumber: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -18,7 +19,8 @@ const makeSchema = () => z.object({ claims: z.lazy(() => ClaimUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), payments: z.lazy(() => PaymentUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() }).strict(); export const NpiProviderUpdateInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const NpiProviderUpdateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUpdateOneWithoutAppointmentsNestedInput.schema.js b/packages/db/shared/schemas/objects/NpiProviderUpdateOneWithoutAppointmentsNestedInput.schema.js new file mode 100644 index 00000000..e73e5b96 --- /dev/null +++ b/packages/db/shared/schemas/objects/NpiProviderUpdateOneWithoutAppointmentsNestedInput.schema.js @@ -0,0 +1,57 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.NpiProviderUpdateOneWithoutAppointmentsNestedInputObjectZodSchema = exports.NpiProviderUpdateOneWithoutAppointmentsNestedInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const NpiProviderCreateWithoutAppointmentsInput_schema_1 = require("./NpiProviderCreateWithoutAppointmentsInput.schema"); +const NpiProviderUncheckedCreateWithoutAppointmentsInput_schema_1 = require("./NpiProviderUncheckedCreateWithoutAppointmentsInput.schema"); +const NpiProviderCreateOrConnectWithoutAppointmentsInput_schema_1 = require("./NpiProviderCreateOrConnectWithoutAppointmentsInput.schema"); +const NpiProviderUpsertWithoutAppointmentsInput_schema_1 = require("./NpiProviderUpsertWithoutAppointmentsInput.schema"); +const NpiProviderWhereInput_schema_1 = require("./NpiProviderWhereInput.schema"); +const NpiProviderWhereUniqueInput_schema_1 = require("./NpiProviderWhereUniqueInput.schema"); +const NpiProviderUpdateToOneWithWhereWithoutAppointmentsInput_schema_1 = require("./NpiProviderUpdateToOneWithWhereWithoutAppointmentsInput.schema"); +const NpiProviderUpdateWithoutAppointmentsInput_schema_1 = require("./NpiProviderUpdateWithoutAppointmentsInput.schema"); +const NpiProviderUncheckedUpdateWithoutAppointmentsInput_schema_1 = require("./NpiProviderUncheckedUpdateWithoutAppointmentsInput.schema"); +const makeSchema = () => z.object({ + create: z.union([z.lazy(() => NpiProviderCreateWithoutAppointmentsInput_schema_1.NpiProviderCreateWithoutAppointmentsInputObjectSchema), z.lazy(() => NpiProviderUncheckedCreateWithoutAppointmentsInput_schema_1.NpiProviderUncheckedCreateWithoutAppointmentsInputObjectSchema)]).optional(), + connectOrCreate: z.lazy(() => NpiProviderCreateOrConnectWithoutAppointmentsInput_schema_1.NpiProviderCreateOrConnectWithoutAppointmentsInputObjectSchema).optional(), + upsert: z.lazy(() => NpiProviderUpsertWithoutAppointmentsInput_schema_1.NpiProviderUpsertWithoutAppointmentsInputObjectSchema).optional(), + disconnect: z.union([z.boolean(), z.lazy(() => NpiProviderWhereInput_schema_1.NpiProviderWhereInputObjectSchema)]).optional(), + delete: z.union([z.boolean(), z.lazy(() => NpiProviderWhereInput_schema_1.NpiProviderWhereInputObjectSchema)]).optional(), + connect: z.lazy(() => NpiProviderWhereUniqueInput_schema_1.NpiProviderWhereUniqueInputObjectSchema).optional(), + update: z.union([z.lazy(() => NpiProviderUpdateToOneWithWhereWithoutAppointmentsInput_schema_1.NpiProviderUpdateToOneWithWhereWithoutAppointmentsInputObjectSchema), z.lazy(() => NpiProviderUpdateWithoutAppointmentsInput_schema_1.NpiProviderUpdateWithoutAppointmentsInputObjectSchema), z.lazy(() => NpiProviderUncheckedUpdateWithoutAppointmentsInput_schema_1.NpiProviderUncheckedUpdateWithoutAppointmentsInputObjectSchema)]).optional() +}).strict(); +exports.NpiProviderUpdateOneWithoutAppointmentsNestedInputObjectSchema = makeSchema(); +exports.NpiProviderUpdateOneWithoutAppointmentsNestedInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUpdateOneWithoutAppointmentsNestedInput.schema.ts b/packages/db/shared/schemas/objects/NpiProviderUpdateOneWithoutAppointmentsNestedInput.schema.ts new file mode 100644 index 00000000..2cb4bd83 --- /dev/null +++ b/packages/db/shared/schemas/objects/NpiProviderUpdateOneWithoutAppointmentsNestedInput.schema.ts @@ -0,0 +1,23 @@ +import * as z from 'zod'; +import type { Prisma } from '../../../generated/prisma'; +import { NpiProviderCreateWithoutAppointmentsInputObjectSchema as NpiProviderCreateWithoutAppointmentsInputObjectSchema } from './NpiProviderCreateWithoutAppointmentsInput.schema'; +import { NpiProviderUncheckedCreateWithoutAppointmentsInputObjectSchema as NpiProviderUncheckedCreateWithoutAppointmentsInputObjectSchema } from './NpiProviderUncheckedCreateWithoutAppointmentsInput.schema'; +import { NpiProviderCreateOrConnectWithoutAppointmentsInputObjectSchema as NpiProviderCreateOrConnectWithoutAppointmentsInputObjectSchema } from './NpiProviderCreateOrConnectWithoutAppointmentsInput.schema'; +import { NpiProviderUpsertWithoutAppointmentsInputObjectSchema as NpiProviderUpsertWithoutAppointmentsInputObjectSchema } from './NpiProviderUpsertWithoutAppointmentsInput.schema'; +import { NpiProviderWhereInputObjectSchema as NpiProviderWhereInputObjectSchema } from './NpiProviderWhereInput.schema'; +import { NpiProviderWhereUniqueInputObjectSchema as NpiProviderWhereUniqueInputObjectSchema } from './NpiProviderWhereUniqueInput.schema'; +import { NpiProviderUpdateToOneWithWhereWithoutAppointmentsInputObjectSchema as NpiProviderUpdateToOneWithWhereWithoutAppointmentsInputObjectSchema } from './NpiProviderUpdateToOneWithWhereWithoutAppointmentsInput.schema'; +import { NpiProviderUpdateWithoutAppointmentsInputObjectSchema as NpiProviderUpdateWithoutAppointmentsInputObjectSchema } from './NpiProviderUpdateWithoutAppointmentsInput.schema'; +import { NpiProviderUncheckedUpdateWithoutAppointmentsInputObjectSchema as NpiProviderUncheckedUpdateWithoutAppointmentsInputObjectSchema } from './NpiProviderUncheckedUpdateWithoutAppointmentsInput.schema' + +const makeSchema = () => z.object({ + create: z.union([z.lazy(() => NpiProviderCreateWithoutAppointmentsInputObjectSchema), z.lazy(() => NpiProviderUncheckedCreateWithoutAppointmentsInputObjectSchema)]).optional(), + connectOrCreate: z.lazy(() => NpiProviderCreateOrConnectWithoutAppointmentsInputObjectSchema).optional(), + upsert: z.lazy(() => NpiProviderUpsertWithoutAppointmentsInputObjectSchema).optional(), + disconnect: z.union([z.boolean(), z.lazy(() => NpiProviderWhereInputObjectSchema)]).optional(), + delete: z.union([z.boolean(), z.lazy(() => NpiProviderWhereInputObjectSchema)]).optional(), + connect: z.lazy(() => NpiProviderWhereUniqueInputObjectSchema).optional(), + update: z.union([z.lazy(() => NpiProviderUpdateToOneWithWhereWithoutAppointmentsInputObjectSchema), z.lazy(() => NpiProviderUpdateWithoutAppointmentsInputObjectSchema), z.lazy(() => NpiProviderUncheckedUpdateWithoutAppointmentsInputObjectSchema)]).optional() +}).strict(); +export const NpiProviderUpdateOneWithoutAppointmentsNestedInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; +export const NpiProviderUpdateOneWithoutAppointmentsNestedInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUpdateToOneWithWhereWithoutAppointmentsInput.schema.js b/packages/db/shared/schemas/objects/NpiProviderUpdateToOneWithWhereWithoutAppointmentsInput.schema.js new file mode 100644 index 00000000..fd5a5aa7 --- /dev/null +++ b/packages/db/shared/schemas/objects/NpiProviderUpdateToOneWithWhereWithoutAppointmentsInput.schema.js @@ -0,0 +1,46 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.NpiProviderUpdateToOneWithWhereWithoutAppointmentsInputObjectZodSchema = exports.NpiProviderUpdateToOneWithWhereWithoutAppointmentsInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const NpiProviderWhereInput_schema_1 = require("./NpiProviderWhereInput.schema"); +const NpiProviderUpdateWithoutAppointmentsInput_schema_1 = require("./NpiProviderUpdateWithoutAppointmentsInput.schema"); +const NpiProviderUncheckedUpdateWithoutAppointmentsInput_schema_1 = require("./NpiProviderUncheckedUpdateWithoutAppointmentsInput.schema"); +const makeSchema = () => z.object({ + where: z.lazy(() => NpiProviderWhereInput_schema_1.NpiProviderWhereInputObjectSchema).optional(), + data: z.union([z.lazy(() => NpiProviderUpdateWithoutAppointmentsInput_schema_1.NpiProviderUpdateWithoutAppointmentsInputObjectSchema), z.lazy(() => NpiProviderUncheckedUpdateWithoutAppointmentsInput_schema_1.NpiProviderUncheckedUpdateWithoutAppointmentsInputObjectSchema)]) +}).strict(); +exports.NpiProviderUpdateToOneWithWhereWithoutAppointmentsInputObjectSchema = makeSchema(); +exports.NpiProviderUpdateToOneWithWhereWithoutAppointmentsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUpdateToOneWithWhereWithoutAppointmentsInput.schema.ts b/packages/db/shared/schemas/objects/NpiProviderUpdateToOneWithWhereWithoutAppointmentsInput.schema.ts new file mode 100644 index 00000000..f293c5f2 --- /dev/null +++ b/packages/db/shared/schemas/objects/NpiProviderUpdateToOneWithWhereWithoutAppointmentsInput.schema.ts @@ -0,0 +1,12 @@ +import * as z from 'zod'; +import type { Prisma } from '../../../generated/prisma'; +import { NpiProviderWhereInputObjectSchema as NpiProviderWhereInputObjectSchema } from './NpiProviderWhereInput.schema'; +import { NpiProviderUpdateWithoutAppointmentsInputObjectSchema as NpiProviderUpdateWithoutAppointmentsInputObjectSchema } from './NpiProviderUpdateWithoutAppointmentsInput.schema'; +import { NpiProviderUncheckedUpdateWithoutAppointmentsInputObjectSchema as NpiProviderUncheckedUpdateWithoutAppointmentsInputObjectSchema } from './NpiProviderUncheckedUpdateWithoutAppointmentsInput.schema' + +const makeSchema = () => z.object({ + where: z.lazy(() => NpiProviderWhereInputObjectSchema).optional(), + data: z.union([z.lazy(() => NpiProviderUpdateWithoutAppointmentsInputObjectSchema), z.lazy(() => NpiProviderUncheckedUpdateWithoutAppointmentsInputObjectSchema)]) +}).strict(); +export const NpiProviderUpdateToOneWithWhereWithoutAppointmentsInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; +export const NpiProviderUpdateToOneWithWhereWithoutAppointmentsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutAppointmentProceduresInput.schema.js b/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutAppointmentProceduresInput.schema.js index c04a2c6c..ebc8822a 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutAppointmentProceduresInput.schema.js +++ b/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutAppointmentProceduresInput.schema.js @@ -42,6 +42,7 @@ const UserUpdateOneRequiredWithoutNpiProvidersNestedInput_schema_1 = require("./ const ClaimUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./ClaimUpdateManyWithoutNpiProviderNestedInput.schema"); const PaymentUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./PaymentUpdateManyWithoutNpiProviderNestedInput.schema"); const CommissionBatchUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./CommissionBatchUpdateManyWithoutNpiProviderNestedInput.schema"); +const AppointmentUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./AppointmentUpdateManyWithoutNpiProviderNestedInput.schema"); const makeSchema = () => z.object({ npiNumber: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), providerName: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -50,7 +51,8 @@ const makeSchema = () => z.object({ user: z.lazy(() => UserUpdateOneRequiredWithoutNpiProvidersNestedInput_schema_1.UserUpdateOneRequiredWithoutNpiProvidersNestedInputObjectSchema).optional(), claims: z.lazy(() => ClaimUpdateManyWithoutNpiProviderNestedInput_schema_1.ClaimUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), payments: z.lazy(() => PaymentUpdateManyWithoutNpiProviderNestedInput_schema_1.PaymentUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), - commissionBatches: z.lazy(() => CommissionBatchUpdateManyWithoutNpiProviderNestedInput_schema_1.CommissionBatchUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() + commissionBatches: z.lazy(() => CommissionBatchUpdateManyWithoutNpiProviderNestedInput_schema_1.CommissionBatchUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUpdateManyWithoutNpiProviderNestedInput_schema_1.AppointmentUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() }).strict(); exports.NpiProviderUpdateWithoutAppointmentProceduresInputObjectSchema = makeSchema(); exports.NpiProviderUpdateWithoutAppointmentProceduresInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutAppointmentProceduresInput.schema.ts b/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutAppointmentProceduresInput.schema.ts index 338e8f68..5ae1a035 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutAppointmentProceduresInput.schema.ts +++ b/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutAppointmentProceduresInput.schema.ts @@ -6,7 +6,8 @@ import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOp import { UserUpdateOneRequiredWithoutNpiProvidersNestedInputObjectSchema as UserUpdateOneRequiredWithoutNpiProvidersNestedInputObjectSchema } from './UserUpdateOneRequiredWithoutNpiProvidersNestedInput.schema'; import { ClaimUpdateManyWithoutNpiProviderNestedInputObjectSchema as ClaimUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './ClaimUpdateManyWithoutNpiProviderNestedInput.schema'; import { PaymentUpdateManyWithoutNpiProviderNestedInputObjectSchema as PaymentUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './PaymentUpdateManyWithoutNpiProviderNestedInput.schema'; -import { CommissionBatchUpdateManyWithoutNpiProviderNestedInputObjectSchema as CommissionBatchUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './CommissionBatchUpdateManyWithoutNpiProviderNestedInput.schema' +import { CommissionBatchUpdateManyWithoutNpiProviderNestedInputObjectSchema as CommissionBatchUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './CommissionBatchUpdateManyWithoutNpiProviderNestedInput.schema'; +import { AppointmentUpdateManyWithoutNpiProviderNestedInputObjectSchema as AppointmentUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './AppointmentUpdateManyWithoutNpiProviderNestedInput.schema' const makeSchema = () => z.object({ npiNumber: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -16,7 +17,8 @@ const makeSchema = () => z.object({ user: z.lazy(() => UserUpdateOneRequiredWithoutNpiProvidersNestedInputObjectSchema).optional(), claims: z.lazy(() => ClaimUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), payments: z.lazy(() => PaymentUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), - commissionBatches: z.lazy(() => CommissionBatchUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() + commissionBatches: z.lazy(() => CommissionBatchUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() }).strict(); export const NpiProviderUpdateWithoutAppointmentProceduresInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const NpiProviderUpdateWithoutAppointmentProceduresInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutAppointmentsInput.schema.js b/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutAppointmentsInput.schema.js new file mode 100644 index 00000000..73885524 --- /dev/null +++ b/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutAppointmentsInput.schema.js @@ -0,0 +1,58 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.NpiProviderUpdateWithoutAppointmentsInputObjectZodSchema = exports.NpiProviderUpdateWithoutAppointmentsInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); +const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); +const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); +const UserUpdateOneRequiredWithoutNpiProvidersNestedInput_schema_1 = require("./UserUpdateOneRequiredWithoutNpiProvidersNestedInput.schema"); +const ClaimUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./ClaimUpdateManyWithoutNpiProviderNestedInput.schema"); +const PaymentUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./PaymentUpdateManyWithoutNpiProviderNestedInput.schema"); +const CommissionBatchUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./CommissionBatchUpdateManyWithoutNpiProviderNestedInput.schema"); +const AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput.schema"); +const makeSchema = () => z.object({ + npiNumber: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), + providerName: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), + sortOrder: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + createdAt: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), + user: z.lazy(() => UserUpdateOneRequiredWithoutNpiProvidersNestedInput_schema_1.UserUpdateOneRequiredWithoutNpiProvidersNestedInputObjectSchema).optional(), + claims: z.lazy(() => ClaimUpdateManyWithoutNpiProviderNestedInput_schema_1.ClaimUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + payments: z.lazy(() => PaymentUpdateManyWithoutNpiProviderNestedInput_schema_1.PaymentUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + commissionBatches: z.lazy(() => CommissionBatchUpdateManyWithoutNpiProviderNestedInput_schema_1.CommissionBatchUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + appointmentProcedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput_schema_1.AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() +}).strict(); +exports.NpiProviderUpdateWithoutAppointmentsInputObjectSchema = makeSchema(); +exports.NpiProviderUpdateWithoutAppointmentsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutAppointmentsInput.schema.ts b/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutAppointmentsInput.schema.ts new file mode 100644 index 00000000..786968b6 --- /dev/null +++ b/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutAppointmentsInput.schema.ts @@ -0,0 +1,24 @@ +import * as z from 'zod'; +import type { Prisma } from '../../../generated/prisma'; +import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { UserUpdateOneRequiredWithoutNpiProvidersNestedInputObjectSchema as UserUpdateOneRequiredWithoutNpiProvidersNestedInputObjectSchema } from './UserUpdateOneRequiredWithoutNpiProvidersNestedInput.schema'; +import { ClaimUpdateManyWithoutNpiProviderNestedInputObjectSchema as ClaimUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './ClaimUpdateManyWithoutNpiProviderNestedInput.schema'; +import { PaymentUpdateManyWithoutNpiProviderNestedInputObjectSchema as PaymentUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './PaymentUpdateManyWithoutNpiProviderNestedInput.schema'; +import { CommissionBatchUpdateManyWithoutNpiProviderNestedInputObjectSchema as CommissionBatchUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './CommissionBatchUpdateManyWithoutNpiProviderNestedInput.schema'; +import { AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema as AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput.schema' + +const makeSchema = () => z.object({ + npiNumber: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), + providerName: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), + sortOrder: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), + createdAt: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), + user: z.lazy(() => UserUpdateOneRequiredWithoutNpiProvidersNestedInputObjectSchema).optional(), + claims: z.lazy(() => ClaimUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + payments: z.lazy(() => PaymentUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + commissionBatches: z.lazy(() => CommissionBatchUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + appointmentProcedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() +}).strict(); +export const NpiProviderUpdateWithoutAppointmentsInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; +export const NpiProviderUpdateWithoutAppointmentsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutClaimsInput.schema.js b/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutClaimsInput.schema.js index b58b484f..1db1916a 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutClaimsInput.schema.js +++ b/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutClaimsInput.schema.js @@ -42,6 +42,7 @@ const UserUpdateOneRequiredWithoutNpiProvidersNestedInput_schema_1 = require("./ const PaymentUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./PaymentUpdateManyWithoutNpiProviderNestedInput.schema"); const CommissionBatchUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./CommissionBatchUpdateManyWithoutNpiProviderNestedInput.schema"); const AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput.schema"); +const AppointmentUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./AppointmentUpdateManyWithoutNpiProviderNestedInput.schema"); const makeSchema = () => z.object({ npiNumber: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), providerName: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -50,7 +51,8 @@ const makeSchema = () => z.object({ user: z.lazy(() => UserUpdateOneRequiredWithoutNpiProvidersNestedInput_schema_1.UserUpdateOneRequiredWithoutNpiProvidersNestedInputObjectSchema).optional(), payments: z.lazy(() => PaymentUpdateManyWithoutNpiProviderNestedInput_schema_1.PaymentUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchUpdateManyWithoutNpiProviderNestedInput_schema_1.CommissionBatchUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput_schema_1.AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput_schema_1.AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUpdateManyWithoutNpiProviderNestedInput_schema_1.AppointmentUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() }).strict(); exports.NpiProviderUpdateWithoutClaimsInputObjectSchema = makeSchema(); exports.NpiProviderUpdateWithoutClaimsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutClaimsInput.schema.ts b/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutClaimsInput.schema.ts index 2c95ffdd..52f7c585 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutClaimsInput.schema.ts +++ b/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutClaimsInput.schema.ts @@ -6,7 +6,8 @@ import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOp import { UserUpdateOneRequiredWithoutNpiProvidersNestedInputObjectSchema as UserUpdateOneRequiredWithoutNpiProvidersNestedInputObjectSchema } from './UserUpdateOneRequiredWithoutNpiProvidersNestedInput.schema'; import { PaymentUpdateManyWithoutNpiProviderNestedInputObjectSchema as PaymentUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './PaymentUpdateManyWithoutNpiProviderNestedInput.schema'; import { CommissionBatchUpdateManyWithoutNpiProviderNestedInputObjectSchema as CommissionBatchUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './CommissionBatchUpdateManyWithoutNpiProviderNestedInput.schema'; -import { AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema as AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput.schema' +import { AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema as AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput.schema'; +import { AppointmentUpdateManyWithoutNpiProviderNestedInputObjectSchema as AppointmentUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './AppointmentUpdateManyWithoutNpiProviderNestedInput.schema' const makeSchema = () => z.object({ npiNumber: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -16,7 +17,8 @@ const makeSchema = () => z.object({ user: z.lazy(() => UserUpdateOneRequiredWithoutNpiProvidersNestedInputObjectSchema).optional(), payments: z.lazy(() => PaymentUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() }).strict(); export const NpiProviderUpdateWithoutClaimsInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const NpiProviderUpdateWithoutClaimsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutCommissionBatchesInput.schema.js b/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutCommissionBatchesInput.schema.js index 8a209dbb..5c40879e 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutCommissionBatchesInput.schema.js +++ b/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutCommissionBatchesInput.schema.js @@ -42,6 +42,7 @@ const UserUpdateOneRequiredWithoutNpiProvidersNestedInput_schema_1 = require("./ const ClaimUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./ClaimUpdateManyWithoutNpiProviderNestedInput.schema"); const PaymentUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./PaymentUpdateManyWithoutNpiProviderNestedInput.schema"); const AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput.schema"); +const AppointmentUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./AppointmentUpdateManyWithoutNpiProviderNestedInput.schema"); const makeSchema = () => z.object({ npiNumber: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), providerName: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -50,7 +51,8 @@ const makeSchema = () => z.object({ user: z.lazy(() => UserUpdateOneRequiredWithoutNpiProvidersNestedInput_schema_1.UserUpdateOneRequiredWithoutNpiProvidersNestedInputObjectSchema).optional(), claims: z.lazy(() => ClaimUpdateManyWithoutNpiProviderNestedInput_schema_1.ClaimUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), payments: z.lazy(() => PaymentUpdateManyWithoutNpiProviderNestedInput_schema_1.PaymentUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput_schema_1.AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput_schema_1.AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUpdateManyWithoutNpiProviderNestedInput_schema_1.AppointmentUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() }).strict(); exports.NpiProviderUpdateWithoutCommissionBatchesInputObjectSchema = makeSchema(); exports.NpiProviderUpdateWithoutCommissionBatchesInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutCommissionBatchesInput.schema.ts b/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutCommissionBatchesInput.schema.ts index 81909825..008f5fd0 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutCommissionBatchesInput.schema.ts +++ b/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutCommissionBatchesInput.schema.ts @@ -6,7 +6,8 @@ import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOp import { UserUpdateOneRequiredWithoutNpiProvidersNestedInputObjectSchema as UserUpdateOneRequiredWithoutNpiProvidersNestedInputObjectSchema } from './UserUpdateOneRequiredWithoutNpiProvidersNestedInput.schema'; import { ClaimUpdateManyWithoutNpiProviderNestedInputObjectSchema as ClaimUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './ClaimUpdateManyWithoutNpiProviderNestedInput.schema'; import { PaymentUpdateManyWithoutNpiProviderNestedInputObjectSchema as PaymentUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './PaymentUpdateManyWithoutNpiProviderNestedInput.schema'; -import { AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema as AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput.schema' +import { AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema as AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput.schema'; +import { AppointmentUpdateManyWithoutNpiProviderNestedInputObjectSchema as AppointmentUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './AppointmentUpdateManyWithoutNpiProviderNestedInput.schema' const makeSchema = () => z.object({ npiNumber: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -16,7 +17,8 @@ const makeSchema = () => z.object({ user: z.lazy(() => UserUpdateOneRequiredWithoutNpiProvidersNestedInputObjectSchema).optional(), claims: z.lazy(() => ClaimUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), payments: z.lazy(() => PaymentUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() }).strict(); export const NpiProviderUpdateWithoutCommissionBatchesInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const NpiProviderUpdateWithoutCommissionBatchesInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutPaymentsInput.schema.js b/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutPaymentsInput.schema.js index 9ecca3ee..1ccaf932 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutPaymentsInput.schema.js +++ b/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutPaymentsInput.schema.js @@ -42,6 +42,7 @@ const UserUpdateOneRequiredWithoutNpiProvidersNestedInput_schema_1 = require("./ const ClaimUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./ClaimUpdateManyWithoutNpiProviderNestedInput.schema"); const CommissionBatchUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./CommissionBatchUpdateManyWithoutNpiProviderNestedInput.schema"); const AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput.schema"); +const AppointmentUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./AppointmentUpdateManyWithoutNpiProviderNestedInput.schema"); const makeSchema = () => z.object({ npiNumber: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), providerName: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -50,7 +51,8 @@ const makeSchema = () => z.object({ user: z.lazy(() => UserUpdateOneRequiredWithoutNpiProvidersNestedInput_schema_1.UserUpdateOneRequiredWithoutNpiProvidersNestedInputObjectSchema).optional(), claims: z.lazy(() => ClaimUpdateManyWithoutNpiProviderNestedInput_schema_1.ClaimUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchUpdateManyWithoutNpiProviderNestedInput_schema_1.CommissionBatchUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput_schema_1.AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput_schema_1.AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUpdateManyWithoutNpiProviderNestedInput_schema_1.AppointmentUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() }).strict(); exports.NpiProviderUpdateWithoutPaymentsInputObjectSchema = makeSchema(); exports.NpiProviderUpdateWithoutPaymentsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutPaymentsInput.schema.ts b/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutPaymentsInput.schema.ts index d7720267..c872d5e3 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutPaymentsInput.schema.ts +++ b/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutPaymentsInput.schema.ts @@ -6,7 +6,8 @@ import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOp import { UserUpdateOneRequiredWithoutNpiProvidersNestedInputObjectSchema as UserUpdateOneRequiredWithoutNpiProvidersNestedInputObjectSchema } from './UserUpdateOneRequiredWithoutNpiProvidersNestedInput.schema'; import { ClaimUpdateManyWithoutNpiProviderNestedInputObjectSchema as ClaimUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './ClaimUpdateManyWithoutNpiProviderNestedInput.schema'; import { CommissionBatchUpdateManyWithoutNpiProviderNestedInputObjectSchema as CommissionBatchUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './CommissionBatchUpdateManyWithoutNpiProviderNestedInput.schema'; -import { AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema as AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput.schema' +import { AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema as AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput.schema'; +import { AppointmentUpdateManyWithoutNpiProviderNestedInputObjectSchema as AppointmentUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './AppointmentUpdateManyWithoutNpiProviderNestedInput.schema' const makeSchema = () => z.object({ npiNumber: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -16,7 +17,8 @@ const makeSchema = () => z.object({ user: z.lazy(() => UserUpdateOneRequiredWithoutNpiProvidersNestedInputObjectSchema).optional(), claims: z.lazy(() => ClaimUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() }).strict(); export const NpiProviderUpdateWithoutPaymentsInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const NpiProviderUpdateWithoutPaymentsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutUserInput.schema.js b/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutUserInput.schema.js index a45571ae..48aa7613 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutUserInput.schema.js +++ b/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutUserInput.schema.js @@ -42,6 +42,7 @@ const ClaimUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./ClaimUp const PaymentUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./PaymentUpdateManyWithoutNpiProviderNestedInput.schema"); const CommissionBatchUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./CommissionBatchUpdateManyWithoutNpiProviderNestedInput.schema"); const AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput.schema"); +const AppointmentUpdateManyWithoutNpiProviderNestedInput_schema_1 = require("./AppointmentUpdateManyWithoutNpiProviderNestedInput.schema"); const makeSchema = () => z.object({ npiNumber: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), providerName: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -50,7 +51,8 @@ const makeSchema = () => z.object({ claims: z.lazy(() => ClaimUpdateManyWithoutNpiProviderNestedInput_schema_1.ClaimUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), payments: z.lazy(() => PaymentUpdateManyWithoutNpiProviderNestedInput_schema_1.PaymentUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchUpdateManyWithoutNpiProviderNestedInput_schema_1.CommissionBatchUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput_schema_1.AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput_schema_1.AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUpdateManyWithoutNpiProviderNestedInput_schema_1.AppointmentUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() }).strict(); exports.NpiProviderUpdateWithoutUserInputObjectSchema = makeSchema(); exports.NpiProviderUpdateWithoutUserInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutUserInput.schema.ts b/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutUserInput.schema.ts index 54863fd1..e01a31ed 100644 --- a/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutUserInput.schema.ts +++ b/packages/db/shared/schemas/objects/NpiProviderUpdateWithoutUserInput.schema.ts @@ -6,7 +6,8 @@ import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOp import { ClaimUpdateManyWithoutNpiProviderNestedInputObjectSchema as ClaimUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './ClaimUpdateManyWithoutNpiProviderNestedInput.schema'; import { PaymentUpdateManyWithoutNpiProviderNestedInputObjectSchema as PaymentUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './PaymentUpdateManyWithoutNpiProviderNestedInput.schema'; import { CommissionBatchUpdateManyWithoutNpiProviderNestedInputObjectSchema as CommissionBatchUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './CommissionBatchUpdateManyWithoutNpiProviderNestedInput.schema'; -import { AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema as AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput.schema' +import { AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema as AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './AppointmentProcedureUpdateManyWithoutNpiProviderNestedInput.schema'; +import { AppointmentUpdateManyWithoutNpiProviderNestedInputObjectSchema as AppointmentUpdateManyWithoutNpiProviderNestedInputObjectSchema } from './AppointmentUpdateManyWithoutNpiProviderNestedInput.schema' const makeSchema = () => z.object({ npiNumber: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -16,7 +17,8 @@ const makeSchema = () => z.object({ claims: z.lazy(() => ClaimUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), payments: z.lazy(() => PaymentUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUpdateManyWithoutNpiProviderNestedInputObjectSchema).optional() }).strict(); export const NpiProviderUpdateWithoutUserInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const NpiProviderUpdateWithoutUserInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUpsertWithoutAppointmentsInput.schema.js b/packages/db/shared/schemas/objects/NpiProviderUpsertWithoutAppointmentsInput.schema.js new file mode 100644 index 00000000..9784caa1 --- /dev/null +++ b/packages/db/shared/schemas/objects/NpiProviderUpsertWithoutAppointmentsInput.schema.js @@ -0,0 +1,49 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.NpiProviderUpsertWithoutAppointmentsInputObjectZodSchema = exports.NpiProviderUpsertWithoutAppointmentsInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const NpiProviderUpdateWithoutAppointmentsInput_schema_1 = require("./NpiProviderUpdateWithoutAppointmentsInput.schema"); +const NpiProviderUncheckedUpdateWithoutAppointmentsInput_schema_1 = require("./NpiProviderUncheckedUpdateWithoutAppointmentsInput.schema"); +const NpiProviderCreateWithoutAppointmentsInput_schema_1 = require("./NpiProviderCreateWithoutAppointmentsInput.schema"); +const NpiProviderUncheckedCreateWithoutAppointmentsInput_schema_1 = require("./NpiProviderUncheckedCreateWithoutAppointmentsInput.schema"); +const NpiProviderWhereInput_schema_1 = require("./NpiProviderWhereInput.schema"); +const makeSchema = () => z.object({ + update: z.union([z.lazy(() => NpiProviderUpdateWithoutAppointmentsInput_schema_1.NpiProviderUpdateWithoutAppointmentsInputObjectSchema), z.lazy(() => NpiProviderUncheckedUpdateWithoutAppointmentsInput_schema_1.NpiProviderUncheckedUpdateWithoutAppointmentsInputObjectSchema)]), + create: z.union([z.lazy(() => NpiProviderCreateWithoutAppointmentsInput_schema_1.NpiProviderCreateWithoutAppointmentsInputObjectSchema), z.lazy(() => NpiProviderUncheckedCreateWithoutAppointmentsInput_schema_1.NpiProviderUncheckedCreateWithoutAppointmentsInputObjectSchema)]), + where: z.lazy(() => NpiProviderWhereInput_schema_1.NpiProviderWhereInputObjectSchema).optional() +}).strict(); +exports.NpiProviderUpsertWithoutAppointmentsInputObjectSchema = makeSchema(); +exports.NpiProviderUpsertWithoutAppointmentsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderUpsertWithoutAppointmentsInput.schema.ts b/packages/db/shared/schemas/objects/NpiProviderUpsertWithoutAppointmentsInput.schema.ts new file mode 100644 index 00000000..19a3ca87 --- /dev/null +++ b/packages/db/shared/schemas/objects/NpiProviderUpsertWithoutAppointmentsInput.schema.ts @@ -0,0 +1,15 @@ +import * as z from 'zod'; +import type { Prisma } from '../../../generated/prisma'; +import { NpiProviderUpdateWithoutAppointmentsInputObjectSchema as NpiProviderUpdateWithoutAppointmentsInputObjectSchema } from './NpiProviderUpdateWithoutAppointmentsInput.schema'; +import { NpiProviderUncheckedUpdateWithoutAppointmentsInputObjectSchema as NpiProviderUncheckedUpdateWithoutAppointmentsInputObjectSchema } from './NpiProviderUncheckedUpdateWithoutAppointmentsInput.schema'; +import { NpiProviderCreateWithoutAppointmentsInputObjectSchema as NpiProviderCreateWithoutAppointmentsInputObjectSchema } from './NpiProviderCreateWithoutAppointmentsInput.schema'; +import { NpiProviderUncheckedCreateWithoutAppointmentsInputObjectSchema as NpiProviderUncheckedCreateWithoutAppointmentsInputObjectSchema } from './NpiProviderUncheckedCreateWithoutAppointmentsInput.schema'; +import { NpiProviderWhereInputObjectSchema as NpiProviderWhereInputObjectSchema } from './NpiProviderWhereInput.schema' + +const makeSchema = () => z.object({ + update: z.union([z.lazy(() => NpiProviderUpdateWithoutAppointmentsInputObjectSchema), z.lazy(() => NpiProviderUncheckedUpdateWithoutAppointmentsInputObjectSchema)]), + create: z.union([z.lazy(() => NpiProviderCreateWithoutAppointmentsInputObjectSchema), z.lazy(() => NpiProviderUncheckedCreateWithoutAppointmentsInputObjectSchema)]), + where: z.lazy(() => NpiProviderWhereInputObjectSchema).optional() +}).strict(); +export const NpiProviderUpsertWithoutAppointmentsInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; +export const NpiProviderUpsertWithoutAppointmentsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/NpiProviderWhereInput.schema.js b/packages/db/shared/schemas/objects/NpiProviderWhereInput.schema.js index 2936e188..a6caf016 100644 --- a/packages/db/shared/schemas/objects/NpiProviderWhereInput.schema.js +++ b/packages/db/shared/schemas/objects/NpiProviderWhereInput.schema.js @@ -44,6 +44,7 @@ const ClaimListRelationFilter_schema_1 = require("./ClaimListRelationFilter.sche const PaymentListRelationFilter_schema_1 = require("./PaymentListRelationFilter.schema"); const CommissionBatchListRelationFilter_schema_1 = require("./CommissionBatchListRelationFilter.schema"); const AppointmentProcedureListRelationFilter_schema_1 = require("./AppointmentProcedureListRelationFilter.schema"); +const AppointmentListRelationFilter_schema_1 = require("./AppointmentListRelationFilter.schema"); const npiproviderwhereinputSchema = z.object({ AND: z.union([z.lazy(() => exports.NpiProviderWhereInputObjectSchema), z.lazy(() => exports.NpiProviderWhereInputObjectSchema).array()]).optional(), OR: z.lazy(() => exports.NpiProviderWhereInputObjectSchema).array().optional(), @@ -58,7 +59,8 @@ const npiproviderwhereinputSchema = z.object({ claims: z.lazy(() => ClaimListRelationFilter_schema_1.ClaimListRelationFilterObjectSchema).optional(), payments: z.lazy(() => PaymentListRelationFilter_schema_1.PaymentListRelationFilterObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchListRelationFilter_schema_1.CommissionBatchListRelationFilterObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureListRelationFilter_schema_1.AppointmentProcedureListRelationFilterObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureListRelationFilter_schema_1.AppointmentProcedureListRelationFilterObjectSchema).optional(), + appointments: z.lazy(() => AppointmentListRelationFilter_schema_1.AppointmentListRelationFilterObjectSchema).optional() }).strict(); exports.NpiProviderWhereInputObjectSchema = npiproviderwhereinputSchema; exports.NpiProviderWhereInputObjectZodSchema = npiproviderwhereinputSchema; diff --git a/packages/db/shared/schemas/objects/NpiProviderWhereInput.schema.ts b/packages/db/shared/schemas/objects/NpiProviderWhereInput.schema.ts index 569b9f27..54b04fbf 100644 --- a/packages/db/shared/schemas/objects/NpiProviderWhereInput.schema.ts +++ b/packages/db/shared/schemas/objects/NpiProviderWhereInput.schema.ts @@ -8,7 +8,8 @@ import { UserWhereInputObjectSchema as UserWhereInputObjectSchema } from './User import { ClaimListRelationFilterObjectSchema as ClaimListRelationFilterObjectSchema } from './ClaimListRelationFilter.schema'; import { PaymentListRelationFilterObjectSchema as PaymentListRelationFilterObjectSchema } from './PaymentListRelationFilter.schema'; import { CommissionBatchListRelationFilterObjectSchema as CommissionBatchListRelationFilterObjectSchema } from './CommissionBatchListRelationFilter.schema'; -import { AppointmentProcedureListRelationFilterObjectSchema as AppointmentProcedureListRelationFilterObjectSchema } from './AppointmentProcedureListRelationFilter.schema' +import { AppointmentProcedureListRelationFilterObjectSchema as AppointmentProcedureListRelationFilterObjectSchema } from './AppointmentProcedureListRelationFilter.schema'; +import { AppointmentListRelationFilterObjectSchema as AppointmentListRelationFilterObjectSchema } from './AppointmentListRelationFilter.schema' const npiproviderwhereinputSchema = z.object({ AND: z.union([z.lazy(() => NpiProviderWhereInputObjectSchema), z.lazy(() => NpiProviderWhereInputObjectSchema).array()]).optional(), @@ -24,7 +25,8 @@ const npiproviderwhereinputSchema = z.object({ claims: z.lazy(() => ClaimListRelationFilterObjectSchema).optional(), payments: z.lazy(() => PaymentListRelationFilterObjectSchema).optional(), commissionBatches: z.lazy(() => CommissionBatchListRelationFilterObjectSchema).optional(), - appointmentProcedures: z.lazy(() => AppointmentProcedureListRelationFilterObjectSchema).optional() + appointmentProcedures: z.lazy(() => AppointmentProcedureListRelationFilterObjectSchema).optional(), + appointments: z.lazy(() => AppointmentListRelationFilterObjectSchema).optional() }).strict(); export const NpiProviderWhereInputObjectSchema: z.ZodType = npiproviderwhereinputSchema as unknown as z.ZodType; export const NpiProviderWhereInputObjectZodSchema = npiproviderwhereinputSchema; diff --git a/packages/db/shared/schemas/objects/NullableDecimalFieldUpdateOperationsInput.schema.js b/packages/db/shared/schemas/objects/NullableDecimalFieldUpdateOperationsInput.schema.js index 86a100d8..351a51ff 100644 --- a/packages/db/shared/schemas/objects/NullableDecimalFieldUpdateOperationsInput.schema.js +++ b/packages/db/shared/schemas/objects/NullableDecimalFieldUpdateOperationsInput.schema.js @@ -38,15 +38,14 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.NullableDecimalFieldUpdateOperationsInputObjectZodSchema = exports.NullableDecimalFieldUpdateOperationsInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ set: z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'set' must be a Decimal", @@ -55,7 +54,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'increment' must be a Decimal", @@ -64,7 +63,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'decrement' must be a Decimal", @@ -73,7 +72,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'multiply' must be a Decimal", @@ -82,7 +81,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'divide' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/NullableDecimalFieldUpdateOperationsInput.schema.ts b/packages/db/shared/schemas/objects/NullableDecimalFieldUpdateOperationsInput.schema.ts index cf5951e2..132ab7c6 100644 --- a/packages/db/shared/schemas/objects/NullableDecimalFieldUpdateOperationsInput.schema.ts +++ b/packages/db/shared/schemas/objects/NullableDecimalFieldUpdateOperationsInput.schema.ts @@ -1,15 +1,15 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; - +import type { Prisma } from '../../../generated/prisma'; import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ set: z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'set' must be a Decimal", @@ -18,7 +18,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'increment' must be a Decimal", @@ -27,7 +27,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'decrement' must be a Decimal", @@ -36,7 +36,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'multiply' must be a Decimal", @@ -45,7 +45,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'divide' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentCreateInput.schema.js b/packages/db/shared/schemas/objects/PaymentCreateInput.schema.js index e5995495..be3b4709 100644 --- a/packages/db/shared/schemas/objects/PaymentCreateInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentCreateInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentCreateInputObjectZodSchema = exports.PaymentCreateInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const PaymentStatus_schema_1 = require("../enums/PaymentStatus.schema"); const ClaimCreateNestedOneWithoutPaymentInput_schema_1 = require("./ClaimCreateNestedOneWithoutPaymentInput.schema"); const PatientCreateNestedOneWithoutPaymentInput_schema_1 = require("./PatientCreateNestedOneWithoutPaymentInput.schema"); @@ -49,13 +47,14 @@ const ServiceLineTransactionCreateNestedManyWithoutPaymentInput_schema_1 = requi const ServiceLineCreateNestedManyWithoutPaymentInput_schema_1 = require("./ServiceLineCreateNestedManyWithoutPaymentInput.schema"); const CommissionBatchItemCreateNestedManyWithoutPaymentInput_schema_1 = require("./CommissionBatchItemCreateNestedManyWithoutPaymentInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ userId: z.number().int(), totalBilled: z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -64,7 +63,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -73,7 +72,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -82,7 +81,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -91,7 +90,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -100,7 +99,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -109,7 +108,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentCreateInput.schema.ts b/packages/db/shared/schemas/objects/PaymentCreateInput.schema.ts index c4ceeba9..f5a915fc 100644 --- a/packages/db/shared/schemas/objects/PaymentCreateInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentCreateInput.schema.ts @@ -1,23 +1,24 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { ClaimCreateNestedOneWithoutPaymentInputObjectSchema as ClaimCreateNestedOneWithoutPaymentInputObjectSchema } from './ClaimCreateNestedOneWithoutPaymentInput.schema'; -import { PatientCreateNestedOneWithoutPaymentInputObjectSchema as PatientCreateNestedOneWithoutPaymentInputObjectSchema } from './PatientCreateNestedOneWithoutPaymentInput.schema'; -import { UserCreateNestedOneWithoutUpdatedPaymentsInputObjectSchema as UserCreateNestedOneWithoutUpdatedPaymentsInputObjectSchema } from './UserCreateNestedOneWithoutUpdatedPaymentsInput.schema'; -import { NpiProviderCreateNestedOneWithoutPaymentsInputObjectSchema as NpiProviderCreateNestedOneWithoutPaymentsInputObjectSchema } from './NpiProviderCreateNestedOneWithoutPaymentsInput.schema'; -import { ServiceLineTransactionCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineTransactionCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineTransactionCreateNestedManyWithoutPaymentInput.schema'; -import { ServiceLineCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineCreateNestedManyWithoutPaymentInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { ClaimCreateNestedOneWithoutPaymentInputObjectSchema as ClaimCreateNestedOneWithoutPaymentInputObjectSchema } from './ClaimCreateNestedOneWithoutPaymentInput.schema'; +import { PatientCreateNestedOneWithoutPaymentInputObjectSchema as PatientCreateNestedOneWithoutPaymentInputObjectSchema } from './PatientCreateNestedOneWithoutPaymentInput.schema'; +import { UserCreateNestedOneWithoutUpdatedPaymentsInputObjectSchema as UserCreateNestedOneWithoutUpdatedPaymentsInputObjectSchema } from './UserCreateNestedOneWithoutUpdatedPaymentsInput.schema'; +import { NpiProviderCreateNestedOneWithoutPaymentsInputObjectSchema as NpiProviderCreateNestedOneWithoutPaymentsInputObjectSchema } from './NpiProviderCreateNestedOneWithoutPaymentsInput.schema'; +import { ServiceLineTransactionCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineTransactionCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineTransactionCreateNestedManyWithoutPaymentInput.schema'; +import { ServiceLineCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineCreateNestedManyWithoutPaymentInput.schema'; import { CommissionBatchItemCreateNestedManyWithoutPaymentInputObjectSchema as CommissionBatchItemCreateNestedManyWithoutPaymentInputObjectSchema } from './CommissionBatchItemCreateNestedManyWithoutPaymentInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ userId: z.number().int(), totalBilled: z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -26,7 +27,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -35,7 +36,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -44,7 +45,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -53,7 +54,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -62,7 +63,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -71,7 +72,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentCreateManyInput.schema.js b/packages/db/shared/schemas/objects/PaymentCreateManyInput.schema.js index eb7684db..8564e348 100644 --- a/packages/db/shared/schemas/objects/PaymentCreateManyInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentCreateManyInput.schema.js @@ -38,10 +38,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentCreateManyInputObjectZodSchema = exports.PaymentCreateManyInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const PaymentStatus_schema_1 = require("../enums/PaymentStatus.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), claimId: z.number().int().optional().nullable(), @@ -53,7 +52,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -62,7 +61,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -71,7 +70,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -80,7 +79,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -89,7 +88,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -98,7 +97,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -107,7 +106,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentCreateManyInput.schema.ts b/packages/db/shared/schemas/objects/PaymentCreateManyInput.schema.ts index 87576c1b..5c2903b2 100644 --- a/packages/db/shared/schemas/objects/PaymentCreateManyInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentCreateManyInput.schema.ts @@ -1,9 +1,10 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; +import type { Prisma } from '../../../generated/prisma'; import { PaymentStatusSchema } from '../enums/PaymentStatus.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), claimId: z.number().int().optional().nullable(), @@ -15,7 +16,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -24,7 +25,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -33,7 +34,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -42,7 +43,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -51,7 +52,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -60,7 +61,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -69,7 +70,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentCreateManyNpiProviderInput.schema.js b/packages/db/shared/schemas/objects/PaymentCreateManyNpiProviderInput.schema.js index 178bd5cf..0e44a5fd 100644 --- a/packages/db/shared/schemas/objects/PaymentCreateManyNpiProviderInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentCreateManyNpiProviderInput.schema.js @@ -38,10 +38,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentCreateManyNpiProviderInputObjectZodSchema = exports.PaymentCreateManyNpiProviderInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const PaymentStatus_schema_1 = require("../enums/PaymentStatus.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), claimId: z.number().int().optional().nullable(), @@ -52,7 +51,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -61,7 +60,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -70,7 +69,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -79,7 +78,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -88,7 +87,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -97,7 +96,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -106,7 +105,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentCreateManyNpiProviderInput.schema.ts b/packages/db/shared/schemas/objects/PaymentCreateManyNpiProviderInput.schema.ts index 26d01eff..55671b0d 100644 --- a/packages/db/shared/schemas/objects/PaymentCreateManyNpiProviderInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentCreateManyNpiProviderInput.schema.ts @@ -1,9 +1,10 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; +import type { Prisma } from '../../../generated/prisma'; import { PaymentStatusSchema } from '../enums/PaymentStatus.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), claimId: z.number().int().optional().nullable(), @@ -14,7 +15,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -23,7 +24,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -32,7 +33,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -41,7 +42,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -50,7 +51,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -59,7 +60,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -68,7 +69,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentCreateManyPatientInput.schema.js b/packages/db/shared/schemas/objects/PaymentCreateManyPatientInput.schema.js index 7c072b27..db0325ba 100644 --- a/packages/db/shared/schemas/objects/PaymentCreateManyPatientInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentCreateManyPatientInput.schema.js @@ -38,10 +38,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentCreateManyPatientInputObjectZodSchema = exports.PaymentCreateManyPatientInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const PaymentStatus_schema_1 = require("../enums/PaymentStatus.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), claimId: z.number().int().optional().nullable(), @@ -52,7 +51,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -61,7 +60,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -70,7 +69,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -79,7 +78,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -88,7 +87,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -97,7 +96,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -106,7 +105,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentCreateManyPatientInput.schema.ts b/packages/db/shared/schemas/objects/PaymentCreateManyPatientInput.schema.ts index 09774e0f..915a8cb4 100644 --- a/packages/db/shared/schemas/objects/PaymentCreateManyPatientInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentCreateManyPatientInput.schema.ts @@ -1,9 +1,10 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; +import type { Prisma } from '../../../generated/prisma'; import { PaymentStatusSchema } from '../enums/PaymentStatus.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), claimId: z.number().int().optional().nullable(), @@ -14,7 +15,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -23,7 +24,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -32,7 +33,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -41,7 +42,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -50,7 +51,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -59,7 +60,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -68,7 +69,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentCreateManyUpdatedByInput.schema.js b/packages/db/shared/schemas/objects/PaymentCreateManyUpdatedByInput.schema.js index feaf6bdc..d9d1bc44 100644 --- a/packages/db/shared/schemas/objects/PaymentCreateManyUpdatedByInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentCreateManyUpdatedByInput.schema.js @@ -38,10 +38,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentCreateManyUpdatedByInputObjectZodSchema = exports.PaymentCreateManyUpdatedByInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const PaymentStatus_schema_1 = require("../enums/PaymentStatus.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), claimId: z.number().int().optional().nullable(), @@ -52,7 +51,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -61,7 +60,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -70,7 +69,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -79,7 +78,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -88,7 +87,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -97,7 +96,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -106,7 +105,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentCreateManyUpdatedByInput.schema.ts b/packages/db/shared/schemas/objects/PaymentCreateManyUpdatedByInput.schema.ts index c8b0e898..a4ed116c 100644 --- a/packages/db/shared/schemas/objects/PaymentCreateManyUpdatedByInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentCreateManyUpdatedByInput.schema.ts @@ -1,9 +1,10 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; +import type { Prisma } from '../../../generated/prisma'; import { PaymentStatusSchema } from '../enums/PaymentStatus.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), claimId: z.number().int().optional().nullable(), @@ -14,7 +15,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -23,7 +24,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -32,7 +33,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -41,7 +42,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -50,7 +51,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -59,7 +60,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -68,7 +69,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentCreateWithoutClaimInput.schema.js b/packages/db/shared/schemas/objects/PaymentCreateWithoutClaimInput.schema.js index 637d305c..2f5071f3 100644 --- a/packages/db/shared/schemas/objects/PaymentCreateWithoutClaimInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentCreateWithoutClaimInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentCreateWithoutClaimInputObjectZodSchema = exports.PaymentCreateWithoutClaimInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const PaymentStatus_schema_1 = require("../enums/PaymentStatus.schema"); const PatientCreateNestedOneWithoutPaymentInput_schema_1 = require("./PatientCreateNestedOneWithoutPaymentInput.schema"); const UserCreateNestedOneWithoutUpdatedPaymentsInput_schema_1 = require("./UserCreateNestedOneWithoutUpdatedPaymentsInput.schema"); @@ -48,13 +46,14 @@ const ServiceLineTransactionCreateNestedManyWithoutPaymentInput_schema_1 = requi const ServiceLineCreateNestedManyWithoutPaymentInput_schema_1 = require("./ServiceLineCreateNestedManyWithoutPaymentInput.schema"); const CommissionBatchItemCreateNestedManyWithoutPaymentInput_schema_1 = require("./CommissionBatchItemCreateNestedManyWithoutPaymentInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ userId: z.number().int(), totalBilled: z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -63,7 +62,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -72,7 +71,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -81,7 +80,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -90,7 +89,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -99,7 +98,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -108,7 +107,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentCreateWithoutClaimInput.schema.ts b/packages/db/shared/schemas/objects/PaymentCreateWithoutClaimInput.schema.ts index b22ea56f..a8aeb7ad 100644 --- a/packages/db/shared/schemas/objects/PaymentCreateWithoutClaimInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentCreateWithoutClaimInput.schema.ts @@ -1,22 +1,23 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { PatientCreateNestedOneWithoutPaymentInputObjectSchema as PatientCreateNestedOneWithoutPaymentInputObjectSchema } from './PatientCreateNestedOneWithoutPaymentInput.schema'; -import { UserCreateNestedOneWithoutUpdatedPaymentsInputObjectSchema as UserCreateNestedOneWithoutUpdatedPaymentsInputObjectSchema } from './UserCreateNestedOneWithoutUpdatedPaymentsInput.schema'; -import { NpiProviderCreateNestedOneWithoutPaymentsInputObjectSchema as NpiProviderCreateNestedOneWithoutPaymentsInputObjectSchema } from './NpiProviderCreateNestedOneWithoutPaymentsInput.schema'; -import { ServiceLineTransactionCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineTransactionCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineTransactionCreateNestedManyWithoutPaymentInput.schema'; -import { ServiceLineCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineCreateNestedManyWithoutPaymentInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { PatientCreateNestedOneWithoutPaymentInputObjectSchema as PatientCreateNestedOneWithoutPaymentInputObjectSchema } from './PatientCreateNestedOneWithoutPaymentInput.schema'; +import { UserCreateNestedOneWithoutUpdatedPaymentsInputObjectSchema as UserCreateNestedOneWithoutUpdatedPaymentsInputObjectSchema } from './UserCreateNestedOneWithoutUpdatedPaymentsInput.schema'; +import { NpiProviderCreateNestedOneWithoutPaymentsInputObjectSchema as NpiProviderCreateNestedOneWithoutPaymentsInputObjectSchema } from './NpiProviderCreateNestedOneWithoutPaymentsInput.schema'; +import { ServiceLineTransactionCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineTransactionCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineTransactionCreateNestedManyWithoutPaymentInput.schema'; +import { ServiceLineCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineCreateNestedManyWithoutPaymentInput.schema'; import { CommissionBatchItemCreateNestedManyWithoutPaymentInputObjectSchema as CommissionBatchItemCreateNestedManyWithoutPaymentInputObjectSchema } from './CommissionBatchItemCreateNestedManyWithoutPaymentInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ userId: z.number().int(), totalBilled: z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -25,7 +26,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -34,7 +35,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -43,7 +44,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -52,7 +53,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -61,7 +62,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -70,7 +71,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentCreateWithoutCommissionBatchItemsInput.schema.js b/packages/db/shared/schemas/objects/PaymentCreateWithoutCommissionBatchItemsInput.schema.js index 417efe15..f2c93ecb 100644 --- a/packages/db/shared/schemas/objects/PaymentCreateWithoutCommissionBatchItemsInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentCreateWithoutCommissionBatchItemsInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentCreateWithoutCommissionBatchItemsInputObjectZodSchema = exports.PaymentCreateWithoutCommissionBatchItemsInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const PaymentStatus_schema_1 = require("../enums/PaymentStatus.schema"); const ClaimCreateNestedOneWithoutPaymentInput_schema_1 = require("./ClaimCreateNestedOneWithoutPaymentInput.schema"); const PatientCreateNestedOneWithoutPaymentInput_schema_1 = require("./PatientCreateNestedOneWithoutPaymentInput.schema"); @@ -48,13 +46,14 @@ const NpiProviderCreateNestedOneWithoutPaymentsInput_schema_1 = require("./NpiPr const ServiceLineTransactionCreateNestedManyWithoutPaymentInput_schema_1 = require("./ServiceLineTransactionCreateNestedManyWithoutPaymentInput.schema"); const ServiceLineCreateNestedManyWithoutPaymentInput_schema_1 = require("./ServiceLineCreateNestedManyWithoutPaymentInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ userId: z.number().int(), totalBilled: z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -63,7 +62,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -72,7 +71,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -81,7 +80,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -90,7 +89,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -99,7 +98,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -108,7 +107,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentCreateWithoutCommissionBatchItemsInput.schema.ts b/packages/db/shared/schemas/objects/PaymentCreateWithoutCommissionBatchItemsInput.schema.ts index bea4f794..cb8bdaf1 100644 --- a/packages/db/shared/schemas/objects/PaymentCreateWithoutCommissionBatchItemsInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentCreateWithoutCommissionBatchItemsInput.schema.ts @@ -1,22 +1,23 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { ClaimCreateNestedOneWithoutPaymentInputObjectSchema as ClaimCreateNestedOneWithoutPaymentInputObjectSchema } from './ClaimCreateNestedOneWithoutPaymentInput.schema'; -import { PatientCreateNestedOneWithoutPaymentInputObjectSchema as PatientCreateNestedOneWithoutPaymentInputObjectSchema } from './PatientCreateNestedOneWithoutPaymentInput.schema'; -import { UserCreateNestedOneWithoutUpdatedPaymentsInputObjectSchema as UserCreateNestedOneWithoutUpdatedPaymentsInputObjectSchema } from './UserCreateNestedOneWithoutUpdatedPaymentsInput.schema'; -import { NpiProviderCreateNestedOneWithoutPaymentsInputObjectSchema as NpiProviderCreateNestedOneWithoutPaymentsInputObjectSchema } from './NpiProviderCreateNestedOneWithoutPaymentsInput.schema'; -import { ServiceLineTransactionCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineTransactionCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineTransactionCreateNestedManyWithoutPaymentInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { ClaimCreateNestedOneWithoutPaymentInputObjectSchema as ClaimCreateNestedOneWithoutPaymentInputObjectSchema } from './ClaimCreateNestedOneWithoutPaymentInput.schema'; +import { PatientCreateNestedOneWithoutPaymentInputObjectSchema as PatientCreateNestedOneWithoutPaymentInputObjectSchema } from './PatientCreateNestedOneWithoutPaymentInput.schema'; +import { UserCreateNestedOneWithoutUpdatedPaymentsInputObjectSchema as UserCreateNestedOneWithoutUpdatedPaymentsInputObjectSchema } from './UserCreateNestedOneWithoutUpdatedPaymentsInput.schema'; +import { NpiProviderCreateNestedOneWithoutPaymentsInputObjectSchema as NpiProviderCreateNestedOneWithoutPaymentsInputObjectSchema } from './NpiProviderCreateNestedOneWithoutPaymentsInput.schema'; +import { ServiceLineTransactionCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineTransactionCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineTransactionCreateNestedManyWithoutPaymentInput.schema'; import { ServiceLineCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineCreateNestedManyWithoutPaymentInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ userId: z.number().int(), totalBilled: z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -25,7 +26,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -34,7 +35,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -43,7 +44,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -52,7 +53,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -61,7 +62,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -70,7 +71,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentCreateWithoutNpiProviderInput.schema.js b/packages/db/shared/schemas/objects/PaymentCreateWithoutNpiProviderInput.schema.js index b08a558e..3c7d9a09 100644 --- a/packages/db/shared/schemas/objects/PaymentCreateWithoutNpiProviderInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentCreateWithoutNpiProviderInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentCreateWithoutNpiProviderInputObjectZodSchema = exports.PaymentCreateWithoutNpiProviderInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const PaymentStatus_schema_1 = require("../enums/PaymentStatus.schema"); const ClaimCreateNestedOneWithoutPaymentInput_schema_1 = require("./ClaimCreateNestedOneWithoutPaymentInput.schema"); const PatientCreateNestedOneWithoutPaymentInput_schema_1 = require("./PatientCreateNestedOneWithoutPaymentInput.schema"); @@ -48,13 +46,14 @@ const ServiceLineTransactionCreateNestedManyWithoutPaymentInput_schema_1 = requi const ServiceLineCreateNestedManyWithoutPaymentInput_schema_1 = require("./ServiceLineCreateNestedManyWithoutPaymentInput.schema"); const CommissionBatchItemCreateNestedManyWithoutPaymentInput_schema_1 = require("./CommissionBatchItemCreateNestedManyWithoutPaymentInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ userId: z.number().int(), totalBilled: z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -63,7 +62,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -72,7 +71,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -81,7 +80,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -90,7 +89,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -99,7 +98,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -108,7 +107,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentCreateWithoutNpiProviderInput.schema.ts b/packages/db/shared/schemas/objects/PaymentCreateWithoutNpiProviderInput.schema.ts index 137d5c1c..e590eba8 100644 --- a/packages/db/shared/schemas/objects/PaymentCreateWithoutNpiProviderInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentCreateWithoutNpiProviderInput.schema.ts @@ -1,22 +1,23 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { ClaimCreateNestedOneWithoutPaymentInputObjectSchema as ClaimCreateNestedOneWithoutPaymentInputObjectSchema } from './ClaimCreateNestedOneWithoutPaymentInput.schema'; -import { PatientCreateNestedOneWithoutPaymentInputObjectSchema as PatientCreateNestedOneWithoutPaymentInputObjectSchema } from './PatientCreateNestedOneWithoutPaymentInput.schema'; -import { UserCreateNestedOneWithoutUpdatedPaymentsInputObjectSchema as UserCreateNestedOneWithoutUpdatedPaymentsInputObjectSchema } from './UserCreateNestedOneWithoutUpdatedPaymentsInput.schema'; -import { ServiceLineTransactionCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineTransactionCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineTransactionCreateNestedManyWithoutPaymentInput.schema'; -import { ServiceLineCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineCreateNestedManyWithoutPaymentInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { ClaimCreateNestedOneWithoutPaymentInputObjectSchema as ClaimCreateNestedOneWithoutPaymentInputObjectSchema } from './ClaimCreateNestedOneWithoutPaymentInput.schema'; +import { PatientCreateNestedOneWithoutPaymentInputObjectSchema as PatientCreateNestedOneWithoutPaymentInputObjectSchema } from './PatientCreateNestedOneWithoutPaymentInput.schema'; +import { UserCreateNestedOneWithoutUpdatedPaymentsInputObjectSchema as UserCreateNestedOneWithoutUpdatedPaymentsInputObjectSchema } from './UserCreateNestedOneWithoutUpdatedPaymentsInput.schema'; +import { ServiceLineTransactionCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineTransactionCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineTransactionCreateNestedManyWithoutPaymentInput.schema'; +import { ServiceLineCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineCreateNestedManyWithoutPaymentInput.schema'; import { CommissionBatchItemCreateNestedManyWithoutPaymentInputObjectSchema as CommissionBatchItemCreateNestedManyWithoutPaymentInputObjectSchema } from './CommissionBatchItemCreateNestedManyWithoutPaymentInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ userId: z.number().int(), totalBilled: z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -25,7 +26,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -34,7 +35,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -43,7 +44,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -52,7 +53,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -61,7 +62,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -70,7 +71,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentCreateWithoutPatientInput.schema.js b/packages/db/shared/schemas/objects/PaymentCreateWithoutPatientInput.schema.js index 27b29648..f89d0c6a 100644 --- a/packages/db/shared/schemas/objects/PaymentCreateWithoutPatientInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentCreateWithoutPatientInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentCreateWithoutPatientInputObjectZodSchema = exports.PaymentCreateWithoutPatientInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const PaymentStatus_schema_1 = require("../enums/PaymentStatus.schema"); const ClaimCreateNestedOneWithoutPaymentInput_schema_1 = require("./ClaimCreateNestedOneWithoutPaymentInput.schema"); const UserCreateNestedOneWithoutUpdatedPaymentsInput_schema_1 = require("./UserCreateNestedOneWithoutUpdatedPaymentsInput.schema"); @@ -48,13 +46,14 @@ const ServiceLineTransactionCreateNestedManyWithoutPaymentInput_schema_1 = requi const ServiceLineCreateNestedManyWithoutPaymentInput_schema_1 = require("./ServiceLineCreateNestedManyWithoutPaymentInput.schema"); const CommissionBatchItemCreateNestedManyWithoutPaymentInput_schema_1 = require("./CommissionBatchItemCreateNestedManyWithoutPaymentInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ userId: z.number().int(), totalBilled: z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -63,7 +62,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -72,7 +71,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -81,7 +80,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -90,7 +89,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -99,7 +98,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -108,7 +107,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentCreateWithoutPatientInput.schema.ts b/packages/db/shared/schemas/objects/PaymentCreateWithoutPatientInput.schema.ts index 5a8f23e1..747008e3 100644 --- a/packages/db/shared/schemas/objects/PaymentCreateWithoutPatientInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentCreateWithoutPatientInput.schema.ts @@ -1,22 +1,23 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { ClaimCreateNestedOneWithoutPaymentInputObjectSchema as ClaimCreateNestedOneWithoutPaymentInputObjectSchema } from './ClaimCreateNestedOneWithoutPaymentInput.schema'; -import { UserCreateNestedOneWithoutUpdatedPaymentsInputObjectSchema as UserCreateNestedOneWithoutUpdatedPaymentsInputObjectSchema } from './UserCreateNestedOneWithoutUpdatedPaymentsInput.schema'; -import { NpiProviderCreateNestedOneWithoutPaymentsInputObjectSchema as NpiProviderCreateNestedOneWithoutPaymentsInputObjectSchema } from './NpiProviderCreateNestedOneWithoutPaymentsInput.schema'; -import { ServiceLineTransactionCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineTransactionCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineTransactionCreateNestedManyWithoutPaymentInput.schema'; -import { ServiceLineCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineCreateNestedManyWithoutPaymentInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { ClaimCreateNestedOneWithoutPaymentInputObjectSchema as ClaimCreateNestedOneWithoutPaymentInputObjectSchema } from './ClaimCreateNestedOneWithoutPaymentInput.schema'; +import { UserCreateNestedOneWithoutUpdatedPaymentsInputObjectSchema as UserCreateNestedOneWithoutUpdatedPaymentsInputObjectSchema } from './UserCreateNestedOneWithoutUpdatedPaymentsInput.schema'; +import { NpiProviderCreateNestedOneWithoutPaymentsInputObjectSchema as NpiProviderCreateNestedOneWithoutPaymentsInputObjectSchema } from './NpiProviderCreateNestedOneWithoutPaymentsInput.schema'; +import { ServiceLineTransactionCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineTransactionCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineTransactionCreateNestedManyWithoutPaymentInput.schema'; +import { ServiceLineCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineCreateNestedManyWithoutPaymentInput.schema'; import { CommissionBatchItemCreateNestedManyWithoutPaymentInputObjectSchema as CommissionBatchItemCreateNestedManyWithoutPaymentInputObjectSchema } from './CommissionBatchItemCreateNestedManyWithoutPaymentInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ userId: z.number().int(), totalBilled: z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -25,7 +26,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -34,7 +35,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -43,7 +44,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -52,7 +53,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -61,7 +62,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -70,7 +71,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentCreateWithoutServiceLineTransactionsInput.schema.js b/packages/db/shared/schemas/objects/PaymentCreateWithoutServiceLineTransactionsInput.schema.js index 3a5a256b..43364afe 100644 --- a/packages/db/shared/schemas/objects/PaymentCreateWithoutServiceLineTransactionsInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentCreateWithoutServiceLineTransactionsInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentCreateWithoutServiceLineTransactionsInputObjectZodSchema = exports.PaymentCreateWithoutServiceLineTransactionsInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const PaymentStatus_schema_1 = require("../enums/PaymentStatus.schema"); const ClaimCreateNestedOneWithoutPaymentInput_schema_1 = require("./ClaimCreateNestedOneWithoutPaymentInput.schema"); const PatientCreateNestedOneWithoutPaymentInput_schema_1 = require("./PatientCreateNestedOneWithoutPaymentInput.schema"); @@ -48,13 +46,14 @@ const NpiProviderCreateNestedOneWithoutPaymentsInput_schema_1 = require("./NpiPr const ServiceLineCreateNestedManyWithoutPaymentInput_schema_1 = require("./ServiceLineCreateNestedManyWithoutPaymentInput.schema"); const CommissionBatchItemCreateNestedManyWithoutPaymentInput_schema_1 = require("./CommissionBatchItemCreateNestedManyWithoutPaymentInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ userId: z.number().int(), totalBilled: z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -63,7 +62,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -72,7 +71,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -81,7 +80,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -90,7 +89,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -99,7 +98,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -108,7 +107,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentCreateWithoutServiceLineTransactionsInput.schema.ts b/packages/db/shared/schemas/objects/PaymentCreateWithoutServiceLineTransactionsInput.schema.ts index 151bf7db..4e187b75 100644 --- a/packages/db/shared/schemas/objects/PaymentCreateWithoutServiceLineTransactionsInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentCreateWithoutServiceLineTransactionsInput.schema.ts @@ -1,22 +1,23 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { ClaimCreateNestedOneWithoutPaymentInputObjectSchema as ClaimCreateNestedOneWithoutPaymentInputObjectSchema } from './ClaimCreateNestedOneWithoutPaymentInput.schema'; -import { PatientCreateNestedOneWithoutPaymentInputObjectSchema as PatientCreateNestedOneWithoutPaymentInputObjectSchema } from './PatientCreateNestedOneWithoutPaymentInput.schema'; -import { UserCreateNestedOneWithoutUpdatedPaymentsInputObjectSchema as UserCreateNestedOneWithoutUpdatedPaymentsInputObjectSchema } from './UserCreateNestedOneWithoutUpdatedPaymentsInput.schema'; -import { NpiProviderCreateNestedOneWithoutPaymentsInputObjectSchema as NpiProviderCreateNestedOneWithoutPaymentsInputObjectSchema } from './NpiProviderCreateNestedOneWithoutPaymentsInput.schema'; -import { ServiceLineCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineCreateNestedManyWithoutPaymentInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { ClaimCreateNestedOneWithoutPaymentInputObjectSchema as ClaimCreateNestedOneWithoutPaymentInputObjectSchema } from './ClaimCreateNestedOneWithoutPaymentInput.schema'; +import { PatientCreateNestedOneWithoutPaymentInputObjectSchema as PatientCreateNestedOneWithoutPaymentInputObjectSchema } from './PatientCreateNestedOneWithoutPaymentInput.schema'; +import { UserCreateNestedOneWithoutUpdatedPaymentsInputObjectSchema as UserCreateNestedOneWithoutUpdatedPaymentsInputObjectSchema } from './UserCreateNestedOneWithoutUpdatedPaymentsInput.schema'; +import { NpiProviderCreateNestedOneWithoutPaymentsInputObjectSchema as NpiProviderCreateNestedOneWithoutPaymentsInputObjectSchema } from './NpiProviderCreateNestedOneWithoutPaymentsInput.schema'; +import { ServiceLineCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineCreateNestedManyWithoutPaymentInput.schema'; import { CommissionBatchItemCreateNestedManyWithoutPaymentInputObjectSchema as CommissionBatchItemCreateNestedManyWithoutPaymentInputObjectSchema } from './CommissionBatchItemCreateNestedManyWithoutPaymentInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ userId: z.number().int(), totalBilled: z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -25,7 +26,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -34,7 +35,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -43,7 +44,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -52,7 +53,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -61,7 +62,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -70,7 +71,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentCreateWithoutServiceLinesInput.schema.js b/packages/db/shared/schemas/objects/PaymentCreateWithoutServiceLinesInput.schema.js index b7df33ae..80628a66 100644 --- a/packages/db/shared/schemas/objects/PaymentCreateWithoutServiceLinesInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentCreateWithoutServiceLinesInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentCreateWithoutServiceLinesInputObjectZodSchema = exports.PaymentCreateWithoutServiceLinesInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const PaymentStatus_schema_1 = require("../enums/PaymentStatus.schema"); const ClaimCreateNestedOneWithoutPaymentInput_schema_1 = require("./ClaimCreateNestedOneWithoutPaymentInput.schema"); const PatientCreateNestedOneWithoutPaymentInput_schema_1 = require("./PatientCreateNestedOneWithoutPaymentInput.schema"); @@ -48,13 +46,14 @@ const NpiProviderCreateNestedOneWithoutPaymentsInput_schema_1 = require("./NpiPr const ServiceLineTransactionCreateNestedManyWithoutPaymentInput_schema_1 = require("./ServiceLineTransactionCreateNestedManyWithoutPaymentInput.schema"); const CommissionBatchItemCreateNestedManyWithoutPaymentInput_schema_1 = require("./CommissionBatchItemCreateNestedManyWithoutPaymentInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ userId: z.number().int(), totalBilled: z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -63,7 +62,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -72,7 +71,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -81,7 +80,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -90,7 +89,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -99,7 +98,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -108,7 +107,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentCreateWithoutServiceLinesInput.schema.ts b/packages/db/shared/schemas/objects/PaymentCreateWithoutServiceLinesInput.schema.ts index 29c46867..fa94122b 100644 --- a/packages/db/shared/schemas/objects/PaymentCreateWithoutServiceLinesInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentCreateWithoutServiceLinesInput.schema.ts @@ -1,22 +1,23 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { ClaimCreateNestedOneWithoutPaymentInputObjectSchema as ClaimCreateNestedOneWithoutPaymentInputObjectSchema } from './ClaimCreateNestedOneWithoutPaymentInput.schema'; -import { PatientCreateNestedOneWithoutPaymentInputObjectSchema as PatientCreateNestedOneWithoutPaymentInputObjectSchema } from './PatientCreateNestedOneWithoutPaymentInput.schema'; -import { UserCreateNestedOneWithoutUpdatedPaymentsInputObjectSchema as UserCreateNestedOneWithoutUpdatedPaymentsInputObjectSchema } from './UserCreateNestedOneWithoutUpdatedPaymentsInput.schema'; -import { NpiProviderCreateNestedOneWithoutPaymentsInputObjectSchema as NpiProviderCreateNestedOneWithoutPaymentsInputObjectSchema } from './NpiProviderCreateNestedOneWithoutPaymentsInput.schema'; -import { ServiceLineTransactionCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineTransactionCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineTransactionCreateNestedManyWithoutPaymentInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { ClaimCreateNestedOneWithoutPaymentInputObjectSchema as ClaimCreateNestedOneWithoutPaymentInputObjectSchema } from './ClaimCreateNestedOneWithoutPaymentInput.schema'; +import { PatientCreateNestedOneWithoutPaymentInputObjectSchema as PatientCreateNestedOneWithoutPaymentInputObjectSchema } from './PatientCreateNestedOneWithoutPaymentInput.schema'; +import { UserCreateNestedOneWithoutUpdatedPaymentsInputObjectSchema as UserCreateNestedOneWithoutUpdatedPaymentsInputObjectSchema } from './UserCreateNestedOneWithoutUpdatedPaymentsInput.schema'; +import { NpiProviderCreateNestedOneWithoutPaymentsInputObjectSchema as NpiProviderCreateNestedOneWithoutPaymentsInputObjectSchema } from './NpiProviderCreateNestedOneWithoutPaymentsInput.schema'; +import { ServiceLineTransactionCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineTransactionCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineTransactionCreateNestedManyWithoutPaymentInput.schema'; import { CommissionBatchItemCreateNestedManyWithoutPaymentInputObjectSchema as CommissionBatchItemCreateNestedManyWithoutPaymentInputObjectSchema } from './CommissionBatchItemCreateNestedManyWithoutPaymentInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ userId: z.number().int(), totalBilled: z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -25,7 +26,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -34,7 +35,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -43,7 +44,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -52,7 +53,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -61,7 +62,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -70,7 +71,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentCreateWithoutUpdatedByInput.schema.js b/packages/db/shared/schemas/objects/PaymentCreateWithoutUpdatedByInput.schema.js index a0eadb2a..77893161 100644 --- a/packages/db/shared/schemas/objects/PaymentCreateWithoutUpdatedByInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentCreateWithoutUpdatedByInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentCreateWithoutUpdatedByInputObjectZodSchema = exports.PaymentCreateWithoutUpdatedByInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const PaymentStatus_schema_1 = require("../enums/PaymentStatus.schema"); const ClaimCreateNestedOneWithoutPaymentInput_schema_1 = require("./ClaimCreateNestedOneWithoutPaymentInput.schema"); const PatientCreateNestedOneWithoutPaymentInput_schema_1 = require("./PatientCreateNestedOneWithoutPaymentInput.schema"); @@ -48,13 +46,14 @@ const ServiceLineTransactionCreateNestedManyWithoutPaymentInput_schema_1 = requi const ServiceLineCreateNestedManyWithoutPaymentInput_schema_1 = require("./ServiceLineCreateNestedManyWithoutPaymentInput.schema"); const CommissionBatchItemCreateNestedManyWithoutPaymentInput_schema_1 = require("./CommissionBatchItemCreateNestedManyWithoutPaymentInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ userId: z.number().int(), totalBilled: z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -63,7 +62,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -72,7 +71,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -81,7 +80,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -90,7 +89,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -99,7 +98,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -108,7 +107,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentCreateWithoutUpdatedByInput.schema.ts b/packages/db/shared/schemas/objects/PaymentCreateWithoutUpdatedByInput.schema.ts index d39928e8..b5078831 100644 --- a/packages/db/shared/schemas/objects/PaymentCreateWithoutUpdatedByInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentCreateWithoutUpdatedByInput.schema.ts @@ -1,22 +1,23 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { ClaimCreateNestedOneWithoutPaymentInputObjectSchema as ClaimCreateNestedOneWithoutPaymentInputObjectSchema } from './ClaimCreateNestedOneWithoutPaymentInput.schema'; -import { PatientCreateNestedOneWithoutPaymentInputObjectSchema as PatientCreateNestedOneWithoutPaymentInputObjectSchema } from './PatientCreateNestedOneWithoutPaymentInput.schema'; -import { NpiProviderCreateNestedOneWithoutPaymentsInputObjectSchema as NpiProviderCreateNestedOneWithoutPaymentsInputObjectSchema } from './NpiProviderCreateNestedOneWithoutPaymentsInput.schema'; -import { ServiceLineTransactionCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineTransactionCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineTransactionCreateNestedManyWithoutPaymentInput.schema'; -import { ServiceLineCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineCreateNestedManyWithoutPaymentInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { ClaimCreateNestedOneWithoutPaymentInputObjectSchema as ClaimCreateNestedOneWithoutPaymentInputObjectSchema } from './ClaimCreateNestedOneWithoutPaymentInput.schema'; +import { PatientCreateNestedOneWithoutPaymentInputObjectSchema as PatientCreateNestedOneWithoutPaymentInputObjectSchema } from './PatientCreateNestedOneWithoutPaymentInput.schema'; +import { NpiProviderCreateNestedOneWithoutPaymentsInputObjectSchema as NpiProviderCreateNestedOneWithoutPaymentsInputObjectSchema } from './NpiProviderCreateNestedOneWithoutPaymentsInput.schema'; +import { ServiceLineTransactionCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineTransactionCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineTransactionCreateNestedManyWithoutPaymentInput.schema'; +import { ServiceLineCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineCreateNestedManyWithoutPaymentInput.schema'; import { CommissionBatchItemCreateNestedManyWithoutPaymentInputObjectSchema as CommissionBatchItemCreateNestedManyWithoutPaymentInputObjectSchema } from './CommissionBatchItemCreateNestedManyWithoutPaymentInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ userId: z.number().int(), totalBilled: z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -25,7 +26,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -34,7 +35,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -43,7 +44,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -52,7 +53,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -61,7 +62,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -70,7 +71,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentScalarWhereInput.schema.js b/packages/db/shared/schemas/objects/PaymentScalarWhereInput.schema.js index 3f9f0ff4..e145e5f3 100644 --- a/packages/db/shared/schemas/objects/PaymentScalarWhereInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentScalarWhereInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentScalarWhereInputObjectZodSchema = exports.PaymentScalarWhereInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFilter_schema_1 = require("./IntFilter.schema"); const IntNullableFilter_schema_1 = require("./IntNullableFilter.schema"); const DecimalFilter_schema_1 = require("./DecimalFilter.schema"); @@ -49,6 +47,7 @@ const PaymentStatus_schema_1 = require("../enums/PaymentStatus.schema"); const StringNullableFilter_schema_1 = require("./StringNullableFilter.schema"); const DateTimeFilter_schema_1 = require("./DateTimeFilter.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const paymentscalarwhereinputSchema = z.object({ AND: z.union([z.lazy(() => exports.PaymentScalarWhereInputObjectSchema), z.lazy(() => exports.PaymentScalarWhereInputObjectSchema).array()]).optional(), OR: z.lazy(() => exports.PaymentScalarWhereInputObjectSchema).array().optional(), @@ -63,7 +62,7 @@ const paymentscalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -72,7 +71,7 @@ const paymentscalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -81,7 +80,7 @@ const paymentscalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -90,7 +89,7 @@ const paymentscalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -99,7 +98,7 @@ const paymentscalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -108,7 +107,7 @@ const paymentscalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -117,7 +116,7 @@ const paymentscalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentScalarWhereInput.schema.ts b/packages/db/shared/schemas/objects/PaymentScalarWhereInput.schema.ts index c57843e6..4843569c 100644 --- a/packages/db/shared/schemas/objects/PaymentScalarWhereInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentScalarWhereInput.schema.ts @@ -1,16 +1,17 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFilterObjectSchema as IntFilterObjectSchema } from './IntFilter.schema'; -import { IntNullableFilterObjectSchema as IntNullableFilterObjectSchema } from './IntNullableFilter.schema'; -import { DecimalFilterObjectSchema as DecimalFilterObjectSchema } from './DecimalFilter.schema'; -import { DecimalNullableFilterObjectSchema as DecimalNullableFilterObjectSchema } from './DecimalNullableFilter.schema'; -import { EnumPaymentStatusFilterObjectSchema as EnumPaymentStatusFilterObjectSchema } from './EnumPaymentStatusFilter.schema'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { StringNullableFilterObjectSchema as StringNullableFilterObjectSchema } from './StringNullableFilter.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFilterObjectSchema as IntFilterObjectSchema } from './IntFilter.schema'; +import { IntNullableFilterObjectSchema as IntNullableFilterObjectSchema } from './IntNullableFilter.schema'; +import { DecimalFilterObjectSchema as DecimalFilterObjectSchema } from './DecimalFilter.schema'; +import { DecimalNullableFilterObjectSchema as DecimalNullableFilterObjectSchema } from './DecimalNullableFilter.schema'; +import { EnumPaymentStatusFilterObjectSchema as EnumPaymentStatusFilterObjectSchema } from './EnumPaymentStatusFilter.schema'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { StringNullableFilterObjectSchema as StringNullableFilterObjectSchema } from './StringNullableFilter.schema'; import { DateTimeFilterObjectSchema as DateTimeFilterObjectSchema } from './DateTimeFilter.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const paymentscalarwhereinputSchema = z.object({ AND: z.union([z.lazy(() => PaymentScalarWhereInputObjectSchema), z.lazy(() => PaymentScalarWhereInputObjectSchema).array()]).optional(), OR: z.lazy(() => PaymentScalarWhereInputObjectSchema).array().optional(), @@ -25,7 +26,7 @@ const paymentscalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -34,7 +35,7 @@ const paymentscalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -43,7 +44,7 @@ const paymentscalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -52,7 +53,7 @@ const paymentscalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -61,7 +62,7 @@ const paymentscalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -70,7 +71,7 @@ const paymentscalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -79,7 +80,7 @@ const paymentscalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentScalarWhereWithAggregatesInput.schema.js b/packages/db/shared/schemas/objects/PaymentScalarWhereWithAggregatesInput.schema.js index 924ed165..15518de1 100644 --- a/packages/db/shared/schemas/objects/PaymentScalarWhereWithAggregatesInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentScalarWhereWithAggregatesInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentScalarWhereWithAggregatesInputObjectZodSchema = exports.PaymentScalarWhereWithAggregatesInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntWithAggregatesFilter_schema_1 = require("./IntWithAggregatesFilter.schema"); const IntNullableWithAggregatesFilter_schema_1 = require("./IntNullableWithAggregatesFilter.schema"); const DecimalWithAggregatesFilter_schema_1 = require("./DecimalWithAggregatesFilter.schema"); @@ -49,6 +47,7 @@ const PaymentStatus_schema_1 = require("../enums/PaymentStatus.schema"); const StringNullableWithAggregatesFilter_schema_1 = require("./StringNullableWithAggregatesFilter.schema"); const DateTimeWithAggregatesFilter_schema_1 = require("./DateTimeWithAggregatesFilter.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const paymentscalarwherewithaggregatesinputSchema = z.object({ AND: z.union([z.lazy(() => exports.PaymentScalarWhereWithAggregatesInputObjectSchema), z.lazy(() => exports.PaymentScalarWhereWithAggregatesInputObjectSchema).array()]).optional(), OR: z.lazy(() => exports.PaymentScalarWhereWithAggregatesInputObjectSchema).array().optional(), @@ -63,7 +62,7 @@ const paymentscalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -72,7 +71,7 @@ const paymentscalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -81,7 +80,7 @@ const paymentscalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -90,7 +89,7 @@ const paymentscalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -99,7 +98,7 @@ const paymentscalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -108,7 +107,7 @@ const paymentscalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -117,7 +116,7 @@ const paymentscalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentScalarWhereWithAggregatesInput.schema.ts b/packages/db/shared/schemas/objects/PaymentScalarWhereWithAggregatesInput.schema.ts index 80a0d57c..b3e6d3ba 100644 --- a/packages/db/shared/schemas/objects/PaymentScalarWhereWithAggregatesInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentScalarWhereWithAggregatesInput.schema.ts @@ -1,16 +1,17 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntWithAggregatesFilterObjectSchema as IntWithAggregatesFilterObjectSchema } from './IntWithAggregatesFilter.schema'; -import { IntNullableWithAggregatesFilterObjectSchema as IntNullableWithAggregatesFilterObjectSchema } from './IntNullableWithAggregatesFilter.schema'; -import { DecimalWithAggregatesFilterObjectSchema as DecimalWithAggregatesFilterObjectSchema } from './DecimalWithAggregatesFilter.schema'; -import { DecimalNullableWithAggregatesFilterObjectSchema as DecimalNullableWithAggregatesFilterObjectSchema } from './DecimalNullableWithAggregatesFilter.schema'; -import { EnumPaymentStatusWithAggregatesFilterObjectSchema as EnumPaymentStatusWithAggregatesFilterObjectSchema } from './EnumPaymentStatusWithAggregatesFilter.schema'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { StringNullableWithAggregatesFilterObjectSchema as StringNullableWithAggregatesFilterObjectSchema } from './StringNullableWithAggregatesFilter.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntWithAggregatesFilterObjectSchema as IntWithAggregatesFilterObjectSchema } from './IntWithAggregatesFilter.schema'; +import { IntNullableWithAggregatesFilterObjectSchema as IntNullableWithAggregatesFilterObjectSchema } from './IntNullableWithAggregatesFilter.schema'; +import { DecimalWithAggregatesFilterObjectSchema as DecimalWithAggregatesFilterObjectSchema } from './DecimalWithAggregatesFilter.schema'; +import { DecimalNullableWithAggregatesFilterObjectSchema as DecimalNullableWithAggregatesFilterObjectSchema } from './DecimalNullableWithAggregatesFilter.schema'; +import { EnumPaymentStatusWithAggregatesFilterObjectSchema as EnumPaymentStatusWithAggregatesFilterObjectSchema } from './EnumPaymentStatusWithAggregatesFilter.schema'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { StringNullableWithAggregatesFilterObjectSchema as StringNullableWithAggregatesFilterObjectSchema } from './StringNullableWithAggregatesFilter.schema'; import { DateTimeWithAggregatesFilterObjectSchema as DateTimeWithAggregatesFilterObjectSchema } from './DateTimeWithAggregatesFilter.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const paymentscalarwherewithaggregatesinputSchema = z.object({ AND: z.union([z.lazy(() => PaymentScalarWhereWithAggregatesInputObjectSchema), z.lazy(() => PaymentScalarWhereWithAggregatesInputObjectSchema).array()]).optional(), OR: z.lazy(() => PaymentScalarWhereWithAggregatesInputObjectSchema).array().optional(), @@ -25,7 +26,7 @@ const paymentscalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -34,7 +35,7 @@ const paymentscalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -43,7 +44,7 @@ const paymentscalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -52,7 +53,7 @@ const paymentscalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -61,7 +62,7 @@ const paymentscalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -70,7 +71,7 @@ const paymentscalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -79,7 +80,7 @@ const paymentscalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedCreateInput.schema.js b/packages/db/shared/schemas/objects/PaymentUncheckedCreateInput.schema.js index 51a9de9d..433ab389 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedCreateInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentUncheckedCreateInput.schema.js @@ -38,13 +38,12 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentUncheckedCreateInputObjectZodSchema = exports.PaymentUncheckedCreateInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const PaymentStatus_schema_1 = require("../enums/PaymentStatus.schema"); const ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInput_schema_1 = require("./ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInput.schema"); const ServiceLineUncheckedCreateNestedManyWithoutPaymentInput_schema_1 = require("./ServiceLineUncheckedCreateNestedManyWithoutPaymentInput.schema"); const CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInput_schema_1 = require("./CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), claimId: z.number().int().optional().nullable(), @@ -56,7 +55,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -65,7 +64,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -74,7 +73,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -83,7 +82,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -92,7 +91,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -101,7 +100,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -110,7 +109,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedCreateInput.schema.ts b/packages/db/shared/schemas/objects/PaymentUncheckedCreateInput.schema.ts index 5181e8d4..77848816 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedCreateInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentUncheckedCreateInput.schema.ts @@ -1,12 +1,13 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInput.schema'; -import { ServiceLineUncheckedCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineUncheckedCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineUncheckedCreateNestedManyWithoutPaymentInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInput.schema'; +import { ServiceLineUncheckedCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineUncheckedCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineUncheckedCreateNestedManyWithoutPaymentInput.schema'; import { CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInputObjectSchema as CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInputObjectSchema } from './CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), claimId: z.number().int().optional().nullable(), @@ -18,7 +19,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -27,7 +28,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -36,7 +37,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -45,7 +46,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -54,7 +55,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -63,7 +64,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -72,7 +73,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutClaimInput.schema.js b/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutClaimInput.schema.js index 1136e58d..9a3b5d5b 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutClaimInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutClaimInput.schema.js @@ -38,13 +38,12 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentUncheckedCreateWithoutClaimInputObjectZodSchema = exports.PaymentUncheckedCreateWithoutClaimInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const PaymentStatus_schema_1 = require("../enums/PaymentStatus.schema"); const ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInput_schema_1 = require("./ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInput.schema"); const ServiceLineUncheckedCreateNestedManyWithoutPaymentInput_schema_1 = require("./ServiceLineUncheckedCreateNestedManyWithoutPaymentInput.schema"); const CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInput_schema_1 = require("./CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), patientId: z.number().int(), @@ -55,7 +54,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -64,7 +63,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -73,7 +72,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -82,7 +81,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -91,7 +90,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -100,7 +99,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -109,7 +108,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutClaimInput.schema.ts b/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutClaimInput.schema.ts index 407b2f72..977f5983 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutClaimInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutClaimInput.schema.ts @@ -1,12 +1,13 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInput.schema'; -import { ServiceLineUncheckedCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineUncheckedCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineUncheckedCreateNestedManyWithoutPaymentInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInput.schema'; +import { ServiceLineUncheckedCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineUncheckedCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineUncheckedCreateNestedManyWithoutPaymentInput.schema'; import { CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInputObjectSchema as CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInputObjectSchema } from './CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), patientId: z.number().int(), @@ -17,7 +18,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -26,7 +27,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -35,7 +36,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -44,7 +45,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -53,7 +54,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -62,7 +63,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -71,7 +72,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutCommissionBatchItemsInput.schema.js b/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutCommissionBatchItemsInput.schema.js index bdf16765..8309937b 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutCommissionBatchItemsInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutCommissionBatchItemsInput.schema.js @@ -38,12 +38,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentUncheckedCreateWithoutCommissionBatchItemsInputObjectZodSchema = exports.PaymentUncheckedCreateWithoutCommissionBatchItemsInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const PaymentStatus_schema_1 = require("../enums/PaymentStatus.schema"); const ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInput_schema_1 = require("./ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInput.schema"); const ServiceLineUncheckedCreateNestedManyWithoutPaymentInput_schema_1 = require("./ServiceLineUncheckedCreateNestedManyWithoutPaymentInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), claimId: z.number().int().optional().nullable(), @@ -55,7 +54,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -64,7 +63,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -73,7 +72,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -82,7 +81,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -91,7 +90,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -100,7 +99,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -109,7 +108,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutCommissionBatchItemsInput.schema.ts b/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutCommissionBatchItemsInput.schema.ts index 718dc062..2af881b5 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutCommissionBatchItemsInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutCommissionBatchItemsInput.schema.ts @@ -1,11 +1,12 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInput.schema'; import { ServiceLineUncheckedCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineUncheckedCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineUncheckedCreateNestedManyWithoutPaymentInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), claimId: z.number().int().optional().nullable(), @@ -17,7 +18,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -26,7 +27,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -35,7 +36,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -44,7 +45,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -53,7 +54,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -62,7 +63,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -71,7 +72,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutNpiProviderInput.schema.js b/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutNpiProviderInput.schema.js index 4741cba4..5081e408 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutNpiProviderInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutNpiProviderInput.schema.js @@ -38,13 +38,12 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentUncheckedCreateWithoutNpiProviderInputObjectZodSchema = exports.PaymentUncheckedCreateWithoutNpiProviderInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const PaymentStatus_schema_1 = require("../enums/PaymentStatus.schema"); const ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInput_schema_1 = require("./ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInput.schema"); const ServiceLineUncheckedCreateNestedManyWithoutPaymentInput_schema_1 = require("./ServiceLineUncheckedCreateNestedManyWithoutPaymentInput.schema"); const CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInput_schema_1 = require("./CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), claimId: z.number().int().optional().nullable(), @@ -55,7 +54,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -64,7 +63,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -73,7 +72,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -82,7 +81,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -91,7 +90,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -100,7 +99,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -109,7 +108,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutNpiProviderInput.schema.ts b/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutNpiProviderInput.schema.ts index d958bd80..94164eac 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutNpiProviderInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutNpiProviderInput.schema.ts @@ -1,12 +1,13 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInput.schema'; -import { ServiceLineUncheckedCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineUncheckedCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineUncheckedCreateNestedManyWithoutPaymentInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInput.schema'; +import { ServiceLineUncheckedCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineUncheckedCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineUncheckedCreateNestedManyWithoutPaymentInput.schema'; import { CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInputObjectSchema as CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInputObjectSchema } from './CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), claimId: z.number().int().optional().nullable(), @@ -17,7 +18,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -26,7 +27,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -35,7 +36,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -44,7 +45,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -53,7 +54,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -62,7 +63,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -71,7 +72,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutPatientInput.schema.js b/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutPatientInput.schema.js index d0a2ecb6..b9d8cf8b 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutPatientInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutPatientInput.schema.js @@ -38,13 +38,12 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentUncheckedCreateWithoutPatientInputObjectZodSchema = exports.PaymentUncheckedCreateWithoutPatientInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const PaymentStatus_schema_1 = require("../enums/PaymentStatus.schema"); const ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInput_schema_1 = require("./ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInput.schema"); const ServiceLineUncheckedCreateNestedManyWithoutPaymentInput_schema_1 = require("./ServiceLineUncheckedCreateNestedManyWithoutPaymentInput.schema"); const CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInput_schema_1 = require("./CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), claimId: z.number().int().optional().nullable(), @@ -55,7 +54,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -64,7 +63,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -73,7 +72,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -82,7 +81,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -91,7 +90,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -100,7 +99,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -109,7 +108,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutPatientInput.schema.ts b/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutPatientInput.schema.ts index fd1a5579..7d918d2c 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutPatientInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutPatientInput.schema.ts @@ -1,12 +1,13 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInput.schema'; -import { ServiceLineUncheckedCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineUncheckedCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineUncheckedCreateNestedManyWithoutPaymentInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInput.schema'; +import { ServiceLineUncheckedCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineUncheckedCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineUncheckedCreateNestedManyWithoutPaymentInput.schema'; import { CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInputObjectSchema as CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInputObjectSchema } from './CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), claimId: z.number().int().optional().nullable(), @@ -17,7 +18,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -26,7 +27,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -35,7 +36,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -44,7 +45,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -53,7 +54,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -62,7 +63,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -71,7 +72,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutServiceLineTransactionsInput.schema.js b/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutServiceLineTransactionsInput.schema.js index dd8a68e3..c5e00775 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutServiceLineTransactionsInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutServiceLineTransactionsInput.schema.js @@ -38,12 +38,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentUncheckedCreateWithoutServiceLineTransactionsInputObjectZodSchema = exports.PaymentUncheckedCreateWithoutServiceLineTransactionsInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const PaymentStatus_schema_1 = require("../enums/PaymentStatus.schema"); const ServiceLineUncheckedCreateNestedManyWithoutPaymentInput_schema_1 = require("./ServiceLineUncheckedCreateNestedManyWithoutPaymentInput.schema"); const CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInput_schema_1 = require("./CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), claimId: z.number().int().optional().nullable(), @@ -55,7 +54,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -64,7 +63,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -73,7 +72,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -82,7 +81,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -91,7 +90,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -100,7 +99,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -109,7 +108,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutServiceLineTransactionsInput.schema.ts b/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutServiceLineTransactionsInput.schema.ts index b784545c..461a46c9 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutServiceLineTransactionsInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutServiceLineTransactionsInput.schema.ts @@ -1,11 +1,12 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { ServiceLineUncheckedCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineUncheckedCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineUncheckedCreateNestedManyWithoutPaymentInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { ServiceLineUncheckedCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineUncheckedCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineUncheckedCreateNestedManyWithoutPaymentInput.schema'; import { CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInputObjectSchema as CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInputObjectSchema } from './CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), claimId: z.number().int().optional().nullable(), @@ -17,7 +18,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -26,7 +27,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -35,7 +36,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -44,7 +45,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -53,7 +54,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -62,7 +63,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -71,7 +72,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutServiceLinesInput.schema.js b/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutServiceLinesInput.schema.js index 425dd9b9..b63080ca 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutServiceLinesInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutServiceLinesInput.schema.js @@ -38,12 +38,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentUncheckedCreateWithoutServiceLinesInputObjectZodSchema = exports.PaymentUncheckedCreateWithoutServiceLinesInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const PaymentStatus_schema_1 = require("../enums/PaymentStatus.schema"); const ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInput_schema_1 = require("./ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInput.schema"); const CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInput_schema_1 = require("./CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), claimId: z.number().int().optional().nullable(), @@ -55,7 +54,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -64,7 +63,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -73,7 +72,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -82,7 +81,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -91,7 +90,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -100,7 +99,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -109,7 +108,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutServiceLinesInput.schema.ts b/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutServiceLinesInput.schema.ts index 0ae58ef9..83aaa43a 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutServiceLinesInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutServiceLinesInput.schema.ts @@ -1,11 +1,12 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInput.schema'; import { CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInputObjectSchema as CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInputObjectSchema } from './CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), claimId: z.number().int().optional().nullable(), @@ -17,7 +18,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -26,7 +27,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -35,7 +36,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -44,7 +45,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -53,7 +54,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -62,7 +63,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -71,7 +72,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutUpdatedByInput.schema.js b/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutUpdatedByInput.schema.js index e2274b0a..347a1632 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutUpdatedByInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutUpdatedByInput.schema.js @@ -38,13 +38,12 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentUncheckedCreateWithoutUpdatedByInputObjectZodSchema = exports.PaymentUncheckedCreateWithoutUpdatedByInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const PaymentStatus_schema_1 = require("../enums/PaymentStatus.schema"); const ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInput_schema_1 = require("./ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInput.schema"); const ServiceLineUncheckedCreateNestedManyWithoutPaymentInput_schema_1 = require("./ServiceLineUncheckedCreateNestedManyWithoutPaymentInput.schema"); const CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInput_schema_1 = require("./CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), claimId: z.number().int().optional().nullable(), @@ -55,7 +54,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -64,7 +63,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -73,7 +72,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -82,7 +81,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -91,7 +90,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -100,7 +99,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -109,7 +108,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutUpdatedByInput.schema.ts b/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutUpdatedByInput.schema.ts index 880159e9..c88dcacd 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutUpdatedByInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentUncheckedCreateWithoutUpdatedByInput.schema.ts @@ -1,12 +1,13 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInput.schema'; -import { ServiceLineUncheckedCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineUncheckedCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineUncheckedCreateNestedManyWithoutPaymentInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineTransactionUncheckedCreateNestedManyWithoutPaymentInput.schema'; +import { ServiceLineUncheckedCreateNestedManyWithoutPaymentInputObjectSchema as ServiceLineUncheckedCreateNestedManyWithoutPaymentInputObjectSchema } from './ServiceLineUncheckedCreateNestedManyWithoutPaymentInput.schema'; import { CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInputObjectSchema as CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInputObjectSchema } from './CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), claimId: z.number().int().optional().nullable(), @@ -17,7 +18,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -26,7 +27,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -35,7 +36,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -44,7 +45,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -53,7 +54,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -62,7 +63,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -71,7 +72,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateInput.schema.js b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateInput.schema.js index 26278453..11755c43 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentUncheckedUpdateInputObjectZodSchema = exports.PaymentUncheckedUpdateInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); @@ -52,6 +50,7 @@ const ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInput_schema_ const ServiceLineUncheckedUpdateManyWithoutPaymentNestedInput_schema_1 = require("./ServiceLineUncheckedUpdateManyWithoutPaymentNestedInput.schema"); const CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInput_schema_1 = require("./CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), claimId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInput_schema_1.NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -63,7 +62,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -72,7 +71,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -81,7 +80,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -90,7 +89,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -99,7 +98,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -108,7 +107,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -117,7 +116,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateInput.schema.ts b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateInput.schema.ts index 34807a46..e1e7b523 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateInput.schema.ts @@ -1,19 +1,20 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; -import { ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInput.schema'; -import { ServiceLineUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineUncheckedUpdateManyWithoutPaymentNestedInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInput.schema'; +import { ServiceLineUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineUncheckedUpdateManyWithoutPaymentNestedInput.schema'; import { CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema as CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema } from './CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), claimId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -25,7 +26,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -34,7 +35,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -43,7 +44,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -52,7 +53,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -61,7 +62,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -70,7 +71,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -79,7 +80,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateManyInput.schema.js b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateManyInput.schema.js index 42406c23..cd1588e6 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateManyInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateManyInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentUncheckedUpdateManyInputObjectZodSchema = exports.PaymentUncheckedUpdateManyInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); @@ -49,6 +47,7 @@ const EnumPaymentStatusFieldUpdateOperationsInput_schema_1 = require("./EnumPaym const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), claimId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInput_schema_1.NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -60,7 +59,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -69,7 +68,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -78,7 +77,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -87,7 +86,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -96,7 +95,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -105,7 +104,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -114,7 +113,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateManyInput.schema.ts b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateManyInput.schema.ts index a2c9b40b..fe745599 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateManyInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateManyInput.schema.ts @@ -1,16 +1,17 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), claimId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -22,7 +23,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -31,7 +32,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -40,7 +41,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -49,7 +50,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -58,7 +59,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -67,7 +68,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -76,7 +77,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateManyWithoutNpiProviderInput.schema.js b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateManyWithoutNpiProviderInput.schema.js index 9c6b77f3..5ff58d66 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateManyWithoutNpiProviderInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateManyWithoutNpiProviderInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentUncheckedUpdateManyWithoutNpiProviderInputObjectZodSchema = exports.PaymentUncheckedUpdateManyWithoutNpiProviderInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); @@ -49,6 +47,7 @@ const EnumPaymentStatusFieldUpdateOperationsInput_schema_1 = require("./EnumPaym const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), claimId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInput_schema_1.NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -59,7 +58,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -68,7 +67,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -77,7 +76,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -86,7 +85,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -95,7 +94,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -104,7 +103,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -113,7 +112,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateManyWithoutNpiProviderInput.schema.ts b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateManyWithoutNpiProviderInput.schema.ts index 61709c96..f21c5a8a 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateManyWithoutNpiProviderInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateManyWithoutNpiProviderInput.schema.ts @@ -1,16 +1,17 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), claimId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -21,7 +22,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -30,7 +31,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -39,7 +40,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -48,7 +49,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -57,7 +58,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -66,7 +67,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -75,7 +76,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateManyWithoutPatientInput.schema.js b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateManyWithoutPatientInput.schema.js index 775de67d..c8948e0a 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateManyWithoutPatientInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateManyWithoutPatientInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentUncheckedUpdateManyWithoutPatientInputObjectZodSchema = exports.PaymentUncheckedUpdateManyWithoutPatientInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); @@ -49,6 +47,7 @@ const EnumPaymentStatusFieldUpdateOperationsInput_schema_1 = require("./EnumPaym const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), claimId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInput_schema_1.NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -59,7 +58,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -68,7 +67,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -77,7 +76,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -86,7 +85,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -95,7 +94,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -104,7 +103,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -113,7 +112,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateManyWithoutPatientInput.schema.ts b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateManyWithoutPatientInput.schema.ts index a9dff831..53f9b629 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateManyWithoutPatientInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateManyWithoutPatientInput.schema.ts @@ -1,16 +1,17 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), claimId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -21,7 +22,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -30,7 +31,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -39,7 +40,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -48,7 +49,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -57,7 +58,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -66,7 +67,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -75,7 +76,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateManyWithoutUpdatedByInput.schema.js b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateManyWithoutUpdatedByInput.schema.js index 4d899212..15955a3d 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateManyWithoutUpdatedByInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateManyWithoutUpdatedByInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentUncheckedUpdateManyWithoutUpdatedByInputObjectZodSchema = exports.PaymentUncheckedUpdateManyWithoutUpdatedByInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); @@ -49,6 +47,7 @@ const EnumPaymentStatusFieldUpdateOperationsInput_schema_1 = require("./EnumPaym const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), claimId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInput_schema_1.NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -59,7 +58,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -68,7 +67,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -77,7 +76,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -86,7 +85,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -95,7 +94,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -104,7 +103,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -113,7 +112,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateManyWithoutUpdatedByInput.schema.ts b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateManyWithoutUpdatedByInput.schema.ts index bb422e7c..3849a001 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateManyWithoutUpdatedByInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateManyWithoutUpdatedByInput.schema.ts @@ -1,16 +1,17 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), claimId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -21,7 +22,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -30,7 +31,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -39,7 +40,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -48,7 +49,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -57,7 +58,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -66,7 +67,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -75,7 +76,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutClaimInput.schema.js b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutClaimInput.schema.js index 66fe52ba..f9f130e4 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutClaimInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutClaimInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentUncheckedUpdateWithoutClaimInputObjectZodSchema = exports.PaymentUncheckedUpdateWithoutClaimInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); @@ -52,6 +50,7 @@ const ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInput_schema_ const ServiceLineUncheckedUpdateManyWithoutPaymentNestedInput_schema_1 = require("./ServiceLineUncheckedUpdateManyWithoutPaymentNestedInput.schema"); const CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInput_schema_1 = require("./CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), patientId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -62,7 +61,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -71,7 +70,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -80,7 +79,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -89,7 +88,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -98,7 +97,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -107,7 +106,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -116,7 +115,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutClaimInput.schema.ts b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutClaimInput.schema.ts index 2aeb0875..fb8f68c4 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutClaimInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutClaimInput.schema.ts @@ -1,19 +1,20 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; -import { ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInput.schema'; -import { ServiceLineUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineUncheckedUpdateManyWithoutPaymentNestedInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInput.schema'; +import { ServiceLineUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineUncheckedUpdateManyWithoutPaymentNestedInput.schema'; import { CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema as CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema } from './CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), patientId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -24,7 +25,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -33,7 +34,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -42,7 +43,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -51,7 +52,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -60,7 +61,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -69,7 +70,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -78,7 +79,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutCommissionBatchItemsInput.schema.js b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutCommissionBatchItemsInput.schema.js index 9aecf69e..b693333d 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutCommissionBatchItemsInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutCommissionBatchItemsInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentUncheckedUpdateWithoutCommissionBatchItemsInputObjectZodSchema = exports.PaymentUncheckedUpdateWithoutCommissionBatchItemsInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); @@ -51,6 +49,7 @@ const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpda const ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInput_schema_1 = require("./ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInput.schema"); const ServiceLineUncheckedUpdateManyWithoutPaymentNestedInput_schema_1 = require("./ServiceLineUncheckedUpdateManyWithoutPaymentNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), claimId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInput_schema_1.NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -62,7 +61,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -71,7 +70,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -80,7 +79,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -89,7 +88,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -98,7 +97,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -107,7 +106,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -116,7 +115,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutCommissionBatchItemsInput.schema.ts b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutCommissionBatchItemsInput.schema.ts index 397895f1..9604cf5f 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutCommissionBatchItemsInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutCommissionBatchItemsInput.schema.ts @@ -1,18 +1,19 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; -import { ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInput.schema'; import { ServiceLineUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineUncheckedUpdateManyWithoutPaymentNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), claimId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -24,7 +25,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -33,7 +34,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -42,7 +43,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -51,7 +52,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -60,7 +61,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -69,7 +70,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -78,7 +79,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutNpiProviderInput.schema.js b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutNpiProviderInput.schema.js index d6938dd2..bfbb25af 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutNpiProviderInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutNpiProviderInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentUncheckedUpdateWithoutNpiProviderInputObjectZodSchema = exports.PaymentUncheckedUpdateWithoutNpiProviderInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); @@ -52,6 +50,7 @@ const ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInput_schema_ const ServiceLineUncheckedUpdateManyWithoutPaymentNestedInput_schema_1 = require("./ServiceLineUncheckedUpdateManyWithoutPaymentNestedInput.schema"); const CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInput_schema_1 = require("./CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), claimId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInput_schema_1.NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -62,7 +61,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -71,7 +70,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -80,7 +79,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -89,7 +88,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -98,7 +97,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -107,7 +106,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -116,7 +115,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutNpiProviderInput.schema.ts b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutNpiProviderInput.schema.ts index 79bd05b4..cddc42a9 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutNpiProviderInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutNpiProviderInput.schema.ts @@ -1,19 +1,20 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; -import { ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInput.schema'; -import { ServiceLineUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineUncheckedUpdateManyWithoutPaymentNestedInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInput.schema'; +import { ServiceLineUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineUncheckedUpdateManyWithoutPaymentNestedInput.schema'; import { CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema as CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema } from './CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), claimId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -24,7 +25,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -33,7 +34,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -42,7 +43,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -51,7 +52,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -60,7 +61,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -69,7 +70,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -78,7 +79,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutPatientInput.schema.js b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutPatientInput.schema.js index 35f763f7..7c2dbd20 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutPatientInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutPatientInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentUncheckedUpdateWithoutPatientInputObjectZodSchema = exports.PaymentUncheckedUpdateWithoutPatientInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); @@ -52,6 +50,7 @@ const ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInput_schema_ const ServiceLineUncheckedUpdateManyWithoutPaymentNestedInput_schema_1 = require("./ServiceLineUncheckedUpdateManyWithoutPaymentNestedInput.schema"); const CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInput_schema_1 = require("./CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), claimId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInput_schema_1.NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -62,7 +61,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -71,7 +70,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -80,7 +79,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -89,7 +88,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -98,7 +97,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -107,7 +106,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -116,7 +115,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutPatientInput.schema.ts b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutPatientInput.schema.ts index c0f26000..9c6e3aca 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutPatientInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutPatientInput.schema.ts @@ -1,19 +1,20 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; -import { ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInput.schema'; -import { ServiceLineUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineUncheckedUpdateManyWithoutPaymentNestedInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInput.schema'; +import { ServiceLineUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineUncheckedUpdateManyWithoutPaymentNestedInput.schema'; import { CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema as CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema } from './CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), claimId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -24,7 +25,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -33,7 +34,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -42,7 +43,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -51,7 +52,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -60,7 +61,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -69,7 +70,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -78,7 +79,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutServiceLineTransactionsInput.schema.js b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutServiceLineTransactionsInput.schema.js index e6962ef2..12d6e447 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutServiceLineTransactionsInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutServiceLineTransactionsInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentUncheckedUpdateWithoutServiceLineTransactionsInputObjectZodSchema = exports.PaymentUncheckedUpdateWithoutServiceLineTransactionsInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); @@ -51,6 +49,7 @@ const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpda const ServiceLineUncheckedUpdateManyWithoutPaymentNestedInput_schema_1 = require("./ServiceLineUncheckedUpdateManyWithoutPaymentNestedInput.schema"); const CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInput_schema_1 = require("./CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), claimId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInput_schema_1.NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -62,7 +61,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -71,7 +70,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -80,7 +79,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -89,7 +88,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -98,7 +97,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -107,7 +106,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -116,7 +115,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutServiceLineTransactionsInput.schema.ts b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutServiceLineTransactionsInput.schema.ts index 607395d5..2a90a4b3 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutServiceLineTransactionsInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutServiceLineTransactionsInput.schema.ts @@ -1,18 +1,19 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; -import { ServiceLineUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineUncheckedUpdateManyWithoutPaymentNestedInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { ServiceLineUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineUncheckedUpdateManyWithoutPaymentNestedInput.schema'; import { CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema as CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema } from './CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), claimId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -24,7 +25,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -33,7 +34,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -42,7 +43,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -51,7 +52,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -60,7 +61,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -69,7 +70,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -78,7 +79,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutServiceLinesInput.schema.js b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutServiceLinesInput.schema.js index 1b17bff0..15ebc631 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutServiceLinesInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutServiceLinesInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentUncheckedUpdateWithoutServiceLinesInputObjectZodSchema = exports.PaymentUncheckedUpdateWithoutServiceLinesInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); @@ -51,6 +49,7 @@ const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpda const ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInput_schema_1 = require("./ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInput.schema"); const CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInput_schema_1 = require("./CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), claimId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInput_schema_1.NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -62,7 +61,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -71,7 +70,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -80,7 +79,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -89,7 +88,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -98,7 +97,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -107,7 +106,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -116,7 +115,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutServiceLinesInput.schema.ts b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutServiceLinesInput.schema.ts index 1b3a6d7b..d9906119 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutServiceLinesInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutServiceLinesInput.schema.ts @@ -1,18 +1,19 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; -import { ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInput.schema'; import { CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema as CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema } from './CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), claimId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -24,7 +25,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -33,7 +34,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -42,7 +43,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -51,7 +52,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -60,7 +61,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -69,7 +70,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -78,7 +79,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutUpdatedByInput.schema.js b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutUpdatedByInput.schema.js index 697eba25..0f33566b 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutUpdatedByInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutUpdatedByInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentUncheckedUpdateWithoutUpdatedByInputObjectZodSchema = exports.PaymentUncheckedUpdateWithoutUpdatedByInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); @@ -52,6 +50,7 @@ const ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInput_schema_ const ServiceLineUncheckedUpdateManyWithoutPaymentNestedInput_schema_1 = require("./ServiceLineUncheckedUpdateManyWithoutPaymentNestedInput.schema"); const CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInput_schema_1 = require("./CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), claimId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInput_schema_1.NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -62,7 +61,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -71,7 +70,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -80,7 +79,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -89,7 +88,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -98,7 +97,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -107,7 +106,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -116,7 +115,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutUpdatedByInput.schema.ts b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutUpdatedByInput.schema.ts index 654ed8d2..6931e4f0 100644 --- a/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutUpdatedByInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentUncheckedUpdateWithoutUpdatedByInput.schema.ts @@ -1,19 +1,20 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; -import { ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInput.schema'; -import { ServiceLineUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineUncheckedUpdateManyWithoutPaymentNestedInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineTransactionUncheckedUpdateManyWithoutPaymentNestedInput.schema'; +import { ServiceLineUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineUncheckedUpdateManyWithoutPaymentNestedInput.schema'; import { CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema as CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInputObjectSchema } from './CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), claimId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -24,7 +25,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -33,7 +34,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -42,7 +43,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -51,7 +52,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -60,7 +61,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -69,7 +70,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -78,7 +79,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUpdateInput.schema.js b/packages/db/shared/schemas/objects/PaymentUpdateInput.schema.js index 52787682..9bcd55ec 100644 --- a/packages/db/shared/schemas/objects/PaymentUpdateInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentUpdateInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentUpdateInputObjectZodSchema = exports.PaymentUpdateInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); const NullableDecimalFieldUpdateOperationsInput_schema_1 = require("./NullableDecimalFieldUpdateOperationsInput.schema"); @@ -55,13 +53,14 @@ const ServiceLineTransactionUpdateManyWithoutPaymentNestedInput_schema_1 = requi const ServiceLineUpdateManyWithoutPaymentNestedInput_schema_1 = require("./ServiceLineUpdateManyWithoutPaymentNestedInput.schema"); const CommissionBatchItemUpdateManyWithoutPaymentNestedInput_schema_1 = require("./CommissionBatchItemUpdateManyWithoutPaymentNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), totalBilled: z.union([z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -70,7 +69,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -79,7 +78,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -88,7 +87,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -97,7 +96,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -106,7 +105,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -115,7 +114,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUpdateInput.schema.ts b/packages/db/shared/schemas/objects/PaymentUpdateInput.schema.ts index 8019e3d7..d1460f49 100644 --- a/packages/db/shared/schemas/objects/PaymentUpdateInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentUpdateInput.schema.ts @@ -1,29 +1,30 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; -import { ClaimUpdateOneWithoutPaymentNestedInputObjectSchema as ClaimUpdateOneWithoutPaymentNestedInputObjectSchema } from './ClaimUpdateOneWithoutPaymentNestedInput.schema'; -import { PatientUpdateOneRequiredWithoutPaymentNestedInputObjectSchema as PatientUpdateOneRequiredWithoutPaymentNestedInputObjectSchema } from './PatientUpdateOneRequiredWithoutPaymentNestedInput.schema'; -import { UserUpdateOneWithoutUpdatedPaymentsNestedInputObjectSchema as UserUpdateOneWithoutUpdatedPaymentsNestedInputObjectSchema } from './UserUpdateOneWithoutUpdatedPaymentsNestedInput.schema'; -import { NpiProviderUpdateOneWithoutPaymentsNestedInputObjectSchema as NpiProviderUpdateOneWithoutPaymentsNestedInputObjectSchema } from './NpiProviderUpdateOneWithoutPaymentsNestedInput.schema'; -import { ServiceLineTransactionUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineTransactionUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineTransactionUpdateManyWithoutPaymentNestedInput.schema'; -import { ServiceLineUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineUpdateManyWithoutPaymentNestedInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { ClaimUpdateOneWithoutPaymentNestedInputObjectSchema as ClaimUpdateOneWithoutPaymentNestedInputObjectSchema } from './ClaimUpdateOneWithoutPaymentNestedInput.schema'; +import { PatientUpdateOneRequiredWithoutPaymentNestedInputObjectSchema as PatientUpdateOneRequiredWithoutPaymentNestedInputObjectSchema } from './PatientUpdateOneRequiredWithoutPaymentNestedInput.schema'; +import { UserUpdateOneWithoutUpdatedPaymentsNestedInputObjectSchema as UserUpdateOneWithoutUpdatedPaymentsNestedInputObjectSchema } from './UserUpdateOneWithoutUpdatedPaymentsNestedInput.schema'; +import { NpiProviderUpdateOneWithoutPaymentsNestedInputObjectSchema as NpiProviderUpdateOneWithoutPaymentsNestedInputObjectSchema } from './NpiProviderUpdateOneWithoutPaymentsNestedInput.schema'; +import { ServiceLineTransactionUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineTransactionUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineTransactionUpdateManyWithoutPaymentNestedInput.schema'; +import { ServiceLineUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineUpdateManyWithoutPaymentNestedInput.schema'; import { CommissionBatchItemUpdateManyWithoutPaymentNestedInputObjectSchema as CommissionBatchItemUpdateManyWithoutPaymentNestedInputObjectSchema } from './CommissionBatchItemUpdateManyWithoutPaymentNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), totalBilled: z.union([z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -32,7 +33,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -41,7 +42,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -50,7 +51,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -59,7 +60,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -68,7 +69,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -77,7 +78,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUpdateManyMutationInput.schema.js b/packages/db/shared/schemas/objects/PaymentUpdateManyMutationInput.schema.js index e2eb7261..7d10c22c 100644 --- a/packages/db/shared/schemas/objects/PaymentUpdateManyMutationInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentUpdateManyMutationInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentUpdateManyMutationInputObjectZodSchema = exports.PaymentUpdateManyMutationInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); const NullableDecimalFieldUpdateOperationsInput_schema_1 = require("./NullableDecimalFieldUpdateOperationsInput.schema"); @@ -48,13 +46,14 @@ const EnumPaymentStatusFieldUpdateOperationsInput_schema_1 = require("./EnumPaym const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), totalBilled: z.union([z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -63,7 +62,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -72,7 +71,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -81,7 +80,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -90,7 +89,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -99,7 +98,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -108,7 +107,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUpdateManyMutationInput.schema.ts b/packages/db/shared/schemas/objects/PaymentUpdateManyMutationInput.schema.ts index 32c0bafe..614b1ed1 100644 --- a/packages/db/shared/schemas/objects/PaymentUpdateManyMutationInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentUpdateManyMutationInput.schema.ts @@ -1,22 +1,23 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), totalBilled: z.union([z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -25,7 +26,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -34,7 +35,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -43,7 +44,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -52,7 +53,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -61,7 +62,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -70,7 +71,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUpdateWithoutClaimInput.schema.js b/packages/db/shared/schemas/objects/PaymentUpdateWithoutClaimInput.schema.js index 3ece897c..dfd670f1 100644 --- a/packages/db/shared/schemas/objects/PaymentUpdateWithoutClaimInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentUpdateWithoutClaimInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentUpdateWithoutClaimInputObjectZodSchema = exports.PaymentUpdateWithoutClaimInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); const NullableDecimalFieldUpdateOperationsInput_schema_1 = require("./NullableDecimalFieldUpdateOperationsInput.schema"); @@ -54,13 +52,14 @@ const ServiceLineTransactionUpdateManyWithoutPaymentNestedInput_schema_1 = requi const ServiceLineUpdateManyWithoutPaymentNestedInput_schema_1 = require("./ServiceLineUpdateManyWithoutPaymentNestedInput.schema"); const CommissionBatchItemUpdateManyWithoutPaymentNestedInput_schema_1 = require("./CommissionBatchItemUpdateManyWithoutPaymentNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), totalBilled: z.union([z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -69,7 +68,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -78,7 +77,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -87,7 +86,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -96,7 +95,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -105,7 +104,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -114,7 +113,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUpdateWithoutClaimInput.schema.ts b/packages/db/shared/schemas/objects/PaymentUpdateWithoutClaimInput.schema.ts index b06ade74..887be5fe 100644 --- a/packages/db/shared/schemas/objects/PaymentUpdateWithoutClaimInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentUpdateWithoutClaimInput.schema.ts @@ -1,28 +1,29 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; -import { PatientUpdateOneRequiredWithoutPaymentNestedInputObjectSchema as PatientUpdateOneRequiredWithoutPaymentNestedInputObjectSchema } from './PatientUpdateOneRequiredWithoutPaymentNestedInput.schema'; -import { UserUpdateOneWithoutUpdatedPaymentsNestedInputObjectSchema as UserUpdateOneWithoutUpdatedPaymentsNestedInputObjectSchema } from './UserUpdateOneWithoutUpdatedPaymentsNestedInput.schema'; -import { NpiProviderUpdateOneWithoutPaymentsNestedInputObjectSchema as NpiProviderUpdateOneWithoutPaymentsNestedInputObjectSchema } from './NpiProviderUpdateOneWithoutPaymentsNestedInput.schema'; -import { ServiceLineTransactionUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineTransactionUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineTransactionUpdateManyWithoutPaymentNestedInput.schema'; -import { ServiceLineUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineUpdateManyWithoutPaymentNestedInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { PatientUpdateOneRequiredWithoutPaymentNestedInputObjectSchema as PatientUpdateOneRequiredWithoutPaymentNestedInputObjectSchema } from './PatientUpdateOneRequiredWithoutPaymentNestedInput.schema'; +import { UserUpdateOneWithoutUpdatedPaymentsNestedInputObjectSchema as UserUpdateOneWithoutUpdatedPaymentsNestedInputObjectSchema } from './UserUpdateOneWithoutUpdatedPaymentsNestedInput.schema'; +import { NpiProviderUpdateOneWithoutPaymentsNestedInputObjectSchema as NpiProviderUpdateOneWithoutPaymentsNestedInputObjectSchema } from './NpiProviderUpdateOneWithoutPaymentsNestedInput.schema'; +import { ServiceLineTransactionUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineTransactionUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineTransactionUpdateManyWithoutPaymentNestedInput.schema'; +import { ServiceLineUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineUpdateManyWithoutPaymentNestedInput.schema'; import { CommissionBatchItemUpdateManyWithoutPaymentNestedInputObjectSchema as CommissionBatchItemUpdateManyWithoutPaymentNestedInputObjectSchema } from './CommissionBatchItemUpdateManyWithoutPaymentNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), totalBilled: z.union([z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -31,7 +32,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -40,7 +41,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -49,7 +50,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -58,7 +59,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -67,7 +68,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -76,7 +77,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUpdateWithoutCommissionBatchItemsInput.schema.js b/packages/db/shared/schemas/objects/PaymentUpdateWithoutCommissionBatchItemsInput.schema.js index f9370540..056d0048 100644 --- a/packages/db/shared/schemas/objects/PaymentUpdateWithoutCommissionBatchItemsInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentUpdateWithoutCommissionBatchItemsInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentUpdateWithoutCommissionBatchItemsInputObjectZodSchema = exports.PaymentUpdateWithoutCommissionBatchItemsInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); const NullableDecimalFieldUpdateOperationsInput_schema_1 = require("./NullableDecimalFieldUpdateOperationsInput.schema"); @@ -54,13 +52,14 @@ const NpiProviderUpdateOneWithoutPaymentsNestedInput_schema_1 = require("./NpiPr const ServiceLineTransactionUpdateManyWithoutPaymentNestedInput_schema_1 = require("./ServiceLineTransactionUpdateManyWithoutPaymentNestedInput.schema"); const ServiceLineUpdateManyWithoutPaymentNestedInput_schema_1 = require("./ServiceLineUpdateManyWithoutPaymentNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), totalBilled: z.union([z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -69,7 +68,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -78,7 +77,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -87,7 +86,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -96,7 +95,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -105,7 +104,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -114,7 +113,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUpdateWithoutCommissionBatchItemsInput.schema.ts b/packages/db/shared/schemas/objects/PaymentUpdateWithoutCommissionBatchItemsInput.schema.ts index b7dce890..db083fd2 100644 --- a/packages/db/shared/schemas/objects/PaymentUpdateWithoutCommissionBatchItemsInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentUpdateWithoutCommissionBatchItemsInput.schema.ts @@ -1,28 +1,29 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; -import { ClaimUpdateOneWithoutPaymentNestedInputObjectSchema as ClaimUpdateOneWithoutPaymentNestedInputObjectSchema } from './ClaimUpdateOneWithoutPaymentNestedInput.schema'; -import { PatientUpdateOneRequiredWithoutPaymentNestedInputObjectSchema as PatientUpdateOneRequiredWithoutPaymentNestedInputObjectSchema } from './PatientUpdateOneRequiredWithoutPaymentNestedInput.schema'; -import { UserUpdateOneWithoutUpdatedPaymentsNestedInputObjectSchema as UserUpdateOneWithoutUpdatedPaymentsNestedInputObjectSchema } from './UserUpdateOneWithoutUpdatedPaymentsNestedInput.schema'; -import { NpiProviderUpdateOneWithoutPaymentsNestedInputObjectSchema as NpiProviderUpdateOneWithoutPaymentsNestedInputObjectSchema } from './NpiProviderUpdateOneWithoutPaymentsNestedInput.schema'; -import { ServiceLineTransactionUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineTransactionUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineTransactionUpdateManyWithoutPaymentNestedInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { ClaimUpdateOneWithoutPaymentNestedInputObjectSchema as ClaimUpdateOneWithoutPaymentNestedInputObjectSchema } from './ClaimUpdateOneWithoutPaymentNestedInput.schema'; +import { PatientUpdateOneRequiredWithoutPaymentNestedInputObjectSchema as PatientUpdateOneRequiredWithoutPaymentNestedInputObjectSchema } from './PatientUpdateOneRequiredWithoutPaymentNestedInput.schema'; +import { UserUpdateOneWithoutUpdatedPaymentsNestedInputObjectSchema as UserUpdateOneWithoutUpdatedPaymentsNestedInputObjectSchema } from './UserUpdateOneWithoutUpdatedPaymentsNestedInput.schema'; +import { NpiProviderUpdateOneWithoutPaymentsNestedInputObjectSchema as NpiProviderUpdateOneWithoutPaymentsNestedInputObjectSchema } from './NpiProviderUpdateOneWithoutPaymentsNestedInput.schema'; +import { ServiceLineTransactionUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineTransactionUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineTransactionUpdateManyWithoutPaymentNestedInput.schema'; import { ServiceLineUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineUpdateManyWithoutPaymentNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), totalBilled: z.union([z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -31,7 +32,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -40,7 +41,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -49,7 +50,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -58,7 +59,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -67,7 +68,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -76,7 +77,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUpdateWithoutNpiProviderInput.schema.js b/packages/db/shared/schemas/objects/PaymentUpdateWithoutNpiProviderInput.schema.js index e434bb3a..b6bb87b8 100644 --- a/packages/db/shared/schemas/objects/PaymentUpdateWithoutNpiProviderInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentUpdateWithoutNpiProviderInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentUpdateWithoutNpiProviderInputObjectZodSchema = exports.PaymentUpdateWithoutNpiProviderInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); const NullableDecimalFieldUpdateOperationsInput_schema_1 = require("./NullableDecimalFieldUpdateOperationsInput.schema"); @@ -54,13 +52,14 @@ const ServiceLineTransactionUpdateManyWithoutPaymentNestedInput_schema_1 = requi const ServiceLineUpdateManyWithoutPaymentNestedInput_schema_1 = require("./ServiceLineUpdateManyWithoutPaymentNestedInput.schema"); const CommissionBatchItemUpdateManyWithoutPaymentNestedInput_schema_1 = require("./CommissionBatchItemUpdateManyWithoutPaymentNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), totalBilled: z.union([z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -69,7 +68,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -78,7 +77,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -87,7 +86,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -96,7 +95,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -105,7 +104,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -114,7 +113,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUpdateWithoutNpiProviderInput.schema.ts b/packages/db/shared/schemas/objects/PaymentUpdateWithoutNpiProviderInput.schema.ts index c5e60136..519bbc1e 100644 --- a/packages/db/shared/schemas/objects/PaymentUpdateWithoutNpiProviderInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentUpdateWithoutNpiProviderInput.schema.ts @@ -1,28 +1,29 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; -import { ClaimUpdateOneWithoutPaymentNestedInputObjectSchema as ClaimUpdateOneWithoutPaymentNestedInputObjectSchema } from './ClaimUpdateOneWithoutPaymentNestedInput.schema'; -import { PatientUpdateOneRequiredWithoutPaymentNestedInputObjectSchema as PatientUpdateOneRequiredWithoutPaymentNestedInputObjectSchema } from './PatientUpdateOneRequiredWithoutPaymentNestedInput.schema'; -import { UserUpdateOneWithoutUpdatedPaymentsNestedInputObjectSchema as UserUpdateOneWithoutUpdatedPaymentsNestedInputObjectSchema } from './UserUpdateOneWithoutUpdatedPaymentsNestedInput.schema'; -import { ServiceLineTransactionUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineTransactionUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineTransactionUpdateManyWithoutPaymentNestedInput.schema'; -import { ServiceLineUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineUpdateManyWithoutPaymentNestedInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { ClaimUpdateOneWithoutPaymentNestedInputObjectSchema as ClaimUpdateOneWithoutPaymentNestedInputObjectSchema } from './ClaimUpdateOneWithoutPaymentNestedInput.schema'; +import { PatientUpdateOneRequiredWithoutPaymentNestedInputObjectSchema as PatientUpdateOneRequiredWithoutPaymentNestedInputObjectSchema } from './PatientUpdateOneRequiredWithoutPaymentNestedInput.schema'; +import { UserUpdateOneWithoutUpdatedPaymentsNestedInputObjectSchema as UserUpdateOneWithoutUpdatedPaymentsNestedInputObjectSchema } from './UserUpdateOneWithoutUpdatedPaymentsNestedInput.schema'; +import { ServiceLineTransactionUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineTransactionUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineTransactionUpdateManyWithoutPaymentNestedInput.schema'; +import { ServiceLineUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineUpdateManyWithoutPaymentNestedInput.schema'; import { CommissionBatchItemUpdateManyWithoutPaymentNestedInputObjectSchema as CommissionBatchItemUpdateManyWithoutPaymentNestedInputObjectSchema } from './CommissionBatchItemUpdateManyWithoutPaymentNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), totalBilled: z.union([z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -31,7 +32,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -40,7 +41,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -49,7 +50,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -58,7 +59,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -67,7 +68,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -76,7 +77,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUpdateWithoutPatientInput.schema.js b/packages/db/shared/schemas/objects/PaymentUpdateWithoutPatientInput.schema.js index 0ed184fe..56fac558 100644 --- a/packages/db/shared/schemas/objects/PaymentUpdateWithoutPatientInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentUpdateWithoutPatientInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentUpdateWithoutPatientInputObjectZodSchema = exports.PaymentUpdateWithoutPatientInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); const NullableDecimalFieldUpdateOperationsInput_schema_1 = require("./NullableDecimalFieldUpdateOperationsInput.schema"); @@ -54,13 +52,14 @@ const ServiceLineTransactionUpdateManyWithoutPaymentNestedInput_schema_1 = requi const ServiceLineUpdateManyWithoutPaymentNestedInput_schema_1 = require("./ServiceLineUpdateManyWithoutPaymentNestedInput.schema"); const CommissionBatchItemUpdateManyWithoutPaymentNestedInput_schema_1 = require("./CommissionBatchItemUpdateManyWithoutPaymentNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), totalBilled: z.union([z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -69,7 +68,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -78,7 +77,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -87,7 +86,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -96,7 +95,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -105,7 +104,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -114,7 +113,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUpdateWithoutPatientInput.schema.ts b/packages/db/shared/schemas/objects/PaymentUpdateWithoutPatientInput.schema.ts index e68645f5..c38fc997 100644 --- a/packages/db/shared/schemas/objects/PaymentUpdateWithoutPatientInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentUpdateWithoutPatientInput.schema.ts @@ -1,28 +1,29 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; -import { ClaimUpdateOneWithoutPaymentNestedInputObjectSchema as ClaimUpdateOneWithoutPaymentNestedInputObjectSchema } from './ClaimUpdateOneWithoutPaymentNestedInput.schema'; -import { UserUpdateOneWithoutUpdatedPaymentsNestedInputObjectSchema as UserUpdateOneWithoutUpdatedPaymentsNestedInputObjectSchema } from './UserUpdateOneWithoutUpdatedPaymentsNestedInput.schema'; -import { NpiProviderUpdateOneWithoutPaymentsNestedInputObjectSchema as NpiProviderUpdateOneWithoutPaymentsNestedInputObjectSchema } from './NpiProviderUpdateOneWithoutPaymentsNestedInput.schema'; -import { ServiceLineTransactionUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineTransactionUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineTransactionUpdateManyWithoutPaymentNestedInput.schema'; -import { ServiceLineUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineUpdateManyWithoutPaymentNestedInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { ClaimUpdateOneWithoutPaymentNestedInputObjectSchema as ClaimUpdateOneWithoutPaymentNestedInputObjectSchema } from './ClaimUpdateOneWithoutPaymentNestedInput.schema'; +import { UserUpdateOneWithoutUpdatedPaymentsNestedInputObjectSchema as UserUpdateOneWithoutUpdatedPaymentsNestedInputObjectSchema } from './UserUpdateOneWithoutUpdatedPaymentsNestedInput.schema'; +import { NpiProviderUpdateOneWithoutPaymentsNestedInputObjectSchema as NpiProviderUpdateOneWithoutPaymentsNestedInputObjectSchema } from './NpiProviderUpdateOneWithoutPaymentsNestedInput.schema'; +import { ServiceLineTransactionUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineTransactionUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineTransactionUpdateManyWithoutPaymentNestedInput.schema'; +import { ServiceLineUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineUpdateManyWithoutPaymentNestedInput.schema'; import { CommissionBatchItemUpdateManyWithoutPaymentNestedInputObjectSchema as CommissionBatchItemUpdateManyWithoutPaymentNestedInputObjectSchema } from './CommissionBatchItemUpdateManyWithoutPaymentNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), totalBilled: z.union([z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -31,7 +32,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -40,7 +41,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -49,7 +50,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -58,7 +59,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -67,7 +68,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -76,7 +77,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUpdateWithoutServiceLineTransactionsInput.schema.js b/packages/db/shared/schemas/objects/PaymentUpdateWithoutServiceLineTransactionsInput.schema.js index 699f95da..4fa07de1 100644 --- a/packages/db/shared/schemas/objects/PaymentUpdateWithoutServiceLineTransactionsInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentUpdateWithoutServiceLineTransactionsInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentUpdateWithoutServiceLineTransactionsInputObjectZodSchema = exports.PaymentUpdateWithoutServiceLineTransactionsInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); const NullableDecimalFieldUpdateOperationsInput_schema_1 = require("./NullableDecimalFieldUpdateOperationsInput.schema"); @@ -54,13 +52,14 @@ const NpiProviderUpdateOneWithoutPaymentsNestedInput_schema_1 = require("./NpiPr const ServiceLineUpdateManyWithoutPaymentNestedInput_schema_1 = require("./ServiceLineUpdateManyWithoutPaymentNestedInput.schema"); const CommissionBatchItemUpdateManyWithoutPaymentNestedInput_schema_1 = require("./CommissionBatchItemUpdateManyWithoutPaymentNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), totalBilled: z.union([z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -69,7 +68,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -78,7 +77,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -87,7 +86,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -96,7 +95,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -105,7 +104,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -114,7 +113,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUpdateWithoutServiceLineTransactionsInput.schema.ts b/packages/db/shared/schemas/objects/PaymentUpdateWithoutServiceLineTransactionsInput.schema.ts index 0cf0e72d..35c8b10a 100644 --- a/packages/db/shared/schemas/objects/PaymentUpdateWithoutServiceLineTransactionsInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentUpdateWithoutServiceLineTransactionsInput.schema.ts @@ -1,28 +1,29 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; -import { ClaimUpdateOneWithoutPaymentNestedInputObjectSchema as ClaimUpdateOneWithoutPaymentNestedInputObjectSchema } from './ClaimUpdateOneWithoutPaymentNestedInput.schema'; -import { PatientUpdateOneRequiredWithoutPaymentNestedInputObjectSchema as PatientUpdateOneRequiredWithoutPaymentNestedInputObjectSchema } from './PatientUpdateOneRequiredWithoutPaymentNestedInput.schema'; -import { UserUpdateOneWithoutUpdatedPaymentsNestedInputObjectSchema as UserUpdateOneWithoutUpdatedPaymentsNestedInputObjectSchema } from './UserUpdateOneWithoutUpdatedPaymentsNestedInput.schema'; -import { NpiProviderUpdateOneWithoutPaymentsNestedInputObjectSchema as NpiProviderUpdateOneWithoutPaymentsNestedInputObjectSchema } from './NpiProviderUpdateOneWithoutPaymentsNestedInput.schema'; -import { ServiceLineUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineUpdateManyWithoutPaymentNestedInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { ClaimUpdateOneWithoutPaymentNestedInputObjectSchema as ClaimUpdateOneWithoutPaymentNestedInputObjectSchema } from './ClaimUpdateOneWithoutPaymentNestedInput.schema'; +import { PatientUpdateOneRequiredWithoutPaymentNestedInputObjectSchema as PatientUpdateOneRequiredWithoutPaymentNestedInputObjectSchema } from './PatientUpdateOneRequiredWithoutPaymentNestedInput.schema'; +import { UserUpdateOneWithoutUpdatedPaymentsNestedInputObjectSchema as UserUpdateOneWithoutUpdatedPaymentsNestedInputObjectSchema } from './UserUpdateOneWithoutUpdatedPaymentsNestedInput.schema'; +import { NpiProviderUpdateOneWithoutPaymentsNestedInputObjectSchema as NpiProviderUpdateOneWithoutPaymentsNestedInputObjectSchema } from './NpiProviderUpdateOneWithoutPaymentsNestedInput.schema'; +import { ServiceLineUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineUpdateManyWithoutPaymentNestedInput.schema'; import { CommissionBatchItemUpdateManyWithoutPaymentNestedInputObjectSchema as CommissionBatchItemUpdateManyWithoutPaymentNestedInputObjectSchema } from './CommissionBatchItemUpdateManyWithoutPaymentNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), totalBilled: z.union([z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -31,7 +32,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -40,7 +41,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -49,7 +50,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -58,7 +59,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -67,7 +68,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -76,7 +77,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUpdateWithoutServiceLinesInput.schema.js b/packages/db/shared/schemas/objects/PaymentUpdateWithoutServiceLinesInput.schema.js index 0dde0d13..8ef12c5c 100644 --- a/packages/db/shared/schemas/objects/PaymentUpdateWithoutServiceLinesInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentUpdateWithoutServiceLinesInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentUpdateWithoutServiceLinesInputObjectZodSchema = exports.PaymentUpdateWithoutServiceLinesInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); const NullableDecimalFieldUpdateOperationsInput_schema_1 = require("./NullableDecimalFieldUpdateOperationsInput.schema"); @@ -54,13 +52,14 @@ const NpiProviderUpdateOneWithoutPaymentsNestedInput_schema_1 = require("./NpiPr const ServiceLineTransactionUpdateManyWithoutPaymentNestedInput_schema_1 = require("./ServiceLineTransactionUpdateManyWithoutPaymentNestedInput.schema"); const CommissionBatchItemUpdateManyWithoutPaymentNestedInput_schema_1 = require("./CommissionBatchItemUpdateManyWithoutPaymentNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), totalBilled: z.union([z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -69,7 +68,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -78,7 +77,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -87,7 +86,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -96,7 +95,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -105,7 +104,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -114,7 +113,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUpdateWithoutServiceLinesInput.schema.ts b/packages/db/shared/schemas/objects/PaymentUpdateWithoutServiceLinesInput.schema.ts index c035d5a9..83da1fcc 100644 --- a/packages/db/shared/schemas/objects/PaymentUpdateWithoutServiceLinesInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentUpdateWithoutServiceLinesInput.schema.ts @@ -1,28 +1,29 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; -import { ClaimUpdateOneWithoutPaymentNestedInputObjectSchema as ClaimUpdateOneWithoutPaymentNestedInputObjectSchema } from './ClaimUpdateOneWithoutPaymentNestedInput.schema'; -import { PatientUpdateOneRequiredWithoutPaymentNestedInputObjectSchema as PatientUpdateOneRequiredWithoutPaymentNestedInputObjectSchema } from './PatientUpdateOneRequiredWithoutPaymentNestedInput.schema'; -import { UserUpdateOneWithoutUpdatedPaymentsNestedInputObjectSchema as UserUpdateOneWithoutUpdatedPaymentsNestedInputObjectSchema } from './UserUpdateOneWithoutUpdatedPaymentsNestedInput.schema'; -import { NpiProviderUpdateOneWithoutPaymentsNestedInputObjectSchema as NpiProviderUpdateOneWithoutPaymentsNestedInputObjectSchema } from './NpiProviderUpdateOneWithoutPaymentsNestedInput.schema'; -import { ServiceLineTransactionUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineTransactionUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineTransactionUpdateManyWithoutPaymentNestedInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { ClaimUpdateOneWithoutPaymentNestedInputObjectSchema as ClaimUpdateOneWithoutPaymentNestedInputObjectSchema } from './ClaimUpdateOneWithoutPaymentNestedInput.schema'; +import { PatientUpdateOneRequiredWithoutPaymentNestedInputObjectSchema as PatientUpdateOneRequiredWithoutPaymentNestedInputObjectSchema } from './PatientUpdateOneRequiredWithoutPaymentNestedInput.schema'; +import { UserUpdateOneWithoutUpdatedPaymentsNestedInputObjectSchema as UserUpdateOneWithoutUpdatedPaymentsNestedInputObjectSchema } from './UserUpdateOneWithoutUpdatedPaymentsNestedInput.schema'; +import { NpiProviderUpdateOneWithoutPaymentsNestedInputObjectSchema as NpiProviderUpdateOneWithoutPaymentsNestedInputObjectSchema } from './NpiProviderUpdateOneWithoutPaymentsNestedInput.schema'; +import { ServiceLineTransactionUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineTransactionUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineTransactionUpdateManyWithoutPaymentNestedInput.schema'; import { CommissionBatchItemUpdateManyWithoutPaymentNestedInputObjectSchema as CommissionBatchItemUpdateManyWithoutPaymentNestedInputObjectSchema } from './CommissionBatchItemUpdateManyWithoutPaymentNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), totalBilled: z.union([z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -31,7 +32,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -40,7 +41,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -49,7 +50,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -58,7 +59,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -67,7 +68,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -76,7 +77,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUpdateWithoutUpdatedByInput.schema.js b/packages/db/shared/schemas/objects/PaymentUpdateWithoutUpdatedByInput.schema.js index a4221e8f..a42f7e5d 100644 --- a/packages/db/shared/schemas/objects/PaymentUpdateWithoutUpdatedByInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentUpdateWithoutUpdatedByInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentUpdateWithoutUpdatedByInputObjectZodSchema = exports.PaymentUpdateWithoutUpdatedByInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); const NullableDecimalFieldUpdateOperationsInput_schema_1 = require("./NullableDecimalFieldUpdateOperationsInput.schema"); @@ -54,13 +52,14 @@ const ServiceLineTransactionUpdateManyWithoutPaymentNestedInput_schema_1 = requi const ServiceLineUpdateManyWithoutPaymentNestedInput_schema_1 = require("./ServiceLineUpdateManyWithoutPaymentNestedInput.schema"); const CommissionBatchItemUpdateManyWithoutPaymentNestedInput_schema_1 = require("./CommissionBatchItemUpdateManyWithoutPaymentNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), totalBilled: z.union([z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -69,7 +68,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -78,7 +77,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -87,7 +86,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -96,7 +95,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -105,7 +104,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -114,7 +113,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentUpdateWithoutUpdatedByInput.schema.ts b/packages/db/shared/schemas/objects/PaymentUpdateWithoutUpdatedByInput.schema.ts index 78673da9..8f5e705a 100644 --- a/packages/db/shared/schemas/objects/PaymentUpdateWithoutUpdatedByInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentUpdateWithoutUpdatedByInput.schema.ts @@ -1,28 +1,29 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; -import { ClaimUpdateOneWithoutPaymentNestedInputObjectSchema as ClaimUpdateOneWithoutPaymentNestedInputObjectSchema } from './ClaimUpdateOneWithoutPaymentNestedInput.schema'; -import { PatientUpdateOneRequiredWithoutPaymentNestedInputObjectSchema as PatientUpdateOneRequiredWithoutPaymentNestedInputObjectSchema } from './PatientUpdateOneRequiredWithoutPaymentNestedInput.schema'; -import { NpiProviderUpdateOneWithoutPaymentsNestedInputObjectSchema as NpiProviderUpdateOneWithoutPaymentsNestedInputObjectSchema } from './NpiProviderUpdateOneWithoutPaymentsNestedInput.schema'; -import { ServiceLineTransactionUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineTransactionUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineTransactionUpdateManyWithoutPaymentNestedInput.schema'; -import { ServiceLineUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineUpdateManyWithoutPaymentNestedInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { EnumPaymentStatusFieldUpdateOperationsInputObjectSchema as EnumPaymentStatusFieldUpdateOperationsInputObjectSchema } from './EnumPaymentStatusFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { ClaimUpdateOneWithoutPaymentNestedInputObjectSchema as ClaimUpdateOneWithoutPaymentNestedInputObjectSchema } from './ClaimUpdateOneWithoutPaymentNestedInput.schema'; +import { PatientUpdateOneRequiredWithoutPaymentNestedInputObjectSchema as PatientUpdateOneRequiredWithoutPaymentNestedInputObjectSchema } from './PatientUpdateOneRequiredWithoutPaymentNestedInput.schema'; +import { NpiProviderUpdateOneWithoutPaymentsNestedInputObjectSchema as NpiProviderUpdateOneWithoutPaymentsNestedInputObjectSchema } from './NpiProviderUpdateOneWithoutPaymentsNestedInput.schema'; +import { ServiceLineTransactionUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineTransactionUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineTransactionUpdateManyWithoutPaymentNestedInput.schema'; +import { ServiceLineUpdateManyWithoutPaymentNestedInputObjectSchema as ServiceLineUpdateManyWithoutPaymentNestedInputObjectSchema } from './ServiceLineUpdateManyWithoutPaymentNestedInput.schema'; import { CommissionBatchItemUpdateManyWithoutPaymentNestedInputObjectSchema as CommissionBatchItemUpdateManyWithoutPaymentNestedInputObjectSchema } from './CommissionBatchItemUpdateManyWithoutPaymentNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), totalBilled: z.union([z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -31,7 +32,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -40,7 +41,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -49,7 +50,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -58,7 +59,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -67,7 +68,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -76,7 +77,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentWhereInput.schema.js b/packages/db/shared/schemas/objects/PaymentWhereInput.schema.js index 65d773c3..b6a9bdb3 100644 --- a/packages/db/shared/schemas/objects/PaymentWhereInput.schema.js +++ b/packages/db/shared/schemas/objects/PaymentWhereInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentWhereInputObjectZodSchema = exports.PaymentWhereInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFilter_schema_1 = require("./IntFilter.schema"); const IntNullableFilter_schema_1 = require("./IntNullableFilter.schema"); const DecimalFilter_schema_1 = require("./DecimalFilter.schema"); @@ -60,6 +58,7 @@ const ServiceLineTransactionListRelationFilter_schema_1 = require("./ServiceLine const ServiceLineListRelationFilter_schema_1 = require("./ServiceLineListRelationFilter.schema"); const CommissionBatchItemListRelationFilter_schema_1 = require("./CommissionBatchItemListRelationFilter.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const paymentwhereinputSchema = z.object({ AND: z.union([z.lazy(() => exports.PaymentWhereInputObjectSchema), z.lazy(() => exports.PaymentWhereInputObjectSchema).array()]).optional(), OR: z.lazy(() => exports.PaymentWhereInputObjectSchema).array().optional(), @@ -74,7 +73,7 @@ const paymentwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -83,7 +82,7 @@ const paymentwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -92,7 +91,7 @@ const paymentwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -101,7 +100,7 @@ const paymentwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", @@ -110,7 +109,7 @@ const paymentwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -119,7 +118,7 @@ const paymentwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'copayment' must be a Decimal", @@ -128,7 +127,7 @@ const paymentwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/PaymentWhereInput.schema.ts b/packages/db/shared/schemas/objects/PaymentWhereInput.schema.ts index 9784438e..a2ab9a20 100644 --- a/packages/db/shared/schemas/objects/PaymentWhereInput.schema.ts +++ b/packages/db/shared/schemas/objects/PaymentWhereInput.schema.ts @@ -1,27 +1,28 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFilterObjectSchema as IntFilterObjectSchema } from './IntFilter.schema'; -import { IntNullableFilterObjectSchema as IntNullableFilterObjectSchema } from './IntNullableFilter.schema'; -import { DecimalFilterObjectSchema as DecimalFilterObjectSchema } from './DecimalFilter.schema'; -import { DecimalNullableFilterObjectSchema as DecimalNullableFilterObjectSchema } from './DecimalNullableFilter.schema'; -import { EnumPaymentStatusFilterObjectSchema as EnumPaymentStatusFilterObjectSchema } from './EnumPaymentStatusFilter.schema'; -import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; -import { StringNullableFilterObjectSchema as StringNullableFilterObjectSchema } from './StringNullableFilter.schema'; -import { DateTimeFilterObjectSchema as DateTimeFilterObjectSchema } from './DateTimeFilter.schema'; -import { ClaimNullableScalarRelationFilterObjectSchema as ClaimNullableScalarRelationFilterObjectSchema } from './ClaimNullableScalarRelationFilter.schema'; -import { ClaimWhereInputObjectSchema as ClaimWhereInputObjectSchema } from './ClaimWhereInput.schema'; -import { PatientScalarRelationFilterObjectSchema as PatientScalarRelationFilterObjectSchema } from './PatientScalarRelationFilter.schema'; -import { PatientWhereInputObjectSchema as PatientWhereInputObjectSchema } from './PatientWhereInput.schema'; -import { UserNullableScalarRelationFilterObjectSchema as UserNullableScalarRelationFilterObjectSchema } from './UserNullableScalarRelationFilter.schema'; -import { UserWhereInputObjectSchema as UserWhereInputObjectSchema } from './UserWhereInput.schema'; -import { NpiProviderNullableScalarRelationFilterObjectSchema as NpiProviderNullableScalarRelationFilterObjectSchema } from './NpiProviderNullableScalarRelationFilter.schema'; -import { NpiProviderWhereInputObjectSchema as NpiProviderWhereInputObjectSchema } from './NpiProviderWhereInput.schema'; -import { ServiceLineTransactionListRelationFilterObjectSchema as ServiceLineTransactionListRelationFilterObjectSchema } from './ServiceLineTransactionListRelationFilter.schema'; -import { ServiceLineListRelationFilterObjectSchema as ServiceLineListRelationFilterObjectSchema } from './ServiceLineListRelationFilter.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFilterObjectSchema as IntFilterObjectSchema } from './IntFilter.schema'; +import { IntNullableFilterObjectSchema as IntNullableFilterObjectSchema } from './IntNullableFilter.schema'; +import { DecimalFilterObjectSchema as DecimalFilterObjectSchema } from './DecimalFilter.schema'; +import { DecimalNullableFilterObjectSchema as DecimalNullableFilterObjectSchema } from './DecimalNullableFilter.schema'; +import { EnumPaymentStatusFilterObjectSchema as EnumPaymentStatusFilterObjectSchema } from './EnumPaymentStatusFilter.schema'; +import { PaymentStatusSchema } from '../enums/PaymentStatus.schema'; +import { StringNullableFilterObjectSchema as StringNullableFilterObjectSchema } from './StringNullableFilter.schema'; +import { DateTimeFilterObjectSchema as DateTimeFilterObjectSchema } from './DateTimeFilter.schema'; +import { ClaimNullableScalarRelationFilterObjectSchema as ClaimNullableScalarRelationFilterObjectSchema } from './ClaimNullableScalarRelationFilter.schema'; +import { ClaimWhereInputObjectSchema as ClaimWhereInputObjectSchema } from './ClaimWhereInput.schema'; +import { PatientScalarRelationFilterObjectSchema as PatientScalarRelationFilterObjectSchema } from './PatientScalarRelationFilter.schema'; +import { PatientWhereInputObjectSchema as PatientWhereInputObjectSchema } from './PatientWhereInput.schema'; +import { UserNullableScalarRelationFilterObjectSchema as UserNullableScalarRelationFilterObjectSchema } from './UserNullableScalarRelationFilter.schema'; +import { UserWhereInputObjectSchema as UserWhereInputObjectSchema } from './UserWhereInput.schema'; +import { NpiProviderNullableScalarRelationFilterObjectSchema as NpiProviderNullableScalarRelationFilterObjectSchema } from './NpiProviderNullableScalarRelationFilter.schema'; +import { NpiProviderWhereInputObjectSchema as NpiProviderWhereInputObjectSchema } from './NpiProviderWhereInput.schema'; +import { ServiceLineTransactionListRelationFilterObjectSchema as ServiceLineTransactionListRelationFilterObjectSchema } from './ServiceLineTransactionListRelationFilter.schema'; +import { ServiceLineListRelationFilterObjectSchema as ServiceLineListRelationFilterObjectSchema } from './ServiceLineListRelationFilter.schema'; import { CommissionBatchItemListRelationFilterObjectSchema as CommissionBatchItemListRelationFilterObjectSchema } from './CommissionBatchItemListRelationFilter.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const paymentwhereinputSchema = z.object({ AND: z.union([z.lazy(() => PaymentWhereInputObjectSchema), z.lazy(() => PaymentWhereInputObjectSchema).array()]).optional(), OR: z.lazy(() => PaymentWhereInputObjectSchema).array().optional(), @@ -36,7 +37,7 @@ const paymentwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -45,7 +46,7 @@ const paymentwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -54,7 +55,7 @@ const paymentwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -63,7 +64,7 @@ const paymentwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", @@ -72,7 +73,7 @@ const paymentwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'mhPaidAmount' must be a Decimal", @@ -81,7 +82,7 @@ const paymentwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'copayment' must be a Decimal", @@ -90,7 +91,7 @@ const paymentwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustment' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsArgs.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsArgs.schema.js new file mode 100644 index 00000000..2482d323 --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsArgs.schema.js @@ -0,0 +1,45 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsArgsObjectZodSchema = exports.SeleniumSettingsArgsObjectSchema = void 0; +const z = __importStar(require("zod")); +const SeleniumSettingsSelect_schema_1 = require("./SeleniumSettingsSelect.schema"); +const SeleniumSettingsInclude_schema_1 = require("./SeleniumSettingsInclude.schema"); +const makeSchema = () => z.object({ + select: z.lazy(() => SeleniumSettingsSelect_schema_1.SeleniumSettingsSelectObjectSchema).optional(), + include: z.lazy(() => SeleniumSettingsInclude_schema_1.SeleniumSettingsIncludeObjectSchema).optional() +}).strict(); +exports.SeleniumSettingsArgsObjectSchema = makeSchema(); +exports.SeleniumSettingsArgsObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsAvgAggregateInput.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsAvgAggregateInput.schema.js new file mode 100644 index 00000000..f7704942 --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsAvgAggregateInput.schema.js @@ -0,0 +1,43 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsAvgAggregateInputObjectZodSchema = exports.SeleniumSettingsAvgAggregateInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const makeSchema = () => z.object({ + id: z.literal(true).optional(), + userId: z.literal(true).optional() +}).strict(); +exports.SeleniumSettingsAvgAggregateInputObjectSchema = makeSchema(); +exports.SeleniumSettingsAvgAggregateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsAvgOrderByAggregateInput.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsAvgOrderByAggregateInput.schema.js new file mode 100644 index 00000000..b26e9b14 --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsAvgOrderByAggregateInput.schema.js @@ -0,0 +1,44 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsAvgOrderByAggregateInputObjectZodSchema = exports.SeleniumSettingsAvgOrderByAggregateInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const SortOrder_schema_1 = require("../enums/SortOrder.schema"); +const makeSchema = () => z.object({ + id: SortOrder_schema_1.SortOrderSchema.optional(), + userId: SortOrder_schema_1.SortOrderSchema.optional() +}).strict(); +exports.SeleniumSettingsAvgOrderByAggregateInputObjectSchema = makeSchema(); +exports.SeleniumSettingsAvgOrderByAggregateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsCountAggregateInput.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsCountAggregateInput.schema.js new file mode 100644 index 00000000..f21ea515 --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsCountAggregateInput.schema.js @@ -0,0 +1,45 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsCountAggregateInputObjectZodSchema = exports.SeleniumSettingsCountAggregateInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const makeSchema = () => z.object({ + id: z.literal(true).optional(), + userId: z.literal(true).optional(), + paymentGroupId: z.literal(true).optional(), + _all: z.literal(true).optional() +}).strict(); +exports.SeleniumSettingsCountAggregateInputObjectSchema = makeSchema(); +exports.SeleniumSettingsCountAggregateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsCountOrderByAggregateInput.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsCountOrderByAggregateInput.schema.js new file mode 100644 index 00000000..2ea69ada --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsCountOrderByAggregateInput.schema.js @@ -0,0 +1,45 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsCountOrderByAggregateInputObjectZodSchema = exports.SeleniumSettingsCountOrderByAggregateInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const SortOrder_schema_1 = require("../enums/SortOrder.schema"); +const makeSchema = () => z.object({ + id: SortOrder_schema_1.SortOrderSchema.optional(), + userId: SortOrder_schema_1.SortOrderSchema.optional(), + paymentGroupId: SortOrder_schema_1.SortOrderSchema.optional() +}).strict(); +exports.SeleniumSettingsCountOrderByAggregateInputObjectSchema = makeSchema(); +exports.SeleniumSettingsCountOrderByAggregateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsCreateInput.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsCreateInput.schema.js new file mode 100644 index 00000000..a251c2e3 --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsCreateInput.schema.js @@ -0,0 +1,44 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsCreateInputObjectZodSchema = exports.SeleniumSettingsCreateInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const UserCreateNestedOneWithoutSeleniumSettingsInput_schema_1 = require("./UserCreateNestedOneWithoutSeleniumSettingsInput.schema"); +const makeSchema = () => z.object({ + paymentGroupId: z.string().optional(), + user: z.lazy(() => UserCreateNestedOneWithoutSeleniumSettingsInput_schema_1.UserCreateNestedOneWithoutSeleniumSettingsInputObjectSchema) +}).strict(); +exports.SeleniumSettingsCreateInputObjectSchema = makeSchema(); +exports.SeleniumSettingsCreateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsCreateManyInput.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsCreateManyInput.schema.js new file mode 100644 index 00000000..0d6cf162 --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsCreateManyInput.schema.js @@ -0,0 +1,44 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsCreateManyInputObjectZodSchema = exports.SeleniumSettingsCreateManyInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const makeSchema = () => z.object({ + id: z.number().int().optional(), + userId: z.number().int(), + paymentGroupId: z.string().optional() +}).strict(); +exports.SeleniumSettingsCreateManyInputObjectSchema = makeSchema(); +exports.SeleniumSettingsCreateManyInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsCreateNestedOneWithoutUserInput.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsCreateNestedOneWithoutUserInput.schema.js new file mode 100644 index 00000000..495939fc --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsCreateNestedOneWithoutUserInput.schema.js @@ -0,0 +1,48 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsCreateNestedOneWithoutUserInputObjectZodSchema = exports.SeleniumSettingsCreateNestedOneWithoutUserInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const SeleniumSettingsCreateWithoutUserInput_schema_1 = require("./SeleniumSettingsCreateWithoutUserInput.schema"); +const SeleniumSettingsUncheckedCreateWithoutUserInput_schema_1 = require("./SeleniumSettingsUncheckedCreateWithoutUserInput.schema"); +const SeleniumSettingsCreateOrConnectWithoutUserInput_schema_1 = require("./SeleniumSettingsCreateOrConnectWithoutUserInput.schema"); +const SeleniumSettingsWhereUniqueInput_schema_1 = require("./SeleniumSettingsWhereUniqueInput.schema"); +const makeSchema = () => z.object({ + create: z.union([z.lazy(() => SeleniumSettingsCreateWithoutUserInput_schema_1.SeleniumSettingsCreateWithoutUserInputObjectSchema), z.lazy(() => SeleniumSettingsUncheckedCreateWithoutUserInput_schema_1.SeleniumSettingsUncheckedCreateWithoutUserInputObjectSchema)]).optional(), + connectOrCreate: z.lazy(() => SeleniumSettingsCreateOrConnectWithoutUserInput_schema_1.SeleniumSettingsCreateOrConnectWithoutUserInputObjectSchema).optional(), + connect: z.lazy(() => SeleniumSettingsWhereUniqueInput_schema_1.SeleniumSettingsWhereUniqueInputObjectSchema).optional() +}).strict(); +exports.SeleniumSettingsCreateNestedOneWithoutUserInputObjectSchema = makeSchema(); +exports.SeleniumSettingsCreateNestedOneWithoutUserInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsCreateOrConnectWithoutUserInput.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsCreateOrConnectWithoutUserInput.schema.js new file mode 100644 index 00000000..06ecf194 --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsCreateOrConnectWithoutUserInput.schema.js @@ -0,0 +1,46 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsCreateOrConnectWithoutUserInputObjectZodSchema = exports.SeleniumSettingsCreateOrConnectWithoutUserInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const SeleniumSettingsWhereUniqueInput_schema_1 = require("./SeleniumSettingsWhereUniqueInput.schema"); +const SeleniumSettingsCreateWithoutUserInput_schema_1 = require("./SeleniumSettingsCreateWithoutUserInput.schema"); +const SeleniumSettingsUncheckedCreateWithoutUserInput_schema_1 = require("./SeleniumSettingsUncheckedCreateWithoutUserInput.schema"); +const makeSchema = () => z.object({ + where: z.lazy(() => SeleniumSettingsWhereUniqueInput_schema_1.SeleniumSettingsWhereUniqueInputObjectSchema), + create: z.union([z.lazy(() => SeleniumSettingsCreateWithoutUserInput_schema_1.SeleniumSettingsCreateWithoutUserInputObjectSchema), z.lazy(() => SeleniumSettingsUncheckedCreateWithoutUserInput_schema_1.SeleniumSettingsUncheckedCreateWithoutUserInputObjectSchema)]) +}).strict(); +exports.SeleniumSettingsCreateOrConnectWithoutUserInputObjectSchema = makeSchema(); +exports.SeleniumSettingsCreateOrConnectWithoutUserInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsCreateWithoutUserInput.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsCreateWithoutUserInput.schema.js new file mode 100644 index 00000000..63c45eb4 --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsCreateWithoutUserInput.schema.js @@ -0,0 +1,42 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsCreateWithoutUserInputObjectZodSchema = exports.SeleniumSettingsCreateWithoutUserInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const makeSchema = () => z.object({ + paymentGroupId: z.string().optional() +}).strict(); +exports.SeleniumSettingsCreateWithoutUserInputObjectSchema = makeSchema(); +exports.SeleniumSettingsCreateWithoutUserInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsInclude.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsInclude.schema.js new file mode 100644 index 00000000..9005c8ef --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsInclude.schema.js @@ -0,0 +1,43 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsIncludeObjectZodSchema = exports.SeleniumSettingsIncludeObjectSchema = void 0; +const z = __importStar(require("zod")); +const UserArgs_schema_1 = require("./UserArgs.schema"); +const makeSchema = () => z.object({ + user: z.union([z.boolean(), z.lazy(() => UserArgs_schema_1.UserArgsObjectSchema)]).optional() +}).strict(); +exports.SeleniumSettingsIncludeObjectSchema = makeSchema(); +exports.SeleniumSettingsIncludeObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsMaxAggregateInput.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsMaxAggregateInput.schema.js new file mode 100644 index 00000000..b5ea80e0 --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsMaxAggregateInput.schema.js @@ -0,0 +1,44 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsMaxAggregateInputObjectZodSchema = exports.SeleniumSettingsMaxAggregateInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const makeSchema = () => z.object({ + id: z.literal(true).optional(), + userId: z.literal(true).optional(), + paymentGroupId: z.literal(true).optional() +}).strict(); +exports.SeleniumSettingsMaxAggregateInputObjectSchema = makeSchema(); +exports.SeleniumSettingsMaxAggregateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsMaxOrderByAggregateInput.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsMaxOrderByAggregateInput.schema.js new file mode 100644 index 00000000..892606c9 --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsMaxOrderByAggregateInput.schema.js @@ -0,0 +1,45 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsMaxOrderByAggregateInputObjectZodSchema = exports.SeleniumSettingsMaxOrderByAggregateInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const SortOrder_schema_1 = require("../enums/SortOrder.schema"); +const makeSchema = () => z.object({ + id: SortOrder_schema_1.SortOrderSchema.optional(), + userId: SortOrder_schema_1.SortOrderSchema.optional(), + paymentGroupId: SortOrder_schema_1.SortOrderSchema.optional() +}).strict(); +exports.SeleniumSettingsMaxOrderByAggregateInputObjectSchema = makeSchema(); +exports.SeleniumSettingsMaxOrderByAggregateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsMinAggregateInput.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsMinAggregateInput.schema.js new file mode 100644 index 00000000..2cf6fb7b --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsMinAggregateInput.schema.js @@ -0,0 +1,44 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsMinAggregateInputObjectZodSchema = exports.SeleniumSettingsMinAggregateInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const makeSchema = () => z.object({ + id: z.literal(true).optional(), + userId: z.literal(true).optional(), + paymentGroupId: z.literal(true).optional() +}).strict(); +exports.SeleniumSettingsMinAggregateInputObjectSchema = makeSchema(); +exports.SeleniumSettingsMinAggregateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsMinOrderByAggregateInput.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsMinOrderByAggregateInput.schema.js new file mode 100644 index 00000000..b9da4459 --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsMinOrderByAggregateInput.schema.js @@ -0,0 +1,45 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsMinOrderByAggregateInputObjectZodSchema = exports.SeleniumSettingsMinOrderByAggregateInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const SortOrder_schema_1 = require("../enums/SortOrder.schema"); +const makeSchema = () => z.object({ + id: SortOrder_schema_1.SortOrderSchema.optional(), + userId: SortOrder_schema_1.SortOrderSchema.optional(), + paymentGroupId: SortOrder_schema_1.SortOrderSchema.optional() +}).strict(); +exports.SeleniumSettingsMinOrderByAggregateInputObjectSchema = makeSchema(); +exports.SeleniumSettingsMinOrderByAggregateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsNullableScalarRelationFilter.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsNullableScalarRelationFilter.schema.js new file mode 100644 index 00000000..5a5d5b47 --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsNullableScalarRelationFilter.schema.js @@ -0,0 +1,44 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsNullableScalarRelationFilterObjectZodSchema = exports.SeleniumSettingsNullableScalarRelationFilterObjectSchema = void 0; +const z = __importStar(require("zod")); +const SeleniumSettingsWhereInput_schema_1 = require("./SeleniumSettingsWhereInput.schema"); +const makeSchema = () => z.object({ + is: z.lazy(() => SeleniumSettingsWhereInput_schema_1.SeleniumSettingsWhereInputObjectSchema).optional().nullable(), + isNot: z.lazy(() => SeleniumSettingsWhereInput_schema_1.SeleniumSettingsWhereInputObjectSchema).optional().nullable() +}).strict(); +exports.SeleniumSettingsNullableScalarRelationFilterObjectSchema = makeSchema(); +exports.SeleniumSettingsNullableScalarRelationFilterObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsOrderByWithAggregationInput.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsOrderByWithAggregationInput.schema.js new file mode 100644 index 00000000..582a32c6 --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsOrderByWithAggregationInput.schema.js @@ -0,0 +1,55 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsOrderByWithAggregationInputObjectZodSchema = exports.SeleniumSettingsOrderByWithAggregationInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const SortOrder_schema_1 = require("../enums/SortOrder.schema"); +const SeleniumSettingsCountOrderByAggregateInput_schema_1 = require("./SeleniumSettingsCountOrderByAggregateInput.schema"); +const SeleniumSettingsAvgOrderByAggregateInput_schema_1 = require("./SeleniumSettingsAvgOrderByAggregateInput.schema"); +const SeleniumSettingsMaxOrderByAggregateInput_schema_1 = require("./SeleniumSettingsMaxOrderByAggregateInput.schema"); +const SeleniumSettingsMinOrderByAggregateInput_schema_1 = require("./SeleniumSettingsMinOrderByAggregateInput.schema"); +const SeleniumSettingsSumOrderByAggregateInput_schema_1 = require("./SeleniumSettingsSumOrderByAggregateInput.schema"); +const makeSchema = () => z.object({ + id: SortOrder_schema_1.SortOrderSchema.optional(), + userId: SortOrder_schema_1.SortOrderSchema.optional(), + paymentGroupId: SortOrder_schema_1.SortOrderSchema.optional(), + _count: z.lazy(() => SeleniumSettingsCountOrderByAggregateInput_schema_1.SeleniumSettingsCountOrderByAggregateInputObjectSchema).optional(), + _avg: z.lazy(() => SeleniumSettingsAvgOrderByAggregateInput_schema_1.SeleniumSettingsAvgOrderByAggregateInputObjectSchema).optional(), + _max: z.lazy(() => SeleniumSettingsMaxOrderByAggregateInput_schema_1.SeleniumSettingsMaxOrderByAggregateInputObjectSchema).optional(), + _min: z.lazy(() => SeleniumSettingsMinOrderByAggregateInput_schema_1.SeleniumSettingsMinOrderByAggregateInputObjectSchema).optional(), + _sum: z.lazy(() => SeleniumSettingsSumOrderByAggregateInput_schema_1.SeleniumSettingsSumOrderByAggregateInputObjectSchema).optional() +}).strict(); +exports.SeleniumSettingsOrderByWithAggregationInputObjectSchema = makeSchema(); +exports.SeleniumSettingsOrderByWithAggregationInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsOrderByWithRelationInput.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsOrderByWithRelationInput.schema.js new file mode 100644 index 00000000..5c4ff479 --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsOrderByWithRelationInput.schema.js @@ -0,0 +1,47 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsOrderByWithRelationInputObjectZodSchema = exports.SeleniumSettingsOrderByWithRelationInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const SortOrder_schema_1 = require("../enums/SortOrder.schema"); +const UserOrderByWithRelationInput_schema_1 = require("./UserOrderByWithRelationInput.schema"); +const makeSchema = () => z.object({ + id: SortOrder_schema_1.SortOrderSchema.optional(), + userId: SortOrder_schema_1.SortOrderSchema.optional(), + paymentGroupId: SortOrder_schema_1.SortOrderSchema.optional(), + user: z.lazy(() => UserOrderByWithRelationInput_schema_1.UserOrderByWithRelationInputObjectSchema).optional() +}).strict(); +exports.SeleniumSettingsOrderByWithRelationInputObjectSchema = makeSchema(); +exports.SeleniumSettingsOrderByWithRelationInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsScalarWhereWithAggregatesInput.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsScalarWhereWithAggregatesInput.schema.js new file mode 100644 index 00000000..c9fbfd5a --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsScalarWhereWithAggregatesInput.schema.js @@ -0,0 +1,49 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsScalarWhereWithAggregatesInputObjectZodSchema = exports.SeleniumSettingsScalarWhereWithAggregatesInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const IntWithAggregatesFilter_schema_1 = require("./IntWithAggregatesFilter.schema"); +const StringWithAggregatesFilter_schema_1 = require("./StringWithAggregatesFilter.schema"); +const seleniumsettingsscalarwherewithaggregatesinputSchema = z.object({ + AND: z.union([z.lazy(() => exports.SeleniumSettingsScalarWhereWithAggregatesInputObjectSchema), z.lazy(() => exports.SeleniumSettingsScalarWhereWithAggregatesInputObjectSchema).array()]).optional(), + OR: z.lazy(() => exports.SeleniumSettingsScalarWhereWithAggregatesInputObjectSchema).array().optional(), + NOT: z.union([z.lazy(() => exports.SeleniumSettingsScalarWhereWithAggregatesInputObjectSchema), z.lazy(() => exports.SeleniumSettingsScalarWhereWithAggregatesInputObjectSchema).array()]).optional(), + id: z.union([z.lazy(() => IntWithAggregatesFilter_schema_1.IntWithAggregatesFilterObjectSchema), z.number().int()]).optional(), + userId: z.union([z.lazy(() => IntWithAggregatesFilter_schema_1.IntWithAggregatesFilterObjectSchema), z.number().int()]).optional(), + paymentGroupId: z.union([z.lazy(() => StringWithAggregatesFilter_schema_1.StringWithAggregatesFilterObjectSchema), z.string()]).optional() +}).strict(); +exports.SeleniumSettingsScalarWhereWithAggregatesInputObjectSchema = seleniumsettingsscalarwherewithaggregatesinputSchema; +exports.SeleniumSettingsScalarWhereWithAggregatesInputObjectZodSchema = seleniumsettingsscalarwherewithaggregatesinputSchema; diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsSelect.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsSelect.schema.js new file mode 100644 index 00000000..a3a38c52 --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsSelect.schema.js @@ -0,0 +1,46 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsSelectObjectZodSchema = exports.SeleniumSettingsSelectObjectSchema = void 0; +const z = __importStar(require("zod")); +const UserArgs_schema_1 = require("./UserArgs.schema"); +const makeSchema = () => z.object({ + id: z.boolean().optional(), + userId: z.boolean().optional(), + paymentGroupId: z.boolean().optional(), + user: z.union([z.boolean(), z.lazy(() => UserArgs_schema_1.UserArgsObjectSchema)]).optional() +}).strict(); +exports.SeleniumSettingsSelectObjectSchema = makeSchema(); +exports.SeleniumSettingsSelectObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsSumAggregateInput.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsSumAggregateInput.schema.js new file mode 100644 index 00000000..8afe82d1 --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsSumAggregateInput.schema.js @@ -0,0 +1,43 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsSumAggregateInputObjectZodSchema = exports.SeleniumSettingsSumAggregateInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const makeSchema = () => z.object({ + id: z.literal(true).optional(), + userId: z.literal(true).optional() +}).strict(); +exports.SeleniumSettingsSumAggregateInputObjectSchema = makeSchema(); +exports.SeleniumSettingsSumAggregateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsSumOrderByAggregateInput.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsSumOrderByAggregateInput.schema.js new file mode 100644 index 00000000..2596160f --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsSumOrderByAggregateInput.schema.js @@ -0,0 +1,44 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsSumOrderByAggregateInputObjectZodSchema = exports.SeleniumSettingsSumOrderByAggregateInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const SortOrder_schema_1 = require("../enums/SortOrder.schema"); +const makeSchema = () => z.object({ + id: SortOrder_schema_1.SortOrderSchema.optional(), + userId: SortOrder_schema_1.SortOrderSchema.optional() +}).strict(); +exports.SeleniumSettingsSumOrderByAggregateInputObjectSchema = makeSchema(); +exports.SeleniumSettingsSumOrderByAggregateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsUncheckedCreateInput.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsUncheckedCreateInput.schema.js new file mode 100644 index 00000000..357f3de6 --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsUncheckedCreateInput.schema.js @@ -0,0 +1,44 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsUncheckedCreateInputObjectZodSchema = exports.SeleniumSettingsUncheckedCreateInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const makeSchema = () => z.object({ + id: z.number().int().optional(), + userId: z.number().int(), + paymentGroupId: z.string().optional() +}).strict(); +exports.SeleniumSettingsUncheckedCreateInputObjectSchema = makeSchema(); +exports.SeleniumSettingsUncheckedCreateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput.schema.js new file mode 100644 index 00000000..59ea00b4 --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput.schema.js @@ -0,0 +1,48 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsUncheckedCreateNestedOneWithoutUserInputObjectZodSchema = exports.SeleniumSettingsUncheckedCreateNestedOneWithoutUserInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const SeleniumSettingsCreateWithoutUserInput_schema_1 = require("./SeleniumSettingsCreateWithoutUserInput.schema"); +const SeleniumSettingsUncheckedCreateWithoutUserInput_schema_1 = require("./SeleniumSettingsUncheckedCreateWithoutUserInput.schema"); +const SeleniumSettingsCreateOrConnectWithoutUserInput_schema_1 = require("./SeleniumSettingsCreateOrConnectWithoutUserInput.schema"); +const SeleniumSettingsWhereUniqueInput_schema_1 = require("./SeleniumSettingsWhereUniqueInput.schema"); +const makeSchema = () => z.object({ + create: z.union([z.lazy(() => SeleniumSettingsCreateWithoutUserInput_schema_1.SeleniumSettingsCreateWithoutUserInputObjectSchema), z.lazy(() => SeleniumSettingsUncheckedCreateWithoutUserInput_schema_1.SeleniumSettingsUncheckedCreateWithoutUserInputObjectSchema)]).optional(), + connectOrCreate: z.lazy(() => SeleniumSettingsCreateOrConnectWithoutUserInput_schema_1.SeleniumSettingsCreateOrConnectWithoutUserInputObjectSchema).optional(), + connect: z.lazy(() => SeleniumSettingsWhereUniqueInput_schema_1.SeleniumSettingsWhereUniqueInputObjectSchema).optional() +}).strict(); +exports.SeleniumSettingsUncheckedCreateNestedOneWithoutUserInputObjectSchema = makeSchema(); +exports.SeleniumSettingsUncheckedCreateNestedOneWithoutUserInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsUncheckedCreateWithoutUserInput.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsUncheckedCreateWithoutUserInput.schema.js new file mode 100644 index 00000000..75c2f9d6 --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsUncheckedCreateWithoutUserInput.schema.js @@ -0,0 +1,43 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsUncheckedCreateWithoutUserInputObjectZodSchema = exports.SeleniumSettingsUncheckedCreateWithoutUserInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const makeSchema = () => z.object({ + id: z.number().int().optional(), + paymentGroupId: z.string().optional() +}).strict(); +exports.SeleniumSettingsUncheckedCreateWithoutUserInputObjectSchema = makeSchema(); +exports.SeleniumSettingsUncheckedCreateWithoutUserInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsUncheckedUpdateInput.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsUncheckedUpdateInput.schema.js new file mode 100644 index 00000000..9f7fd0a9 --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsUncheckedUpdateInput.schema.js @@ -0,0 +1,46 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsUncheckedUpdateInputObjectZodSchema = exports.SeleniumSettingsUncheckedUpdateInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); +const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); +const makeSchema = () => z.object({ + id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + paymentGroupId: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional() +}).strict(); +exports.SeleniumSettingsUncheckedUpdateInputObjectSchema = makeSchema(); +exports.SeleniumSettingsUncheckedUpdateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsUncheckedUpdateManyInput.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsUncheckedUpdateManyInput.schema.js new file mode 100644 index 00000000..9c649de3 --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsUncheckedUpdateManyInput.schema.js @@ -0,0 +1,46 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsUncheckedUpdateManyInputObjectZodSchema = exports.SeleniumSettingsUncheckedUpdateManyInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); +const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); +const makeSchema = () => z.object({ + id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + paymentGroupId: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional() +}).strict(); +exports.SeleniumSettingsUncheckedUpdateManyInputObjectSchema = makeSchema(); +exports.SeleniumSettingsUncheckedUpdateManyInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput.schema.js new file mode 100644 index 00000000..d2cda6ce --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput.schema.js @@ -0,0 +1,57 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInputObjectZodSchema = exports.SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const SeleniumSettingsCreateWithoutUserInput_schema_1 = require("./SeleniumSettingsCreateWithoutUserInput.schema"); +const SeleniumSettingsUncheckedCreateWithoutUserInput_schema_1 = require("./SeleniumSettingsUncheckedCreateWithoutUserInput.schema"); +const SeleniumSettingsCreateOrConnectWithoutUserInput_schema_1 = require("./SeleniumSettingsCreateOrConnectWithoutUserInput.schema"); +const SeleniumSettingsUpsertWithoutUserInput_schema_1 = require("./SeleniumSettingsUpsertWithoutUserInput.schema"); +const SeleniumSettingsWhereInput_schema_1 = require("./SeleniumSettingsWhereInput.schema"); +const SeleniumSettingsWhereUniqueInput_schema_1 = require("./SeleniumSettingsWhereUniqueInput.schema"); +const SeleniumSettingsUpdateToOneWithWhereWithoutUserInput_schema_1 = require("./SeleniumSettingsUpdateToOneWithWhereWithoutUserInput.schema"); +const SeleniumSettingsUpdateWithoutUserInput_schema_1 = require("./SeleniumSettingsUpdateWithoutUserInput.schema"); +const SeleniumSettingsUncheckedUpdateWithoutUserInput_schema_1 = require("./SeleniumSettingsUncheckedUpdateWithoutUserInput.schema"); +const makeSchema = () => z.object({ + create: z.union([z.lazy(() => SeleniumSettingsCreateWithoutUserInput_schema_1.SeleniumSettingsCreateWithoutUserInputObjectSchema), z.lazy(() => SeleniumSettingsUncheckedCreateWithoutUserInput_schema_1.SeleniumSettingsUncheckedCreateWithoutUserInputObjectSchema)]).optional(), + connectOrCreate: z.lazy(() => SeleniumSettingsCreateOrConnectWithoutUserInput_schema_1.SeleniumSettingsCreateOrConnectWithoutUserInputObjectSchema).optional(), + upsert: z.lazy(() => SeleniumSettingsUpsertWithoutUserInput_schema_1.SeleniumSettingsUpsertWithoutUserInputObjectSchema).optional(), + disconnect: z.union([z.boolean(), z.lazy(() => SeleniumSettingsWhereInput_schema_1.SeleniumSettingsWhereInputObjectSchema)]).optional(), + delete: z.union([z.boolean(), z.lazy(() => SeleniumSettingsWhereInput_schema_1.SeleniumSettingsWhereInputObjectSchema)]).optional(), + connect: z.lazy(() => SeleniumSettingsWhereUniqueInput_schema_1.SeleniumSettingsWhereUniqueInputObjectSchema).optional(), + update: z.union([z.lazy(() => SeleniumSettingsUpdateToOneWithWhereWithoutUserInput_schema_1.SeleniumSettingsUpdateToOneWithWhereWithoutUserInputObjectSchema), z.lazy(() => SeleniumSettingsUpdateWithoutUserInput_schema_1.SeleniumSettingsUpdateWithoutUserInputObjectSchema), z.lazy(() => SeleniumSettingsUncheckedUpdateWithoutUserInput_schema_1.SeleniumSettingsUncheckedUpdateWithoutUserInputObjectSchema)]).optional() +}).strict(); +exports.SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInputObjectSchema = makeSchema(); +exports.SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsUncheckedUpdateWithoutUserInput.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsUncheckedUpdateWithoutUserInput.schema.js new file mode 100644 index 00000000..74a8125d --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsUncheckedUpdateWithoutUserInput.schema.js @@ -0,0 +1,45 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsUncheckedUpdateWithoutUserInputObjectZodSchema = exports.SeleniumSettingsUncheckedUpdateWithoutUserInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); +const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); +const makeSchema = () => z.object({ + id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + paymentGroupId: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional() +}).strict(); +exports.SeleniumSettingsUncheckedUpdateWithoutUserInputObjectSchema = makeSchema(); +exports.SeleniumSettingsUncheckedUpdateWithoutUserInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsUpdateInput.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsUpdateInput.schema.js new file mode 100644 index 00000000..0eb377c8 --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsUpdateInput.schema.js @@ -0,0 +1,45 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsUpdateInputObjectZodSchema = exports.SeleniumSettingsUpdateInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); +const UserUpdateOneRequiredWithoutSeleniumSettingsNestedInput_schema_1 = require("./UserUpdateOneRequiredWithoutSeleniumSettingsNestedInput.schema"); +const makeSchema = () => z.object({ + paymentGroupId: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), + user: z.lazy(() => UserUpdateOneRequiredWithoutSeleniumSettingsNestedInput_schema_1.UserUpdateOneRequiredWithoutSeleniumSettingsNestedInputObjectSchema).optional() +}).strict(); +exports.SeleniumSettingsUpdateInputObjectSchema = makeSchema(); +exports.SeleniumSettingsUpdateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsUpdateManyMutationInput.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsUpdateManyMutationInput.schema.js new file mode 100644 index 00000000..430a8769 --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsUpdateManyMutationInput.schema.js @@ -0,0 +1,43 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsUpdateManyMutationInputObjectZodSchema = exports.SeleniumSettingsUpdateManyMutationInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); +const makeSchema = () => z.object({ + paymentGroupId: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional() +}).strict(); +exports.SeleniumSettingsUpdateManyMutationInputObjectSchema = makeSchema(); +exports.SeleniumSettingsUpdateManyMutationInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsUpdateOneWithoutUserNestedInput.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsUpdateOneWithoutUserNestedInput.schema.js new file mode 100644 index 00000000..dec2fc86 --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsUpdateOneWithoutUserNestedInput.schema.js @@ -0,0 +1,57 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsUpdateOneWithoutUserNestedInputObjectZodSchema = exports.SeleniumSettingsUpdateOneWithoutUserNestedInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const SeleniumSettingsCreateWithoutUserInput_schema_1 = require("./SeleniumSettingsCreateWithoutUserInput.schema"); +const SeleniumSettingsUncheckedCreateWithoutUserInput_schema_1 = require("./SeleniumSettingsUncheckedCreateWithoutUserInput.schema"); +const SeleniumSettingsCreateOrConnectWithoutUserInput_schema_1 = require("./SeleniumSettingsCreateOrConnectWithoutUserInput.schema"); +const SeleniumSettingsUpsertWithoutUserInput_schema_1 = require("./SeleniumSettingsUpsertWithoutUserInput.schema"); +const SeleniumSettingsWhereInput_schema_1 = require("./SeleniumSettingsWhereInput.schema"); +const SeleniumSettingsWhereUniqueInput_schema_1 = require("./SeleniumSettingsWhereUniqueInput.schema"); +const SeleniumSettingsUpdateToOneWithWhereWithoutUserInput_schema_1 = require("./SeleniumSettingsUpdateToOneWithWhereWithoutUserInput.schema"); +const SeleniumSettingsUpdateWithoutUserInput_schema_1 = require("./SeleniumSettingsUpdateWithoutUserInput.schema"); +const SeleniumSettingsUncheckedUpdateWithoutUserInput_schema_1 = require("./SeleniumSettingsUncheckedUpdateWithoutUserInput.schema"); +const makeSchema = () => z.object({ + create: z.union([z.lazy(() => SeleniumSettingsCreateWithoutUserInput_schema_1.SeleniumSettingsCreateWithoutUserInputObjectSchema), z.lazy(() => SeleniumSettingsUncheckedCreateWithoutUserInput_schema_1.SeleniumSettingsUncheckedCreateWithoutUserInputObjectSchema)]).optional(), + connectOrCreate: z.lazy(() => SeleniumSettingsCreateOrConnectWithoutUserInput_schema_1.SeleniumSettingsCreateOrConnectWithoutUserInputObjectSchema).optional(), + upsert: z.lazy(() => SeleniumSettingsUpsertWithoutUserInput_schema_1.SeleniumSettingsUpsertWithoutUserInputObjectSchema).optional(), + disconnect: z.union([z.boolean(), z.lazy(() => SeleniumSettingsWhereInput_schema_1.SeleniumSettingsWhereInputObjectSchema)]).optional(), + delete: z.union([z.boolean(), z.lazy(() => SeleniumSettingsWhereInput_schema_1.SeleniumSettingsWhereInputObjectSchema)]).optional(), + connect: z.lazy(() => SeleniumSettingsWhereUniqueInput_schema_1.SeleniumSettingsWhereUniqueInputObjectSchema).optional(), + update: z.union([z.lazy(() => SeleniumSettingsUpdateToOneWithWhereWithoutUserInput_schema_1.SeleniumSettingsUpdateToOneWithWhereWithoutUserInputObjectSchema), z.lazy(() => SeleniumSettingsUpdateWithoutUserInput_schema_1.SeleniumSettingsUpdateWithoutUserInputObjectSchema), z.lazy(() => SeleniumSettingsUncheckedUpdateWithoutUserInput_schema_1.SeleniumSettingsUncheckedUpdateWithoutUserInputObjectSchema)]).optional() +}).strict(); +exports.SeleniumSettingsUpdateOneWithoutUserNestedInputObjectSchema = makeSchema(); +exports.SeleniumSettingsUpdateOneWithoutUserNestedInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsUpdateToOneWithWhereWithoutUserInput.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsUpdateToOneWithWhereWithoutUserInput.schema.js new file mode 100644 index 00000000..5c4981e3 --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsUpdateToOneWithWhereWithoutUserInput.schema.js @@ -0,0 +1,46 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsUpdateToOneWithWhereWithoutUserInputObjectZodSchema = exports.SeleniumSettingsUpdateToOneWithWhereWithoutUserInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const SeleniumSettingsWhereInput_schema_1 = require("./SeleniumSettingsWhereInput.schema"); +const SeleniumSettingsUpdateWithoutUserInput_schema_1 = require("./SeleniumSettingsUpdateWithoutUserInput.schema"); +const SeleniumSettingsUncheckedUpdateWithoutUserInput_schema_1 = require("./SeleniumSettingsUncheckedUpdateWithoutUserInput.schema"); +const makeSchema = () => z.object({ + where: z.lazy(() => SeleniumSettingsWhereInput_schema_1.SeleniumSettingsWhereInputObjectSchema).optional(), + data: z.union([z.lazy(() => SeleniumSettingsUpdateWithoutUserInput_schema_1.SeleniumSettingsUpdateWithoutUserInputObjectSchema), z.lazy(() => SeleniumSettingsUncheckedUpdateWithoutUserInput_schema_1.SeleniumSettingsUncheckedUpdateWithoutUserInputObjectSchema)]) +}).strict(); +exports.SeleniumSettingsUpdateToOneWithWhereWithoutUserInputObjectSchema = makeSchema(); +exports.SeleniumSettingsUpdateToOneWithWhereWithoutUserInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsUpdateWithoutUserInput.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsUpdateWithoutUserInput.schema.js new file mode 100644 index 00000000..49646a81 --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsUpdateWithoutUserInput.schema.js @@ -0,0 +1,43 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsUpdateWithoutUserInputObjectZodSchema = exports.SeleniumSettingsUpdateWithoutUserInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); +const makeSchema = () => z.object({ + paymentGroupId: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional() +}).strict(); +exports.SeleniumSettingsUpdateWithoutUserInputObjectSchema = makeSchema(); +exports.SeleniumSettingsUpdateWithoutUserInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsUpsertWithoutUserInput.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsUpsertWithoutUserInput.schema.js new file mode 100644 index 00000000..e37d4b51 --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsUpsertWithoutUserInput.schema.js @@ -0,0 +1,49 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsUpsertWithoutUserInputObjectZodSchema = exports.SeleniumSettingsUpsertWithoutUserInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const SeleniumSettingsUpdateWithoutUserInput_schema_1 = require("./SeleniumSettingsUpdateWithoutUserInput.schema"); +const SeleniumSettingsUncheckedUpdateWithoutUserInput_schema_1 = require("./SeleniumSettingsUncheckedUpdateWithoutUserInput.schema"); +const SeleniumSettingsCreateWithoutUserInput_schema_1 = require("./SeleniumSettingsCreateWithoutUserInput.schema"); +const SeleniumSettingsUncheckedCreateWithoutUserInput_schema_1 = require("./SeleniumSettingsUncheckedCreateWithoutUserInput.schema"); +const SeleniumSettingsWhereInput_schema_1 = require("./SeleniumSettingsWhereInput.schema"); +const makeSchema = () => z.object({ + update: z.union([z.lazy(() => SeleniumSettingsUpdateWithoutUserInput_schema_1.SeleniumSettingsUpdateWithoutUserInputObjectSchema), z.lazy(() => SeleniumSettingsUncheckedUpdateWithoutUserInput_schema_1.SeleniumSettingsUncheckedUpdateWithoutUserInputObjectSchema)]), + create: z.union([z.lazy(() => SeleniumSettingsCreateWithoutUserInput_schema_1.SeleniumSettingsCreateWithoutUserInputObjectSchema), z.lazy(() => SeleniumSettingsUncheckedCreateWithoutUserInput_schema_1.SeleniumSettingsUncheckedCreateWithoutUserInputObjectSchema)]), + where: z.lazy(() => SeleniumSettingsWhereInput_schema_1.SeleniumSettingsWhereInputObjectSchema).optional() +}).strict(); +exports.SeleniumSettingsUpsertWithoutUserInputObjectSchema = makeSchema(); +exports.SeleniumSettingsUpsertWithoutUserInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsWhereInput.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsWhereInput.schema.js new file mode 100644 index 00000000..ceda3d7d --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsWhereInput.schema.js @@ -0,0 +1,52 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsWhereInputObjectZodSchema = exports.SeleniumSettingsWhereInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const IntFilter_schema_1 = require("./IntFilter.schema"); +const StringFilter_schema_1 = require("./StringFilter.schema"); +const UserScalarRelationFilter_schema_1 = require("./UserScalarRelationFilter.schema"); +const UserWhereInput_schema_1 = require("./UserWhereInput.schema"); +const seleniumsettingswhereinputSchema = z.object({ + AND: z.union([z.lazy(() => exports.SeleniumSettingsWhereInputObjectSchema), z.lazy(() => exports.SeleniumSettingsWhereInputObjectSchema).array()]).optional(), + OR: z.lazy(() => exports.SeleniumSettingsWhereInputObjectSchema).array().optional(), + NOT: z.union([z.lazy(() => exports.SeleniumSettingsWhereInputObjectSchema), z.lazy(() => exports.SeleniumSettingsWhereInputObjectSchema).array()]).optional(), + id: z.union([z.lazy(() => IntFilter_schema_1.IntFilterObjectSchema), z.number().int()]).optional(), + userId: z.union([z.lazy(() => IntFilter_schema_1.IntFilterObjectSchema), z.number().int()]).optional(), + paymentGroupId: z.union([z.lazy(() => StringFilter_schema_1.StringFilterObjectSchema), z.string()]).optional(), + user: z.union([z.lazy(() => UserScalarRelationFilter_schema_1.UserScalarRelationFilterObjectSchema), z.lazy(() => UserWhereInput_schema_1.UserWhereInputObjectSchema)]).optional() +}).strict(); +exports.SeleniumSettingsWhereInputObjectSchema = seleniumsettingswhereinputSchema; +exports.SeleniumSettingsWhereInputObjectZodSchema = seleniumsettingswhereinputSchema; diff --git a/packages/db/shared/schemas/objects/SeleniumSettingsWhereUniqueInput.schema.js b/packages/db/shared/schemas/objects/SeleniumSettingsWhereUniqueInput.schema.js new file mode 100644 index 00000000..61466cd4 --- /dev/null +++ b/packages/db/shared/schemas/objects/SeleniumSettingsWhereUniqueInput.schema.js @@ -0,0 +1,43 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsWhereUniqueInputObjectZodSchema = exports.SeleniumSettingsWhereUniqueInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const makeSchema = () => z.object({ + id: z.number().int().optional(), + userId: z.number().int().optional() +}).strict(); +exports.SeleniumSettingsWhereUniqueInputObjectSchema = makeSchema(); +exports.SeleniumSettingsWhereUniqueInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/ServiceLineCreateInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineCreateInput.schema.js index e751ca3f..394beb1b 100644 --- a/packages/db/shared/schemas/objects/ServiceLineCreateInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineCreateInput.schema.js @@ -38,13 +38,12 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineCreateInputObjectZodSchema = exports.ServiceLineCreateInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const ServiceLineStatus_schema_1 = require("../enums/ServiceLineStatus.schema"); const ClaimCreateNestedOneWithoutServiceLinesInput_schema_1 = require("./ClaimCreateNestedOneWithoutServiceLinesInput.schema"); const PaymentCreateNestedOneWithoutServiceLinesInput_schema_1 = require("./PaymentCreateNestedOneWithoutServiceLinesInput.schema"); const ServiceLineTransactionCreateNestedManyWithoutServiceLineInput_schema_1 = require("./ServiceLineTransactionCreateNestedManyWithoutServiceLineInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ procedureCode: z.string(), procedureDate: z.coerce.date(), @@ -58,7 +57,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -67,7 +66,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -76,7 +75,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -85,7 +84,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -94,7 +93,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineCreateInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineCreateInput.schema.ts index 1339a9e5..a6373550 100644 --- a/packages/db/shared/schemas/objects/ServiceLineCreateInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineCreateInput.schema.ts @@ -1,12 +1,13 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; -import { ClaimCreateNestedOneWithoutServiceLinesInputObjectSchema as ClaimCreateNestedOneWithoutServiceLinesInputObjectSchema } from './ClaimCreateNestedOneWithoutServiceLinesInput.schema'; -import { PaymentCreateNestedOneWithoutServiceLinesInputObjectSchema as PaymentCreateNestedOneWithoutServiceLinesInputObjectSchema } from './PaymentCreateNestedOneWithoutServiceLinesInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; +import { ClaimCreateNestedOneWithoutServiceLinesInputObjectSchema as ClaimCreateNestedOneWithoutServiceLinesInputObjectSchema } from './ClaimCreateNestedOneWithoutServiceLinesInput.schema'; +import { PaymentCreateNestedOneWithoutServiceLinesInputObjectSchema as PaymentCreateNestedOneWithoutServiceLinesInputObjectSchema } from './PaymentCreateNestedOneWithoutServiceLinesInput.schema'; import { ServiceLineTransactionCreateNestedManyWithoutServiceLineInputObjectSchema as ServiceLineTransactionCreateNestedManyWithoutServiceLineInputObjectSchema } from './ServiceLineTransactionCreateNestedManyWithoutServiceLineInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ procedureCode: z.string(), procedureDate: z.coerce.date(), @@ -20,7 +21,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -29,7 +30,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -38,7 +39,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -47,7 +48,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -56,7 +57,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineCreateManyClaimInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineCreateManyClaimInput.schema.js index 0b1b458f..4c2d6610 100644 --- a/packages/db/shared/schemas/objects/ServiceLineCreateManyClaimInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineCreateManyClaimInput.schema.js @@ -38,10 +38,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineCreateManyClaimInputObjectZodSchema = exports.ServiceLineCreateManyClaimInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const ServiceLineStatus_schema_1 = require("../enums/ServiceLineStatus.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), paymentId: z.number().int().optional().nullable(), @@ -57,7 +56,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -66,7 +65,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -75,7 +74,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -84,7 +83,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -93,7 +92,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineCreateManyClaimInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineCreateManyClaimInput.schema.ts index a042b3a4..9125e216 100644 --- a/packages/db/shared/schemas/objects/ServiceLineCreateManyClaimInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineCreateManyClaimInput.schema.ts @@ -1,9 +1,10 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; +import type { Prisma } from '../../../generated/prisma'; import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), paymentId: z.number().int().optional().nullable(), @@ -19,7 +20,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -28,7 +29,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -37,7 +38,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -46,7 +47,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -55,7 +56,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineCreateManyInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineCreateManyInput.schema.js index 14c7abec..fed0dd6a 100644 --- a/packages/db/shared/schemas/objects/ServiceLineCreateManyInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineCreateManyInput.schema.js @@ -38,10 +38,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineCreateManyInputObjectZodSchema = exports.ServiceLineCreateManyInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const ServiceLineStatus_schema_1 = require("../enums/ServiceLineStatus.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), claimId: z.number().int().optional().nullable(), @@ -58,7 +57,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -67,7 +66,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -76,7 +75,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -85,7 +84,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -94,7 +93,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineCreateManyInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineCreateManyInput.schema.ts index ada6c255..9d2f9e5a 100644 --- a/packages/db/shared/schemas/objects/ServiceLineCreateManyInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineCreateManyInput.schema.ts @@ -1,9 +1,10 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; +import type { Prisma } from '../../../generated/prisma'; import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), claimId: z.number().int().optional().nullable(), @@ -20,7 +21,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -29,7 +30,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -38,7 +39,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -47,7 +48,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -56,7 +57,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineCreateManyPaymentInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineCreateManyPaymentInput.schema.js index 8382f7c3..31b82342 100644 --- a/packages/db/shared/schemas/objects/ServiceLineCreateManyPaymentInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineCreateManyPaymentInput.schema.js @@ -38,10 +38,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineCreateManyPaymentInputObjectZodSchema = exports.ServiceLineCreateManyPaymentInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const ServiceLineStatus_schema_1 = require("../enums/ServiceLineStatus.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), claimId: z.number().int().optional().nullable(), @@ -57,7 +56,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -66,7 +65,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -75,7 +74,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -84,7 +83,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -93,7 +92,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineCreateManyPaymentInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineCreateManyPaymentInput.schema.ts index cc10a494..03839ba5 100644 --- a/packages/db/shared/schemas/objects/ServiceLineCreateManyPaymentInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineCreateManyPaymentInput.schema.ts @@ -1,9 +1,10 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; +import type { Prisma } from '../../../generated/prisma'; import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), claimId: z.number().int().optional().nullable(), @@ -19,7 +20,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -28,7 +29,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -37,7 +38,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -46,7 +47,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -55,7 +56,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineCreateWithoutClaimInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineCreateWithoutClaimInput.schema.js index 663ebfbd..67c89753 100644 --- a/packages/db/shared/schemas/objects/ServiceLineCreateWithoutClaimInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineCreateWithoutClaimInput.schema.js @@ -38,12 +38,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineCreateWithoutClaimInputObjectZodSchema = exports.ServiceLineCreateWithoutClaimInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const ServiceLineStatus_schema_1 = require("../enums/ServiceLineStatus.schema"); const PaymentCreateNestedOneWithoutServiceLinesInput_schema_1 = require("./PaymentCreateNestedOneWithoutServiceLinesInput.schema"); const ServiceLineTransactionCreateNestedManyWithoutServiceLineInput_schema_1 = require("./ServiceLineTransactionCreateNestedManyWithoutServiceLineInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ procedureCode: z.string(), procedureDate: z.coerce.date(), @@ -57,7 +56,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -66,7 +65,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -75,7 +74,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -84,7 +83,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -93,7 +92,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineCreateWithoutClaimInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineCreateWithoutClaimInput.schema.ts index 9a1449c5..059bd4d6 100644 --- a/packages/db/shared/schemas/objects/ServiceLineCreateWithoutClaimInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineCreateWithoutClaimInput.schema.ts @@ -1,11 +1,12 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; -import { PaymentCreateNestedOneWithoutServiceLinesInputObjectSchema as PaymentCreateNestedOneWithoutServiceLinesInputObjectSchema } from './PaymentCreateNestedOneWithoutServiceLinesInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; +import { PaymentCreateNestedOneWithoutServiceLinesInputObjectSchema as PaymentCreateNestedOneWithoutServiceLinesInputObjectSchema } from './PaymentCreateNestedOneWithoutServiceLinesInput.schema'; import { ServiceLineTransactionCreateNestedManyWithoutServiceLineInputObjectSchema as ServiceLineTransactionCreateNestedManyWithoutServiceLineInputObjectSchema } from './ServiceLineTransactionCreateNestedManyWithoutServiceLineInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ procedureCode: z.string(), procedureDate: z.coerce.date(), @@ -19,7 +20,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -28,7 +29,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -37,7 +38,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -46,7 +47,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -55,7 +56,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineCreateWithoutPaymentInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineCreateWithoutPaymentInput.schema.js index 2338dcf1..c1deb970 100644 --- a/packages/db/shared/schemas/objects/ServiceLineCreateWithoutPaymentInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineCreateWithoutPaymentInput.schema.js @@ -38,12 +38,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineCreateWithoutPaymentInputObjectZodSchema = exports.ServiceLineCreateWithoutPaymentInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const ServiceLineStatus_schema_1 = require("../enums/ServiceLineStatus.schema"); const ClaimCreateNestedOneWithoutServiceLinesInput_schema_1 = require("./ClaimCreateNestedOneWithoutServiceLinesInput.schema"); const ServiceLineTransactionCreateNestedManyWithoutServiceLineInput_schema_1 = require("./ServiceLineTransactionCreateNestedManyWithoutServiceLineInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ procedureCode: z.string(), procedureDate: z.coerce.date(), @@ -57,7 +56,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -66,7 +65,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -75,7 +74,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -84,7 +83,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -93,7 +92,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineCreateWithoutPaymentInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineCreateWithoutPaymentInput.schema.ts index 9c2b91a8..0a3443b7 100644 --- a/packages/db/shared/schemas/objects/ServiceLineCreateWithoutPaymentInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineCreateWithoutPaymentInput.schema.ts @@ -1,11 +1,12 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; -import { ClaimCreateNestedOneWithoutServiceLinesInputObjectSchema as ClaimCreateNestedOneWithoutServiceLinesInputObjectSchema } from './ClaimCreateNestedOneWithoutServiceLinesInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; +import { ClaimCreateNestedOneWithoutServiceLinesInputObjectSchema as ClaimCreateNestedOneWithoutServiceLinesInputObjectSchema } from './ClaimCreateNestedOneWithoutServiceLinesInput.schema'; import { ServiceLineTransactionCreateNestedManyWithoutServiceLineInputObjectSchema as ServiceLineTransactionCreateNestedManyWithoutServiceLineInputObjectSchema } from './ServiceLineTransactionCreateNestedManyWithoutServiceLineInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ procedureCode: z.string(), procedureDate: z.coerce.date(), @@ -19,7 +20,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -28,7 +29,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -37,7 +38,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -46,7 +47,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -55,7 +56,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineCreateWithoutServiceLineTransactionsInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineCreateWithoutServiceLineTransactionsInput.schema.js index e0e80da5..783667fe 100644 --- a/packages/db/shared/schemas/objects/ServiceLineCreateWithoutServiceLineTransactionsInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineCreateWithoutServiceLineTransactionsInput.schema.js @@ -38,12 +38,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineCreateWithoutServiceLineTransactionsInputObjectZodSchema = exports.ServiceLineCreateWithoutServiceLineTransactionsInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const ServiceLineStatus_schema_1 = require("../enums/ServiceLineStatus.schema"); const ClaimCreateNestedOneWithoutServiceLinesInput_schema_1 = require("./ClaimCreateNestedOneWithoutServiceLinesInput.schema"); const PaymentCreateNestedOneWithoutServiceLinesInput_schema_1 = require("./PaymentCreateNestedOneWithoutServiceLinesInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ procedureCode: z.string(), procedureDate: z.coerce.date(), @@ -57,7 +56,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -66,7 +65,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -75,7 +74,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -84,7 +83,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -93,7 +92,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineCreateWithoutServiceLineTransactionsInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineCreateWithoutServiceLineTransactionsInput.schema.ts index 4607486d..edeb9721 100644 --- a/packages/db/shared/schemas/objects/ServiceLineCreateWithoutServiceLineTransactionsInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineCreateWithoutServiceLineTransactionsInput.schema.ts @@ -1,11 +1,12 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; -import { ClaimCreateNestedOneWithoutServiceLinesInputObjectSchema as ClaimCreateNestedOneWithoutServiceLinesInputObjectSchema } from './ClaimCreateNestedOneWithoutServiceLinesInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; +import { ClaimCreateNestedOneWithoutServiceLinesInputObjectSchema as ClaimCreateNestedOneWithoutServiceLinesInputObjectSchema } from './ClaimCreateNestedOneWithoutServiceLinesInput.schema'; import { PaymentCreateNestedOneWithoutServiceLinesInputObjectSchema as PaymentCreateNestedOneWithoutServiceLinesInputObjectSchema } from './PaymentCreateNestedOneWithoutServiceLinesInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ procedureCode: z.string(), procedureDate: z.coerce.date(), @@ -19,7 +20,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -28,7 +29,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -37,7 +38,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -46,7 +47,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -55,7 +56,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineScalarWhereInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineScalarWhereInput.schema.js index 7b95b176..9b6be8e5 100644 --- a/packages/db/shared/schemas/objects/ServiceLineScalarWhereInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineScalarWhereInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineScalarWhereInputObjectZodSchema = exports.ServiceLineScalarWhereInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFilter_schema_1 = require("./IntFilter.schema"); const IntNullableFilter_schema_1 = require("./IntNullableFilter.schema"); const StringFilter_schema_1 = require("./StringFilter.schema"); @@ -50,6 +48,7 @@ const DecimalFilter_schema_1 = require("./DecimalFilter.schema"); const EnumServiceLineStatusFilter_schema_1 = require("./EnumServiceLineStatusFilter.schema"); const ServiceLineStatus_schema_1 = require("../enums/ServiceLineStatus.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const servicelinescalarwhereinputSchema = z.object({ AND: z.union([z.lazy(() => exports.ServiceLineScalarWhereInputObjectSchema), z.lazy(() => exports.ServiceLineScalarWhereInputObjectSchema).array()]).optional(), OR: z.lazy(() => exports.ServiceLineScalarWhereInputObjectSchema).array().optional(), @@ -69,7 +68,7 @@ const servicelinescalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -78,7 +77,7 @@ const servicelinescalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -87,7 +86,7 @@ const servicelinescalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -96,7 +95,7 @@ const servicelinescalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -105,7 +104,7 @@ const servicelinescalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineScalarWhereInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineScalarWhereInput.schema.ts index 4afe5a5c..231562e9 100644 --- a/packages/db/shared/schemas/objects/ServiceLineScalarWhereInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineScalarWhereInput.schema.ts @@ -1,17 +1,18 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFilterObjectSchema as IntFilterObjectSchema } from './IntFilter.schema'; -import { IntNullableFilterObjectSchema as IntNullableFilterObjectSchema } from './IntNullableFilter.schema'; -import { StringFilterObjectSchema as StringFilterObjectSchema } from './StringFilter.schema'; -import { DateTimeFilterObjectSchema as DateTimeFilterObjectSchema } from './DateTimeFilter.schema'; -import { StringNullableFilterObjectSchema as StringNullableFilterObjectSchema } from './StringNullableFilter.schema'; -import { DecimalNullableFilterObjectSchema as DecimalNullableFilterObjectSchema } from './DecimalNullableFilter.schema'; -import { DecimalFilterObjectSchema as DecimalFilterObjectSchema } from './DecimalFilter.schema'; -import { EnumServiceLineStatusFilterObjectSchema as EnumServiceLineStatusFilterObjectSchema } from './EnumServiceLineStatusFilter.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFilterObjectSchema as IntFilterObjectSchema } from './IntFilter.schema'; +import { IntNullableFilterObjectSchema as IntNullableFilterObjectSchema } from './IntNullableFilter.schema'; +import { StringFilterObjectSchema as StringFilterObjectSchema } from './StringFilter.schema'; +import { DateTimeFilterObjectSchema as DateTimeFilterObjectSchema } from './DateTimeFilter.schema'; +import { StringNullableFilterObjectSchema as StringNullableFilterObjectSchema } from './StringNullableFilter.schema'; +import { DecimalNullableFilterObjectSchema as DecimalNullableFilterObjectSchema } from './DecimalNullableFilter.schema'; +import { DecimalFilterObjectSchema as DecimalFilterObjectSchema } from './DecimalFilter.schema'; +import { EnumServiceLineStatusFilterObjectSchema as EnumServiceLineStatusFilterObjectSchema } from './EnumServiceLineStatusFilter.schema'; import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const servicelinescalarwhereinputSchema = z.object({ AND: z.union([z.lazy(() => ServiceLineScalarWhereInputObjectSchema), z.lazy(() => ServiceLineScalarWhereInputObjectSchema).array()]).optional(), OR: z.lazy(() => ServiceLineScalarWhereInputObjectSchema).array().optional(), @@ -31,7 +32,7 @@ const servicelinescalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -40,7 +41,7 @@ const servicelinescalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -49,7 +50,7 @@ const servicelinescalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -58,7 +59,7 @@ const servicelinescalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -67,7 +68,7 @@ const servicelinescalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineScalarWhereWithAggregatesInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineScalarWhereWithAggregatesInput.schema.js index 4c1679f5..aff5b842 100644 --- a/packages/db/shared/schemas/objects/ServiceLineScalarWhereWithAggregatesInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineScalarWhereWithAggregatesInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineScalarWhereWithAggregatesInputObjectZodSchema = exports.ServiceLineScalarWhereWithAggregatesInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntWithAggregatesFilter_schema_1 = require("./IntWithAggregatesFilter.schema"); const IntNullableWithAggregatesFilter_schema_1 = require("./IntNullableWithAggregatesFilter.schema"); const StringWithAggregatesFilter_schema_1 = require("./StringWithAggregatesFilter.schema"); @@ -50,6 +48,7 @@ const DecimalWithAggregatesFilter_schema_1 = require("./DecimalWithAggregatesFil const EnumServiceLineStatusWithAggregatesFilter_schema_1 = require("./EnumServiceLineStatusWithAggregatesFilter.schema"); const ServiceLineStatus_schema_1 = require("../enums/ServiceLineStatus.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const servicelinescalarwherewithaggregatesinputSchema = z.object({ AND: z.union([z.lazy(() => exports.ServiceLineScalarWhereWithAggregatesInputObjectSchema), z.lazy(() => exports.ServiceLineScalarWhereWithAggregatesInputObjectSchema).array()]).optional(), OR: z.lazy(() => exports.ServiceLineScalarWhereWithAggregatesInputObjectSchema).array().optional(), @@ -69,7 +68,7 @@ const servicelinescalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -78,7 +77,7 @@ const servicelinescalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -87,7 +86,7 @@ const servicelinescalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -96,7 +95,7 @@ const servicelinescalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -105,7 +104,7 @@ const servicelinescalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineScalarWhereWithAggregatesInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineScalarWhereWithAggregatesInput.schema.ts index 4f0e9eea..78659d0c 100644 --- a/packages/db/shared/schemas/objects/ServiceLineScalarWhereWithAggregatesInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineScalarWhereWithAggregatesInput.schema.ts @@ -1,17 +1,18 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntWithAggregatesFilterObjectSchema as IntWithAggregatesFilterObjectSchema } from './IntWithAggregatesFilter.schema'; -import { IntNullableWithAggregatesFilterObjectSchema as IntNullableWithAggregatesFilterObjectSchema } from './IntNullableWithAggregatesFilter.schema'; -import { StringWithAggregatesFilterObjectSchema as StringWithAggregatesFilterObjectSchema } from './StringWithAggregatesFilter.schema'; -import { DateTimeWithAggregatesFilterObjectSchema as DateTimeWithAggregatesFilterObjectSchema } from './DateTimeWithAggregatesFilter.schema'; -import { StringNullableWithAggregatesFilterObjectSchema as StringNullableWithAggregatesFilterObjectSchema } from './StringNullableWithAggregatesFilter.schema'; -import { DecimalNullableWithAggregatesFilterObjectSchema as DecimalNullableWithAggregatesFilterObjectSchema } from './DecimalNullableWithAggregatesFilter.schema'; -import { DecimalWithAggregatesFilterObjectSchema as DecimalWithAggregatesFilterObjectSchema } from './DecimalWithAggregatesFilter.schema'; -import { EnumServiceLineStatusWithAggregatesFilterObjectSchema as EnumServiceLineStatusWithAggregatesFilterObjectSchema } from './EnumServiceLineStatusWithAggregatesFilter.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntWithAggregatesFilterObjectSchema as IntWithAggregatesFilterObjectSchema } from './IntWithAggregatesFilter.schema'; +import { IntNullableWithAggregatesFilterObjectSchema as IntNullableWithAggregatesFilterObjectSchema } from './IntNullableWithAggregatesFilter.schema'; +import { StringWithAggregatesFilterObjectSchema as StringWithAggregatesFilterObjectSchema } from './StringWithAggregatesFilter.schema'; +import { DateTimeWithAggregatesFilterObjectSchema as DateTimeWithAggregatesFilterObjectSchema } from './DateTimeWithAggregatesFilter.schema'; +import { StringNullableWithAggregatesFilterObjectSchema as StringNullableWithAggregatesFilterObjectSchema } from './StringNullableWithAggregatesFilter.schema'; +import { DecimalNullableWithAggregatesFilterObjectSchema as DecimalNullableWithAggregatesFilterObjectSchema } from './DecimalNullableWithAggregatesFilter.schema'; +import { DecimalWithAggregatesFilterObjectSchema as DecimalWithAggregatesFilterObjectSchema } from './DecimalWithAggregatesFilter.schema'; +import { EnumServiceLineStatusWithAggregatesFilterObjectSchema as EnumServiceLineStatusWithAggregatesFilterObjectSchema } from './EnumServiceLineStatusWithAggregatesFilter.schema'; import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const servicelinescalarwherewithaggregatesinputSchema = z.object({ AND: z.union([z.lazy(() => ServiceLineScalarWhereWithAggregatesInputObjectSchema), z.lazy(() => ServiceLineScalarWhereWithAggregatesInputObjectSchema).array()]).optional(), OR: z.lazy(() => ServiceLineScalarWhereWithAggregatesInputObjectSchema).array().optional(), @@ -31,7 +32,7 @@ const servicelinescalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -40,7 +41,7 @@ const servicelinescalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -49,7 +50,7 @@ const servicelinescalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -58,7 +59,7 @@ const servicelinescalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -67,7 +68,7 @@ const servicelinescalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionCreateInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineTransactionCreateInput.schema.js index b260ce2c..4e222f62 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionCreateInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionCreateInput.schema.js @@ -38,19 +38,18 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineTransactionCreateInputObjectZodSchema = exports.ServiceLineTransactionCreateInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const PaymentMethod_schema_1 = require("../enums/PaymentMethod.schema"); const PaymentCreateNestedOneWithoutServiceLineTransactionsInput_schema_1 = require("./PaymentCreateNestedOneWithoutServiceLineTransactionsInput.schema"); const ServiceLineCreateNestedOneWithoutServiceLineTransactionsInput_schema_1 = require("./ServiceLineCreateNestedOneWithoutServiceLineTransactionsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ transactionId: z.string().optional().nullable(), paidAmount: z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'paidAmount' must be a Decimal", @@ -59,7 +58,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionCreateInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineTransactionCreateInput.schema.ts index 516eb357..f7a85a7d 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionCreateInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionCreateInput.schema.ts @@ -1,18 +1,19 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { PaymentMethodSchema } from '../enums/PaymentMethod.schema'; -import { PaymentCreateNestedOneWithoutServiceLineTransactionsInputObjectSchema as PaymentCreateNestedOneWithoutServiceLineTransactionsInputObjectSchema } from './PaymentCreateNestedOneWithoutServiceLineTransactionsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { PaymentMethodSchema } from '../enums/PaymentMethod.schema'; +import { PaymentCreateNestedOneWithoutServiceLineTransactionsInputObjectSchema as PaymentCreateNestedOneWithoutServiceLineTransactionsInputObjectSchema } from './PaymentCreateNestedOneWithoutServiceLineTransactionsInput.schema'; import { ServiceLineCreateNestedOneWithoutServiceLineTransactionsInputObjectSchema as ServiceLineCreateNestedOneWithoutServiceLineTransactionsInputObjectSchema } from './ServiceLineCreateNestedOneWithoutServiceLineTransactionsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ transactionId: z.string().optional().nullable(), paidAmount: z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'paidAmount' must be a Decimal", @@ -21,7 +22,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionCreateManyInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineTransactionCreateManyInput.schema.js index bcd5bd76..2a040326 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionCreateManyInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionCreateManyInput.schema.js @@ -38,10 +38,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineTransactionCreateManyInputObjectZodSchema = exports.ServiceLineTransactionCreateManyInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const PaymentMethod_schema_1 = require("../enums/PaymentMethod.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), paymentId: z.number().int(), @@ -51,7 +50,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'paidAmount' must be a Decimal", @@ -60,7 +59,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionCreateManyInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineTransactionCreateManyInput.schema.ts index ab4a29da..194f85c9 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionCreateManyInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionCreateManyInput.schema.ts @@ -1,9 +1,10 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; +import type { Prisma } from '../../../generated/prisma'; import { PaymentMethodSchema } from '../enums/PaymentMethod.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), paymentId: z.number().int(), @@ -13,7 +14,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'paidAmount' must be a Decimal", @@ -22,7 +23,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionCreateManyPaymentInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineTransactionCreateManyPaymentInput.schema.js index 794bf284..dd994da3 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionCreateManyPaymentInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionCreateManyPaymentInput.schema.js @@ -38,10 +38,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineTransactionCreateManyPaymentInputObjectZodSchema = exports.ServiceLineTransactionCreateManyPaymentInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const PaymentMethod_schema_1 = require("../enums/PaymentMethod.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), serviceLineId: z.number().int(), @@ -50,7 +49,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'paidAmount' must be a Decimal", @@ -59,7 +58,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionCreateManyPaymentInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineTransactionCreateManyPaymentInput.schema.ts index 39cb9107..52e1f173 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionCreateManyPaymentInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionCreateManyPaymentInput.schema.ts @@ -1,9 +1,10 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; +import type { Prisma } from '../../../generated/prisma'; import { PaymentMethodSchema } from '../enums/PaymentMethod.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), serviceLineId: z.number().int(), @@ -12,7 +13,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'paidAmount' must be a Decimal", @@ -21,7 +22,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionCreateManyServiceLineInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineTransactionCreateManyServiceLineInput.schema.js index 36f3da29..3b459677 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionCreateManyServiceLineInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionCreateManyServiceLineInput.schema.js @@ -38,10 +38,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineTransactionCreateManyServiceLineInputObjectZodSchema = exports.ServiceLineTransactionCreateManyServiceLineInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const PaymentMethod_schema_1 = require("../enums/PaymentMethod.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), paymentId: z.number().int(), @@ -50,7 +49,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'paidAmount' must be a Decimal", @@ -59,7 +58,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionCreateManyServiceLineInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineTransactionCreateManyServiceLineInput.schema.ts index bf5c29d8..e8044f0e 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionCreateManyServiceLineInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionCreateManyServiceLineInput.schema.ts @@ -1,9 +1,10 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; +import type { Prisma } from '../../../generated/prisma'; import { PaymentMethodSchema } from '../enums/PaymentMethod.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), paymentId: z.number().int(), @@ -12,7 +13,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'paidAmount' must be a Decimal", @@ -21,7 +22,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionCreateWithoutPaymentInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineTransactionCreateWithoutPaymentInput.schema.js index 5f930db4..6d00d681 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionCreateWithoutPaymentInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionCreateWithoutPaymentInput.schema.js @@ -38,18 +38,17 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineTransactionCreateWithoutPaymentInputObjectZodSchema = exports.ServiceLineTransactionCreateWithoutPaymentInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const PaymentMethod_schema_1 = require("../enums/PaymentMethod.schema"); const ServiceLineCreateNestedOneWithoutServiceLineTransactionsInput_schema_1 = require("./ServiceLineCreateNestedOneWithoutServiceLineTransactionsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ transactionId: z.string().optional().nullable(), paidAmount: z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'paidAmount' must be a Decimal", @@ -58,7 +57,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionCreateWithoutPaymentInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineTransactionCreateWithoutPaymentInput.schema.ts index f1f4108e..5bea614c 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionCreateWithoutPaymentInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionCreateWithoutPaymentInput.schema.ts @@ -1,17 +1,18 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { PaymentMethodSchema } from '../enums/PaymentMethod.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { PaymentMethodSchema } from '../enums/PaymentMethod.schema'; import { ServiceLineCreateNestedOneWithoutServiceLineTransactionsInputObjectSchema as ServiceLineCreateNestedOneWithoutServiceLineTransactionsInputObjectSchema } from './ServiceLineCreateNestedOneWithoutServiceLineTransactionsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ transactionId: z.string().optional().nullable(), paidAmount: z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'paidAmount' must be a Decimal", @@ -20,7 +21,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionCreateWithoutServiceLineInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineTransactionCreateWithoutServiceLineInput.schema.js index 79e6af6f..0338761d 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionCreateWithoutServiceLineInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionCreateWithoutServiceLineInput.schema.js @@ -38,18 +38,17 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineTransactionCreateWithoutServiceLineInputObjectZodSchema = exports.ServiceLineTransactionCreateWithoutServiceLineInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const PaymentMethod_schema_1 = require("../enums/PaymentMethod.schema"); const PaymentCreateNestedOneWithoutServiceLineTransactionsInput_schema_1 = require("./PaymentCreateNestedOneWithoutServiceLineTransactionsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ transactionId: z.string().optional().nullable(), paidAmount: z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'paidAmount' must be a Decimal", @@ -58,7 +57,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionCreateWithoutServiceLineInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineTransactionCreateWithoutServiceLineInput.schema.ts index 6ee40b7e..e87b9bdf 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionCreateWithoutServiceLineInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionCreateWithoutServiceLineInput.schema.ts @@ -1,17 +1,18 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { PaymentMethodSchema } from '../enums/PaymentMethod.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { PaymentMethodSchema } from '../enums/PaymentMethod.schema'; import { PaymentCreateNestedOneWithoutServiceLineTransactionsInputObjectSchema as PaymentCreateNestedOneWithoutServiceLineTransactionsInputObjectSchema } from './PaymentCreateNestedOneWithoutServiceLineTransactionsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ transactionId: z.string().optional().nullable(), paidAmount: z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'paidAmount' must be a Decimal", @@ -20,7 +21,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionScalarWhereInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineTransactionScalarWhereInput.schema.js index 08c1a841..892fb542 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionScalarWhereInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionScalarWhereInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineTransactionScalarWhereInputObjectZodSchema = exports.ServiceLineTransactionScalarWhereInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFilter_schema_1 = require("./IntFilter.schema"); const StringNullableFilter_schema_1 = require("./StringNullableFilter.schema"); const DecimalFilter_schema_1 = require("./DecimalFilter.schema"); @@ -47,6 +45,7 @@ const EnumPaymentMethodFilter_schema_1 = require("./EnumPaymentMethodFilter.sche const PaymentMethod_schema_1 = require("../enums/PaymentMethod.schema"); const DateTimeFilter_schema_1 = require("./DateTimeFilter.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const servicelinetransactionscalarwhereinputSchema = z.object({ AND: z.union([z.lazy(() => exports.ServiceLineTransactionScalarWhereInputObjectSchema), z.lazy(() => exports.ServiceLineTransactionScalarWhereInputObjectSchema).array()]).optional(), OR: z.lazy(() => exports.ServiceLineTransactionScalarWhereInputObjectSchema).array().optional(), @@ -59,7 +58,7 @@ const servicelinetransactionscalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'paidAmount' must be a Decimal", @@ -68,7 +67,7 @@ const servicelinetransactionscalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionScalarWhereInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineTransactionScalarWhereInput.schema.ts index d91fdea8..12654662 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionScalarWhereInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionScalarWhereInput.schema.ts @@ -1,14 +1,15 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFilterObjectSchema as IntFilterObjectSchema } from './IntFilter.schema'; -import { StringNullableFilterObjectSchema as StringNullableFilterObjectSchema } from './StringNullableFilter.schema'; -import { DecimalFilterObjectSchema as DecimalFilterObjectSchema } from './DecimalFilter.schema'; -import { EnumPaymentMethodFilterObjectSchema as EnumPaymentMethodFilterObjectSchema } from './EnumPaymentMethodFilter.schema'; -import { PaymentMethodSchema } from '../enums/PaymentMethod.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFilterObjectSchema as IntFilterObjectSchema } from './IntFilter.schema'; +import { StringNullableFilterObjectSchema as StringNullableFilterObjectSchema } from './StringNullableFilter.schema'; +import { DecimalFilterObjectSchema as DecimalFilterObjectSchema } from './DecimalFilter.schema'; +import { EnumPaymentMethodFilterObjectSchema as EnumPaymentMethodFilterObjectSchema } from './EnumPaymentMethodFilter.schema'; +import { PaymentMethodSchema } from '../enums/PaymentMethod.schema'; import { DateTimeFilterObjectSchema as DateTimeFilterObjectSchema } from './DateTimeFilter.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const servicelinetransactionscalarwhereinputSchema = z.object({ AND: z.union([z.lazy(() => ServiceLineTransactionScalarWhereInputObjectSchema), z.lazy(() => ServiceLineTransactionScalarWhereInputObjectSchema).array()]).optional(), OR: z.lazy(() => ServiceLineTransactionScalarWhereInputObjectSchema).array().optional(), @@ -21,7 +22,7 @@ const servicelinetransactionscalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'paidAmount' must be a Decimal", @@ -30,7 +31,7 @@ const servicelinetransactionscalarwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionScalarWhereWithAggregatesInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineTransactionScalarWhereWithAggregatesInput.schema.js index b3de10d9..92fa74ea 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionScalarWhereWithAggregatesInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionScalarWhereWithAggregatesInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineTransactionScalarWhereWithAggregatesInputObjectZodSchema = exports.ServiceLineTransactionScalarWhereWithAggregatesInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntWithAggregatesFilter_schema_1 = require("./IntWithAggregatesFilter.schema"); const StringNullableWithAggregatesFilter_schema_1 = require("./StringNullableWithAggregatesFilter.schema"); const DecimalWithAggregatesFilter_schema_1 = require("./DecimalWithAggregatesFilter.schema"); @@ -47,6 +45,7 @@ const EnumPaymentMethodWithAggregatesFilter_schema_1 = require("./EnumPaymentMet const PaymentMethod_schema_1 = require("../enums/PaymentMethod.schema"); const DateTimeWithAggregatesFilter_schema_1 = require("./DateTimeWithAggregatesFilter.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const servicelinetransactionscalarwherewithaggregatesinputSchema = z.object({ AND: z.union([z.lazy(() => exports.ServiceLineTransactionScalarWhereWithAggregatesInputObjectSchema), z.lazy(() => exports.ServiceLineTransactionScalarWhereWithAggregatesInputObjectSchema).array()]).optional(), OR: z.lazy(() => exports.ServiceLineTransactionScalarWhereWithAggregatesInputObjectSchema).array().optional(), @@ -59,7 +58,7 @@ const servicelinetransactionscalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'paidAmount' must be a Decimal", @@ -68,7 +67,7 @@ const servicelinetransactionscalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionScalarWhereWithAggregatesInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineTransactionScalarWhereWithAggregatesInput.schema.ts index a16c8ab3..a08ca1c4 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionScalarWhereWithAggregatesInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionScalarWhereWithAggregatesInput.schema.ts @@ -1,14 +1,15 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntWithAggregatesFilterObjectSchema as IntWithAggregatesFilterObjectSchema } from './IntWithAggregatesFilter.schema'; -import { StringNullableWithAggregatesFilterObjectSchema as StringNullableWithAggregatesFilterObjectSchema } from './StringNullableWithAggregatesFilter.schema'; -import { DecimalWithAggregatesFilterObjectSchema as DecimalWithAggregatesFilterObjectSchema } from './DecimalWithAggregatesFilter.schema'; -import { EnumPaymentMethodWithAggregatesFilterObjectSchema as EnumPaymentMethodWithAggregatesFilterObjectSchema } from './EnumPaymentMethodWithAggregatesFilter.schema'; -import { PaymentMethodSchema } from '../enums/PaymentMethod.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntWithAggregatesFilterObjectSchema as IntWithAggregatesFilterObjectSchema } from './IntWithAggregatesFilter.schema'; +import { StringNullableWithAggregatesFilterObjectSchema as StringNullableWithAggregatesFilterObjectSchema } from './StringNullableWithAggregatesFilter.schema'; +import { DecimalWithAggregatesFilterObjectSchema as DecimalWithAggregatesFilterObjectSchema } from './DecimalWithAggregatesFilter.schema'; +import { EnumPaymentMethodWithAggregatesFilterObjectSchema as EnumPaymentMethodWithAggregatesFilterObjectSchema } from './EnumPaymentMethodWithAggregatesFilter.schema'; +import { PaymentMethodSchema } from '../enums/PaymentMethod.schema'; import { DateTimeWithAggregatesFilterObjectSchema as DateTimeWithAggregatesFilterObjectSchema } from './DateTimeWithAggregatesFilter.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const servicelinetransactionscalarwherewithaggregatesinputSchema = z.object({ AND: z.union([z.lazy(() => ServiceLineTransactionScalarWhereWithAggregatesInputObjectSchema), z.lazy(() => ServiceLineTransactionScalarWhereWithAggregatesInputObjectSchema).array()]).optional(), OR: z.lazy(() => ServiceLineTransactionScalarWhereWithAggregatesInputObjectSchema).array().optional(), @@ -21,7 +22,7 @@ const servicelinetransactionscalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'paidAmount' must be a Decimal", @@ -30,7 +31,7 @@ const servicelinetransactionscalarwherewithaggregatesinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedCreateInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedCreateInput.schema.js index 62e1a11f..38861119 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedCreateInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedCreateInput.schema.js @@ -38,10 +38,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineTransactionUncheckedCreateInputObjectZodSchema = exports.ServiceLineTransactionUncheckedCreateInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const PaymentMethod_schema_1 = require("../enums/PaymentMethod.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), paymentId: z.number().int(), @@ -51,7 +50,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'paidAmount' must be a Decimal", @@ -60,7 +59,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedCreateInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedCreateInput.schema.ts index 4ee255e5..e0610887 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedCreateInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedCreateInput.schema.ts @@ -1,9 +1,10 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; +import type { Prisma } from '../../../generated/prisma'; import { PaymentMethodSchema } from '../enums/PaymentMethod.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), paymentId: z.number().int(), @@ -13,7 +14,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'paidAmount' must be a Decimal", @@ -22,7 +23,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedCreateWithoutPaymentInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedCreateWithoutPaymentInput.schema.js index 3c00422a..e77c85da 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedCreateWithoutPaymentInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedCreateWithoutPaymentInput.schema.js @@ -38,10 +38,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineTransactionUncheckedCreateWithoutPaymentInputObjectZodSchema = exports.ServiceLineTransactionUncheckedCreateWithoutPaymentInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const PaymentMethod_schema_1 = require("../enums/PaymentMethod.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), serviceLineId: z.number().int(), @@ -50,7 +49,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'paidAmount' must be a Decimal", @@ -59,7 +58,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedCreateWithoutPaymentInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedCreateWithoutPaymentInput.schema.ts index 3acbf7df..e1bdea59 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedCreateWithoutPaymentInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedCreateWithoutPaymentInput.schema.ts @@ -1,9 +1,10 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; +import type { Prisma } from '../../../generated/prisma'; import { PaymentMethodSchema } from '../enums/PaymentMethod.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), serviceLineId: z.number().int(), @@ -12,7 +13,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'paidAmount' must be a Decimal", @@ -21,7 +22,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedCreateWithoutServiceLineInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedCreateWithoutServiceLineInput.schema.js index d2e6dfef..64ab04fa 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedCreateWithoutServiceLineInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedCreateWithoutServiceLineInput.schema.js @@ -38,10 +38,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineTransactionUncheckedCreateWithoutServiceLineInputObjectZodSchema = exports.ServiceLineTransactionUncheckedCreateWithoutServiceLineInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const PaymentMethod_schema_1 = require("../enums/PaymentMethod.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), paymentId: z.number().int(), @@ -50,7 +49,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'paidAmount' must be a Decimal", @@ -59,7 +58,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedCreateWithoutServiceLineInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedCreateWithoutServiceLineInput.schema.ts index 6fb8b304..5b499f6f 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedCreateWithoutServiceLineInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedCreateWithoutServiceLineInput.schema.ts @@ -1,9 +1,10 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; +import type { Prisma } from '../../../generated/prisma'; import { PaymentMethodSchema } from '../enums/PaymentMethod.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), paymentId: z.number().int(), @@ -12,7 +13,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'paidAmount' must be a Decimal", @@ -21,7 +22,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateInput.schema.js index ae84abd8..7738c663 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineTransactionUncheckedUpdateInputObjectZodSchema = exports.ServiceLineTransactionUncheckedUpdateInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); @@ -47,6 +45,7 @@ const PaymentMethod_schema_1 = require("../enums/PaymentMethod.schema"); const EnumPaymentMethodFieldUpdateOperationsInput_schema_1 = require("./EnumPaymentMethodFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), paymentId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -56,7 +55,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'paidAmount' must be a Decimal", @@ -65,7 +64,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateInput.schema.ts index 4fdd978e..f57d427a 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateInput.schema.ts @@ -1,14 +1,15 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { PaymentMethodSchema } from '../enums/PaymentMethod.schema'; -import { EnumPaymentMethodFieldUpdateOperationsInputObjectSchema as EnumPaymentMethodFieldUpdateOperationsInputObjectSchema } from './EnumPaymentMethodFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { PaymentMethodSchema } from '../enums/PaymentMethod.schema'; +import { EnumPaymentMethodFieldUpdateOperationsInputObjectSchema as EnumPaymentMethodFieldUpdateOperationsInputObjectSchema } from './EnumPaymentMethodFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), paymentId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -18,7 +19,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'paidAmount' must be a Decimal", @@ -27,7 +28,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateManyInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateManyInput.schema.js index ac86499d..94035122 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateManyInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateManyInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineTransactionUncheckedUpdateManyInputObjectZodSchema = exports.ServiceLineTransactionUncheckedUpdateManyInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); @@ -47,6 +45,7 @@ const PaymentMethod_schema_1 = require("../enums/PaymentMethod.schema"); const EnumPaymentMethodFieldUpdateOperationsInput_schema_1 = require("./EnumPaymentMethodFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), paymentId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -56,7 +55,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'paidAmount' must be a Decimal", @@ -65,7 +64,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateManyInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateManyInput.schema.ts index dccdf095..96efaa42 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateManyInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateManyInput.schema.ts @@ -1,14 +1,15 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { PaymentMethodSchema } from '../enums/PaymentMethod.schema'; -import { EnumPaymentMethodFieldUpdateOperationsInputObjectSchema as EnumPaymentMethodFieldUpdateOperationsInputObjectSchema } from './EnumPaymentMethodFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { PaymentMethodSchema } from '../enums/PaymentMethod.schema'; +import { EnumPaymentMethodFieldUpdateOperationsInputObjectSchema as EnumPaymentMethodFieldUpdateOperationsInputObjectSchema } from './EnumPaymentMethodFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), paymentId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -18,7 +19,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'paidAmount' must be a Decimal", @@ -27,7 +28,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateManyWithoutPaymentInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateManyWithoutPaymentInput.schema.js index 03856d9b..81a5f64e 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateManyWithoutPaymentInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateManyWithoutPaymentInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineTransactionUncheckedUpdateManyWithoutPaymentInputObjectZodSchema = exports.ServiceLineTransactionUncheckedUpdateManyWithoutPaymentInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); @@ -47,6 +45,7 @@ const PaymentMethod_schema_1 = require("../enums/PaymentMethod.schema"); const EnumPaymentMethodFieldUpdateOperationsInput_schema_1 = require("./EnumPaymentMethodFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), serviceLineId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -55,7 +54,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'paidAmount' must be a Decimal", @@ -64,7 +63,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateManyWithoutPaymentInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateManyWithoutPaymentInput.schema.ts index e079615d..ebcbf25d 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateManyWithoutPaymentInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateManyWithoutPaymentInput.schema.ts @@ -1,14 +1,15 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { PaymentMethodSchema } from '../enums/PaymentMethod.schema'; -import { EnumPaymentMethodFieldUpdateOperationsInputObjectSchema as EnumPaymentMethodFieldUpdateOperationsInputObjectSchema } from './EnumPaymentMethodFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { PaymentMethodSchema } from '../enums/PaymentMethod.schema'; +import { EnumPaymentMethodFieldUpdateOperationsInputObjectSchema as EnumPaymentMethodFieldUpdateOperationsInputObjectSchema } from './EnumPaymentMethodFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), serviceLineId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -17,7 +18,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'paidAmount' must be a Decimal", @@ -26,7 +27,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateManyWithoutServiceLineInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateManyWithoutServiceLineInput.schema.js index 131acc1e..1bbf6ddc 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateManyWithoutServiceLineInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateManyWithoutServiceLineInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineTransactionUncheckedUpdateManyWithoutServiceLineInputObjectZodSchema = exports.ServiceLineTransactionUncheckedUpdateManyWithoutServiceLineInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); @@ -47,6 +45,7 @@ const PaymentMethod_schema_1 = require("../enums/PaymentMethod.schema"); const EnumPaymentMethodFieldUpdateOperationsInput_schema_1 = require("./EnumPaymentMethodFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), paymentId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -55,7 +54,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'paidAmount' must be a Decimal", @@ -64,7 +63,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateManyWithoutServiceLineInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateManyWithoutServiceLineInput.schema.ts index 86b3d985..ebcb9679 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateManyWithoutServiceLineInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateManyWithoutServiceLineInput.schema.ts @@ -1,14 +1,15 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { PaymentMethodSchema } from '../enums/PaymentMethod.schema'; -import { EnumPaymentMethodFieldUpdateOperationsInputObjectSchema as EnumPaymentMethodFieldUpdateOperationsInputObjectSchema } from './EnumPaymentMethodFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { PaymentMethodSchema } from '../enums/PaymentMethod.schema'; +import { EnumPaymentMethodFieldUpdateOperationsInputObjectSchema as EnumPaymentMethodFieldUpdateOperationsInputObjectSchema } from './EnumPaymentMethodFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), paymentId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -17,7 +18,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'paidAmount' must be a Decimal", @@ -26,7 +27,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateWithoutPaymentInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateWithoutPaymentInput.schema.js index 5b28f489..1c8fd07b 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateWithoutPaymentInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateWithoutPaymentInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineTransactionUncheckedUpdateWithoutPaymentInputObjectZodSchema = exports.ServiceLineTransactionUncheckedUpdateWithoutPaymentInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); @@ -47,6 +45,7 @@ const PaymentMethod_schema_1 = require("../enums/PaymentMethod.schema"); const EnumPaymentMethodFieldUpdateOperationsInput_schema_1 = require("./EnumPaymentMethodFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), serviceLineId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -55,7 +54,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'paidAmount' must be a Decimal", @@ -64,7 +63,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateWithoutPaymentInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateWithoutPaymentInput.schema.ts index 3a2f96f9..5b0f0598 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateWithoutPaymentInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateWithoutPaymentInput.schema.ts @@ -1,14 +1,15 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { PaymentMethodSchema } from '../enums/PaymentMethod.schema'; -import { EnumPaymentMethodFieldUpdateOperationsInputObjectSchema as EnumPaymentMethodFieldUpdateOperationsInputObjectSchema } from './EnumPaymentMethodFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { PaymentMethodSchema } from '../enums/PaymentMethod.schema'; +import { EnumPaymentMethodFieldUpdateOperationsInputObjectSchema as EnumPaymentMethodFieldUpdateOperationsInputObjectSchema } from './EnumPaymentMethodFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), serviceLineId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -17,7 +18,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'paidAmount' must be a Decimal", @@ -26,7 +27,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateWithoutServiceLineInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateWithoutServiceLineInput.schema.js index 26151410..63fcfec5 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateWithoutServiceLineInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateWithoutServiceLineInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineTransactionUncheckedUpdateWithoutServiceLineInputObjectZodSchema = exports.ServiceLineTransactionUncheckedUpdateWithoutServiceLineInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); @@ -47,6 +45,7 @@ const PaymentMethod_schema_1 = require("../enums/PaymentMethod.schema"); const EnumPaymentMethodFieldUpdateOperationsInput_schema_1 = require("./EnumPaymentMethodFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), paymentId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -55,7 +54,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'paidAmount' must be a Decimal", @@ -64,7 +63,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateWithoutServiceLineInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateWithoutServiceLineInput.schema.ts index 96ba273d..4a68ae02 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateWithoutServiceLineInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionUncheckedUpdateWithoutServiceLineInput.schema.ts @@ -1,14 +1,15 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { PaymentMethodSchema } from '../enums/PaymentMethod.schema'; -import { EnumPaymentMethodFieldUpdateOperationsInputObjectSchema as EnumPaymentMethodFieldUpdateOperationsInputObjectSchema } from './EnumPaymentMethodFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { PaymentMethodSchema } from '../enums/PaymentMethod.schema'; +import { EnumPaymentMethodFieldUpdateOperationsInputObjectSchema as EnumPaymentMethodFieldUpdateOperationsInputObjectSchema } from './EnumPaymentMethodFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), paymentId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -17,7 +18,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'paidAmount' must be a Decimal", @@ -26,7 +27,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionUpdateInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineTransactionUpdateInput.schema.js index f8386d02..d3711989 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionUpdateInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionUpdateInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineTransactionUpdateInputObjectZodSchema = exports.ServiceLineTransactionUpdateInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); const PaymentMethod_schema_1 = require("../enums/PaymentMethod.schema"); @@ -48,13 +46,14 @@ const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpda const PaymentUpdateOneRequiredWithoutServiceLineTransactionsNestedInput_schema_1 = require("./PaymentUpdateOneRequiredWithoutServiceLineTransactionsNestedInput.schema"); const ServiceLineUpdateOneRequiredWithoutServiceLineTransactionsNestedInput_schema_1 = require("./ServiceLineUpdateOneRequiredWithoutServiceLineTransactionsNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ transactionId: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), paidAmount: z.union([z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'paidAmount' must be a Decimal", @@ -63,7 +62,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionUpdateInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineTransactionUpdateInput.schema.ts index 32426603..ae76653d 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionUpdateInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionUpdateInput.schema.ts @@ -1,22 +1,23 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { PaymentMethodSchema } from '../enums/PaymentMethod.schema'; -import { EnumPaymentMethodFieldUpdateOperationsInputObjectSchema as EnumPaymentMethodFieldUpdateOperationsInputObjectSchema } from './EnumPaymentMethodFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; -import { PaymentUpdateOneRequiredWithoutServiceLineTransactionsNestedInputObjectSchema as PaymentUpdateOneRequiredWithoutServiceLineTransactionsNestedInputObjectSchema } from './PaymentUpdateOneRequiredWithoutServiceLineTransactionsNestedInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { PaymentMethodSchema } from '../enums/PaymentMethod.schema'; +import { EnumPaymentMethodFieldUpdateOperationsInputObjectSchema as EnumPaymentMethodFieldUpdateOperationsInputObjectSchema } from './EnumPaymentMethodFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { PaymentUpdateOneRequiredWithoutServiceLineTransactionsNestedInputObjectSchema as PaymentUpdateOneRequiredWithoutServiceLineTransactionsNestedInputObjectSchema } from './PaymentUpdateOneRequiredWithoutServiceLineTransactionsNestedInput.schema'; import { ServiceLineUpdateOneRequiredWithoutServiceLineTransactionsNestedInputObjectSchema as ServiceLineUpdateOneRequiredWithoutServiceLineTransactionsNestedInputObjectSchema } from './ServiceLineUpdateOneRequiredWithoutServiceLineTransactionsNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ transactionId: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), paidAmount: z.union([z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'paidAmount' must be a Decimal", @@ -25,7 +26,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionUpdateManyMutationInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineTransactionUpdateManyMutationInput.schema.js index 6048ac97..da5cafe5 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionUpdateManyMutationInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionUpdateManyMutationInput.schema.js @@ -38,21 +38,20 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineTransactionUpdateManyMutationInputObjectZodSchema = exports.ServiceLineTransactionUpdateManyMutationInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); const PaymentMethod_schema_1 = require("../enums/PaymentMethod.schema"); const EnumPaymentMethodFieldUpdateOperationsInput_schema_1 = require("./EnumPaymentMethodFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ transactionId: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), paidAmount: z.union([z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'paidAmount' must be a Decimal", @@ -61,7 +60,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionUpdateManyMutationInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineTransactionUpdateManyMutationInput.schema.ts index a5183f49..359cf30d 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionUpdateManyMutationInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionUpdateManyMutationInput.schema.ts @@ -1,20 +1,21 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { PaymentMethodSchema } from '../enums/PaymentMethod.schema'; -import { EnumPaymentMethodFieldUpdateOperationsInputObjectSchema as EnumPaymentMethodFieldUpdateOperationsInputObjectSchema } from './EnumPaymentMethodFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { PaymentMethodSchema } from '../enums/PaymentMethod.schema'; +import { EnumPaymentMethodFieldUpdateOperationsInputObjectSchema as EnumPaymentMethodFieldUpdateOperationsInputObjectSchema } from './EnumPaymentMethodFieldUpdateOperationsInput.schema'; import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ transactionId: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), paidAmount: z.union([z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'paidAmount' must be a Decimal", @@ -23,7 +24,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionUpdateWithoutPaymentInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineTransactionUpdateWithoutPaymentInput.schema.js index 2b1d2d97..0e83da29 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionUpdateWithoutPaymentInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionUpdateWithoutPaymentInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineTransactionUpdateWithoutPaymentInputObjectZodSchema = exports.ServiceLineTransactionUpdateWithoutPaymentInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); const PaymentMethod_schema_1 = require("../enums/PaymentMethod.schema"); @@ -47,13 +45,14 @@ const EnumPaymentMethodFieldUpdateOperationsInput_schema_1 = require("./EnumPaym const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const ServiceLineUpdateOneRequiredWithoutServiceLineTransactionsNestedInput_schema_1 = require("./ServiceLineUpdateOneRequiredWithoutServiceLineTransactionsNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ transactionId: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), paidAmount: z.union([z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'paidAmount' must be a Decimal", @@ -62,7 +61,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionUpdateWithoutPaymentInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineTransactionUpdateWithoutPaymentInput.schema.ts index 78b8d3aa..3e9ffc8a 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionUpdateWithoutPaymentInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionUpdateWithoutPaymentInput.schema.ts @@ -1,21 +1,22 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { PaymentMethodSchema } from '../enums/PaymentMethod.schema'; -import { EnumPaymentMethodFieldUpdateOperationsInputObjectSchema as EnumPaymentMethodFieldUpdateOperationsInputObjectSchema } from './EnumPaymentMethodFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { PaymentMethodSchema } from '../enums/PaymentMethod.schema'; +import { EnumPaymentMethodFieldUpdateOperationsInputObjectSchema as EnumPaymentMethodFieldUpdateOperationsInputObjectSchema } from './EnumPaymentMethodFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; import { ServiceLineUpdateOneRequiredWithoutServiceLineTransactionsNestedInputObjectSchema as ServiceLineUpdateOneRequiredWithoutServiceLineTransactionsNestedInputObjectSchema } from './ServiceLineUpdateOneRequiredWithoutServiceLineTransactionsNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ transactionId: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), paidAmount: z.union([z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'paidAmount' must be a Decimal", @@ -24,7 +25,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionUpdateWithoutServiceLineInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineTransactionUpdateWithoutServiceLineInput.schema.js index 8904e963..6ca076b3 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionUpdateWithoutServiceLineInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionUpdateWithoutServiceLineInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineTransactionUpdateWithoutServiceLineInputObjectZodSchema = exports.ServiceLineTransactionUpdateWithoutServiceLineInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdateOperationsInput.schema"); const PaymentMethod_schema_1 = require("../enums/PaymentMethod.schema"); @@ -47,13 +45,14 @@ const EnumPaymentMethodFieldUpdateOperationsInput_schema_1 = require("./EnumPaym const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const PaymentUpdateOneRequiredWithoutServiceLineTransactionsNestedInput_schema_1 = require("./PaymentUpdateOneRequiredWithoutServiceLineTransactionsNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ transactionId: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), paidAmount: z.union([z.union([ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'paidAmount' must be a Decimal", @@ -62,7 +61,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionUpdateWithoutServiceLineInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineTransactionUpdateWithoutServiceLineInput.schema.ts index 586a44c5..3ffd6620 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionUpdateWithoutServiceLineInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionUpdateWithoutServiceLineInput.schema.ts @@ -1,21 +1,22 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { PaymentMethodSchema } from '../enums/PaymentMethod.schema'; -import { EnumPaymentMethodFieldUpdateOperationsInputObjectSchema as EnumPaymentMethodFieldUpdateOperationsInputObjectSchema } from './EnumPaymentMethodFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { PaymentMethodSchema } from '../enums/PaymentMethod.schema'; +import { EnumPaymentMethodFieldUpdateOperationsInputObjectSchema as EnumPaymentMethodFieldUpdateOperationsInputObjectSchema } from './EnumPaymentMethodFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; import { PaymentUpdateOneRequiredWithoutServiceLineTransactionsNestedInputObjectSchema as PaymentUpdateOneRequiredWithoutServiceLineTransactionsNestedInputObjectSchema } from './PaymentUpdateOneRequiredWithoutServiceLineTransactionsNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ transactionId: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), paidAmount: z.union([z.union([ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'paidAmount' must be a Decimal", @@ -24,7 +25,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionWhereInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineTransactionWhereInput.schema.js index d7bdb349..16646475 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionWhereInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionWhereInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineTransactionWhereInputObjectZodSchema = exports.ServiceLineTransactionWhereInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFilter_schema_1 = require("./IntFilter.schema"); const StringNullableFilter_schema_1 = require("./StringNullableFilter.schema"); const DecimalFilter_schema_1 = require("./DecimalFilter.schema"); @@ -51,6 +49,7 @@ const PaymentWhereInput_schema_1 = require("./PaymentWhereInput.schema"); const ServiceLineScalarRelationFilter_schema_1 = require("./ServiceLineScalarRelationFilter.schema"); const ServiceLineWhereInput_schema_1 = require("./ServiceLineWhereInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const servicelinetransactionwhereinputSchema = z.object({ AND: z.union([z.lazy(() => exports.ServiceLineTransactionWhereInputObjectSchema), z.lazy(() => exports.ServiceLineTransactionWhereInputObjectSchema).array()]).optional(), OR: z.lazy(() => exports.ServiceLineTransactionWhereInputObjectSchema).array().optional(), @@ -63,7 +62,7 @@ const servicelinetransactionwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'paidAmount' must be a Decimal", @@ -72,7 +71,7 @@ const servicelinetransactionwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineTransactionWhereInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineTransactionWhereInput.schema.ts index a32429fd..041d8eb4 100644 --- a/packages/db/shared/schemas/objects/ServiceLineTransactionWhereInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineTransactionWhereInput.schema.ts @@ -1,18 +1,19 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFilterObjectSchema as IntFilterObjectSchema } from './IntFilter.schema'; -import { StringNullableFilterObjectSchema as StringNullableFilterObjectSchema } from './StringNullableFilter.schema'; -import { DecimalFilterObjectSchema as DecimalFilterObjectSchema } from './DecimalFilter.schema'; -import { EnumPaymentMethodFilterObjectSchema as EnumPaymentMethodFilterObjectSchema } from './EnumPaymentMethodFilter.schema'; -import { PaymentMethodSchema } from '../enums/PaymentMethod.schema'; -import { DateTimeFilterObjectSchema as DateTimeFilterObjectSchema } from './DateTimeFilter.schema'; -import { PaymentScalarRelationFilterObjectSchema as PaymentScalarRelationFilterObjectSchema } from './PaymentScalarRelationFilter.schema'; -import { PaymentWhereInputObjectSchema as PaymentWhereInputObjectSchema } from './PaymentWhereInput.schema'; -import { ServiceLineScalarRelationFilterObjectSchema as ServiceLineScalarRelationFilterObjectSchema } from './ServiceLineScalarRelationFilter.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFilterObjectSchema as IntFilterObjectSchema } from './IntFilter.schema'; +import { StringNullableFilterObjectSchema as StringNullableFilterObjectSchema } from './StringNullableFilter.schema'; +import { DecimalFilterObjectSchema as DecimalFilterObjectSchema } from './DecimalFilter.schema'; +import { EnumPaymentMethodFilterObjectSchema as EnumPaymentMethodFilterObjectSchema } from './EnumPaymentMethodFilter.schema'; +import { PaymentMethodSchema } from '../enums/PaymentMethod.schema'; +import { DateTimeFilterObjectSchema as DateTimeFilterObjectSchema } from './DateTimeFilter.schema'; +import { PaymentScalarRelationFilterObjectSchema as PaymentScalarRelationFilterObjectSchema } from './PaymentScalarRelationFilter.schema'; +import { PaymentWhereInputObjectSchema as PaymentWhereInputObjectSchema } from './PaymentWhereInput.schema'; +import { ServiceLineScalarRelationFilterObjectSchema as ServiceLineScalarRelationFilterObjectSchema } from './ServiceLineScalarRelationFilter.schema'; import { ServiceLineWhereInputObjectSchema as ServiceLineWhereInputObjectSchema } from './ServiceLineWhereInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const servicelinetransactionwhereinputSchema = z.object({ AND: z.union([z.lazy(() => ServiceLineTransactionWhereInputObjectSchema), z.lazy(() => ServiceLineTransactionWhereInputObjectSchema).array()]).optional(), OR: z.lazy(() => ServiceLineTransactionWhereInputObjectSchema).array().optional(), @@ -25,7 +26,7 @@ const servicelinetransactionwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'paidAmount' must be a Decimal", @@ -34,7 +35,7 @@ const servicelinetransactionwhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'adjustedAmount' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineUncheckedCreateInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineUncheckedCreateInput.schema.js index 1b40090e..5a3bb239 100644 --- a/packages/db/shared/schemas/objects/ServiceLineUncheckedCreateInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineUncheckedCreateInput.schema.js @@ -38,11 +38,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineUncheckedCreateInputObjectZodSchema = exports.ServiceLineUncheckedCreateInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const ServiceLineStatus_schema_1 = require("../enums/ServiceLineStatus.schema"); const ServiceLineTransactionUncheckedCreateNestedManyWithoutServiceLineInput_schema_1 = require("./ServiceLineTransactionUncheckedCreateNestedManyWithoutServiceLineInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), claimId: z.number().int().optional().nullable(), @@ -59,7 +58,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -68,7 +67,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -77,7 +76,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -86,7 +85,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -95,7 +94,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineUncheckedCreateInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineUncheckedCreateInput.schema.ts index 8e6740bf..1dacf7f2 100644 --- a/packages/db/shared/schemas/objects/ServiceLineUncheckedCreateInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineUncheckedCreateInput.schema.ts @@ -1,10 +1,11 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; import { ServiceLineTransactionUncheckedCreateNestedManyWithoutServiceLineInputObjectSchema as ServiceLineTransactionUncheckedCreateNestedManyWithoutServiceLineInputObjectSchema } from './ServiceLineTransactionUncheckedCreateNestedManyWithoutServiceLineInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), claimId: z.number().int().optional().nullable(), @@ -21,7 +22,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -30,7 +31,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -39,7 +40,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -48,7 +49,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -57,7 +58,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineUncheckedCreateWithoutClaimInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineUncheckedCreateWithoutClaimInput.schema.js index d737548d..c675f3a1 100644 --- a/packages/db/shared/schemas/objects/ServiceLineUncheckedCreateWithoutClaimInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineUncheckedCreateWithoutClaimInput.schema.js @@ -38,11 +38,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineUncheckedCreateWithoutClaimInputObjectZodSchema = exports.ServiceLineUncheckedCreateWithoutClaimInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const ServiceLineStatus_schema_1 = require("../enums/ServiceLineStatus.schema"); const ServiceLineTransactionUncheckedCreateNestedManyWithoutServiceLineInput_schema_1 = require("./ServiceLineTransactionUncheckedCreateNestedManyWithoutServiceLineInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), paymentId: z.number().int().optional().nullable(), @@ -58,7 +57,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -67,7 +66,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -76,7 +75,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -85,7 +84,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -94,7 +93,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineUncheckedCreateWithoutClaimInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineUncheckedCreateWithoutClaimInput.schema.ts index 183990b5..4600de5f 100644 --- a/packages/db/shared/schemas/objects/ServiceLineUncheckedCreateWithoutClaimInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineUncheckedCreateWithoutClaimInput.schema.ts @@ -1,10 +1,11 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; import { ServiceLineTransactionUncheckedCreateNestedManyWithoutServiceLineInputObjectSchema as ServiceLineTransactionUncheckedCreateNestedManyWithoutServiceLineInputObjectSchema } from './ServiceLineTransactionUncheckedCreateNestedManyWithoutServiceLineInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), paymentId: z.number().int().optional().nullable(), @@ -20,7 +21,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -29,7 +30,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -38,7 +39,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -47,7 +48,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -56,7 +57,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineUncheckedCreateWithoutPaymentInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineUncheckedCreateWithoutPaymentInput.schema.js index e4e9974f..7320b4db 100644 --- a/packages/db/shared/schemas/objects/ServiceLineUncheckedCreateWithoutPaymentInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineUncheckedCreateWithoutPaymentInput.schema.js @@ -38,11 +38,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineUncheckedCreateWithoutPaymentInputObjectZodSchema = exports.ServiceLineUncheckedCreateWithoutPaymentInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const ServiceLineStatus_schema_1 = require("../enums/ServiceLineStatus.schema"); const ServiceLineTransactionUncheckedCreateNestedManyWithoutServiceLineInput_schema_1 = require("./ServiceLineTransactionUncheckedCreateNestedManyWithoutServiceLineInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), claimId: z.number().int().optional().nullable(), @@ -58,7 +57,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -67,7 +66,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -76,7 +75,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -85,7 +84,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -94,7 +93,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineUncheckedCreateWithoutPaymentInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineUncheckedCreateWithoutPaymentInput.schema.ts index d2781905..0034ccff 100644 --- a/packages/db/shared/schemas/objects/ServiceLineUncheckedCreateWithoutPaymentInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineUncheckedCreateWithoutPaymentInput.schema.ts @@ -1,10 +1,11 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; import { ServiceLineTransactionUncheckedCreateNestedManyWithoutServiceLineInputObjectSchema as ServiceLineTransactionUncheckedCreateNestedManyWithoutServiceLineInputObjectSchema } from './ServiceLineTransactionUncheckedCreateNestedManyWithoutServiceLineInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), claimId: z.number().int().optional().nullable(), @@ -20,7 +21,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -29,7 +30,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -38,7 +39,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -47,7 +48,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -56,7 +57,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineUncheckedCreateWithoutServiceLineTransactionsInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineUncheckedCreateWithoutServiceLineTransactionsInput.schema.js index 6d613a23..4d1b87fb 100644 --- a/packages/db/shared/schemas/objects/ServiceLineUncheckedCreateWithoutServiceLineTransactionsInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineUncheckedCreateWithoutServiceLineTransactionsInput.schema.js @@ -38,10 +38,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineUncheckedCreateWithoutServiceLineTransactionsInputObjectZodSchema = exports.ServiceLineUncheckedCreateWithoutServiceLineTransactionsInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const ServiceLineStatus_schema_1 = require("../enums/ServiceLineStatus.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.number().int().optional(), claimId: z.number().int().optional().nullable(), @@ -58,7 +57,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -67,7 +66,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -76,7 +75,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -85,7 +84,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -94,7 +93,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineUncheckedCreateWithoutServiceLineTransactionsInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineUncheckedCreateWithoutServiceLineTransactionsInput.schema.ts index 86d1e25d..7f1ac562 100644 --- a/packages/db/shared/schemas/objects/ServiceLineUncheckedCreateWithoutServiceLineTransactionsInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineUncheckedCreateWithoutServiceLineTransactionsInput.schema.ts @@ -1,9 +1,10 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; +import type { Prisma } from '../../../generated/prisma'; import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.number().int().optional(), claimId: z.number().int().optional().nullable(), @@ -20,7 +21,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -29,7 +30,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -38,7 +39,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -47,7 +48,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -56,7 +57,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateInput.schema.js index 8471a587..fbd9514f 100644 --- a/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineUncheckedUpdateInputObjectZodSchema = exports.ServiceLineUncheckedUpdateInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); @@ -51,6 +49,7 @@ const ServiceLineStatus_schema_1 = require("../enums/ServiceLineStatus.schema"); const EnumServiceLineStatusFieldUpdateOperationsInput_schema_1 = require("./EnumServiceLineStatusFieldUpdateOperationsInput.schema"); const ServiceLineTransactionUncheckedUpdateManyWithoutServiceLineNestedInput_schema_1 = require("./ServiceLineTransactionUncheckedUpdateManyWithoutServiceLineNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), claimId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInput_schema_1.NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -67,7 +66,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -76,7 +75,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -85,7 +84,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -94,7 +93,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -103,7 +102,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateInput.schema.ts index e8f2e84c..3d8399aa 100644 --- a/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateInput.schema.ts @@ -1,18 +1,19 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; -import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; -import { EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema as EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema } from './EnumServiceLineStatusFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; +import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; +import { EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema as EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema } from './EnumServiceLineStatusFieldUpdateOperationsInput.schema'; import { ServiceLineTransactionUncheckedUpdateManyWithoutServiceLineNestedInputObjectSchema as ServiceLineTransactionUncheckedUpdateManyWithoutServiceLineNestedInputObjectSchema } from './ServiceLineTransactionUncheckedUpdateManyWithoutServiceLineNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), claimId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -29,7 +30,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -38,7 +39,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -47,7 +48,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -56,7 +57,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -65,7 +66,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateManyInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateManyInput.schema.js index 85f26725..fc270312 100644 --- a/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateManyInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateManyInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineUncheckedUpdateManyInputObjectZodSchema = exports.ServiceLineUncheckedUpdateManyInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); @@ -50,6 +48,7 @@ const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdate const ServiceLineStatus_schema_1 = require("../enums/ServiceLineStatus.schema"); const EnumServiceLineStatusFieldUpdateOperationsInput_schema_1 = require("./EnumServiceLineStatusFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), claimId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInput_schema_1.NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -66,7 +65,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -75,7 +74,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -84,7 +83,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -93,7 +92,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -102,7 +101,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateManyInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateManyInput.schema.ts index 67bd0008..7889d3fa 100644 --- a/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateManyInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateManyInput.schema.ts @@ -1,17 +1,18 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; -import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; +import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; import { EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema as EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema } from './EnumServiceLineStatusFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), claimId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -28,7 +29,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -37,7 +38,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -46,7 +47,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -55,7 +56,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -64,7 +65,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateManyWithoutClaimInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateManyWithoutClaimInput.schema.js index fea382ea..a683e0ae 100644 --- a/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateManyWithoutClaimInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateManyWithoutClaimInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineUncheckedUpdateManyWithoutClaimInputObjectZodSchema = exports.ServiceLineUncheckedUpdateManyWithoutClaimInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); @@ -50,6 +48,7 @@ const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdate const ServiceLineStatus_schema_1 = require("../enums/ServiceLineStatus.schema"); const EnumServiceLineStatusFieldUpdateOperationsInput_schema_1 = require("./EnumServiceLineStatusFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), paymentId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInput_schema_1.NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -65,7 +64,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -74,7 +73,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -83,7 +82,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -92,7 +91,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -101,7 +100,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateManyWithoutClaimInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateManyWithoutClaimInput.schema.ts index 18e1cfc1..fdd8a387 100644 --- a/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateManyWithoutClaimInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateManyWithoutClaimInput.schema.ts @@ -1,17 +1,18 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; -import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; +import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; import { EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema as EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema } from './EnumServiceLineStatusFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), paymentId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -27,7 +28,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -36,7 +37,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -45,7 +46,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -54,7 +55,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -63,7 +64,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateManyWithoutPaymentInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateManyWithoutPaymentInput.schema.js index a23cc935..7bde2646 100644 --- a/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateManyWithoutPaymentInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateManyWithoutPaymentInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineUncheckedUpdateManyWithoutPaymentInputObjectZodSchema = exports.ServiceLineUncheckedUpdateManyWithoutPaymentInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); @@ -50,6 +48,7 @@ const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdate const ServiceLineStatus_schema_1 = require("../enums/ServiceLineStatus.schema"); const EnumServiceLineStatusFieldUpdateOperationsInput_schema_1 = require("./EnumServiceLineStatusFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), claimId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInput_schema_1.NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -65,7 +64,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -74,7 +73,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -83,7 +82,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -92,7 +91,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -101,7 +100,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateManyWithoutPaymentInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateManyWithoutPaymentInput.schema.ts index 7e702a6a..9e2421cc 100644 --- a/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateManyWithoutPaymentInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateManyWithoutPaymentInput.schema.ts @@ -1,17 +1,18 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; -import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; +import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; import { EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema as EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema } from './EnumServiceLineStatusFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), claimId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -27,7 +28,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -36,7 +37,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -45,7 +46,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -54,7 +55,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -63,7 +64,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateWithoutClaimInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateWithoutClaimInput.schema.js index 92ea54f3..7c8f3853 100644 --- a/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateWithoutClaimInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateWithoutClaimInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineUncheckedUpdateWithoutClaimInputObjectZodSchema = exports.ServiceLineUncheckedUpdateWithoutClaimInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); @@ -51,6 +49,7 @@ const ServiceLineStatus_schema_1 = require("../enums/ServiceLineStatus.schema"); const EnumServiceLineStatusFieldUpdateOperationsInput_schema_1 = require("./EnumServiceLineStatusFieldUpdateOperationsInput.schema"); const ServiceLineTransactionUncheckedUpdateManyWithoutServiceLineNestedInput_schema_1 = require("./ServiceLineTransactionUncheckedUpdateManyWithoutServiceLineNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), paymentId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInput_schema_1.NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -66,7 +65,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -75,7 +74,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -84,7 +83,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -93,7 +92,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -102,7 +101,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateWithoutClaimInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateWithoutClaimInput.schema.ts index 180e140f..0fa88464 100644 --- a/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateWithoutClaimInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateWithoutClaimInput.schema.ts @@ -1,18 +1,19 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; -import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; -import { EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema as EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema } from './EnumServiceLineStatusFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; +import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; +import { EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema as EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema } from './EnumServiceLineStatusFieldUpdateOperationsInput.schema'; import { ServiceLineTransactionUncheckedUpdateManyWithoutServiceLineNestedInputObjectSchema as ServiceLineTransactionUncheckedUpdateManyWithoutServiceLineNestedInputObjectSchema } from './ServiceLineTransactionUncheckedUpdateManyWithoutServiceLineNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), paymentId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -28,7 +29,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -37,7 +38,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -46,7 +47,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -55,7 +56,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -64,7 +65,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateWithoutPaymentInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateWithoutPaymentInput.schema.js index 39463403..2e6be1dd 100644 --- a/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateWithoutPaymentInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateWithoutPaymentInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineUncheckedUpdateWithoutPaymentInputObjectZodSchema = exports.ServiceLineUncheckedUpdateWithoutPaymentInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); @@ -51,6 +49,7 @@ const ServiceLineStatus_schema_1 = require("../enums/ServiceLineStatus.schema"); const EnumServiceLineStatusFieldUpdateOperationsInput_schema_1 = require("./EnumServiceLineStatusFieldUpdateOperationsInput.schema"); const ServiceLineTransactionUncheckedUpdateManyWithoutServiceLineNestedInput_schema_1 = require("./ServiceLineTransactionUncheckedUpdateManyWithoutServiceLineNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), claimId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInput_schema_1.NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -66,7 +65,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -75,7 +74,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -84,7 +83,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -93,7 +92,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -102,7 +101,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateWithoutPaymentInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateWithoutPaymentInput.schema.ts index b9784951..eb29186c 100644 --- a/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateWithoutPaymentInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateWithoutPaymentInput.schema.ts @@ -1,18 +1,19 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; -import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; -import { EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema as EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema } from './EnumServiceLineStatusFieldUpdateOperationsInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; +import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; +import { EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema as EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema } from './EnumServiceLineStatusFieldUpdateOperationsInput.schema'; import { ServiceLineTransactionUncheckedUpdateManyWithoutServiceLineNestedInputObjectSchema as ServiceLineTransactionUncheckedUpdateManyWithoutServiceLineNestedInputObjectSchema } from './ServiceLineTransactionUncheckedUpdateManyWithoutServiceLineNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), claimId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -28,7 +29,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -37,7 +38,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -46,7 +47,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -55,7 +56,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -64,7 +65,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateWithoutServiceLineTransactionsInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateWithoutServiceLineTransactionsInput.schema.js index a6c235db..bd9edce1 100644 --- a/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateWithoutServiceLineTransactionsInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateWithoutServiceLineTransactionsInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineUncheckedUpdateWithoutServiceLineTransactionsInputObjectZodSchema = exports.ServiceLineUncheckedUpdateWithoutServiceLineTransactionsInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); const NullableIntFieldUpdateOperationsInput_schema_1 = require("./NullableIntFieldUpdateOperationsInput.schema"); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); @@ -50,6 +48,7 @@ const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdate const ServiceLineStatus_schema_1 = require("../enums/ServiceLineStatus.schema"); const EnumServiceLineStatusFieldUpdateOperationsInput_schema_1 = require("./EnumServiceLineStatusFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), claimId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInput_schema_1.NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -66,7 +65,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -75,7 +74,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -84,7 +83,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -93,7 +92,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -102,7 +101,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateWithoutServiceLineTransactionsInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateWithoutServiceLineTransactionsInput.schema.ts index bf21d139..5614dae0 100644 --- a/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateWithoutServiceLineTransactionsInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineUncheckedUpdateWithoutServiceLineTransactionsInput.schema.ts @@ -1,17 +1,18 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; -import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; -import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFieldUpdateOperationsInputObjectSchema as IntFieldUpdateOperationsInputObjectSchema } from './IntFieldUpdateOperationsInput.schema'; +import { NullableIntFieldUpdateOperationsInputObjectSchema as NullableIntFieldUpdateOperationsInputObjectSchema } from './NullableIntFieldUpdateOperationsInput.schema'; +import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; import { EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema as EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema } from './EnumServiceLineStatusFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInputObjectSchema)]).optional(), claimId: z.union([z.number().int(), z.lazy(() => NullableIntFieldUpdateOperationsInputObjectSchema)]).optional().nullable(), @@ -28,7 +29,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -37,7 +38,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -46,7 +47,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -55,7 +56,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -64,7 +65,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineUpdateInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineUpdateInput.schema.js index 344daf05..54cef4a4 100644 --- a/packages/db/shared/schemas/objects/ServiceLineUpdateInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineUpdateInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineUpdateInputObjectZodSchema = exports.ServiceLineUpdateInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); @@ -51,6 +49,7 @@ const ClaimUpdateOneWithoutServiceLinesNestedInput_schema_1 = require("./ClaimUp const PaymentUpdateOneWithoutServiceLinesNestedInput_schema_1 = require("./PaymentUpdateOneWithoutServiceLinesNestedInput.schema"); const ServiceLineTransactionUpdateManyWithoutServiceLineNestedInput_schema_1 = require("./ServiceLineTransactionUpdateManyWithoutServiceLineNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ procedureCode: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), procedureDate: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -64,7 +63,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -73,7 +72,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -82,7 +81,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -91,7 +90,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -100,7 +99,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineUpdateInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineUpdateInput.schema.ts index 7847da81..5acfc87e 100644 --- a/packages/db/shared/schemas/objects/ServiceLineUpdateInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineUpdateInput.schema.ts @@ -1,18 +1,19 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; -import { EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema as EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema } from './EnumServiceLineStatusFieldUpdateOperationsInput.schema'; -import { ClaimUpdateOneWithoutServiceLinesNestedInputObjectSchema as ClaimUpdateOneWithoutServiceLinesNestedInputObjectSchema } from './ClaimUpdateOneWithoutServiceLinesNestedInput.schema'; -import { PaymentUpdateOneWithoutServiceLinesNestedInputObjectSchema as PaymentUpdateOneWithoutServiceLinesNestedInputObjectSchema } from './PaymentUpdateOneWithoutServiceLinesNestedInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; +import { EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema as EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema } from './EnumServiceLineStatusFieldUpdateOperationsInput.schema'; +import { ClaimUpdateOneWithoutServiceLinesNestedInputObjectSchema as ClaimUpdateOneWithoutServiceLinesNestedInputObjectSchema } from './ClaimUpdateOneWithoutServiceLinesNestedInput.schema'; +import { PaymentUpdateOneWithoutServiceLinesNestedInputObjectSchema as PaymentUpdateOneWithoutServiceLinesNestedInputObjectSchema } from './PaymentUpdateOneWithoutServiceLinesNestedInput.schema'; import { ServiceLineTransactionUpdateManyWithoutServiceLineNestedInputObjectSchema as ServiceLineTransactionUpdateManyWithoutServiceLineNestedInputObjectSchema } from './ServiceLineTransactionUpdateManyWithoutServiceLineNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ procedureCode: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), procedureDate: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -26,7 +27,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -35,7 +36,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -44,7 +45,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -53,7 +54,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -62,7 +63,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineUpdateManyMutationInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineUpdateManyMutationInput.schema.js index eb3bdf07..5221d21e 100644 --- a/packages/db/shared/schemas/objects/ServiceLineUpdateManyMutationInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineUpdateManyMutationInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineUpdateManyMutationInputObjectZodSchema = exports.ServiceLineUpdateManyMutationInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); @@ -48,6 +46,7 @@ const DecimalFieldUpdateOperationsInput_schema_1 = require("./DecimalFieldUpdate const ServiceLineStatus_schema_1 = require("../enums/ServiceLineStatus.schema"); const EnumServiceLineStatusFieldUpdateOperationsInput_schema_1 = require("./EnumServiceLineStatusFieldUpdateOperationsInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ procedureCode: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), procedureDate: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -61,7 +60,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -70,7 +69,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -79,7 +78,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -88,7 +87,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -97,7 +96,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineUpdateManyMutationInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineUpdateManyMutationInput.schema.ts index 460bb3c4..b48a9bd4 100644 --- a/packages/db/shared/schemas/objects/ServiceLineUpdateManyMutationInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineUpdateManyMutationInput.schema.ts @@ -1,15 +1,16 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; import { EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema as EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema } from './EnumServiceLineStatusFieldUpdateOperationsInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ procedureCode: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), procedureDate: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -23,7 +24,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -32,7 +33,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -41,7 +42,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -50,7 +51,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -59,7 +60,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineUpdateWithoutClaimInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineUpdateWithoutClaimInput.schema.js index 0ddf42e6..5785af20 100644 --- a/packages/db/shared/schemas/objects/ServiceLineUpdateWithoutClaimInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineUpdateWithoutClaimInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineUpdateWithoutClaimInputObjectZodSchema = exports.ServiceLineUpdateWithoutClaimInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); @@ -50,6 +48,7 @@ const EnumServiceLineStatusFieldUpdateOperationsInput_schema_1 = require("./Enum const PaymentUpdateOneWithoutServiceLinesNestedInput_schema_1 = require("./PaymentUpdateOneWithoutServiceLinesNestedInput.schema"); const ServiceLineTransactionUpdateManyWithoutServiceLineNestedInput_schema_1 = require("./ServiceLineTransactionUpdateManyWithoutServiceLineNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ procedureCode: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), procedureDate: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -63,7 +62,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -72,7 +71,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -81,7 +80,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -90,7 +89,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -99,7 +98,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineUpdateWithoutClaimInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineUpdateWithoutClaimInput.schema.ts index da0e2d28..4774a89e 100644 --- a/packages/db/shared/schemas/objects/ServiceLineUpdateWithoutClaimInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineUpdateWithoutClaimInput.schema.ts @@ -1,17 +1,18 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; -import { EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema as EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema } from './EnumServiceLineStatusFieldUpdateOperationsInput.schema'; -import { PaymentUpdateOneWithoutServiceLinesNestedInputObjectSchema as PaymentUpdateOneWithoutServiceLinesNestedInputObjectSchema } from './PaymentUpdateOneWithoutServiceLinesNestedInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; +import { EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema as EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema } from './EnumServiceLineStatusFieldUpdateOperationsInput.schema'; +import { PaymentUpdateOneWithoutServiceLinesNestedInputObjectSchema as PaymentUpdateOneWithoutServiceLinesNestedInputObjectSchema } from './PaymentUpdateOneWithoutServiceLinesNestedInput.schema'; import { ServiceLineTransactionUpdateManyWithoutServiceLineNestedInputObjectSchema as ServiceLineTransactionUpdateManyWithoutServiceLineNestedInputObjectSchema } from './ServiceLineTransactionUpdateManyWithoutServiceLineNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ procedureCode: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), procedureDate: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -25,7 +26,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -34,7 +35,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -43,7 +44,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -52,7 +53,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -61,7 +62,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineUpdateWithoutPaymentInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineUpdateWithoutPaymentInput.schema.js index 18529513..52d15617 100644 --- a/packages/db/shared/schemas/objects/ServiceLineUpdateWithoutPaymentInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineUpdateWithoutPaymentInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineUpdateWithoutPaymentInputObjectZodSchema = exports.ServiceLineUpdateWithoutPaymentInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); @@ -50,6 +48,7 @@ const EnumServiceLineStatusFieldUpdateOperationsInput_schema_1 = require("./Enum const ClaimUpdateOneWithoutServiceLinesNestedInput_schema_1 = require("./ClaimUpdateOneWithoutServiceLinesNestedInput.schema"); const ServiceLineTransactionUpdateManyWithoutServiceLineNestedInput_schema_1 = require("./ServiceLineTransactionUpdateManyWithoutServiceLineNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ procedureCode: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), procedureDate: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -63,7 +62,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -72,7 +71,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -81,7 +80,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -90,7 +89,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -99,7 +98,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineUpdateWithoutPaymentInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineUpdateWithoutPaymentInput.schema.ts index 41043ed4..93820b5e 100644 --- a/packages/db/shared/schemas/objects/ServiceLineUpdateWithoutPaymentInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineUpdateWithoutPaymentInput.schema.ts @@ -1,17 +1,18 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; -import { EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema as EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema } from './EnumServiceLineStatusFieldUpdateOperationsInput.schema'; -import { ClaimUpdateOneWithoutServiceLinesNestedInputObjectSchema as ClaimUpdateOneWithoutServiceLinesNestedInputObjectSchema } from './ClaimUpdateOneWithoutServiceLinesNestedInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; +import { EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema as EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema } from './EnumServiceLineStatusFieldUpdateOperationsInput.schema'; +import { ClaimUpdateOneWithoutServiceLinesNestedInputObjectSchema as ClaimUpdateOneWithoutServiceLinesNestedInputObjectSchema } from './ClaimUpdateOneWithoutServiceLinesNestedInput.schema'; import { ServiceLineTransactionUpdateManyWithoutServiceLineNestedInputObjectSchema as ServiceLineTransactionUpdateManyWithoutServiceLineNestedInputObjectSchema } from './ServiceLineTransactionUpdateManyWithoutServiceLineNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ procedureCode: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), procedureDate: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -25,7 +26,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -34,7 +35,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -43,7 +44,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -52,7 +53,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -61,7 +62,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineUpdateWithoutServiceLineTransactionsInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineUpdateWithoutServiceLineTransactionsInput.schema.js index 0c6ee592..99257eec 100644 --- a/packages/db/shared/schemas/objects/ServiceLineUpdateWithoutServiceLineTransactionsInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineUpdateWithoutServiceLineTransactionsInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineUpdateWithoutServiceLineTransactionsInputObjectZodSchema = exports.ServiceLineUpdateWithoutServiceLineTransactionsInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema"); const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema"); @@ -50,6 +48,7 @@ const EnumServiceLineStatusFieldUpdateOperationsInput_schema_1 = require("./Enum const ClaimUpdateOneWithoutServiceLinesNestedInput_schema_1 = require("./ClaimUpdateOneWithoutServiceLinesNestedInput.schema"); const PaymentUpdateOneWithoutServiceLinesNestedInput_schema_1 = require("./PaymentUpdateOneWithoutServiceLinesNestedInput.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const makeSchema = () => z.object({ procedureCode: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), procedureDate: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -63,7 +62,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -72,7 +71,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -81,7 +80,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -90,7 +89,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -99,7 +98,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineUpdateWithoutServiceLineTransactionsInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineUpdateWithoutServiceLineTransactionsInput.schema.ts index 1178e1fe..dad97f80 100644 --- a/packages/db/shared/schemas/objects/ServiceLineUpdateWithoutServiceLineTransactionsInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineUpdateWithoutServiceLineTransactionsInput.schema.ts @@ -1,17 +1,18 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; -import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; -import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; -import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; -import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; -import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; -import { EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema as EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema } from './EnumServiceLineStatusFieldUpdateOperationsInput.schema'; -import { ClaimUpdateOneWithoutServiceLinesNestedInputObjectSchema as ClaimUpdateOneWithoutServiceLinesNestedInputObjectSchema } from './ClaimUpdateOneWithoutServiceLinesNestedInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { StringFieldUpdateOperationsInputObjectSchema as StringFieldUpdateOperationsInputObjectSchema } from './StringFieldUpdateOperationsInput.schema'; +import { DateTimeFieldUpdateOperationsInputObjectSchema as DateTimeFieldUpdateOperationsInputObjectSchema } from './DateTimeFieldUpdateOperationsInput.schema'; +import { NullableStringFieldUpdateOperationsInputObjectSchema as NullableStringFieldUpdateOperationsInputObjectSchema } from './NullableStringFieldUpdateOperationsInput.schema'; +import { NullableDecimalFieldUpdateOperationsInputObjectSchema as NullableDecimalFieldUpdateOperationsInputObjectSchema } from './NullableDecimalFieldUpdateOperationsInput.schema'; +import { DecimalFieldUpdateOperationsInputObjectSchema as DecimalFieldUpdateOperationsInputObjectSchema } from './DecimalFieldUpdateOperationsInput.schema'; +import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; +import { EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema as EnumServiceLineStatusFieldUpdateOperationsInputObjectSchema } from './EnumServiceLineStatusFieldUpdateOperationsInput.schema'; +import { ClaimUpdateOneWithoutServiceLinesNestedInputObjectSchema as ClaimUpdateOneWithoutServiceLinesNestedInputObjectSchema } from './ClaimUpdateOneWithoutServiceLinesNestedInput.schema'; import { PaymentUpdateOneWithoutServiceLinesNestedInputObjectSchema as PaymentUpdateOneWithoutServiceLinesNestedInputObjectSchema } from './PaymentUpdateOneWithoutServiceLinesNestedInput.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const makeSchema = () => z.object({ procedureCode: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInputObjectSchema)]).optional(), procedureDate: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -25,7 +26,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -34,7 +35,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -43,7 +44,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -52,7 +53,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -61,7 +62,7 @@ const makeSchema = () => z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineWhereInput.schema.js b/packages/db/shared/schemas/objects/ServiceLineWhereInput.schema.js index 79b2cf4e..d7ae3ee8 100644 --- a/packages/db/shared/schemas/objects/ServiceLineWhereInput.schema.js +++ b/packages/db/shared/schemas/objects/ServiceLineWhereInput.schema.js @@ -38,8 +38,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { Object.defineProperty(exports, "__esModule", { value: true }); exports.ServiceLineWhereInputObjectZodSchema = exports.ServiceLineWhereInputObjectSchema = void 0; const z = __importStar(require("zod")); -const prisma_1 = require("../../../generated/prisma"); -const decimal_js_1 = __importDefault(require("decimal.js")); const IntFilter_schema_1 = require("./IntFilter.schema"); const IntNullableFilter_schema_1 = require("./IntNullableFilter.schema"); const StringFilter_schema_1 = require("./StringFilter.schema"); @@ -55,6 +53,7 @@ const PaymentNullableScalarRelationFilter_schema_1 = require("./PaymentNullableS const PaymentWhereInput_schema_1 = require("./PaymentWhereInput.schema"); const ServiceLineTransactionListRelationFilter_schema_1 = require("./ServiceLineTransactionListRelationFilter.schema"); const decimal_helpers_1 = require("../../helpers/decimal-helpers"); +const decimal_js_1 = __importDefault(require("decimal.js")); const servicelinewhereinputSchema = z.object({ AND: z.union([z.lazy(() => exports.ServiceLineWhereInputObjectSchema), z.lazy(() => exports.ServiceLineWhereInputObjectSchema).array()]).optional(), OR: z.lazy(() => exports.ServiceLineWhereInputObjectSchema).array().optional(), @@ -74,7 +73,7 @@ const servicelinewhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -83,7 +82,7 @@ const servicelinewhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalBilled' must be a Decimal", @@ -92,7 +91,7 @@ const servicelinewhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalPaid' must be a Decimal", @@ -101,7 +100,7 @@ const servicelinewhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -110,7 +109,7 @@ const servicelinewhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(decimal_js_1.default), - z.instanceof(prisma_1.Prisma.Decimal), + z.instanceof(decimal_js_1.default), decimal_helpers_1.DecimalJSLikeSchema, ]).refine((v) => (0, decimal_helpers_1.isValidDecimalInput)(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/ServiceLineWhereInput.schema.ts b/packages/db/shared/schemas/objects/ServiceLineWhereInput.schema.ts index 5e5848c4..875a7174 100644 --- a/packages/db/shared/schemas/objects/ServiceLineWhereInput.schema.ts +++ b/packages/db/shared/schemas/objects/ServiceLineWhereInput.schema.ts @@ -1,22 +1,23 @@ import * as z from 'zod'; -import { Prisma } from '../../../generated/prisma'; -import Decimal from 'decimal.js'; -import { IntFilterObjectSchema as IntFilterObjectSchema } from './IntFilter.schema'; -import { IntNullableFilterObjectSchema as IntNullableFilterObjectSchema } from './IntNullableFilter.schema'; -import { StringFilterObjectSchema as StringFilterObjectSchema } from './StringFilter.schema'; -import { DateTimeFilterObjectSchema as DateTimeFilterObjectSchema } from './DateTimeFilter.schema'; -import { StringNullableFilterObjectSchema as StringNullableFilterObjectSchema } from './StringNullableFilter.schema'; -import { DecimalNullableFilterObjectSchema as DecimalNullableFilterObjectSchema } from './DecimalNullableFilter.schema'; -import { DecimalFilterObjectSchema as DecimalFilterObjectSchema } from './DecimalFilter.schema'; -import { EnumServiceLineStatusFilterObjectSchema as EnumServiceLineStatusFilterObjectSchema } from './EnumServiceLineStatusFilter.schema'; -import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; -import { ClaimNullableScalarRelationFilterObjectSchema as ClaimNullableScalarRelationFilterObjectSchema } from './ClaimNullableScalarRelationFilter.schema'; -import { ClaimWhereInputObjectSchema as ClaimWhereInputObjectSchema } from './ClaimWhereInput.schema'; -import { PaymentNullableScalarRelationFilterObjectSchema as PaymentNullableScalarRelationFilterObjectSchema } from './PaymentNullableScalarRelationFilter.schema'; -import { PaymentWhereInputObjectSchema as PaymentWhereInputObjectSchema } from './PaymentWhereInput.schema'; +import type { Prisma } from '../../../generated/prisma'; +import { IntFilterObjectSchema as IntFilterObjectSchema } from './IntFilter.schema'; +import { IntNullableFilterObjectSchema as IntNullableFilterObjectSchema } from './IntNullableFilter.schema'; +import { StringFilterObjectSchema as StringFilterObjectSchema } from './StringFilter.schema'; +import { DateTimeFilterObjectSchema as DateTimeFilterObjectSchema } from './DateTimeFilter.schema'; +import { StringNullableFilterObjectSchema as StringNullableFilterObjectSchema } from './StringNullableFilter.schema'; +import { DecimalNullableFilterObjectSchema as DecimalNullableFilterObjectSchema } from './DecimalNullableFilter.schema'; +import { DecimalFilterObjectSchema as DecimalFilterObjectSchema } from './DecimalFilter.schema'; +import { EnumServiceLineStatusFilterObjectSchema as EnumServiceLineStatusFilterObjectSchema } from './EnumServiceLineStatusFilter.schema'; +import { ServiceLineStatusSchema } from '../enums/ServiceLineStatus.schema'; +import { ClaimNullableScalarRelationFilterObjectSchema as ClaimNullableScalarRelationFilterObjectSchema } from './ClaimNullableScalarRelationFilter.schema'; +import { ClaimWhereInputObjectSchema as ClaimWhereInputObjectSchema } from './ClaimWhereInput.schema'; +import { PaymentNullableScalarRelationFilterObjectSchema as PaymentNullableScalarRelationFilterObjectSchema } from './PaymentNullableScalarRelationFilter.schema'; +import { PaymentWhereInputObjectSchema as PaymentWhereInputObjectSchema } from './PaymentWhereInput.schema'; import { ServiceLineTransactionListRelationFilterObjectSchema as ServiceLineTransactionListRelationFilterObjectSchema } from './ServiceLineTransactionListRelationFilter.schema' import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers'; + +import Decimal from "decimal.js"; const servicelinewhereinputSchema = z.object({ AND: z.union([z.lazy(() => ServiceLineWhereInputObjectSchema), z.lazy(() => ServiceLineWhereInputObjectSchema).array()]).optional(), OR: z.lazy(() => ServiceLineWhereInputObjectSchema).array().optional(), @@ -36,7 +37,7 @@ const servicelinewhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'allowedAmount' must be a Decimal", @@ -45,7 +46,7 @@ const servicelinewhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalBilled' must be a Decimal", @@ -54,7 +55,7 @@ const servicelinewhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalPaid' must be a Decimal", @@ -63,7 +64,7 @@ const servicelinewhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalAdjusted' must be a Decimal", @@ -72,7 +73,7 @@ const servicelinewhereinputSchema = z.object({ z.number(), z.string(), z.instanceof(Decimal), - z.instanceof(Prisma.Decimal), + z.instanceof(Decimal), DecimalJSLikeSchema, ]).refine((v) => isValidDecimalInput(v), { message: "Field 'totalDue' must be a Decimal", diff --git a/packages/db/shared/schemas/objects/UserCountOutputTypeCountLabRxTemplatesArgs.schema.js b/packages/db/shared/schemas/objects/UserCountOutputTypeCountLabRxTemplatesArgs.schema.js new file mode 100644 index 00000000..0e1bb229 --- /dev/null +++ b/packages/db/shared/schemas/objects/UserCountOutputTypeCountLabRxTemplatesArgs.schema.js @@ -0,0 +1,43 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.UserCountOutputTypeCountLabRxTemplatesArgsObjectZodSchema = exports.UserCountOutputTypeCountLabRxTemplatesArgsObjectSchema = void 0; +const z = __importStar(require("zod")); +const LabRxTemplateWhereInput_schema_1 = require("./LabRxTemplateWhereInput.schema"); +const makeSchema = () => z.object({ + where: z.lazy(() => LabRxTemplateWhereInput_schema_1.LabRxTemplateWhereInputObjectSchema).optional() +}).strict(); +exports.UserCountOutputTypeCountLabRxTemplatesArgsObjectSchema = makeSchema(); +exports.UserCountOutputTypeCountLabRxTemplatesArgsObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserCountOutputTypeSelect.schema.js b/packages/db/shared/schemas/objects/UserCountOutputTypeSelect.schema.js index 1a4523b9..274269bf 100644 --- a/packages/db/shared/schemas/objects/UserCountOutputTypeSelect.schema.js +++ b/packages/db/shared/schemas/objects/UserCountOutputTypeSelect.schema.js @@ -51,6 +51,7 @@ const UserCountOutputTypeCountCloudFilesArgs_schema_1 = require("./UserCountOutp const UserCountOutputTypeCountCommunicationsArgs_schema_1 = require("./UserCountOutputTypeCountCommunicationsArgs.schema"); const UserCountOutputTypeCountInsuranceContactsArgs_schema_1 = require("./UserCountOutputTypeCountInsuranceContactsArgs.schema"); const UserCountOutputTypeCountPatientConversationsArgs_schema_1 = require("./UserCountOutputTypeCountPatientConversationsArgs.schema"); +const UserCountOutputTypeCountLabRxTemplatesArgs_schema_1 = require("./UserCountOutputTypeCountLabRxTemplatesArgs.schema"); const makeSchema = () => z.object({ patients: z.union([z.boolean(), z.lazy(() => UserCountOutputTypeCountPatientsArgs_schema_1.UserCountOutputTypeCountPatientsArgsObjectSchema)]).optional(), appointments: z.union([z.boolean(), z.lazy(() => UserCountOutputTypeCountAppointmentsArgs_schema_1.UserCountOutputTypeCountAppointmentsArgsObjectSchema)]).optional(), @@ -67,7 +68,8 @@ const makeSchema = () => z.object({ cloudFiles: z.union([z.boolean(), z.lazy(() => UserCountOutputTypeCountCloudFilesArgs_schema_1.UserCountOutputTypeCountCloudFilesArgsObjectSchema)]).optional(), communications: z.union([z.boolean(), z.lazy(() => UserCountOutputTypeCountCommunicationsArgs_schema_1.UserCountOutputTypeCountCommunicationsArgsObjectSchema)]).optional(), insuranceContacts: z.union([z.boolean(), z.lazy(() => UserCountOutputTypeCountInsuranceContactsArgs_schema_1.UserCountOutputTypeCountInsuranceContactsArgsObjectSchema)]).optional(), - patientConversations: z.union([z.boolean(), z.lazy(() => UserCountOutputTypeCountPatientConversationsArgs_schema_1.UserCountOutputTypeCountPatientConversationsArgsObjectSchema)]).optional() + patientConversations: z.union([z.boolean(), z.lazy(() => UserCountOutputTypeCountPatientConversationsArgs_schema_1.UserCountOutputTypeCountPatientConversationsArgsObjectSchema)]).optional(), + labRxTemplates: z.union([z.boolean(), z.lazy(() => UserCountOutputTypeCountLabRxTemplatesArgs_schema_1.UserCountOutputTypeCountLabRxTemplatesArgsObjectSchema)]).optional() }).strict(); exports.UserCountOutputTypeSelectObjectSchema = makeSchema(); exports.UserCountOutputTypeSelectObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserCreateInput.schema.js b/packages/db/shared/schemas/objects/UserCreateInput.schema.js index 6425289f..09345270 100644 --- a/packages/db/shared/schemas/objects/UserCreateInput.schema.js +++ b/packages/db/shared/schemas/objects/UserCreateInput.schema.js @@ -56,6 +56,8 @@ const OfficeContactCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeC const ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotCreateNestedOneWithoutUserInput.schema"); const InsuranceContactCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactCreateNestedManyWithoutUserInput.schema"); const PatientConversationCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ username: z.string(), password: z.string(), @@ -86,7 +88,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactCreateNestedOneWithoutUserInput_schema_1.OfficeContactCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactCreateNestedManyWithoutUserInput_schema_1.InsuranceContactCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserCreateInputObjectSchema = makeSchema(); exports.UserCreateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserCreateNestedOneWithoutLabRxTemplatesInput.schema.js b/packages/db/shared/schemas/objects/UserCreateNestedOneWithoutLabRxTemplatesInput.schema.js new file mode 100644 index 00000000..e48a7995 --- /dev/null +++ b/packages/db/shared/schemas/objects/UserCreateNestedOneWithoutLabRxTemplatesInput.schema.js @@ -0,0 +1,48 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.UserCreateNestedOneWithoutLabRxTemplatesInputObjectZodSchema = exports.UserCreateNestedOneWithoutLabRxTemplatesInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const UserCreateWithoutLabRxTemplatesInput_schema_1 = require("./UserCreateWithoutLabRxTemplatesInput.schema"); +const UserUncheckedCreateWithoutLabRxTemplatesInput_schema_1 = require("./UserUncheckedCreateWithoutLabRxTemplatesInput.schema"); +const UserCreateOrConnectWithoutLabRxTemplatesInput_schema_1 = require("./UserCreateOrConnectWithoutLabRxTemplatesInput.schema"); +const UserWhereUniqueInput_schema_1 = require("./UserWhereUniqueInput.schema"); +const makeSchema = () => z.object({ + create: z.union([z.lazy(() => UserCreateWithoutLabRxTemplatesInput_schema_1.UserCreateWithoutLabRxTemplatesInputObjectSchema), z.lazy(() => UserUncheckedCreateWithoutLabRxTemplatesInput_schema_1.UserUncheckedCreateWithoutLabRxTemplatesInputObjectSchema)]).optional(), + connectOrCreate: z.lazy(() => UserCreateOrConnectWithoutLabRxTemplatesInput_schema_1.UserCreateOrConnectWithoutLabRxTemplatesInputObjectSchema).optional(), + connect: z.lazy(() => UserWhereUniqueInput_schema_1.UserWhereUniqueInputObjectSchema).optional() +}).strict(); +exports.UserCreateNestedOneWithoutLabRxTemplatesInputObjectSchema = makeSchema(); +exports.UserCreateNestedOneWithoutLabRxTemplatesInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserCreateNestedOneWithoutSeleniumSettingsInput.schema.js b/packages/db/shared/schemas/objects/UserCreateNestedOneWithoutSeleniumSettingsInput.schema.js new file mode 100644 index 00000000..4bbb3037 --- /dev/null +++ b/packages/db/shared/schemas/objects/UserCreateNestedOneWithoutSeleniumSettingsInput.schema.js @@ -0,0 +1,48 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.UserCreateNestedOneWithoutSeleniumSettingsInputObjectZodSchema = exports.UserCreateNestedOneWithoutSeleniumSettingsInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const UserCreateWithoutSeleniumSettingsInput_schema_1 = require("./UserCreateWithoutSeleniumSettingsInput.schema"); +const UserUncheckedCreateWithoutSeleniumSettingsInput_schema_1 = require("./UserUncheckedCreateWithoutSeleniumSettingsInput.schema"); +const UserCreateOrConnectWithoutSeleniumSettingsInput_schema_1 = require("./UserCreateOrConnectWithoutSeleniumSettingsInput.schema"); +const UserWhereUniqueInput_schema_1 = require("./UserWhereUniqueInput.schema"); +const makeSchema = () => z.object({ + create: z.union([z.lazy(() => UserCreateWithoutSeleniumSettingsInput_schema_1.UserCreateWithoutSeleniumSettingsInputObjectSchema), z.lazy(() => UserUncheckedCreateWithoutSeleniumSettingsInput_schema_1.UserUncheckedCreateWithoutSeleniumSettingsInputObjectSchema)]).optional(), + connectOrCreate: z.lazy(() => UserCreateOrConnectWithoutSeleniumSettingsInput_schema_1.UserCreateOrConnectWithoutSeleniumSettingsInputObjectSchema).optional(), + connect: z.lazy(() => UserWhereUniqueInput_schema_1.UserWhereUniqueInputObjectSchema).optional() +}).strict(); +exports.UserCreateNestedOneWithoutSeleniumSettingsInputObjectSchema = makeSchema(); +exports.UserCreateNestedOneWithoutSeleniumSettingsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserCreateOrConnectWithoutLabRxTemplatesInput.schema.js b/packages/db/shared/schemas/objects/UserCreateOrConnectWithoutLabRxTemplatesInput.schema.js new file mode 100644 index 00000000..9cb0645f --- /dev/null +++ b/packages/db/shared/schemas/objects/UserCreateOrConnectWithoutLabRxTemplatesInput.schema.js @@ -0,0 +1,46 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.UserCreateOrConnectWithoutLabRxTemplatesInputObjectZodSchema = exports.UserCreateOrConnectWithoutLabRxTemplatesInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const UserWhereUniqueInput_schema_1 = require("./UserWhereUniqueInput.schema"); +const UserCreateWithoutLabRxTemplatesInput_schema_1 = require("./UserCreateWithoutLabRxTemplatesInput.schema"); +const UserUncheckedCreateWithoutLabRxTemplatesInput_schema_1 = require("./UserUncheckedCreateWithoutLabRxTemplatesInput.schema"); +const makeSchema = () => z.object({ + where: z.lazy(() => UserWhereUniqueInput_schema_1.UserWhereUniqueInputObjectSchema), + create: z.union([z.lazy(() => UserCreateWithoutLabRxTemplatesInput_schema_1.UserCreateWithoutLabRxTemplatesInputObjectSchema), z.lazy(() => UserUncheckedCreateWithoutLabRxTemplatesInput_schema_1.UserUncheckedCreateWithoutLabRxTemplatesInputObjectSchema)]) +}).strict(); +exports.UserCreateOrConnectWithoutLabRxTemplatesInputObjectSchema = makeSchema(); +exports.UserCreateOrConnectWithoutLabRxTemplatesInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserCreateOrConnectWithoutSeleniumSettingsInput.schema.js b/packages/db/shared/schemas/objects/UserCreateOrConnectWithoutSeleniumSettingsInput.schema.js new file mode 100644 index 00000000..6fa2cb44 --- /dev/null +++ b/packages/db/shared/schemas/objects/UserCreateOrConnectWithoutSeleniumSettingsInput.schema.js @@ -0,0 +1,46 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.UserCreateOrConnectWithoutSeleniumSettingsInputObjectZodSchema = exports.UserCreateOrConnectWithoutSeleniumSettingsInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const UserWhereUniqueInput_schema_1 = require("./UserWhereUniqueInput.schema"); +const UserCreateWithoutSeleniumSettingsInput_schema_1 = require("./UserCreateWithoutSeleniumSettingsInput.schema"); +const UserUncheckedCreateWithoutSeleniumSettingsInput_schema_1 = require("./UserUncheckedCreateWithoutSeleniumSettingsInput.schema"); +const makeSchema = () => z.object({ + where: z.lazy(() => UserWhereUniqueInput_schema_1.UserWhereUniqueInputObjectSchema), + create: z.union([z.lazy(() => UserCreateWithoutSeleniumSettingsInput_schema_1.UserCreateWithoutSeleniumSettingsInputObjectSchema), z.lazy(() => UserUncheckedCreateWithoutSeleniumSettingsInput_schema_1.UserUncheckedCreateWithoutSeleniumSettingsInputObjectSchema)]) +}).strict(); +exports.UserCreateOrConnectWithoutSeleniumSettingsInputObjectSchema = makeSchema(); +exports.UserCreateOrConnectWithoutSeleniumSettingsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserCreateWithoutAiSettingsInput.schema.js b/packages/db/shared/schemas/objects/UserCreateWithoutAiSettingsInput.schema.js index 6b34e660..d5c898fb 100644 --- a/packages/db/shared/schemas/objects/UserCreateWithoutAiSettingsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserCreateWithoutAiSettingsInput.schema.js @@ -55,6 +55,8 @@ const OfficeContactCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeC const ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotCreateNestedOneWithoutUserInput.schema"); const InsuranceContactCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactCreateNestedManyWithoutUserInput.schema"); const PatientConversationCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ username: z.string(), password: z.string(), @@ -84,7 +86,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactCreateNestedOneWithoutUserInput_schema_1.OfficeContactCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactCreateNestedManyWithoutUserInput_schema_1.InsuranceContactCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserCreateWithoutAiSettingsInputObjectSchema = makeSchema(); exports.UserCreateWithoutAiSettingsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserCreateWithoutAppointmentsInput.schema.js b/packages/db/shared/schemas/objects/UserCreateWithoutAppointmentsInput.schema.js index 0eacf184..6d8bb486 100644 --- a/packages/db/shared/schemas/objects/UserCreateWithoutAppointmentsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserCreateWithoutAppointmentsInput.schema.js @@ -55,6 +55,8 @@ const OfficeContactCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeC const ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotCreateNestedOneWithoutUserInput.schema"); const InsuranceContactCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactCreateNestedManyWithoutUserInput.schema"); const PatientConversationCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ username: z.string(), password: z.string(), @@ -84,7 +86,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactCreateNestedOneWithoutUserInput_schema_1.OfficeContactCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactCreateNestedManyWithoutUserInput_schema_1.InsuranceContactCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserCreateWithoutAppointmentsInputObjectSchema = makeSchema(); exports.UserCreateWithoutAppointmentsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserCreateWithoutBackupDestinationsInput.schema.js b/packages/db/shared/schemas/objects/UserCreateWithoutBackupDestinationsInput.schema.js index 8910f0d5..e2cc6cec 100644 --- a/packages/db/shared/schemas/objects/UserCreateWithoutBackupDestinationsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserCreateWithoutBackupDestinationsInput.schema.js @@ -55,6 +55,8 @@ const OfficeContactCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeC const ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotCreateNestedOneWithoutUserInput.schema"); const InsuranceContactCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactCreateNestedManyWithoutUserInput.schema"); const PatientConversationCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ username: z.string(), password: z.string(), @@ -84,7 +86,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactCreateNestedOneWithoutUserInput_schema_1.OfficeContactCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactCreateNestedManyWithoutUserInput_schema_1.InsuranceContactCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserCreateWithoutBackupDestinationsInputObjectSchema = makeSchema(); exports.UserCreateWithoutBackupDestinationsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserCreateWithoutBackupsInput.schema.js b/packages/db/shared/schemas/objects/UserCreateWithoutBackupsInput.schema.js index b6efaaa3..6f13ab2d 100644 --- a/packages/db/shared/schemas/objects/UserCreateWithoutBackupsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserCreateWithoutBackupsInput.schema.js @@ -55,6 +55,8 @@ const OfficeContactCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeC const ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotCreateNestedOneWithoutUserInput.schema"); const InsuranceContactCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactCreateNestedManyWithoutUserInput.schema"); const PatientConversationCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ username: z.string(), password: z.string(), @@ -84,7 +86,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactCreateNestedOneWithoutUserInput_schema_1.OfficeContactCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactCreateNestedManyWithoutUserInput_schema_1.InsuranceContactCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserCreateWithoutBackupsInputObjectSchema = makeSchema(); exports.UserCreateWithoutBackupsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserCreateWithoutClaimsInput.schema.js b/packages/db/shared/schemas/objects/UserCreateWithoutClaimsInput.schema.js index b5475243..0e817a62 100644 --- a/packages/db/shared/schemas/objects/UserCreateWithoutClaimsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserCreateWithoutClaimsInput.schema.js @@ -55,6 +55,8 @@ const OfficeContactCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeC const ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotCreateNestedOneWithoutUserInput.schema"); const InsuranceContactCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactCreateNestedManyWithoutUserInput.schema"); const PatientConversationCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ username: z.string(), password: z.string(), @@ -84,7 +86,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactCreateNestedOneWithoutUserInput_schema_1.OfficeContactCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactCreateNestedManyWithoutUserInput_schema_1.InsuranceContactCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserCreateWithoutClaimsInputObjectSchema = makeSchema(); exports.UserCreateWithoutClaimsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserCreateWithoutCloudFilesInput.schema.js b/packages/db/shared/schemas/objects/UserCreateWithoutCloudFilesInput.schema.js index 90737e52..d49a29a6 100644 --- a/packages/db/shared/schemas/objects/UserCreateWithoutCloudFilesInput.schema.js +++ b/packages/db/shared/schemas/objects/UserCreateWithoutCloudFilesInput.schema.js @@ -55,6 +55,8 @@ const OfficeContactCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeC const ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotCreateNestedOneWithoutUserInput.schema"); const InsuranceContactCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactCreateNestedManyWithoutUserInput.schema"); const PatientConversationCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ username: z.string(), password: z.string(), @@ -84,7 +86,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactCreateNestedOneWithoutUserInput_schema_1.OfficeContactCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactCreateNestedManyWithoutUserInput_schema_1.InsuranceContactCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserCreateWithoutCloudFilesInputObjectSchema = makeSchema(); exports.UserCreateWithoutCloudFilesInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserCreateWithoutCloudFoldersInput.schema.js b/packages/db/shared/schemas/objects/UserCreateWithoutCloudFoldersInput.schema.js index e348f004..a2bdb9e0 100644 --- a/packages/db/shared/schemas/objects/UserCreateWithoutCloudFoldersInput.schema.js +++ b/packages/db/shared/schemas/objects/UserCreateWithoutCloudFoldersInput.schema.js @@ -55,6 +55,8 @@ const OfficeContactCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeC const ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotCreateNestedOneWithoutUserInput.schema"); const InsuranceContactCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactCreateNestedManyWithoutUserInput.schema"); const PatientConversationCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ username: z.string(), password: z.string(), @@ -84,7 +86,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactCreateNestedOneWithoutUserInput_schema_1.OfficeContactCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactCreateNestedManyWithoutUserInput_schema_1.InsuranceContactCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserCreateWithoutCloudFoldersInputObjectSchema = makeSchema(); exports.UserCreateWithoutCloudFoldersInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserCreateWithoutCommunicationsInput.schema.js b/packages/db/shared/schemas/objects/UserCreateWithoutCommunicationsInput.schema.js index 4bb4afa7..03a07572 100644 --- a/packages/db/shared/schemas/objects/UserCreateWithoutCommunicationsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserCreateWithoutCommunicationsInput.schema.js @@ -55,6 +55,8 @@ const OfficeContactCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeC const ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotCreateNestedOneWithoutUserInput.schema"); const InsuranceContactCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactCreateNestedManyWithoutUserInput.schema"); const PatientConversationCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ username: z.string(), password: z.string(), @@ -84,7 +86,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactCreateNestedOneWithoutUserInput_schema_1.OfficeContactCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactCreateNestedManyWithoutUserInput_schema_1.InsuranceContactCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserCreateWithoutCommunicationsInputObjectSchema = makeSchema(); exports.UserCreateWithoutCommunicationsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserCreateWithoutInsuranceContactsInput.schema.js b/packages/db/shared/schemas/objects/UserCreateWithoutInsuranceContactsInput.schema.js index 71fe7d39..db185f5b 100644 --- a/packages/db/shared/schemas/objects/UserCreateWithoutInsuranceContactsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserCreateWithoutInsuranceContactsInput.schema.js @@ -55,6 +55,8 @@ const OfficeHoursCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeHou const OfficeContactCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeContactCreateNestedOneWithoutUserInput.schema"); const ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotCreateNestedOneWithoutUserInput.schema"); const PatientConversationCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ username: z.string(), password: z.string(), @@ -84,7 +86,9 @@ const makeSchema = () => z.object({ officeHours: z.lazy(() => OfficeHoursCreateNestedOneWithoutUserInput_schema_1.OfficeHoursCreateNestedOneWithoutUserInputObjectSchema).optional(), officeContact: z.lazy(() => OfficeContactCreateNestedOneWithoutUserInput_schema_1.OfficeContactCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotCreateNestedOneWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserCreateWithoutInsuranceContactsInputObjectSchema = makeSchema(); exports.UserCreateWithoutInsuranceContactsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserCreateWithoutInsuranceCredentialsInput.schema.js b/packages/db/shared/schemas/objects/UserCreateWithoutInsuranceCredentialsInput.schema.js index 3ad8be7e..06b25feb 100644 --- a/packages/db/shared/schemas/objects/UserCreateWithoutInsuranceCredentialsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserCreateWithoutInsuranceCredentialsInput.schema.js @@ -55,6 +55,8 @@ const OfficeContactCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeC const ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotCreateNestedOneWithoutUserInput.schema"); const InsuranceContactCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactCreateNestedManyWithoutUserInput.schema"); const PatientConversationCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ username: z.string(), password: z.string(), @@ -84,7 +86,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactCreateNestedOneWithoutUserInput_schema_1.OfficeContactCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactCreateNestedManyWithoutUserInput_schema_1.InsuranceContactCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserCreateWithoutInsuranceCredentialsInputObjectSchema = makeSchema(); exports.UserCreateWithoutInsuranceCredentialsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserCreateWithoutLabRxTemplatesInput.schema.js b/packages/db/shared/schemas/objects/UserCreateWithoutLabRxTemplatesInput.schema.js new file mode 100644 index 00000000..c7e8b07c --- /dev/null +++ b/packages/db/shared/schemas/objects/UserCreateWithoutLabRxTemplatesInput.schema.js @@ -0,0 +1,94 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.UserCreateWithoutLabRxTemplatesInputObjectZodSchema = exports.UserCreateWithoutLabRxTemplatesInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const PatientCreateNestedManyWithoutUserInput_schema_1 = require("./PatientCreateNestedManyWithoutUserInput.schema"); +const AppointmentCreateNestedManyWithoutUserInput_schema_1 = require("./AppointmentCreateNestedManyWithoutUserInput.schema"); +const StaffCreateNestedManyWithoutUserInput_schema_1 = require("./StaffCreateNestedManyWithoutUserInput.schema"); +const NpiProviderCreateNestedManyWithoutUserInput_schema_1 = require("./NpiProviderCreateNestedManyWithoutUserInput.schema"); +const ClaimCreateNestedManyWithoutUserInput_schema_1 = require("./ClaimCreateNestedManyWithoutUserInput.schema"); +const InsuranceCredentialCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceCredentialCreateNestedManyWithoutUserInput.schema"); +const ShoppingVendorCreateNestedManyWithoutUserInput_schema_1 = require("./ShoppingVendorCreateNestedManyWithoutUserInput.schema"); +const PaymentCreateNestedManyWithoutUpdatedByInput_schema_1 = require("./PaymentCreateNestedManyWithoutUpdatedByInput.schema"); +const DatabaseBackupCreateNestedManyWithoutUserInput_schema_1 = require("./DatabaseBackupCreateNestedManyWithoutUserInput.schema"); +const BackupDestinationCreateNestedManyWithoutUserInput_schema_1 = require("./BackupDestinationCreateNestedManyWithoutUserInput.schema"); +const NotificationCreateNestedManyWithoutUserInput_schema_1 = require("./NotificationCreateNestedManyWithoutUserInput.schema"); +const CloudFolderCreateNestedManyWithoutUserInput_schema_1 = require("./CloudFolderCreateNestedManyWithoutUserInput.schema"); +const CloudFileCreateNestedManyWithoutUserInput_schema_1 = require("./CloudFileCreateNestedManyWithoutUserInput.schema"); +const CommunicationCreateNestedManyWithoutUserInput_schema_1 = require("./CommunicationCreateNestedManyWithoutUserInput.schema"); +const TwilioSettingsCreateNestedOneWithoutUserInput_schema_1 = require("./TwilioSettingsCreateNestedOneWithoutUserInput.schema"); +const AiSettingsCreateNestedOneWithoutUserInput_schema_1 = require("./AiSettingsCreateNestedOneWithoutUserInput.schema"); +const OfficeHoursCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeHoursCreateNestedOneWithoutUserInput.schema"); +const OfficeContactCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeContactCreateNestedOneWithoutUserInput.schema"); +const ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotCreateNestedOneWithoutUserInput.schema"); +const InsuranceContactCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactCreateNestedManyWithoutUserInput.schema"); +const PatientConversationCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsCreateNestedOneWithoutUserInput.schema"); +const makeSchema = () => z.object({ + username: z.string(), + password: z.string(), + autoBackupEnabled: z.boolean().optional(), + autoBackupHour: z.number().int().optional(), + usbBackupEnabled: z.boolean().optional(), + usbBackupHour: z.number().int().optional(), + autoMhCheckEnabled: z.boolean().optional(), + autoMhCheckDayOfWeek: z.number().int().optional(), + autoMhCheckHour: z.number().int().optional(), + patients: z.lazy(() => PatientCreateNestedManyWithoutUserInput_schema_1.PatientCreateNestedManyWithoutUserInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentCreateNestedManyWithoutUserInput_schema_1.AppointmentCreateNestedManyWithoutUserInputObjectSchema).optional(), + staff: z.lazy(() => StaffCreateNestedManyWithoutUserInput_schema_1.StaffCreateNestedManyWithoutUserInputObjectSchema).optional(), + npiProviders: z.lazy(() => NpiProviderCreateNestedManyWithoutUserInput_schema_1.NpiProviderCreateNestedManyWithoutUserInputObjectSchema).optional(), + claims: z.lazy(() => ClaimCreateNestedManyWithoutUserInput_schema_1.ClaimCreateNestedManyWithoutUserInputObjectSchema).optional(), + insuranceCredentials: z.lazy(() => InsuranceCredentialCreateNestedManyWithoutUserInput_schema_1.InsuranceCredentialCreateNestedManyWithoutUserInputObjectSchema).optional(), + shoppingVendors: z.lazy(() => ShoppingVendorCreateNestedManyWithoutUserInput_schema_1.ShoppingVendorCreateNestedManyWithoutUserInputObjectSchema).optional(), + updatedPayments: z.lazy(() => PaymentCreateNestedManyWithoutUpdatedByInput_schema_1.PaymentCreateNestedManyWithoutUpdatedByInputObjectSchema).optional(), + backups: z.lazy(() => DatabaseBackupCreateNestedManyWithoutUserInput_schema_1.DatabaseBackupCreateNestedManyWithoutUserInputObjectSchema).optional(), + backupDestinations: z.lazy(() => BackupDestinationCreateNestedManyWithoutUserInput_schema_1.BackupDestinationCreateNestedManyWithoutUserInputObjectSchema).optional(), + notifications: z.lazy(() => NotificationCreateNestedManyWithoutUserInput_schema_1.NotificationCreateNestedManyWithoutUserInputObjectSchema).optional(), + cloudFolders: z.lazy(() => CloudFolderCreateNestedManyWithoutUserInput_schema_1.CloudFolderCreateNestedManyWithoutUserInputObjectSchema).optional(), + cloudFiles: z.lazy(() => CloudFileCreateNestedManyWithoutUserInput_schema_1.CloudFileCreateNestedManyWithoutUserInputObjectSchema).optional(), + communications: z.lazy(() => CommunicationCreateNestedManyWithoutUserInput_schema_1.CommunicationCreateNestedManyWithoutUserInputObjectSchema).optional(), + twilioSettings: z.lazy(() => TwilioSettingsCreateNestedOneWithoutUserInput_schema_1.TwilioSettingsCreateNestedOneWithoutUserInputObjectSchema).optional(), + aiSettings: z.lazy(() => AiSettingsCreateNestedOneWithoutUserInput_schema_1.AiSettingsCreateNestedOneWithoutUserInputObjectSchema).optional(), + officeHours: z.lazy(() => OfficeHoursCreateNestedOneWithoutUserInput_schema_1.OfficeHoursCreateNestedOneWithoutUserInputObjectSchema).optional(), + officeContact: z.lazy(() => OfficeContactCreateNestedOneWithoutUserInput_schema_1.OfficeContactCreateNestedOneWithoutUserInputObjectSchema).optional(), + procedureTimeslot: z.lazy(() => ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotCreateNestedOneWithoutUserInputObjectSchema).optional(), + insuranceContacts: z.lazy(() => InsuranceContactCreateNestedManyWithoutUserInput_schema_1.InsuranceContactCreateNestedManyWithoutUserInputObjectSchema).optional(), + patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsCreateNestedOneWithoutUserInputObjectSchema).optional() +}).strict(); +exports.UserCreateWithoutLabRxTemplatesInputObjectSchema = makeSchema(); +exports.UserCreateWithoutLabRxTemplatesInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserCreateWithoutNotificationsInput.schema.js b/packages/db/shared/schemas/objects/UserCreateWithoutNotificationsInput.schema.js index 41ffd0ab..d41ca231 100644 --- a/packages/db/shared/schemas/objects/UserCreateWithoutNotificationsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserCreateWithoutNotificationsInput.schema.js @@ -55,6 +55,8 @@ const OfficeContactCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeC const ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotCreateNestedOneWithoutUserInput.schema"); const InsuranceContactCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactCreateNestedManyWithoutUserInput.schema"); const PatientConversationCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ username: z.string(), password: z.string(), @@ -84,7 +86,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactCreateNestedOneWithoutUserInput_schema_1.OfficeContactCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactCreateNestedManyWithoutUserInput_schema_1.InsuranceContactCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserCreateWithoutNotificationsInputObjectSchema = makeSchema(); exports.UserCreateWithoutNotificationsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserCreateWithoutNpiProvidersInput.schema.js b/packages/db/shared/schemas/objects/UserCreateWithoutNpiProvidersInput.schema.js index c2e14abe..2833ca17 100644 --- a/packages/db/shared/schemas/objects/UserCreateWithoutNpiProvidersInput.schema.js +++ b/packages/db/shared/schemas/objects/UserCreateWithoutNpiProvidersInput.schema.js @@ -55,6 +55,8 @@ const OfficeContactCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeC const ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotCreateNestedOneWithoutUserInput.schema"); const InsuranceContactCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactCreateNestedManyWithoutUserInput.schema"); const PatientConversationCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ username: z.string(), password: z.string(), @@ -84,7 +86,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactCreateNestedOneWithoutUserInput_schema_1.OfficeContactCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactCreateNestedManyWithoutUserInput_schema_1.InsuranceContactCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserCreateWithoutNpiProvidersInputObjectSchema = makeSchema(); exports.UserCreateWithoutNpiProvidersInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserCreateWithoutOfficeContactInput.schema.js b/packages/db/shared/schemas/objects/UserCreateWithoutOfficeContactInput.schema.js index 3e7d72bd..00c6e619 100644 --- a/packages/db/shared/schemas/objects/UserCreateWithoutOfficeContactInput.schema.js +++ b/packages/db/shared/schemas/objects/UserCreateWithoutOfficeContactInput.schema.js @@ -55,6 +55,8 @@ const OfficeHoursCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeHou const ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotCreateNestedOneWithoutUserInput.schema"); const InsuranceContactCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactCreateNestedManyWithoutUserInput.schema"); const PatientConversationCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ username: z.string(), password: z.string(), @@ -84,7 +86,9 @@ const makeSchema = () => z.object({ officeHours: z.lazy(() => OfficeHoursCreateNestedOneWithoutUserInput_schema_1.OfficeHoursCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactCreateNestedManyWithoutUserInput_schema_1.InsuranceContactCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserCreateWithoutOfficeContactInputObjectSchema = makeSchema(); exports.UserCreateWithoutOfficeContactInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserCreateWithoutOfficeHoursInput.schema.js b/packages/db/shared/schemas/objects/UserCreateWithoutOfficeHoursInput.schema.js index da988020..738b20b1 100644 --- a/packages/db/shared/schemas/objects/UserCreateWithoutOfficeHoursInput.schema.js +++ b/packages/db/shared/schemas/objects/UserCreateWithoutOfficeHoursInput.schema.js @@ -55,6 +55,8 @@ const OfficeContactCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeC const ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotCreateNestedOneWithoutUserInput.schema"); const InsuranceContactCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactCreateNestedManyWithoutUserInput.schema"); const PatientConversationCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ username: z.string(), password: z.string(), @@ -84,7 +86,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactCreateNestedOneWithoutUserInput_schema_1.OfficeContactCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactCreateNestedManyWithoutUserInput_schema_1.InsuranceContactCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserCreateWithoutOfficeHoursInputObjectSchema = makeSchema(); exports.UserCreateWithoutOfficeHoursInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserCreateWithoutPatientConversationsInput.schema.js b/packages/db/shared/schemas/objects/UserCreateWithoutPatientConversationsInput.schema.js index af38c8b2..8004f7a5 100644 --- a/packages/db/shared/schemas/objects/UserCreateWithoutPatientConversationsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserCreateWithoutPatientConversationsInput.schema.js @@ -55,6 +55,8 @@ const OfficeHoursCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeHou const OfficeContactCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeContactCreateNestedOneWithoutUserInput.schema"); const ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotCreateNestedOneWithoutUserInput.schema"); const InsuranceContactCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ username: z.string(), password: z.string(), @@ -84,7 +86,9 @@ const makeSchema = () => z.object({ officeHours: z.lazy(() => OfficeHoursCreateNestedOneWithoutUserInput_schema_1.OfficeHoursCreateNestedOneWithoutUserInputObjectSchema).optional(), officeContact: z.lazy(() => OfficeContactCreateNestedOneWithoutUserInput_schema_1.OfficeContactCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotCreateNestedOneWithoutUserInputObjectSchema).optional(), - insuranceContacts: z.lazy(() => InsuranceContactCreateNestedManyWithoutUserInput_schema_1.InsuranceContactCreateNestedManyWithoutUserInputObjectSchema).optional() + insuranceContacts: z.lazy(() => InsuranceContactCreateNestedManyWithoutUserInput_schema_1.InsuranceContactCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserCreateWithoutPatientConversationsInputObjectSchema = makeSchema(); exports.UserCreateWithoutPatientConversationsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserCreateWithoutPatientsInput.schema.js b/packages/db/shared/schemas/objects/UserCreateWithoutPatientsInput.schema.js index 3f53489b..5b117f93 100644 --- a/packages/db/shared/schemas/objects/UserCreateWithoutPatientsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserCreateWithoutPatientsInput.schema.js @@ -55,6 +55,8 @@ const OfficeContactCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeC const ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotCreateNestedOneWithoutUserInput.schema"); const InsuranceContactCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactCreateNestedManyWithoutUserInput.schema"); const PatientConversationCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ username: z.string(), password: z.string(), @@ -84,7 +86,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactCreateNestedOneWithoutUserInput_schema_1.OfficeContactCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactCreateNestedManyWithoutUserInput_schema_1.InsuranceContactCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserCreateWithoutPatientsInputObjectSchema = makeSchema(); exports.UserCreateWithoutPatientsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserCreateWithoutProcedureTimeslotInput.schema.js b/packages/db/shared/schemas/objects/UserCreateWithoutProcedureTimeslotInput.schema.js index 9a551a82..c9ac1b6d 100644 --- a/packages/db/shared/schemas/objects/UserCreateWithoutProcedureTimeslotInput.schema.js +++ b/packages/db/shared/schemas/objects/UserCreateWithoutProcedureTimeslotInput.schema.js @@ -55,6 +55,8 @@ const OfficeHoursCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeHou const OfficeContactCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeContactCreateNestedOneWithoutUserInput.schema"); const InsuranceContactCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactCreateNestedManyWithoutUserInput.schema"); const PatientConversationCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ username: z.string(), password: z.string(), @@ -84,7 +86,9 @@ const makeSchema = () => z.object({ officeHours: z.lazy(() => OfficeHoursCreateNestedOneWithoutUserInput_schema_1.OfficeHoursCreateNestedOneWithoutUserInputObjectSchema).optional(), officeContact: z.lazy(() => OfficeContactCreateNestedOneWithoutUserInput_schema_1.OfficeContactCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactCreateNestedManyWithoutUserInput_schema_1.InsuranceContactCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserCreateWithoutProcedureTimeslotInputObjectSchema = makeSchema(); exports.UserCreateWithoutProcedureTimeslotInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserCreateWithoutSeleniumSettingsInput.schema.js b/packages/db/shared/schemas/objects/UserCreateWithoutSeleniumSettingsInput.schema.js new file mode 100644 index 00000000..76793692 --- /dev/null +++ b/packages/db/shared/schemas/objects/UserCreateWithoutSeleniumSettingsInput.schema.js @@ -0,0 +1,94 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.UserCreateWithoutSeleniumSettingsInputObjectZodSchema = exports.UserCreateWithoutSeleniumSettingsInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const PatientCreateNestedManyWithoutUserInput_schema_1 = require("./PatientCreateNestedManyWithoutUserInput.schema"); +const AppointmentCreateNestedManyWithoutUserInput_schema_1 = require("./AppointmentCreateNestedManyWithoutUserInput.schema"); +const StaffCreateNestedManyWithoutUserInput_schema_1 = require("./StaffCreateNestedManyWithoutUserInput.schema"); +const NpiProviderCreateNestedManyWithoutUserInput_schema_1 = require("./NpiProviderCreateNestedManyWithoutUserInput.schema"); +const ClaimCreateNestedManyWithoutUserInput_schema_1 = require("./ClaimCreateNestedManyWithoutUserInput.schema"); +const InsuranceCredentialCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceCredentialCreateNestedManyWithoutUserInput.schema"); +const ShoppingVendorCreateNestedManyWithoutUserInput_schema_1 = require("./ShoppingVendorCreateNestedManyWithoutUserInput.schema"); +const PaymentCreateNestedManyWithoutUpdatedByInput_schema_1 = require("./PaymentCreateNestedManyWithoutUpdatedByInput.schema"); +const DatabaseBackupCreateNestedManyWithoutUserInput_schema_1 = require("./DatabaseBackupCreateNestedManyWithoutUserInput.schema"); +const BackupDestinationCreateNestedManyWithoutUserInput_schema_1 = require("./BackupDestinationCreateNestedManyWithoutUserInput.schema"); +const NotificationCreateNestedManyWithoutUserInput_schema_1 = require("./NotificationCreateNestedManyWithoutUserInput.schema"); +const CloudFolderCreateNestedManyWithoutUserInput_schema_1 = require("./CloudFolderCreateNestedManyWithoutUserInput.schema"); +const CloudFileCreateNestedManyWithoutUserInput_schema_1 = require("./CloudFileCreateNestedManyWithoutUserInput.schema"); +const CommunicationCreateNestedManyWithoutUserInput_schema_1 = require("./CommunicationCreateNestedManyWithoutUserInput.schema"); +const TwilioSettingsCreateNestedOneWithoutUserInput_schema_1 = require("./TwilioSettingsCreateNestedOneWithoutUserInput.schema"); +const AiSettingsCreateNestedOneWithoutUserInput_schema_1 = require("./AiSettingsCreateNestedOneWithoutUserInput.schema"); +const OfficeHoursCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeHoursCreateNestedOneWithoutUserInput.schema"); +const OfficeContactCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeContactCreateNestedOneWithoutUserInput.schema"); +const ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotCreateNestedOneWithoutUserInput.schema"); +const InsuranceContactCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactCreateNestedManyWithoutUserInput.schema"); +const PatientConversationCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateCreateNestedManyWithoutUserInput.schema"); +const makeSchema = () => z.object({ + username: z.string(), + password: z.string(), + autoBackupEnabled: z.boolean().optional(), + autoBackupHour: z.number().int().optional(), + usbBackupEnabled: z.boolean().optional(), + usbBackupHour: z.number().int().optional(), + autoMhCheckEnabled: z.boolean().optional(), + autoMhCheckDayOfWeek: z.number().int().optional(), + autoMhCheckHour: z.number().int().optional(), + patients: z.lazy(() => PatientCreateNestedManyWithoutUserInput_schema_1.PatientCreateNestedManyWithoutUserInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentCreateNestedManyWithoutUserInput_schema_1.AppointmentCreateNestedManyWithoutUserInputObjectSchema).optional(), + staff: z.lazy(() => StaffCreateNestedManyWithoutUserInput_schema_1.StaffCreateNestedManyWithoutUserInputObjectSchema).optional(), + npiProviders: z.lazy(() => NpiProviderCreateNestedManyWithoutUserInput_schema_1.NpiProviderCreateNestedManyWithoutUserInputObjectSchema).optional(), + claims: z.lazy(() => ClaimCreateNestedManyWithoutUserInput_schema_1.ClaimCreateNestedManyWithoutUserInputObjectSchema).optional(), + insuranceCredentials: z.lazy(() => InsuranceCredentialCreateNestedManyWithoutUserInput_schema_1.InsuranceCredentialCreateNestedManyWithoutUserInputObjectSchema).optional(), + shoppingVendors: z.lazy(() => ShoppingVendorCreateNestedManyWithoutUserInput_schema_1.ShoppingVendorCreateNestedManyWithoutUserInputObjectSchema).optional(), + updatedPayments: z.lazy(() => PaymentCreateNestedManyWithoutUpdatedByInput_schema_1.PaymentCreateNestedManyWithoutUpdatedByInputObjectSchema).optional(), + backups: z.lazy(() => DatabaseBackupCreateNestedManyWithoutUserInput_schema_1.DatabaseBackupCreateNestedManyWithoutUserInputObjectSchema).optional(), + backupDestinations: z.lazy(() => BackupDestinationCreateNestedManyWithoutUserInput_schema_1.BackupDestinationCreateNestedManyWithoutUserInputObjectSchema).optional(), + notifications: z.lazy(() => NotificationCreateNestedManyWithoutUserInput_schema_1.NotificationCreateNestedManyWithoutUserInputObjectSchema).optional(), + cloudFolders: z.lazy(() => CloudFolderCreateNestedManyWithoutUserInput_schema_1.CloudFolderCreateNestedManyWithoutUserInputObjectSchema).optional(), + cloudFiles: z.lazy(() => CloudFileCreateNestedManyWithoutUserInput_schema_1.CloudFileCreateNestedManyWithoutUserInputObjectSchema).optional(), + communications: z.lazy(() => CommunicationCreateNestedManyWithoutUserInput_schema_1.CommunicationCreateNestedManyWithoutUserInputObjectSchema).optional(), + twilioSettings: z.lazy(() => TwilioSettingsCreateNestedOneWithoutUserInput_schema_1.TwilioSettingsCreateNestedOneWithoutUserInputObjectSchema).optional(), + aiSettings: z.lazy(() => AiSettingsCreateNestedOneWithoutUserInput_schema_1.AiSettingsCreateNestedOneWithoutUserInputObjectSchema).optional(), + officeHours: z.lazy(() => OfficeHoursCreateNestedOneWithoutUserInput_schema_1.OfficeHoursCreateNestedOneWithoutUserInputObjectSchema).optional(), + officeContact: z.lazy(() => OfficeContactCreateNestedOneWithoutUserInput_schema_1.OfficeContactCreateNestedOneWithoutUserInputObjectSchema).optional(), + procedureTimeslot: z.lazy(() => ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotCreateNestedOneWithoutUserInputObjectSchema).optional(), + insuranceContacts: z.lazy(() => InsuranceContactCreateNestedManyWithoutUserInput_schema_1.InsuranceContactCreateNestedManyWithoutUserInputObjectSchema).optional(), + patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateCreateNestedManyWithoutUserInputObjectSchema).optional() +}).strict(); +exports.UserCreateWithoutSeleniumSettingsInputObjectSchema = makeSchema(); +exports.UserCreateWithoutSeleniumSettingsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserCreateWithoutShoppingVendorsInput.schema.js b/packages/db/shared/schemas/objects/UserCreateWithoutShoppingVendorsInput.schema.js index 3245b113..ccd4645b 100644 --- a/packages/db/shared/schemas/objects/UserCreateWithoutShoppingVendorsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserCreateWithoutShoppingVendorsInput.schema.js @@ -55,6 +55,8 @@ const OfficeContactCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeC const ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotCreateNestedOneWithoutUserInput.schema"); const InsuranceContactCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactCreateNestedManyWithoutUserInput.schema"); const PatientConversationCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ username: z.string(), password: z.string(), @@ -84,7 +86,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactCreateNestedOneWithoutUserInput_schema_1.OfficeContactCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactCreateNestedManyWithoutUserInput_schema_1.InsuranceContactCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserCreateWithoutShoppingVendorsInputObjectSchema = makeSchema(); exports.UserCreateWithoutShoppingVendorsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserCreateWithoutStaffInput.schema.js b/packages/db/shared/schemas/objects/UserCreateWithoutStaffInput.schema.js index 0215c24c..aea3bc73 100644 --- a/packages/db/shared/schemas/objects/UserCreateWithoutStaffInput.schema.js +++ b/packages/db/shared/schemas/objects/UserCreateWithoutStaffInput.schema.js @@ -55,6 +55,8 @@ const OfficeContactCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeC const ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotCreateNestedOneWithoutUserInput.schema"); const InsuranceContactCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactCreateNestedManyWithoutUserInput.schema"); const PatientConversationCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ username: z.string(), password: z.string(), @@ -84,7 +86,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactCreateNestedOneWithoutUserInput_schema_1.OfficeContactCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactCreateNestedManyWithoutUserInput_schema_1.InsuranceContactCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserCreateWithoutStaffInputObjectSchema = makeSchema(); exports.UserCreateWithoutStaffInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserCreateWithoutTwilioSettingsInput.schema.js b/packages/db/shared/schemas/objects/UserCreateWithoutTwilioSettingsInput.schema.js index 18c8929b..6a0a7ce4 100644 --- a/packages/db/shared/schemas/objects/UserCreateWithoutTwilioSettingsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserCreateWithoutTwilioSettingsInput.schema.js @@ -55,6 +55,8 @@ const OfficeContactCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeC const ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotCreateNestedOneWithoutUserInput.schema"); const InsuranceContactCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactCreateNestedManyWithoutUserInput.schema"); const PatientConversationCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ username: z.string(), password: z.string(), @@ -84,7 +86,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactCreateNestedOneWithoutUserInput_schema_1.OfficeContactCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactCreateNestedManyWithoutUserInput_schema_1.InsuranceContactCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserCreateWithoutTwilioSettingsInputObjectSchema = makeSchema(); exports.UserCreateWithoutTwilioSettingsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserCreateWithoutUpdatedPaymentsInput.schema.js b/packages/db/shared/schemas/objects/UserCreateWithoutUpdatedPaymentsInput.schema.js index c1851042..f0ef8d7c 100644 --- a/packages/db/shared/schemas/objects/UserCreateWithoutUpdatedPaymentsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserCreateWithoutUpdatedPaymentsInput.schema.js @@ -55,6 +55,8 @@ const OfficeContactCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeC const ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotCreateNestedOneWithoutUserInput.schema"); const InsuranceContactCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactCreateNestedManyWithoutUserInput.schema"); const PatientConversationCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ username: z.string(), password: z.string(), @@ -84,7 +86,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactCreateNestedOneWithoutUserInput_schema_1.OfficeContactCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactCreateNestedManyWithoutUserInput_schema_1.InsuranceContactCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationCreateNestedManyWithoutUserInput_schema_1.PatientConversationCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserCreateWithoutUpdatedPaymentsInputObjectSchema = makeSchema(); exports.UserCreateWithoutUpdatedPaymentsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserInclude.schema.js b/packages/db/shared/schemas/objects/UserInclude.schema.js index 34b56fa5..faef17b9 100644 --- a/packages/db/shared/schemas/objects/UserInclude.schema.js +++ b/packages/db/shared/schemas/objects/UserInclude.schema.js @@ -56,6 +56,8 @@ const OfficeContactArgs_schema_1 = require("./OfficeContactArgs.schema"); const ProcedureTimeslotArgs_schema_1 = require("./ProcedureTimeslotArgs.schema"); const findManyInsuranceContact_schema_1 = require("../findManyInsuranceContact.schema"); const findManyPatientConversation_schema_1 = require("../findManyPatientConversation.schema"); +const findManyLabRxTemplate_schema_1 = require("../findManyLabRxTemplate.schema"); +const SeleniumSettingsArgs_schema_1 = require("./SeleniumSettingsArgs.schema"); const UserCountOutputTypeArgs_schema_1 = require("./UserCountOutputTypeArgs.schema"); const makeSchema = () => z.object({ patients: z.union([z.boolean(), z.lazy(() => findManyPatient_schema_1.PatientFindManySchema)]).optional(), @@ -79,6 +81,8 @@ const makeSchema = () => z.object({ procedureTimeslot: z.union([z.boolean(), z.lazy(() => ProcedureTimeslotArgs_schema_1.ProcedureTimeslotArgsObjectSchema)]).optional(), insuranceContacts: z.union([z.boolean(), z.lazy(() => findManyInsuranceContact_schema_1.InsuranceContactFindManySchema)]).optional(), patientConversations: z.union([z.boolean(), z.lazy(() => findManyPatientConversation_schema_1.PatientConversationFindManySchema)]).optional(), + labRxTemplates: z.union([z.boolean(), z.lazy(() => findManyLabRxTemplate_schema_1.LabRxTemplateFindManySchema)]).optional(), + seleniumSettings: z.union([z.boolean(), z.lazy(() => SeleniumSettingsArgs_schema_1.SeleniumSettingsArgsObjectSchema)]).optional(), _count: z.union([z.boolean(), z.lazy(() => UserCountOutputTypeArgs_schema_1.UserCountOutputTypeArgsObjectSchema)]).optional() }).strict(); exports.UserIncludeObjectSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserOrderByWithRelationInput.schema.js b/packages/db/shared/schemas/objects/UserOrderByWithRelationInput.schema.js index 495301c0..7a172630 100644 --- a/packages/db/shared/schemas/objects/UserOrderByWithRelationInput.schema.js +++ b/packages/db/shared/schemas/objects/UserOrderByWithRelationInput.schema.js @@ -57,6 +57,8 @@ const OfficeContactOrderByWithRelationInput_schema_1 = require("./OfficeContactO const ProcedureTimeslotOrderByWithRelationInput_schema_1 = require("./ProcedureTimeslotOrderByWithRelationInput.schema"); const InsuranceContactOrderByRelationAggregateInput_schema_1 = require("./InsuranceContactOrderByRelationAggregateInput.schema"); const PatientConversationOrderByRelationAggregateInput_schema_1 = require("./PatientConversationOrderByRelationAggregateInput.schema"); +const LabRxTemplateOrderByRelationAggregateInput_schema_1 = require("./LabRxTemplateOrderByRelationAggregateInput.schema"); +const SeleniumSettingsOrderByWithRelationInput_schema_1 = require("./SeleniumSettingsOrderByWithRelationInput.schema"); const makeSchema = () => z.object({ id: SortOrder_schema_1.SortOrderSchema.optional(), username: SortOrder_schema_1.SortOrderSchema.optional(), @@ -88,7 +90,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactOrderByWithRelationInput_schema_1.OfficeContactOrderByWithRelationInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotOrderByWithRelationInput_schema_1.ProcedureTimeslotOrderByWithRelationInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactOrderByRelationAggregateInput_schema_1.InsuranceContactOrderByRelationAggregateInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationOrderByRelationAggregateInput_schema_1.PatientConversationOrderByRelationAggregateInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationOrderByRelationAggregateInput_schema_1.PatientConversationOrderByRelationAggregateInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateOrderByRelationAggregateInput_schema_1.LabRxTemplateOrderByRelationAggregateInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsOrderByWithRelationInput_schema_1.SeleniumSettingsOrderByWithRelationInputObjectSchema).optional() }).strict(); exports.UserOrderByWithRelationInputObjectSchema = makeSchema(); exports.UserOrderByWithRelationInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserSelect.schema.js b/packages/db/shared/schemas/objects/UserSelect.schema.js index 3240daf6..dc06ecfc 100644 --- a/packages/db/shared/schemas/objects/UserSelect.schema.js +++ b/packages/db/shared/schemas/objects/UserSelect.schema.js @@ -56,6 +56,8 @@ const OfficeContactArgs_schema_1 = require("./OfficeContactArgs.schema"); const ProcedureTimeslotArgs_schema_1 = require("./ProcedureTimeslotArgs.schema"); const findManyInsuranceContact_schema_1 = require("../findManyInsuranceContact.schema"); const findManyPatientConversation_schema_1 = require("../findManyPatientConversation.schema"); +const findManyLabRxTemplate_schema_1 = require("../findManyLabRxTemplate.schema"); +const SeleniumSettingsArgs_schema_1 = require("./SeleniumSettingsArgs.schema"); const UserCountOutputTypeArgs_schema_1 = require("./UserCountOutputTypeArgs.schema"); const makeSchema = () => z.object({ id: z.boolean().optional(), @@ -89,6 +91,8 @@ const makeSchema = () => z.object({ procedureTimeslot: z.union([z.boolean(), z.lazy(() => ProcedureTimeslotArgs_schema_1.ProcedureTimeslotArgsObjectSchema)]).optional(), insuranceContacts: z.union([z.boolean(), z.lazy(() => findManyInsuranceContact_schema_1.InsuranceContactFindManySchema)]).optional(), patientConversations: z.union([z.boolean(), z.lazy(() => findManyPatientConversation_schema_1.PatientConversationFindManySchema)]).optional(), + labRxTemplates: z.union([z.boolean(), z.lazy(() => findManyLabRxTemplate_schema_1.LabRxTemplateFindManySchema)]).optional(), + seleniumSettings: z.union([z.boolean(), z.lazy(() => SeleniumSettingsArgs_schema_1.SeleniumSettingsArgsObjectSchema)]).optional(), _count: z.union([z.boolean(), z.lazy(() => UserCountOutputTypeArgs_schema_1.UserCountOutputTypeArgsObjectSchema)]).optional() }).strict(); exports.UserSelectObjectSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedCreateInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedCreateInput.schema.js index 320374a7..1efebac9 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedCreateInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedCreateInput.schema.js @@ -56,6 +56,8 @@ const OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1 = require(" const ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput.schema"); const InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactUncheckedCreateNestedManyWithoutUserInput.schema"); const PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationUncheckedCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateUncheckedCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ id: z.number().int().optional(), username: z.string(), @@ -87,7 +89,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1.OfficeContactUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1.InsuranceContactUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserUncheckedCreateInputObjectSchema = makeSchema(); exports.UserUncheckedCreateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutAiSettingsInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutAiSettingsInput.schema.js index b553d387..b9eeb6f7 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutAiSettingsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutAiSettingsInput.schema.js @@ -55,6 +55,8 @@ const OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1 = require(" const ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput.schema"); const InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactUncheckedCreateNestedManyWithoutUserInput.schema"); const PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationUncheckedCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateUncheckedCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ id: z.number().int().optional(), username: z.string(), @@ -85,7 +87,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1.OfficeContactUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1.InsuranceContactUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserUncheckedCreateWithoutAiSettingsInputObjectSchema = makeSchema(); exports.UserUncheckedCreateWithoutAiSettingsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutAppointmentsInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutAppointmentsInput.schema.js index e70a540e..4b6fb215 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutAppointmentsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutAppointmentsInput.schema.js @@ -55,6 +55,8 @@ const OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1 = require(" const ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput.schema"); const InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactUncheckedCreateNestedManyWithoutUserInput.schema"); const PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationUncheckedCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateUncheckedCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ id: z.number().int().optional(), username: z.string(), @@ -85,7 +87,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1.OfficeContactUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1.InsuranceContactUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserUncheckedCreateWithoutAppointmentsInputObjectSchema = makeSchema(); exports.UserUncheckedCreateWithoutAppointmentsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutBackupDestinationsInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutBackupDestinationsInput.schema.js index cd2ce333..ca652c5d 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutBackupDestinationsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutBackupDestinationsInput.schema.js @@ -55,6 +55,8 @@ const OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1 = require(" const ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput.schema"); const InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactUncheckedCreateNestedManyWithoutUserInput.schema"); const PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationUncheckedCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateUncheckedCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ id: z.number().int().optional(), username: z.string(), @@ -85,7 +87,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1.OfficeContactUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1.InsuranceContactUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserUncheckedCreateWithoutBackupDestinationsInputObjectSchema = makeSchema(); exports.UserUncheckedCreateWithoutBackupDestinationsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutBackupsInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutBackupsInput.schema.js index 2246ccdb..89a520de 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutBackupsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutBackupsInput.schema.js @@ -55,6 +55,8 @@ const OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1 = require(" const ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput.schema"); const InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactUncheckedCreateNestedManyWithoutUserInput.schema"); const PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationUncheckedCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateUncheckedCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ id: z.number().int().optional(), username: z.string(), @@ -85,7 +87,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1.OfficeContactUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1.InsuranceContactUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserUncheckedCreateWithoutBackupsInputObjectSchema = makeSchema(); exports.UserUncheckedCreateWithoutBackupsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutClaimsInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutClaimsInput.schema.js index 924c2a88..4effe512 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutClaimsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutClaimsInput.schema.js @@ -55,6 +55,8 @@ const OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1 = require(" const ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput.schema"); const InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactUncheckedCreateNestedManyWithoutUserInput.schema"); const PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationUncheckedCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateUncheckedCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ id: z.number().int().optional(), username: z.string(), @@ -85,7 +87,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1.OfficeContactUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1.InsuranceContactUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserUncheckedCreateWithoutClaimsInputObjectSchema = makeSchema(); exports.UserUncheckedCreateWithoutClaimsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutCloudFilesInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutCloudFilesInput.schema.js index 833bd8e7..8c499b25 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutCloudFilesInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutCloudFilesInput.schema.js @@ -55,6 +55,8 @@ const OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1 = require(" const ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput.schema"); const InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactUncheckedCreateNestedManyWithoutUserInput.schema"); const PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationUncheckedCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateUncheckedCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ id: z.number().int().optional(), username: z.string(), @@ -85,7 +87,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1.OfficeContactUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1.InsuranceContactUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserUncheckedCreateWithoutCloudFilesInputObjectSchema = makeSchema(); exports.UserUncheckedCreateWithoutCloudFilesInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutCloudFoldersInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutCloudFoldersInput.schema.js index 12739e9b..ee4811f1 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutCloudFoldersInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutCloudFoldersInput.schema.js @@ -55,6 +55,8 @@ const OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1 = require(" const ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput.schema"); const InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactUncheckedCreateNestedManyWithoutUserInput.schema"); const PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationUncheckedCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateUncheckedCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ id: z.number().int().optional(), username: z.string(), @@ -85,7 +87,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1.OfficeContactUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1.InsuranceContactUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserUncheckedCreateWithoutCloudFoldersInputObjectSchema = makeSchema(); exports.UserUncheckedCreateWithoutCloudFoldersInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutCommunicationsInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutCommunicationsInput.schema.js index aa707824..72d60de6 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutCommunicationsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutCommunicationsInput.schema.js @@ -55,6 +55,8 @@ const OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1 = require(" const ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput.schema"); const InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactUncheckedCreateNestedManyWithoutUserInput.schema"); const PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationUncheckedCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateUncheckedCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ id: z.number().int().optional(), username: z.string(), @@ -85,7 +87,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1.OfficeContactUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1.InsuranceContactUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserUncheckedCreateWithoutCommunicationsInputObjectSchema = makeSchema(); exports.UserUncheckedCreateWithoutCommunicationsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutInsuranceContactsInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutInsuranceContactsInput.schema.js index 24cf464a..9e705e88 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutInsuranceContactsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutInsuranceContactsInput.schema.js @@ -55,6 +55,8 @@ const OfficeHoursUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./ const OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeContactUncheckedCreateNestedOneWithoutUserInput.schema"); const ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput.schema"); const PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationUncheckedCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateUncheckedCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ id: z.number().int().optional(), username: z.string(), @@ -85,7 +87,9 @@ const makeSchema = () => z.object({ officeHours: z.lazy(() => OfficeHoursUncheckedCreateNestedOneWithoutUserInput_schema_1.OfficeHoursUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), officeContact: z.lazy(() => OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1.OfficeContactUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserUncheckedCreateWithoutInsuranceContactsInputObjectSchema = makeSchema(); exports.UserUncheckedCreateWithoutInsuranceContactsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutInsuranceCredentialsInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutInsuranceCredentialsInput.schema.js index 089df7bf..40632801 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutInsuranceCredentialsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutInsuranceCredentialsInput.schema.js @@ -55,6 +55,8 @@ const OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1 = require(" const ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput.schema"); const InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactUncheckedCreateNestedManyWithoutUserInput.schema"); const PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationUncheckedCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateUncheckedCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ id: z.number().int().optional(), username: z.string(), @@ -85,7 +87,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1.OfficeContactUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1.InsuranceContactUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserUncheckedCreateWithoutInsuranceCredentialsInputObjectSchema = makeSchema(); exports.UserUncheckedCreateWithoutInsuranceCredentialsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutLabRxTemplatesInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutLabRxTemplatesInput.schema.js new file mode 100644 index 00000000..13930bfb --- /dev/null +++ b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutLabRxTemplatesInput.schema.js @@ -0,0 +1,95 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.UserUncheckedCreateWithoutLabRxTemplatesInputObjectZodSchema = exports.UserUncheckedCreateWithoutLabRxTemplatesInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const PatientUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./PatientUncheckedCreateNestedManyWithoutUserInput.schema"); +const AppointmentUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./AppointmentUncheckedCreateNestedManyWithoutUserInput.schema"); +const StaffUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./StaffUncheckedCreateNestedManyWithoutUserInput.schema"); +const NpiProviderUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./NpiProviderUncheckedCreateNestedManyWithoutUserInput.schema"); +const ClaimUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./ClaimUncheckedCreateNestedManyWithoutUserInput.schema"); +const InsuranceCredentialUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceCredentialUncheckedCreateNestedManyWithoutUserInput.schema"); +const ShoppingVendorUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./ShoppingVendorUncheckedCreateNestedManyWithoutUserInput.schema"); +const PaymentUncheckedCreateNestedManyWithoutUpdatedByInput_schema_1 = require("./PaymentUncheckedCreateNestedManyWithoutUpdatedByInput.schema"); +const DatabaseBackupUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./DatabaseBackupUncheckedCreateNestedManyWithoutUserInput.schema"); +const BackupDestinationUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./BackupDestinationUncheckedCreateNestedManyWithoutUserInput.schema"); +const NotificationUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./NotificationUncheckedCreateNestedManyWithoutUserInput.schema"); +const CloudFolderUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./CloudFolderUncheckedCreateNestedManyWithoutUserInput.schema"); +const CloudFileUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./CloudFileUncheckedCreateNestedManyWithoutUserInput.schema"); +const CommunicationUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./CommunicationUncheckedCreateNestedManyWithoutUserInput.schema"); +const TwilioSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./TwilioSettingsUncheckedCreateNestedOneWithoutUserInput.schema"); +const AiSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./AiSettingsUncheckedCreateNestedOneWithoutUserInput.schema"); +const OfficeHoursUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeHoursUncheckedCreateNestedOneWithoutUserInput.schema"); +const OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeContactUncheckedCreateNestedOneWithoutUserInput.schema"); +const ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput.schema"); +const InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactUncheckedCreateNestedManyWithoutUserInput.schema"); +const PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationUncheckedCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput.schema"); +const makeSchema = () => z.object({ + id: z.number().int().optional(), + username: z.string(), + password: z.string(), + autoBackupEnabled: z.boolean().optional(), + autoBackupHour: z.number().int().optional(), + usbBackupEnabled: z.boolean().optional(), + usbBackupHour: z.number().int().optional(), + autoMhCheckEnabled: z.boolean().optional(), + autoMhCheckDayOfWeek: z.number().int().optional(), + autoMhCheckHour: z.number().int().optional(), + patients: z.lazy(() => PatientUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUncheckedCreateNestedManyWithoutUserInput_schema_1.AppointmentUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + staff: z.lazy(() => StaffUncheckedCreateNestedManyWithoutUserInput_schema_1.StaffUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + npiProviders: z.lazy(() => NpiProviderUncheckedCreateNestedManyWithoutUserInput_schema_1.NpiProviderUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + claims: z.lazy(() => ClaimUncheckedCreateNestedManyWithoutUserInput_schema_1.ClaimUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + insuranceCredentials: z.lazy(() => InsuranceCredentialUncheckedCreateNestedManyWithoutUserInput_schema_1.InsuranceCredentialUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + shoppingVendors: z.lazy(() => ShoppingVendorUncheckedCreateNestedManyWithoutUserInput_schema_1.ShoppingVendorUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + updatedPayments: z.lazy(() => PaymentUncheckedCreateNestedManyWithoutUpdatedByInput_schema_1.PaymentUncheckedCreateNestedManyWithoutUpdatedByInputObjectSchema).optional(), + backups: z.lazy(() => DatabaseBackupUncheckedCreateNestedManyWithoutUserInput_schema_1.DatabaseBackupUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + backupDestinations: z.lazy(() => BackupDestinationUncheckedCreateNestedManyWithoutUserInput_schema_1.BackupDestinationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + notifications: z.lazy(() => NotificationUncheckedCreateNestedManyWithoutUserInput_schema_1.NotificationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + cloudFolders: z.lazy(() => CloudFolderUncheckedCreateNestedManyWithoutUserInput_schema_1.CloudFolderUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + cloudFiles: z.lazy(() => CloudFileUncheckedCreateNestedManyWithoutUserInput_schema_1.CloudFileUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + communications: z.lazy(() => CommunicationUncheckedCreateNestedManyWithoutUserInput_schema_1.CommunicationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + twilioSettings: z.lazy(() => TwilioSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1.TwilioSettingsUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), + aiSettings: z.lazy(() => AiSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1.AiSettingsUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), + officeHours: z.lazy(() => OfficeHoursUncheckedCreateNestedOneWithoutUserInput_schema_1.OfficeHoursUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), + officeContact: z.lazy(() => OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1.OfficeContactUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), + procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), + insuranceContacts: z.lazy(() => InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1.InsuranceContactUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional() +}).strict(); +exports.UserUncheckedCreateWithoutLabRxTemplatesInputObjectSchema = makeSchema(); +exports.UserUncheckedCreateWithoutLabRxTemplatesInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutNotificationsInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutNotificationsInput.schema.js index 87a72b53..b731dca5 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutNotificationsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutNotificationsInput.schema.js @@ -55,6 +55,8 @@ const OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1 = require(" const ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput.schema"); const InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactUncheckedCreateNestedManyWithoutUserInput.schema"); const PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationUncheckedCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateUncheckedCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ id: z.number().int().optional(), username: z.string(), @@ -85,7 +87,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1.OfficeContactUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1.InsuranceContactUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserUncheckedCreateWithoutNotificationsInputObjectSchema = makeSchema(); exports.UserUncheckedCreateWithoutNotificationsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutNpiProvidersInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutNpiProvidersInput.schema.js index cf0fd3b7..5da6351e 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutNpiProvidersInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutNpiProvidersInput.schema.js @@ -55,6 +55,8 @@ const OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1 = require(" const ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput.schema"); const InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactUncheckedCreateNestedManyWithoutUserInput.schema"); const PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationUncheckedCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateUncheckedCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ id: z.number().int().optional(), username: z.string(), @@ -85,7 +87,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1.OfficeContactUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1.InsuranceContactUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserUncheckedCreateWithoutNpiProvidersInputObjectSchema = makeSchema(); exports.UserUncheckedCreateWithoutNpiProvidersInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutOfficeContactInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutOfficeContactInput.schema.js index f3576db9..06e0b29a 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutOfficeContactInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutOfficeContactInput.schema.js @@ -55,6 +55,8 @@ const OfficeHoursUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./ const ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput.schema"); const InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactUncheckedCreateNestedManyWithoutUserInput.schema"); const PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationUncheckedCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateUncheckedCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ id: z.number().int().optional(), username: z.string(), @@ -85,7 +87,9 @@ const makeSchema = () => z.object({ officeHours: z.lazy(() => OfficeHoursUncheckedCreateNestedOneWithoutUserInput_schema_1.OfficeHoursUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1.InsuranceContactUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserUncheckedCreateWithoutOfficeContactInputObjectSchema = makeSchema(); exports.UserUncheckedCreateWithoutOfficeContactInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutOfficeHoursInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutOfficeHoursInput.schema.js index ecbbeaaa..fc6eef89 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutOfficeHoursInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutOfficeHoursInput.schema.js @@ -55,6 +55,8 @@ const OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1 = require(" const ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput.schema"); const InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactUncheckedCreateNestedManyWithoutUserInput.schema"); const PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationUncheckedCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateUncheckedCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ id: z.number().int().optional(), username: z.string(), @@ -85,7 +87,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1.OfficeContactUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1.InsuranceContactUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserUncheckedCreateWithoutOfficeHoursInputObjectSchema = makeSchema(); exports.UserUncheckedCreateWithoutOfficeHoursInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutPatientConversationsInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutPatientConversationsInput.schema.js index 68b1fe1a..5ed006a4 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutPatientConversationsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutPatientConversationsInput.schema.js @@ -55,6 +55,8 @@ const OfficeHoursUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./ const OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeContactUncheckedCreateNestedOneWithoutUserInput.schema"); const ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput.schema"); const InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactUncheckedCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateUncheckedCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ id: z.number().int().optional(), username: z.string(), @@ -85,7 +87,9 @@ const makeSchema = () => z.object({ officeHours: z.lazy(() => OfficeHoursUncheckedCreateNestedOneWithoutUserInput_schema_1.OfficeHoursUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), officeContact: z.lazy(() => OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1.OfficeContactUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), - insuranceContacts: z.lazy(() => InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1.InsuranceContactUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional() + insuranceContacts: z.lazy(() => InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1.InsuranceContactUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserUncheckedCreateWithoutPatientConversationsInputObjectSchema = makeSchema(); exports.UserUncheckedCreateWithoutPatientConversationsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutPatientsInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutPatientsInput.schema.js index 9cf4b52f..cb900b93 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutPatientsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutPatientsInput.schema.js @@ -55,6 +55,8 @@ const OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1 = require(" const ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput.schema"); const InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactUncheckedCreateNestedManyWithoutUserInput.schema"); const PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationUncheckedCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateUncheckedCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ id: z.number().int().optional(), username: z.string(), @@ -85,7 +87,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1.OfficeContactUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1.InsuranceContactUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserUncheckedCreateWithoutPatientsInputObjectSchema = makeSchema(); exports.UserUncheckedCreateWithoutPatientsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutProcedureTimeslotInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutProcedureTimeslotInput.schema.js index 7f64491d..27b5edf7 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutProcedureTimeslotInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutProcedureTimeslotInput.schema.js @@ -55,6 +55,8 @@ const OfficeHoursUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./ const OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeContactUncheckedCreateNestedOneWithoutUserInput.schema"); const InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactUncheckedCreateNestedManyWithoutUserInput.schema"); const PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationUncheckedCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateUncheckedCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ id: z.number().int().optional(), username: z.string(), @@ -85,7 +87,9 @@ const makeSchema = () => z.object({ officeHours: z.lazy(() => OfficeHoursUncheckedCreateNestedOneWithoutUserInput_schema_1.OfficeHoursUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), officeContact: z.lazy(() => OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1.OfficeContactUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1.InsuranceContactUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserUncheckedCreateWithoutProcedureTimeslotInputObjectSchema = makeSchema(); exports.UserUncheckedCreateWithoutProcedureTimeslotInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutSeleniumSettingsInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutSeleniumSettingsInput.schema.js new file mode 100644 index 00000000..b4e736fa --- /dev/null +++ b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutSeleniumSettingsInput.schema.js @@ -0,0 +1,95 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.UserUncheckedCreateWithoutSeleniumSettingsInputObjectZodSchema = exports.UserUncheckedCreateWithoutSeleniumSettingsInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const PatientUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./PatientUncheckedCreateNestedManyWithoutUserInput.schema"); +const AppointmentUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./AppointmentUncheckedCreateNestedManyWithoutUserInput.schema"); +const StaffUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./StaffUncheckedCreateNestedManyWithoutUserInput.schema"); +const NpiProviderUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./NpiProviderUncheckedCreateNestedManyWithoutUserInput.schema"); +const ClaimUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./ClaimUncheckedCreateNestedManyWithoutUserInput.schema"); +const InsuranceCredentialUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceCredentialUncheckedCreateNestedManyWithoutUserInput.schema"); +const ShoppingVendorUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./ShoppingVendorUncheckedCreateNestedManyWithoutUserInput.schema"); +const PaymentUncheckedCreateNestedManyWithoutUpdatedByInput_schema_1 = require("./PaymentUncheckedCreateNestedManyWithoutUpdatedByInput.schema"); +const DatabaseBackupUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./DatabaseBackupUncheckedCreateNestedManyWithoutUserInput.schema"); +const BackupDestinationUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./BackupDestinationUncheckedCreateNestedManyWithoutUserInput.schema"); +const NotificationUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./NotificationUncheckedCreateNestedManyWithoutUserInput.schema"); +const CloudFolderUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./CloudFolderUncheckedCreateNestedManyWithoutUserInput.schema"); +const CloudFileUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./CloudFileUncheckedCreateNestedManyWithoutUserInput.schema"); +const CommunicationUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./CommunicationUncheckedCreateNestedManyWithoutUserInput.schema"); +const TwilioSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./TwilioSettingsUncheckedCreateNestedOneWithoutUserInput.schema"); +const AiSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./AiSettingsUncheckedCreateNestedOneWithoutUserInput.schema"); +const OfficeHoursUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeHoursUncheckedCreateNestedOneWithoutUserInput.schema"); +const OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./OfficeContactUncheckedCreateNestedOneWithoutUserInput.schema"); +const ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput.schema"); +const InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactUncheckedCreateNestedManyWithoutUserInput.schema"); +const PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationUncheckedCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateUncheckedCreateNestedManyWithoutUserInput.schema"); +const makeSchema = () => z.object({ + id: z.number().int().optional(), + username: z.string(), + password: z.string(), + autoBackupEnabled: z.boolean().optional(), + autoBackupHour: z.number().int().optional(), + usbBackupEnabled: z.boolean().optional(), + usbBackupHour: z.number().int().optional(), + autoMhCheckEnabled: z.boolean().optional(), + autoMhCheckDayOfWeek: z.number().int().optional(), + autoMhCheckHour: z.number().int().optional(), + patients: z.lazy(() => PatientUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUncheckedCreateNestedManyWithoutUserInput_schema_1.AppointmentUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + staff: z.lazy(() => StaffUncheckedCreateNestedManyWithoutUserInput_schema_1.StaffUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + npiProviders: z.lazy(() => NpiProviderUncheckedCreateNestedManyWithoutUserInput_schema_1.NpiProviderUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + claims: z.lazy(() => ClaimUncheckedCreateNestedManyWithoutUserInput_schema_1.ClaimUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + insuranceCredentials: z.lazy(() => InsuranceCredentialUncheckedCreateNestedManyWithoutUserInput_schema_1.InsuranceCredentialUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + shoppingVendors: z.lazy(() => ShoppingVendorUncheckedCreateNestedManyWithoutUserInput_schema_1.ShoppingVendorUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + updatedPayments: z.lazy(() => PaymentUncheckedCreateNestedManyWithoutUpdatedByInput_schema_1.PaymentUncheckedCreateNestedManyWithoutUpdatedByInputObjectSchema).optional(), + backups: z.lazy(() => DatabaseBackupUncheckedCreateNestedManyWithoutUserInput_schema_1.DatabaseBackupUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + backupDestinations: z.lazy(() => BackupDestinationUncheckedCreateNestedManyWithoutUserInput_schema_1.BackupDestinationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + notifications: z.lazy(() => NotificationUncheckedCreateNestedManyWithoutUserInput_schema_1.NotificationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + cloudFolders: z.lazy(() => CloudFolderUncheckedCreateNestedManyWithoutUserInput_schema_1.CloudFolderUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + cloudFiles: z.lazy(() => CloudFileUncheckedCreateNestedManyWithoutUserInput_schema_1.CloudFileUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + communications: z.lazy(() => CommunicationUncheckedCreateNestedManyWithoutUserInput_schema_1.CommunicationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + twilioSettings: z.lazy(() => TwilioSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1.TwilioSettingsUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), + aiSettings: z.lazy(() => AiSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1.AiSettingsUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), + officeHours: z.lazy(() => OfficeHoursUncheckedCreateNestedOneWithoutUserInput_schema_1.OfficeHoursUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), + officeContact: z.lazy(() => OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1.OfficeContactUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), + procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), + insuranceContacts: z.lazy(() => InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1.InsuranceContactUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional() +}).strict(); +exports.UserUncheckedCreateWithoutSeleniumSettingsInputObjectSchema = makeSchema(); +exports.UserUncheckedCreateWithoutSeleniumSettingsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutShoppingVendorsInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutShoppingVendorsInput.schema.js index 88f0974f..1c8bb348 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutShoppingVendorsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutShoppingVendorsInput.schema.js @@ -55,6 +55,8 @@ const OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1 = require(" const ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput.schema"); const InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactUncheckedCreateNestedManyWithoutUserInput.schema"); const PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationUncheckedCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateUncheckedCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ id: z.number().int().optional(), username: z.string(), @@ -85,7 +87,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1.OfficeContactUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1.InsuranceContactUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserUncheckedCreateWithoutShoppingVendorsInputObjectSchema = makeSchema(); exports.UserUncheckedCreateWithoutShoppingVendorsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutStaffInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutStaffInput.schema.js index dd3de6ea..9e80f499 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutStaffInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutStaffInput.schema.js @@ -55,6 +55,8 @@ const OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1 = require(" const ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput.schema"); const InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactUncheckedCreateNestedManyWithoutUserInput.schema"); const PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationUncheckedCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateUncheckedCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ id: z.number().int().optional(), username: z.string(), @@ -85,7 +87,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1.OfficeContactUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1.InsuranceContactUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserUncheckedCreateWithoutStaffInputObjectSchema = makeSchema(); exports.UserUncheckedCreateWithoutStaffInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutTwilioSettingsInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutTwilioSettingsInput.schema.js index 71bb7e5e..3ec69aff 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutTwilioSettingsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutTwilioSettingsInput.schema.js @@ -55,6 +55,8 @@ const OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1 = require(" const ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput.schema"); const InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactUncheckedCreateNestedManyWithoutUserInput.schema"); const PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationUncheckedCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateUncheckedCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ id: z.number().int().optional(), username: z.string(), @@ -85,7 +87,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1.OfficeContactUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1.InsuranceContactUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserUncheckedCreateWithoutTwilioSettingsInputObjectSchema = makeSchema(); exports.UserUncheckedCreateWithoutTwilioSettingsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutUpdatedPaymentsInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutUpdatedPaymentsInput.schema.js index 27b7c01e..ff6a7a43 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutUpdatedPaymentsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedCreateWithoutUpdatedPaymentsInput.schema.js @@ -55,6 +55,8 @@ const OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1 = require(" const ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput.schema"); const InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceContactUncheckedCreateNestedManyWithoutUserInput.schema"); const PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./PatientConversationUncheckedCreateNestedManyWithoutUserInput.schema"); +const LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1 = require("./LabRxTemplateUncheckedCreateNestedManyWithoutUserInput.schema"); +const SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1 = require("./SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput.schema"); const makeSchema = () => z.object({ id: z.number().int().optional(), username: z.string(), @@ -85,7 +87,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedCreateNestedOneWithoutUserInput_schema_1.OfficeContactUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput_schema_1.ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedCreateNestedManyWithoutUserInput_schema_1.InsuranceContactUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedCreateNestedManyWithoutUserInput_schema_1.PatientConversationUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedCreateNestedManyWithoutUserInput_schema_1.LabRxTemplateUncheckedCreateNestedManyWithoutUserInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput_schema_1.SeleniumSettingsUncheckedCreateNestedOneWithoutUserInputObjectSchema).optional() }).strict(); exports.UserUncheckedCreateWithoutUpdatedPaymentsInputObjectSchema = makeSchema(); exports.UserUncheckedCreateWithoutUpdatedPaymentsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedUpdateInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedUpdateInput.schema.js index 32dc3293..e9da2a99 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedUpdateInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedUpdateInput.schema.js @@ -59,6 +59,8 @@ const OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require(" const ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUncheckedUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUncheckedUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -90,7 +92,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUncheckedUpdateInputObjectSchema = makeSchema(); exports.UserUncheckedUpdateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutAiSettingsInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutAiSettingsInput.schema.js index c24b4bc5..46b2efa8 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutAiSettingsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutAiSettingsInput.schema.js @@ -58,6 +58,8 @@ const OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require(" const ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUncheckedUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUncheckedUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -88,7 +90,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUncheckedUpdateWithoutAiSettingsInputObjectSchema = makeSchema(); exports.UserUncheckedUpdateWithoutAiSettingsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutAppointmentsInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutAppointmentsInput.schema.js index c063ec34..1d5a1f8e 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutAppointmentsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutAppointmentsInput.schema.js @@ -58,6 +58,8 @@ const OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require(" const ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUncheckedUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUncheckedUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -88,7 +90,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUncheckedUpdateWithoutAppointmentsInputObjectSchema = makeSchema(); exports.UserUncheckedUpdateWithoutAppointmentsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutBackupDestinationsInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutBackupDestinationsInput.schema.js index 034fdfc4..5c3084bf 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutBackupDestinationsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutBackupDestinationsInput.schema.js @@ -58,6 +58,8 @@ const OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require(" const ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUncheckedUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUncheckedUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -88,7 +90,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUncheckedUpdateWithoutBackupDestinationsInputObjectSchema = makeSchema(); exports.UserUncheckedUpdateWithoutBackupDestinationsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutBackupsInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutBackupsInput.schema.js index 5d9592d3..d65165f0 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutBackupsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutBackupsInput.schema.js @@ -58,6 +58,8 @@ const OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require(" const ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUncheckedUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUncheckedUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -88,7 +90,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUncheckedUpdateWithoutBackupsInputObjectSchema = makeSchema(); exports.UserUncheckedUpdateWithoutBackupsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutClaimsInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutClaimsInput.schema.js index 86a3b066..362b0960 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutClaimsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutClaimsInput.schema.js @@ -58,6 +58,8 @@ const OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require(" const ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUncheckedUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUncheckedUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -88,7 +90,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUncheckedUpdateWithoutClaimsInputObjectSchema = makeSchema(); exports.UserUncheckedUpdateWithoutClaimsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutCloudFilesInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutCloudFilesInput.schema.js index 846cf40b..21111830 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutCloudFilesInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutCloudFilesInput.schema.js @@ -58,6 +58,8 @@ const OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require(" const ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUncheckedUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUncheckedUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -88,7 +90,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUncheckedUpdateWithoutCloudFilesInputObjectSchema = makeSchema(); exports.UserUncheckedUpdateWithoutCloudFilesInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutCloudFoldersInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutCloudFoldersInput.schema.js index 1a9e1a68..8d971bb1 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutCloudFoldersInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutCloudFoldersInput.schema.js @@ -58,6 +58,8 @@ const OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require(" const ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUncheckedUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUncheckedUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -88,7 +90,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUncheckedUpdateWithoutCloudFoldersInputObjectSchema = makeSchema(); exports.UserUncheckedUpdateWithoutCloudFoldersInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutCommunicationsInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutCommunicationsInput.schema.js index 7bc28677..475bac9c 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutCommunicationsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutCommunicationsInput.schema.js @@ -58,6 +58,8 @@ const OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require(" const ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUncheckedUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUncheckedUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -88,7 +90,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUncheckedUpdateWithoutCommunicationsInputObjectSchema = makeSchema(); exports.UserUncheckedUpdateWithoutCommunicationsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutInsuranceContactsInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutInsuranceContactsInput.schema.js index 47e66041..56224d13 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutInsuranceContactsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutInsuranceContactsInput.schema.js @@ -58,6 +58,8 @@ const OfficeHoursUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./ const OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeContactUncheckedUpdateOneWithoutUserNestedInput.schema"); const ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput.schema"); const PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUncheckedUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -88,7 +90,9 @@ const makeSchema = () => z.object({ officeHours: z.lazy(() => OfficeHoursUncheckedUpdateOneWithoutUserNestedInput_schema_1.OfficeHoursUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), officeContact: z.lazy(() => OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUncheckedUpdateWithoutInsuranceContactsInputObjectSchema = makeSchema(); exports.UserUncheckedUpdateWithoutInsuranceContactsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutInsuranceCredentialsInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutInsuranceCredentialsInput.schema.js index f922f570..cdfb6649 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutInsuranceCredentialsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutInsuranceCredentialsInput.schema.js @@ -58,6 +58,8 @@ const OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require(" const ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUncheckedUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUncheckedUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -88,7 +90,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUncheckedUpdateWithoutInsuranceCredentialsInputObjectSchema = makeSchema(); exports.UserUncheckedUpdateWithoutInsuranceCredentialsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutLabRxTemplatesInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutLabRxTemplatesInput.schema.js new file mode 100644 index 00000000..78331b42 --- /dev/null +++ b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutLabRxTemplatesInput.schema.js @@ -0,0 +1,98 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.UserUncheckedUpdateWithoutLabRxTemplatesInputObjectZodSchema = exports.UserUncheckedUpdateWithoutLabRxTemplatesInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); +const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); +const BoolFieldUpdateOperationsInput_schema_1 = require("./BoolFieldUpdateOperationsInput.schema"); +const PatientUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientUncheckedUpdateManyWithoutUserNestedInput.schema"); +const AppointmentUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./AppointmentUncheckedUpdateManyWithoutUserNestedInput.schema"); +const StaffUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./StaffUncheckedUpdateManyWithoutUserNestedInput.schema"); +const NpiProviderUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./NpiProviderUncheckedUpdateManyWithoutUserNestedInput.schema"); +const ClaimUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./ClaimUncheckedUpdateManyWithoutUserNestedInput.schema"); +const InsuranceCredentialUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceCredentialUncheckedUpdateManyWithoutUserNestedInput.schema"); +const ShoppingVendorUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./ShoppingVendorUncheckedUpdateManyWithoutUserNestedInput.schema"); +const PaymentUncheckedUpdateManyWithoutUpdatedByNestedInput_schema_1 = require("./PaymentUncheckedUpdateManyWithoutUpdatedByNestedInput.schema"); +const DatabaseBackupUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./DatabaseBackupUncheckedUpdateManyWithoutUserNestedInput.schema"); +const BackupDestinationUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./BackupDestinationUncheckedUpdateManyWithoutUserNestedInput.schema"); +const NotificationUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./NotificationUncheckedUpdateManyWithoutUserNestedInput.schema"); +const CloudFolderUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./CloudFolderUncheckedUpdateManyWithoutUserNestedInput.schema"); +const CloudFileUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./CloudFileUncheckedUpdateManyWithoutUserNestedInput.schema"); +const CommunicationUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./CommunicationUncheckedUpdateManyWithoutUserNestedInput.schema"); +const TwilioSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./TwilioSettingsUncheckedUpdateOneWithoutUserNestedInput.schema"); +const AiSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./AiSettingsUncheckedUpdateOneWithoutUserNestedInput.schema"); +const OfficeHoursUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeHoursUncheckedUpdateOneWithoutUserNestedInput.schema"); +const OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeContactUncheckedUpdateOneWithoutUserNestedInput.schema"); +const ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput.schema"); +const InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUncheckedUpdateManyWithoutUserNestedInput.schema"); +const PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUncheckedUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput.schema"); +const makeSchema = () => z.object({ + id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), + password: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), + autoBackupEnabled: z.union([z.boolean(), z.lazy(() => BoolFieldUpdateOperationsInput_schema_1.BoolFieldUpdateOperationsInputObjectSchema)]).optional(), + autoBackupHour: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + usbBackupEnabled: z.union([z.boolean(), z.lazy(() => BoolFieldUpdateOperationsInput_schema_1.BoolFieldUpdateOperationsInputObjectSchema)]).optional(), + usbBackupHour: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + autoMhCheckEnabled: z.union([z.boolean(), z.lazy(() => BoolFieldUpdateOperationsInput_schema_1.BoolFieldUpdateOperationsInputObjectSchema)]).optional(), + autoMhCheckDayOfWeek: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + autoMhCheckHour: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + patients: z.lazy(() => PatientUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUncheckedUpdateManyWithoutUserNestedInput_schema_1.AppointmentUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + staff: z.lazy(() => StaffUncheckedUpdateManyWithoutUserNestedInput_schema_1.StaffUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + npiProviders: z.lazy(() => NpiProviderUncheckedUpdateManyWithoutUserNestedInput_schema_1.NpiProviderUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + claims: z.lazy(() => ClaimUncheckedUpdateManyWithoutUserNestedInput_schema_1.ClaimUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + insuranceCredentials: z.lazy(() => InsuranceCredentialUncheckedUpdateManyWithoutUserNestedInput_schema_1.InsuranceCredentialUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + shoppingVendors: z.lazy(() => ShoppingVendorUncheckedUpdateManyWithoutUserNestedInput_schema_1.ShoppingVendorUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + updatedPayments: z.lazy(() => PaymentUncheckedUpdateManyWithoutUpdatedByNestedInput_schema_1.PaymentUncheckedUpdateManyWithoutUpdatedByNestedInputObjectSchema).optional(), + backups: z.lazy(() => DatabaseBackupUncheckedUpdateManyWithoutUserNestedInput_schema_1.DatabaseBackupUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + backupDestinations: z.lazy(() => BackupDestinationUncheckedUpdateManyWithoutUserNestedInput_schema_1.BackupDestinationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + notifications: z.lazy(() => NotificationUncheckedUpdateManyWithoutUserNestedInput_schema_1.NotificationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + cloudFolders: z.lazy(() => CloudFolderUncheckedUpdateManyWithoutUserNestedInput_schema_1.CloudFolderUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + cloudFiles: z.lazy(() => CloudFileUncheckedUpdateManyWithoutUserNestedInput_schema_1.CloudFileUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + communications: z.lazy(() => CommunicationUncheckedUpdateManyWithoutUserNestedInput_schema_1.CommunicationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + twilioSettings: z.lazy(() => TwilioSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1.TwilioSettingsUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), + aiSettings: z.lazy(() => AiSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1.AiSettingsUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), + officeHours: z.lazy(() => OfficeHoursUncheckedUpdateOneWithoutUserNestedInput_schema_1.OfficeHoursUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), + officeContact: z.lazy(() => OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), + procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), + insuranceContacts: z.lazy(() => InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional() +}).strict(); +exports.UserUncheckedUpdateWithoutLabRxTemplatesInputObjectSchema = makeSchema(); +exports.UserUncheckedUpdateWithoutLabRxTemplatesInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutNotificationsInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutNotificationsInput.schema.js index a2558804..aa67b471 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutNotificationsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutNotificationsInput.schema.js @@ -58,6 +58,8 @@ const OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require(" const ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUncheckedUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUncheckedUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -88,7 +90,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUncheckedUpdateWithoutNotificationsInputObjectSchema = makeSchema(); exports.UserUncheckedUpdateWithoutNotificationsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutNpiProvidersInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutNpiProvidersInput.schema.js index 4031c6da..4e52f6c9 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutNpiProvidersInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutNpiProvidersInput.schema.js @@ -58,6 +58,8 @@ const OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require(" const ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUncheckedUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUncheckedUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -88,7 +90,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUncheckedUpdateWithoutNpiProvidersInputObjectSchema = makeSchema(); exports.UserUncheckedUpdateWithoutNpiProvidersInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutOfficeContactInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutOfficeContactInput.schema.js index 503ec2e9..8ee5506b 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutOfficeContactInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutOfficeContactInput.schema.js @@ -58,6 +58,8 @@ const OfficeHoursUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./ const ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUncheckedUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUncheckedUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -88,7 +90,9 @@ const makeSchema = () => z.object({ officeHours: z.lazy(() => OfficeHoursUncheckedUpdateOneWithoutUserNestedInput_schema_1.OfficeHoursUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUncheckedUpdateWithoutOfficeContactInputObjectSchema = makeSchema(); exports.UserUncheckedUpdateWithoutOfficeContactInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutOfficeHoursInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutOfficeHoursInput.schema.js index 60ce8a5a..14552ffd 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutOfficeHoursInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutOfficeHoursInput.schema.js @@ -58,6 +58,8 @@ const OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require(" const ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUncheckedUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUncheckedUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -88,7 +90,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUncheckedUpdateWithoutOfficeHoursInputObjectSchema = makeSchema(); exports.UserUncheckedUpdateWithoutOfficeHoursInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutPatientConversationsInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutPatientConversationsInput.schema.js index aaf4e94b..4326603d 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutPatientConversationsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutPatientConversationsInput.schema.js @@ -58,6 +58,8 @@ const OfficeHoursUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./ const OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeContactUncheckedUpdateOneWithoutUserNestedInput.schema"); const ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUncheckedUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -88,7 +90,9 @@ const makeSchema = () => z.object({ officeHours: z.lazy(() => OfficeHoursUncheckedUpdateOneWithoutUserNestedInput_schema_1.OfficeHoursUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), officeContact: z.lazy(() => OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), - insuranceContacts: z.lazy(() => InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional() + insuranceContacts: z.lazy(() => InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUncheckedUpdateWithoutPatientConversationsInputObjectSchema = makeSchema(); exports.UserUncheckedUpdateWithoutPatientConversationsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutPatientsInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutPatientsInput.schema.js index 8746fd61..327d6945 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutPatientsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutPatientsInput.schema.js @@ -58,6 +58,8 @@ const OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require(" const ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUncheckedUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUncheckedUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -88,7 +90,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUncheckedUpdateWithoutPatientsInputObjectSchema = makeSchema(); exports.UserUncheckedUpdateWithoutPatientsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutProcedureTimeslotInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutProcedureTimeslotInput.schema.js index 46abe83c..05820ecc 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutProcedureTimeslotInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutProcedureTimeslotInput.schema.js @@ -58,6 +58,8 @@ const OfficeHoursUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./ const OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeContactUncheckedUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUncheckedUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUncheckedUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -88,7 +90,9 @@ const makeSchema = () => z.object({ officeHours: z.lazy(() => OfficeHoursUncheckedUpdateOneWithoutUserNestedInput_schema_1.OfficeHoursUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), officeContact: z.lazy(() => OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUncheckedUpdateWithoutProcedureTimeslotInputObjectSchema = makeSchema(); exports.UserUncheckedUpdateWithoutProcedureTimeslotInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutSeleniumSettingsInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutSeleniumSettingsInput.schema.js new file mode 100644 index 00000000..1d026735 --- /dev/null +++ b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutSeleniumSettingsInput.schema.js @@ -0,0 +1,98 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.UserUncheckedUpdateWithoutSeleniumSettingsInputObjectZodSchema = exports.UserUncheckedUpdateWithoutSeleniumSettingsInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); +const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); +const BoolFieldUpdateOperationsInput_schema_1 = require("./BoolFieldUpdateOperationsInput.schema"); +const PatientUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientUncheckedUpdateManyWithoutUserNestedInput.schema"); +const AppointmentUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./AppointmentUncheckedUpdateManyWithoutUserNestedInput.schema"); +const StaffUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./StaffUncheckedUpdateManyWithoutUserNestedInput.schema"); +const NpiProviderUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./NpiProviderUncheckedUpdateManyWithoutUserNestedInput.schema"); +const ClaimUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./ClaimUncheckedUpdateManyWithoutUserNestedInput.schema"); +const InsuranceCredentialUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceCredentialUncheckedUpdateManyWithoutUserNestedInput.schema"); +const ShoppingVendorUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./ShoppingVendorUncheckedUpdateManyWithoutUserNestedInput.schema"); +const PaymentUncheckedUpdateManyWithoutUpdatedByNestedInput_schema_1 = require("./PaymentUncheckedUpdateManyWithoutUpdatedByNestedInput.schema"); +const DatabaseBackupUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./DatabaseBackupUncheckedUpdateManyWithoutUserNestedInput.schema"); +const BackupDestinationUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./BackupDestinationUncheckedUpdateManyWithoutUserNestedInput.schema"); +const NotificationUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./NotificationUncheckedUpdateManyWithoutUserNestedInput.schema"); +const CloudFolderUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./CloudFolderUncheckedUpdateManyWithoutUserNestedInput.schema"); +const CloudFileUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./CloudFileUncheckedUpdateManyWithoutUserNestedInput.schema"); +const CommunicationUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./CommunicationUncheckedUpdateManyWithoutUserNestedInput.schema"); +const TwilioSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./TwilioSettingsUncheckedUpdateOneWithoutUserNestedInput.schema"); +const AiSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./AiSettingsUncheckedUpdateOneWithoutUserNestedInput.schema"); +const OfficeHoursUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeHoursUncheckedUpdateOneWithoutUserNestedInput.schema"); +const OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeContactUncheckedUpdateOneWithoutUserNestedInput.schema"); +const ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput.schema"); +const InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUncheckedUpdateManyWithoutUserNestedInput.schema"); +const PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUncheckedUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput.schema"); +const makeSchema = () => z.object({ + id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), + password: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), + autoBackupEnabled: z.union([z.boolean(), z.lazy(() => BoolFieldUpdateOperationsInput_schema_1.BoolFieldUpdateOperationsInputObjectSchema)]).optional(), + autoBackupHour: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + usbBackupEnabled: z.union([z.boolean(), z.lazy(() => BoolFieldUpdateOperationsInput_schema_1.BoolFieldUpdateOperationsInputObjectSchema)]).optional(), + usbBackupHour: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + autoMhCheckEnabled: z.union([z.boolean(), z.lazy(() => BoolFieldUpdateOperationsInput_schema_1.BoolFieldUpdateOperationsInputObjectSchema)]).optional(), + autoMhCheckDayOfWeek: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + autoMhCheckHour: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + patients: z.lazy(() => PatientUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUncheckedUpdateManyWithoutUserNestedInput_schema_1.AppointmentUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + staff: z.lazy(() => StaffUncheckedUpdateManyWithoutUserNestedInput_schema_1.StaffUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + npiProviders: z.lazy(() => NpiProviderUncheckedUpdateManyWithoutUserNestedInput_schema_1.NpiProviderUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + claims: z.lazy(() => ClaimUncheckedUpdateManyWithoutUserNestedInput_schema_1.ClaimUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + insuranceCredentials: z.lazy(() => InsuranceCredentialUncheckedUpdateManyWithoutUserNestedInput_schema_1.InsuranceCredentialUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + shoppingVendors: z.lazy(() => ShoppingVendorUncheckedUpdateManyWithoutUserNestedInput_schema_1.ShoppingVendorUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + updatedPayments: z.lazy(() => PaymentUncheckedUpdateManyWithoutUpdatedByNestedInput_schema_1.PaymentUncheckedUpdateManyWithoutUpdatedByNestedInputObjectSchema).optional(), + backups: z.lazy(() => DatabaseBackupUncheckedUpdateManyWithoutUserNestedInput_schema_1.DatabaseBackupUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + backupDestinations: z.lazy(() => BackupDestinationUncheckedUpdateManyWithoutUserNestedInput_schema_1.BackupDestinationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + notifications: z.lazy(() => NotificationUncheckedUpdateManyWithoutUserNestedInput_schema_1.NotificationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + cloudFolders: z.lazy(() => CloudFolderUncheckedUpdateManyWithoutUserNestedInput_schema_1.CloudFolderUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + cloudFiles: z.lazy(() => CloudFileUncheckedUpdateManyWithoutUserNestedInput_schema_1.CloudFileUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + communications: z.lazy(() => CommunicationUncheckedUpdateManyWithoutUserNestedInput_schema_1.CommunicationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + twilioSettings: z.lazy(() => TwilioSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1.TwilioSettingsUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), + aiSettings: z.lazy(() => AiSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1.AiSettingsUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), + officeHours: z.lazy(() => OfficeHoursUncheckedUpdateOneWithoutUserNestedInput_schema_1.OfficeHoursUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), + officeContact: z.lazy(() => OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), + procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), + insuranceContacts: z.lazy(() => InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional() +}).strict(); +exports.UserUncheckedUpdateWithoutSeleniumSettingsInputObjectSchema = makeSchema(); +exports.UserUncheckedUpdateWithoutSeleniumSettingsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutShoppingVendorsInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutShoppingVendorsInput.schema.js index 08f9a7df..ff7669e8 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutShoppingVendorsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutShoppingVendorsInput.schema.js @@ -58,6 +58,8 @@ const OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require(" const ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUncheckedUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUncheckedUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -88,7 +90,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUncheckedUpdateWithoutShoppingVendorsInputObjectSchema = makeSchema(); exports.UserUncheckedUpdateWithoutShoppingVendorsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutStaffInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutStaffInput.schema.js index 65bbd952..de3df8e5 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutStaffInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutStaffInput.schema.js @@ -58,6 +58,8 @@ const OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require(" const ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUncheckedUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUncheckedUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -88,7 +90,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUncheckedUpdateWithoutStaffInputObjectSchema = makeSchema(); exports.UserUncheckedUpdateWithoutStaffInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutTwilioSettingsInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutTwilioSettingsInput.schema.js index d8538ceb..27015c6f 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutTwilioSettingsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutTwilioSettingsInput.schema.js @@ -58,6 +58,8 @@ const OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require(" const ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUncheckedUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUncheckedUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -88,7 +90,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUncheckedUpdateWithoutTwilioSettingsInputObjectSchema = makeSchema(); exports.UserUncheckedUpdateWithoutTwilioSettingsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutUpdatedPaymentsInput.schema.js b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutUpdatedPaymentsInput.schema.js index 73f02869..1b274a85 100644 --- a/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutUpdatedPaymentsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUncheckedUpdateWithoutUpdatedPaymentsInput.schema.js @@ -58,6 +58,8 @@ const OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require(" const ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUncheckedUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUncheckedUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -88,7 +90,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUncheckedUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUncheckedUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUncheckedUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUncheckedUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUncheckedUpdateWithoutUpdatedPaymentsInputObjectSchema = makeSchema(); exports.UserUncheckedUpdateWithoutUpdatedPaymentsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUpdateInput.schema.js b/packages/db/shared/schemas/objects/UserUpdateInput.schema.js index f348fe12..94767015 100644 --- a/packages/db/shared/schemas/objects/UserUpdateInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUpdateInput.schema.js @@ -59,6 +59,8 @@ const OfficeContactUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeC const ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), password: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -89,7 +91,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUpdateInputObjectSchema = makeSchema(); exports.UserUpdateInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUpdateOneRequiredWithoutLabRxTemplatesNestedInput.schema.js b/packages/db/shared/schemas/objects/UserUpdateOneRequiredWithoutLabRxTemplatesNestedInput.schema.js new file mode 100644 index 00000000..620a83ac --- /dev/null +++ b/packages/db/shared/schemas/objects/UserUpdateOneRequiredWithoutLabRxTemplatesNestedInput.schema.js @@ -0,0 +1,54 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.UserUpdateOneRequiredWithoutLabRxTemplatesNestedInputObjectZodSchema = exports.UserUpdateOneRequiredWithoutLabRxTemplatesNestedInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const UserCreateWithoutLabRxTemplatesInput_schema_1 = require("./UserCreateWithoutLabRxTemplatesInput.schema"); +const UserUncheckedCreateWithoutLabRxTemplatesInput_schema_1 = require("./UserUncheckedCreateWithoutLabRxTemplatesInput.schema"); +const UserCreateOrConnectWithoutLabRxTemplatesInput_schema_1 = require("./UserCreateOrConnectWithoutLabRxTemplatesInput.schema"); +const UserUpsertWithoutLabRxTemplatesInput_schema_1 = require("./UserUpsertWithoutLabRxTemplatesInput.schema"); +const UserWhereUniqueInput_schema_1 = require("./UserWhereUniqueInput.schema"); +const UserUpdateToOneWithWhereWithoutLabRxTemplatesInput_schema_1 = require("./UserUpdateToOneWithWhereWithoutLabRxTemplatesInput.schema"); +const UserUpdateWithoutLabRxTemplatesInput_schema_1 = require("./UserUpdateWithoutLabRxTemplatesInput.schema"); +const UserUncheckedUpdateWithoutLabRxTemplatesInput_schema_1 = require("./UserUncheckedUpdateWithoutLabRxTemplatesInput.schema"); +const makeSchema = () => z.object({ + create: z.union([z.lazy(() => UserCreateWithoutLabRxTemplatesInput_schema_1.UserCreateWithoutLabRxTemplatesInputObjectSchema), z.lazy(() => UserUncheckedCreateWithoutLabRxTemplatesInput_schema_1.UserUncheckedCreateWithoutLabRxTemplatesInputObjectSchema)]).optional(), + connectOrCreate: z.lazy(() => UserCreateOrConnectWithoutLabRxTemplatesInput_schema_1.UserCreateOrConnectWithoutLabRxTemplatesInputObjectSchema).optional(), + upsert: z.lazy(() => UserUpsertWithoutLabRxTemplatesInput_schema_1.UserUpsertWithoutLabRxTemplatesInputObjectSchema).optional(), + connect: z.lazy(() => UserWhereUniqueInput_schema_1.UserWhereUniqueInputObjectSchema).optional(), + update: z.union([z.lazy(() => UserUpdateToOneWithWhereWithoutLabRxTemplatesInput_schema_1.UserUpdateToOneWithWhereWithoutLabRxTemplatesInputObjectSchema), z.lazy(() => UserUpdateWithoutLabRxTemplatesInput_schema_1.UserUpdateWithoutLabRxTemplatesInputObjectSchema), z.lazy(() => UserUncheckedUpdateWithoutLabRxTemplatesInput_schema_1.UserUncheckedUpdateWithoutLabRxTemplatesInputObjectSchema)]).optional() +}).strict(); +exports.UserUpdateOneRequiredWithoutLabRxTemplatesNestedInputObjectSchema = makeSchema(); +exports.UserUpdateOneRequiredWithoutLabRxTemplatesNestedInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUpdateOneRequiredWithoutSeleniumSettingsNestedInput.schema.js b/packages/db/shared/schemas/objects/UserUpdateOneRequiredWithoutSeleniumSettingsNestedInput.schema.js new file mode 100644 index 00000000..842f9982 --- /dev/null +++ b/packages/db/shared/schemas/objects/UserUpdateOneRequiredWithoutSeleniumSettingsNestedInput.schema.js @@ -0,0 +1,54 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.UserUpdateOneRequiredWithoutSeleniumSettingsNestedInputObjectZodSchema = exports.UserUpdateOneRequiredWithoutSeleniumSettingsNestedInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const UserCreateWithoutSeleniumSettingsInput_schema_1 = require("./UserCreateWithoutSeleniumSettingsInput.schema"); +const UserUncheckedCreateWithoutSeleniumSettingsInput_schema_1 = require("./UserUncheckedCreateWithoutSeleniumSettingsInput.schema"); +const UserCreateOrConnectWithoutSeleniumSettingsInput_schema_1 = require("./UserCreateOrConnectWithoutSeleniumSettingsInput.schema"); +const UserUpsertWithoutSeleniumSettingsInput_schema_1 = require("./UserUpsertWithoutSeleniumSettingsInput.schema"); +const UserWhereUniqueInput_schema_1 = require("./UserWhereUniqueInput.schema"); +const UserUpdateToOneWithWhereWithoutSeleniumSettingsInput_schema_1 = require("./UserUpdateToOneWithWhereWithoutSeleniumSettingsInput.schema"); +const UserUpdateWithoutSeleniumSettingsInput_schema_1 = require("./UserUpdateWithoutSeleniumSettingsInput.schema"); +const UserUncheckedUpdateWithoutSeleniumSettingsInput_schema_1 = require("./UserUncheckedUpdateWithoutSeleniumSettingsInput.schema"); +const makeSchema = () => z.object({ + create: z.union([z.lazy(() => UserCreateWithoutSeleniumSettingsInput_schema_1.UserCreateWithoutSeleniumSettingsInputObjectSchema), z.lazy(() => UserUncheckedCreateWithoutSeleniumSettingsInput_schema_1.UserUncheckedCreateWithoutSeleniumSettingsInputObjectSchema)]).optional(), + connectOrCreate: z.lazy(() => UserCreateOrConnectWithoutSeleniumSettingsInput_schema_1.UserCreateOrConnectWithoutSeleniumSettingsInputObjectSchema).optional(), + upsert: z.lazy(() => UserUpsertWithoutSeleniumSettingsInput_schema_1.UserUpsertWithoutSeleniumSettingsInputObjectSchema).optional(), + connect: z.lazy(() => UserWhereUniqueInput_schema_1.UserWhereUniqueInputObjectSchema).optional(), + update: z.union([z.lazy(() => UserUpdateToOneWithWhereWithoutSeleniumSettingsInput_schema_1.UserUpdateToOneWithWhereWithoutSeleniumSettingsInputObjectSchema), z.lazy(() => UserUpdateWithoutSeleniumSettingsInput_schema_1.UserUpdateWithoutSeleniumSettingsInputObjectSchema), z.lazy(() => UserUncheckedUpdateWithoutSeleniumSettingsInput_schema_1.UserUncheckedUpdateWithoutSeleniumSettingsInputObjectSchema)]).optional() +}).strict(); +exports.UserUpdateOneRequiredWithoutSeleniumSettingsNestedInputObjectSchema = makeSchema(); +exports.UserUpdateOneRequiredWithoutSeleniumSettingsNestedInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUpdateToOneWithWhereWithoutLabRxTemplatesInput.schema.js b/packages/db/shared/schemas/objects/UserUpdateToOneWithWhereWithoutLabRxTemplatesInput.schema.js new file mode 100644 index 00000000..a9e4918d --- /dev/null +++ b/packages/db/shared/schemas/objects/UserUpdateToOneWithWhereWithoutLabRxTemplatesInput.schema.js @@ -0,0 +1,46 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.UserUpdateToOneWithWhereWithoutLabRxTemplatesInputObjectZodSchema = exports.UserUpdateToOneWithWhereWithoutLabRxTemplatesInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const UserWhereInput_schema_1 = require("./UserWhereInput.schema"); +const UserUpdateWithoutLabRxTemplatesInput_schema_1 = require("./UserUpdateWithoutLabRxTemplatesInput.schema"); +const UserUncheckedUpdateWithoutLabRxTemplatesInput_schema_1 = require("./UserUncheckedUpdateWithoutLabRxTemplatesInput.schema"); +const makeSchema = () => z.object({ + where: z.lazy(() => UserWhereInput_schema_1.UserWhereInputObjectSchema).optional(), + data: z.union([z.lazy(() => UserUpdateWithoutLabRxTemplatesInput_schema_1.UserUpdateWithoutLabRxTemplatesInputObjectSchema), z.lazy(() => UserUncheckedUpdateWithoutLabRxTemplatesInput_schema_1.UserUncheckedUpdateWithoutLabRxTemplatesInputObjectSchema)]) +}).strict(); +exports.UserUpdateToOneWithWhereWithoutLabRxTemplatesInputObjectSchema = makeSchema(); +exports.UserUpdateToOneWithWhereWithoutLabRxTemplatesInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUpdateToOneWithWhereWithoutSeleniumSettingsInput.schema.js b/packages/db/shared/schemas/objects/UserUpdateToOneWithWhereWithoutSeleniumSettingsInput.schema.js new file mode 100644 index 00000000..54440a76 --- /dev/null +++ b/packages/db/shared/schemas/objects/UserUpdateToOneWithWhereWithoutSeleniumSettingsInput.schema.js @@ -0,0 +1,46 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.UserUpdateToOneWithWhereWithoutSeleniumSettingsInputObjectZodSchema = exports.UserUpdateToOneWithWhereWithoutSeleniumSettingsInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const UserWhereInput_schema_1 = require("./UserWhereInput.schema"); +const UserUpdateWithoutSeleniumSettingsInput_schema_1 = require("./UserUpdateWithoutSeleniumSettingsInput.schema"); +const UserUncheckedUpdateWithoutSeleniumSettingsInput_schema_1 = require("./UserUncheckedUpdateWithoutSeleniumSettingsInput.schema"); +const makeSchema = () => z.object({ + where: z.lazy(() => UserWhereInput_schema_1.UserWhereInputObjectSchema).optional(), + data: z.union([z.lazy(() => UserUpdateWithoutSeleniumSettingsInput_schema_1.UserUpdateWithoutSeleniumSettingsInputObjectSchema), z.lazy(() => UserUncheckedUpdateWithoutSeleniumSettingsInput_schema_1.UserUncheckedUpdateWithoutSeleniumSettingsInputObjectSchema)]) +}).strict(); +exports.UserUpdateToOneWithWhereWithoutSeleniumSettingsInputObjectSchema = makeSchema(); +exports.UserUpdateToOneWithWhereWithoutSeleniumSettingsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUpdateWithoutAiSettingsInput.schema.js b/packages/db/shared/schemas/objects/UserUpdateWithoutAiSettingsInput.schema.js index ecba9e2a..2c763b4e 100644 --- a/packages/db/shared/schemas/objects/UserUpdateWithoutAiSettingsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUpdateWithoutAiSettingsInput.schema.js @@ -58,6 +58,8 @@ const OfficeContactUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeC const ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), password: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -87,7 +89,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUpdateWithoutAiSettingsInputObjectSchema = makeSchema(); exports.UserUpdateWithoutAiSettingsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUpdateWithoutAppointmentsInput.schema.js b/packages/db/shared/schemas/objects/UserUpdateWithoutAppointmentsInput.schema.js index 9ef74500..313b8f80 100644 --- a/packages/db/shared/schemas/objects/UserUpdateWithoutAppointmentsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUpdateWithoutAppointmentsInput.schema.js @@ -58,6 +58,8 @@ const OfficeContactUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeC const ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), password: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -87,7 +89,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUpdateWithoutAppointmentsInputObjectSchema = makeSchema(); exports.UserUpdateWithoutAppointmentsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUpdateWithoutBackupDestinationsInput.schema.js b/packages/db/shared/schemas/objects/UserUpdateWithoutBackupDestinationsInput.schema.js index 760ef63c..5a364ad8 100644 --- a/packages/db/shared/schemas/objects/UserUpdateWithoutBackupDestinationsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUpdateWithoutBackupDestinationsInput.schema.js @@ -58,6 +58,8 @@ const OfficeContactUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeC const ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), password: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -87,7 +89,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUpdateWithoutBackupDestinationsInputObjectSchema = makeSchema(); exports.UserUpdateWithoutBackupDestinationsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUpdateWithoutBackupsInput.schema.js b/packages/db/shared/schemas/objects/UserUpdateWithoutBackupsInput.schema.js index 10b4cb02..3a717f49 100644 --- a/packages/db/shared/schemas/objects/UserUpdateWithoutBackupsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUpdateWithoutBackupsInput.schema.js @@ -58,6 +58,8 @@ const OfficeContactUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeC const ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), password: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -87,7 +89,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUpdateWithoutBackupsInputObjectSchema = makeSchema(); exports.UserUpdateWithoutBackupsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUpdateWithoutClaimsInput.schema.js b/packages/db/shared/schemas/objects/UserUpdateWithoutClaimsInput.schema.js index db76535b..f02c6223 100644 --- a/packages/db/shared/schemas/objects/UserUpdateWithoutClaimsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUpdateWithoutClaimsInput.schema.js @@ -58,6 +58,8 @@ const OfficeContactUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeC const ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), password: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -87,7 +89,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUpdateWithoutClaimsInputObjectSchema = makeSchema(); exports.UserUpdateWithoutClaimsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUpdateWithoutCloudFilesInput.schema.js b/packages/db/shared/schemas/objects/UserUpdateWithoutCloudFilesInput.schema.js index 30451d8f..66cdd7db 100644 --- a/packages/db/shared/schemas/objects/UserUpdateWithoutCloudFilesInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUpdateWithoutCloudFilesInput.schema.js @@ -58,6 +58,8 @@ const OfficeContactUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeC const ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), password: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -87,7 +89,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUpdateWithoutCloudFilesInputObjectSchema = makeSchema(); exports.UserUpdateWithoutCloudFilesInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUpdateWithoutCloudFoldersInput.schema.js b/packages/db/shared/schemas/objects/UserUpdateWithoutCloudFoldersInput.schema.js index fcf41ad4..5ace99b5 100644 --- a/packages/db/shared/schemas/objects/UserUpdateWithoutCloudFoldersInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUpdateWithoutCloudFoldersInput.schema.js @@ -58,6 +58,8 @@ const OfficeContactUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeC const ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), password: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -87,7 +89,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUpdateWithoutCloudFoldersInputObjectSchema = makeSchema(); exports.UserUpdateWithoutCloudFoldersInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUpdateWithoutCommunicationsInput.schema.js b/packages/db/shared/schemas/objects/UserUpdateWithoutCommunicationsInput.schema.js index 50d4eab4..31e2d53a 100644 --- a/packages/db/shared/schemas/objects/UserUpdateWithoutCommunicationsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUpdateWithoutCommunicationsInput.schema.js @@ -58,6 +58,8 @@ const OfficeContactUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeC const ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), password: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -87,7 +89,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUpdateWithoutCommunicationsInputObjectSchema = makeSchema(); exports.UserUpdateWithoutCommunicationsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUpdateWithoutInsuranceContactsInput.schema.js b/packages/db/shared/schemas/objects/UserUpdateWithoutInsuranceContactsInput.schema.js index fc68c19b..e1ae41bd 100644 --- a/packages/db/shared/schemas/objects/UserUpdateWithoutInsuranceContactsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUpdateWithoutInsuranceContactsInput.schema.js @@ -58,6 +58,8 @@ const OfficeHoursUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeHou const OfficeContactUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeContactUpdateOneWithoutUserNestedInput.schema"); const ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUpdateOneWithoutUserNestedInput.schema"); const PatientConversationUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), password: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -87,7 +89,9 @@ const makeSchema = () => z.object({ officeHours: z.lazy(() => OfficeHoursUpdateOneWithoutUserNestedInput_schema_1.OfficeHoursUpdateOneWithoutUserNestedInputObjectSchema).optional(), officeContact: z.lazy(() => OfficeContactUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUpdateOneWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUpdateWithoutInsuranceContactsInputObjectSchema = makeSchema(); exports.UserUpdateWithoutInsuranceContactsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUpdateWithoutInsuranceCredentialsInput.schema.js b/packages/db/shared/schemas/objects/UserUpdateWithoutInsuranceCredentialsInput.schema.js index 4a3f3f25..d6a28c35 100644 --- a/packages/db/shared/schemas/objects/UserUpdateWithoutInsuranceCredentialsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUpdateWithoutInsuranceCredentialsInput.schema.js @@ -58,6 +58,8 @@ const OfficeContactUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeC const ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), password: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -87,7 +89,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUpdateWithoutInsuranceCredentialsInputObjectSchema = makeSchema(); exports.UserUpdateWithoutInsuranceCredentialsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUpdateWithoutLabRxTemplatesInput.schema.js b/packages/db/shared/schemas/objects/UserUpdateWithoutLabRxTemplatesInput.schema.js new file mode 100644 index 00000000..ccaca96d --- /dev/null +++ b/packages/db/shared/schemas/objects/UserUpdateWithoutLabRxTemplatesInput.schema.js @@ -0,0 +1,97 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.UserUpdateWithoutLabRxTemplatesInputObjectZodSchema = exports.UserUpdateWithoutLabRxTemplatesInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); +const BoolFieldUpdateOperationsInput_schema_1 = require("./BoolFieldUpdateOperationsInput.schema"); +const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); +const PatientUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientUpdateManyWithoutUserNestedInput.schema"); +const AppointmentUpdateManyWithoutUserNestedInput_schema_1 = require("./AppointmentUpdateManyWithoutUserNestedInput.schema"); +const StaffUpdateManyWithoutUserNestedInput_schema_1 = require("./StaffUpdateManyWithoutUserNestedInput.schema"); +const NpiProviderUpdateManyWithoutUserNestedInput_schema_1 = require("./NpiProviderUpdateManyWithoutUserNestedInput.schema"); +const ClaimUpdateManyWithoutUserNestedInput_schema_1 = require("./ClaimUpdateManyWithoutUserNestedInput.schema"); +const InsuranceCredentialUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceCredentialUpdateManyWithoutUserNestedInput.schema"); +const ShoppingVendorUpdateManyWithoutUserNestedInput_schema_1 = require("./ShoppingVendorUpdateManyWithoutUserNestedInput.schema"); +const PaymentUpdateManyWithoutUpdatedByNestedInput_schema_1 = require("./PaymentUpdateManyWithoutUpdatedByNestedInput.schema"); +const DatabaseBackupUpdateManyWithoutUserNestedInput_schema_1 = require("./DatabaseBackupUpdateManyWithoutUserNestedInput.schema"); +const BackupDestinationUpdateManyWithoutUserNestedInput_schema_1 = require("./BackupDestinationUpdateManyWithoutUserNestedInput.schema"); +const NotificationUpdateManyWithoutUserNestedInput_schema_1 = require("./NotificationUpdateManyWithoutUserNestedInput.schema"); +const CloudFolderUpdateManyWithoutUserNestedInput_schema_1 = require("./CloudFolderUpdateManyWithoutUserNestedInput.schema"); +const CloudFileUpdateManyWithoutUserNestedInput_schema_1 = require("./CloudFileUpdateManyWithoutUserNestedInput.schema"); +const CommunicationUpdateManyWithoutUserNestedInput_schema_1 = require("./CommunicationUpdateManyWithoutUserNestedInput.schema"); +const TwilioSettingsUpdateOneWithoutUserNestedInput_schema_1 = require("./TwilioSettingsUpdateOneWithoutUserNestedInput.schema"); +const AiSettingsUpdateOneWithoutUserNestedInput_schema_1 = require("./AiSettingsUpdateOneWithoutUserNestedInput.schema"); +const OfficeHoursUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeHoursUpdateOneWithoutUserNestedInput.schema"); +const OfficeContactUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeContactUpdateOneWithoutUserNestedInput.schema"); +const ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUpdateOneWithoutUserNestedInput.schema"); +const InsuranceContactUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUpdateManyWithoutUserNestedInput.schema"); +const PatientConversationUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUpdateOneWithoutUserNestedInput.schema"); +const makeSchema = () => z.object({ + username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), + password: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), + autoBackupEnabled: z.union([z.boolean(), z.lazy(() => BoolFieldUpdateOperationsInput_schema_1.BoolFieldUpdateOperationsInputObjectSchema)]).optional(), + autoBackupHour: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + usbBackupEnabled: z.union([z.boolean(), z.lazy(() => BoolFieldUpdateOperationsInput_schema_1.BoolFieldUpdateOperationsInputObjectSchema)]).optional(), + usbBackupHour: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + autoMhCheckEnabled: z.union([z.boolean(), z.lazy(() => BoolFieldUpdateOperationsInput_schema_1.BoolFieldUpdateOperationsInputObjectSchema)]).optional(), + autoMhCheckDayOfWeek: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + autoMhCheckHour: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + patients: z.lazy(() => PatientUpdateManyWithoutUserNestedInput_schema_1.PatientUpdateManyWithoutUserNestedInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUpdateManyWithoutUserNestedInput_schema_1.AppointmentUpdateManyWithoutUserNestedInputObjectSchema).optional(), + staff: z.lazy(() => StaffUpdateManyWithoutUserNestedInput_schema_1.StaffUpdateManyWithoutUserNestedInputObjectSchema).optional(), + npiProviders: z.lazy(() => NpiProviderUpdateManyWithoutUserNestedInput_schema_1.NpiProviderUpdateManyWithoutUserNestedInputObjectSchema).optional(), + claims: z.lazy(() => ClaimUpdateManyWithoutUserNestedInput_schema_1.ClaimUpdateManyWithoutUserNestedInputObjectSchema).optional(), + insuranceCredentials: z.lazy(() => InsuranceCredentialUpdateManyWithoutUserNestedInput_schema_1.InsuranceCredentialUpdateManyWithoutUserNestedInputObjectSchema).optional(), + shoppingVendors: z.lazy(() => ShoppingVendorUpdateManyWithoutUserNestedInput_schema_1.ShoppingVendorUpdateManyWithoutUserNestedInputObjectSchema).optional(), + updatedPayments: z.lazy(() => PaymentUpdateManyWithoutUpdatedByNestedInput_schema_1.PaymentUpdateManyWithoutUpdatedByNestedInputObjectSchema).optional(), + backups: z.lazy(() => DatabaseBackupUpdateManyWithoutUserNestedInput_schema_1.DatabaseBackupUpdateManyWithoutUserNestedInputObjectSchema).optional(), + backupDestinations: z.lazy(() => BackupDestinationUpdateManyWithoutUserNestedInput_schema_1.BackupDestinationUpdateManyWithoutUserNestedInputObjectSchema).optional(), + notifications: z.lazy(() => NotificationUpdateManyWithoutUserNestedInput_schema_1.NotificationUpdateManyWithoutUserNestedInputObjectSchema).optional(), + cloudFolders: z.lazy(() => CloudFolderUpdateManyWithoutUserNestedInput_schema_1.CloudFolderUpdateManyWithoutUserNestedInputObjectSchema).optional(), + cloudFiles: z.lazy(() => CloudFileUpdateManyWithoutUserNestedInput_schema_1.CloudFileUpdateManyWithoutUserNestedInputObjectSchema).optional(), + communications: z.lazy(() => CommunicationUpdateManyWithoutUserNestedInput_schema_1.CommunicationUpdateManyWithoutUserNestedInputObjectSchema).optional(), + twilioSettings: z.lazy(() => TwilioSettingsUpdateOneWithoutUserNestedInput_schema_1.TwilioSettingsUpdateOneWithoutUserNestedInputObjectSchema).optional(), + aiSettings: z.lazy(() => AiSettingsUpdateOneWithoutUserNestedInput_schema_1.AiSettingsUpdateOneWithoutUserNestedInputObjectSchema).optional(), + officeHours: z.lazy(() => OfficeHoursUpdateOneWithoutUserNestedInput_schema_1.OfficeHoursUpdateOneWithoutUserNestedInputObjectSchema).optional(), + officeContact: z.lazy(() => OfficeContactUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUpdateOneWithoutUserNestedInputObjectSchema).optional(), + procedureTimeslot: z.lazy(() => ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUpdateOneWithoutUserNestedInputObjectSchema).optional(), + insuranceContacts: z.lazy(() => InsuranceContactUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUpdateManyWithoutUserNestedInputObjectSchema).optional(), + patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUpdateOneWithoutUserNestedInputObjectSchema).optional() +}).strict(); +exports.UserUpdateWithoutLabRxTemplatesInputObjectSchema = makeSchema(); +exports.UserUpdateWithoutLabRxTemplatesInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUpdateWithoutNotificationsInput.schema.js b/packages/db/shared/schemas/objects/UserUpdateWithoutNotificationsInput.schema.js index d67454dd..cdb58f24 100644 --- a/packages/db/shared/schemas/objects/UserUpdateWithoutNotificationsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUpdateWithoutNotificationsInput.schema.js @@ -58,6 +58,8 @@ const OfficeContactUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeC const ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), password: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -87,7 +89,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUpdateWithoutNotificationsInputObjectSchema = makeSchema(); exports.UserUpdateWithoutNotificationsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUpdateWithoutNpiProvidersInput.schema.js b/packages/db/shared/schemas/objects/UserUpdateWithoutNpiProvidersInput.schema.js index 65a0974c..0057e09a 100644 --- a/packages/db/shared/schemas/objects/UserUpdateWithoutNpiProvidersInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUpdateWithoutNpiProvidersInput.schema.js @@ -58,6 +58,8 @@ const OfficeContactUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeC const ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), password: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -87,7 +89,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUpdateWithoutNpiProvidersInputObjectSchema = makeSchema(); exports.UserUpdateWithoutNpiProvidersInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUpdateWithoutOfficeContactInput.schema.js b/packages/db/shared/schemas/objects/UserUpdateWithoutOfficeContactInput.schema.js index 43e41327..7d6804dd 100644 --- a/packages/db/shared/schemas/objects/UserUpdateWithoutOfficeContactInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUpdateWithoutOfficeContactInput.schema.js @@ -58,6 +58,8 @@ const OfficeHoursUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeHou const ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), password: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -87,7 +89,9 @@ const makeSchema = () => z.object({ officeHours: z.lazy(() => OfficeHoursUpdateOneWithoutUserNestedInput_schema_1.OfficeHoursUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUpdateWithoutOfficeContactInputObjectSchema = makeSchema(); exports.UserUpdateWithoutOfficeContactInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUpdateWithoutOfficeHoursInput.schema.js b/packages/db/shared/schemas/objects/UserUpdateWithoutOfficeHoursInput.schema.js index 0a7bf852..12a54b52 100644 --- a/packages/db/shared/schemas/objects/UserUpdateWithoutOfficeHoursInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUpdateWithoutOfficeHoursInput.schema.js @@ -58,6 +58,8 @@ const OfficeContactUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeC const ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), password: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -87,7 +89,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUpdateWithoutOfficeHoursInputObjectSchema = makeSchema(); exports.UserUpdateWithoutOfficeHoursInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUpdateWithoutPatientConversationsInput.schema.js b/packages/db/shared/schemas/objects/UserUpdateWithoutPatientConversationsInput.schema.js index 6da7d479..bf06f2e8 100644 --- a/packages/db/shared/schemas/objects/UserUpdateWithoutPatientConversationsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUpdateWithoutPatientConversationsInput.schema.js @@ -58,6 +58,8 @@ const OfficeHoursUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeHou const OfficeContactUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeContactUpdateOneWithoutUserNestedInput.schema"); const ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), password: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -87,7 +89,9 @@ const makeSchema = () => z.object({ officeHours: z.lazy(() => OfficeHoursUpdateOneWithoutUserNestedInput_schema_1.OfficeHoursUpdateOneWithoutUserNestedInputObjectSchema).optional(), officeContact: z.lazy(() => OfficeContactUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUpdateOneWithoutUserNestedInputObjectSchema).optional(), - insuranceContacts: z.lazy(() => InsuranceContactUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUpdateManyWithoutUserNestedInputObjectSchema).optional() + insuranceContacts: z.lazy(() => InsuranceContactUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUpdateWithoutPatientConversationsInputObjectSchema = makeSchema(); exports.UserUpdateWithoutPatientConversationsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUpdateWithoutPatientsInput.schema.js b/packages/db/shared/schemas/objects/UserUpdateWithoutPatientsInput.schema.js index ea02fb87..5e36e5a2 100644 --- a/packages/db/shared/schemas/objects/UserUpdateWithoutPatientsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUpdateWithoutPatientsInput.schema.js @@ -58,6 +58,8 @@ const OfficeContactUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeC const ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), password: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -87,7 +89,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUpdateWithoutPatientsInputObjectSchema = makeSchema(); exports.UserUpdateWithoutPatientsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUpdateWithoutProcedureTimeslotInput.schema.js b/packages/db/shared/schemas/objects/UserUpdateWithoutProcedureTimeslotInput.schema.js index e324169a..42c8d574 100644 --- a/packages/db/shared/schemas/objects/UserUpdateWithoutProcedureTimeslotInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUpdateWithoutProcedureTimeslotInput.schema.js @@ -58,6 +58,8 @@ const OfficeHoursUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeHou const OfficeContactUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeContactUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), password: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -87,7 +89,9 @@ const makeSchema = () => z.object({ officeHours: z.lazy(() => OfficeHoursUpdateOneWithoutUserNestedInput_schema_1.OfficeHoursUpdateOneWithoutUserNestedInputObjectSchema).optional(), officeContact: z.lazy(() => OfficeContactUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUpdateWithoutProcedureTimeslotInputObjectSchema = makeSchema(); exports.UserUpdateWithoutProcedureTimeslotInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUpdateWithoutSeleniumSettingsInput.schema.js b/packages/db/shared/schemas/objects/UserUpdateWithoutSeleniumSettingsInput.schema.js new file mode 100644 index 00000000..c4f34566 --- /dev/null +++ b/packages/db/shared/schemas/objects/UserUpdateWithoutSeleniumSettingsInput.schema.js @@ -0,0 +1,97 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.UserUpdateWithoutSeleniumSettingsInputObjectZodSchema = exports.UserUpdateWithoutSeleniumSettingsInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema"); +const BoolFieldUpdateOperationsInput_schema_1 = require("./BoolFieldUpdateOperationsInput.schema"); +const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema"); +const PatientUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientUpdateManyWithoutUserNestedInput.schema"); +const AppointmentUpdateManyWithoutUserNestedInput_schema_1 = require("./AppointmentUpdateManyWithoutUserNestedInput.schema"); +const StaffUpdateManyWithoutUserNestedInput_schema_1 = require("./StaffUpdateManyWithoutUserNestedInput.schema"); +const NpiProviderUpdateManyWithoutUserNestedInput_schema_1 = require("./NpiProviderUpdateManyWithoutUserNestedInput.schema"); +const ClaimUpdateManyWithoutUserNestedInput_schema_1 = require("./ClaimUpdateManyWithoutUserNestedInput.schema"); +const InsuranceCredentialUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceCredentialUpdateManyWithoutUserNestedInput.schema"); +const ShoppingVendorUpdateManyWithoutUserNestedInput_schema_1 = require("./ShoppingVendorUpdateManyWithoutUserNestedInput.schema"); +const PaymentUpdateManyWithoutUpdatedByNestedInput_schema_1 = require("./PaymentUpdateManyWithoutUpdatedByNestedInput.schema"); +const DatabaseBackupUpdateManyWithoutUserNestedInput_schema_1 = require("./DatabaseBackupUpdateManyWithoutUserNestedInput.schema"); +const BackupDestinationUpdateManyWithoutUserNestedInput_schema_1 = require("./BackupDestinationUpdateManyWithoutUserNestedInput.schema"); +const NotificationUpdateManyWithoutUserNestedInput_schema_1 = require("./NotificationUpdateManyWithoutUserNestedInput.schema"); +const CloudFolderUpdateManyWithoutUserNestedInput_schema_1 = require("./CloudFolderUpdateManyWithoutUserNestedInput.schema"); +const CloudFileUpdateManyWithoutUserNestedInput_schema_1 = require("./CloudFileUpdateManyWithoutUserNestedInput.schema"); +const CommunicationUpdateManyWithoutUserNestedInput_schema_1 = require("./CommunicationUpdateManyWithoutUserNestedInput.schema"); +const TwilioSettingsUpdateOneWithoutUserNestedInput_schema_1 = require("./TwilioSettingsUpdateOneWithoutUserNestedInput.schema"); +const AiSettingsUpdateOneWithoutUserNestedInput_schema_1 = require("./AiSettingsUpdateOneWithoutUserNestedInput.schema"); +const OfficeHoursUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeHoursUpdateOneWithoutUserNestedInput.schema"); +const OfficeContactUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeContactUpdateOneWithoutUserNestedInput.schema"); +const ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUpdateOneWithoutUserNestedInput.schema"); +const InsuranceContactUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUpdateManyWithoutUserNestedInput.schema"); +const PatientConversationUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUpdateManyWithoutUserNestedInput.schema"); +const makeSchema = () => z.object({ + username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), + password: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), + autoBackupEnabled: z.union([z.boolean(), z.lazy(() => BoolFieldUpdateOperationsInput_schema_1.BoolFieldUpdateOperationsInputObjectSchema)]).optional(), + autoBackupHour: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + usbBackupEnabled: z.union([z.boolean(), z.lazy(() => BoolFieldUpdateOperationsInput_schema_1.BoolFieldUpdateOperationsInputObjectSchema)]).optional(), + usbBackupHour: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + autoMhCheckEnabled: z.union([z.boolean(), z.lazy(() => BoolFieldUpdateOperationsInput_schema_1.BoolFieldUpdateOperationsInputObjectSchema)]).optional(), + autoMhCheckDayOfWeek: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + autoMhCheckHour: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(), + patients: z.lazy(() => PatientUpdateManyWithoutUserNestedInput_schema_1.PatientUpdateManyWithoutUserNestedInputObjectSchema).optional(), + appointments: z.lazy(() => AppointmentUpdateManyWithoutUserNestedInput_schema_1.AppointmentUpdateManyWithoutUserNestedInputObjectSchema).optional(), + staff: z.lazy(() => StaffUpdateManyWithoutUserNestedInput_schema_1.StaffUpdateManyWithoutUserNestedInputObjectSchema).optional(), + npiProviders: z.lazy(() => NpiProviderUpdateManyWithoutUserNestedInput_schema_1.NpiProviderUpdateManyWithoutUserNestedInputObjectSchema).optional(), + claims: z.lazy(() => ClaimUpdateManyWithoutUserNestedInput_schema_1.ClaimUpdateManyWithoutUserNestedInputObjectSchema).optional(), + insuranceCredentials: z.lazy(() => InsuranceCredentialUpdateManyWithoutUserNestedInput_schema_1.InsuranceCredentialUpdateManyWithoutUserNestedInputObjectSchema).optional(), + shoppingVendors: z.lazy(() => ShoppingVendorUpdateManyWithoutUserNestedInput_schema_1.ShoppingVendorUpdateManyWithoutUserNestedInputObjectSchema).optional(), + updatedPayments: z.lazy(() => PaymentUpdateManyWithoutUpdatedByNestedInput_schema_1.PaymentUpdateManyWithoutUpdatedByNestedInputObjectSchema).optional(), + backups: z.lazy(() => DatabaseBackupUpdateManyWithoutUserNestedInput_schema_1.DatabaseBackupUpdateManyWithoutUserNestedInputObjectSchema).optional(), + backupDestinations: z.lazy(() => BackupDestinationUpdateManyWithoutUserNestedInput_schema_1.BackupDestinationUpdateManyWithoutUserNestedInputObjectSchema).optional(), + notifications: z.lazy(() => NotificationUpdateManyWithoutUserNestedInput_schema_1.NotificationUpdateManyWithoutUserNestedInputObjectSchema).optional(), + cloudFolders: z.lazy(() => CloudFolderUpdateManyWithoutUserNestedInput_schema_1.CloudFolderUpdateManyWithoutUserNestedInputObjectSchema).optional(), + cloudFiles: z.lazy(() => CloudFileUpdateManyWithoutUserNestedInput_schema_1.CloudFileUpdateManyWithoutUserNestedInputObjectSchema).optional(), + communications: z.lazy(() => CommunicationUpdateManyWithoutUserNestedInput_schema_1.CommunicationUpdateManyWithoutUserNestedInputObjectSchema).optional(), + twilioSettings: z.lazy(() => TwilioSettingsUpdateOneWithoutUserNestedInput_schema_1.TwilioSettingsUpdateOneWithoutUserNestedInputObjectSchema).optional(), + aiSettings: z.lazy(() => AiSettingsUpdateOneWithoutUserNestedInput_schema_1.AiSettingsUpdateOneWithoutUserNestedInputObjectSchema).optional(), + officeHours: z.lazy(() => OfficeHoursUpdateOneWithoutUserNestedInput_schema_1.OfficeHoursUpdateOneWithoutUserNestedInputObjectSchema).optional(), + officeContact: z.lazy(() => OfficeContactUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUpdateOneWithoutUserNestedInputObjectSchema).optional(), + procedureTimeslot: z.lazy(() => ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUpdateOneWithoutUserNestedInputObjectSchema).optional(), + insuranceContacts: z.lazy(() => InsuranceContactUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUpdateManyWithoutUserNestedInputObjectSchema).optional(), + patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUpdateManyWithoutUserNestedInputObjectSchema).optional() +}).strict(); +exports.UserUpdateWithoutSeleniumSettingsInputObjectSchema = makeSchema(); +exports.UserUpdateWithoutSeleniumSettingsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUpdateWithoutShoppingVendorsInput.schema.js b/packages/db/shared/schemas/objects/UserUpdateWithoutShoppingVendorsInput.schema.js index 290dd598..c0badc0c 100644 --- a/packages/db/shared/schemas/objects/UserUpdateWithoutShoppingVendorsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUpdateWithoutShoppingVendorsInput.schema.js @@ -58,6 +58,8 @@ const OfficeContactUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeC const ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), password: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -87,7 +89,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUpdateWithoutShoppingVendorsInputObjectSchema = makeSchema(); exports.UserUpdateWithoutShoppingVendorsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUpdateWithoutStaffInput.schema.js b/packages/db/shared/schemas/objects/UserUpdateWithoutStaffInput.schema.js index 567bf404..26bbec71 100644 --- a/packages/db/shared/schemas/objects/UserUpdateWithoutStaffInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUpdateWithoutStaffInput.schema.js @@ -58,6 +58,8 @@ const OfficeContactUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeC const ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), password: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -87,7 +89,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUpdateWithoutStaffInputObjectSchema = makeSchema(); exports.UserUpdateWithoutStaffInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUpdateWithoutTwilioSettingsInput.schema.js b/packages/db/shared/schemas/objects/UserUpdateWithoutTwilioSettingsInput.schema.js index 941e1101..9cccaf0c 100644 --- a/packages/db/shared/schemas/objects/UserUpdateWithoutTwilioSettingsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUpdateWithoutTwilioSettingsInput.schema.js @@ -58,6 +58,8 @@ const OfficeContactUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeC const ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), password: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -87,7 +89,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUpdateWithoutTwilioSettingsInputObjectSchema = makeSchema(); exports.UserUpdateWithoutTwilioSettingsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUpdateWithoutUpdatedPaymentsInput.schema.js b/packages/db/shared/schemas/objects/UserUpdateWithoutUpdatedPaymentsInput.schema.js index 2a03c180..798b5892 100644 --- a/packages/db/shared/schemas/objects/UserUpdateWithoutUpdatedPaymentsInput.schema.js +++ b/packages/db/shared/schemas/objects/UserUpdateWithoutUpdatedPaymentsInput.schema.js @@ -58,6 +58,8 @@ const OfficeContactUpdateOneWithoutUserNestedInput_schema_1 = require("./OfficeC const ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1 = require("./ProcedureTimeslotUpdateOneWithoutUserNestedInput.schema"); const InsuranceContactUpdateManyWithoutUserNestedInput_schema_1 = require("./InsuranceContactUpdateManyWithoutUserNestedInput.schema"); const PatientConversationUpdateManyWithoutUserNestedInput_schema_1 = require("./PatientConversationUpdateManyWithoutUserNestedInput.schema"); +const LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1 = require("./LabRxTemplateUpdateManyWithoutUserNestedInput.schema"); +const SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1 = require("./SeleniumSettingsUpdateOneWithoutUserNestedInput.schema"); const makeSchema = () => z.object({ username: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), password: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(), @@ -87,7 +89,9 @@ const makeSchema = () => z.object({ officeContact: z.lazy(() => OfficeContactUpdateOneWithoutUserNestedInput_schema_1.OfficeContactUpdateOneWithoutUserNestedInputObjectSchema).optional(), procedureTimeslot: z.lazy(() => ProcedureTimeslotUpdateOneWithoutUserNestedInput_schema_1.ProcedureTimeslotUpdateOneWithoutUserNestedInputObjectSchema).optional(), insuranceContacts: z.lazy(() => InsuranceContactUpdateManyWithoutUserNestedInput_schema_1.InsuranceContactUpdateManyWithoutUserNestedInputObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationUpdateManyWithoutUserNestedInput_schema_1.PatientConversationUpdateManyWithoutUserNestedInputObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateUpdateManyWithoutUserNestedInput_schema_1.LabRxTemplateUpdateManyWithoutUserNestedInputObjectSchema).optional(), + seleniumSettings: z.lazy(() => SeleniumSettingsUpdateOneWithoutUserNestedInput_schema_1.SeleniumSettingsUpdateOneWithoutUserNestedInputObjectSchema).optional() }).strict(); exports.UserUpdateWithoutUpdatedPaymentsInputObjectSchema = makeSchema(); exports.UserUpdateWithoutUpdatedPaymentsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUpsertWithoutLabRxTemplatesInput.schema.js b/packages/db/shared/schemas/objects/UserUpsertWithoutLabRxTemplatesInput.schema.js new file mode 100644 index 00000000..56337e01 --- /dev/null +++ b/packages/db/shared/schemas/objects/UserUpsertWithoutLabRxTemplatesInput.schema.js @@ -0,0 +1,49 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.UserUpsertWithoutLabRxTemplatesInputObjectZodSchema = exports.UserUpsertWithoutLabRxTemplatesInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const UserUpdateWithoutLabRxTemplatesInput_schema_1 = require("./UserUpdateWithoutLabRxTemplatesInput.schema"); +const UserUncheckedUpdateWithoutLabRxTemplatesInput_schema_1 = require("./UserUncheckedUpdateWithoutLabRxTemplatesInput.schema"); +const UserCreateWithoutLabRxTemplatesInput_schema_1 = require("./UserCreateWithoutLabRxTemplatesInput.schema"); +const UserUncheckedCreateWithoutLabRxTemplatesInput_schema_1 = require("./UserUncheckedCreateWithoutLabRxTemplatesInput.schema"); +const UserWhereInput_schema_1 = require("./UserWhereInput.schema"); +const makeSchema = () => z.object({ + update: z.union([z.lazy(() => UserUpdateWithoutLabRxTemplatesInput_schema_1.UserUpdateWithoutLabRxTemplatesInputObjectSchema), z.lazy(() => UserUncheckedUpdateWithoutLabRxTemplatesInput_schema_1.UserUncheckedUpdateWithoutLabRxTemplatesInputObjectSchema)]), + create: z.union([z.lazy(() => UserCreateWithoutLabRxTemplatesInput_schema_1.UserCreateWithoutLabRxTemplatesInputObjectSchema), z.lazy(() => UserUncheckedCreateWithoutLabRxTemplatesInput_schema_1.UserUncheckedCreateWithoutLabRxTemplatesInputObjectSchema)]), + where: z.lazy(() => UserWhereInput_schema_1.UserWhereInputObjectSchema).optional() +}).strict(); +exports.UserUpsertWithoutLabRxTemplatesInputObjectSchema = makeSchema(); +exports.UserUpsertWithoutLabRxTemplatesInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserUpsertWithoutSeleniumSettingsInput.schema.js b/packages/db/shared/schemas/objects/UserUpsertWithoutSeleniumSettingsInput.schema.js new file mode 100644 index 00000000..4b69814d --- /dev/null +++ b/packages/db/shared/schemas/objects/UserUpsertWithoutSeleniumSettingsInput.schema.js @@ -0,0 +1,49 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.UserUpsertWithoutSeleniumSettingsInputObjectZodSchema = exports.UserUpsertWithoutSeleniumSettingsInputObjectSchema = void 0; +const z = __importStar(require("zod")); +const UserUpdateWithoutSeleniumSettingsInput_schema_1 = require("./UserUpdateWithoutSeleniumSettingsInput.schema"); +const UserUncheckedUpdateWithoutSeleniumSettingsInput_schema_1 = require("./UserUncheckedUpdateWithoutSeleniumSettingsInput.schema"); +const UserCreateWithoutSeleniumSettingsInput_schema_1 = require("./UserCreateWithoutSeleniumSettingsInput.schema"); +const UserUncheckedCreateWithoutSeleniumSettingsInput_schema_1 = require("./UserUncheckedCreateWithoutSeleniumSettingsInput.schema"); +const UserWhereInput_schema_1 = require("./UserWhereInput.schema"); +const makeSchema = () => z.object({ + update: z.union([z.lazy(() => UserUpdateWithoutSeleniumSettingsInput_schema_1.UserUpdateWithoutSeleniumSettingsInputObjectSchema), z.lazy(() => UserUncheckedUpdateWithoutSeleniumSettingsInput_schema_1.UserUncheckedUpdateWithoutSeleniumSettingsInputObjectSchema)]), + create: z.union([z.lazy(() => UserCreateWithoutSeleniumSettingsInput_schema_1.UserCreateWithoutSeleniumSettingsInputObjectSchema), z.lazy(() => UserUncheckedCreateWithoutSeleniumSettingsInput_schema_1.UserUncheckedCreateWithoutSeleniumSettingsInputObjectSchema)]), + where: z.lazy(() => UserWhereInput_schema_1.UserWhereInputObjectSchema).optional() +}).strict(); +exports.UserUpsertWithoutSeleniumSettingsInputObjectSchema = makeSchema(); +exports.UserUpsertWithoutSeleniumSettingsInputObjectZodSchema = makeSchema(); diff --git a/packages/db/shared/schemas/objects/UserWhereInput.schema.js b/packages/db/shared/schemas/objects/UserWhereInput.schema.js index b8a7c862..62d80371 100644 --- a/packages/db/shared/schemas/objects/UserWhereInput.schema.js +++ b/packages/db/shared/schemas/objects/UserWhereInput.schema.js @@ -64,6 +64,9 @@ const ProcedureTimeslotNullableScalarRelationFilter_schema_1 = require("./Proced const ProcedureTimeslotWhereInput_schema_1 = require("./ProcedureTimeslotWhereInput.schema"); const InsuranceContactListRelationFilter_schema_1 = require("./InsuranceContactListRelationFilter.schema"); const PatientConversationListRelationFilter_schema_1 = require("./PatientConversationListRelationFilter.schema"); +const LabRxTemplateListRelationFilter_schema_1 = require("./LabRxTemplateListRelationFilter.schema"); +const SeleniumSettingsNullableScalarRelationFilter_schema_1 = require("./SeleniumSettingsNullableScalarRelationFilter.schema"); +const SeleniumSettingsWhereInput_schema_1 = require("./SeleniumSettingsWhereInput.schema"); const userwhereinputSchema = z.object({ AND: z.union([z.lazy(() => exports.UserWhereInputObjectSchema), z.lazy(() => exports.UserWhereInputObjectSchema).array()]).optional(), OR: z.lazy(() => exports.UserWhereInputObjectSchema).array().optional(), @@ -98,7 +101,9 @@ const userwhereinputSchema = z.object({ officeContact: z.union([z.lazy(() => OfficeContactNullableScalarRelationFilter_schema_1.OfficeContactNullableScalarRelationFilterObjectSchema), z.lazy(() => OfficeContactWhereInput_schema_1.OfficeContactWhereInputObjectSchema)]).optional(), procedureTimeslot: z.union([z.lazy(() => ProcedureTimeslotNullableScalarRelationFilter_schema_1.ProcedureTimeslotNullableScalarRelationFilterObjectSchema), z.lazy(() => ProcedureTimeslotWhereInput_schema_1.ProcedureTimeslotWhereInputObjectSchema)]).optional(), insuranceContacts: z.lazy(() => InsuranceContactListRelationFilter_schema_1.InsuranceContactListRelationFilterObjectSchema).optional(), - patientConversations: z.lazy(() => PatientConversationListRelationFilter_schema_1.PatientConversationListRelationFilterObjectSchema).optional() + patientConversations: z.lazy(() => PatientConversationListRelationFilter_schema_1.PatientConversationListRelationFilterObjectSchema).optional(), + labRxTemplates: z.lazy(() => LabRxTemplateListRelationFilter_schema_1.LabRxTemplateListRelationFilterObjectSchema).optional(), + seleniumSettings: z.union([z.lazy(() => SeleniumSettingsNullableScalarRelationFilter_schema_1.SeleniumSettingsNullableScalarRelationFilterObjectSchema), z.lazy(() => SeleniumSettingsWhereInput_schema_1.SeleniumSettingsWhereInputObjectSchema)]).optional() }).strict(); exports.UserWhereInputObjectSchema = userwhereinputSchema; exports.UserWhereInputObjectZodSchema = userwhereinputSchema; diff --git a/packages/db/shared/schemas/objects/index.js b/packages/db/shared/schemas/objects/index.js index c4f05111..57cf62a0 100644 --- a/packages/db/shared/schemas/objects/index.js +++ b/packages/db/shared/schemas/objects/index.js @@ -18,42 +18,79 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) { for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); }; Object.defineProperty(exports, "__esModule", { value: true }); +__exportStar(require("./AiSettingsArgs.schema.d"), exports); __exportStar(require("./AiSettingsArgs.schema"), exports); +__exportStar(require("./AiSettingsAvgAggregateInput.schema.d"), exports); __exportStar(require("./AiSettingsAvgAggregateInput.schema"), exports); +__exportStar(require("./AiSettingsAvgOrderByAggregateInput.schema.d"), exports); __exportStar(require("./AiSettingsAvgOrderByAggregateInput.schema"), exports); +__exportStar(require("./AiSettingsCountAggregateInput.schema.d"), exports); __exportStar(require("./AiSettingsCountAggregateInput.schema"), exports); +__exportStar(require("./AiSettingsCountOrderByAggregateInput.schema.d"), exports); __exportStar(require("./AiSettingsCountOrderByAggregateInput.schema"), exports); +__exportStar(require("./AiSettingsCreateInput.schema.d"), exports); __exportStar(require("./AiSettingsCreateInput.schema"), exports); +__exportStar(require("./AiSettingsCreateManyInput.schema.d"), exports); __exportStar(require("./AiSettingsCreateManyInput.schema"), exports); +__exportStar(require("./AiSettingsCreateNestedOneWithoutUserInput.schema.d"), exports); __exportStar(require("./AiSettingsCreateNestedOneWithoutUserInput.schema"), exports); +__exportStar(require("./AiSettingsCreateOrConnectWithoutUserInput.schema.d"), exports); __exportStar(require("./AiSettingsCreateOrConnectWithoutUserInput.schema"), exports); +__exportStar(require("./AiSettingsCreateWithoutUserInput.schema.d"), exports); __exportStar(require("./AiSettingsCreateWithoutUserInput.schema"), exports); +__exportStar(require("./AiSettingsInclude.schema.d"), exports); __exportStar(require("./AiSettingsInclude.schema"), exports); +__exportStar(require("./AiSettingsMaxAggregateInput.schema.d"), exports); __exportStar(require("./AiSettingsMaxAggregateInput.schema"), exports); +__exportStar(require("./AiSettingsMaxOrderByAggregateInput.schema.d"), exports); __exportStar(require("./AiSettingsMaxOrderByAggregateInput.schema"), exports); +__exportStar(require("./AiSettingsMinAggregateInput.schema.d"), exports); __exportStar(require("./AiSettingsMinAggregateInput.schema"), exports); +__exportStar(require("./AiSettingsMinOrderByAggregateInput.schema.d"), exports); __exportStar(require("./AiSettingsMinOrderByAggregateInput.schema"), exports); +__exportStar(require("./AiSettingsNullableScalarRelationFilter.schema.d"), exports); __exportStar(require("./AiSettingsNullableScalarRelationFilter.schema"), exports); +__exportStar(require("./AiSettingsOrderByWithAggregationInput.schema.d"), exports); __exportStar(require("./AiSettingsOrderByWithAggregationInput.schema"), exports); +__exportStar(require("./AiSettingsOrderByWithRelationInput.schema.d"), exports); __exportStar(require("./AiSettingsOrderByWithRelationInput.schema"), exports); +__exportStar(require("./AiSettingsScalarWhereWithAggregatesInput.schema.d"), exports); __exportStar(require("./AiSettingsScalarWhereWithAggregatesInput.schema"), exports); +__exportStar(require("./AiSettingsSelect.schema.d"), exports); __exportStar(require("./AiSettingsSelect.schema"), exports); +__exportStar(require("./AiSettingsSumAggregateInput.schema.d"), exports); __exportStar(require("./AiSettingsSumAggregateInput.schema"), exports); +__exportStar(require("./AiSettingsSumOrderByAggregateInput.schema.d"), exports); __exportStar(require("./AiSettingsSumOrderByAggregateInput.schema"), exports); +__exportStar(require("./AiSettingsUncheckedCreateInput.schema.d"), exports); __exportStar(require("./AiSettingsUncheckedCreateInput.schema"), exports); +__exportStar(require("./AiSettingsUncheckedCreateNestedOneWithoutUserInput.schema.d"), exports); __exportStar(require("./AiSettingsUncheckedCreateNestedOneWithoutUserInput.schema"), exports); +__exportStar(require("./AiSettingsUncheckedCreateWithoutUserInput.schema.d"), exports); __exportStar(require("./AiSettingsUncheckedCreateWithoutUserInput.schema"), exports); +__exportStar(require("./AiSettingsUncheckedUpdateInput.schema.d"), exports); __exportStar(require("./AiSettingsUncheckedUpdateInput.schema"), exports); +__exportStar(require("./AiSettingsUncheckedUpdateManyInput.schema.d"), exports); __exportStar(require("./AiSettingsUncheckedUpdateManyInput.schema"), exports); +__exportStar(require("./AiSettingsUncheckedUpdateOneWithoutUserNestedInput.schema.d"), exports); __exportStar(require("./AiSettingsUncheckedUpdateOneWithoutUserNestedInput.schema"), exports); +__exportStar(require("./AiSettingsUncheckedUpdateWithoutUserInput.schema.d"), exports); __exportStar(require("./AiSettingsUncheckedUpdateWithoutUserInput.schema"), exports); +__exportStar(require("./AiSettingsUpdateInput.schema.d"), exports); __exportStar(require("./AiSettingsUpdateInput.schema"), exports); +__exportStar(require("./AiSettingsUpdateManyMutationInput.schema.d"), exports); __exportStar(require("./AiSettingsUpdateManyMutationInput.schema"), exports); +__exportStar(require("./AiSettingsUpdateOneWithoutUserNestedInput.schema.d"), exports); __exportStar(require("./AiSettingsUpdateOneWithoutUserNestedInput.schema"), exports); +__exportStar(require("./AiSettingsUpdateToOneWithWhereWithoutUserInput.schema.d"), exports); __exportStar(require("./AiSettingsUpdateToOneWithWhereWithoutUserInput.schema"), exports); +__exportStar(require("./AiSettingsUpdateWithoutUserInput.schema.d"), exports); __exportStar(require("./AiSettingsUpdateWithoutUserInput.schema"), exports); +__exportStar(require("./AiSettingsUpsertWithoutUserInput.schema.d"), exports); __exportStar(require("./AiSettingsUpsertWithoutUserInput.schema"), exports); +__exportStar(require("./AiSettingsWhereInput.schema.d"), exports); __exportStar(require("./AiSettingsWhereInput.schema"), exports); +__exportStar(require("./AiSettingsWhereUniqueInput.schema.d"), exports); __exportStar(require("./AiSettingsWhereUniqueInput.schema"), exports); __exportStar(require("./AppointmentArgs.schema.d"), exports); __exportStar(require("./AppointmentArgs.schema"), exports); @@ -69,6 +106,7 @@ __exportStar(require("./AppointmentCountOutputTypeArgs.schema.d"), exports); __exportStar(require("./AppointmentCountOutputTypeArgs.schema"), exports); __exportStar(require("./AppointmentCountOutputTypeCountClaimsArgs.schema.d"), exports); __exportStar(require("./AppointmentCountOutputTypeCountClaimsArgs.schema"), exports); +__exportStar(require("./AppointmentCountOutputTypeCountFilesArgs.schema.d"), exports); __exportStar(require("./AppointmentCountOutputTypeCountFilesArgs.schema"), exports); __exportStar(require("./AppointmentCountOutputTypeCountProceduresArgs.schema.d"), exports); __exportStar(require("./AppointmentCountOutputTypeCountProceduresArgs.schema"), exports); @@ -78,6 +116,8 @@ __exportStar(require("./AppointmentCreateInput.schema.d"), exports); __exportStar(require("./AppointmentCreateInput.schema"), exports); __exportStar(require("./AppointmentCreateManyInput.schema.d"), exports); __exportStar(require("./AppointmentCreateManyInput.schema"), exports); +__exportStar(require("./AppointmentCreateManyNpiProviderInput.schema"), exports); +__exportStar(require("./AppointmentCreateManyNpiProviderInputEnvelope.schema"), exports); __exportStar(require("./AppointmentCreateManyPatientInput.schema.d"), exports); __exportStar(require("./AppointmentCreateManyPatientInput.schema"), exports); __exportStar(require("./AppointmentCreateManyPatientInputEnvelope.schema.d"), exports); @@ -90,6 +130,7 @@ __exportStar(require("./AppointmentCreateManyUserInput.schema.d"), exports); __exportStar(require("./AppointmentCreateManyUserInput.schema"), exports); __exportStar(require("./AppointmentCreateManyUserInputEnvelope.schema.d"), exports); __exportStar(require("./AppointmentCreateManyUserInputEnvelope.schema"), exports); +__exportStar(require("./AppointmentCreateNestedManyWithoutNpiProviderInput.schema"), exports); __exportStar(require("./AppointmentCreateNestedManyWithoutPatientInput.schema.d"), exports); __exportStar(require("./AppointmentCreateNestedManyWithoutPatientInput.schema"), exports); __exportStar(require("./AppointmentCreateNestedManyWithoutStaffInput.schema.d"), exports); @@ -98,12 +139,15 @@ __exportStar(require("./AppointmentCreateNestedManyWithoutUserInput.schema.d"), __exportStar(require("./AppointmentCreateNestedManyWithoutUserInput.schema"), exports); __exportStar(require("./AppointmentCreateNestedOneWithoutClaimsInput.schema.d"), exports); __exportStar(require("./AppointmentCreateNestedOneWithoutClaimsInput.schema"), exports); +__exportStar(require("./AppointmentCreateNestedOneWithoutFilesInput.schema.d"), exports); __exportStar(require("./AppointmentCreateNestedOneWithoutFilesInput.schema"), exports); __exportStar(require("./AppointmentCreateNestedOneWithoutProceduresInput.schema.d"), exports); __exportStar(require("./AppointmentCreateNestedOneWithoutProceduresInput.schema"), exports); __exportStar(require("./AppointmentCreateOrConnectWithoutClaimsInput.schema.d"), exports); __exportStar(require("./AppointmentCreateOrConnectWithoutClaimsInput.schema"), exports); +__exportStar(require("./AppointmentCreateOrConnectWithoutFilesInput.schema.d"), exports); __exportStar(require("./AppointmentCreateOrConnectWithoutFilesInput.schema"), exports); +__exportStar(require("./AppointmentCreateOrConnectWithoutNpiProviderInput.schema"), exports); __exportStar(require("./AppointmentCreateOrConnectWithoutPatientInput.schema.d"), exports); __exportStar(require("./AppointmentCreateOrConnectWithoutPatientInput.schema"), exports); __exportStar(require("./AppointmentCreateOrConnectWithoutProceduresInput.schema.d"), exports); @@ -114,7 +158,9 @@ __exportStar(require("./AppointmentCreateOrConnectWithoutUserInput.schema.d"), e __exportStar(require("./AppointmentCreateOrConnectWithoutUserInput.schema"), exports); __exportStar(require("./AppointmentCreateWithoutClaimsInput.schema.d"), exports); __exportStar(require("./AppointmentCreateWithoutClaimsInput.schema"), exports); +__exportStar(require("./AppointmentCreateWithoutFilesInput.schema.d"), exports); __exportStar(require("./AppointmentCreateWithoutFilesInput.schema"), exports); +__exportStar(require("./AppointmentCreateWithoutNpiProviderInput.schema"), exports); __exportStar(require("./AppointmentCreateWithoutPatientInput.schema.d"), exports); __exportStar(require("./AppointmentCreateWithoutPatientInput.schema"), exports); __exportStar(require("./AppointmentCreateWithoutProceduresInput.schema.d"), exports); @@ -123,48 +169,91 @@ __exportStar(require("./AppointmentCreateWithoutStaffInput.schema.d"), exports); __exportStar(require("./AppointmentCreateWithoutStaffInput.schema"), exports); __exportStar(require("./AppointmentCreateWithoutUserInput.schema.d"), exports); __exportStar(require("./AppointmentCreateWithoutUserInput.schema"), exports); +__exportStar(require("./AppointmentFileArgs.schema.d"), exports); __exportStar(require("./AppointmentFileArgs.schema"), exports); +__exportStar(require("./AppointmentFileAvgAggregateInput.schema.d"), exports); __exportStar(require("./AppointmentFileAvgAggregateInput.schema"), exports); +__exportStar(require("./AppointmentFileAvgOrderByAggregateInput.schema.d"), exports); __exportStar(require("./AppointmentFileAvgOrderByAggregateInput.schema"), exports); +__exportStar(require("./AppointmentFileCountAggregateInput.schema.d"), exports); __exportStar(require("./AppointmentFileCountAggregateInput.schema"), exports); +__exportStar(require("./AppointmentFileCountOrderByAggregateInput.schema.d"), exports); __exportStar(require("./AppointmentFileCountOrderByAggregateInput.schema"), exports); +__exportStar(require("./AppointmentFileCreateInput.schema.d"), exports); __exportStar(require("./AppointmentFileCreateInput.schema"), exports); +__exportStar(require("./AppointmentFileCreateManyAppointmentInput.schema.d"), exports); __exportStar(require("./AppointmentFileCreateManyAppointmentInput.schema"), exports); +__exportStar(require("./AppointmentFileCreateManyAppointmentInputEnvelope.schema.d"), exports); __exportStar(require("./AppointmentFileCreateManyAppointmentInputEnvelope.schema"), exports); +__exportStar(require("./AppointmentFileCreateManyInput.schema.d"), exports); __exportStar(require("./AppointmentFileCreateManyInput.schema"), exports); +__exportStar(require("./AppointmentFileCreateNestedManyWithoutAppointmentInput.schema.d"), exports); __exportStar(require("./AppointmentFileCreateNestedManyWithoutAppointmentInput.schema"), exports); +__exportStar(require("./AppointmentFileCreateOrConnectWithoutAppointmentInput.schema.d"), exports); __exportStar(require("./AppointmentFileCreateOrConnectWithoutAppointmentInput.schema"), exports); +__exportStar(require("./AppointmentFileCreateWithoutAppointmentInput.schema.d"), exports); __exportStar(require("./AppointmentFileCreateWithoutAppointmentInput.schema"), exports); +__exportStar(require("./AppointmentFileInclude.schema.d"), exports); __exportStar(require("./AppointmentFileInclude.schema"), exports); +__exportStar(require("./AppointmentFileListRelationFilter.schema.d"), exports); __exportStar(require("./AppointmentFileListRelationFilter.schema"), exports); +__exportStar(require("./AppointmentFileMaxAggregateInput.schema.d"), exports); __exportStar(require("./AppointmentFileMaxAggregateInput.schema"), exports); +__exportStar(require("./AppointmentFileMaxOrderByAggregateInput.schema.d"), exports); __exportStar(require("./AppointmentFileMaxOrderByAggregateInput.schema"), exports); +__exportStar(require("./AppointmentFileMinAggregateInput.schema.d"), exports); __exportStar(require("./AppointmentFileMinAggregateInput.schema"), exports); +__exportStar(require("./AppointmentFileMinOrderByAggregateInput.schema.d"), exports); __exportStar(require("./AppointmentFileMinOrderByAggregateInput.schema"), exports); +__exportStar(require("./AppointmentFileOrderByRelationAggregateInput.schema.d"), exports); __exportStar(require("./AppointmentFileOrderByRelationAggregateInput.schema"), exports); +__exportStar(require("./AppointmentFileOrderByWithAggregationInput.schema.d"), exports); __exportStar(require("./AppointmentFileOrderByWithAggregationInput.schema"), exports); +__exportStar(require("./AppointmentFileOrderByWithRelationInput.schema.d"), exports); __exportStar(require("./AppointmentFileOrderByWithRelationInput.schema"), exports); +__exportStar(require("./AppointmentFileScalarWhereInput.schema.d"), exports); __exportStar(require("./AppointmentFileScalarWhereInput.schema"), exports); +__exportStar(require("./AppointmentFileScalarWhereWithAggregatesInput.schema.d"), exports); __exportStar(require("./AppointmentFileScalarWhereWithAggregatesInput.schema"), exports); +__exportStar(require("./AppointmentFileSelect.schema.d"), exports); __exportStar(require("./AppointmentFileSelect.schema"), exports); +__exportStar(require("./AppointmentFileSumAggregateInput.schema.d"), exports); __exportStar(require("./AppointmentFileSumAggregateInput.schema"), exports); +__exportStar(require("./AppointmentFileSumOrderByAggregateInput.schema.d"), exports); __exportStar(require("./AppointmentFileSumOrderByAggregateInput.schema"), exports); +__exportStar(require("./AppointmentFileUncheckedCreateInput.schema.d"), exports); __exportStar(require("./AppointmentFileUncheckedCreateInput.schema"), exports); +__exportStar(require("./AppointmentFileUncheckedCreateNestedManyWithoutAppointmentInput.schema.d"), exports); __exportStar(require("./AppointmentFileUncheckedCreateNestedManyWithoutAppointmentInput.schema"), exports); +__exportStar(require("./AppointmentFileUncheckedCreateWithoutAppointmentInput.schema.d"), exports); __exportStar(require("./AppointmentFileUncheckedCreateWithoutAppointmentInput.schema"), exports); +__exportStar(require("./AppointmentFileUncheckedUpdateInput.schema.d"), exports); __exportStar(require("./AppointmentFileUncheckedUpdateInput.schema"), exports); +__exportStar(require("./AppointmentFileUncheckedUpdateManyInput.schema.d"), exports); __exportStar(require("./AppointmentFileUncheckedUpdateManyInput.schema"), exports); +__exportStar(require("./AppointmentFileUncheckedUpdateManyWithoutAppointmentInput.schema.d"), exports); __exportStar(require("./AppointmentFileUncheckedUpdateManyWithoutAppointmentInput.schema"), exports); +__exportStar(require("./AppointmentFileUncheckedUpdateManyWithoutAppointmentNestedInput.schema.d"), exports); __exportStar(require("./AppointmentFileUncheckedUpdateManyWithoutAppointmentNestedInput.schema"), exports); +__exportStar(require("./AppointmentFileUncheckedUpdateWithoutAppointmentInput.schema.d"), exports); __exportStar(require("./AppointmentFileUncheckedUpdateWithoutAppointmentInput.schema"), exports); +__exportStar(require("./AppointmentFileUpdateInput.schema.d"), exports); __exportStar(require("./AppointmentFileUpdateInput.schema"), exports); +__exportStar(require("./AppointmentFileUpdateManyMutationInput.schema.d"), exports); __exportStar(require("./AppointmentFileUpdateManyMutationInput.schema"), exports); +__exportStar(require("./AppointmentFileUpdateManyWithWhereWithoutAppointmentInput.schema.d"), exports); __exportStar(require("./AppointmentFileUpdateManyWithWhereWithoutAppointmentInput.schema"), exports); +__exportStar(require("./AppointmentFileUpdateManyWithoutAppointmentNestedInput.schema.d"), exports); __exportStar(require("./AppointmentFileUpdateManyWithoutAppointmentNestedInput.schema"), exports); +__exportStar(require("./AppointmentFileUpdateWithWhereUniqueWithoutAppointmentInput.schema.d"), exports); __exportStar(require("./AppointmentFileUpdateWithWhereUniqueWithoutAppointmentInput.schema"), exports); +__exportStar(require("./AppointmentFileUpdateWithoutAppointmentInput.schema.d"), exports); __exportStar(require("./AppointmentFileUpdateWithoutAppointmentInput.schema"), exports); +__exportStar(require("./AppointmentFileUpsertWithWhereUniqueWithoutAppointmentInput.schema.d"), exports); __exportStar(require("./AppointmentFileUpsertWithWhereUniqueWithoutAppointmentInput.schema"), exports); +__exportStar(require("./AppointmentFileWhereInput.schema.d"), exports); __exportStar(require("./AppointmentFileWhereInput.schema"), exports); +__exportStar(require("./AppointmentFileWhereUniqueInput.schema.d"), exports); __exportStar(require("./AppointmentFileWhereUniqueInput.schema"), exports); __exportStar(require("./AppointmentInclude.schema.d"), exports); __exportStar(require("./AppointmentInclude.schema"), exports); @@ -178,6 +267,7 @@ __exportStar(require("./AppointmentMinAggregateInput.schema.d"), exports); __exportStar(require("./AppointmentMinAggregateInput.schema"), exports); __exportStar(require("./AppointmentMinOrderByAggregateInput.schema.d"), exports); __exportStar(require("./AppointmentMinOrderByAggregateInput.schema"), exports); +__exportStar(require("./AppointmentNullableScalarRelationFilter.schema.d"), exports); __exportStar(require("./AppointmentNullableScalarRelationFilter.schema"), exports); __exportStar(require("./AppointmentOrderByRelationAggregateInput.schema.d"), exports); __exportStar(require("./AppointmentOrderByRelationAggregateInput.schema"), exports); @@ -345,6 +435,7 @@ __exportStar(require("./AppointmentSumOrderByAggregateInput.schema.d"), exports) __exportStar(require("./AppointmentSumOrderByAggregateInput.schema"), exports); __exportStar(require("./AppointmentUncheckedCreateInput.schema.d"), exports); __exportStar(require("./AppointmentUncheckedCreateInput.schema"), exports); +__exportStar(require("./AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput.schema"), exports); __exportStar(require("./AppointmentUncheckedCreateNestedManyWithoutPatientInput.schema.d"), exports); __exportStar(require("./AppointmentUncheckedCreateNestedManyWithoutPatientInput.schema"), exports); __exportStar(require("./AppointmentUncheckedCreateNestedManyWithoutStaffInput.schema.d"), exports); @@ -353,7 +444,9 @@ __exportStar(require("./AppointmentUncheckedCreateNestedManyWithoutUserInput.sch __exportStar(require("./AppointmentUncheckedCreateNestedManyWithoutUserInput.schema"), exports); __exportStar(require("./AppointmentUncheckedCreateWithoutClaimsInput.schema.d"), exports); __exportStar(require("./AppointmentUncheckedCreateWithoutClaimsInput.schema"), exports); +__exportStar(require("./AppointmentUncheckedCreateWithoutFilesInput.schema.d"), exports); __exportStar(require("./AppointmentUncheckedCreateWithoutFilesInput.schema"), exports); +__exportStar(require("./AppointmentUncheckedCreateWithoutNpiProviderInput.schema"), exports); __exportStar(require("./AppointmentUncheckedCreateWithoutPatientInput.schema.d"), exports); __exportStar(require("./AppointmentUncheckedCreateWithoutPatientInput.schema"), exports); __exportStar(require("./AppointmentUncheckedCreateWithoutProceduresInput.schema.d"), exports); @@ -366,6 +459,8 @@ __exportStar(require("./AppointmentUncheckedUpdateInput.schema.d"), exports); __exportStar(require("./AppointmentUncheckedUpdateInput.schema"), exports); __exportStar(require("./AppointmentUncheckedUpdateManyInput.schema.d"), exports); __exportStar(require("./AppointmentUncheckedUpdateManyInput.schema"), exports); +__exportStar(require("./AppointmentUncheckedUpdateManyWithoutNpiProviderInput.schema"), exports); +__exportStar(require("./AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema"), exports); __exportStar(require("./AppointmentUncheckedUpdateManyWithoutPatientInput.schema.d"), exports); __exportStar(require("./AppointmentUncheckedUpdateManyWithoutPatientInput.schema"), exports); __exportStar(require("./AppointmentUncheckedUpdateManyWithoutPatientNestedInput.schema.d"), exports); @@ -380,7 +475,9 @@ __exportStar(require("./AppointmentUncheckedUpdateManyWithoutUserNestedInput.sch __exportStar(require("./AppointmentUncheckedUpdateManyWithoutUserNestedInput.schema"), exports); __exportStar(require("./AppointmentUncheckedUpdateWithoutClaimsInput.schema.d"), exports); __exportStar(require("./AppointmentUncheckedUpdateWithoutClaimsInput.schema"), exports); +__exportStar(require("./AppointmentUncheckedUpdateWithoutFilesInput.schema.d"), exports); __exportStar(require("./AppointmentUncheckedUpdateWithoutFilesInput.schema"), exports); +__exportStar(require("./AppointmentUncheckedUpdateWithoutNpiProviderInput.schema"), exports); __exportStar(require("./AppointmentUncheckedUpdateWithoutPatientInput.schema.d"), exports); __exportStar(require("./AppointmentUncheckedUpdateWithoutPatientInput.schema"), exports); __exportStar(require("./AppointmentUncheckedUpdateWithoutProceduresInput.schema.d"), exports); @@ -393,12 +490,14 @@ __exportStar(require("./AppointmentUpdateInput.schema.d"), exports); __exportStar(require("./AppointmentUpdateInput.schema"), exports); __exportStar(require("./AppointmentUpdateManyMutationInput.schema.d"), exports); __exportStar(require("./AppointmentUpdateManyMutationInput.schema"), exports); +__exportStar(require("./AppointmentUpdateManyWithWhereWithoutNpiProviderInput.schema"), exports); __exportStar(require("./AppointmentUpdateManyWithWhereWithoutPatientInput.schema.d"), exports); __exportStar(require("./AppointmentUpdateManyWithWhereWithoutPatientInput.schema"), exports); __exportStar(require("./AppointmentUpdateManyWithWhereWithoutStaffInput.schema.d"), exports); __exportStar(require("./AppointmentUpdateManyWithWhereWithoutStaffInput.schema"), exports); __exportStar(require("./AppointmentUpdateManyWithWhereWithoutUserInput.schema.d"), exports); __exportStar(require("./AppointmentUpdateManyWithWhereWithoutUserInput.schema"), exports); +__exportStar(require("./AppointmentUpdateManyWithoutNpiProviderNestedInput.schema"), exports); __exportStar(require("./AppointmentUpdateManyWithoutPatientNestedInput.schema.d"), exports); __exportStar(require("./AppointmentUpdateManyWithoutPatientNestedInput.schema"), exports); __exportStar(require("./AppointmentUpdateManyWithoutStaffNestedInput.schema.d"), exports); @@ -406,15 +505,19 @@ __exportStar(require("./AppointmentUpdateManyWithoutStaffNestedInput.schema"), e __exportStar(require("./AppointmentUpdateManyWithoutUserNestedInput.schema.d"), exports); __exportStar(require("./AppointmentUpdateManyWithoutUserNestedInput.schema"), exports); __exportStar(require("./AppointmentUpdateOneRequiredWithoutClaimsNestedInput.schema.d"), exports); +__exportStar(require("./AppointmentUpdateOneRequiredWithoutFilesNestedInput.schema.d"), exports); __exportStar(require("./AppointmentUpdateOneRequiredWithoutFilesNestedInput.schema"), exports); __exportStar(require("./AppointmentUpdateOneRequiredWithoutProceduresNestedInput.schema.d"), exports); __exportStar(require("./AppointmentUpdateOneRequiredWithoutProceduresNestedInput.schema"), exports); +__exportStar(require("./AppointmentUpdateOneWithoutClaimsNestedInput.schema.d"), exports); __exportStar(require("./AppointmentUpdateOneWithoutClaimsNestedInput.schema"), exports); __exportStar(require("./AppointmentUpdateToOneWithWhereWithoutClaimsInput.schema.d"), exports); __exportStar(require("./AppointmentUpdateToOneWithWhereWithoutClaimsInput.schema"), exports); +__exportStar(require("./AppointmentUpdateToOneWithWhereWithoutFilesInput.schema.d"), exports); __exportStar(require("./AppointmentUpdateToOneWithWhereWithoutFilesInput.schema"), exports); __exportStar(require("./AppointmentUpdateToOneWithWhereWithoutProceduresInput.schema.d"), exports); __exportStar(require("./AppointmentUpdateToOneWithWhereWithoutProceduresInput.schema"), exports); +__exportStar(require("./AppointmentUpdateWithWhereUniqueWithoutNpiProviderInput.schema"), exports); __exportStar(require("./AppointmentUpdateWithWhereUniqueWithoutPatientInput.schema.d"), exports); __exportStar(require("./AppointmentUpdateWithWhereUniqueWithoutPatientInput.schema"), exports); __exportStar(require("./AppointmentUpdateWithWhereUniqueWithoutStaffInput.schema.d"), exports); @@ -423,7 +526,9 @@ __exportStar(require("./AppointmentUpdateWithWhereUniqueWithoutUserInput.schema. __exportStar(require("./AppointmentUpdateWithWhereUniqueWithoutUserInput.schema"), exports); __exportStar(require("./AppointmentUpdateWithoutClaimsInput.schema.d"), exports); __exportStar(require("./AppointmentUpdateWithoutClaimsInput.schema"), exports); +__exportStar(require("./AppointmentUpdateWithoutFilesInput.schema.d"), exports); __exportStar(require("./AppointmentUpdateWithoutFilesInput.schema"), exports); +__exportStar(require("./AppointmentUpdateWithoutNpiProviderInput.schema"), exports); __exportStar(require("./AppointmentUpdateWithoutPatientInput.schema.d"), exports); __exportStar(require("./AppointmentUpdateWithoutPatientInput.schema"), exports); __exportStar(require("./AppointmentUpdateWithoutProceduresInput.schema.d"), exports); @@ -432,6 +537,7 @@ __exportStar(require("./AppointmentUpdateWithoutStaffInput.schema.d"), exports); __exportStar(require("./AppointmentUpdateWithoutStaffInput.schema"), exports); __exportStar(require("./AppointmentUpdateWithoutUserInput.schema.d"), exports); __exportStar(require("./AppointmentUpdateWithoutUserInput.schema"), exports); +__exportStar(require("./AppointmentUpsertWithWhereUniqueWithoutNpiProviderInput.schema"), exports); __exportStar(require("./AppointmentUpsertWithWhereUniqueWithoutPatientInput.schema.d"), exports); __exportStar(require("./AppointmentUpsertWithWhereUniqueWithoutPatientInput.schema"), exports); __exportStar(require("./AppointmentUpsertWithWhereUniqueWithoutStaffInput.schema.d"), exports); @@ -440,6 +546,7 @@ __exportStar(require("./AppointmentUpsertWithWhereUniqueWithoutUserInput.schema. __exportStar(require("./AppointmentUpsertWithWhereUniqueWithoutUserInput.schema"), exports); __exportStar(require("./AppointmentUpsertWithoutClaimsInput.schema.d"), exports); __exportStar(require("./AppointmentUpsertWithoutClaimsInput.schema"), exports); +__exportStar(require("./AppointmentUpsertWithoutFilesInput.schema.d"), exports); __exportStar(require("./AppointmentUpsertWithoutFilesInput.schema"), exports); __exportStar(require("./AppointmentUpsertWithoutProceduresInput.schema.d"), exports); __exportStar(require("./AppointmentUpsertWithoutProceduresInput.schema"), exports); @@ -1165,7 +1272,9 @@ __exportStar(require("./CloudFolderCreateManyParentInput.schema.d"), exports); __exportStar(require("./CloudFolderCreateManyParentInput.schema"), exports); __exportStar(require("./CloudFolderCreateManyParentInputEnvelope.schema.d"), exports); __exportStar(require("./CloudFolderCreateManyParentInputEnvelope.schema"), exports); +__exportStar(require("./CloudFolderCreateManyPatientInput.schema.d"), exports); __exportStar(require("./CloudFolderCreateManyPatientInput.schema"), exports); +__exportStar(require("./CloudFolderCreateManyPatientInputEnvelope.schema.d"), exports); __exportStar(require("./CloudFolderCreateManyPatientInputEnvelope.schema"), exports); __exportStar(require("./CloudFolderCreateManyUserInput.schema.d"), exports); __exportStar(require("./CloudFolderCreateManyUserInput.schema"), exports); @@ -1173,6 +1282,7 @@ __exportStar(require("./CloudFolderCreateManyUserInputEnvelope.schema.d"), expor __exportStar(require("./CloudFolderCreateManyUserInputEnvelope.schema"), exports); __exportStar(require("./CloudFolderCreateNestedManyWithoutParentInput.schema.d"), exports); __exportStar(require("./CloudFolderCreateNestedManyWithoutParentInput.schema"), exports); +__exportStar(require("./CloudFolderCreateNestedManyWithoutPatientInput.schema.d"), exports); __exportStar(require("./CloudFolderCreateNestedManyWithoutPatientInput.schema"), exports); __exportStar(require("./CloudFolderCreateNestedManyWithoutUserInput.schema.d"), exports); __exportStar(require("./CloudFolderCreateNestedManyWithoutUserInput.schema"), exports); @@ -1186,6 +1296,7 @@ __exportStar(require("./CloudFolderCreateOrConnectWithoutFilesInput.schema.d"), __exportStar(require("./CloudFolderCreateOrConnectWithoutFilesInput.schema"), exports); __exportStar(require("./CloudFolderCreateOrConnectWithoutParentInput.schema.d"), exports); __exportStar(require("./CloudFolderCreateOrConnectWithoutParentInput.schema"), exports); +__exportStar(require("./CloudFolderCreateOrConnectWithoutPatientInput.schema.d"), exports); __exportStar(require("./CloudFolderCreateOrConnectWithoutPatientInput.schema"), exports); __exportStar(require("./CloudFolderCreateOrConnectWithoutUserInput.schema.d"), exports); __exportStar(require("./CloudFolderCreateOrConnectWithoutUserInput.schema"), exports); @@ -1195,6 +1306,7 @@ __exportStar(require("./CloudFolderCreateWithoutFilesInput.schema.d"), exports); __exportStar(require("./CloudFolderCreateWithoutFilesInput.schema"), exports); __exportStar(require("./CloudFolderCreateWithoutParentInput.schema.d"), exports); __exportStar(require("./CloudFolderCreateWithoutParentInput.schema"), exports); +__exportStar(require("./CloudFolderCreateWithoutPatientInput.schema.d"), exports); __exportStar(require("./CloudFolderCreateWithoutPatientInput.schema"), exports); __exportStar(require("./CloudFolderCreateWithoutUserInput.schema.d"), exports); __exportStar(require("./CloudFolderCreateWithoutUserInput.schema"), exports); @@ -1232,6 +1344,7 @@ __exportStar(require("./CloudFolderUncheckedCreateInput.schema.d"), exports); __exportStar(require("./CloudFolderUncheckedCreateInput.schema"), exports); __exportStar(require("./CloudFolderUncheckedCreateNestedManyWithoutParentInput.schema.d"), exports); __exportStar(require("./CloudFolderUncheckedCreateNestedManyWithoutParentInput.schema"), exports); +__exportStar(require("./CloudFolderUncheckedCreateNestedManyWithoutPatientInput.schema.d"), exports); __exportStar(require("./CloudFolderUncheckedCreateNestedManyWithoutPatientInput.schema"), exports); __exportStar(require("./CloudFolderUncheckedCreateNestedManyWithoutUserInput.schema.d"), exports); __exportStar(require("./CloudFolderUncheckedCreateNestedManyWithoutUserInput.schema"), exports); @@ -1241,6 +1354,7 @@ __exportStar(require("./CloudFolderUncheckedCreateWithoutFilesInput.schema.d"), __exportStar(require("./CloudFolderUncheckedCreateWithoutFilesInput.schema"), exports); __exportStar(require("./CloudFolderUncheckedCreateWithoutParentInput.schema.d"), exports); __exportStar(require("./CloudFolderUncheckedCreateWithoutParentInput.schema"), exports); +__exportStar(require("./CloudFolderUncheckedCreateWithoutPatientInput.schema.d"), exports); __exportStar(require("./CloudFolderUncheckedCreateWithoutPatientInput.schema"), exports); __exportStar(require("./CloudFolderUncheckedCreateWithoutUserInput.schema.d"), exports); __exportStar(require("./CloudFolderUncheckedCreateWithoutUserInput.schema"), exports); @@ -1252,7 +1366,9 @@ __exportStar(require("./CloudFolderUncheckedUpdateManyWithoutParentInput.schema. __exportStar(require("./CloudFolderUncheckedUpdateManyWithoutParentInput.schema"), exports); __exportStar(require("./CloudFolderUncheckedUpdateManyWithoutParentNestedInput.schema.d"), exports); __exportStar(require("./CloudFolderUncheckedUpdateManyWithoutParentNestedInput.schema"), exports); +__exportStar(require("./CloudFolderUncheckedUpdateManyWithoutPatientInput.schema.d"), exports); __exportStar(require("./CloudFolderUncheckedUpdateManyWithoutPatientInput.schema"), exports); +__exportStar(require("./CloudFolderUncheckedUpdateManyWithoutPatientNestedInput.schema.d"), exports); __exportStar(require("./CloudFolderUncheckedUpdateManyWithoutPatientNestedInput.schema"), exports); __exportStar(require("./CloudFolderUncheckedUpdateManyWithoutUserInput.schema.d"), exports); __exportStar(require("./CloudFolderUncheckedUpdateManyWithoutUserInput.schema"), exports); @@ -1264,6 +1380,7 @@ __exportStar(require("./CloudFolderUncheckedUpdateWithoutFilesInput.schema.d"), __exportStar(require("./CloudFolderUncheckedUpdateWithoutFilesInput.schema"), exports); __exportStar(require("./CloudFolderUncheckedUpdateWithoutParentInput.schema.d"), exports); __exportStar(require("./CloudFolderUncheckedUpdateWithoutParentInput.schema"), exports); +__exportStar(require("./CloudFolderUncheckedUpdateWithoutPatientInput.schema.d"), exports); __exportStar(require("./CloudFolderUncheckedUpdateWithoutPatientInput.schema"), exports); __exportStar(require("./CloudFolderUncheckedUpdateWithoutUserInput.schema.d"), exports); __exportStar(require("./CloudFolderUncheckedUpdateWithoutUserInput.schema"), exports); @@ -1273,11 +1390,13 @@ __exportStar(require("./CloudFolderUpdateManyMutationInput.schema.d"), exports); __exportStar(require("./CloudFolderUpdateManyMutationInput.schema"), exports); __exportStar(require("./CloudFolderUpdateManyWithWhereWithoutParentInput.schema.d"), exports); __exportStar(require("./CloudFolderUpdateManyWithWhereWithoutParentInput.schema"), exports); +__exportStar(require("./CloudFolderUpdateManyWithWhereWithoutPatientInput.schema.d"), exports); __exportStar(require("./CloudFolderUpdateManyWithWhereWithoutPatientInput.schema"), exports); __exportStar(require("./CloudFolderUpdateManyWithWhereWithoutUserInput.schema.d"), exports); __exportStar(require("./CloudFolderUpdateManyWithWhereWithoutUserInput.schema"), exports); __exportStar(require("./CloudFolderUpdateManyWithoutParentNestedInput.schema.d"), exports); __exportStar(require("./CloudFolderUpdateManyWithoutParentNestedInput.schema"), exports); +__exportStar(require("./CloudFolderUpdateManyWithoutPatientNestedInput.schema.d"), exports); __exportStar(require("./CloudFolderUpdateManyWithoutPatientNestedInput.schema"), exports); __exportStar(require("./CloudFolderUpdateManyWithoutUserNestedInput.schema.d"), exports); __exportStar(require("./CloudFolderUpdateManyWithoutUserNestedInput.schema"), exports); @@ -1291,6 +1410,7 @@ __exportStar(require("./CloudFolderUpdateToOneWithWhereWithoutFilesInput.schema. __exportStar(require("./CloudFolderUpdateToOneWithWhereWithoutFilesInput.schema"), exports); __exportStar(require("./CloudFolderUpdateWithWhereUniqueWithoutParentInput.schema.d"), exports); __exportStar(require("./CloudFolderUpdateWithWhereUniqueWithoutParentInput.schema"), exports); +__exportStar(require("./CloudFolderUpdateWithWhereUniqueWithoutPatientInput.schema.d"), exports); __exportStar(require("./CloudFolderUpdateWithWhereUniqueWithoutPatientInput.schema"), exports); __exportStar(require("./CloudFolderUpdateWithWhereUniqueWithoutUserInput.schema.d"), exports); __exportStar(require("./CloudFolderUpdateWithWhereUniqueWithoutUserInput.schema"), exports); @@ -1300,11 +1420,13 @@ __exportStar(require("./CloudFolderUpdateWithoutFilesInput.schema.d"), exports); __exportStar(require("./CloudFolderUpdateWithoutFilesInput.schema"), exports); __exportStar(require("./CloudFolderUpdateWithoutParentInput.schema.d"), exports); __exportStar(require("./CloudFolderUpdateWithoutParentInput.schema"), exports); +__exportStar(require("./CloudFolderUpdateWithoutPatientInput.schema.d"), exports); __exportStar(require("./CloudFolderUpdateWithoutPatientInput.schema"), exports); __exportStar(require("./CloudFolderUpdateWithoutUserInput.schema.d"), exports); __exportStar(require("./CloudFolderUpdateWithoutUserInput.schema"), exports); __exportStar(require("./CloudFolderUpsertWithWhereUniqueWithoutParentInput.schema.d"), exports); __exportStar(require("./CloudFolderUpsertWithWhereUniqueWithoutParentInput.schema"), exports); +__exportStar(require("./CloudFolderUpsertWithWhereUniqueWithoutPatientInput.schema.d"), exports); __exportStar(require("./CloudFolderUpsertWithWhereUniqueWithoutPatientInput.schema"), exports); __exportStar(require("./CloudFolderUpsertWithWhereUniqueWithoutUserInput.schema.d"), exports); __exportStar(require("./CloudFolderUpsertWithWhereUniqueWithoutUserInput.schema"), exports); @@ -1318,120 +1440,235 @@ __exportStar(require("./CloudFolderWhereInput.schema.d"), exports); __exportStar(require("./CloudFolderWhereInput.schema"), exports); __exportStar(require("./CloudFolderWhereUniqueInput.schema.d"), exports); __exportStar(require("./CloudFolderWhereUniqueInput.schema"), exports); +__exportStar(require("./CommissionBatchArgs.schema.d"), exports); __exportStar(require("./CommissionBatchArgs.schema"), exports); +__exportStar(require("./CommissionBatchAvgAggregateInput.schema.d"), exports); __exportStar(require("./CommissionBatchAvgAggregateInput.schema"), exports); +__exportStar(require("./CommissionBatchAvgOrderByAggregateInput.schema.d"), exports); __exportStar(require("./CommissionBatchAvgOrderByAggregateInput.schema"), exports); +__exportStar(require("./CommissionBatchCountAggregateInput.schema.d"), exports); __exportStar(require("./CommissionBatchCountAggregateInput.schema"), exports); +__exportStar(require("./CommissionBatchCountOrderByAggregateInput.schema.d"), exports); __exportStar(require("./CommissionBatchCountOrderByAggregateInput.schema"), exports); +__exportStar(require("./CommissionBatchCountOutputTypeArgs.schema.d"), exports); __exportStar(require("./CommissionBatchCountOutputTypeArgs.schema"), exports); +__exportStar(require("./CommissionBatchCountOutputTypeCountItemsArgs.schema.d"), exports); __exportStar(require("./CommissionBatchCountOutputTypeCountItemsArgs.schema"), exports); +__exportStar(require("./CommissionBatchCountOutputTypeSelect.schema.d"), exports); __exportStar(require("./CommissionBatchCountOutputTypeSelect.schema"), exports); +__exportStar(require("./CommissionBatchCreateInput.schema.d"), exports); __exportStar(require("./CommissionBatchCreateInput.schema"), exports); +__exportStar(require("./CommissionBatchCreateManyInput.schema.d"), exports); __exportStar(require("./CommissionBatchCreateManyInput.schema"), exports); +__exportStar(require("./CommissionBatchCreateManyNpiProviderInput.schema.d"), exports); __exportStar(require("./CommissionBatchCreateManyNpiProviderInput.schema"), exports); +__exportStar(require("./CommissionBatchCreateManyNpiProviderInputEnvelope.schema.d"), exports); __exportStar(require("./CommissionBatchCreateManyNpiProviderInputEnvelope.schema"), exports); +__exportStar(require("./CommissionBatchCreateNestedManyWithoutNpiProviderInput.schema.d"), exports); __exportStar(require("./CommissionBatchCreateNestedManyWithoutNpiProviderInput.schema"), exports); +__exportStar(require("./CommissionBatchCreateNestedOneWithoutItemsInput.schema.d"), exports); __exportStar(require("./CommissionBatchCreateNestedOneWithoutItemsInput.schema"), exports); +__exportStar(require("./CommissionBatchCreateOrConnectWithoutItemsInput.schema.d"), exports); __exportStar(require("./CommissionBatchCreateOrConnectWithoutItemsInput.schema"), exports); +__exportStar(require("./CommissionBatchCreateOrConnectWithoutNpiProviderInput.schema.d"), exports); __exportStar(require("./CommissionBatchCreateOrConnectWithoutNpiProviderInput.schema"), exports); +__exportStar(require("./CommissionBatchCreateWithoutItemsInput.schema.d"), exports); __exportStar(require("./CommissionBatchCreateWithoutItemsInput.schema"), exports); +__exportStar(require("./CommissionBatchCreateWithoutNpiProviderInput.schema.d"), exports); __exportStar(require("./CommissionBatchCreateWithoutNpiProviderInput.schema"), exports); +__exportStar(require("./CommissionBatchInclude.schema.d"), exports); __exportStar(require("./CommissionBatchInclude.schema"), exports); +__exportStar(require("./CommissionBatchItemArgs.schema.d"), exports); __exportStar(require("./CommissionBatchItemArgs.schema"), exports); +__exportStar(require("./CommissionBatchItemAvgAggregateInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemAvgAggregateInput.schema"), exports); +__exportStar(require("./CommissionBatchItemAvgOrderByAggregateInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemAvgOrderByAggregateInput.schema"), exports); +__exportStar(require("./CommissionBatchItemCommissionBatchIdPaymentIdCompoundUniqueInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemCommissionBatchIdPaymentIdCompoundUniqueInput.schema"), exports); +__exportStar(require("./CommissionBatchItemCountAggregateInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemCountAggregateInput.schema"), exports); +__exportStar(require("./CommissionBatchItemCountOrderByAggregateInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemCountOrderByAggregateInput.schema"), exports); +__exportStar(require("./CommissionBatchItemCreateInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemCreateInput.schema"), exports); +__exportStar(require("./CommissionBatchItemCreateManyCommissionBatchInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemCreateManyCommissionBatchInput.schema"), exports); +__exportStar(require("./CommissionBatchItemCreateManyCommissionBatchInputEnvelope.schema.d"), exports); __exportStar(require("./CommissionBatchItemCreateManyCommissionBatchInputEnvelope.schema"), exports); +__exportStar(require("./CommissionBatchItemCreateManyInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemCreateManyInput.schema"), exports); +__exportStar(require("./CommissionBatchItemCreateManyPaymentInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemCreateManyPaymentInput.schema"), exports); +__exportStar(require("./CommissionBatchItemCreateManyPaymentInputEnvelope.schema.d"), exports); __exportStar(require("./CommissionBatchItemCreateManyPaymentInputEnvelope.schema"), exports); +__exportStar(require("./CommissionBatchItemCreateNestedManyWithoutCommissionBatchInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemCreateNestedManyWithoutCommissionBatchInput.schema"), exports); +__exportStar(require("./CommissionBatchItemCreateNestedManyWithoutPaymentInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemCreateNestedManyWithoutPaymentInput.schema"), exports); +__exportStar(require("./CommissionBatchItemCreateOrConnectWithoutCommissionBatchInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemCreateOrConnectWithoutCommissionBatchInput.schema"), exports); +__exportStar(require("./CommissionBatchItemCreateOrConnectWithoutPaymentInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemCreateOrConnectWithoutPaymentInput.schema"), exports); +__exportStar(require("./CommissionBatchItemCreateWithoutCommissionBatchInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemCreateWithoutCommissionBatchInput.schema"), exports); +__exportStar(require("./CommissionBatchItemCreateWithoutPaymentInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemCreateWithoutPaymentInput.schema"), exports); +__exportStar(require("./CommissionBatchItemInclude.schema.d"), exports); __exportStar(require("./CommissionBatchItemInclude.schema"), exports); +__exportStar(require("./CommissionBatchItemListRelationFilter.schema.d"), exports); __exportStar(require("./CommissionBatchItemListRelationFilter.schema"), exports); +__exportStar(require("./CommissionBatchItemMaxAggregateInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemMaxAggregateInput.schema"), exports); +__exportStar(require("./CommissionBatchItemMaxOrderByAggregateInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemMaxOrderByAggregateInput.schema"), exports); +__exportStar(require("./CommissionBatchItemMinAggregateInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemMinAggregateInput.schema"), exports); +__exportStar(require("./CommissionBatchItemMinOrderByAggregateInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemMinOrderByAggregateInput.schema"), exports); +__exportStar(require("./CommissionBatchItemOrderByRelationAggregateInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemOrderByRelationAggregateInput.schema"), exports); +__exportStar(require("./CommissionBatchItemOrderByWithAggregationInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemOrderByWithAggregationInput.schema"), exports); +__exportStar(require("./CommissionBatchItemOrderByWithRelationInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemOrderByWithRelationInput.schema"), exports); +__exportStar(require("./CommissionBatchItemScalarWhereInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemScalarWhereInput.schema"), exports); +__exportStar(require("./CommissionBatchItemScalarWhereWithAggregatesInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemScalarWhereWithAggregatesInput.schema"), exports); +__exportStar(require("./CommissionBatchItemSelect.schema.d"), exports); __exportStar(require("./CommissionBatchItemSelect.schema"), exports); +__exportStar(require("./CommissionBatchItemSumAggregateInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemSumAggregateInput.schema"), exports); +__exportStar(require("./CommissionBatchItemSumOrderByAggregateInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemSumOrderByAggregateInput.schema"), exports); +__exportStar(require("./CommissionBatchItemUncheckedCreateInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemUncheckedCreateInput.schema"), exports); +__exportStar(require("./CommissionBatchItemUncheckedCreateNestedManyWithoutCommissionBatchInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemUncheckedCreateNestedManyWithoutCommissionBatchInput.schema"), exports); +__exportStar(require("./CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInput.schema"), exports); +__exportStar(require("./CommissionBatchItemUncheckedCreateWithoutCommissionBatchInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemUncheckedCreateWithoutCommissionBatchInput.schema"), exports); +__exportStar(require("./CommissionBatchItemUncheckedCreateWithoutPaymentInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemUncheckedCreateWithoutPaymentInput.schema"), exports); +__exportStar(require("./CommissionBatchItemUncheckedUpdateInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemUncheckedUpdateInput.schema"), exports); +__exportStar(require("./CommissionBatchItemUncheckedUpdateManyInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemUncheckedUpdateManyInput.schema"), exports); +__exportStar(require("./CommissionBatchItemUncheckedUpdateManyWithoutCommissionBatchInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemUncheckedUpdateManyWithoutCommissionBatchInput.schema"), exports); +__exportStar(require("./CommissionBatchItemUncheckedUpdateManyWithoutCommissionBatchNestedInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemUncheckedUpdateManyWithoutCommissionBatchNestedInput.schema"), exports); +__exportStar(require("./CommissionBatchItemUncheckedUpdateManyWithoutPaymentInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemUncheckedUpdateManyWithoutPaymentInput.schema"), exports); +__exportStar(require("./CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInput.schema"), exports); +__exportStar(require("./CommissionBatchItemUncheckedUpdateWithoutCommissionBatchInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemUncheckedUpdateWithoutCommissionBatchInput.schema"), exports); +__exportStar(require("./CommissionBatchItemUncheckedUpdateWithoutPaymentInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemUncheckedUpdateWithoutPaymentInput.schema"), exports); +__exportStar(require("./CommissionBatchItemUpdateInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemUpdateInput.schema"), exports); +__exportStar(require("./CommissionBatchItemUpdateManyMutationInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemUpdateManyMutationInput.schema"), exports); +__exportStar(require("./CommissionBatchItemUpdateManyWithWhereWithoutCommissionBatchInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemUpdateManyWithWhereWithoutCommissionBatchInput.schema"), exports); +__exportStar(require("./CommissionBatchItemUpdateManyWithWhereWithoutPaymentInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemUpdateManyWithWhereWithoutPaymentInput.schema"), exports); +__exportStar(require("./CommissionBatchItemUpdateManyWithoutCommissionBatchNestedInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemUpdateManyWithoutCommissionBatchNestedInput.schema"), exports); +__exportStar(require("./CommissionBatchItemUpdateManyWithoutPaymentNestedInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemUpdateManyWithoutPaymentNestedInput.schema"), exports); +__exportStar(require("./CommissionBatchItemUpdateWithWhereUniqueWithoutCommissionBatchInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemUpdateWithWhereUniqueWithoutCommissionBatchInput.schema"), exports); +__exportStar(require("./CommissionBatchItemUpdateWithWhereUniqueWithoutPaymentInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemUpdateWithWhereUniqueWithoutPaymentInput.schema"), exports); +__exportStar(require("./CommissionBatchItemUpdateWithoutCommissionBatchInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemUpdateWithoutCommissionBatchInput.schema"), exports); +__exportStar(require("./CommissionBatchItemUpdateWithoutPaymentInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemUpdateWithoutPaymentInput.schema"), exports); +__exportStar(require("./CommissionBatchItemUpsertWithWhereUniqueWithoutCommissionBatchInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemUpsertWithWhereUniqueWithoutCommissionBatchInput.schema"), exports); +__exportStar(require("./CommissionBatchItemUpsertWithWhereUniqueWithoutPaymentInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemUpsertWithWhereUniqueWithoutPaymentInput.schema"), exports); +__exportStar(require("./CommissionBatchItemWhereInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemWhereInput.schema"), exports); +__exportStar(require("./CommissionBatchItemWhereUniqueInput.schema.d"), exports); __exportStar(require("./CommissionBatchItemWhereUniqueInput.schema"), exports); +__exportStar(require("./CommissionBatchListRelationFilter.schema.d"), exports); __exportStar(require("./CommissionBatchListRelationFilter.schema"), exports); +__exportStar(require("./CommissionBatchMaxAggregateInput.schema.d"), exports); __exportStar(require("./CommissionBatchMaxAggregateInput.schema"), exports); +__exportStar(require("./CommissionBatchMaxOrderByAggregateInput.schema.d"), exports); __exportStar(require("./CommissionBatchMaxOrderByAggregateInput.schema"), exports); +__exportStar(require("./CommissionBatchMinAggregateInput.schema.d"), exports); __exportStar(require("./CommissionBatchMinAggregateInput.schema"), exports); +__exportStar(require("./CommissionBatchMinOrderByAggregateInput.schema.d"), exports); __exportStar(require("./CommissionBatchMinOrderByAggregateInput.schema"), exports); +__exportStar(require("./CommissionBatchOrderByRelationAggregateInput.schema.d"), exports); __exportStar(require("./CommissionBatchOrderByRelationAggregateInput.schema"), exports); +__exportStar(require("./CommissionBatchOrderByWithAggregationInput.schema.d"), exports); __exportStar(require("./CommissionBatchOrderByWithAggregationInput.schema"), exports); +__exportStar(require("./CommissionBatchOrderByWithRelationInput.schema.d"), exports); __exportStar(require("./CommissionBatchOrderByWithRelationInput.schema"), exports); +__exportStar(require("./CommissionBatchScalarRelationFilter.schema.d"), exports); __exportStar(require("./CommissionBatchScalarRelationFilter.schema"), exports); +__exportStar(require("./CommissionBatchScalarWhereInput.schema.d"), exports); __exportStar(require("./CommissionBatchScalarWhereInput.schema"), exports); +__exportStar(require("./CommissionBatchScalarWhereWithAggregatesInput.schema.d"), exports); __exportStar(require("./CommissionBatchScalarWhereWithAggregatesInput.schema"), exports); +__exportStar(require("./CommissionBatchSelect.schema.d"), exports); __exportStar(require("./CommissionBatchSelect.schema"), exports); +__exportStar(require("./CommissionBatchSumAggregateInput.schema.d"), exports); __exportStar(require("./CommissionBatchSumAggregateInput.schema"), exports); +__exportStar(require("./CommissionBatchSumOrderByAggregateInput.schema.d"), exports); __exportStar(require("./CommissionBatchSumOrderByAggregateInput.schema"), exports); +__exportStar(require("./CommissionBatchUncheckedCreateInput.schema.d"), exports); __exportStar(require("./CommissionBatchUncheckedCreateInput.schema"), exports); +__exportStar(require("./CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput.schema.d"), exports); __exportStar(require("./CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput.schema"), exports); +__exportStar(require("./CommissionBatchUncheckedCreateWithoutItemsInput.schema.d"), exports); __exportStar(require("./CommissionBatchUncheckedCreateWithoutItemsInput.schema"), exports); +__exportStar(require("./CommissionBatchUncheckedCreateWithoutNpiProviderInput.schema.d"), exports); __exportStar(require("./CommissionBatchUncheckedCreateWithoutNpiProviderInput.schema"), exports); +__exportStar(require("./CommissionBatchUncheckedUpdateInput.schema.d"), exports); __exportStar(require("./CommissionBatchUncheckedUpdateInput.schema"), exports); +__exportStar(require("./CommissionBatchUncheckedUpdateManyInput.schema.d"), exports); __exportStar(require("./CommissionBatchUncheckedUpdateManyInput.schema"), exports); +__exportStar(require("./CommissionBatchUncheckedUpdateManyWithoutNpiProviderInput.schema.d"), exports); __exportStar(require("./CommissionBatchUncheckedUpdateManyWithoutNpiProviderInput.schema"), exports); +__exportStar(require("./CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput.schema.d"), exports); __exportStar(require("./CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput.schema"), exports); +__exportStar(require("./CommissionBatchUncheckedUpdateWithoutItemsInput.schema.d"), exports); __exportStar(require("./CommissionBatchUncheckedUpdateWithoutItemsInput.schema"), exports); +__exportStar(require("./CommissionBatchUncheckedUpdateWithoutNpiProviderInput.schema.d"), exports); __exportStar(require("./CommissionBatchUncheckedUpdateWithoutNpiProviderInput.schema"), exports); +__exportStar(require("./CommissionBatchUpdateInput.schema.d"), exports); __exportStar(require("./CommissionBatchUpdateInput.schema"), exports); +__exportStar(require("./CommissionBatchUpdateManyMutationInput.schema.d"), exports); __exportStar(require("./CommissionBatchUpdateManyMutationInput.schema"), exports); +__exportStar(require("./CommissionBatchUpdateManyWithWhereWithoutNpiProviderInput.schema.d"), exports); __exportStar(require("./CommissionBatchUpdateManyWithWhereWithoutNpiProviderInput.schema"), exports); +__exportStar(require("./CommissionBatchUpdateManyWithoutNpiProviderNestedInput.schema.d"), exports); __exportStar(require("./CommissionBatchUpdateManyWithoutNpiProviderNestedInput.schema"), exports); +__exportStar(require("./CommissionBatchUpdateOneRequiredWithoutItemsNestedInput.schema.d"), exports); __exportStar(require("./CommissionBatchUpdateOneRequiredWithoutItemsNestedInput.schema"), exports); +__exportStar(require("./CommissionBatchUpdateToOneWithWhereWithoutItemsInput.schema.d"), exports); __exportStar(require("./CommissionBatchUpdateToOneWithWhereWithoutItemsInput.schema"), exports); +__exportStar(require("./CommissionBatchUpdateWithWhereUniqueWithoutNpiProviderInput.schema.d"), exports); __exportStar(require("./CommissionBatchUpdateWithWhereUniqueWithoutNpiProviderInput.schema"), exports); +__exportStar(require("./CommissionBatchUpdateWithoutItemsInput.schema.d"), exports); __exportStar(require("./CommissionBatchUpdateWithoutItemsInput.schema"), exports); +__exportStar(require("./CommissionBatchUpdateWithoutNpiProviderInput.schema.d"), exports); __exportStar(require("./CommissionBatchUpdateWithoutNpiProviderInput.schema"), exports); +__exportStar(require("./CommissionBatchUpsertWithWhereUniqueWithoutNpiProviderInput.schema.d"), exports); __exportStar(require("./CommissionBatchUpsertWithWhereUniqueWithoutNpiProviderInput.schema"), exports); +__exportStar(require("./CommissionBatchUpsertWithoutItemsInput.schema.d"), exports); __exportStar(require("./CommissionBatchUpsertWithoutItemsInput.schema"), exports); +__exportStar(require("./CommissionBatchWhereInput.schema.d"), exports); __exportStar(require("./CommissionBatchWhereInput.schema"), exports); +__exportStar(require("./CommissionBatchWhereUniqueInput.schema.d"), exports); __exportStar(require("./CommissionBatchWhereUniqueInput.schema"), exports); __exportStar(require("./CommunicationArgs.schema.d"), exports); __exportStar(require("./CommunicationArgs.schema"), exports); @@ -1775,48 +2012,91 @@ __exportStar(require("./EnumServiceLineStatusFilter.schema.d"), exports); __exportStar(require("./EnumServiceLineStatusFilter.schema"), exports); __exportStar(require("./EnumServiceLineStatusWithAggregatesFilter.schema.d"), exports); __exportStar(require("./EnumServiceLineStatusWithAggregatesFilter.schema"), exports); +__exportStar(require("./InsuranceContactArgs.schema.d"), exports); __exportStar(require("./InsuranceContactArgs.schema"), exports); +__exportStar(require("./InsuranceContactAvgAggregateInput.schema.d"), exports); __exportStar(require("./InsuranceContactAvgAggregateInput.schema"), exports); +__exportStar(require("./InsuranceContactAvgOrderByAggregateInput.schema.d"), exports); __exportStar(require("./InsuranceContactAvgOrderByAggregateInput.schema"), exports); +__exportStar(require("./InsuranceContactCountAggregateInput.schema.d"), exports); __exportStar(require("./InsuranceContactCountAggregateInput.schema"), exports); +__exportStar(require("./InsuranceContactCountOrderByAggregateInput.schema.d"), exports); __exportStar(require("./InsuranceContactCountOrderByAggregateInput.schema"), exports); +__exportStar(require("./InsuranceContactCreateInput.schema.d"), exports); __exportStar(require("./InsuranceContactCreateInput.schema"), exports); +__exportStar(require("./InsuranceContactCreateManyInput.schema.d"), exports); __exportStar(require("./InsuranceContactCreateManyInput.schema"), exports); +__exportStar(require("./InsuranceContactCreateManyUserInput.schema.d"), exports); __exportStar(require("./InsuranceContactCreateManyUserInput.schema"), exports); +__exportStar(require("./InsuranceContactCreateManyUserInputEnvelope.schema.d"), exports); __exportStar(require("./InsuranceContactCreateManyUserInputEnvelope.schema"), exports); +__exportStar(require("./InsuranceContactCreateNestedManyWithoutUserInput.schema.d"), exports); __exportStar(require("./InsuranceContactCreateNestedManyWithoutUserInput.schema"), exports); +__exportStar(require("./InsuranceContactCreateOrConnectWithoutUserInput.schema.d"), exports); __exportStar(require("./InsuranceContactCreateOrConnectWithoutUserInput.schema"), exports); +__exportStar(require("./InsuranceContactCreateWithoutUserInput.schema.d"), exports); __exportStar(require("./InsuranceContactCreateWithoutUserInput.schema"), exports); +__exportStar(require("./InsuranceContactInclude.schema.d"), exports); __exportStar(require("./InsuranceContactInclude.schema"), exports); +__exportStar(require("./InsuranceContactListRelationFilter.schema.d"), exports); __exportStar(require("./InsuranceContactListRelationFilter.schema"), exports); +__exportStar(require("./InsuranceContactMaxAggregateInput.schema.d"), exports); __exportStar(require("./InsuranceContactMaxAggregateInput.schema"), exports); +__exportStar(require("./InsuranceContactMaxOrderByAggregateInput.schema.d"), exports); __exportStar(require("./InsuranceContactMaxOrderByAggregateInput.schema"), exports); +__exportStar(require("./InsuranceContactMinAggregateInput.schema.d"), exports); __exportStar(require("./InsuranceContactMinAggregateInput.schema"), exports); +__exportStar(require("./InsuranceContactMinOrderByAggregateInput.schema.d"), exports); __exportStar(require("./InsuranceContactMinOrderByAggregateInput.schema"), exports); +__exportStar(require("./InsuranceContactOrderByRelationAggregateInput.schema.d"), exports); __exportStar(require("./InsuranceContactOrderByRelationAggregateInput.schema"), exports); +__exportStar(require("./InsuranceContactOrderByWithAggregationInput.schema.d"), exports); __exportStar(require("./InsuranceContactOrderByWithAggregationInput.schema"), exports); +__exportStar(require("./InsuranceContactOrderByWithRelationInput.schema.d"), exports); __exportStar(require("./InsuranceContactOrderByWithRelationInput.schema"), exports); +__exportStar(require("./InsuranceContactScalarWhereInput.schema.d"), exports); __exportStar(require("./InsuranceContactScalarWhereInput.schema"), exports); +__exportStar(require("./InsuranceContactScalarWhereWithAggregatesInput.schema.d"), exports); __exportStar(require("./InsuranceContactScalarWhereWithAggregatesInput.schema"), exports); +__exportStar(require("./InsuranceContactSelect.schema.d"), exports); __exportStar(require("./InsuranceContactSelect.schema"), exports); +__exportStar(require("./InsuranceContactSumAggregateInput.schema.d"), exports); __exportStar(require("./InsuranceContactSumAggregateInput.schema"), exports); +__exportStar(require("./InsuranceContactSumOrderByAggregateInput.schema.d"), exports); __exportStar(require("./InsuranceContactSumOrderByAggregateInput.schema"), exports); +__exportStar(require("./InsuranceContactUncheckedCreateInput.schema.d"), exports); __exportStar(require("./InsuranceContactUncheckedCreateInput.schema"), exports); +__exportStar(require("./InsuranceContactUncheckedCreateNestedManyWithoutUserInput.schema.d"), exports); __exportStar(require("./InsuranceContactUncheckedCreateNestedManyWithoutUserInput.schema"), exports); +__exportStar(require("./InsuranceContactUncheckedCreateWithoutUserInput.schema.d"), exports); __exportStar(require("./InsuranceContactUncheckedCreateWithoutUserInput.schema"), exports); +__exportStar(require("./InsuranceContactUncheckedUpdateInput.schema.d"), exports); __exportStar(require("./InsuranceContactUncheckedUpdateInput.schema"), exports); +__exportStar(require("./InsuranceContactUncheckedUpdateManyInput.schema.d"), exports); __exportStar(require("./InsuranceContactUncheckedUpdateManyInput.schema"), exports); +__exportStar(require("./InsuranceContactUncheckedUpdateManyWithoutUserInput.schema.d"), exports); __exportStar(require("./InsuranceContactUncheckedUpdateManyWithoutUserInput.schema"), exports); +__exportStar(require("./InsuranceContactUncheckedUpdateManyWithoutUserNestedInput.schema.d"), exports); __exportStar(require("./InsuranceContactUncheckedUpdateManyWithoutUserNestedInput.schema"), exports); +__exportStar(require("./InsuranceContactUncheckedUpdateWithoutUserInput.schema.d"), exports); __exportStar(require("./InsuranceContactUncheckedUpdateWithoutUserInput.schema"), exports); +__exportStar(require("./InsuranceContactUpdateInput.schema.d"), exports); __exportStar(require("./InsuranceContactUpdateInput.schema"), exports); +__exportStar(require("./InsuranceContactUpdateManyMutationInput.schema.d"), exports); __exportStar(require("./InsuranceContactUpdateManyMutationInput.schema"), exports); +__exportStar(require("./InsuranceContactUpdateManyWithWhereWithoutUserInput.schema.d"), exports); __exportStar(require("./InsuranceContactUpdateManyWithWhereWithoutUserInput.schema"), exports); +__exportStar(require("./InsuranceContactUpdateManyWithoutUserNestedInput.schema.d"), exports); __exportStar(require("./InsuranceContactUpdateManyWithoutUserNestedInput.schema"), exports); +__exportStar(require("./InsuranceContactUpdateWithWhereUniqueWithoutUserInput.schema.d"), exports); __exportStar(require("./InsuranceContactUpdateWithWhereUniqueWithoutUserInput.schema"), exports); +__exportStar(require("./InsuranceContactUpdateWithoutUserInput.schema.d"), exports); __exportStar(require("./InsuranceContactUpdateWithoutUserInput.schema"), exports); +__exportStar(require("./InsuranceContactUpsertWithWhereUniqueWithoutUserInput.schema.d"), exports); __exportStar(require("./InsuranceContactUpsertWithWhereUniqueWithoutUserInput.schema"), exports); +__exportStar(require("./InsuranceContactWhereInput.schema.d"), exports); __exportStar(require("./InsuranceContactWhereInput.schema"), exports); +__exportStar(require("./InsuranceContactWhereUniqueInput.schema.d"), exports); __exportStar(require("./InsuranceContactWhereUniqueInput.schema"), exports); __exportStar(require("./InsuranceCredentialArgs.schema.d"), exports); __exportStar(require("./InsuranceCredentialArgs.schema"), exports); @@ -1916,12 +2196,57 @@ __exportStar(require("./IntNullableWithAggregatesFilter.schema.d"), exports); __exportStar(require("./IntNullableWithAggregatesFilter.schema"), exports); __exportStar(require("./IntWithAggregatesFilter.schema.d"), exports); __exportStar(require("./IntWithAggregatesFilter.schema"), exports); +__exportStar(require("./JsonFilter.schema.d"), exports); __exportStar(require("./JsonFilter.schema"), exports); __exportStar(require("./JsonNullableFilter.schema.d"), exports); __exportStar(require("./JsonNullableFilter.schema"), exports); __exportStar(require("./JsonNullableWithAggregatesFilter.schema.d"), exports); __exportStar(require("./JsonNullableWithAggregatesFilter.schema"), exports); +__exportStar(require("./JsonWithAggregatesFilter.schema.d"), exports); __exportStar(require("./JsonWithAggregatesFilter.schema"), exports); +__exportStar(require("./LabRxTemplateArgs.schema"), exports); +__exportStar(require("./LabRxTemplateAvgAggregateInput.schema"), exports); +__exportStar(require("./LabRxTemplateAvgOrderByAggregateInput.schema"), exports); +__exportStar(require("./LabRxTemplateCountAggregateInput.schema"), exports); +__exportStar(require("./LabRxTemplateCountOrderByAggregateInput.schema"), exports); +__exportStar(require("./LabRxTemplateCreateInput.schema"), exports); +__exportStar(require("./LabRxTemplateCreateManyInput.schema"), exports); +__exportStar(require("./LabRxTemplateCreateManyUserInput.schema"), exports); +__exportStar(require("./LabRxTemplateCreateManyUserInputEnvelope.schema"), exports); +__exportStar(require("./LabRxTemplateCreateNestedManyWithoutUserInput.schema"), exports); +__exportStar(require("./LabRxTemplateCreateOrConnectWithoutUserInput.schema"), exports); +__exportStar(require("./LabRxTemplateCreateWithoutUserInput.schema"), exports); +__exportStar(require("./LabRxTemplateInclude.schema"), exports); +__exportStar(require("./LabRxTemplateListRelationFilter.schema"), exports); +__exportStar(require("./LabRxTemplateMaxAggregateInput.schema"), exports); +__exportStar(require("./LabRxTemplateMaxOrderByAggregateInput.schema"), exports); +__exportStar(require("./LabRxTemplateMinAggregateInput.schema"), exports); +__exportStar(require("./LabRxTemplateMinOrderByAggregateInput.schema"), exports); +__exportStar(require("./LabRxTemplateOrderByRelationAggregateInput.schema"), exports); +__exportStar(require("./LabRxTemplateOrderByWithAggregationInput.schema"), exports); +__exportStar(require("./LabRxTemplateOrderByWithRelationInput.schema"), exports); +__exportStar(require("./LabRxTemplateScalarWhereInput.schema"), exports); +__exportStar(require("./LabRxTemplateScalarWhereWithAggregatesInput.schema"), exports); +__exportStar(require("./LabRxTemplateSelect.schema"), exports); +__exportStar(require("./LabRxTemplateSumAggregateInput.schema"), exports); +__exportStar(require("./LabRxTemplateSumOrderByAggregateInput.schema"), exports); +__exportStar(require("./LabRxTemplateUncheckedCreateInput.schema"), exports); +__exportStar(require("./LabRxTemplateUncheckedCreateNestedManyWithoutUserInput.schema"), exports); +__exportStar(require("./LabRxTemplateUncheckedCreateWithoutUserInput.schema"), exports); +__exportStar(require("./LabRxTemplateUncheckedUpdateInput.schema"), exports); +__exportStar(require("./LabRxTemplateUncheckedUpdateManyInput.schema"), exports); +__exportStar(require("./LabRxTemplateUncheckedUpdateManyWithoutUserInput.schema"), exports); +__exportStar(require("./LabRxTemplateUncheckedUpdateManyWithoutUserNestedInput.schema"), exports); +__exportStar(require("./LabRxTemplateUncheckedUpdateWithoutUserInput.schema"), exports); +__exportStar(require("./LabRxTemplateUpdateInput.schema"), exports); +__exportStar(require("./LabRxTemplateUpdateManyMutationInput.schema"), exports); +__exportStar(require("./LabRxTemplateUpdateManyWithWhereWithoutUserInput.schema"), exports); +__exportStar(require("./LabRxTemplateUpdateManyWithoutUserNestedInput.schema"), exports); +__exportStar(require("./LabRxTemplateUpdateWithWhereUniqueWithoutUserInput.schema"), exports); +__exportStar(require("./LabRxTemplateUpdateWithoutUserInput.schema"), exports); +__exportStar(require("./LabRxTemplateUpsertWithWhereUniqueWithoutUserInput.schema"), exports); +__exportStar(require("./LabRxTemplateWhereInput.schema"), exports); +__exportStar(require("./LabRxTemplateWhereUniqueInput.schema"), exports); __exportStar(require("./NestedBigIntFilter.schema.d"), exports); __exportStar(require("./NestedBigIntFilter.schema"), exports); __exportStar(require("./NestedBigIntWithAggregatesFilter.schema.d"), exports); @@ -2010,6 +2335,7 @@ __exportStar(require("./NestedIntNullableWithAggregatesFilter.schema.d"), export __exportStar(require("./NestedIntNullableWithAggregatesFilter.schema"), exports); __exportStar(require("./NestedIntWithAggregatesFilter.schema.d"), exports); __exportStar(require("./NestedIntWithAggregatesFilter.schema"), exports); +__exportStar(require("./NestedJsonFilter.schema.d"), exports); __exportStar(require("./NestedJsonFilter.schema"), exports); __exportStar(require("./NestedJsonNullableFilter.schema.d"), exports); __exportStar(require("./NestedJsonNullableFilter.schema"), exports); @@ -2121,9 +2447,12 @@ __exportStar(require("./NpiProviderCountOutputTypeArgs.schema.d"), exports); __exportStar(require("./NpiProviderCountOutputTypeArgs.schema"), exports); __exportStar(require("./NpiProviderCountOutputTypeCountAppointmentProceduresArgs.schema.d"), exports); __exportStar(require("./NpiProviderCountOutputTypeCountAppointmentProceduresArgs.schema"), exports); +__exportStar(require("./NpiProviderCountOutputTypeCountAppointmentsArgs.schema"), exports); __exportStar(require("./NpiProviderCountOutputTypeCountClaimsArgs.schema.d"), exports); __exportStar(require("./NpiProviderCountOutputTypeCountClaimsArgs.schema"), exports); +__exportStar(require("./NpiProviderCountOutputTypeCountCommissionBatchesArgs.schema.d"), exports); __exportStar(require("./NpiProviderCountOutputTypeCountCommissionBatchesArgs.schema"), exports); +__exportStar(require("./NpiProviderCountOutputTypeCountPaymentsArgs.schema.d"), exports); __exportStar(require("./NpiProviderCountOutputTypeCountPaymentsArgs.schema"), exports); __exportStar(require("./NpiProviderCountOutputTypeSelect.schema.d"), exports); __exportStar(require("./NpiProviderCountOutputTypeSelect.schema"), exports); @@ -2139,23 +2468,32 @@ __exportStar(require("./NpiProviderCreateNestedManyWithoutUserInput.schema.d"), __exportStar(require("./NpiProviderCreateNestedManyWithoutUserInput.schema"), exports); __exportStar(require("./NpiProviderCreateNestedOneWithoutAppointmentProceduresInput.schema.d"), exports); __exportStar(require("./NpiProviderCreateNestedOneWithoutAppointmentProceduresInput.schema"), exports); +__exportStar(require("./NpiProviderCreateNestedOneWithoutAppointmentsInput.schema"), exports); __exportStar(require("./NpiProviderCreateNestedOneWithoutClaimsInput.schema.d"), exports); __exportStar(require("./NpiProviderCreateNestedOneWithoutClaimsInput.schema"), exports); +__exportStar(require("./NpiProviderCreateNestedOneWithoutCommissionBatchesInput.schema.d"), exports); __exportStar(require("./NpiProviderCreateNestedOneWithoutCommissionBatchesInput.schema"), exports); +__exportStar(require("./NpiProviderCreateNestedOneWithoutPaymentsInput.schema.d"), exports); __exportStar(require("./NpiProviderCreateNestedOneWithoutPaymentsInput.schema"), exports); __exportStar(require("./NpiProviderCreateOrConnectWithoutAppointmentProceduresInput.schema.d"), exports); __exportStar(require("./NpiProviderCreateOrConnectWithoutAppointmentProceduresInput.schema"), exports); +__exportStar(require("./NpiProviderCreateOrConnectWithoutAppointmentsInput.schema"), exports); __exportStar(require("./NpiProviderCreateOrConnectWithoutClaimsInput.schema.d"), exports); __exportStar(require("./NpiProviderCreateOrConnectWithoutClaimsInput.schema"), exports); +__exportStar(require("./NpiProviderCreateOrConnectWithoutCommissionBatchesInput.schema.d"), exports); __exportStar(require("./NpiProviderCreateOrConnectWithoutCommissionBatchesInput.schema"), exports); +__exportStar(require("./NpiProviderCreateOrConnectWithoutPaymentsInput.schema.d"), exports); __exportStar(require("./NpiProviderCreateOrConnectWithoutPaymentsInput.schema"), exports); __exportStar(require("./NpiProviderCreateOrConnectWithoutUserInput.schema.d"), exports); __exportStar(require("./NpiProviderCreateOrConnectWithoutUserInput.schema"), exports); __exportStar(require("./NpiProviderCreateWithoutAppointmentProceduresInput.schema.d"), exports); __exportStar(require("./NpiProviderCreateWithoutAppointmentProceduresInput.schema"), exports); +__exportStar(require("./NpiProviderCreateWithoutAppointmentsInput.schema"), exports); __exportStar(require("./NpiProviderCreateWithoutClaimsInput.schema.d"), exports); __exportStar(require("./NpiProviderCreateWithoutClaimsInput.schema"), exports); +__exportStar(require("./NpiProviderCreateWithoutCommissionBatchesInput.schema.d"), exports); __exportStar(require("./NpiProviderCreateWithoutCommissionBatchesInput.schema"), exports); +__exportStar(require("./NpiProviderCreateWithoutPaymentsInput.schema.d"), exports); __exportStar(require("./NpiProviderCreateWithoutPaymentsInput.schema"), exports); __exportStar(require("./NpiProviderCreateWithoutUserInput.schema.d"), exports); __exportStar(require("./NpiProviderCreateWithoutUserInput.schema"), exports); @@ -2179,6 +2517,7 @@ __exportStar(require("./NpiProviderOrderByWithAggregationInput.schema.d"), expor __exportStar(require("./NpiProviderOrderByWithAggregationInput.schema"), exports); __exportStar(require("./NpiProviderOrderByWithRelationInput.schema.d"), exports); __exportStar(require("./NpiProviderOrderByWithRelationInput.schema"), exports); +__exportStar(require("./NpiProviderScalarRelationFilter.schema.d"), exports); __exportStar(require("./NpiProviderScalarRelationFilter.schema"), exports); __exportStar(require("./NpiProviderScalarWhereInput.schema.d"), exports); __exportStar(require("./NpiProviderScalarWhereInput.schema"), exports); @@ -2196,9 +2535,12 @@ __exportStar(require("./NpiProviderUncheckedCreateNestedManyWithoutUserInput.sch __exportStar(require("./NpiProviderUncheckedCreateNestedManyWithoutUserInput.schema"), exports); __exportStar(require("./NpiProviderUncheckedCreateWithoutAppointmentProceduresInput.schema.d"), exports); __exportStar(require("./NpiProviderUncheckedCreateWithoutAppointmentProceduresInput.schema"), exports); +__exportStar(require("./NpiProviderUncheckedCreateWithoutAppointmentsInput.schema"), exports); __exportStar(require("./NpiProviderUncheckedCreateWithoutClaimsInput.schema.d"), exports); __exportStar(require("./NpiProviderUncheckedCreateWithoutClaimsInput.schema"), exports); +__exportStar(require("./NpiProviderUncheckedCreateWithoutCommissionBatchesInput.schema.d"), exports); __exportStar(require("./NpiProviderUncheckedCreateWithoutCommissionBatchesInput.schema"), exports); +__exportStar(require("./NpiProviderUncheckedCreateWithoutPaymentsInput.schema.d"), exports); __exportStar(require("./NpiProviderUncheckedCreateWithoutPaymentsInput.schema"), exports); __exportStar(require("./NpiProviderUncheckedCreateWithoutUserInput.schema.d"), exports); __exportStar(require("./NpiProviderUncheckedCreateWithoutUserInput.schema"), exports); @@ -2212,9 +2554,12 @@ __exportStar(require("./NpiProviderUncheckedUpdateManyWithoutUserNestedInput.sch __exportStar(require("./NpiProviderUncheckedUpdateManyWithoutUserNestedInput.schema"), exports); __exportStar(require("./NpiProviderUncheckedUpdateWithoutAppointmentProceduresInput.schema.d"), exports); __exportStar(require("./NpiProviderUncheckedUpdateWithoutAppointmentProceduresInput.schema"), exports); +__exportStar(require("./NpiProviderUncheckedUpdateWithoutAppointmentsInput.schema"), exports); __exportStar(require("./NpiProviderUncheckedUpdateWithoutClaimsInput.schema.d"), exports); __exportStar(require("./NpiProviderUncheckedUpdateWithoutClaimsInput.schema"), exports); +__exportStar(require("./NpiProviderUncheckedUpdateWithoutCommissionBatchesInput.schema.d"), exports); __exportStar(require("./NpiProviderUncheckedUpdateWithoutCommissionBatchesInput.schema"), exports); +__exportStar(require("./NpiProviderUncheckedUpdateWithoutPaymentsInput.schema.d"), exports); __exportStar(require("./NpiProviderUncheckedUpdateWithoutPaymentsInput.schema"), exports); __exportStar(require("./NpiProviderUncheckedUpdateWithoutUserInput.schema.d"), exports); __exportStar(require("./NpiProviderUncheckedUpdateWithoutUserInput.schema"), exports); @@ -2226,25 +2571,34 @@ __exportStar(require("./NpiProviderUpdateManyWithWhereWithoutUserInput.schema.d" __exportStar(require("./NpiProviderUpdateManyWithWhereWithoutUserInput.schema"), exports); __exportStar(require("./NpiProviderUpdateManyWithoutUserNestedInput.schema.d"), exports); __exportStar(require("./NpiProviderUpdateManyWithoutUserNestedInput.schema"), exports); +__exportStar(require("./NpiProviderUpdateOneRequiredWithoutCommissionBatchesNestedInput.schema.d"), exports); __exportStar(require("./NpiProviderUpdateOneRequiredWithoutCommissionBatchesNestedInput.schema"), exports); __exportStar(require("./NpiProviderUpdateOneWithoutAppointmentProceduresNestedInput.schema.d"), exports); __exportStar(require("./NpiProviderUpdateOneWithoutAppointmentProceduresNestedInput.schema"), exports); +__exportStar(require("./NpiProviderUpdateOneWithoutAppointmentsNestedInput.schema"), exports); __exportStar(require("./NpiProviderUpdateOneWithoutClaimsNestedInput.schema.d"), exports); __exportStar(require("./NpiProviderUpdateOneWithoutClaimsNestedInput.schema"), exports); +__exportStar(require("./NpiProviderUpdateOneWithoutPaymentsNestedInput.schema.d"), exports); __exportStar(require("./NpiProviderUpdateOneWithoutPaymentsNestedInput.schema"), exports); __exportStar(require("./NpiProviderUpdateToOneWithWhereWithoutAppointmentProceduresInput.schema.d"), exports); __exportStar(require("./NpiProviderUpdateToOneWithWhereWithoutAppointmentProceduresInput.schema"), exports); +__exportStar(require("./NpiProviderUpdateToOneWithWhereWithoutAppointmentsInput.schema"), exports); __exportStar(require("./NpiProviderUpdateToOneWithWhereWithoutClaimsInput.schema.d"), exports); __exportStar(require("./NpiProviderUpdateToOneWithWhereWithoutClaimsInput.schema"), exports); +__exportStar(require("./NpiProviderUpdateToOneWithWhereWithoutCommissionBatchesInput.schema.d"), exports); __exportStar(require("./NpiProviderUpdateToOneWithWhereWithoutCommissionBatchesInput.schema"), exports); +__exportStar(require("./NpiProviderUpdateToOneWithWhereWithoutPaymentsInput.schema.d"), exports); __exportStar(require("./NpiProviderUpdateToOneWithWhereWithoutPaymentsInput.schema"), exports); __exportStar(require("./NpiProviderUpdateWithWhereUniqueWithoutUserInput.schema.d"), exports); __exportStar(require("./NpiProviderUpdateWithWhereUniqueWithoutUserInput.schema"), exports); __exportStar(require("./NpiProviderUpdateWithoutAppointmentProceduresInput.schema.d"), exports); __exportStar(require("./NpiProviderUpdateWithoutAppointmentProceduresInput.schema"), exports); +__exportStar(require("./NpiProviderUpdateWithoutAppointmentsInput.schema"), exports); __exportStar(require("./NpiProviderUpdateWithoutClaimsInput.schema.d"), exports); __exportStar(require("./NpiProviderUpdateWithoutClaimsInput.schema"), exports); +__exportStar(require("./NpiProviderUpdateWithoutCommissionBatchesInput.schema.d"), exports); __exportStar(require("./NpiProviderUpdateWithoutCommissionBatchesInput.schema"), exports); +__exportStar(require("./NpiProviderUpdateWithoutPaymentsInput.schema.d"), exports); __exportStar(require("./NpiProviderUpdateWithoutPaymentsInput.schema"), exports); __exportStar(require("./NpiProviderUpdateWithoutUserInput.schema.d"), exports); __exportStar(require("./NpiProviderUpdateWithoutUserInput.schema"), exports); @@ -2252,9 +2606,12 @@ __exportStar(require("./NpiProviderUpsertWithWhereUniqueWithoutUserInput.schema. __exportStar(require("./NpiProviderUpsertWithWhereUniqueWithoutUserInput.schema"), exports); __exportStar(require("./NpiProviderUpsertWithoutAppointmentProceduresInput.schema.d"), exports); __exportStar(require("./NpiProviderUpsertWithoutAppointmentProceduresInput.schema"), exports); +__exportStar(require("./NpiProviderUpsertWithoutAppointmentsInput.schema"), exports); __exportStar(require("./NpiProviderUpsertWithoutClaimsInput.schema.d"), exports); __exportStar(require("./NpiProviderUpsertWithoutClaimsInput.schema"), exports); +__exportStar(require("./NpiProviderUpsertWithoutCommissionBatchesInput.schema.d"), exports); __exportStar(require("./NpiProviderUpsertWithoutCommissionBatchesInput.schema"), exports); +__exportStar(require("./NpiProviderUpsertWithoutPaymentsInput.schema.d"), exports); __exportStar(require("./NpiProviderUpsertWithoutPaymentsInput.schema"), exports); __exportStar(require("./NpiProviderUserIdNpiNumberCompoundUniqueInput.schema.d"), exports); __exportStar(require("./NpiProviderUserIdNpiNumberCompoundUniqueInput.schema"), exports); @@ -2270,79 +2627,153 @@ __exportStar(require("./NullableIntFieldUpdateOperationsInput.schema.d"), export __exportStar(require("./NullableIntFieldUpdateOperationsInput.schema"), exports); __exportStar(require("./NullableStringFieldUpdateOperationsInput.schema.d"), exports); __exportStar(require("./NullableStringFieldUpdateOperationsInput.schema"), exports); +__exportStar(require("./OfficeContactArgs.schema.d"), exports); __exportStar(require("./OfficeContactArgs.schema"), exports); +__exportStar(require("./OfficeContactAvgAggregateInput.schema.d"), exports); __exportStar(require("./OfficeContactAvgAggregateInput.schema"), exports); +__exportStar(require("./OfficeContactAvgOrderByAggregateInput.schema.d"), exports); __exportStar(require("./OfficeContactAvgOrderByAggregateInput.schema"), exports); +__exportStar(require("./OfficeContactCountAggregateInput.schema.d"), exports); __exportStar(require("./OfficeContactCountAggregateInput.schema"), exports); +__exportStar(require("./OfficeContactCountOrderByAggregateInput.schema.d"), exports); __exportStar(require("./OfficeContactCountOrderByAggregateInput.schema"), exports); +__exportStar(require("./OfficeContactCreateInput.schema.d"), exports); __exportStar(require("./OfficeContactCreateInput.schema"), exports); +__exportStar(require("./OfficeContactCreateManyInput.schema.d"), exports); __exportStar(require("./OfficeContactCreateManyInput.schema"), exports); +__exportStar(require("./OfficeContactCreateNestedOneWithoutUserInput.schema.d"), exports); __exportStar(require("./OfficeContactCreateNestedOneWithoutUserInput.schema"), exports); +__exportStar(require("./OfficeContactCreateOrConnectWithoutUserInput.schema.d"), exports); __exportStar(require("./OfficeContactCreateOrConnectWithoutUserInput.schema"), exports); +__exportStar(require("./OfficeContactCreateWithoutUserInput.schema.d"), exports); __exportStar(require("./OfficeContactCreateWithoutUserInput.schema"), exports); +__exportStar(require("./OfficeContactInclude.schema.d"), exports); __exportStar(require("./OfficeContactInclude.schema"), exports); +__exportStar(require("./OfficeContactMaxAggregateInput.schema.d"), exports); __exportStar(require("./OfficeContactMaxAggregateInput.schema"), exports); +__exportStar(require("./OfficeContactMaxOrderByAggregateInput.schema.d"), exports); __exportStar(require("./OfficeContactMaxOrderByAggregateInput.schema"), exports); +__exportStar(require("./OfficeContactMinAggregateInput.schema.d"), exports); __exportStar(require("./OfficeContactMinAggregateInput.schema"), exports); +__exportStar(require("./OfficeContactMinOrderByAggregateInput.schema.d"), exports); __exportStar(require("./OfficeContactMinOrderByAggregateInput.schema"), exports); +__exportStar(require("./OfficeContactNullableScalarRelationFilter.schema.d"), exports); __exportStar(require("./OfficeContactNullableScalarRelationFilter.schema"), exports); +__exportStar(require("./OfficeContactOrderByWithAggregationInput.schema.d"), exports); __exportStar(require("./OfficeContactOrderByWithAggregationInput.schema"), exports); +__exportStar(require("./OfficeContactOrderByWithRelationInput.schema.d"), exports); __exportStar(require("./OfficeContactOrderByWithRelationInput.schema"), exports); +__exportStar(require("./OfficeContactScalarWhereWithAggregatesInput.schema.d"), exports); __exportStar(require("./OfficeContactScalarWhereWithAggregatesInput.schema"), exports); +__exportStar(require("./OfficeContactSelect.schema.d"), exports); __exportStar(require("./OfficeContactSelect.schema"), exports); +__exportStar(require("./OfficeContactSumAggregateInput.schema.d"), exports); __exportStar(require("./OfficeContactSumAggregateInput.schema"), exports); +__exportStar(require("./OfficeContactSumOrderByAggregateInput.schema.d"), exports); __exportStar(require("./OfficeContactSumOrderByAggregateInput.schema"), exports); +__exportStar(require("./OfficeContactUncheckedCreateInput.schema.d"), exports); __exportStar(require("./OfficeContactUncheckedCreateInput.schema"), exports); +__exportStar(require("./OfficeContactUncheckedCreateNestedOneWithoutUserInput.schema.d"), exports); __exportStar(require("./OfficeContactUncheckedCreateNestedOneWithoutUserInput.schema"), exports); +__exportStar(require("./OfficeContactUncheckedCreateWithoutUserInput.schema.d"), exports); __exportStar(require("./OfficeContactUncheckedCreateWithoutUserInput.schema"), exports); +__exportStar(require("./OfficeContactUncheckedUpdateInput.schema.d"), exports); __exportStar(require("./OfficeContactUncheckedUpdateInput.schema"), exports); +__exportStar(require("./OfficeContactUncheckedUpdateManyInput.schema.d"), exports); __exportStar(require("./OfficeContactUncheckedUpdateManyInput.schema"), exports); +__exportStar(require("./OfficeContactUncheckedUpdateOneWithoutUserNestedInput.schema.d"), exports); __exportStar(require("./OfficeContactUncheckedUpdateOneWithoutUserNestedInput.schema"), exports); +__exportStar(require("./OfficeContactUncheckedUpdateWithoutUserInput.schema.d"), exports); __exportStar(require("./OfficeContactUncheckedUpdateWithoutUserInput.schema"), exports); +__exportStar(require("./OfficeContactUpdateInput.schema.d"), exports); __exportStar(require("./OfficeContactUpdateInput.schema"), exports); +__exportStar(require("./OfficeContactUpdateManyMutationInput.schema.d"), exports); __exportStar(require("./OfficeContactUpdateManyMutationInput.schema"), exports); +__exportStar(require("./OfficeContactUpdateOneWithoutUserNestedInput.schema.d"), exports); __exportStar(require("./OfficeContactUpdateOneWithoutUserNestedInput.schema"), exports); +__exportStar(require("./OfficeContactUpdateToOneWithWhereWithoutUserInput.schema.d"), exports); __exportStar(require("./OfficeContactUpdateToOneWithWhereWithoutUserInput.schema"), exports); +__exportStar(require("./OfficeContactUpdateWithoutUserInput.schema.d"), exports); __exportStar(require("./OfficeContactUpdateWithoutUserInput.schema"), exports); +__exportStar(require("./OfficeContactUpsertWithoutUserInput.schema.d"), exports); __exportStar(require("./OfficeContactUpsertWithoutUserInput.schema"), exports); +__exportStar(require("./OfficeContactWhereInput.schema.d"), exports); __exportStar(require("./OfficeContactWhereInput.schema"), exports); +__exportStar(require("./OfficeContactWhereUniqueInput.schema.d"), exports); __exportStar(require("./OfficeContactWhereUniqueInput.schema"), exports); +__exportStar(require("./OfficeHoursArgs.schema.d"), exports); __exportStar(require("./OfficeHoursArgs.schema"), exports); +__exportStar(require("./OfficeHoursAvgAggregateInput.schema.d"), exports); __exportStar(require("./OfficeHoursAvgAggregateInput.schema"), exports); +__exportStar(require("./OfficeHoursAvgOrderByAggregateInput.schema.d"), exports); __exportStar(require("./OfficeHoursAvgOrderByAggregateInput.schema"), exports); +__exportStar(require("./OfficeHoursCountAggregateInput.schema.d"), exports); __exportStar(require("./OfficeHoursCountAggregateInput.schema"), exports); +__exportStar(require("./OfficeHoursCountOrderByAggregateInput.schema.d"), exports); __exportStar(require("./OfficeHoursCountOrderByAggregateInput.schema"), exports); +__exportStar(require("./OfficeHoursCreateInput.schema.d"), exports); __exportStar(require("./OfficeHoursCreateInput.schema"), exports); +__exportStar(require("./OfficeHoursCreateManyInput.schema.d"), exports); __exportStar(require("./OfficeHoursCreateManyInput.schema"), exports); +__exportStar(require("./OfficeHoursCreateNestedOneWithoutUserInput.schema.d"), exports); __exportStar(require("./OfficeHoursCreateNestedOneWithoutUserInput.schema"), exports); +__exportStar(require("./OfficeHoursCreateOrConnectWithoutUserInput.schema.d"), exports); __exportStar(require("./OfficeHoursCreateOrConnectWithoutUserInput.schema"), exports); +__exportStar(require("./OfficeHoursCreateWithoutUserInput.schema.d"), exports); __exportStar(require("./OfficeHoursCreateWithoutUserInput.schema"), exports); +__exportStar(require("./OfficeHoursInclude.schema.d"), exports); __exportStar(require("./OfficeHoursInclude.schema"), exports); +__exportStar(require("./OfficeHoursMaxAggregateInput.schema.d"), exports); __exportStar(require("./OfficeHoursMaxAggregateInput.schema"), exports); +__exportStar(require("./OfficeHoursMaxOrderByAggregateInput.schema.d"), exports); __exportStar(require("./OfficeHoursMaxOrderByAggregateInput.schema"), exports); +__exportStar(require("./OfficeHoursMinAggregateInput.schema.d"), exports); __exportStar(require("./OfficeHoursMinAggregateInput.schema"), exports); +__exportStar(require("./OfficeHoursMinOrderByAggregateInput.schema.d"), exports); __exportStar(require("./OfficeHoursMinOrderByAggregateInput.schema"), exports); +__exportStar(require("./OfficeHoursNullableScalarRelationFilter.schema.d"), exports); __exportStar(require("./OfficeHoursNullableScalarRelationFilter.schema"), exports); +__exportStar(require("./OfficeHoursOrderByWithAggregationInput.schema.d"), exports); __exportStar(require("./OfficeHoursOrderByWithAggregationInput.schema"), exports); +__exportStar(require("./OfficeHoursOrderByWithRelationInput.schema.d"), exports); __exportStar(require("./OfficeHoursOrderByWithRelationInput.schema"), exports); +__exportStar(require("./OfficeHoursScalarWhereWithAggregatesInput.schema.d"), exports); __exportStar(require("./OfficeHoursScalarWhereWithAggregatesInput.schema"), exports); +__exportStar(require("./OfficeHoursSelect.schema.d"), exports); __exportStar(require("./OfficeHoursSelect.schema"), exports); +__exportStar(require("./OfficeHoursSumAggregateInput.schema.d"), exports); __exportStar(require("./OfficeHoursSumAggregateInput.schema"), exports); +__exportStar(require("./OfficeHoursSumOrderByAggregateInput.schema.d"), exports); __exportStar(require("./OfficeHoursSumOrderByAggregateInput.schema"), exports); +__exportStar(require("./OfficeHoursUncheckedCreateInput.schema.d"), exports); __exportStar(require("./OfficeHoursUncheckedCreateInput.schema"), exports); +__exportStar(require("./OfficeHoursUncheckedCreateNestedOneWithoutUserInput.schema.d"), exports); __exportStar(require("./OfficeHoursUncheckedCreateNestedOneWithoutUserInput.schema"), exports); +__exportStar(require("./OfficeHoursUncheckedCreateWithoutUserInput.schema.d"), exports); __exportStar(require("./OfficeHoursUncheckedCreateWithoutUserInput.schema"), exports); +__exportStar(require("./OfficeHoursUncheckedUpdateInput.schema.d"), exports); __exportStar(require("./OfficeHoursUncheckedUpdateInput.schema"), exports); +__exportStar(require("./OfficeHoursUncheckedUpdateManyInput.schema.d"), exports); __exportStar(require("./OfficeHoursUncheckedUpdateManyInput.schema"), exports); +__exportStar(require("./OfficeHoursUncheckedUpdateOneWithoutUserNestedInput.schema.d"), exports); __exportStar(require("./OfficeHoursUncheckedUpdateOneWithoutUserNestedInput.schema"), exports); +__exportStar(require("./OfficeHoursUncheckedUpdateWithoutUserInput.schema.d"), exports); __exportStar(require("./OfficeHoursUncheckedUpdateWithoutUserInput.schema"), exports); +__exportStar(require("./OfficeHoursUpdateInput.schema.d"), exports); __exportStar(require("./OfficeHoursUpdateInput.schema"), exports); +__exportStar(require("./OfficeHoursUpdateManyMutationInput.schema.d"), exports); __exportStar(require("./OfficeHoursUpdateManyMutationInput.schema"), exports); +__exportStar(require("./OfficeHoursUpdateOneWithoutUserNestedInput.schema.d"), exports); __exportStar(require("./OfficeHoursUpdateOneWithoutUserNestedInput.schema"), exports); +__exportStar(require("./OfficeHoursUpdateToOneWithWhereWithoutUserInput.schema.d"), exports); __exportStar(require("./OfficeHoursUpdateToOneWithWhereWithoutUserInput.schema"), exports); +__exportStar(require("./OfficeHoursUpdateWithoutUserInput.schema.d"), exports); __exportStar(require("./OfficeHoursUpdateWithoutUserInput.schema"), exports); +__exportStar(require("./OfficeHoursUpsertWithoutUserInput.schema.d"), exports); __exportStar(require("./OfficeHoursUpsertWithoutUserInput.schema"), exports); +__exportStar(require("./OfficeHoursWhereInput.schema.d"), exports); __exportStar(require("./OfficeHoursWhereInput.schema"), exports); +__exportStar(require("./OfficeHoursWhereUniqueInput.schema.d"), exports); __exportStar(require("./OfficeHoursWhereUniqueInput.schema"), exports); __exportStar(require("./PatientArgs.schema.d"), exports); __exportStar(require("./PatientArgs.schema"), exports); @@ -2350,60 +2781,115 @@ __exportStar(require("./PatientAvgAggregateInput.schema.d"), exports); __exportStar(require("./PatientAvgAggregateInput.schema"), exports); __exportStar(require("./PatientAvgOrderByAggregateInput.schema.d"), exports); __exportStar(require("./PatientAvgOrderByAggregateInput.schema"), exports); +__exportStar(require("./PatientConversationArgs.schema.d"), exports); __exportStar(require("./PatientConversationArgs.schema"), exports); +__exportStar(require("./PatientConversationAvgAggregateInput.schema.d"), exports); __exportStar(require("./PatientConversationAvgAggregateInput.schema"), exports); +__exportStar(require("./PatientConversationAvgOrderByAggregateInput.schema.d"), exports); __exportStar(require("./PatientConversationAvgOrderByAggregateInput.schema"), exports); +__exportStar(require("./PatientConversationCountAggregateInput.schema.d"), exports); __exportStar(require("./PatientConversationCountAggregateInput.schema"), exports); +__exportStar(require("./PatientConversationCountOrderByAggregateInput.schema.d"), exports); __exportStar(require("./PatientConversationCountOrderByAggregateInput.schema"), exports); +__exportStar(require("./PatientConversationCreateInput.schema.d"), exports); __exportStar(require("./PatientConversationCreateInput.schema"), exports); +__exportStar(require("./PatientConversationCreateManyInput.schema.d"), exports); __exportStar(require("./PatientConversationCreateManyInput.schema"), exports); +__exportStar(require("./PatientConversationCreateManyUserInput.schema.d"), exports); __exportStar(require("./PatientConversationCreateManyUserInput.schema"), exports); +__exportStar(require("./PatientConversationCreateManyUserInputEnvelope.schema.d"), exports); __exportStar(require("./PatientConversationCreateManyUserInputEnvelope.schema"), exports); +__exportStar(require("./PatientConversationCreateNestedManyWithoutUserInput.schema.d"), exports); __exportStar(require("./PatientConversationCreateNestedManyWithoutUserInput.schema"), exports); +__exportStar(require("./PatientConversationCreateNestedOneWithoutPatientInput.schema.d"), exports); __exportStar(require("./PatientConversationCreateNestedOneWithoutPatientInput.schema"), exports); +__exportStar(require("./PatientConversationCreateOrConnectWithoutPatientInput.schema.d"), exports); __exportStar(require("./PatientConversationCreateOrConnectWithoutPatientInput.schema"), exports); +__exportStar(require("./PatientConversationCreateOrConnectWithoutUserInput.schema.d"), exports); __exportStar(require("./PatientConversationCreateOrConnectWithoutUserInput.schema"), exports); +__exportStar(require("./PatientConversationCreateWithoutPatientInput.schema.d"), exports); __exportStar(require("./PatientConversationCreateWithoutPatientInput.schema"), exports); +__exportStar(require("./PatientConversationCreateWithoutUserInput.schema.d"), exports); __exportStar(require("./PatientConversationCreateWithoutUserInput.schema"), exports); +__exportStar(require("./PatientConversationInclude.schema.d"), exports); __exportStar(require("./PatientConversationInclude.schema"), exports); +__exportStar(require("./PatientConversationListRelationFilter.schema.d"), exports); __exportStar(require("./PatientConversationListRelationFilter.schema"), exports); +__exportStar(require("./PatientConversationMaxAggregateInput.schema.d"), exports); __exportStar(require("./PatientConversationMaxAggregateInput.schema"), exports); +__exportStar(require("./PatientConversationMaxOrderByAggregateInput.schema.d"), exports); __exportStar(require("./PatientConversationMaxOrderByAggregateInput.schema"), exports); +__exportStar(require("./PatientConversationMinAggregateInput.schema.d"), exports); __exportStar(require("./PatientConversationMinAggregateInput.schema"), exports); +__exportStar(require("./PatientConversationMinOrderByAggregateInput.schema.d"), exports); __exportStar(require("./PatientConversationMinOrderByAggregateInput.schema"), exports); +__exportStar(require("./PatientConversationNullableScalarRelationFilter.schema.d"), exports); __exportStar(require("./PatientConversationNullableScalarRelationFilter.schema"), exports); +__exportStar(require("./PatientConversationOrderByRelationAggregateInput.schema.d"), exports); __exportStar(require("./PatientConversationOrderByRelationAggregateInput.schema"), exports); +__exportStar(require("./PatientConversationOrderByWithAggregationInput.schema.d"), exports); __exportStar(require("./PatientConversationOrderByWithAggregationInput.schema"), exports); +__exportStar(require("./PatientConversationOrderByWithRelationInput.schema.d"), exports); __exportStar(require("./PatientConversationOrderByWithRelationInput.schema"), exports); +__exportStar(require("./PatientConversationScalarWhereInput.schema.d"), exports); __exportStar(require("./PatientConversationScalarWhereInput.schema"), exports); +__exportStar(require("./PatientConversationScalarWhereWithAggregatesInput.schema.d"), exports); __exportStar(require("./PatientConversationScalarWhereWithAggregatesInput.schema"), exports); +__exportStar(require("./PatientConversationSelect.schema.d"), exports); __exportStar(require("./PatientConversationSelect.schema"), exports); +__exportStar(require("./PatientConversationSumAggregateInput.schema.d"), exports); __exportStar(require("./PatientConversationSumAggregateInput.schema"), exports); +__exportStar(require("./PatientConversationSumOrderByAggregateInput.schema.d"), exports); __exportStar(require("./PatientConversationSumOrderByAggregateInput.schema"), exports); +__exportStar(require("./PatientConversationUncheckedCreateInput.schema.d"), exports); __exportStar(require("./PatientConversationUncheckedCreateInput.schema"), exports); +__exportStar(require("./PatientConversationUncheckedCreateNestedManyWithoutUserInput.schema.d"), exports); __exportStar(require("./PatientConversationUncheckedCreateNestedManyWithoutUserInput.schema"), exports); +__exportStar(require("./PatientConversationUncheckedCreateNestedOneWithoutPatientInput.schema.d"), exports); __exportStar(require("./PatientConversationUncheckedCreateNestedOneWithoutPatientInput.schema"), exports); +__exportStar(require("./PatientConversationUncheckedCreateWithoutPatientInput.schema.d"), exports); __exportStar(require("./PatientConversationUncheckedCreateWithoutPatientInput.schema"), exports); +__exportStar(require("./PatientConversationUncheckedCreateWithoutUserInput.schema.d"), exports); __exportStar(require("./PatientConversationUncheckedCreateWithoutUserInput.schema"), exports); +__exportStar(require("./PatientConversationUncheckedUpdateInput.schema.d"), exports); __exportStar(require("./PatientConversationUncheckedUpdateInput.schema"), exports); +__exportStar(require("./PatientConversationUncheckedUpdateManyInput.schema.d"), exports); __exportStar(require("./PatientConversationUncheckedUpdateManyInput.schema"), exports); +__exportStar(require("./PatientConversationUncheckedUpdateManyWithoutUserInput.schema.d"), exports); __exportStar(require("./PatientConversationUncheckedUpdateManyWithoutUserInput.schema"), exports); +__exportStar(require("./PatientConversationUncheckedUpdateManyWithoutUserNestedInput.schema.d"), exports); __exportStar(require("./PatientConversationUncheckedUpdateManyWithoutUserNestedInput.schema"), exports); +__exportStar(require("./PatientConversationUncheckedUpdateOneWithoutPatientNestedInput.schema.d"), exports); __exportStar(require("./PatientConversationUncheckedUpdateOneWithoutPatientNestedInput.schema"), exports); +__exportStar(require("./PatientConversationUncheckedUpdateWithoutPatientInput.schema.d"), exports); __exportStar(require("./PatientConversationUncheckedUpdateWithoutPatientInput.schema"), exports); +__exportStar(require("./PatientConversationUncheckedUpdateWithoutUserInput.schema.d"), exports); __exportStar(require("./PatientConversationUncheckedUpdateWithoutUserInput.schema"), exports); +__exportStar(require("./PatientConversationUpdateInput.schema.d"), exports); __exportStar(require("./PatientConversationUpdateInput.schema"), exports); +__exportStar(require("./PatientConversationUpdateManyMutationInput.schema.d"), exports); __exportStar(require("./PatientConversationUpdateManyMutationInput.schema"), exports); +__exportStar(require("./PatientConversationUpdateManyWithWhereWithoutUserInput.schema.d"), exports); __exportStar(require("./PatientConversationUpdateManyWithWhereWithoutUserInput.schema"), exports); +__exportStar(require("./PatientConversationUpdateManyWithoutUserNestedInput.schema.d"), exports); __exportStar(require("./PatientConversationUpdateManyWithoutUserNestedInput.schema"), exports); +__exportStar(require("./PatientConversationUpdateOneWithoutPatientNestedInput.schema.d"), exports); __exportStar(require("./PatientConversationUpdateOneWithoutPatientNestedInput.schema"), exports); +__exportStar(require("./PatientConversationUpdateToOneWithWhereWithoutPatientInput.schema.d"), exports); __exportStar(require("./PatientConversationUpdateToOneWithWhereWithoutPatientInput.schema"), exports); +__exportStar(require("./PatientConversationUpdateWithWhereUniqueWithoutUserInput.schema.d"), exports); __exportStar(require("./PatientConversationUpdateWithWhereUniqueWithoutUserInput.schema"), exports); +__exportStar(require("./PatientConversationUpdateWithoutPatientInput.schema.d"), exports); __exportStar(require("./PatientConversationUpdateWithoutPatientInput.schema"), exports); +__exportStar(require("./PatientConversationUpdateWithoutUserInput.schema.d"), exports); __exportStar(require("./PatientConversationUpdateWithoutUserInput.schema"), exports); +__exportStar(require("./PatientConversationUpsertWithWhereUniqueWithoutUserInput.schema.d"), exports); __exportStar(require("./PatientConversationUpsertWithWhereUniqueWithoutUserInput.schema"), exports); +__exportStar(require("./PatientConversationUpsertWithoutPatientInput.schema.d"), exports); __exportStar(require("./PatientConversationUpsertWithoutPatientInput.schema"), exports); +__exportStar(require("./PatientConversationWhereInput.schema.d"), exports); __exportStar(require("./PatientConversationWhereInput.schema"), exports); +__exportStar(require("./PatientConversationWhereUniqueInput.schema.d"), exports); __exportStar(require("./PatientConversationWhereUniqueInput.schema"), exports); __exportStar(require("./PatientCountAggregateInput.schema.d"), exports); __exportStar(require("./PatientCountAggregateInput.schema"), exports); @@ -2415,6 +2901,7 @@ __exportStar(require("./PatientCountOutputTypeCountAppointmentsArgs.schema.d"), __exportStar(require("./PatientCountOutputTypeCountAppointmentsArgs.schema"), exports); __exportStar(require("./PatientCountOutputTypeCountClaimsArgs.schema.d"), exports); __exportStar(require("./PatientCountOutputTypeCountClaimsArgs.schema"), exports); +__exportStar(require("./PatientCountOutputTypeCountCloudFoldersArgs.schema.d"), exports); __exportStar(require("./PatientCountOutputTypeCountCloudFoldersArgs.schema"), exports); __exportStar(require("./PatientCountOutputTypeCountCommunicationsArgs.schema.d"), exports); __exportStar(require("./PatientCountOutputTypeCountCommunicationsArgs.schema"), exports); @@ -2442,9 +2929,11 @@ __exportStar(require("./PatientCreateNestedOneWithoutAppointmentsInput.schema.d" __exportStar(require("./PatientCreateNestedOneWithoutAppointmentsInput.schema"), exports); __exportStar(require("./PatientCreateNestedOneWithoutClaimsInput.schema.d"), exports); __exportStar(require("./PatientCreateNestedOneWithoutClaimsInput.schema"), exports); +__exportStar(require("./PatientCreateNestedOneWithoutCloudFoldersInput.schema.d"), exports); __exportStar(require("./PatientCreateNestedOneWithoutCloudFoldersInput.schema"), exports); __exportStar(require("./PatientCreateNestedOneWithoutCommunicationsInput.schema.d"), exports); __exportStar(require("./PatientCreateNestedOneWithoutCommunicationsInput.schema"), exports); +__exportStar(require("./PatientCreateNestedOneWithoutConversationInput.schema.d"), exports); __exportStar(require("./PatientCreateNestedOneWithoutConversationInput.schema"), exports); __exportStar(require("./PatientCreateNestedOneWithoutDocumentsInput.schema.d"), exports); __exportStar(require("./PatientCreateNestedOneWithoutDocumentsInput.schema"), exports); @@ -2458,9 +2947,11 @@ __exportStar(require("./PatientCreateOrConnectWithoutAppointmentsInput.schema.d" __exportStar(require("./PatientCreateOrConnectWithoutAppointmentsInput.schema"), exports); __exportStar(require("./PatientCreateOrConnectWithoutClaimsInput.schema.d"), exports); __exportStar(require("./PatientCreateOrConnectWithoutClaimsInput.schema"), exports); +__exportStar(require("./PatientCreateOrConnectWithoutCloudFoldersInput.schema.d"), exports); __exportStar(require("./PatientCreateOrConnectWithoutCloudFoldersInput.schema"), exports); __exportStar(require("./PatientCreateOrConnectWithoutCommunicationsInput.schema.d"), exports); __exportStar(require("./PatientCreateOrConnectWithoutCommunicationsInput.schema"), exports); +__exportStar(require("./PatientCreateOrConnectWithoutConversationInput.schema.d"), exports); __exportStar(require("./PatientCreateOrConnectWithoutConversationInput.schema"), exports); __exportStar(require("./PatientCreateOrConnectWithoutDocumentsInput.schema.d"), exports); __exportStar(require("./PatientCreateOrConnectWithoutDocumentsInput.schema"), exports); @@ -2476,9 +2967,11 @@ __exportStar(require("./PatientCreateWithoutAppointmentsInput.schema.d"), export __exportStar(require("./PatientCreateWithoutAppointmentsInput.schema"), exports); __exportStar(require("./PatientCreateWithoutClaimsInput.schema.d"), exports); __exportStar(require("./PatientCreateWithoutClaimsInput.schema"), exports); +__exportStar(require("./PatientCreateWithoutCloudFoldersInput.schema.d"), exports); __exportStar(require("./PatientCreateWithoutCloudFoldersInput.schema"), exports); __exportStar(require("./PatientCreateWithoutCommunicationsInput.schema.d"), exports); __exportStar(require("./PatientCreateWithoutCommunicationsInput.schema"), exports); +__exportStar(require("./PatientCreateWithoutConversationInput.schema.d"), exports); __exportStar(require("./PatientCreateWithoutConversationInput.schema"), exports); __exportStar(require("./PatientCreateWithoutDocumentsInput.schema.d"), exports); __exportStar(require("./PatientCreateWithoutDocumentsInput.schema"), exports); @@ -2588,6 +3081,7 @@ __exportStar(require("./PatientMinAggregateInput.schema.d"), exports); __exportStar(require("./PatientMinAggregateInput.schema"), exports); __exportStar(require("./PatientMinOrderByAggregateInput.schema.d"), exports); __exportStar(require("./PatientMinOrderByAggregateInput.schema"), exports); +__exportStar(require("./PatientNullableScalarRelationFilter.schema.d"), exports); __exportStar(require("./PatientNullableScalarRelationFilter.schema"), exports); __exportStar(require("./PatientOrderByRelationAggregateInput.schema.d"), exports); __exportStar(require("./PatientOrderByRelationAggregateInput.schema"), exports); @@ -2615,9 +3109,11 @@ __exportStar(require("./PatientUncheckedCreateWithoutAppointmentsInput.schema.d" __exportStar(require("./PatientUncheckedCreateWithoutAppointmentsInput.schema"), exports); __exportStar(require("./PatientUncheckedCreateWithoutClaimsInput.schema.d"), exports); __exportStar(require("./PatientUncheckedCreateWithoutClaimsInput.schema"), exports); +__exportStar(require("./PatientUncheckedCreateWithoutCloudFoldersInput.schema.d"), exports); __exportStar(require("./PatientUncheckedCreateWithoutCloudFoldersInput.schema"), exports); __exportStar(require("./PatientUncheckedCreateWithoutCommunicationsInput.schema.d"), exports); __exportStar(require("./PatientUncheckedCreateWithoutCommunicationsInput.schema"), exports); +__exportStar(require("./PatientUncheckedCreateWithoutConversationInput.schema.d"), exports); __exportStar(require("./PatientUncheckedCreateWithoutConversationInput.schema"), exports); __exportStar(require("./PatientUncheckedCreateWithoutDocumentsInput.schema.d"), exports); __exportStar(require("./PatientUncheckedCreateWithoutDocumentsInput.schema"), exports); @@ -2641,9 +3137,11 @@ __exportStar(require("./PatientUncheckedUpdateWithoutAppointmentsInput.schema.d" __exportStar(require("./PatientUncheckedUpdateWithoutAppointmentsInput.schema"), exports); __exportStar(require("./PatientUncheckedUpdateWithoutClaimsInput.schema.d"), exports); __exportStar(require("./PatientUncheckedUpdateWithoutClaimsInput.schema"), exports); +__exportStar(require("./PatientUncheckedUpdateWithoutCloudFoldersInput.schema.d"), exports); __exportStar(require("./PatientUncheckedUpdateWithoutCloudFoldersInput.schema"), exports); __exportStar(require("./PatientUncheckedUpdateWithoutCommunicationsInput.schema.d"), exports); __exportStar(require("./PatientUncheckedUpdateWithoutCommunicationsInput.schema"), exports); +__exportStar(require("./PatientUncheckedUpdateWithoutConversationInput.schema.d"), exports); __exportStar(require("./PatientUncheckedUpdateWithoutConversationInput.schema"), exports); __exportStar(require("./PatientUncheckedUpdateWithoutDocumentsInput.schema.d"), exports); __exportStar(require("./PatientUncheckedUpdateWithoutDocumentsInput.schema"), exports); @@ -2669,6 +3167,7 @@ __exportStar(require("./PatientUpdateOneRequiredWithoutClaimsNestedInput.schema. __exportStar(require("./PatientUpdateOneRequiredWithoutClaimsNestedInput.schema"), exports); __exportStar(require("./PatientUpdateOneRequiredWithoutCommunicationsNestedInput.schema.d"), exports); __exportStar(require("./PatientUpdateOneRequiredWithoutCommunicationsNestedInput.schema"), exports); +__exportStar(require("./PatientUpdateOneRequiredWithoutConversationNestedInput.schema.d"), exports); __exportStar(require("./PatientUpdateOneRequiredWithoutConversationNestedInput.schema"), exports); __exportStar(require("./PatientUpdateOneRequiredWithoutDocumentsNestedInput.schema.d"), exports); __exportStar(require("./PatientUpdateOneRequiredWithoutDocumentsNestedInput.schema"), exports); @@ -2678,14 +3177,17 @@ __exportStar(require("./PatientUpdateOneRequiredWithoutPaymentNestedInput.schema __exportStar(require("./PatientUpdateOneRequiredWithoutPaymentNestedInput.schema"), exports); __exportStar(require("./PatientUpdateOneRequiredWithoutProceduresNestedInput.schema.d"), exports); __exportStar(require("./PatientUpdateOneRequiredWithoutProceduresNestedInput.schema"), exports); +__exportStar(require("./PatientUpdateOneWithoutCloudFoldersNestedInput.schema.d"), exports); __exportStar(require("./PatientUpdateOneWithoutCloudFoldersNestedInput.schema"), exports); __exportStar(require("./PatientUpdateToOneWithWhereWithoutAppointmentsInput.schema.d"), exports); __exportStar(require("./PatientUpdateToOneWithWhereWithoutAppointmentsInput.schema"), exports); __exportStar(require("./PatientUpdateToOneWithWhereWithoutClaimsInput.schema.d"), exports); __exportStar(require("./PatientUpdateToOneWithWhereWithoutClaimsInput.schema"), exports); +__exportStar(require("./PatientUpdateToOneWithWhereWithoutCloudFoldersInput.schema.d"), exports); __exportStar(require("./PatientUpdateToOneWithWhereWithoutCloudFoldersInput.schema"), exports); __exportStar(require("./PatientUpdateToOneWithWhereWithoutCommunicationsInput.schema.d"), exports); __exportStar(require("./PatientUpdateToOneWithWhereWithoutCommunicationsInput.schema"), exports); +__exportStar(require("./PatientUpdateToOneWithWhereWithoutConversationInput.schema.d"), exports); __exportStar(require("./PatientUpdateToOneWithWhereWithoutConversationInput.schema"), exports); __exportStar(require("./PatientUpdateToOneWithWhereWithoutDocumentsInput.schema.d"), exports); __exportStar(require("./PatientUpdateToOneWithWhereWithoutDocumentsInput.schema"), exports); @@ -2701,9 +3203,11 @@ __exportStar(require("./PatientUpdateWithoutAppointmentsInput.schema.d"), export __exportStar(require("./PatientUpdateWithoutAppointmentsInput.schema"), exports); __exportStar(require("./PatientUpdateWithoutClaimsInput.schema.d"), exports); __exportStar(require("./PatientUpdateWithoutClaimsInput.schema"), exports); +__exportStar(require("./PatientUpdateWithoutCloudFoldersInput.schema.d"), exports); __exportStar(require("./PatientUpdateWithoutCloudFoldersInput.schema"), exports); __exportStar(require("./PatientUpdateWithoutCommunicationsInput.schema.d"), exports); __exportStar(require("./PatientUpdateWithoutCommunicationsInput.schema"), exports); +__exportStar(require("./PatientUpdateWithoutConversationInput.schema.d"), exports); __exportStar(require("./PatientUpdateWithoutConversationInput.schema"), exports); __exportStar(require("./PatientUpdateWithoutDocumentsInput.schema.d"), exports); __exportStar(require("./PatientUpdateWithoutDocumentsInput.schema"), exports); @@ -2721,9 +3225,11 @@ __exportStar(require("./PatientUpsertWithoutAppointmentsInput.schema.d"), export __exportStar(require("./PatientUpsertWithoutAppointmentsInput.schema"), exports); __exportStar(require("./PatientUpsertWithoutClaimsInput.schema.d"), exports); __exportStar(require("./PatientUpsertWithoutClaimsInput.schema"), exports); +__exportStar(require("./PatientUpsertWithoutCloudFoldersInput.schema.d"), exports); __exportStar(require("./PatientUpsertWithoutCloudFoldersInput.schema"), exports); __exportStar(require("./PatientUpsertWithoutCommunicationsInput.schema.d"), exports); __exportStar(require("./PatientUpsertWithoutCommunicationsInput.schema"), exports); +__exportStar(require("./PatientUpsertWithoutConversationInput.schema.d"), exports); __exportStar(require("./PatientUpsertWithoutConversationInput.schema"), exports); __exportStar(require("./PatientUpsertWithoutDocumentsInput.schema.d"), exports); __exportStar(require("./PatientUpsertWithoutDocumentsInput.schema"), exports); @@ -2749,6 +3255,7 @@ __exportStar(require("./PaymentCountOrderByAggregateInput.schema.d"), exports); __exportStar(require("./PaymentCountOrderByAggregateInput.schema"), exports); __exportStar(require("./PaymentCountOutputTypeArgs.schema.d"), exports); __exportStar(require("./PaymentCountOutputTypeArgs.schema"), exports); +__exportStar(require("./PaymentCountOutputTypeCountCommissionBatchItemsArgs.schema.d"), exports); __exportStar(require("./PaymentCountOutputTypeCountCommissionBatchItemsArgs.schema"), exports); __exportStar(require("./PaymentCountOutputTypeCountServiceLineTransactionsArgs.schema.d"), exports); __exportStar(require("./PaymentCountOutputTypeCountServiceLineTransactionsArgs.schema"), exports); @@ -2760,7 +3267,9 @@ __exportStar(require("./PaymentCreateInput.schema.d"), exports); __exportStar(require("./PaymentCreateInput.schema"), exports); __exportStar(require("./PaymentCreateManyInput.schema.d"), exports); __exportStar(require("./PaymentCreateManyInput.schema"), exports); +__exportStar(require("./PaymentCreateManyNpiProviderInput.schema.d"), exports); __exportStar(require("./PaymentCreateManyNpiProviderInput.schema"), exports); +__exportStar(require("./PaymentCreateManyNpiProviderInputEnvelope.schema.d"), exports); __exportStar(require("./PaymentCreateManyNpiProviderInputEnvelope.schema"), exports); __exportStar(require("./PaymentCreateManyPatientInput.schema.d"), exports); __exportStar(require("./PaymentCreateManyPatientInput.schema"), exports); @@ -2770,6 +3279,7 @@ __exportStar(require("./PaymentCreateManyUpdatedByInput.schema.d"), exports); __exportStar(require("./PaymentCreateManyUpdatedByInput.schema"), exports); __exportStar(require("./PaymentCreateManyUpdatedByInputEnvelope.schema.d"), exports); __exportStar(require("./PaymentCreateManyUpdatedByInputEnvelope.schema"), exports); +__exportStar(require("./PaymentCreateNestedManyWithoutNpiProviderInput.schema.d"), exports); __exportStar(require("./PaymentCreateNestedManyWithoutNpiProviderInput.schema"), exports); __exportStar(require("./PaymentCreateNestedManyWithoutPatientInput.schema.d"), exports); __exportStar(require("./PaymentCreateNestedManyWithoutPatientInput.schema"), exports); @@ -2777,6 +3287,7 @@ __exportStar(require("./PaymentCreateNestedManyWithoutUpdatedByInput.schema.d"), __exportStar(require("./PaymentCreateNestedManyWithoutUpdatedByInput.schema"), exports); __exportStar(require("./PaymentCreateNestedOneWithoutClaimInput.schema.d"), exports); __exportStar(require("./PaymentCreateNestedOneWithoutClaimInput.schema"), exports); +__exportStar(require("./PaymentCreateNestedOneWithoutCommissionBatchItemsInput.schema.d"), exports); __exportStar(require("./PaymentCreateNestedOneWithoutCommissionBatchItemsInput.schema"), exports); __exportStar(require("./PaymentCreateNestedOneWithoutServiceLineTransactionsInput.schema.d"), exports); __exportStar(require("./PaymentCreateNestedOneWithoutServiceLineTransactionsInput.schema"), exports); @@ -2784,7 +3295,9 @@ __exportStar(require("./PaymentCreateNestedOneWithoutServiceLinesInput.schema.d" __exportStar(require("./PaymentCreateNestedOneWithoutServiceLinesInput.schema"), exports); __exportStar(require("./PaymentCreateOrConnectWithoutClaimInput.schema.d"), exports); __exportStar(require("./PaymentCreateOrConnectWithoutClaimInput.schema"), exports); +__exportStar(require("./PaymentCreateOrConnectWithoutCommissionBatchItemsInput.schema.d"), exports); __exportStar(require("./PaymentCreateOrConnectWithoutCommissionBatchItemsInput.schema"), exports); +__exportStar(require("./PaymentCreateOrConnectWithoutNpiProviderInput.schema.d"), exports); __exportStar(require("./PaymentCreateOrConnectWithoutNpiProviderInput.schema"), exports); __exportStar(require("./PaymentCreateOrConnectWithoutPatientInput.schema.d"), exports); __exportStar(require("./PaymentCreateOrConnectWithoutPatientInput.schema"), exports); @@ -2796,7 +3309,9 @@ __exportStar(require("./PaymentCreateOrConnectWithoutUpdatedByInput.schema.d"), __exportStar(require("./PaymentCreateOrConnectWithoutUpdatedByInput.schema"), exports); __exportStar(require("./PaymentCreateWithoutClaimInput.schema.d"), exports); __exportStar(require("./PaymentCreateWithoutClaimInput.schema"), exports); +__exportStar(require("./PaymentCreateWithoutCommissionBatchItemsInput.schema.d"), exports); __exportStar(require("./PaymentCreateWithoutCommissionBatchItemsInput.schema"), exports); +__exportStar(require("./PaymentCreateWithoutNpiProviderInput.schema.d"), exports); __exportStar(require("./PaymentCreateWithoutNpiProviderInput.schema"), exports); __exportStar(require("./PaymentCreateWithoutPatientInput.schema.d"), exports); __exportStar(require("./PaymentCreateWithoutPatientInput.schema"), exports); @@ -2840,6 +3355,7 @@ __exportStar(require("./PaymentSumOrderByAggregateInput.schema.d"), exports); __exportStar(require("./PaymentSumOrderByAggregateInput.schema"), exports); __exportStar(require("./PaymentUncheckedCreateInput.schema.d"), exports); __exportStar(require("./PaymentUncheckedCreateInput.schema"), exports); +__exportStar(require("./PaymentUncheckedCreateNestedManyWithoutNpiProviderInput.schema.d"), exports); __exportStar(require("./PaymentUncheckedCreateNestedManyWithoutNpiProviderInput.schema"), exports); __exportStar(require("./PaymentUncheckedCreateNestedManyWithoutPatientInput.schema.d"), exports); __exportStar(require("./PaymentUncheckedCreateNestedManyWithoutPatientInput.schema"), exports); @@ -2849,7 +3365,9 @@ __exportStar(require("./PaymentUncheckedCreateNestedOneWithoutClaimInput.schema. __exportStar(require("./PaymentUncheckedCreateNestedOneWithoutClaimInput.schema"), exports); __exportStar(require("./PaymentUncheckedCreateWithoutClaimInput.schema.d"), exports); __exportStar(require("./PaymentUncheckedCreateWithoutClaimInput.schema"), exports); +__exportStar(require("./PaymentUncheckedCreateWithoutCommissionBatchItemsInput.schema.d"), exports); __exportStar(require("./PaymentUncheckedCreateWithoutCommissionBatchItemsInput.schema"), exports); +__exportStar(require("./PaymentUncheckedCreateWithoutNpiProviderInput.schema.d"), exports); __exportStar(require("./PaymentUncheckedCreateWithoutNpiProviderInput.schema"), exports); __exportStar(require("./PaymentUncheckedCreateWithoutPatientInput.schema.d"), exports); __exportStar(require("./PaymentUncheckedCreateWithoutPatientInput.schema"), exports); @@ -2863,7 +3381,9 @@ __exportStar(require("./PaymentUncheckedUpdateInput.schema.d"), exports); __exportStar(require("./PaymentUncheckedUpdateInput.schema"), exports); __exportStar(require("./PaymentUncheckedUpdateManyInput.schema.d"), exports); __exportStar(require("./PaymentUncheckedUpdateManyInput.schema"), exports); +__exportStar(require("./PaymentUncheckedUpdateManyWithoutNpiProviderInput.schema.d"), exports); __exportStar(require("./PaymentUncheckedUpdateManyWithoutNpiProviderInput.schema"), exports); +__exportStar(require("./PaymentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema.d"), exports); __exportStar(require("./PaymentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema"), exports); __exportStar(require("./PaymentUncheckedUpdateManyWithoutPatientInput.schema.d"), exports); __exportStar(require("./PaymentUncheckedUpdateManyWithoutPatientInput.schema"), exports); @@ -2877,7 +3397,9 @@ __exportStar(require("./PaymentUncheckedUpdateOneWithoutClaimNestedInput.schema. __exportStar(require("./PaymentUncheckedUpdateOneWithoutClaimNestedInput.schema"), exports); __exportStar(require("./PaymentUncheckedUpdateWithoutClaimInput.schema.d"), exports); __exportStar(require("./PaymentUncheckedUpdateWithoutClaimInput.schema"), exports); +__exportStar(require("./PaymentUncheckedUpdateWithoutCommissionBatchItemsInput.schema.d"), exports); __exportStar(require("./PaymentUncheckedUpdateWithoutCommissionBatchItemsInput.schema"), exports); +__exportStar(require("./PaymentUncheckedUpdateWithoutNpiProviderInput.schema.d"), exports); __exportStar(require("./PaymentUncheckedUpdateWithoutNpiProviderInput.schema"), exports); __exportStar(require("./PaymentUncheckedUpdateWithoutPatientInput.schema.d"), exports); __exportStar(require("./PaymentUncheckedUpdateWithoutPatientInput.schema"), exports); @@ -2891,16 +3413,19 @@ __exportStar(require("./PaymentUpdateInput.schema.d"), exports); __exportStar(require("./PaymentUpdateInput.schema"), exports); __exportStar(require("./PaymentUpdateManyMutationInput.schema.d"), exports); __exportStar(require("./PaymentUpdateManyMutationInput.schema"), exports); +__exportStar(require("./PaymentUpdateManyWithWhereWithoutNpiProviderInput.schema.d"), exports); __exportStar(require("./PaymentUpdateManyWithWhereWithoutNpiProviderInput.schema"), exports); __exportStar(require("./PaymentUpdateManyWithWhereWithoutPatientInput.schema.d"), exports); __exportStar(require("./PaymentUpdateManyWithWhereWithoutPatientInput.schema"), exports); __exportStar(require("./PaymentUpdateManyWithWhereWithoutUpdatedByInput.schema.d"), exports); __exportStar(require("./PaymentUpdateManyWithWhereWithoutUpdatedByInput.schema"), exports); +__exportStar(require("./PaymentUpdateManyWithoutNpiProviderNestedInput.schema.d"), exports); __exportStar(require("./PaymentUpdateManyWithoutNpiProviderNestedInput.schema"), exports); __exportStar(require("./PaymentUpdateManyWithoutPatientNestedInput.schema.d"), exports); __exportStar(require("./PaymentUpdateManyWithoutPatientNestedInput.schema"), exports); __exportStar(require("./PaymentUpdateManyWithoutUpdatedByNestedInput.schema.d"), exports); __exportStar(require("./PaymentUpdateManyWithoutUpdatedByNestedInput.schema"), exports); +__exportStar(require("./PaymentUpdateOneRequiredWithoutCommissionBatchItemsNestedInput.schema.d"), exports); __exportStar(require("./PaymentUpdateOneRequiredWithoutCommissionBatchItemsNestedInput.schema"), exports); __exportStar(require("./PaymentUpdateOneRequiredWithoutServiceLineTransactionsNestedInput.schema.d"), exports); __exportStar(require("./PaymentUpdateOneRequiredWithoutServiceLineTransactionsNestedInput.schema"), exports); @@ -2910,11 +3435,13 @@ __exportStar(require("./PaymentUpdateOneWithoutServiceLinesNestedInput.schema.d" __exportStar(require("./PaymentUpdateOneWithoutServiceLinesNestedInput.schema"), exports); __exportStar(require("./PaymentUpdateToOneWithWhereWithoutClaimInput.schema.d"), exports); __exportStar(require("./PaymentUpdateToOneWithWhereWithoutClaimInput.schema"), exports); +__exportStar(require("./PaymentUpdateToOneWithWhereWithoutCommissionBatchItemsInput.schema.d"), exports); __exportStar(require("./PaymentUpdateToOneWithWhereWithoutCommissionBatchItemsInput.schema"), exports); __exportStar(require("./PaymentUpdateToOneWithWhereWithoutServiceLineTransactionsInput.schema.d"), exports); __exportStar(require("./PaymentUpdateToOneWithWhereWithoutServiceLineTransactionsInput.schema"), exports); __exportStar(require("./PaymentUpdateToOneWithWhereWithoutServiceLinesInput.schema.d"), exports); __exportStar(require("./PaymentUpdateToOneWithWhereWithoutServiceLinesInput.schema"), exports); +__exportStar(require("./PaymentUpdateWithWhereUniqueWithoutNpiProviderInput.schema.d"), exports); __exportStar(require("./PaymentUpdateWithWhereUniqueWithoutNpiProviderInput.schema"), exports); __exportStar(require("./PaymentUpdateWithWhereUniqueWithoutPatientInput.schema.d"), exports); __exportStar(require("./PaymentUpdateWithWhereUniqueWithoutPatientInput.schema"), exports); @@ -2922,7 +3449,9 @@ __exportStar(require("./PaymentUpdateWithWhereUniqueWithoutUpdatedByInput.schema __exportStar(require("./PaymentUpdateWithWhereUniqueWithoutUpdatedByInput.schema"), exports); __exportStar(require("./PaymentUpdateWithoutClaimInput.schema.d"), exports); __exportStar(require("./PaymentUpdateWithoutClaimInput.schema"), exports); +__exportStar(require("./PaymentUpdateWithoutCommissionBatchItemsInput.schema.d"), exports); __exportStar(require("./PaymentUpdateWithoutCommissionBatchItemsInput.schema"), exports); +__exportStar(require("./PaymentUpdateWithoutNpiProviderInput.schema.d"), exports); __exportStar(require("./PaymentUpdateWithoutNpiProviderInput.schema"), exports); __exportStar(require("./PaymentUpdateWithoutPatientInput.schema.d"), exports); __exportStar(require("./PaymentUpdateWithoutPatientInput.schema"), exports); @@ -2932,6 +3461,7 @@ __exportStar(require("./PaymentUpdateWithoutServiceLinesInput.schema.d"), export __exportStar(require("./PaymentUpdateWithoutServiceLinesInput.schema"), exports); __exportStar(require("./PaymentUpdateWithoutUpdatedByInput.schema.d"), exports); __exportStar(require("./PaymentUpdateWithoutUpdatedByInput.schema"), exports); +__exportStar(require("./PaymentUpsertWithWhereUniqueWithoutNpiProviderInput.schema.d"), exports); __exportStar(require("./PaymentUpsertWithWhereUniqueWithoutNpiProviderInput.schema"), exports); __exportStar(require("./PaymentUpsertWithWhereUniqueWithoutPatientInput.schema.d"), exports); __exportStar(require("./PaymentUpsertWithWhereUniqueWithoutPatientInput.schema"), exports); @@ -2939,6 +3469,7 @@ __exportStar(require("./PaymentUpsertWithWhereUniqueWithoutUpdatedByInput.schema __exportStar(require("./PaymentUpsertWithWhereUniqueWithoutUpdatedByInput.schema"), exports); __exportStar(require("./PaymentUpsertWithoutClaimInput.schema.d"), exports); __exportStar(require("./PaymentUpsertWithoutClaimInput.schema"), exports); +__exportStar(require("./PaymentUpsertWithoutCommissionBatchItemsInput.schema.d"), exports); __exportStar(require("./PaymentUpsertWithoutCommissionBatchItemsInput.schema"), exports); __exportStar(require("./PaymentUpsertWithoutServiceLineTransactionsInput.schema.d"), exports); __exportStar(require("./PaymentUpsertWithoutServiceLineTransactionsInput.schema"), exports); @@ -3146,43 +3677,117 @@ __exportStar(require("./PdfGroupWhereInput.schema.d"), exports); __exportStar(require("./PdfGroupWhereInput.schema"), exports); __exportStar(require("./PdfGroupWhereUniqueInput.schema.d"), exports); __exportStar(require("./PdfGroupWhereUniqueInput.schema"), exports); +__exportStar(require("./ProcedureTimeslotArgs.schema.d"), exports); __exportStar(require("./ProcedureTimeslotArgs.schema"), exports); +__exportStar(require("./ProcedureTimeslotAvgAggregateInput.schema.d"), exports); __exportStar(require("./ProcedureTimeslotAvgAggregateInput.schema"), exports); +__exportStar(require("./ProcedureTimeslotAvgOrderByAggregateInput.schema.d"), exports); __exportStar(require("./ProcedureTimeslotAvgOrderByAggregateInput.schema"), exports); +__exportStar(require("./ProcedureTimeslotCountAggregateInput.schema.d"), exports); __exportStar(require("./ProcedureTimeslotCountAggregateInput.schema"), exports); +__exportStar(require("./ProcedureTimeslotCountOrderByAggregateInput.schema.d"), exports); __exportStar(require("./ProcedureTimeslotCountOrderByAggregateInput.schema"), exports); +__exportStar(require("./ProcedureTimeslotCreateInput.schema.d"), exports); __exportStar(require("./ProcedureTimeslotCreateInput.schema"), exports); +__exportStar(require("./ProcedureTimeslotCreateManyInput.schema.d"), exports); __exportStar(require("./ProcedureTimeslotCreateManyInput.schema"), exports); +__exportStar(require("./ProcedureTimeslotCreateNestedOneWithoutUserInput.schema.d"), exports); __exportStar(require("./ProcedureTimeslotCreateNestedOneWithoutUserInput.schema"), exports); +__exportStar(require("./ProcedureTimeslotCreateOrConnectWithoutUserInput.schema.d"), exports); __exportStar(require("./ProcedureTimeslotCreateOrConnectWithoutUserInput.schema"), exports); +__exportStar(require("./ProcedureTimeslotCreateWithoutUserInput.schema.d"), exports); __exportStar(require("./ProcedureTimeslotCreateWithoutUserInput.schema"), exports); +__exportStar(require("./ProcedureTimeslotInclude.schema.d"), exports); __exportStar(require("./ProcedureTimeslotInclude.schema"), exports); +__exportStar(require("./ProcedureTimeslotMaxAggregateInput.schema.d"), exports); __exportStar(require("./ProcedureTimeslotMaxAggregateInput.schema"), exports); +__exportStar(require("./ProcedureTimeslotMaxOrderByAggregateInput.schema.d"), exports); __exportStar(require("./ProcedureTimeslotMaxOrderByAggregateInput.schema"), exports); +__exportStar(require("./ProcedureTimeslotMinAggregateInput.schema.d"), exports); __exportStar(require("./ProcedureTimeslotMinAggregateInput.schema"), exports); +__exportStar(require("./ProcedureTimeslotMinOrderByAggregateInput.schema.d"), exports); __exportStar(require("./ProcedureTimeslotMinOrderByAggregateInput.schema"), exports); +__exportStar(require("./ProcedureTimeslotNullableScalarRelationFilter.schema.d"), exports); __exportStar(require("./ProcedureTimeslotNullableScalarRelationFilter.schema"), exports); +__exportStar(require("./ProcedureTimeslotOrderByWithAggregationInput.schema.d"), exports); __exportStar(require("./ProcedureTimeslotOrderByWithAggregationInput.schema"), exports); +__exportStar(require("./ProcedureTimeslotOrderByWithRelationInput.schema.d"), exports); __exportStar(require("./ProcedureTimeslotOrderByWithRelationInput.schema"), exports); +__exportStar(require("./ProcedureTimeslotScalarWhereWithAggregatesInput.schema.d"), exports); __exportStar(require("./ProcedureTimeslotScalarWhereWithAggregatesInput.schema"), exports); +__exportStar(require("./ProcedureTimeslotSelect.schema.d"), exports); __exportStar(require("./ProcedureTimeslotSelect.schema"), exports); +__exportStar(require("./ProcedureTimeslotSumAggregateInput.schema.d"), exports); __exportStar(require("./ProcedureTimeslotSumAggregateInput.schema"), exports); +__exportStar(require("./ProcedureTimeslotSumOrderByAggregateInput.schema.d"), exports); __exportStar(require("./ProcedureTimeslotSumOrderByAggregateInput.schema"), exports); +__exportStar(require("./ProcedureTimeslotUncheckedCreateInput.schema.d"), exports); __exportStar(require("./ProcedureTimeslotUncheckedCreateInput.schema"), exports); +__exportStar(require("./ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput.schema.d"), exports); __exportStar(require("./ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput.schema"), exports); +__exportStar(require("./ProcedureTimeslotUncheckedCreateWithoutUserInput.schema.d"), exports); __exportStar(require("./ProcedureTimeslotUncheckedCreateWithoutUserInput.schema"), exports); +__exportStar(require("./ProcedureTimeslotUncheckedUpdateInput.schema.d"), exports); __exportStar(require("./ProcedureTimeslotUncheckedUpdateInput.schema"), exports); +__exportStar(require("./ProcedureTimeslotUncheckedUpdateManyInput.schema.d"), exports); __exportStar(require("./ProcedureTimeslotUncheckedUpdateManyInput.schema"), exports); +__exportStar(require("./ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput.schema.d"), exports); __exportStar(require("./ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput.schema"), exports); +__exportStar(require("./ProcedureTimeslotUncheckedUpdateWithoutUserInput.schema.d"), exports); __exportStar(require("./ProcedureTimeslotUncheckedUpdateWithoutUserInput.schema"), exports); +__exportStar(require("./ProcedureTimeslotUpdateInput.schema.d"), exports); __exportStar(require("./ProcedureTimeslotUpdateInput.schema"), exports); +__exportStar(require("./ProcedureTimeslotUpdateManyMutationInput.schema.d"), exports); __exportStar(require("./ProcedureTimeslotUpdateManyMutationInput.schema"), exports); +__exportStar(require("./ProcedureTimeslotUpdateOneWithoutUserNestedInput.schema.d"), exports); __exportStar(require("./ProcedureTimeslotUpdateOneWithoutUserNestedInput.schema"), exports); +__exportStar(require("./ProcedureTimeslotUpdateToOneWithWhereWithoutUserInput.schema.d"), exports); __exportStar(require("./ProcedureTimeslotUpdateToOneWithWhereWithoutUserInput.schema"), exports); +__exportStar(require("./ProcedureTimeslotUpdateWithoutUserInput.schema.d"), exports); __exportStar(require("./ProcedureTimeslotUpdateWithoutUserInput.schema"), exports); +__exportStar(require("./ProcedureTimeslotUpsertWithoutUserInput.schema.d"), exports); __exportStar(require("./ProcedureTimeslotUpsertWithoutUserInput.schema"), exports); +__exportStar(require("./ProcedureTimeslotWhereInput.schema.d"), exports); __exportStar(require("./ProcedureTimeslotWhereInput.schema"), exports); +__exportStar(require("./ProcedureTimeslotWhereUniqueInput.schema.d"), exports); __exportStar(require("./ProcedureTimeslotWhereUniqueInput.schema"), exports); +__exportStar(require("./SeleniumSettingsArgs.schema"), exports); +__exportStar(require("./SeleniumSettingsAvgAggregateInput.schema"), exports); +__exportStar(require("./SeleniumSettingsAvgOrderByAggregateInput.schema"), exports); +__exportStar(require("./SeleniumSettingsCountAggregateInput.schema"), exports); +__exportStar(require("./SeleniumSettingsCountOrderByAggregateInput.schema"), exports); +__exportStar(require("./SeleniumSettingsCreateInput.schema"), exports); +__exportStar(require("./SeleniumSettingsCreateManyInput.schema"), exports); +__exportStar(require("./SeleniumSettingsCreateNestedOneWithoutUserInput.schema"), exports); +__exportStar(require("./SeleniumSettingsCreateOrConnectWithoutUserInput.schema"), exports); +__exportStar(require("./SeleniumSettingsCreateWithoutUserInput.schema"), exports); +__exportStar(require("./SeleniumSettingsInclude.schema"), exports); +__exportStar(require("./SeleniumSettingsMaxAggregateInput.schema"), exports); +__exportStar(require("./SeleniumSettingsMaxOrderByAggregateInput.schema"), exports); +__exportStar(require("./SeleniumSettingsMinAggregateInput.schema"), exports); +__exportStar(require("./SeleniumSettingsMinOrderByAggregateInput.schema"), exports); +__exportStar(require("./SeleniumSettingsNullableScalarRelationFilter.schema"), exports); +__exportStar(require("./SeleniumSettingsOrderByWithAggregationInput.schema"), exports); +__exportStar(require("./SeleniumSettingsOrderByWithRelationInput.schema"), exports); +__exportStar(require("./SeleniumSettingsScalarWhereWithAggregatesInput.schema"), exports); +__exportStar(require("./SeleniumSettingsSelect.schema"), exports); +__exportStar(require("./SeleniumSettingsSumAggregateInput.schema"), exports); +__exportStar(require("./SeleniumSettingsSumOrderByAggregateInput.schema"), exports); +__exportStar(require("./SeleniumSettingsUncheckedCreateInput.schema"), exports); +__exportStar(require("./SeleniumSettingsUncheckedCreateNestedOneWithoutUserInput.schema"), exports); +__exportStar(require("./SeleniumSettingsUncheckedCreateWithoutUserInput.schema"), exports); +__exportStar(require("./SeleniumSettingsUncheckedUpdateInput.schema"), exports); +__exportStar(require("./SeleniumSettingsUncheckedUpdateManyInput.schema"), exports); +__exportStar(require("./SeleniumSettingsUncheckedUpdateOneWithoutUserNestedInput.schema"), exports); +__exportStar(require("./SeleniumSettingsUncheckedUpdateWithoutUserInput.schema"), exports); +__exportStar(require("./SeleniumSettingsUpdateInput.schema"), exports); +__exportStar(require("./SeleniumSettingsUpdateManyMutationInput.schema"), exports); +__exportStar(require("./SeleniumSettingsUpdateOneWithoutUserNestedInput.schema"), exports); +__exportStar(require("./SeleniumSettingsUpdateToOneWithWhereWithoutUserInput.schema"), exports); +__exportStar(require("./SeleniumSettingsUpdateWithoutUserInput.schema"), exports); +__exportStar(require("./SeleniumSettingsUpsertWithoutUserInput.schema"), exports); +__exportStar(require("./SeleniumSettingsWhereInput.schema"), exports); +__exportStar(require("./SeleniumSettingsWhereUniqueInput.schema"), exports); __exportStar(require("./ServiceLineArgs.schema.d"), exports); __exportStar(require("./ServiceLineArgs.schema"), exports); __exportStar(require("./ServiceLineAvgAggregateInput.schema.d"), exports); @@ -3441,48 +4046,91 @@ __exportStar(require("./ServiceLineWhereInput.schema.d"), exports); __exportStar(require("./ServiceLineWhereInput.schema"), exports); __exportStar(require("./ServiceLineWhereUniqueInput.schema.d"), exports); __exportStar(require("./ServiceLineWhereUniqueInput.schema"), exports); +__exportStar(require("./ShoppingVendorArgs.schema.d"), exports); __exportStar(require("./ShoppingVendorArgs.schema"), exports); +__exportStar(require("./ShoppingVendorAvgAggregateInput.schema.d"), exports); __exportStar(require("./ShoppingVendorAvgAggregateInput.schema"), exports); +__exportStar(require("./ShoppingVendorAvgOrderByAggregateInput.schema.d"), exports); __exportStar(require("./ShoppingVendorAvgOrderByAggregateInput.schema"), exports); +__exportStar(require("./ShoppingVendorCountAggregateInput.schema.d"), exports); __exportStar(require("./ShoppingVendorCountAggregateInput.schema"), exports); +__exportStar(require("./ShoppingVendorCountOrderByAggregateInput.schema.d"), exports); __exportStar(require("./ShoppingVendorCountOrderByAggregateInput.schema"), exports); +__exportStar(require("./ShoppingVendorCreateInput.schema.d"), exports); __exportStar(require("./ShoppingVendorCreateInput.schema"), exports); +__exportStar(require("./ShoppingVendorCreateManyInput.schema.d"), exports); __exportStar(require("./ShoppingVendorCreateManyInput.schema"), exports); +__exportStar(require("./ShoppingVendorCreateManyUserInput.schema.d"), exports); __exportStar(require("./ShoppingVendorCreateManyUserInput.schema"), exports); +__exportStar(require("./ShoppingVendorCreateManyUserInputEnvelope.schema.d"), exports); __exportStar(require("./ShoppingVendorCreateManyUserInputEnvelope.schema"), exports); +__exportStar(require("./ShoppingVendorCreateNestedManyWithoutUserInput.schema.d"), exports); __exportStar(require("./ShoppingVendorCreateNestedManyWithoutUserInput.schema"), exports); +__exportStar(require("./ShoppingVendorCreateOrConnectWithoutUserInput.schema.d"), exports); __exportStar(require("./ShoppingVendorCreateOrConnectWithoutUserInput.schema"), exports); +__exportStar(require("./ShoppingVendorCreateWithoutUserInput.schema.d"), exports); __exportStar(require("./ShoppingVendorCreateWithoutUserInput.schema"), exports); +__exportStar(require("./ShoppingVendorInclude.schema.d"), exports); __exportStar(require("./ShoppingVendorInclude.schema"), exports); +__exportStar(require("./ShoppingVendorListRelationFilter.schema.d"), exports); __exportStar(require("./ShoppingVendorListRelationFilter.schema"), exports); +__exportStar(require("./ShoppingVendorMaxAggregateInput.schema.d"), exports); __exportStar(require("./ShoppingVendorMaxAggregateInput.schema"), exports); +__exportStar(require("./ShoppingVendorMaxOrderByAggregateInput.schema.d"), exports); __exportStar(require("./ShoppingVendorMaxOrderByAggregateInput.schema"), exports); +__exportStar(require("./ShoppingVendorMinAggregateInput.schema.d"), exports); __exportStar(require("./ShoppingVendorMinAggregateInput.schema"), exports); +__exportStar(require("./ShoppingVendorMinOrderByAggregateInput.schema.d"), exports); __exportStar(require("./ShoppingVendorMinOrderByAggregateInput.schema"), exports); +__exportStar(require("./ShoppingVendorOrderByRelationAggregateInput.schema.d"), exports); __exportStar(require("./ShoppingVendorOrderByRelationAggregateInput.schema"), exports); +__exportStar(require("./ShoppingVendorOrderByWithAggregationInput.schema.d"), exports); __exportStar(require("./ShoppingVendorOrderByWithAggregationInput.schema"), exports); +__exportStar(require("./ShoppingVendorOrderByWithRelationInput.schema.d"), exports); __exportStar(require("./ShoppingVendorOrderByWithRelationInput.schema"), exports); +__exportStar(require("./ShoppingVendorScalarWhereInput.schema.d"), exports); __exportStar(require("./ShoppingVendorScalarWhereInput.schema"), exports); +__exportStar(require("./ShoppingVendorScalarWhereWithAggregatesInput.schema.d"), exports); __exportStar(require("./ShoppingVendorScalarWhereWithAggregatesInput.schema"), exports); +__exportStar(require("./ShoppingVendorSelect.schema.d"), exports); __exportStar(require("./ShoppingVendorSelect.schema"), exports); +__exportStar(require("./ShoppingVendorSumAggregateInput.schema.d"), exports); __exportStar(require("./ShoppingVendorSumAggregateInput.schema"), exports); +__exportStar(require("./ShoppingVendorSumOrderByAggregateInput.schema.d"), exports); __exportStar(require("./ShoppingVendorSumOrderByAggregateInput.schema"), exports); +__exportStar(require("./ShoppingVendorUncheckedCreateInput.schema.d"), exports); __exportStar(require("./ShoppingVendorUncheckedCreateInput.schema"), exports); +__exportStar(require("./ShoppingVendorUncheckedCreateNestedManyWithoutUserInput.schema.d"), exports); __exportStar(require("./ShoppingVendorUncheckedCreateNestedManyWithoutUserInput.schema"), exports); +__exportStar(require("./ShoppingVendorUncheckedCreateWithoutUserInput.schema.d"), exports); __exportStar(require("./ShoppingVendorUncheckedCreateWithoutUserInput.schema"), exports); +__exportStar(require("./ShoppingVendorUncheckedUpdateInput.schema.d"), exports); __exportStar(require("./ShoppingVendorUncheckedUpdateInput.schema"), exports); +__exportStar(require("./ShoppingVendorUncheckedUpdateManyInput.schema.d"), exports); __exportStar(require("./ShoppingVendorUncheckedUpdateManyInput.schema"), exports); +__exportStar(require("./ShoppingVendorUncheckedUpdateManyWithoutUserInput.schema.d"), exports); __exportStar(require("./ShoppingVendorUncheckedUpdateManyWithoutUserInput.schema"), exports); +__exportStar(require("./ShoppingVendorUncheckedUpdateManyWithoutUserNestedInput.schema.d"), exports); __exportStar(require("./ShoppingVendorUncheckedUpdateManyWithoutUserNestedInput.schema"), exports); +__exportStar(require("./ShoppingVendorUncheckedUpdateWithoutUserInput.schema.d"), exports); __exportStar(require("./ShoppingVendorUncheckedUpdateWithoutUserInput.schema"), exports); +__exportStar(require("./ShoppingVendorUpdateInput.schema.d"), exports); __exportStar(require("./ShoppingVendorUpdateInput.schema"), exports); +__exportStar(require("./ShoppingVendorUpdateManyMutationInput.schema.d"), exports); __exportStar(require("./ShoppingVendorUpdateManyMutationInput.schema"), exports); +__exportStar(require("./ShoppingVendorUpdateManyWithWhereWithoutUserInput.schema.d"), exports); __exportStar(require("./ShoppingVendorUpdateManyWithWhereWithoutUserInput.schema"), exports); +__exportStar(require("./ShoppingVendorUpdateManyWithoutUserNestedInput.schema.d"), exports); __exportStar(require("./ShoppingVendorUpdateManyWithoutUserNestedInput.schema"), exports); +__exportStar(require("./ShoppingVendorUpdateWithWhereUniqueWithoutUserInput.schema.d"), exports); __exportStar(require("./ShoppingVendorUpdateWithWhereUniqueWithoutUserInput.schema"), exports); +__exportStar(require("./ShoppingVendorUpdateWithoutUserInput.schema.d"), exports); __exportStar(require("./ShoppingVendorUpdateWithoutUserInput.schema"), exports); +__exportStar(require("./ShoppingVendorUpsertWithWhereUniqueWithoutUserInput.schema.d"), exports); __exportStar(require("./ShoppingVendorUpsertWithWhereUniqueWithoutUserInput.schema"), exports); +__exportStar(require("./ShoppingVendorWhereInput.schema.d"), exports); __exportStar(require("./ShoppingVendorWhereInput.schema"), exports); +__exportStar(require("./ShoppingVendorWhereUniqueInput.schema.d"), exports); __exportStar(require("./ShoppingVendorWhereUniqueInput.schema"), exports); __exportStar(require("./SortOrderInput.schema.d"), exports); __exportStar(require("./SortOrderInput.schema"), exports); @@ -3628,42 +4276,79 @@ __exportStar(require("./StringNullableWithAggregatesFilter.schema.d"), exports); __exportStar(require("./StringNullableWithAggregatesFilter.schema"), exports); __exportStar(require("./StringWithAggregatesFilter.schema.d"), exports); __exportStar(require("./StringWithAggregatesFilter.schema"), exports); +__exportStar(require("./TwilioSettingsArgs.schema.d"), exports); __exportStar(require("./TwilioSettingsArgs.schema"), exports); +__exportStar(require("./TwilioSettingsAvgAggregateInput.schema.d"), exports); __exportStar(require("./TwilioSettingsAvgAggregateInput.schema"), exports); +__exportStar(require("./TwilioSettingsAvgOrderByAggregateInput.schema.d"), exports); __exportStar(require("./TwilioSettingsAvgOrderByAggregateInput.schema"), exports); +__exportStar(require("./TwilioSettingsCountAggregateInput.schema.d"), exports); __exportStar(require("./TwilioSettingsCountAggregateInput.schema"), exports); +__exportStar(require("./TwilioSettingsCountOrderByAggregateInput.schema.d"), exports); __exportStar(require("./TwilioSettingsCountOrderByAggregateInput.schema"), exports); +__exportStar(require("./TwilioSettingsCreateInput.schema.d"), exports); __exportStar(require("./TwilioSettingsCreateInput.schema"), exports); +__exportStar(require("./TwilioSettingsCreateManyInput.schema.d"), exports); __exportStar(require("./TwilioSettingsCreateManyInput.schema"), exports); +__exportStar(require("./TwilioSettingsCreateNestedOneWithoutUserInput.schema.d"), exports); __exportStar(require("./TwilioSettingsCreateNestedOneWithoutUserInput.schema"), exports); +__exportStar(require("./TwilioSettingsCreateOrConnectWithoutUserInput.schema.d"), exports); __exportStar(require("./TwilioSettingsCreateOrConnectWithoutUserInput.schema"), exports); +__exportStar(require("./TwilioSettingsCreateWithoutUserInput.schema.d"), exports); __exportStar(require("./TwilioSettingsCreateWithoutUserInput.schema"), exports); +__exportStar(require("./TwilioSettingsInclude.schema.d"), exports); __exportStar(require("./TwilioSettingsInclude.schema"), exports); +__exportStar(require("./TwilioSettingsMaxAggregateInput.schema.d"), exports); __exportStar(require("./TwilioSettingsMaxAggregateInput.schema"), exports); +__exportStar(require("./TwilioSettingsMaxOrderByAggregateInput.schema.d"), exports); __exportStar(require("./TwilioSettingsMaxOrderByAggregateInput.schema"), exports); +__exportStar(require("./TwilioSettingsMinAggregateInput.schema.d"), exports); __exportStar(require("./TwilioSettingsMinAggregateInput.schema"), exports); +__exportStar(require("./TwilioSettingsMinOrderByAggregateInput.schema.d"), exports); __exportStar(require("./TwilioSettingsMinOrderByAggregateInput.schema"), exports); +__exportStar(require("./TwilioSettingsNullableScalarRelationFilter.schema.d"), exports); __exportStar(require("./TwilioSettingsNullableScalarRelationFilter.schema"), exports); +__exportStar(require("./TwilioSettingsOrderByWithAggregationInput.schema.d"), exports); __exportStar(require("./TwilioSettingsOrderByWithAggregationInput.schema"), exports); +__exportStar(require("./TwilioSettingsOrderByWithRelationInput.schema.d"), exports); __exportStar(require("./TwilioSettingsOrderByWithRelationInput.schema"), exports); +__exportStar(require("./TwilioSettingsScalarWhereWithAggregatesInput.schema.d"), exports); __exportStar(require("./TwilioSettingsScalarWhereWithAggregatesInput.schema"), exports); +__exportStar(require("./TwilioSettingsSelect.schema.d"), exports); __exportStar(require("./TwilioSettingsSelect.schema"), exports); +__exportStar(require("./TwilioSettingsSumAggregateInput.schema.d"), exports); __exportStar(require("./TwilioSettingsSumAggregateInput.schema"), exports); +__exportStar(require("./TwilioSettingsSumOrderByAggregateInput.schema.d"), exports); __exportStar(require("./TwilioSettingsSumOrderByAggregateInput.schema"), exports); +__exportStar(require("./TwilioSettingsUncheckedCreateInput.schema.d"), exports); __exportStar(require("./TwilioSettingsUncheckedCreateInput.schema"), exports); +__exportStar(require("./TwilioSettingsUncheckedCreateNestedOneWithoutUserInput.schema.d"), exports); __exportStar(require("./TwilioSettingsUncheckedCreateNestedOneWithoutUserInput.schema"), exports); +__exportStar(require("./TwilioSettingsUncheckedCreateWithoutUserInput.schema.d"), exports); __exportStar(require("./TwilioSettingsUncheckedCreateWithoutUserInput.schema"), exports); +__exportStar(require("./TwilioSettingsUncheckedUpdateInput.schema.d"), exports); __exportStar(require("./TwilioSettingsUncheckedUpdateInput.schema"), exports); +__exportStar(require("./TwilioSettingsUncheckedUpdateManyInput.schema.d"), exports); __exportStar(require("./TwilioSettingsUncheckedUpdateManyInput.schema"), exports); +__exportStar(require("./TwilioSettingsUncheckedUpdateOneWithoutUserNestedInput.schema.d"), exports); __exportStar(require("./TwilioSettingsUncheckedUpdateOneWithoutUserNestedInput.schema"), exports); +__exportStar(require("./TwilioSettingsUncheckedUpdateWithoutUserInput.schema.d"), exports); __exportStar(require("./TwilioSettingsUncheckedUpdateWithoutUserInput.schema"), exports); +__exportStar(require("./TwilioSettingsUpdateInput.schema.d"), exports); __exportStar(require("./TwilioSettingsUpdateInput.schema"), exports); +__exportStar(require("./TwilioSettingsUpdateManyMutationInput.schema.d"), exports); __exportStar(require("./TwilioSettingsUpdateManyMutationInput.schema"), exports); +__exportStar(require("./TwilioSettingsUpdateOneWithoutUserNestedInput.schema.d"), exports); __exportStar(require("./TwilioSettingsUpdateOneWithoutUserNestedInput.schema"), exports); +__exportStar(require("./TwilioSettingsUpdateToOneWithWhereWithoutUserInput.schema.d"), exports); __exportStar(require("./TwilioSettingsUpdateToOneWithWhereWithoutUserInput.schema"), exports); +__exportStar(require("./TwilioSettingsUpdateWithoutUserInput.schema.d"), exports); __exportStar(require("./TwilioSettingsUpdateWithoutUserInput.schema"), exports); +__exportStar(require("./TwilioSettingsUpsertWithoutUserInput.schema.d"), exports); __exportStar(require("./TwilioSettingsUpsertWithoutUserInput.schema"), exports); +__exportStar(require("./TwilioSettingsWhereInput.schema.d"), exports); __exportStar(require("./TwilioSettingsWhereInput.schema"), exports); +__exportStar(require("./TwilioSettingsWhereUniqueInput.schema.d"), exports); __exportStar(require("./TwilioSettingsWhereUniqueInput.schema"), exports); __exportStar(require("./UserArgs.schema.d"), exports); __exportStar(require("./UserArgs.schema"), exports); @@ -3691,16 +4376,20 @@ __exportStar(require("./UserCountOutputTypeCountCloudFoldersArgs.schema.d"), exp __exportStar(require("./UserCountOutputTypeCountCloudFoldersArgs.schema"), exports); __exportStar(require("./UserCountOutputTypeCountCommunicationsArgs.schema.d"), exports); __exportStar(require("./UserCountOutputTypeCountCommunicationsArgs.schema"), exports); +__exportStar(require("./UserCountOutputTypeCountInsuranceContactsArgs.schema.d"), exports); __exportStar(require("./UserCountOutputTypeCountInsuranceContactsArgs.schema"), exports); __exportStar(require("./UserCountOutputTypeCountInsuranceCredentialsArgs.schema.d"), exports); __exportStar(require("./UserCountOutputTypeCountInsuranceCredentialsArgs.schema"), exports); +__exportStar(require("./UserCountOutputTypeCountLabRxTemplatesArgs.schema"), exports); __exportStar(require("./UserCountOutputTypeCountNotificationsArgs.schema.d"), exports); __exportStar(require("./UserCountOutputTypeCountNotificationsArgs.schema"), exports); __exportStar(require("./UserCountOutputTypeCountNpiProvidersArgs.schema.d"), exports); __exportStar(require("./UserCountOutputTypeCountNpiProvidersArgs.schema"), exports); +__exportStar(require("./UserCountOutputTypeCountPatientConversationsArgs.schema.d"), exports); __exportStar(require("./UserCountOutputTypeCountPatientConversationsArgs.schema"), exports); __exportStar(require("./UserCountOutputTypeCountPatientsArgs.schema.d"), exports); __exportStar(require("./UserCountOutputTypeCountPatientsArgs.schema"), exports); +__exportStar(require("./UserCountOutputTypeCountShoppingVendorsArgs.schema.d"), exports); __exportStar(require("./UserCountOutputTypeCountShoppingVendorsArgs.schema"), exports); __exportStar(require("./UserCountOutputTypeCountStaffArgs.schema.d"), exports); __exportStar(require("./UserCountOutputTypeCountStaffArgs.schema"), exports); @@ -3712,6 +4401,7 @@ __exportStar(require("./UserCreateInput.schema.d"), exports); __exportStar(require("./UserCreateInput.schema"), exports); __exportStar(require("./UserCreateManyInput.schema.d"), exports); __exportStar(require("./UserCreateManyInput.schema"), exports); +__exportStar(require("./UserCreateNestedOneWithoutAiSettingsInput.schema.d"), exports); __exportStar(require("./UserCreateNestedOneWithoutAiSettingsInput.schema"), exports); __exportStar(require("./UserCreateNestedOneWithoutAppointmentsInput.schema.d"), exports); __exportStar(require("./UserCreateNestedOneWithoutAppointmentsInput.schema"), exports); @@ -3727,25 +4417,35 @@ __exportStar(require("./UserCreateNestedOneWithoutCloudFoldersInput.schema.d"), __exportStar(require("./UserCreateNestedOneWithoutCloudFoldersInput.schema"), exports); __exportStar(require("./UserCreateNestedOneWithoutCommunicationsInput.schema.d"), exports); __exportStar(require("./UserCreateNestedOneWithoutCommunicationsInput.schema"), exports); +__exportStar(require("./UserCreateNestedOneWithoutInsuranceContactsInput.schema.d"), exports); __exportStar(require("./UserCreateNestedOneWithoutInsuranceContactsInput.schema"), exports); __exportStar(require("./UserCreateNestedOneWithoutInsuranceCredentialsInput.schema.d"), exports); __exportStar(require("./UserCreateNestedOneWithoutInsuranceCredentialsInput.schema"), exports); +__exportStar(require("./UserCreateNestedOneWithoutLabRxTemplatesInput.schema"), exports); __exportStar(require("./UserCreateNestedOneWithoutNotificationsInput.schema.d"), exports); __exportStar(require("./UserCreateNestedOneWithoutNotificationsInput.schema"), exports); __exportStar(require("./UserCreateNestedOneWithoutNpiProvidersInput.schema.d"), exports); __exportStar(require("./UserCreateNestedOneWithoutNpiProvidersInput.schema"), exports); +__exportStar(require("./UserCreateNestedOneWithoutOfficeContactInput.schema.d"), exports); __exportStar(require("./UserCreateNestedOneWithoutOfficeContactInput.schema"), exports); +__exportStar(require("./UserCreateNestedOneWithoutOfficeHoursInput.schema.d"), exports); __exportStar(require("./UserCreateNestedOneWithoutOfficeHoursInput.schema"), exports); +__exportStar(require("./UserCreateNestedOneWithoutPatientConversationsInput.schema.d"), exports); __exportStar(require("./UserCreateNestedOneWithoutPatientConversationsInput.schema"), exports); __exportStar(require("./UserCreateNestedOneWithoutPatientsInput.schema.d"), exports); __exportStar(require("./UserCreateNestedOneWithoutPatientsInput.schema"), exports); +__exportStar(require("./UserCreateNestedOneWithoutProcedureTimeslotInput.schema.d"), exports); __exportStar(require("./UserCreateNestedOneWithoutProcedureTimeslotInput.schema"), exports); +__exportStar(require("./UserCreateNestedOneWithoutSeleniumSettingsInput.schema"), exports); +__exportStar(require("./UserCreateNestedOneWithoutShoppingVendorsInput.schema.d"), exports); __exportStar(require("./UserCreateNestedOneWithoutShoppingVendorsInput.schema"), exports); __exportStar(require("./UserCreateNestedOneWithoutStaffInput.schema.d"), exports); __exportStar(require("./UserCreateNestedOneWithoutStaffInput.schema"), exports); +__exportStar(require("./UserCreateNestedOneWithoutTwilioSettingsInput.schema.d"), exports); __exportStar(require("./UserCreateNestedOneWithoutTwilioSettingsInput.schema"), exports); __exportStar(require("./UserCreateNestedOneWithoutUpdatedPaymentsInput.schema.d"), exports); __exportStar(require("./UserCreateNestedOneWithoutUpdatedPaymentsInput.schema"), exports); +__exportStar(require("./UserCreateOrConnectWithoutAiSettingsInput.schema.d"), exports); __exportStar(require("./UserCreateOrConnectWithoutAiSettingsInput.schema"), exports); __exportStar(require("./UserCreateOrConnectWithoutAppointmentsInput.schema.d"), exports); __exportStar(require("./UserCreateOrConnectWithoutAppointmentsInput.schema"), exports); @@ -3761,25 +4461,35 @@ __exportStar(require("./UserCreateOrConnectWithoutCloudFoldersInput.schema.d"), __exportStar(require("./UserCreateOrConnectWithoutCloudFoldersInput.schema"), exports); __exportStar(require("./UserCreateOrConnectWithoutCommunicationsInput.schema.d"), exports); __exportStar(require("./UserCreateOrConnectWithoutCommunicationsInput.schema"), exports); +__exportStar(require("./UserCreateOrConnectWithoutInsuranceContactsInput.schema.d"), exports); __exportStar(require("./UserCreateOrConnectWithoutInsuranceContactsInput.schema"), exports); __exportStar(require("./UserCreateOrConnectWithoutInsuranceCredentialsInput.schema.d"), exports); __exportStar(require("./UserCreateOrConnectWithoutInsuranceCredentialsInput.schema"), exports); +__exportStar(require("./UserCreateOrConnectWithoutLabRxTemplatesInput.schema"), exports); __exportStar(require("./UserCreateOrConnectWithoutNotificationsInput.schema.d"), exports); __exportStar(require("./UserCreateOrConnectWithoutNotificationsInput.schema"), exports); __exportStar(require("./UserCreateOrConnectWithoutNpiProvidersInput.schema.d"), exports); __exportStar(require("./UserCreateOrConnectWithoutNpiProvidersInput.schema"), exports); +__exportStar(require("./UserCreateOrConnectWithoutOfficeContactInput.schema.d"), exports); __exportStar(require("./UserCreateOrConnectWithoutOfficeContactInput.schema"), exports); +__exportStar(require("./UserCreateOrConnectWithoutOfficeHoursInput.schema.d"), exports); __exportStar(require("./UserCreateOrConnectWithoutOfficeHoursInput.schema"), exports); +__exportStar(require("./UserCreateOrConnectWithoutPatientConversationsInput.schema.d"), exports); __exportStar(require("./UserCreateOrConnectWithoutPatientConversationsInput.schema"), exports); __exportStar(require("./UserCreateOrConnectWithoutPatientsInput.schema.d"), exports); __exportStar(require("./UserCreateOrConnectWithoutPatientsInput.schema"), exports); +__exportStar(require("./UserCreateOrConnectWithoutProcedureTimeslotInput.schema.d"), exports); __exportStar(require("./UserCreateOrConnectWithoutProcedureTimeslotInput.schema"), exports); +__exportStar(require("./UserCreateOrConnectWithoutSeleniumSettingsInput.schema"), exports); +__exportStar(require("./UserCreateOrConnectWithoutShoppingVendorsInput.schema.d"), exports); __exportStar(require("./UserCreateOrConnectWithoutShoppingVendorsInput.schema"), exports); __exportStar(require("./UserCreateOrConnectWithoutStaffInput.schema.d"), exports); __exportStar(require("./UserCreateOrConnectWithoutStaffInput.schema"), exports); +__exportStar(require("./UserCreateOrConnectWithoutTwilioSettingsInput.schema.d"), exports); __exportStar(require("./UserCreateOrConnectWithoutTwilioSettingsInput.schema"), exports); __exportStar(require("./UserCreateOrConnectWithoutUpdatedPaymentsInput.schema.d"), exports); __exportStar(require("./UserCreateOrConnectWithoutUpdatedPaymentsInput.schema"), exports); +__exportStar(require("./UserCreateWithoutAiSettingsInput.schema.d"), exports); __exportStar(require("./UserCreateWithoutAiSettingsInput.schema"), exports); __exportStar(require("./UserCreateWithoutAppointmentsInput.schema.d"), exports); __exportStar(require("./UserCreateWithoutAppointmentsInput.schema"), exports); @@ -3795,22 +4505,31 @@ __exportStar(require("./UserCreateWithoutCloudFoldersInput.schema.d"), exports); __exportStar(require("./UserCreateWithoutCloudFoldersInput.schema"), exports); __exportStar(require("./UserCreateWithoutCommunicationsInput.schema.d"), exports); __exportStar(require("./UserCreateWithoutCommunicationsInput.schema"), exports); +__exportStar(require("./UserCreateWithoutInsuranceContactsInput.schema.d"), exports); __exportStar(require("./UserCreateWithoutInsuranceContactsInput.schema"), exports); __exportStar(require("./UserCreateWithoutInsuranceCredentialsInput.schema.d"), exports); __exportStar(require("./UserCreateWithoutInsuranceCredentialsInput.schema"), exports); +__exportStar(require("./UserCreateWithoutLabRxTemplatesInput.schema"), exports); __exportStar(require("./UserCreateWithoutNotificationsInput.schema.d"), exports); __exportStar(require("./UserCreateWithoutNotificationsInput.schema"), exports); __exportStar(require("./UserCreateWithoutNpiProvidersInput.schema.d"), exports); __exportStar(require("./UserCreateWithoutNpiProvidersInput.schema"), exports); +__exportStar(require("./UserCreateWithoutOfficeContactInput.schema.d"), exports); __exportStar(require("./UserCreateWithoutOfficeContactInput.schema"), exports); +__exportStar(require("./UserCreateWithoutOfficeHoursInput.schema.d"), exports); __exportStar(require("./UserCreateWithoutOfficeHoursInput.schema"), exports); +__exportStar(require("./UserCreateWithoutPatientConversationsInput.schema.d"), exports); __exportStar(require("./UserCreateWithoutPatientConversationsInput.schema"), exports); __exportStar(require("./UserCreateWithoutPatientsInput.schema.d"), exports); __exportStar(require("./UserCreateWithoutPatientsInput.schema"), exports); +__exportStar(require("./UserCreateWithoutProcedureTimeslotInput.schema.d"), exports); __exportStar(require("./UserCreateWithoutProcedureTimeslotInput.schema"), exports); +__exportStar(require("./UserCreateWithoutSeleniumSettingsInput.schema"), exports); +__exportStar(require("./UserCreateWithoutShoppingVendorsInput.schema.d"), exports); __exportStar(require("./UserCreateWithoutShoppingVendorsInput.schema"), exports); __exportStar(require("./UserCreateWithoutStaffInput.schema.d"), exports); __exportStar(require("./UserCreateWithoutStaffInput.schema"), exports); +__exportStar(require("./UserCreateWithoutTwilioSettingsInput.schema.d"), exports); __exportStar(require("./UserCreateWithoutTwilioSettingsInput.schema"), exports); __exportStar(require("./UserCreateWithoutUpdatedPaymentsInput.schema.d"), exports); __exportStar(require("./UserCreateWithoutUpdatedPaymentsInput.schema"), exports); @@ -3842,6 +4561,7 @@ __exportStar(require("./UserSumOrderByAggregateInput.schema.d"), exports); __exportStar(require("./UserSumOrderByAggregateInput.schema"), exports); __exportStar(require("./UserUncheckedCreateInput.schema.d"), exports); __exportStar(require("./UserUncheckedCreateInput.schema"), exports); +__exportStar(require("./UserUncheckedCreateWithoutAiSettingsInput.schema.d"), exports); __exportStar(require("./UserUncheckedCreateWithoutAiSettingsInput.schema"), exports); __exportStar(require("./UserUncheckedCreateWithoutAppointmentsInput.schema.d"), exports); __exportStar(require("./UserUncheckedCreateWithoutAppointmentsInput.schema"), exports); @@ -3857,22 +4577,31 @@ __exportStar(require("./UserUncheckedCreateWithoutCloudFoldersInput.schema.d"), __exportStar(require("./UserUncheckedCreateWithoutCloudFoldersInput.schema"), exports); __exportStar(require("./UserUncheckedCreateWithoutCommunicationsInput.schema.d"), exports); __exportStar(require("./UserUncheckedCreateWithoutCommunicationsInput.schema"), exports); +__exportStar(require("./UserUncheckedCreateWithoutInsuranceContactsInput.schema.d"), exports); __exportStar(require("./UserUncheckedCreateWithoutInsuranceContactsInput.schema"), exports); __exportStar(require("./UserUncheckedCreateWithoutInsuranceCredentialsInput.schema.d"), exports); __exportStar(require("./UserUncheckedCreateWithoutInsuranceCredentialsInput.schema"), exports); +__exportStar(require("./UserUncheckedCreateWithoutLabRxTemplatesInput.schema"), exports); __exportStar(require("./UserUncheckedCreateWithoutNotificationsInput.schema.d"), exports); __exportStar(require("./UserUncheckedCreateWithoutNotificationsInput.schema"), exports); __exportStar(require("./UserUncheckedCreateWithoutNpiProvidersInput.schema.d"), exports); __exportStar(require("./UserUncheckedCreateWithoutNpiProvidersInput.schema"), exports); +__exportStar(require("./UserUncheckedCreateWithoutOfficeContactInput.schema.d"), exports); __exportStar(require("./UserUncheckedCreateWithoutOfficeContactInput.schema"), exports); +__exportStar(require("./UserUncheckedCreateWithoutOfficeHoursInput.schema.d"), exports); __exportStar(require("./UserUncheckedCreateWithoutOfficeHoursInput.schema"), exports); +__exportStar(require("./UserUncheckedCreateWithoutPatientConversationsInput.schema.d"), exports); __exportStar(require("./UserUncheckedCreateWithoutPatientConversationsInput.schema"), exports); __exportStar(require("./UserUncheckedCreateWithoutPatientsInput.schema.d"), exports); __exportStar(require("./UserUncheckedCreateWithoutPatientsInput.schema"), exports); +__exportStar(require("./UserUncheckedCreateWithoutProcedureTimeslotInput.schema.d"), exports); __exportStar(require("./UserUncheckedCreateWithoutProcedureTimeslotInput.schema"), exports); +__exportStar(require("./UserUncheckedCreateWithoutSeleniumSettingsInput.schema"), exports); +__exportStar(require("./UserUncheckedCreateWithoutShoppingVendorsInput.schema.d"), exports); __exportStar(require("./UserUncheckedCreateWithoutShoppingVendorsInput.schema"), exports); __exportStar(require("./UserUncheckedCreateWithoutStaffInput.schema.d"), exports); __exportStar(require("./UserUncheckedCreateWithoutStaffInput.schema"), exports); +__exportStar(require("./UserUncheckedCreateWithoutTwilioSettingsInput.schema.d"), exports); __exportStar(require("./UserUncheckedCreateWithoutTwilioSettingsInput.schema"), exports); __exportStar(require("./UserUncheckedCreateWithoutUpdatedPaymentsInput.schema.d"), exports); __exportStar(require("./UserUncheckedCreateWithoutUpdatedPaymentsInput.schema"), exports); @@ -3880,6 +4609,7 @@ __exportStar(require("./UserUncheckedUpdateInput.schema.d"), exports); __exportStar(require("./UserUncheckedUpdateInput.schema"), exports); __exportStar(require("./UserUncheckedUpdateManyInput.schema.d"), exports); __exportStar(require("./UserUncheckedUpdateManyInput.schema"), exports); +__exportStar(require("./UserUncheckedUpdateWithoutAiSettingsInput.schema.d"), exports); __exportStar(require("./UserUncheckedUpdateWithoutAiSettingsInput.schema"), exports); __exportStar(require("./UserUncheckedUpdateWithoutAppointmentsInput.schema.d"), exports); __exportStar(require("./UserUncheckedUpdateWithoutAppointmentsInput.schema"), exports); @@ -3895,22 +4625,31 @@ __exportStar(require("./UserUncheckedUpdateWithoutCloudFoldersInput.schema.d"), __exportStar(require("./UserUncheckedUpdateWithoutCloudFoldersInput.schema"), exports); __exportStar(require("./UserUncheckedUpdateWithoutCommunicationsInput.schema.d"), exports); __exportStar(require("./UserUncheckedUpdateWithoutCommunicationsInput.schema"), exports); +__exportStar(require("./UserUncheckedUpdateWithoutInsuranceContactsInput.schema.d"), exports); __exportStar(require("./UserUncheckedUpdateWithoutInsuranceContactsInput.schema"), exports); __exportStar(require("./UserUncheckedUpdateWithoutInsuranceCredentialsInput.schema.d"), exports); __exportStar(require("./UserUncheckedUpdateWithoutInsuranceCredentialsInput.schema"), exports); +__exportStar(require("./UserUncheckedUpdateWithoutLabRxTemplatesInput.schema"), exports); __exportStar(require("./UserUncheckedUpdateWithoutNotificationsInput.schema.d"), exports); __exportStar(require("./UserUncheckedUpdateWithoutNotificationsInput.schema"), exports); __exportStar(require("./UserUncheckedUpdateWithoutNpiProvidersInput.schema.d"), exports); __exportStar(require("./UserUncheckedUpdateWithoutNpiProvidersInput.schema"), exports); +__exportStar(require("./UserUncheckedUpdateWithoutOfficeContactInput.schema.d"), exports); __exportStar(require("./UserUncheckedUpdateWithoutOfficeContactInput.schema"), exports); +__exportStar(require("./UserUncheckedUpdateWithoutOfficeHoursInput.schema.d"), exports); __exportStar(require("./UserUncheckedUpdateWithoutOfficeHoursInput.schema"), exports); +__exportStar(require("./UserUncheckedUpdateWithoutPatientConversationsInput.schema.d"), exports); __exportStar(require("./UserUncheckedUpdateWithoutPatientConversationsInput.schema"), exports); __exportStar(require("./UserUncheckedUpdateWithoutPatientsInput.schema.d"), exports); __exportStar(require("./UserUncheckedUpdateWithoutPatientsInput.schema"), exports); +__exportStar(require("./UserUncheckedUpdateWithoutProcedureTimeslotInput.schema.d"), exports); __exportStar(require("./UserUncheckedUpdateWithoutProcedureTimeslotInput.schema"), exports); +__exportStar(require("./UserUncheckedUpdateWithoutSeleniumSettingsInput.schema"), exports); +__exportStar(require("./UserUncheckedUpdateWithoutShoppingVendorsInput.schema.d"), exports); __exportStar(require("./UserUncheckedUpdateWithoutShoppingVendorsInput.schema"), exports); __exportStar(require("./UserUncheckedUpdateWithoutStaffInput.schema.d"), exports); __exportStar(require("./UserUncheckedUpdateWithoutStaffInput.schema"), exports); +__exportStar(require("./UserUncheckedUpdateWithoutTwilioSettingsInput.schema.d"), exports); __exportStar(require("./UserUncheckedUpdateWithoutTwilioSettingsInput.schema"), exports); __exportStar(require("./UserUncheckedUpdateWithoutUpdatedPaymentsInput.schema.d"), exports); __exportStar(require("./UserUncheckedUpdateWithoutUpdatedPaymentsInput.schema"), exports); @@ -3918,6 +4657,7 @@ __exportStar(require("./UserUpdateInput.schema.d"), exports); __exportStar(require("./UserUpdateInput.schema"), exports); __exportStar(require("./UserUpdateManyMutationInput.schema.d"), exports); __exportStar(require("./UserUpdateManyMutationInput.schema"), exports); +__exportStar(require("./UserUpdateOneRequiredWithoutAiSettingsNestedInput.schema.d"), exports); __exportStar(require("./UserUpdateOneRequiredWithoutAiSettingsNestedInput.schema"), exports); __exportStar(require("./UserUpdateOneRequiredWithoutAppointmentsNestedInput.schema.d"), exports); __exportStar(require("./UserUpdateOneRequiredWithoutAppointmentsNestedInput.schema"), exports); @@ -3929,20 +4669,29 @@ __exportStar(require("./UserUpdateOneRequiredWithoutCloudFilesNestedInput.schema __exportStar(require("./UserUpdateOneRequiredWithoutCloudFilesNestedInput.schema"), exports); __exportStar(require("./UserUpdateOneRequiredWithoutCloudFoldersNestedInput.schema.d"), exports); __exportStar(require("./UserUpdateOneRequiredWithoutCloudFoldersNestedInput.schema"), exports); +__exportStar(require("./UserUpdateOneRequiredWithoutInsuranceContactsNestedInput.schema.d"), exports); __exportStar(require("./UserUpdateOneRequiredWithoutInsuranceContactsNestedInput.schema"), exports); __exportStar(require("./UserUpdateOneRequiredWithoutInsuranceCredentialsNestedInput.schema.d"), exports); __exportStar(require("./UserUpdateOneRequiredWithoutInsuranceCredentialsNestedInput.schema"), exports); +__exportStar(require("./UserUpdateOneRequiredWithoutLabRxTemplatesNestedInput.schema"), exports); __exportStar(require("./UserUpdateOneRequiredWithoutNotificationsNestedInput.schema.d"), exports); __exportStar(require("./UserUpdateOneRequiredWithoutNotificationsNestedInput.schema"), exports); __exportStar(require("./UserUpdateOneRequiredWithoutNpiProvidersNestedInput.schema.d"), exports); __exportStar(require("./UserUpdateOneRequiredWithoutNpiProvidersNestedInput.schema"), exports); +__exportStar(require("./UserUpdateOneRequiredWithoutOfficeContactNestedInput.schema.d"), exports); __exportStar(require("./UserUpdateOneRequiredWithoutOfficeContactNestedInput.schema"), exports); +__exportStar(require("./UserUpdateOneRequiredWithoutOfficeHoursNestedInput.schema.d"), exports); __exportStar(require("./UserUpdateOneRequiredWithoutOfficeHoursNestedInput.schema"), exports); +__exportStar(require("./UserUpdateOneRequiredWithoutPatientConversationsNestedInput.schema.d"), exports); __exportStar(require("./UserUpdateOneRequiredWithoutPatientConversationsNestedInput.schema"), exports); __exportStar(require("./UserUpdateOneRequiredWithoutPatientsNestedInput.schema.d"), exports); __exportStar(require("./UserUpdateOneRequiredWithoutPatientsNestedInput.schema"), exports); +__exportStar(require("./UserUpdateOneRequiredWithoutProcedureTimeslotNestedInput.schema.d"), exports); __exportStar(require("./UserUpdateOneRequiredWithoutProcedureTimeslotNestedInput.schema"), exports); +__exportStar(require("./UserUpdateOneRequiredWithoutSeleniumSettingsNestedInput.schema"), exports); +__exportStar(require("./UserUpdateOneRequiredWithoutShoppingVendorsNestedInput.schema.d"), exports); __exportStar(require("./UserUpdateOneRequiredWithoutShoppingVendorsNestedInput.schema"), exports); +__exportStar(require("./UserUpdateOneRequiredWithoutTwilioSettingsNestedInput.schema.d"), exports); __exportStar(require("./UserUpdateOneRequiredWithoutTwilioSettingsNestedInput.schema"), exports); __exportStar(require("./UserUpdateOneWithoutClaimsNestedInput.schema.d"), exports); __exportStar(require("./UserUpdateOneWithoutClaimsNestedInput.schema"), exports); @@ -3952,6 +4701,7 @@ __exportStar(require("./UserUpdateOneWithoutStaffNestedInput.schema.d"), exports __exportStar(require("./UserUpdateOneWithoutStaffNestedInput.schema"), exports); __exportStar(require("./UserUpdateOneWithoutUpdatedPaymentsNestedInput.schema.d"), exports); __exportStar(require("./UserUpdateOneWithoutUpdatedPaymentsNestedInput.schema"), exports); +__exportStar(require("./UserUpdateToOneWithWhereWithoutAiSettingsInput.schema.d"), exports); __exportStar(require("./UserUpdateToOneWithWhereWithoutAiSettingsInput.schema"), exports); __exportStar(require("./UserUpdateToOneWithWhereWithoutAppointmentsInput.schema.d"), exports); __exportStar(require("./UserUpdateToOneWithWhereWithoutAppointmentsInput.schema"), exports); @@ -3967,25 +4717,35 @@ __exportStar(require("./UserUpdateToOneWithWhereWithoutCloudFoldersInput.schema. __exportStar(require("./UserUpdateToOneWithWhereWithoutCloudFoldersInput.schema"), exports); __exportStar(require("./UserUpdateToOneWithWhereWithoutCommunicationsInput.schema.d"), exports); __exportStar(require("./UserUpdateToOneWithWhereWithoutCommunicationsInput.schema"), exports); +__exportStar(require("./UserUpdateToOneWithWhereWithoutInsuranceContactsInput.schema.d"), exports); __exportStar(require("./UserUpdateToOneWithWhereWithoutInsuranceContactsInput.schema"), exports); __exportStar(require("./UserUpdateToOneWithWhereWithoutInsuranceCredentialsInput.schema.d"), exports); __exportStar(require("./UserUpdateToOneWithWhereWithoutInsuranceCredentialsInput.schema"), exports); +__exportStar(require("./UserUpdateToOneWithWhereWithoutLabRxTemplatesInput.schema"), exports); __exportStar(require("./UserUpdateToOneWithWhereWithoutNotificationsInput.schema.d"), exports); __exportStar(require("./UserUpdateToOneWithWhereWithoutNotificationsInput.schema"), exports); __exportStar(require("./UserUpdateToOneWithWhereWithoutNpiProvidersInput.schema.d"), exports); __exportStar(require("./UserUpdateToOneWithWhereWithoutNpiProvidersInput.schema"), exports); +__exportStar(require("./UserUpdateToOneWithWhereWithoutOfficeContactInput.schema.d"), exports); __exportStar(require("./UserUpdateToOneWithWhereWithoutOfficeContactInput.schema"), exports); +__exportStar(require("./UserUpdateToOneWithWhereWithoutOfficeHoursInput.schema.d"), exports); __exportStar(require("./UserUpdateToOneWithWhereWithoutOfficeHoursInput.schema"), exports); +__exportStar(require("./UserUpdateToOneWithWhereWithoutPatientConversationsInput.schema.d"), exports); __exportStar(require("./UserUpdateToOneWithWhereWithoutPatientConversationsInput.schema"), exports); __exportStar(require("./UserUpdateToOneWithWhereWithoutPatientsInput.schema.d"), exports); __exportStar(require("./UserUpdateToOneWithWhereWithoutPatientsInput.schema"), exports); +__exportStar(require("./UserUpdateToOneWithWhereWithoutProcedureTimeslotInput.schema.d"), exports); __exportStar(require("./UserUpdateToOneWithWhereWithoutProcedureTimeslotInput.schema"), exports); +__exportStar(require("./UserUpdateToOneWithWhereWithoutSeleniumSettingsInput.schema"), exports); +__exportStar(require("./UserUpdateToOneWithWhereWithoutShoppingVendorsInput.schema.d"), exports); __exportStar(require("./UserUpdateToOneWithWhereWithoutShoppingVendorsInput.schema"), exports); __exportStar(require("./UserUpdateToOneWithWhereWithoutStaffInput.schema.d"), exports); __exportStar(require("./UserUpdateToOneWithWhereWithoutStaffInput.schema"), exports); +__exportStar(require("./UserUpdateToOneWithWhereWithoutTwilioSettingsInput.schema.d"), exports); __exportStar(require("./UserUpdateToOneWithWhereWithoutTwilioSettingsInput.schema"), exports); __exportStar(require("./UserUpdateToOneWithWhereWithoutUpdatedPaymentsInput.schema.d"), exports); __exportStar(require("./UserUpdateToOneWithWhereWithoutUpdatedPaymentsInput.schema"), exports); +__exportStar(require("./UserUpdateWithoutAiSettingsInput.schema.d"), exports); __exportStar(require("./UserUpdateWithoutAiSettingsInput.schema"), exports); __exportStar(require("./UserUpdateWithoutAppointmentsInput.schema.d"), exports); __exportStar(require("./UserUpdateWithoutAppointmentsInput.schema"), exports); @@ -4001,25 +4761,35 @@ __exportStar(require("./UserUpdateWithoutCloudFoldersInput.schema.d"), exports); __exportStar(require("./UserUpdateWithoutCloudFoldersInput.schema"), exports); __exportStar(require("./UserUpdateWithoutCommunicationsInput.schema.d"), exports); __exportStar(require("./UserUpdateWithoutCommunicationsInput.schema"), exports); +__exportStar(require("./UserUpdateWithoutInsuranceContactsInput.schema.d"), exports); __exportStar(require("./UserUpdateWithoutInsuranceContactsInput.schema"), exports); __exportStar(require("./UserUpdateWithoutInsuranceCredentialsInput.schema.d"), exports); __exportStar(require("./UserUpdateWithoutInsuranceCredentialsInput.schema"), exports); +__exportStar(require("./UserUpdateWithoutLabRxTemplatesInput.schema"), exports); __exportStar(require("./UserUpdateWithoutNotificationsInput.schema.d"), exports); __exportStar(require("./UserUpdateWithoutNotificationsInput.schema"), exports); __exportStar(require("./UserUpdateWithoutNpiProvidersInput.schema.d"), exports); __exportStar(require("./UserUpdateWithoutNpiProvidersInput.schema"), exports); +__exportStar(require("./UserUpdateWithoutOfficeContactInput.schema.d"), exports); __exportStar(require("./UserUpdateWithoutOfficeContactInput.schema"), exports); +__exportStar(require("./UserUpdateWithoutOfficeHoursInput.schema.d"), exports); __exportStar(require("./UserUpdateWithoutOfficeHoursInput.schema"), exports); +__exportStar(require("./UserUpdateWithoutPatientConversationsInput.schema.d"), exports); __exportStar(require("./UserUpdateWithoutPatientConversationsInput.schema"), exports); __exportStar(require("./UserUpdateWithoutPatientsInput.schema.d"), exports); __exportStar(require("./UserUpdateWithoutPatientsInput.schema"), exports); +__exportStar(require("./UserUpdateWithoutProcedureTimeslotInput.schema.d"), exports); __exportStar(require("./UserUpdateWithoutProcedureTimeslotInput.schema"), exports); +__exportStar(require("./UserUpdateWithoutSeleniumSettingsInput.schema"), exports); +__exportStar(require("./UserUpdateWithoutShoppingVendorsInput.schema.d"), exports); __exportStar(require("./UserUpdateWithoutShoppingVendorsInput.schema"), exports); __exportStar(require("./UserUpdateWithoutStaffInput.schema.d"), exports); __exportStar(require("./UserUpdateWithoutStaffInput.schema"), exports); +__exportStar(require("./UserUpdateWithoutTwilioSettingsInput.schema.d"), exports); __exportStar(require("./UserUpdateWithoutTwilioSettingsInput.schema"), exports); __exportStar(require("./UserUpdateWithoutUpdatedPaymentsInput.schema.d"), exports); __exportStar(require("./UserUpdateWithoutUpdatedPaymentsInput.schema"), exports); +__exportStar(require("./UserUpsertWithoutAiSettingsInput.schema.d"), exports); __exportStar(require("./UserUpsertWithoutAiSettingsInput.schema"), exports); __exportStar(require("./UserUpsertWithoutAppointmentsInput.schema.d"), exports); __exportStar(require("./UserUpsertWithoutAppointmentsInput.schema"), exports); @@ -4035,22 +4805,31 @@ __exportStar(require("./UserUpsertWithoutCloudFoldersInput.schema.d"), exports); __exportStar(require("./UserUpsertWithoutCloudFoldersInput.schema"), exports); __exportStar(require("./UserUpsertWithoutCommunicationsInput.schema.d"), exports); __exportStar(require("./UserUpsertWithoutCommunicationsInput.schema"), exports); +__exportStar(require("./UserUpsertWithoutInsuranceContactsInput.schema.d"), exports); __exportStar(require("./UserUpsertWithoutInsuranceContactsInput.schema"), exports); __exportStar(require("./UserUpsertWithoutInsuranceCredentialsInput.schema.d"), exports); __exportStar(require("./UserUpsertWithoutInsuranceCredentialsInput.schema"), exports); +__exportStar(require("./UserUpsertWithoutLabRxTemplatesInput.schema"), exports); __exportStar(require("./UserUpsertWithoutNotificationsInput.schema.d"), exports); __exportStar(require("./UserUpsertWithoutNotificationsInput.schema"), exports); __exportStar(require("./UserUpsertWithoutNpiProvidersInput.schema.d"), exports); __exportStar(require("./UserUpsertWithoutNpiProvidersInput.schema"), exports); +__exportStar(require("./UserUpsertWithoutOfficeContactInput.schema.d"), exports); __exportStar(require("./UserUpsertWithoutOfficeContactInput.schema"), exports); +__exportStar(require("./UserUpsertWithoutOfficeHoursInput.schema.d"), exports); __exportStar(require("./UserUpsertWithoutOfficeHoursInput.schema"), exports); +__exportStar(require("./UserUpsertWithoutPatientConversationsInput.schema.d"), exports); __exportStar(require("./UserUpsertWithoutPatientConversationsInput.schema"), exports); __exportStar(require("./UserUpsertWithoutPatientsInput.schema.d"), exports); __exportStar(require("./UserUpsertWithoutPatientsInput.schema"), exports); +__exportStar(require("./UserUpsertWithoutProcedureTimeslotInput.schema.d"), exports); __exportStar(require("./UserUpsertWithoutProcedureTimeslotInput.schema"), exports); +__exportStar(require("./UserUpsertWithoutSeleniumSettingsInput.schema"), exports); +__exportStar(require("./UserUpsertWithoutShoppingVendorsInput.schema.d"), exports); __exportStar(require("./UserUpsertWithoutShoppingVendorsInput.schema"), exports); __exportStar(require("./UserUpsertWithoutStaffInput.schema.d"), exports); __exportStar(require("./UserUpsertWithoutStaffInput.schema"), exports); +__exportStar(require("./UserUpsertWithoutTwilioSettingsInput.schema.d"), exports); __exportStar(require("./UserUpsertWithoutTwilioSettingsInput.schema"), exports); __exportStar(require("./UserUpsertWithoutUpdatedPaymentsInput.schema.d"), exports); __exportStar(require("./UserUpsertWithoutUpdatedPaymentsInput.schema"), exports); diff --git a/packages/db/shared/schemas/objects/index.ts b/packages/db/shared/schemas/objects/index.ts index 082e0860..019eabe1 100755 --- a/packages/db/shared/schemas/objects/index.ts +++ b/packages/db/shared/schemas/objects/index.ts @@ -3,42 +3,79 @@ * Auto-generated - do not edit manually */ +export * from './AiSettingsArgs.schema.d'; export * from './AiSettingsArgs.schema'; +export * from './AiSettingsAvgAggregateInput.schema.d'; export * from './AiSettingsAvgAggregateInput.schema'; +export * from './AiSettingsAvgOrderByAggregateInput.schema.d'; export * from './AiSettingsAvgOrderByAggregateInput.schema'; +export * from './AiSettingsCountAggregateInput.schema.d'; export * from './AiSettingsCountAggregateInput.schema'; +export * from './AiSettingsCountOrderByAggregateInput.schema.d'; export * from './AiSettingsCountOrderByAggregateInput.schema'; +export * from './AiSettingsCreateInput.schema.d'; export * from './AiSettingsCreateInput.schema'; +export * from './AiSettingsCreateManyInput.schema.d'; export * from './AiSettingsCreateManyInput.schema'; +export * from './AiSettingsCreateNestedOneWithoutUserInput.schema.d'; export * from './AiSettingsCreateNestedOneWithoutUserInput.schema'; +export * from './AiSettingsCreateOrConnectWithoutUserInput.schema.d'; export * from './AiSettingsCreateOrConnectWithoutUserInput.schema'; +export * from './AiSettingsCreateWithoutUserInput.schema.d'; export * from './AiSettingsCreateWithoutUserInput.schema'; +export * from './AiSettingsInclude.schema.d'; export * from './AiSettingsInclude.schema'; +export * from './AiSettingsMaxAggregateInput.schema.d'; export * from './AiSettingsMaxAggregateInput.schema'; +export * from './AiSettingsMaxOrderByAggregateInput.schema.d'; export * from './AiSettingsMaxOrderByAggregateInput.schema'; +export * from './AiSettingsMinAggregateInput.schema.d'; export * from './AiSettingsMinAggregateInput.schema'; +export * from './AiSettingsMinOrderByAggregateInput.schema.d'; export * from './AiSettingsMinOrderByAggregateInput.schema'; +export * from './AiSettingsNullableScalarRelationFilter.schema.d'; export * from './AiSettingsNullableScalarRelationFilter.schema'; +export * from './AiSettingsOrderByWithAggregationInput.schema.d'; export * from './AiSettingsOrderByWithAggregationInput.schema'; +export * from './AiSettingsOrderByWithRelationInput.schema.d'; export * from './AiSettingsOrderByWithRelationInput.schema'; +export * from './AiSettingsScalarWhereWithAggregatesInput.schema.d'; export * from './AiSettingsScalarWhereWithAggregatesInput.schema'; +export * from './AiSettingsSelect.schema.d'; export * from './AiSettingsSelect.schema'; +export * from './AiSettingsSumAggregateInput.schema.d'; export * from './AiSettingsSumAggregateInput.schema'; +export * from './AiSettingsSumOrderByAggregateInput.schema.d'; export * from './AiSettingsSumOrderByAggregateInput.schema'; +export * from './AiSettingsUncheckedCreateInput.schema.d'; export * from './AiSettingsUncheckedCreateInput.schema'; +export * from './AiSettingsUncheckedCreateNestedOneWithoutUserInput.schema.d'; export * from './AiSettingsUncheckedCreateNestedOneWithoutUserInput.schema'; +export * from './AiSettingsUncheckedCreateWithoutUserInput.schema.d'; export * from './AiSettingsUncheckedCreateWithoutUserInput.schema'; +export * from './AiSettingsUncheckedUpdateInput.schema.d'; export * from './AiSettingsUncheckedUpdateInput.schema'; +export * from './AiSettingsUncheckedUpdateManyInput.schema.d'; export * from './AiSettingsUncheckedUpdateManyInput.schema'; +export * from './AiSettingsUncheckedUpdateOneWithoutUserNestedInput.schema.d'; export * from './AiSettingsUncheckedUpdateOneWithoutUserNestedInput.schema'; +export * from './AiSettingsUncheckedUpdateWithoutUserInput.schema.d'; export * from './AiSettingsUncheckedUpdateWithoutUserInput.schema'; +export * from './AiSettingsUpdateInput.schema.d'; export * from './AiSettingsUpdateInput.schema'; +export * from './AiSettingsUpdateManyMutationInput.schema.d'; export * from './AiSettingsUpdateManyMutationInput.schema'; +export * from './AiSettingsUpdateOneWithoutUserNestedInput.schema.d'; export * from './AiSettingsUpdateOneWithoutUserNestedInput.schema'; +export * from './AiSettingsUpdateToOneWithWhereWithoutUserInput.schema.d'; export * from './AiSettingsUpdateToOneWithWhereWithoutUserInput.schema'; +export * from './AiSettingsUpdateWithoutUserInput.schema.d'; export * from './AiSettingsUpdateWithoutUserInput.schema'; +export * from './AiSettingsUpsertWithoutUserInput.schema.d'; export * from './AiSettingsUpsertWithoutUserInput.schema'; +export * from './AiSettingsWhereInput.schema.d'; export * from './AiSettingsWhereInput.schema'; +export * from './AiSettingsWhereUniqueInput.schema.d'; export * from './AiSettingsWhereUniqueInput.schema'; export * from './AppointmentArgs.schema.d'; export * from './AppointmentArgs.schema'; @@ -54,6 +91,7 @@ export * from './AppointmentCountOutputTypeArgs.schema.d'; export * from './AppointmentCountOutputTypeArgs.schema'; export * from './AppointmentCountOutputTypeCountClaimsArgs.schema.d'; export * from './AppointmentCountOutputTypeCountClaimsArgs.schema'; +export * from './AppointmentCountOutputTypeCountFilesArgs.schema.d'; export * from './AppointmentCountOutputTypeCountFilesArgs.schema'; export * from './AppointmentCountOutputTypeCountProceduresArgs.schema.d'; export * from './AppointmentCountOutputTypeCountProceduresArgs.schema'; @@ -63,6 +101,8 @@ export * from './AppointmentCreateInput.schema.d'; export * from './AppointmentCreateInput.schema'; export * from './AppointmentCreateManyInput.schema.d'; export * from './AppointmentCreateManyInput.schema'; +export * from './AppointmentCreateManyNpiProviderInput.schema'; +export * from './AppointmentCreateManyNpiProviderInputEnvelope.schema'; export * from './AppointmentCreateManyPatientInput.schema.d'; export * from './AppointmentCreateManyPatientInput.schema'; export * from './AppointmentCreateManyPatientInputEnvelope.schema.d'; @@ -75,6 +115,7 @@ export * from './AppointmentCreateManyUserInput.schema.d'; export * from './AppointmentCreateManyUserInput.schema'; export * from './AppointmentCreateManyUserInputEnvelope.schema.d'; export * from './AppointmentCreateManyUserInputEnvelope.schema'; +export * from './AppointmentCreateNestedManyWithoutNpiProviderInput.schema'; export * from './AppointmentCreateNestedManyWithoutPatientInput.schema.d'; export * from './AppointmentCreateNestedManyWithoutPatientInput.schema'; export * from './AppointmentCreateNestedManyWithoutStaffInput.schema.d'; @@ -83,12 +124,15 @@ export * from './AppointmentCreateNestedManyWithoutUserInput.schema.d'; export * from './AppointmentCreateNestedManyWithoutUserInput.schema'; export * from './AppointmentCreateNestedOneWithoutClaimsInput.schema.d'; export * from './AppointmentCreateNestedOneWithoutClaimsInput.schema'; +export * from './AppointmentCreateNestedOneWithoutFilesInput.schema.d'; export * from './AppointmentCreateNestedOneWithoutFilesInput.schema'; export * from './AppointmentCreateNestedOneWithoutProceduresInput.schema.d'; export * from './AppointmentCreateNestedOneWithoutProceduresInput.schema'; export * from './AppointmentCreateOrConnectWithoutClaimsInput.schema.d'; export * from './AppointmentCreateOrConnectWithoutClaimsInput.schema'; +export * from './AppointmentCreateOrConnectWithoutFilesInput.schema.d'; export * from './AppointmentCreateOrConnectWithoutFilesInput.schema'; +export * from './AppointmentCreateOrConnectWithoutNpiProviderInput.schema'; export * from './AppointmentCreateOrConnectWithoutPatientInput.schema.d'; export * from './AppointmentCreateOrConnectWithoutPatientInput.schema'; export * from './AppointmentCreateOrConnectWithoutProceduresInput.schema.d'; @@ -99,7 +143,9 @@ export * from './AppointmentCreateOrConnectWithoutUserInput.schema.d'; export * from './AppointmentCreateOrConnectWithoutUserInput.schema'; export * from './AppointmentCreateWithoutClaimsInput.schema.d'; export * from './AppointmentCreateWithoutClaimsInput.schema'; +export * from './AppointmentCreateWithoutFilesInput.schema.d'; export * from './AppointmentCreateWithoutFilesInput.schema'; +export * from './AppointmentCreateWithoutNpiProviderInput.schema'; export * from './AppointmentCreateWithoutPatientInput.schema.d'; export * from './AppointmentCreateWithoutPatientInput.schema'; export * from './AppointmentCreateWithoutProceduresInput.schema.d'; @@ -108,48 +154,91 @@ export * from './AppointmentCreateWithoutStaffInput.schema.d'; export * from './AppointmentCreateWithoutStaffInput.schema'; export * from './AppointmentCreateWithoutUserInput.schema.d'; export * from './AppointmentCreateWithoutUserInput.schema'; +export * from './AppointmentFileArgs.schema.d'; export * from './AppointmentFileArgs.schema'; +export * from './AppointmentFileAvgAggregateInput.schema.d'; export * from './AppointmentFileAvgAggregateInput.schema'; +export * from './AppointmentFileAvgOrderByAggregateInput.schema.d'; export * from './AppointmentFileAvgOrderByAggregateInput.schema'; +export * from './AppointmentFileCountAggregateInput.schema.d'; export * from './AppointmentFileCountAggregateInput.schema'; +export * from './AppointmentFileCountOrderByAggregateInput.schema.d'; export * from './AppointmentFileCountOrderByAggregateInput.schema'; +export * from './AppointmentFileCreateInput.schema.d'; export * from './AppointmentFileCreateInput.schema'; +export * from './AppointmentFileCreateManyAppointmentInput.schema.d'; export * from './AppointmentFileCreateManyAppointmentInput.schema'; +export * from './AppointmentFileCreateManyAppointmentInputEnvelope.schema.d'; export * from './AppointmentFileCreateManyAppointmentInputEnvelope.schema'; +export * from './AppointmentFileCreateManyInput.schema.d'; export * from './AppointmentFileCreateManyInput.schema'; +export * from './AppointmentFileCreateNestedManyWithoutAppointmentInput.schema.d'; export * from './AppointmentFileCreateNestedManyWithoutAppointmentInput.schema'; +export * from './AppointmentFileCreateOrConnectWithoutAppointmentInput.schema.d'; export * from './AppointmentFileCreateOrConnectWithoutAppointmentInput.schema'; +export * from './AppointmentFileCreateWithoutAppointmentInput.schema.d'; export * from './AppointmentFileCreateWithoutAppointmentInput.schema'; +export * from './AppointmentFileInclude.schema.d'; export * from './AppointmentFileInclude.schema'; +export * from './AppointmentFileListRelationFilter.schema.d'; export * from './AppointmentFileListRelationFilter.schema'; +export * from './AppointmentFileMaxAggregateInput.schema.d'; export * from './AppointmentFileMaxAggregateInput.schema'; +export * from './AppointmentFileMaxOrderByAggregateInput.schema.d'; export * from './AppointmentFileMaxOrderByAggregateInput.schema'; +export * from './AppointmentFileMinAggregateInput.schema.d'; export * from './AppointmentFileMinAggregateInput.schema'; +export * from './AppointmentFileMinOrderByAggregateInput.schema.d'; export * from './AppointmentFileMinOrderByAggregateInput.schema'; +export * from './AppointmentFileOrderByRelationAggregateInput.schema.d'; export * from './AppointmentFileOrderByRelationAggregateInput.schema'; +export * from './AppointmentFileOrderByWithAggregationInput.schema.d'; export * from './AppointmentFileOrderByWithAggregationInput.schema'; +export * from './AppointmentFileOrderByWithRelationInput.schema.d'; export * from './AppointmentFileOrderByWithRelationInput.schema'; +export * from './AppointmentFileScalarWhereInput.schema.d'; export * from './AppointmentFileScalarWhereInput.schema'; +export * from './AppointmentFileScalarWhereWithAggregatesInput.schema.d'; export * from './AppointmentFileScalarWhereWithAggregatesInput.schema'; +export * from './AppointmentFileSelect.schema.d'; export * from './AppointmentFileSelect.schema'; +export * from './AppointmentFileSumAggregateInput.schema.d'; export * from './AppointmentFileSumAggregateInput.schema'; +export * from './AppointmentFileSumOrderByAggregateInput.schema.d'; export * from './AppointmentFileSumOrderByAggregateInput.schema'; +export * from './AppointmentFileUncheckedCreateInput.schema.d'; export * from './AppointmentFileUncheckedCreateInput.schema'; +export * from './AppointmentFileUncheckedCreateNestedManyWithoutAppointmentInput.schema.d'; export * from './AppointmentFileUncheckedCreateNestedManyWithoutAppointmentInput.schema'; +export * from './AppointmentFileUncheckedCreateWithoutAppointmentInput.schema.d'; export * from './AppointmentFileUncheckedCreateWithoutAppointmentInput.schema'; +export * from './AppointmentFileUncheckedUpdateInput.schema.d'; export * from './AppointmentFileUncheckedUpdateInput.schema'; +export * from './AppointmentFileUncheckedUpdateManyInput.schema.d'; export * from './AppointmentFileUncheckedUpdateManyInput.schema'; +export * from './AppointmentFileUncheckedUpdateManyWithoutAppointmentInput.schema.d'; export * from './AppointmentFileUncheckedUpdateManyWithoutAppointmentInput.schema'; +export * from './AppointmentFileUncheckedUpdateManyWithoutAppointmentNestedInput.schema.d'; export * from './AppointmentFileUncheckedUpdateManyWithoutAppointmentNestedInput.schema'; +export * from './AppointmentFileUncheckedUpdateWithoutAppointmentInput.schema.d'; export * from './AppointmentFileUncheckedUpdateWithoutAppointmentInput.schema'; +export * from './AppointmentFileUpdateInput.schema.d'; export * from './AppointmentFileUpdateInput.schema'; +export * from './AppointmentFileUpdateManyMutationInput.schema.d'; export * from './AppointmentFileUpdateManyMutationInput.schema'; +export * from './AppointmentFileUpdateManyWithWhereWithoutAppointmentInput.schema.d'; export * from './AppointmentFileUpdateManyWithWhereWithoutAppointmentInput.schema'; +export * from './AppointmentFileUpdateManyWithoutAppointmentNestedInput.schema.d'; export * from './AppointmentFileUpdateManyWithoutAppointmentNestedInput.schema'; +export * from './AppointmentFileUpdateWithWhereUniqueWithoutAppointmentInput.schema.d'; export * from './AppointmentFileUpdateWithWhereUniqueWithoutAppointmentInput.schema'; +export * from './AppointmentFileUpdateWithoutAppointmentInput.schema.d'; export * from './AppointmentFileUpdateWithoutAppointmentInput.schema'; +export * from './AppointmentFileUpsertWithWhereUniqueWithoutAppointmentInput.schema.d'; export * from './AppointmentFileUpsertWithWhereUniqueWithoutAppointmentInput.schema'; +export * from './AppointmentFileWhereInput.schema.d'; export * from './AppointmentFileWhereInput.schema'; +export * from './AppointmentFileWhereUniqueInput.schema.d'; export * from './AppointmentFileWhereUniqueInput.schema'; export * from './AppointmentInclude.schema.d'; export * from './AppointmentInclude.schema'; @@ -163,6 +252,7 @@ export * from './AppointmentMinAggregateInput.schema.d'; export * from './AppointmentMinAggregateInput.schema'; export * from './AppointmentMinOrderByAggregateInput.schema.d'; export * from './AppointmentMinOrderByAggregateInput.schema'; +export * from './AppointmentNullableScalarRelationFilter.schema.d'; export * from './AppointmentNullableScalarRelationFilter.schema'; export * from './AppointmentOrderByRelationAggregateInput.schema.d'; export * from './AppointmentOrderByRelationAggregateInput.schema'; @@ -330,6 +420,7 @@ export * from './AppointmentSumOrderByAggregateInput.schema.d'; export * from './AppointmentSumOrderByAggregateInput.schema'; export * from './AppointmentUncheckedCreateInput.schema.d'; export * from './AppointmentUncheckedCreateInput.schema'; +export * from './AppointmentUncheckedCreateNestedManyWithoutNpiProviderInput.schema'; export * from './AppointmentUncheckedCreateNestedManyWithoutPatientInput.schema.d'; export * from './AppointmentUncheckedCreateNestedManyWithoutPatientInput.schema'; export * from './AppointmentUncheckedCreateNestedManyWithoutStaffInput.schema.d'; @@ -338,7 +429,9 @@ export * from './AppointmentUncheckedCreateNestedManyWithoutUserInput.schema.d'; export * from './AppointmentUncheckedCreateNestedManyWithoutUserInput.schema'; export * from './AppointmentUncheckedCreateWithoutClaimsInput.schema.d'; export * from './AppointmentUncheckedCreateWithoutClaimsInput.schema'; +export * from './AppointmentUncheckedCreateWithoutFilesInput.schema.d'; export * from './AppointmentUncheckedCreateWithoutFilesInput.schema'; +export * from './AppointmentUncheckedCreateWithoutNpiProviderInput.schema'; export * from './AppointmentUncheckedCreateWithoutPatientInput.schema.d'; export * from './AppointmentUncheckedCreateWithoutPatientInput.schema'; export * from './AppointmentUncheckedCreateWithoutProceduresInput.schema.d'; @@ -351,6 +444,8 @@ export * from './AppointmentUncheckedUpdateInput.schema.d'; export * from './AppointmentUncheckedUpdateInput.schema'; export * from './AppointmentUncheckedUpdateManyInput.schema.d'; export * from './AppointmentUncheckedUpdateManyInput.schema'; +export * from './AppointmentUncheckedUpdateManyWithoutNpiProviderInput.schema'; +export * from './AppointmentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema'; export * from './AppointmentUncheckedUpdateManyWithoutPatientInput.schema.d'; export * from './AppointmentUncheckedUpdateManyWithoutPatientInput.schema'; export * from './AppointmentUncheckedUpdateManyWithoutPatientNestedInput.schema.d'; @@ -365,7 +460,9 @@ export * from './AppointmentUncheckedUpdateManyWithoutUserNestedInput.schema.d'; export * from './AppointmentUncheckedUpdateManyWithoutUserNestedInput.schema'; export * from './AppointmentUncheckedUpdateWithoutClaimsInput.schema.d'; export * from './AppointmentUncheckedUpdateWithoutClaimsInput.schema'; +export * from './AppointmentUncheckedUpdateWithoutFilesInput.schema.d'; export * from './AppointmentUncheckedUpdateWithoutFilesInput.schema'; +export * from './AppointmentUncheckedUpdateWithoutNpiProviderInput.schema'; export * from './AppointmentUncheckedUpdateWithoutPatientInput.schema.d'; export * from './AppointmentUncheckedUpdateWithoutPatientInput.schema'; export * from './AppointmentUncheckedUpdateWithoutProceduresInput.schema.d'; @@ -378,12 +475,14 @@ export * from './AppointmentUpdateInput.schema.d'; export * from './AppointmentUpdateInput.schema'; export * from './AppointmentUpdateManyMutationInput.schema.d'; export * from './AppointmentUpdateManyMutationInput.schema'; +export * from './AppointmentUpdateManyWithWhereWithoutNpiProviderInput.schema'; export * from './AppointmentUpdateManyWithWhereWithoutPatientInput.schema.d'; export * from './AppointmentUpdateManyWithWhereWithoutPatientInput.schema'; export * from './AppointmentUpdateManyWithWhereWithoutStaffInput.schema.d'; export * from './AppointmentUpdateManyWithWhereWithoutStaffInput.schema'; export * from './AppointmentUpdateManyWithWhereWithoutUserInput.schema.d'; export * from './AppointmentUpdateManyWithWhereWithoutUserInput.schema'; +export * from './AppointmentUpdateManyWithoutNpiProviderNestedInput.schema'; export * from './AppointmentUpdateManyWithoutPatientNestedInput.schema.d'; export * from './AppointmentUpdateManyWithoutPatientNestedInput.schema'; export * from './AppointmentUpdateManyWithoutStaffNestedInput.schema.d'; @@ -391,15 +490,19 @@ export * from './AppointmentUpdateManyWithoutStaffNestedInput.schema'; export * from './AppointmentUpdateManyWithoutUserNestedInput.schema.d'; export * from './AppointmentUpdateManyWithoutUserNestedInput.schema'; export * from './AppointmentUpdateOneRequiredWithoutClaimsNestedInput.schema.d'; +export * from './AppointmentUpdateOneRequiredWithoutFilesNestedInput.schema.d'; export * from './AppointmentUpdateOneRequiredWithoutFilesNestedInput.schema'; export * from './AppointmentUpdateOneRequiredWithoutProceduresNestedInput.schema.d'; export * from './AppointmentUpdateOneRequiredWithoutProceduresNestedInput.schema'; +export * from './AppointmentUpdateOneWithoutClaimsNestedInput.schema.d'; export * from './AppointmentUpdateOneWithoutClaimsNestedInput.schema'; export * from './AppointmentUpdateToOneWithWhereWithoutClaimsInput.schema.d'; export * from './AppointmentUpdateToOneWithWhereWithoutClaimsInput.schema'; +export * from './AppointmentUpdateToOneWithWhereWithoutFilesInput.schema.d'; export * from './AppointmentUpdateToOneWithWhereWithoutFilesInput.schema'; export * from './AppointmentUpdateToOneWithWhereWithoutProceduresInput.schema.d'; export * from './AppointmentUpdateToOneWithWhereWithoutProceduresInput.schema'; +export * from './AppointmentUpdateWithWhereUniqueWithoutNpiProviderInput.schema'; export * from './AppointmentUpdateWithWhereUniqueWithoutPatientInput.schema.d'; export * from './AppointmentUpdateWithWhereUniqueWithoutPatientInput.schema'; export * from './AppointmentUpdateWithWhereUniqueWithoutStaffInput.schema.d'; @@ -408,7 +511,9 @@ export * from './AppointmentUpdateWithWhereUniqueWithoutUserInput.schema.d'; export * from './AppointmentUpdateWithWhereUniqueWithoutUserInput.schema'; export * from './AppointmentUpdateWithoutClaimsInput.schema.d'; export * from './AppointmentUpdateWithoutClaimsInput.schema'; +export * from './AppointmentUpdateWithoutFilesInput.schema.d'; export * from './AppointmentUpdateWithoutFilesInput.schema'; +export * from './AppointmentUpdateWithoutNpiProviderInput.schema'; export * from './AppointmentUpdateWithoutPatientInput.schema.d'; export * from './AppointmentUpdateWithoutPatientInput.schema'; export * from './AppointmentUpdateWithoutProceduresInput.schema.d'; @@ -417,6 +522,7 @@ export * from './AppointmentUpdateWithoutStaffInput.schema.d'; export * from './AppointmentUpdateWithoutStaffInput.schema'; export * from './AppointmentUpdateWithoutUserInput.schema.d'; export * from './AppointmentUpdateWithoutUserInput.schema'; +export * from './AppointmentUpsertWithWhereUniqueWithoutNpiProviderInput.schema'; export * from './AppointmentUpsertWithWhereUniqueWithoutPatientInput.schema.d'; export * from './AppointmentUpsertWithWhereUniqueWithoutPatientInput.schema'; export * from './AppointmentUpsertWithWhereUniqueWithoutStaffInput.schema.d'; @@ -425,6 +531,7 @@ export * from './AppointmentUpsertWithWhereUniqueWithoutUserInput.schema.d'; export * from './AppointmentUpsertWithWhereUniqueWithoutUserInput.schema'; export * from './AppointmentUpsertWithoutClaimsInput.schema.d'; export * from './AppointmentUpsertWithoutClaimsInput.schema'; +export * from './AppointmentUpsertWithoutFilesInput.schema.d'; export * from './AppointmentUpsertWithoutFilesInput.schema'; export * from './AppointmentUpsertWithoutProceduresInput.schema.d'; export * from './AppointmentUpsertWithoutProceduresInput.schema'; @@ -1150,7 +1257,9 @@ export * from './CloudFolderCreateManyParentInput.schema.d'; export * from './CloudFolderCreateManyParentInput.schema'; export * from './CloudFolderCreateManyParentInputEnvelope.schema.d'; export * from './CloudFolderCreateManyParentInputEnvelope.schema'; +export * from './CloudFolderCreateManyPatientInput.schema.d'; export * from './CloudFolderCreateManyPatientInput.schema'; +export * from './CloudFolderCreateManyPatientInputEnvelope.schema.d'; export * from './CloudFolderCreateManyPatientInputEnvelope.schema'; export * from './CloudFolderCreateManyUserInput.schema.d'; export * from './CloudFolderCreateManyUserInput.schema'; @@ -1158,6 +1267,7 @@ export * from './CloudFolderCreateManyUserInputEnvelope.schema.d'; export * from './CloudFolderCreateManyUserInputEnvelope.schema'; export * from './CloudFolderCreateNestedManyWithoutParentInput.schema.d'; export * from './CloudFolderCreateNestedManyWithoutParentInput.schema'; +export * from './CloudFolderCreateNestedManyWithoutPatientInput.schema.d'; export * from './CloudFolderCreateNestedManyWithoutPatientInput.schema'; export * from './CloudFolderCreateNestedManyWithoutUserInput.schema.d'; export * from './CloudFolderCreateNestedManyWithoutUserInput.schema'; @@ -1171,6 +1281,7 @@ export * from './CloudFolderCreateOrConnectWithoutFilesInput.schema.d'; export * from './CloudFolderCreateOrConnectWithoutFilesInput.schema'; export * from './CloudFolderCreateOrConnectWithoutParentInput.schema.d'; export * from './CloudFolderCreateOrConnectWithoutParentInput.schema'; +export * from './CloudFolderCreateOrConnectWithoutPatientInput.schema.d'; export * from './CloudFolderCreateOrConnectWithoutPatientInput.schema'; export * from './CloudFolderCreateOrConnectWithoutUserInput.schema.d'; export * from './CloudFolderCreateOrConnectWithoutUserInput.schema'; @@ -1180,6 +1291,7 @@ export * from './CloudFolderCreateWithoutFilesInput.schema.d'; export * from './CloudFolderCreateWithoutFilesInput.schema'; export * from './CloudFolderCreateWithoutParentInput.schema.d'; export * from './CloudFolderCreateWithoutParentInput.schema'; +export * from './CloudFolderCreateWithoutPatientInput.schema.d'; export * from './CloudFolderCreateWithoutPatientInput.schema'; export * from './CloudFolderCreateWithoutUserInput.schema.d'; export * from './CloudFolderCreateWithoutUserInput.schema'; @@ -1217,6 +1329,7 @@ export * from './CloudFolderUncheckedCreateInput.schema.d'; export * from './CloudFolderUncheckedCreateInput.schema'; export * from './CloudFolderUncheckedCreateNestedManyWithoutParentInput.schema.d'; export * from './CloudFolderUncheckedCreateNestedManyWithoutParentInput.schema'; +export * from './CloudFolderUncheckedCreateNestedManyWithoutPatientInput.schema.d'; export * from './CloudFolderUncheckedCreateNestedManyWithoutPatientInput.schema'; export * from './CloudFolderUncheckedCreateNestedManyWithoutUserInput.schema.d'; export * from './CloudFolderUncheckedCreateNestedManyWithoutUserInput.schema'; @@ -1226,6 +1339,7 @@ export * from './CloudFolderUncheckedCreateWithoutFilesInput.schema.d'; export * from './CloudFolderUncheckedCreateWithoutFilesInput.schema'; export * from './CloudFolderUncheckedCreateWithoutParentInput.schema.d'; export * from './CloudFolderUncheckedCreateWithoutParentInput.schema'; +export * from './CloudFolderUncheckedCreateWithoutPatientInput.schema.d'; export * from './CloudFolderUncheckedCreateWithoutPatientInput.schema'; export * from './CloudFolderUncheckedCreateWithoutUserInput.schema.d'; export * from './CloudFolderUncheckedCreateWithoutUserInput.schema'; @@ -1237,7 +1351,9 @@ export * from './CloudFolderUncheckedUpdateManyWithoutParentInput.schema.d'; export * from './CloudFolderUncheckedUpdateManyWithoutParentInput.schema'; export * from './CloudFolderUncheckedUpdateManyWithoutParentNestedInput.schema.d'; export * from './CloudFolderUncheckedUpdateManyWithoutParentNestedInput.schema'; +export * from './CloudFolderUncheckedUpdateManyWithoutPatientInput.schema.d'; export * from './CloudFolderUncheckedUpdateManyWithoutPatientInput.schema'; +export * from './CloudFolderUncheckedUpdateManyWithoutPatientNestedInput.schema.d'; export * from './CloudFolderUncheckedUpdateManyWithoutPatientNestedInput.schema'; export * from './CloudFolderUncheckedUpdateManyWithoutUserInput.schema.d'; export * from './CloudFolderUncheckedUpdateManyWithoutUserInput.schema'; @@ -1249,6 +1365,7 @@ export * from './CloudFolderUncheckedUpdateWithoutFilesInput.schema.d'; export * from './CloudFolderUncheckedUpdateWithoutFilesInput.schema'; export * from './CloudFolderUncheckedUpdateWithoutParentInput.schema.d'; export * from './CloudFolderUncheckedUpdateWithoutParentInput.schema'; +export * from './CloudFolderUncheckedUpdateWithoutPatientInput.schema.d'; export * from './CloudFolderUncheckedUpdateWithoutPatientInput.schema'; export * from './CloudFolderUncheckedUpdateWithoutUserInput.schema.d'; export * from './CloudFolderUncheckedUpdateWithoutUserInput.schema'; @@ -1258,11 +1375,13 @@ export * from './CloudFolderUpdateManyMutationInput.schema.d'; export * from './CloudFolderUpdateManyMutationInput.schema'; export * from './CloudFolderUpdateManyWithWhereWithoutParentInput.schema.d'; export * from './CloudFolderUpdateManyWithWhereWithoutParentInput.schema'; +export * from './CloudFolderUpdateManyWithWhereWithoutPatientInput.schema.d'; export * from './CloudFolderUpdateManyWithWhereWithoutPatientInput.schema'; export * from './CloudFolderUpdateManyWithWhereWithoutUserInput.schema.d'; export * from './CloudFolderUpdateManyWithWhereWithoutUserInput.schema'; export * from './CloudFolderUpdateManyWithoutParentNestedInput.schema.d'; export * from './CloudFolderUpdateManyWithoutParentNestedInput.schema'; +export * from './CloudFolderUpdateManyWithoutPatientNestedInput.schema.d'; export * from './CloudFolderUpdateManyWithoutPatientNestedInput.schema'; export * from './CloudFolderUpdateManyWithoutUserNestedInput.schema.d'; export * from './CloudFolderUpdateManyWithoutUserNestedInput.schema'; @@ -1276,6 +1395,7 @@ export * from './CloudFolderUpdateToOneWithWhereWithoutFilesInput.schema.d'; export * from './CloudFolderUpdateToOneWithWhereWithoutFilesInput.schema'; export * from './CloudFolderUpdateWithWhereUniqueWithoutParentInput.schema.d'; export * from './CloudFolderUpdateWithWhereUniqueWithoutParentInput.schema'; +export * from './CloudFolderUpdateWithWhereUniqueWithoutPatientInput.schema.d'; export * from './CloudFolderUpdateWithWhereUniqueWithoutPatientInput.schema'; export * from './CloudFolderUpdateWithWhereUniqueWithoutUserInput.schema.d'; export * from './CloudFolderUpdateWithWhereUniqueWithoutUserInput.schema'; @@ -1285,11 +1405,13 @@ export * from './CloudFolderUpdateWithoutFilesInput.schema.d'; export * from './CloudFolderUpdateWithoutFilesInput.schema'; export * from './CloudFolderUpdateWithoutParentInput.schema.d'; export * from './CloudFolderUpdateWithoutParentInput.schema'; +export * from './CloudFolderUpdateWithoutPatientInput.schema.d'; export * from './CloudFolderUpdateWithoutPatientInput.schema'; export * from './CloudFolderUpdateWithoutUserInput.schema.d'; export * from './CloudFolderUpdateWithoutUserInput.schema'; export * from './CloudFolderUpsertWithWhereUniqueWithoutParentInput.schema.d'; export * from './CloudFolderUpsertWithWhereUniqueWithoutParentInput.schema'; +export * from './CloudFolderUpsertWithWhereUniqueWithoutPatientInput.schema.d'; export * from './CloudFolderUpsertWithWhereUniqueWithoutPatientInput.schema'; export * from './CloudFolderUpsertWithWhereUniqueWithoutUserInput.schema.d'; export * from './CloudFolderUpsertWithWhereUniqueWithoutUserInput.schema'; @@ -1303,120 +1425,235 @@ export * from './CloudFolderWhereInput.schema.d'; export * from './CloudFolderWhereInput.schema'; export * from './CloudFolderWhereUniqueInput.schema.d'; export * from './CloudFolderWhereUniqueInput.schema'; +export * from './CommissionBatchArgs.schema.d'; export * from './CommissionBatchArgs.schema'; +export * from './CommissionBatchAvgAggregateInput.schema.d'; export * from './CommissionBatchAvgAggregateInput.schema'; +export * from './CommissionBatchAvgOrderByAggregateInput.schema.d'; export * from './CommissionBatchAvgOrderByAggregateInput.schema'; +export * from './CommissionBatchCountAggregateInput.schema.d'; export * from './CommissionBatchCountAggregateInput.schema'; +export * from './CommissionBatchCountOrderByAggregateInput.schema.d'; export * from './CommissionBatchCountOrderByAggregateInput.schema'; +export * from './CommissionBatchCountOutputTypeArgs.schema.d'; export * from './CommissionBatchCountOutputTypeArgs.schema'; +export * from './CommissionBatchCountOutputTypeCountItemsArgs.schema.d'; export * from './CommissionBatchCountOutputTypeCountItemsArgs.schema'; +export * from './CommissionBatchCountOutputTypeSelect.schema.d'; export * from './CommissionBatchCountOutputTypeSelect.schema'; +export * from './CommissionBatchCreateInput.schema.d'; export * from './CommissionBatchCreateInput.schema'; +export * from './CommissionBatchCreateManyInput.schema.d'; export * from './CommissionBatchCreateManyInput.schema'; +export * from './CommissionBatchCreateManyNpiProviderInput.schema.d'; export * from './CommissionBatchCreateManyNpiProviderInput.schema'; +export * from './CommissionBatchCreateManyNpiProviderInputEnvelope.schema.d'; export * from './CommissionBatchCreateManyNpiProviderInputEnvelope.schema'; +export * from './CommissionBatchCreateNestedManyWithoutNpiProviderInput.schema.d'; export * from './CommissionBatchCreateNestedManyWithoutNpiProviderInput.schema'; +export * from './CommissionBatchCreateNestedOneWithoutItemsInput.schema.d'; export * from './CommissionBatchCreateNestedOneWithoutItemsInput.schema'; +export * from './CommissionBatchCreateOrConnectWithoutItemsInput.schema.d'; export * from './CommissionBatchCreateOrConnectWithoutItemsInput.schema'; +export * from './CommissionBatchCreateOrConnectWithoutNpiProviderInput.schema.d'; export * from './CommissionBatchCreateOrConnectWithoutNpiProviderInput.schema'; +export * from './CommissionBatchCreateWithoutItemsInput.schema.d'; export * from './CommissionBatchCreateWithoutItemsInput.schema'; +export * from './CommissionBatchCreateWithoutNpiProviderInput.schema.d'; export * from './CommissionBatchCreateWithoutNpiProviderInput.schema'; +export * from './CommissionBatchInclude.schema.d'; export * from './CommissionBatchInclude.schema'; +export * from './CommissionBatchItemArgs.schema.d'; export * from './CommissionBatchItemArgs.schema'; +export * from './CommissionBatchItemAvgAggregateInput.schema.d'; export * from './CommissionBatchItemAvgAggregateInput.schema'; +export * from './CommissionBatchItemAvgOrderByAggregateInput.schema.d'; export * from './CommissionBatchItemAvgOrderByAggregateInput.schema'; +export * from './CommissionBatchItemCommissionBatchIdPaymentIdCompoundUniqueInput.schema.d'; export * from './CommissionBatchItemCommissionBatchIdPaymentIdCompoundUniqueInput.schema'; +export * from './CommissionBatchItemCountAggregateInput.schema.d'; export * from './CommissionBatchItemCountAggregateInput.schema'; +export * from './CommissionBatchItemCountOrderByAggregateInput.schema.d'; export * from './CommissionBatchItemCountOrderByAggregateInput.schema'; +export * from './CommissionBatchItemCreateInput.schema.d'; export * from './CommissionBatchItemCreateInput.schema'; +export * from './CommissionBatchItemCreateManyCommissionBatchInput.schema.d'; export * from './CommissionBatchItemCreateManyCommissionBatchInput.schema'; +export * from './CommissionBatchItemCreateManyCommissionBatchInputEnvelope.schema.d'; export * from './CommissionBatchItemCreateManyCommissionBatchInputEnvelope.schema'; +export * from './CommissionBatchItemCreateManyInput.schema.d'; export * from './CommissionBatchItemCreateManyInput.schema'; +export * from './CommissionBatchItemCreateManyPaymentInput.schema.d'; export * from './CommissionBatchItemCreateManyPaymentInput.schema'; +export * from './CommissionBatchItemCreateManyPaymentInputEnvelope.schema.d'; export * from './CommissionBatchItemCreateManyPaymentInputEnvelope.schema'; +export * from './CommissionBatchItemCreateNestedManyWithoutCommissionBatchInput.schema.d'; export * from './CommissionBatchItemCreateNestedManyWithoutCommissionBatchInput.schema'; +export * from './CommissionBatchItemCreateNestedManyWithoutPaymentInput.schema.d'; export * from './CommissionBatchItemCreateNestedManyWithoutPaymentInput.schema'; +export * from './CommissionBatchItemCreateOrConnectWithoutCommissionBatchInput.schema.d'; export * from './CommissionBatchItemCreateOrConnectWithoutCommissionBatchInput.schema'; +export * from './CommissionBatchItemCreateOrConnectWithoutPaymentInput.schema.d'; export * from './CommissionBatchItemCreateOrConnectWithoutPaymentInput.schema'; +export * from './CommissionBatchItemCreateWithoutCommissionBatchInput.schema.d'; export * from './CommissionBatchItemCreateWithoutCommissionBatchInput.schema'; +export * from './CommissionBatchItemCreateWithoutPaymentInput.schema.d'; export * from './CommissionBatchItemCreateWithoutPaymentInput.schema'; +export * from './CommissionBatchItemInclude.schema.d'; export * from './CommissionBatchItemInclude.schema'; +export * from './CommissionBatchItemListRelationFilter.schema.d'; export * from './CommissionBatchItemListRelationFilter.schema'; +export * from './CommissionBatchItemMaxAggregateInput.schema.d'; export * from './CommissionBatchItemMaxAggregateInput.schema'; +export * from './CommissionBatchItemMaxOrderByAggregateInput.schema.d'; export * from './CommissionBatchItemMaxOrderByAggregateInput.schema'; +export * from './CommissionBatchItemMinAggregateInput.schema.d'; export * from './CommissionBatchItemMinAggregateInput.schema'; +export * from './CommissionBatchItemMinOrderByAggregateInput.schema.d'; export * from './CommissionBatchItemMinOrderByAggregateInput.schema'; +export * from './CommissionBatchItemOrderByRelationAggregateInput.schema.d'; export * from './CommissionBatchItemOrderByRelationAggregateInput.schema'; +export * from './CommissionBatchItemOrderByWithAggregationInput.schema.d'; export * from './CommissionBatchItemOrderByWithAggregationInput.schema'; +export * from './CommissionBatchItemOrderByWithRelationInput.schema.d'; export * from './CommissionBatchItemOrderByWithRelationInput.schema'; +export * from './CommissionBatchItemScalarWhereInput.schema.d'; export * from './CommissionBatchItemScalarWhereInput.schema'; +export * from './CommissionBatchItemScalarWhereWithAggregatesInput.schema.d'; export * from './CommissionBatchItemScalarWhereWithAggregatesInput.schema'; +export * from './CommissionBatchItemSelect.schema.d'; export * from './CommissionBatchItemSelect.schema'; +export * from './CommissionBatchItemSumAggregateInput.schema.d'; export * from './CommissionBatchItemSumAggregateInput.schema'; +export * from './CommissionBatchItemSumOrderByAggregateInput.schema.d'; export * from './CommissionBatchItemSumOrderByAggregateInput.schema'; +export * from './CommissionBatchItemUncheckedCreateInput.schema.d'; export * from './CommissionBatchItemUncheckedCreateInput.schema'; +export * from './CommissionBatchItemUncheckedCreateNestedManyWithoutCommissionBatchInput.schema.d'; export * from './CommissionBatchItemUncheckedCreateNestedManyWithoutCommissionBatchInput.schema'; +export * from './CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInput.schema.d'; export * from './CommissionBatchItemUncheckedCreateNestedManyWithoutPaymentInput.schema'; +export * from './CommissionBatchItemUncheckedCreateWithoutCommissionBatchInput.schema.d'; export * from './CommissionBatchItemUncheckedCreateWithoutCommissionBatchInput.schema'; +export * from './CommissionBatchItemUncheckedCreateWithoutPaymentInput.schema.d'; export * from './CommissionBatchItemUncheckedCreateWithoutPaymentInput.schema'; +export * from './CommissionBatchItemUncheckedUpdateInput.schema.d'; export * from './CommissionBatchItemUncheckedUpdateInput.schema'; +export * from './CommissionBatchItemUncheckedUpdateManyInput.schema.d'; export * from './CommissionBatchItemUncheckedUpdateManyInput.schema'; +export * from './CommissionBatchItemUncheckedUpdateManyWithoutCommissionBatchInput.schema.d'; export * from './CommissionBatchItemUncheckedUpdateManyWithoutCommissionBatchInput.schema'; +export * from './CommissionBatchItemUncheckedUpdateManyWithoutCommissionBatchNestedInput.schema.d'; export * from './CommissionBatchItemUncheckedUpdateManyWithoutCommissionBatchNestedInput.schema'; +export * from './CommissionBatchItemUncheckedUpdateManyWithoutPaymentInput.schema.d'; export * from './CommissionBatchItemUncheckedUpdateManyWithoutPaymentInput.schema'; +export * from './CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInput.schema.d'; export * from './CommissionBatchItemUncheckedUpdateManyWithoutPaymentNestedInput.schema'; +export * from './CommissionBatchItemUncheckedUpdateWithoutCommissionBatchInput.schema.d'; export * from './CommissionBatchItemUncheckedUpdateWithoutCommissionBatchInput.schema'; +export * from './CommissionBatchItemUncheckedUpdateWithoutPaymentInput.schema.d'; export * from './CommissionBatchItemUncheckedUpdateWithoutPaymentInput.schema'; +export * from './CommissionBatchItemUpdateInput.schema.d'; export * from './CommissionBatchItemUpdateInput.schema'; +export * from './CommissionBatchItemUpdateManyMutationInput.schema.d'; export * from './CommissionBatchItemUpdateManyMutationInput.schema'; +export * from './CommissionBatchItemUpdateManyWithWhereWithoutCommissionBatchInput.schema.d'; export * from './CommissionBatchItemUpdateManyWithWhereWithoutCommissionBatchInput.schema'; +export * from './CommissionBatchItemUpdateManyWithWhereWithoutPaymentInput.schema.d'; export * from './CommissionBatchItemUpdateManyWithWhereWithoutPaymentInput.schema'; +export * from './CommissionBatchItemUpdateManyWithoutCommissionBatchNestedInput.schema.d'; export * from './CommissionBatchItemUpdateManyWithoutCommissionBatchNestedInput.schema'; +export * from './CommissionBatchItemUpdateManyWithoutPaymentNestedInput.schema.d'; export * from './CommissionBatchItemUpdateManyWithoutPaymentNestedInput.schema'; +export * from './CommissionBatchItemUpdateWithWhereUniqueWithoutCommissionBatchInput.schema.d'; export * from './CommissionBatchItemUpdateWithWhereUniqueWithoutCommissionBatchInput.schema'; +export * from './CommissionBatchItemUpdateWithWhereUniqueWithoutPaymentInput.schema.d'; export * from './CommissionBatchItemUpdateWithWhereUniqueWithoutPaymentInput.schema'; +export * from './CommissionBatchItemUpdateWithoutCommissionBatchInput.schema.d'; export * from './CommissionBatchItemUpdateWithoutCommissionBatchInput.schema'; +export * from './CommissionBatchItemUpdateWithoutPaymentInput.schema.d'; export * from './CommissionBatchItemUpdateWithoutPaymentInput.schema'; +export * from './CommissionBatchItemUpsertWithWhereUniqueWithoutCommissionBatchInput.schema.d'; export * from './CommissionBatchItemUpsertWithWhereUniqueWithoutCommissionBatchInput.schema'; +export * from './CommissionBatchItemUpsertWithWhereUniqueWithoutPaymentInput.schema.d'; export * from './CommissionBatchItemUpsertWithWhereUniqueWithoutPaymentInput.schema'; +export * from './CommissionBatchItemWhereInput.schema.d'; export * from './CommissionBatchItemWhereInput.schema'; +export * from './CommissionBatchItemWhereUniqueInput.schema.d'; export * from './CommissionBatchItemWhereUniqueInput.schema'; +export * from './CommissionBatchListRelationFilter.schema.d'; export * from './CommissionBatchListRelationFilter.schema'; +export * from './CommissionBatchMaxAggregateInput.schema.d'; export * from './CommissionBatchMaxAggregateInput.schema'; +export * from './CommissionBatchMaxOrderByAggregateInput.schema.d'; export * from './CommissionBatchMaxOrderByAggregateInput.schema'; +export * from './CommissionBatchMinAggregateInput.schema.d'; export * from './CommissionBatchMinAggregateInput.schema'; +export * from './CommissionBatchMinOrderByAggregateInput.schema.d'; export * from './CommissionBatchMinOrderByAggregateInput.schema'; +export * from './CommissionBatchOrderByRelationAggregateInput.schema.d'; export * from './CommissionBatchOrderByRelationAggregateInput.schema'; +export * from './CommissionBatchOrderByWithAggregationInput.schema.d'; export * from './CommissionBatchOrderByWithAggregationInput.schema'; +export * from './CommissionBatchOrderByWithRelationInput.schema.d'; export * from './CommissionBatchOrderByWithRelationInput.schema'; +export * from './CommissionBatchScalarRelationFilter.schema.d'; export * from './CommissionBatchScalarRelationFilter.schema'; +export * from './CommissionBatchScalarWhereInput.schema.d'; export * from './CommissionBatchScalarWhereInput.schema'; +export * from './CommissionBatchScalarWhereWithAggregatesInput.schema.d'; export * from './CommissionBatchScalarWhereWithAggregatesInput.schema'; +export * from './CommissionBatchSelect.schema.d'; export * from './CommissionBatchSelect.schema'; +export * from './CommissionBatchSumAggregateInput.schema.d'; export * from './CommissionBatchSumAggregateInput.schema'; +export * from './CommissionBatchSumOrderByAggregateInput.schema.d'; export * from './CommissionBatchSumOrderByAggregateInput.schema'; +export * from './CommissionBatchUncheckedCreateInput.schema.d'; export * from './CommissionBatchUncheckedCreateInput.schema'; +export * from './CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput.schema.d'; export * from './CommissionBatchUncheckedCreateNestedManyWithoutNpiProviderInput.schema'; +export * from './CommissionBatchUncheckedCreateWithoutItemsInput.schema.d'; export * from './CommissionBatchUncheckedCreateWithoutItemsInput.schema'; +export * from './CommissionBatchUncheckedCreateWithoutNpiProviderInput.schema.d'; export * from './CommissionBatchUncheckedCreateWithoutNpiProviderInput.schema'; +export * from './CommissionBatchUncheckedUpdateInput.schema.d'; export * from './CommissionBatchUncheckedUpdateInput.schema'; +export * from './CommissionBatchUncheckedUpdateManyInput.schema.d'; export * from './CommissionBatchUncheckedUpdateManyInput.schema'; +export * from './CommissionBatchUncheckedUpdateManyWithoutNpiProviderInput.schema.d'; export * from './CommissionBatchUncheckedUpdateManyWithoutNpiProviderInput.schema'; +export * from './CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput.schema.d'; export * from './CommissionBatchUncheckedUpdateManyWithoutNpiProviderNestedInput.schema'; +export * from './CommissionBatchUncheckedUpdateWithoutItemsInput.schema.d'; export * from './CommissionBatchUncheckedUpdateWithoutItemsInput.schema'; +export * from './CommissionBatchUncheckedUpdateWithoutNpiProviderInput.schema.d'; export * from './CommissionBatchUncheckedUpdateWithoutNpiProviderInput.schema'; +export * from './CommissionBatchUpdateInput.schema.d'; export * from './CommissionBatchUpdateInput.schema'; +export * from './CommissionBatchUpdateManyMutationInput.schema.d'; export * from './CommissionBatchUpdateManyMutationInput.schema'; +export * from './CommissionBatchUpdateManyWithWhereWithoutNpiProviderInput.schema.d'; export * from './CommissionBatchUpdateManyWithWhereWithoutNpiProviderInput.schema'; +export * from './CommissionBatchUpdateManyWithoutNpiProviderNestedInput.schema.d'; export * from './CommissionBatchUpdateManyWithoutNpiProviderNestedInput.schema'; +export * from './CommissionBatchUpdateOneRequiredWithoutItemsNestedInput.schema.d'; export * from './CommissionBatchUpdateOneRequiredWithoutItemsNestedInput.schema'; +export * from './CommissionBatchUpdateToOneWithWhereWithoutItemsInput.schema.d'; export * from './CommissionBatchUpdateToOneWithWhereWithoutItemsInput.schema'; +export * from './CommissionBatchUpdateWithWhereUniqueWithoutNpiProviderInput.schema.d'; export * from './CommissionBatchUpdateWithWhereUniqueWithoutNpiProviderInput.schema'; +export * from './CommissionBatchUpdateWithoutItemsInput.schema.d'; export * from './CommissionBatchUpdateWithoutItemsInput.schema'; +export * from './CommissionBatchUpdateWithoutNpiProviderInput.schema.d'; export * from './CommissionBatchUpdateWithoutNpiProviderInput.schema'; +export * from './CommissionBatchUpsertWithWhereUniqueWithoutNpiProviderInput.schema.d'; export * from './CommissionBatchUpsertWithWhereUniqueWithoutNpiProviderInput.schema'; +export * from './CommissionBatchUpsertWithoutItemsInput.schema.d'; export * from './CommissionBatchUpsertWithoutItemsInput.schema'; +export * from './CommissionBatchWhereInput.schema.d'; export * from './CommissionBatchWhereInput.schema'; +export * from './CommissionBatchWhereUniqueInput.schema.d'; export * from './CommissionBatchWhereUniqueInput.schema'; export * from './CommunicationArgs.schema.d'; export * from './CommunicationArgs.schema'; @@ -1760,48 +1997,91 @@ export * from './EnumServiceLineStatusFilter.schema.d'; export * from './EnumServiceLineStatusFilter.schema'; export * from './EnumServiceLineStatusWithAggregatesFilter.schema.d'; export * from './EnumServiceLineStatusWithAggregatesFilter.schema'; +export * from './InsuranceContactArgs.schema.d'; export * from './InsuranceContactArgs.schema'; +export * from './InsuranceContactAvgAggregateInput.schema.d'; export * from './InsuranceContactAvgAggregateInput.schema'; +export * from './InsuranceContactAvgOrderByAggregateInput.schema.d'; export * from './InsuranceContactAvgOrderByAggregateInput.schema'; +export * from './InsuranceContactCountAggregateInput.schema.d'; export * from './InsuranceContactCountAggregateInput.schema'; +export * from './InsuranceContactCountOrderByAggregateInput.schema.d'; export * from './InsuranceContactCountOrderByAggregateInput.schema'; +export * from './InsuranceContactCreateInput.schema.d'; export * from './InsuranceContactCreateInput.schema'; +export * from './InsuranceContactCreateManyInput.schema.d'; export * from './InsuranceContactCreateManyInput.schema'; +export * from './InsuranceContactCreateManyUserInput.schema.d'; export * from './InsuranceContactCreateManyUserInput.schema'; +export * from './InsuranceContactCreateManyUserInputEnvelope.schema.d'; export * from './InsuranceContactCreateManyUserInputEnvelope.schema'; +export * from './InsuranceContactCreateNestedManyWithoutUserInput.schema.d'; export * from './InsuranceContactCreateNestedManyWithoutUserInput.schema'; +export * from './InsuranceContactCreateOrConnectWithoutUserInput.schema.d'; export * from './InsuranceContactCreateOrConnectWithoutUserInput.schema'; +export * from './InsuranceContactCreateWithoutUserInput.schema.d'; export * from './InsuranceContactCreateWithoutUserInput.schema'; +export * from './InsuranceContactInclude.schema.d'; export * from './InsuranceContactInclude.schema'; +export * from './InsuranceContactListRelationFilter.schema.d'; export * from './InsuranceContactListRelationFilter.schema'; +export * from './InsuranceContactMaxAggregateInput.schema.d'; export * from './InsuranceContactMaxAggregateInput.schema'; +export * from './InsuranceContactMaxOrderByAggregateInput.schema.d'; export * from './InsuranceContactMaxOrderByAggregateInput.schema'; +export * from './InsuranceContactMinAggregateInput.schema.d'; export * from './InsuranceContactMinAggregateInput.schema'; +export * from './InsuranceContactMinOrderByAggregateInput.schema.d'; export * from './InsuranceContactMinOrderByAggregateInput.schema'; +export * from './InsuranceContactOrderByRelationAggregateInput.schema.d'; export * from './InsuranceContactOrderByRelationAggregateInput.schema'; +export * from './InsuranceContactOrderByWithAggregationInput.schema.d'; export * from './InsuranceContactOrderByWithAggregationInput.schema'; +export * from './InsuranceContactOrderByWithRelationInput.schema.d'; export * from './InsuranceContactOrderByWithRelationInput.schema'; +export * from './InsuranceContactScalarWhereInput.schema.d'; export * from './InsuranceContactScalarWhereInput.schema'; +export * from './InsuranceContactScalarWhereWithAggregatesInput.schema.d'; export * from './InsuranceContactScalarWhereWithAggregatesInput.schema'; +export * from './InsuranceContactSelect.schema.d'; export * from './InsuranceContactSelect.schema'; +export * from './InsuranceContactSumAggregateInput.schema.d'; export * from './InsuranceContactSumAggregateInput.schema'; +export * from './InsuranceContactSumOrderByAggregateInput.schema.d'; export * from './InsuranceContactSumOrderByAggregateInput.schema'; +export * from './InsuranceContactUncheckedCreateInput.schema.d'; export * from './InsuranceContactUncheckedCreateInput.schema'; +export * from './InsuranceContactUncheckedCreateNestedManyWithoutUserInput.schema.d'; export * from './InsuranceContactUncheckedCreateNestedManyWithoutUserInput.schema'; +export * from './InsuranceContactUncheckedCreateWithoutUserInput.schema.d'; export * from './InsuranceContactUncheckedCreateWithoutUserInput.schema'; +export * from './InsuranceContactUncheckedUpdateInput.schema.d'; export * from './InsuranceContactUncheckedUpdateInput.schema'; +export * from './InsuranceContactUncheckedUpdateManyInput.schema.d'; export * from './InsuranceContactUncheckedUpdateManyInput.schema'; +export * from './InsuranceContactUncheckedUpdateManyWithoutUserInput.schema.d'; export * from './InsuranceContactUncheckedUpdateManyWithoutUserInput.schema'; +export * from './InsuranceContactUncheckedUpdateManyWithoutUserNestedInput.schema.d'; export * from './InsuranceContactUncheckedUpdateManyWithoutUserNestedInput.schema'; +export * from './InsuranceContactUncheckedUpdateWithoutUserInput.schema.d'; export * from './InsuranceContactUncheckedUpdateWithoutUserInput.schema'; +export * from './InsuranceContactUpdateInput.schema.d'; export * from './InsuranceContactUpdateInput.schema'; +export * from './InsuranceContactUpdateManyMutationInput.schema.d'; export * from './InsuranceContactUpdateManyMutationInput.schema'; +export * from './InsuranceContactUpdateManyWithWhereWithoutUserInput.schema.d'; export * from './InsuranceContactUpdateManyWithWhereWithoutUserInput.schema'; +export * from './InsuranceContactUpdateManyWithoutUserNestedInput.schema.d'; export * from './InsuranceContactUpdateManyWithoutUserNestedInput.schema'; +export * from './InsuranceContactUpdateWithWhereUniqueWithoutUserInput.schema.d'; export * from './InsuranceContactUpdateWithWhereUniqueWithoutUserInput.schema'; +export * from './InsuranceContactUpdateWithoutUserInput.schema.d'; export * from './InsuranceContactUpdateWithoutUserInput.schema'; +export * from './InsuranceContactUpsertWithWhereUniqueWithoutUserInput.schema.d'; export * from './InsuranceContactUpsertWithWhereUniqueWithoutUserInput.schema'; +export * from './InsuranceContactWhereInput.schema.d'; export * from './InsuranceContactWhereInput.schema'; +export * from './InsuranceContactWhereUniqueInput.schema.d'; export * from './InsuranceContactWhereUniqueInput.schema'; export * from './InsuranceCredentialArgs.schema.d'; export * from './InsuranceCredentialArgs.schema'; @@ -1901,11 +2181,13 @@ export * from './IntNullableWithAggregatesFilter.schema.d'; export * from './IntNullableWithAggregatesFilter.schema'; export * from './IntWithAggregatesFilter.schema.d'; export * from './IntWithAggregatesFilter.schema'; +export * from './JsonFilter.schema.d'; export * from './JsonFilter.schema'; export * from './JsonNullableFilter.schema.d'; export * from './JsonNullableFilter.schema'; export * from './JsonNullableWithAggregatesFilter.schema.d'; export * from './JsonNullableWithAggregatesFilter.schema'; +export * from './JsonWithAggregatesFilter.schema.d'; export * from './JsonWithAggregatesFilter.schema'; export * from './LabRxTemplateArgs.schema'; export * from './LabRxTemplateAvgAggregateInput.schema'; @@ -2038,6 +2320,7 @@ export * from './NestedIntNullableWithAggregatesFilter.schema.d'; export * from './NestedIntNullableWithAggregatesFilter.schema'; export * from './NestedIntWithAggregatesFilter.schema.d'; export * from './NestedIntWithAggregatesFilter.schema'; +export * from './NestedJsonFilter.schema.d'; export * from './NestedJsonFilter.schema'; export * from './NestedJsonNullableFilter.schema.d'; export * from './NestedJsonNullableFilter.schema'; @@ -2149,9 +2432,12 @@ export * from './NpiProviderCountOutputTypeArgs.schema.d'; export * from './NpiProviderCountOutputTypeArgs.schema'; export * from './NpiProviderCountOutputTypeCountAppointmentProceduresArgs.schema.d'; export * from './NpiProviderCountOutputTypeCountAppointmentProceduresArgs.schema'; +export * from './NpiProviderCountOutputTypeCountAppointmentsArgs.schema'; export * from './NpiProviderCountOutputTypeCountClaimsArgs.schema.d'; export * from './NpiProviderCountOutputTypeCountClaimsArgs.schema'; +export * from './NpiProviderCountOutputTypeCountCommissionBatchesArgs.schema.d'; export * from './NpiProviderCountOutputTypeCountCommissionBatchesArgs.schema'; +export * from './NpiProviderCountOutputTypeCountPaymentsArgs.schema.d'; export * from './NpiProviderCountOutputTypeCountPaymentsArgs.schema'; export * from './NpiProviderCountOutputTypeSelect.schema.d'; export * from './NpiProviderCountOutputTypeSelect.schema'; @@ -2167,23 +2453,32 @@ export * from './NpiProviderCreateNestedManyWithoutUserInput.schema.d'; export * from './NpiProviderCreateNestedManyWithoutUserInput.schema'; export * from './NpiProviderCreateNestedOneWithoutAppointmentProceduresInput.schema.d'; export * from './NpiProviderCreateNestedOneWithoutAppointmentProceduresInput.schema'; +export * from './NpiProviderCreateNestedOneWithoutAppointmentsInput.schema'; export * from './NpiProviderCreateNestedOneWithoutClaimsInput.schema.d'; export * from './NpiProviderCreateNestedOneWithoutClaimsInput.schema'; +export * from './NpiProviderCreateNestedOneWithoutCommissionBatchesInput.schema.d'; export * from './NpiProviderCreateNestedOneWithoutCommissionBatchesInput.schema'; +export * from './NpiProviderCreateNestedOneWithoutPaymentsInput.schema.d'; export * from './NpiProviderCreateNestedOneWithoutPaymentsInput.schema'; export * from './NpiProviderCreateOrConnectWithoutAppointmentProceduresInput.schema.d'; export * from './NpiProviderCreateOrConnectWithoutAppointmentProceduresInput.schema'; +export * from './NpiProviderCreateOrConnectWithoutAppointmentsInput.schema'; export * from './NpiProviderCreateOrConnectWithoutClaimsInput.schema.d'; export * from './NpiProviderCreateOrConnectWithoutClaimsInput.schema'; +export * from './NpiProviderCreateOrConnectWithoutCommissionBatchesInput.schema.d'; export * from './NpiProviderCreateOrConnectWithoutCommissionBatchesInput.schema'; +export * from './NpiProviderCreateOrConnectWithoutPaymentsInput.schema.d'; export * from './NpiProviderCreateOrConnectWithoutPaymentsInput.schema'; export * from './NpiProviderCreateOrConnectWithoutUserInput.schema.d'; export * from './NpiProviderCreateOrConnectWithoutUserInput.schema'; export * from './NpiProviderCreateWithoutAppointmentProceduresInput.schema.d'; export * from './NpiProviderCreateWithoutAppointmentProceduresInput.schema'; +export * from './NpiProviderCreateWithoutAppointmentsInput.schema'; export * from './NpiProviderCreateWithoutClaimsInput.schema.d'; export * from './NpiProviderCreateWithoutClaimsInput.schema'; +export * from './NpiProviderCreateWithoutCommissionBatchesInput.schema.d'; export * from './NpiProviderCreateWithoutCommissionBatchesInput.schema'; +export * from './NpiProviderCreateWithoutPaymentsInput.schema.d'; export * from './NpiProviderCreateWithoutPaymentsInput.schema'; export * from './NpiProviderCreateWithoutUserInput.schema.d'; export * from './NpiProviderCreateWithoutUserInput.schema'; @@ -2207,6 +2502,7 @@ export * from './NpiProviderOrderByWithAggregationInput.schema.d'; export * from './NpiProviderOrderByWithAggregationInput.schema'; export * from './NpiProviderOrderByWithRelationInput.schema.d'; export * from './NpiProviderOrderByWithRelationInput.schema'; +export * from './NpiProviderScalarRelationFilter.schema.d'; export * from './NpiProviderScalarRelationFilter.schema'; export * from './NpiProviderScalarWhereInput.schema.d'; export * from './NpiProviderScalarWhereInput.schema'; @@ -2224,9 +2520,12 @@ export * from './NpiProviderUncheckedCreateNestedManyWithoutUserInput.schema.d'; export * from './NpiProviderUncheckedCreateNestedManyWithoutUserInput.schema'; export * from './NpiProviderUncheckedCreateWithoutAppointmentProceduresInput.schema.d'; export * from './NpiProviderUncheckedCreateWithoutAppointmentProceduresInput.schema'; +export * from './NpiProviderUncheckedCreateWithoutAppointmentsInput.schema'; export * from './NpiProviderUncheckedCreateWithoutClaimsInput.schema.d'; export * from './NpiProviderUncheckedCreateWithoutClaimsInput.schema'; +export * from './NpiProviderUncheckedCreateWithoutCommissionBatchesInput.schema.d'; export * from './NpiProviderUncheckedCreateWithoutCommissionBatchesInput.schema'; +export * from './NpiProviderUncheckedCreateWithoutPaymentsInput.schema.d'; export * from './NpiProviderUncheckedCreateWithoutPaymentsInput.schema'; export * from './NpiProviderUncheckedCreateWithoutUserInput.schema.d'; export * from './NpiProviderUncheckedCreateWithoutUserInput.schema'; @@ -2240,9 +2539,12 @@ export * from './NpiProviderUncheckedUpdateManyWithoutUserNestedInput.schema.d'; export * from './NpiProviderUncheckedUpdateManyWithoutUserNestedInput.schema'; export * from './NpiProviderUncheckedUpdateWithoutAppointmentProceduresInput.schema.d'; export * from './NpiProviderUncheckedUpdateWithoutAppointmentProceduresInput.schema'; +export * from './NpiProviderUncheckedUpdateWithoutAppointmentsInput.schema'; export * from './NpiProviderUncheckedUpdateWithoutClaimsInput.schema.d'; export * from './NpiProviderUncheckedUpdateWithoutClaimsInput.schema'; +export * from './NpiProviderUncheckedUpdateWithoutCommissionBatchesInput.schema.d'; export * from './NpiProviderUncheckedUpdateWithoutCommissionBatchesInput.schema'; +export * from './NpiProviderUncheckedUpdateWithoutPaymentsInput.schema.d'; export * from './NpiProviderUncheckedUpdateWithoutPaymentsInput.schema'; export * from './NpiProviderUncheckedUpdateWithoutUserInput.schema.d'; export * from './NpiProviderUncheckedUpdateWithoutUserInput.schema'; @@ -2254,25 +2556,34 @@ export * from './NpiProviderUpdateManyWithWhereWithoutUserInput.schema.d'; export * from './NpiProviderUpdateManyWithWhereWithoutUserInput.schema'; export * from './NpiProviderUpdateManyWithoutUserNestedInput.schema.d'; export * from './NpiProviderUpdateManyWithoutUserNestedInput.schema'; +export * from './NpiProviderUpdateOneRequiredWithoutCommissionBatchesNestedInput.schema.d'; export * from './NpiProviderUpdateOneRequiredWithoutCommissionBatchesNestedInput.schema'; export * from './NpiProviderUpdateOneWithoutAppointmentProceduresNestedInput.schema.d'; export * from './NpiProviderUpdateOneWithoutAppointmentProceduresNestedInput.schema'; +export * from './NpiProviderUpdateOneWithoutAppointmentsNestedInput.schema'; export * from './NpiProviderUpdateOneWithoutClaimsNestedInput.schema.d'; export * from './NpiProviderUpdateOneWithoutClaimsNestedInput.schema'; +export * from './NpiProviderUpdateOneWithoutPaymentsNestedInput.schema.d'; export * from './NpiProviderUpdateOneWithoutPaymentsNestedInput.schema'; export * from './NpiProviderUpdateToOneWithWhereWithoutAppointmentProceduresInput.schema.d'; export * from './NpiProviderUpdateToOneWithWhereWithoutAppointmentProceduresInput.schema'; +export * from './NpiProviderUpdateToOneWithWhereWithoutAppointmentsInput.schema'; export * from './NpiProviderUpdateToOneWithWhereWithoutClaimsInput.schema.d'; export * from './NpiProviderUpdateToOneWithWhereWithoutClaimsInput.schema'; +export * from './NpiProviderUpdateToOneWithWhereWithoutCommissionBatchesInput.schema.d'; export * from './NpiProviderUpdateToOneWithWhereWithoutCommissionBatchesInput.schema'; +export * from './NpiProviderUpdateToOneWithWhereWithoutPaymentsInput.schema.d'; export * from './NpiProviderUpdateToOneWithWhereWithoutPaymentsInput.schema'; export * from './NpiProviderUpdateWithWhereUniqueWithoutUserInput.schema.d'; export * from './NpiProviderUpdateWithWhereUniqueWithoutUserInput.schema'; export * from './NpiProviderUpdateWithoutAppointmentProceduresInput.schema.d'; export * from './NpiProviderUpdateWithoutAppointmentProceduresInput.schema'; +export * from './NpiProviderUpdateWithoutAppointmentsInput.schema'; export * from './NpiProviderUpdateWithoutClaimsInput.schema.d'; export * from './NpiProviderUpdateWithoutClaimsInput.schema'; +export * from './NpiProviderUpdateWithoutCommissionBatchesInput.schema.d'; export * from './NpiProviderUpdateWithoutCommissionBatchesInput.schema'; +export * from './NpiProviderUpdateWithoutPaymentsInput.schema.d'; export * from './NpiProviderUpdateWithoutPaymentsInput.schema'; export * from './NpiProviderUpdateWithoutUserInput.schema.d'; export * from './NpiProviderUpdateWithoutUserInput.schema'; @@ -2280,9 +2591,12 @@ export * from './NpiProviderUpsertWithWhereUniqueWithoutUserInput.schema.d'; export * from './NpiProviderUpsertWithWhereUniqueWithoutUserInput.schema'; export * from './NpiProviderUpsertWithoutAppointmentProceduresInput.schema.d'; export * from './NpiProviderUpsertWithoutAppointmentProceduresInput.schema'; +export * from './NpiProviderUpsertWithoutAppointmentsInput.schema'; export * from './NpiProviderUpsertWithoutClaimsInput.schema.d'; export * from './NpiProviderUpsertWithoutClaimsInput.schema'; +export * from './NpiProviderUpsertWithoutCommissionBatchesInput.schema.d'; export * from './NpiProviderUpsertWithoutCommissionBatchesInput.schema'; +export * from './NpiProviderUpsertWithoutPaymentsInput.schema.d'; export * from './NpiProviderUpsertWithoutPaymentsInput.schema'; export * from './NpiProviderUserIdNpiNumberCompoundUniqueInput.schema.d'; export * from './NpiProviderUserIdNpiNumberCompoundUniqueInput.schema'; @@ -2298,79 +2612,153 @@ export * from './NullableIntFieldUpdateOperationsInput.schema.d'; export * from './NullableIntFieldUpdateOperationsInput.schema'; export * from './NullableStringFieldUpdateOperationsInput.schema.d'; export * from './NullableStringFieldUpdateOperationsInput.schema'; +export * from './OfficeContactArgs.schema.d'; export * from './OfficeContactArgs.schema'; +export * from './OfficeContactAvgAggregateInput.schema.d'; export * from './OfficeContactAvgAggregateInput.schema'; +export * from './OfficeContactAvgOrderByAggregateInput.schema.d'; export * from './OfficeContactAvgOrderByAggregateInput.schema'; +export * from './OfficeContactCountAggregateInput.schema.d'; export * from './OfficeContactCountAggregateInput.schema'; +export * from './OfficeContactCountOrderByAggregateInput.schema.d'; export * from './OfficeContactCountOrderByAggregateInput.schema'; +export * from './OfficeContactCreateInput.schema.d'; export * from './OfficeContactCreateInput.schema'; +export * from './OfficeContactCreateManyInput.schema.d'; export * from './OfficeContactCreateManyInput.schema'; +export * from './OfficeContactCreateNestedOneWithoutUserInput.schema.d'; export * from './OfficeContactCreateNestedOneWithoutUserInput.schema'; +export * from './OfficeContactCreateOrConnectWithoutUserInput.schema.d'; export * from './OfficeContactCreateOrConnectWithoutUserInput.schema'; +export * from './OfficeContactCreateWithoutUserInput.schema.d'; export * from './OfficeContactCreateWithoutUserInput.schema'; +export * from './OfficeContactInclude.schema.d'; export * from './OfficeContactInclude.schema'; +export * from './OfficeContactMaxAggregateInput.schema.d'; export * from './OfficeContactMaxAggregateInput.schema'; +export * from './OfficeContactMaxOrderByAggregateInput.schema.d'; export * from './OfficeContactMaxOrderByAggregateInput.schema'; +export * from './OfficeContactMinAggregateInput.schema.d'; export * from './OfficeContactMinAggregateInput.schema'; +export * from './OfficeContactMinOrderByAggregateInput.schema.d'; export * from './OfficeContactMinOrderByAggregateInput.schema'; +export * from './OfficeContactNullableScalarRelationFilter.schema.d'; export * from './OfficeContactNullableScalarRelationFilter.schema'; +export * from './OfficeContactOrderByWithAggregationInput.schema.d'; export * from './OfficeContactOrderByWithAggregationInput.schema'; +export * from './OfficeContactOrderByWithRelationInput.schema.d'; export * from './OfficeContactOrderByWithRelationInput.schema'; +export * from './OfficeContactScalarWhereWithAggregatesInput.schema.d'; export * from './OfficeContactScalarWhereWithAggregatesInput.schema'; +export * from './OfficeContactSelect.schema.d'; export * from './OfficeContactSelect.schema'; +export * from './OfficeContactSumAggregateInput.schema.d'; export * from './OfficeContactSumAggregateInput.schema'; +export * from './OfficeContactSumOrderByAggregateInput.schema.d'; export * from './OfficeContactSumOrderByAggregateInput.schema'; +export * from './OfficeContactUncheckedCreateInput.schema.d'; export * from './OfficeContactUncheckedCreateInput.schema'; +export * from './OfficeContactUncheckedCreateNestedOneWithoutUserInput.schema.d'; export * from './OfficeContactUncheckedCreateNestedOneWithoutUserInput.schema'; +export * from './OfficeContactUncheckedCreateWithoutUserInput.schema.d'; export * from './OfficeContactUncheckedCreateWithoutUserInput.schema'; +export * from './OfficeContactUncheckedUpdateInput.schema.d'; export * from './OfficeContactUncheckedUpdateInput.schema'; +export * from './OfficeContactUncheckedUpdateManyInput.schema.d'; export * from './OfficeContactUncheckedUpdateManyInput.schema'; +export * from './OfficeContactUncheckedUpdateOneWithoutUserNestedInput.schema.d'; export * from './OfficeContactUncheckedUpdateOneWithoutUserNestedInput.schema'; +export * from './OfficeContactUncheckedUpdateWithoutUserInput.schema.d'; export * from './OfficeContactUncheckedUpdateWithoutUserInput.schema'; +export * from './OfficeContactUpdateInput.schema.d'; export * from './OfficeContactUpdateInput.schema'; +export * from './OfficeContactUpdateManyMutationInput.schema.d'; export * from './OfficeContactUpdateManyMutationInput.schema'; +export * from './OfficeContactUpdateOneWithoutUserNestedInput.schema.d'; export * from './OfficeContactUpdateOneWithoutUserNestedInput.schema'; +export * from './OfficeContactUpdateToOneWithWhereWithoutUserInput.schema.d'; export * from './OfficeContactUpdateToOneWithWhereWithoutUserInput.schema'; +export * from './OfficeContactUpdateWithoutUserInput.schema.d'; export * from './OfficeContactUpdateWithoutUserInput.schema'; +export * from './OfficeContactUpsertWithoutUserInput.schema.d'; export * from './OfficeContactUpsertWithoutUserInput.schema'; +export * from './OfficeContactWhereInput.schema.d'; export * from './OfficeContactWhereInput.schema'; +export * from './OfficeContactWhereUniqueInput.schema.d'; export * from './OfficeContactWhereUniqueInput.schema'; +export * from './OfficeHoursArgs.schema.d'; export * from './OfficeHoursArgs.schema'; +export * from './OfficeHoursAvgAggregateInput.schema.d'; export * from './OfficeHoursAvgAggregateInput.schema'; +export * from './OfficeHoursAvgOrderByAggregateInput.schema.d'; export * from './OfficeHoursAvgOrderByAggregateInput.schema'; +export * from './OfficeHoursCountAggregateInput.schema.d'; export * from './OfficeHoursCountAggregateInput.schema'; +export * from './OfficeHoursCountOrderByAggregateInput.schema.d'; export * from './OfficeHoursCountOrderByAggregateInput.schema'; +export * from './OfficeHoursCreateInput.schema.d'; export * from './OfficeHoursCreateInput.schema'; +export * from './OfficeHoursCreateManyInput.schema.d'; export * from './OfficeHoursCreateManyInput.schema'; +export * from './OfficeHoursCreateNestedOneWithoutUserInput.schema.d'; export * from './OfficeHoursCreateNestedOneWithoutUserInput.schema'; +export * from './OfficeHoursCreateOrConnectWithoutUserInput.schema.d'; export * from './OfficeHoursCreateOrConnectWithoutUserInput.schema'; +export * from './OfficeHoursCreateWithoutUserInput.schema.d'; export * from './OfficeHoursCreateWithoutUserInput.schema'; +export * from './OfficeHoursInclude.schema.d'; export * from './OfficeHoursInclude.schema'; +export * from './OfficeHoursMaxAggregateInput.schema.d'; export * from './OfficeHoursMaxAggregateInput.schema'; +export * from './OfficeHoursMaxOrderByAggregateInput.schema.d'; export * from './OfficeHoursMaxOrderByAggregateInput.schema'; +export * from './OfficeHoursMinAggregateInput.schema.d'; export * from './OfficeHoursMinAggregateInput.schema'; +export * from './OfficeHoursMinOrderByAggregateInput.schema.d'; export * from './OfficeHoursMinOrderByAggregateInput.schema'; +export * from './OfficeHoursNullableScalarRelationFilter.schema.d'; export * from './OfficeHoursNullableScalarRelationFilter.schema'; +export * from './OfficeHoursOrderByWithAggregationInput.schema.d'; export * from './OfficeHoursOrderByWithAggregationInput.schema'; +export * from './OfficeHoursOrderByWithRelationInput.schema.d'; export * from './OfficeHoursOrderByWithRelationInput.schema'; +export * from './OfficeHoursScalarWhereWithAggregatesInput.schema.d'; export * from './OfficeHoursScalarWhereWithAggregatesInput.schema'; +export * from './OfficeHoursSelect.schema.d'; export * from './OfficeHoursSelect.schema'; +export * from './OfficeHoursSumAggregateInput.schema.d'; export * from './OfficeHoursSumAggregateInput.schema'; +export * from './OfficeHoursSumOrderByAggregateInput.schema.d'; export * from './OfficeHoursSumOrderByAggregateInput.schema'; +export * from './OfficeHoursUncheckedCreateInput.schema.d'; export * from './OfficeHoursUncheckedCreateInput.schema'; +export * from './OfficeHoursUncheckedCreateNestedOneWithoutUserInput.schema.d'; export * from './OfficeHoursUncheckedCreateNestedOneWithoutUserInput.schema'; +export * from './OfficeHoursUncheckedCreateWithoutUserInput.schema.d'; export * from './OfficeHoursUncheckedCreateWithoutUserInput.schema'; +export * from './OfficeHoursUncheckedUpdateInput.schema.d'; export * from './OfficeHoursUncheckedUpdateInput.schema'; +export * from './OfficeHoursUncheckedUpdateManyInput.schema.d'; export * from './OfficeHoursUncheckedUpdateManyInput.schema'; +export * from './OfficeHoursUncheckedUpdateOneWithoutUserNestedInput.schema.d'; export * from './OfficeHoursUncheckedUpdateOneWithoutUserNestedInput.schema'; +export * from './OfficeHoursUncheckedUpdateWithoutUserInput.schema.d'; export * from './OfficeHoursUncheckedUpdateWithoutUserInput.schema'; +export * from './OfficeHoursUpdateInput.schema.d'; export * from './OfficeHoursUpdateInput.schema'; +export * from './OfficeHoursUpdateManyMutationInput.schema.d'; export * from './OfficeHoursUpdateManyMutationInput.schema'; +export * from './OfficeHoursUpdateOneWithoutUserNestedInput.schema.d'; export * from './OfficeHoursUpdateOneWithoutUserNestedInput.schema'; +export * from './OfficeHoursUpdateToOneWithWhereWithoutUserInput.schema.d'; export * from './OfficeHoursUpdateToOneWithWhereWithoutUserInput.schema'; +export * from './OfficeHoursUpdateWithoutUserInput.schema.d'; export * from './OfficeHoursUpdateWithoutUserInput.schema'; +export * from './OfficeHoursUpsertWithoutUserInput.schema.d'; export * from './OfficeHoursUpsertWithoutUserInput.schema'; +export * from './OfficeHoursWhereInput.schema.d'; export * from './OfficeHoursWhereInput.schema'; +export * from './OfficeHoursWhereUniqueInput.schema.d'; export * from './OfficeHoursWhereUniqueInput.schema'; export * from './PatientArgs.schema.d'; export * from './PatientArgs.schema'; @@ -2378,60 +2766,115 @@ export * from './PatientAvgAggregateInput.schema.d'; export * from './PatientAvgAggregateInput.schema'; export * from './PatientAvgOrderByAggregateInput.schema.d'; export * from './PatientAvgOrderByAggregateInput.schema'; +export * from './PatientConversationArgs.schema.d'; export * from './PatientConversationArgs.schema'; +export * from './PatientConversationAvgAggregateInput.schema.d'; export * from './PatientConversationAvgAggregateInput.schema'; +export * from './PatientConversationAvgOrderByAggregateInput.schema.d'; export * from './PatientConversationAvgOrderByAggregateInput.schema'; +export * from './PatientConversationCountAggregateInput.schema.d'; export * from './PatientConversationCountAggregateInput.schema'; +export * from './PatientConversationCountOrderByAggregateInput.schema.d'; export * from './PatientConversationCountOrderByAggregateInput.schema'; +export * from './PatientConversationCreateInput.schema.d'; export * from './PatientConversationCreateInput.schema'; +export * from './PatientConversationCreateManyInput.schema.d'; export * from './PatientConversationCreateManyInput.schema'; +export * from './PatientConversationCreateManyUserInput.schema.d'; export * from './PatientConversationCreateManyUserInput.schema'; +export * from './PatientConversationCreateManyUserInputEnvelope.schema.d'; export * from './PatientConversationCreateManyUserInputEnvelope.schema'; +export * from './PatientConversationCreateNestedManyWithoutUserInput.schema.d'; export * from './PatientConversationCreateNestedManyWithoutUserInput.schema'; +export * from './PatientConversationCreateNestedOneWithoutPatientInput.schema.d'; export * from './PatientConversationCreateNestedOneWithoutPatientInput.schema'; +export * from './PatientConversationCreateOrConnectWithoutPatientInput.schema.d'; export * from './PatientConversationCreateOrConnectWithoutPatientInput.schema'; +export * from './PatientConversationCreateOrConnectWithoutUserInput.schema.d'; export * from './PatientConversationCreateOrConnectWithoutUserInput.schema'; +export * from './PatientConversationCreateWithoutPatientInput.schema.d'; export * from './PatientConversationCreateWithoutPatientInput.schema'; +export * from './PatientConversationCreateWithoutUserInput.schema.d'; export * from './PatientConversationCreateWithoutUserInput.schema'; +export * from './PatientConversationInclude.schema.d'; export * from './PatientConversationInclude.schema'; +export * from './PatientConversationListRelationFilter.schema.d'; export * from './PatientConversationListRelationFilter.schema'; +export * from './PatientConversationMaxAggregateInput.schema.d'; export * from './PatientConversationMaxAggregateInput.schema'; +export * from './PatientConversationMaxOrderByAggregateInput.schema.d'; export * from './PatientConversationMaxOrderByAggregateInput.schema'; +export * from './PatientConversationMinAggregateInput.schema.d'; export * from './PatientConversationMinAggregateInput.schema'; +export * from './PatientConversationMinOrderByAggregateInput.schema.d'; export * from './PatientConversationMinOrderByAggregateInput.schema'; +export * from './PatientConversationNullableScalarRelationFilter.schema.d'; export * from './PatientConversationNullableScalarRelationFilter.schema'; +export * from './PatientConversationOrderByRelationAggregateInput.schema.d'; export * from './PatientConversationOrderByRelationAggregateInput.schema'; +export * from './PatientConversationOrderByWithAggregationInput.schema.d'; export * from './PatientConversationOrderByWithAggregationInput.schema'; +export * from './PatientConversationOrderByWithRelationInput.schema.d'; export * from './PatientConversationOrderByWithRelationInput.schema'; +export * from './PatientConversationScalarWhereInput.schema.d'; export * from './PatientConversationScalarWhereInput.schema'; +export * from './PatientConversationScalarWhereWithAggregatesInput.schema.d'; export * from './PatientConversationScalarWhereWithAggregatesInput.schema'; +export * from './PatientConversationSelect.schema.d'; export * from './PatientConversationSelect.schema'; +export * from './PatientConversationSumAggregateInput.schema.d'; export * from './PatientConversationSumAggregateInput.schema'; +export * from './PatientConversationSumOrderByAggregateInput.schema.d'; export * from './PatientConversationSumOrderByAggregateInput.schema'; +export * from './PatientConversationUncheckedCreateInput.schema.d'; export * from './PatientConversationUncheckedCreateInput.schema'; +export * from './PatientConversationUncheckedCreateNestedManyWithoutUserInput.schema.d'; export * from './PatientConversationUncheckedCreateNestedManyWithoutUserInput.schema'; +export * from './PatientConversationUncheckedCreateNestedOneWithoutPatientInput.schema.d'; export * from './PatientConversationUncheckedCreateNestedOneWithoutPatientInput.schema'; +export * from './PatientConversationUncheckedCreateWithoutPatientInput.schema.d'; export * from './PatientConversationUncheckedCreateWithoutPatientInput.schema'; +export * from './PatientConversationUncheckedCreateWithoutUserInput.schema.d'; export * from './PatientConversationUncheckedCreateWithoutUserInput.schema'; +export * from './PatientConversationUncheckedUpdateInput.schema.d'; export * from './PatientConversationUncheckedUpdateInput.schema'; +export * from './PatientConversationUncheckedUpdateManyInput.schema.d'; export * from './PatientConversationUncheckedUpdateManyInput.schema'; +export * from './PatientConversationUncheckedUpdateManyWithoutUserInput.schema.d'; export * from './PatientConversationUncheckedUpdateManyWithoutUserInput.schema'; +export * from './PatientConversationUncheckedUpdateManyWithoutUserNestedInput.schema.d'; export * from './PatientConversationUncheckedUpdateManyWithoutUserNestedInput.schema'; +export * from './PatientConversationUncheckedUpdateOneWithoutPatientNestedInput.schema.d'; export * from './PatientConversationUncheckedUpdateOneWithoutPatientNestedInput.schema'; +export * from './PatientConversationUncheckedUpdateWithoutPatientInput.schema.d'; export * from './PatientConversationUncheckedUpdateWithoutPatientInput.schema'; +export * from './PatientConversationUncheckedUpdateWithoutUserInput.schema.d'; export * from './PatientConversationUncheckedUpdateWithoutUserInput.schema'; +export * from './PatientConversationUpdateInput.schema.d'; export * from './PatientConversationUpdateInput.schema'; +export * from './PatientConversationUpdateManyMutationInput.schema.d'; export * from './PatientConversationUpdateManyMutationInput.schema'; +export * from './PatientConversationUpdateManyWithWhereWithoutUserInput.schema.d'; export * from './PatientConversationUpdateManyWithWhereWithoutUserInput.schema'; +export * from './PatientConversationUpdateManyWithoutUserNestedInput.schema.d'; export * from './PatientConversationUpdateManyWithoutUserNestedInput.schema'; +export * from './PatientConversationUpdateOneWithoutPatientNestedInput.schema.d'; export * from './PatientConversationUpdateOneWithoutPatientNestedInput.schema'; +export * from './PatientConversationUpdateToOneWithWhereWithoutPatientInput.schema.d'; export * from './PatientConversationUpdateToOneWithWhereWithoutPatientInput.schema'; +export * from './PatientConversationUpdateWithWhereUniqueWithoutUserInput.schema.d'; export * from './PatientConversationUpdateWithWhereUniqueWithoutUserInput.schema'; +export * from './PatientConversationUpdateWithoutPatientInput.schema.d'; export * from './PatientConversationUpdateWithoutPatientInput.schema'; +export * from './PatientConversationUpdateWithoutUserInput.schema.d'; export * from './PatientConversationUpdateWithoutUserInput.schema'; +export * from './PatientConversationUpsertWithWhereUniqueWithoutUserInput.schema.d'; export * from './PatientConversationUpsertWithWhereUniqueWithoutUserInput.schema'; +export * from './PatientConversationUpsertWithoutPatientInput.schema.d'; export * from './PatientConversationUpsertWithoutPatientInput.schema'; +export * from './PatientConversationWhereInput.schema.d'; export * from './PatientConversationWhereInput.schema'; +export * from './PatientConversationWhereUniqueInput.schema.d'; export * from './PatientConversationWhereUniqueInput.schema'; export * from './PatientCountAggregateInput.schema.d'; export * from './PatientCountAggregateInput.schema'; @@ -2443,6 +2886,7 @@ export * from './PatientCountOutputTypeCountAppointmentsArgs.schema.d'; export * from './PatientCountOutputTypeCountAppointmentsArgs.schema'; export * from './PatientCountOutputTypeCountClaimsArgs.schema.d'; export * from './PatientCountOutputTypeCountClaimsArgs.schema'; +export * from './PatientCountOutputTypeCountCloudFoldersArgs.schema.d'; export * from './PatientCountOutputTypeCountCloudFoldersArgs.schema'; export * from './PatientCountOutputTypeCountCommunicationsArgs.schema.d'; export * from './PatientCountOutputTypeCountCommunicationsArgs.schema'; @@ -2470,9 +2914,11 @@ export * from './PatientCreateNestedOneWithoutAppointmentsInput.schema.d'; export * from './PatientCreateNestedOneWithoutAppointmentsInput.schema'; export * from './PatientCreateNestedOneWithoutClaimsInput.schema.d'; export * from './PatientCreateNestedOneWithoutClaimsInput.schema'; +export * from './PatientCreateNestedOneWithoutCloudFoldersInput.schema.d'; export * from './PatientCreateNestedOneWithoutCloudFoldersInput.schema'; export * from './PatientCreateNestedOneWithoutCommunicationsInput.schema.d'; export * from './PatientCreateNestedOneWithoutCommunicationsInput.schema'; +export * from './PatientCreateNestedOneWithoutConversationInput.schema.d'; export * from './PatientCreateNestedOneWithoutConversationInput.schema'; export * from './PatientCreateNestedOneWithoutDocumentsInput.schema.d'; export * from './PatientCreateNestedOneWithoutDocumentsInput.schema'; @@ -2486,9 +2932,11 @@ export * from './PatientCreateOrConnectWithoutAppointmentsInput.schema.d'; export * from './PatientCreateOrConnectWithoutAppointmentsInput.schema'; export * from './PatientCreateOrConnectWithoutClaimsInput.schema.d'; export * from './PatientCreateOrConnectWithoutClaimsInput.schema'; +export * from './PatientCreateOrConnectWithoutCloudFoldersInput.schema.d'; export * from './PatientCreateOrConnectWithoutCloudFoldersInput.schema'; export * from './PatientCreateOrConnectWithoutCommunicationsInput.schema.d'; export * from './PatientCreateOrConnectWithoutCommunicationsInput.schema'; +export * from './PatientCreateOrConnectWithoutConversationInput.schema.d'; export * from './PatientCreateOrConnectWithoutConversationInput.schema'; export * from './PatientCreateOrConnectWithoutDocumentsInput.schema.d'; export * from './PatientCreateOrConnectWithoutDocumentsInput.schema'; @@ -2504,9 +2952,11 @@ export * from './PatientCreateWithoutAppointmentsInput.schema.d'; export * from './PatientCreateWithoutAppointmentsInput.schema'; export * from './PatientCreateWithoutClaimsInput.schema.d'; export * from './PatientCreateWithoutClaimsInput.schema'; +export * from './PatientCreateWithoutCloudFoldersInput.schema.d'; export * from './PatientCreateWithoutCloudFoldersInput.schema'; export * from './PatientCreateWithoutCommunicationsInput.schema.d'; export * from './PatientCreateWithoutCommunicationsInput.schema'; +export * from './PatientCreateWithoutConversationInput.schema.d'; export * from './PatientCreateWithoutConversationInput.schema'; export * from './PatientCreateWithoutDocumentsInput.schema.d'; export * from './PatientCreateWithoutDocumentsInput.schema'; @@ -2616,6 +3066,7 @@ export * from './PatientMinAggregateInput.schema.d'; export * from './PatientMinAggregateInput.schema'; export * from './PatientMinOrderByAggregateInput.schema.d'; export * from './PatientMinOrderByAggregateInput.schema'; +export * from './PatientNullableScalarRelationFilter.schema.d'; export * from './PatientNullableScalarRelationFilter.schema'; export * from './PatientOrderByRelationAggregateInput.schema.d'; export * from './PatientOrderByRelationAggregateInput.schema'; @@ -2643,9 +3094,11 @@ export * from './PatientUncheckedCreateWithoutAppointmentsInput.schema.d'; export * from './PatientUncheckedCreateWithoutAppointmentsInput.schema'; export * from './PatientUncheckedCreateWithoutClaimsInput.schema.d'; export * from './PatientUncheckedCreateWithoutClaimsInput.schema'; +export * from './PatientUncheckedCreateWithoutCloudFoldersInput.schema.d'; export * from './PatientUncheckedCreateWithoutCloudFoldersInput.schema'; export * from './PatientUncheckedCreateWithoutCommunicationsInput.schema.d'; export * from './PatientUncheckedCreateWithoutCommunicationsInput.schema'; +export * from './PatientUncheckedCreateWithoutConversationInput.schema.d'; export * from './PatientUncheckedCreateWithoutConversationInput.schema'; export * from './PatientUncheckedCreateWithoutDocumentsInput.schema.d'; export * from './PatientUncheckedCreateWithoutDocumentsInput.schema'; @@ -2669,9 +3122,11 @@ export * from './PatientUncheckedUpdateWithoutAppointmentsInput.schema.d'; export * from './PatientUncheckedUpdateWithoutAppointmentsInput.schema'; export * from './PatientUncheckedUpdateWithoutClaimsInput.schema.d'; export * from './PatientUncheckedUpdateWithoutClaimsInput.schema'; +export * from './PatientUncheckedUpdateWithoutCloudFoldersInput.schema.d'; export * from './PatientUncheckedUpdateWithoutCloudFoldersInput.schema'; export * from './PatientUncheckedUpdateWithoutCommunicationsInput.schema.d'; export * from './PatientUncheckedUpdateWithoutCommunicationsInput.schema'; +export * from './PatientUncheckedUpdateWithoutConversationInput.schema.d'; export * from './PatientUncheckedUpdateWithoutConversationInput.schema'; export * from './PatientUncheckedUpdateWithoutDocumentsInput.schema.d'; export * from './PatientUncheckedUpdateWithoutDocumentsInput.schema'; @@ -2697,6 +3152,7 @@ export * from './PatientUpdateOneRequiredWithoutClaimsNestedInput.schema.d'; export * from './PatientUpdateOneRequiredWithoutClaimsNestedInput.schema'; export * from './PatientUpdateOneRequiredWithoutCommunicationsNestedInput.schema.d'; export * from './PatientUpdateOneRequiredWithoutCommunicationsNestedInput.schema'; +export * from './PatientUpdateOneRequiredWithoutConversationNestedInput.schema.d'; export * from './PatientUpdateOneRequiredWithoutConversationNestedInput.schema'; export * from './PatientUpdateOneRequiredWithoutDocumentsNestedInput.schema.d'; export * from './PatientUpdateOneRequiredWithoutDocumentsNestedInput.schema'; @@ -2706,14 +3162,17 @@ export * from './PatientUpdateOneRequiredWithoutPaymentNestedInput.schema.d'; export * from './PatientUpdateOneRequiredWithoutPaymentNestedInput.schema'; export * from './PatientUpdateOneRequiredWithoutProceduresNestedInput.schema.d'; export * from './PatientUpdateOneRequiredWithoutProceduresNestedInput.schema'; +export * from './PatientUpdateOneWithoutCloudFoldersNestedInput.schema.d'; export * from './PatientUpdateOneWithoutCloudFoldersNestedInput.schema'; export * from './PatientUpdateToOneWithWhereWithoutAppointmentsInput.schema.d'; export * from './PatientUpdateToOneWithWhereWithoutAppointmentsInput.schema'; export * from './PatientUpdateToOneWithWhereWithoutClaimsInput.schema.d'; export * from './PatientUpdateToOneWithWhereWithoutClaimsInput.schema'; +export * from './PatientUpdateToOneWithWhereWithoutCloudFoldersInput.schema.d'; export * from './PatientUpdateToOneWithWhereWithoutCloudFoldersInput.schema'; export * from './PatientUpdateToOneWithWhereWithoutCommunicationsInput.schema.d'; export * from './PatientUpdateToOneWithWhereWithoutCommunicationsInput.schema'; +export * from './PatientUpdateToOneWithWhereWithoutConversationInput.schema.d'; export * from './PatientUpdateToOneWithWhereWithoutConversationInput.schema'; export * from './PatientUpdateToOneWithWhereWithoutDocumentsInput.schema.d'; export * from './PatientUpdateToOneWithWhereWithoutDocumentsInput.schema'; @@ -2729,9 +3188,11 @@ export * from './PatientUpdateWithoutAppointmentsInput.schema.d'; export * from './PatientUpdateWithoutAppointmentsInput.schema'; export * from './PatientUpdateWithoutClaimsInput.schema.d'; export * from './PatientUpdateWithoutClaimsInput.schema'; +export * from './PatientUpdateWithoutCloudFoldersInput.schema.d'; export * from './PatientUpdateWithoutCloudFoldersInput.schema'; export * from './PatientUpdateWithoutCommunicationsInput.schema.d'; export * from './PatientUpdateWithoutCommunicationsInput.schema'; +export * from './PatientUpdateWithoutConversationInput.schema.d'; export * from './PatientUpdateWithoutConversationInput.schema'; export * from './PatientUpdateWithoutDocumentsInput.schema.d'; export * from './PatientUpdateWithoutDocumentsInput.schema'; @@ -2749,9 +3210,11 @@ export * from './PatientUpsertWithoutAppointmentsInput.schema.d'; export * from './PatientUpsertWithoutAppointmentsInput.schema'; export * from './PatientUpsertWithoutClaimsInput.schema.d'; export * from './PatientUpsertWithoutClaimsInput.schema'; +export * from './PatientUpsertWithoutCloudFoldersInput.schema.d'; export * from './PatientUpsertWithoutCloudFoldersInput.schema'; export * from './PatientUpsertWithoutCommunicationsInput.schema.d'; export * from './PatientUpsertWithoutCommunicationsInput.schema'; +export * from './PatientUpsertWithoutConversationInput.schema.d'; export * from './PatientUpsertWithoutConversationInput.schema'; export * from './PatientUpsertWithoutDocumentsInput.schema.d'; export * from './PatientUpsertWithoutDocumentsInput.schema'; @@ -2777,6 +3240,7 @@ export * from './PaymentCountOrderByAggregateInput.schema.d'; export * from './PaymentCountOrderByAggregateInput.schema'; export * from './PaymentCountOutputTypeArgs.schema.d'; export * from './PaymentCountOutputTypeArgs.schema'; +export * from './PaymentCountOutputTypeCountCommissionBatchItemsArgs.schema.d'; export * from './PaymentCountOutputTypeCountCommissionBatchItemsArgs.schema'; export * from './PaymentCountOutputTypeCountServiceLineTransactionsArgs.schema.d'; export * from './PaymentCountOutputTypeCountServiceLineTransactionsArgs.schema'; @@ -2788,7 +3252,9 @@ export * from './PaymentCreateInput.schema.d'; export * from './PaymentCreateInput.schema'; export * from './PaymentCreateManyInput.schema.d'; export * from './PaymentCreateManyInput.schema'; +export * from './PaymentCreateManyNpiProviderInput.schema.d'; export * from './PaymentCreateManyNpiProviderInput.schema'; +export * from './PaymentCreateManyNpiProviderInputEnvelope.schema.d'; export * from './PaymentCreateManyNpiProviderInputEnvelope.schema'; export * from './PaymentCreateManyPatientInput.schema.d'; export * from './PaymentCreateManyPatientInput.schema'; @@ -2798,6 +3264,7 @@ export * from './PaymentCreateManyUpdatedByInput.schema.d'; export * from './PaymentCreateManyUpdatedByInput.schema'; export * from './PaymentCreateManyUpdatedByInputEnvelope.schema.d'; export * from './PaymentCreateManyUpdatedByInputEnvelope.schema'; +export * from './PaymentCreateNestedManyWithoutNpiProviderInput.schema.d'; export * from './PaymentCreateNestedManyWithoutNpiProviderInput.schema'; export * from './PaymentCreateNestedManyWithoutPatientInput.schema.d'; export * from './PaymentCreateNestedManyWithoutPatientInput.schema'; @@ -2805,6 +3272,7 @@ export * from './PaymentCreateNestedManyWithoutUpdatedByInput.schema.d'; export * from './PaymentCreateNestedManyWithoutUpdatedByInput.schema'; export * from './PaymentCreateNestedOneWithoutClaimInput.schema.d'; export * from './PaymentCreateNestedOneWithoutClaimInput.schema'; +export * from './PaymentCreateNestedOneWithoutCommissionBatchItemsInput.schema.d'; export * from './PaymentCreateNestedOneWithoutCommissionBatchItemsInput.schema'; export * from './PaymentCreateNestedOneWithoutServiceLineTransactionsInput.schema.d'; export * from './PaymentCreateNestedOneWithoutServiceLineTransactionsInput.schema'; @@ -2812,7 +3280,9 @@ export * from './PaymentCreateNestedOneWithoutServiceLinesInput.schema.d'; export * from './PaymentCreateNestedOneWithoutServiceLinesInput.schema'; export * from './PaymentCreateOrConnectWithoutClaimInput.schema.d'; export * from './PaymentCreateOrConnectWithoutClaimInput.schema'; +export * from './PaymentCreateOrConnectWithoutCommissionBatchItemsInput.schema.d'; export * from './PaymentCreateOrConnectWithoutCommissionBatchItemsInput.schema'; +export * from './PaymentCreateOrConnectWithoutNpiProviderInput.schema.d'; export * from './PaymentCreateOrConnectWithoutNpiProviderInput.schema'; export * from './PaymentCreateOrConnectWithoutPatientInput.schema.d'; export * from './PaymentCreateOrConnectWithoutPatientInput.schema'; @@ -2824,7 +3294,9 @@ export * from './PaymentCreateOrConnectWithoutUpdatedByInput.schema.d'; export * from './PaymentCreateOrConnectWithoutUpdatedByInput.schema'; export * from './PaymentCreateWithoutClaimInput.schema.d'; export * from './PaymentCreateWithoutClaimInput.schema'; +export * from './PaymentCreateWithoutCommissionBatchItemsInput.schema.d'; export * from './PaymentCreateWithoutCommissionBatchItemsInput.schema'; +export * from './PaymentCreateWithoutNpiProviderInput.schema.d'; export * from './PaymentCreateWithoutNpiProviderInput.schema'; export * from './PaymentCreateWithoutPatientInput.schema.d'; export * from './PaymentCreateWithoutPatientInput.schema'; @@ -2868,6 +3340,7 @@ export * from './PaymentSumOrderByAggregateInput.schema.d'; export * from './PaymentSumOrderByAggregateInput.schema'; export * from './PaymentUncheckedCreateInput.schema.d'; export * from './PaymentUncheckedCreateInput.schema'; +export * from './PaymentUncheckedCreateNestedManyWithoutNpiProviderInput.schema.d'; export * from './PaymentUncheckedCreateNestedManyWithoutNpiProviderInput.schema'; export * from './PaymentUncheckedCreateNestedManyWithoutPatientInput.schema.d'; export * from './PaymentUncheckedCreateNestedManyWithoutPatientInput.schema'; @@ -2877,7 +3350,9 @@ export * from './PaymentUncheckedCreateNestedOneWithoutClaimInput.schema.d'; export * from './PaymentUncheckedCreateNestedOneWithoutClaimInput.schema'; export * from './PaymentUncheckedCreateWithoutClaimInput.schema.d'; export * from './PaymentUncheckedCreateWithoutClaimInput.schema'; +export * from './PaymentUncheckedCreateWithoutCommissionBatchItemsInput.schema.d'; export * from './PaymentUncheckedCreateWithoutCommissionBatchItemsInput.schema'; +export * from './PaymentUncheckedCreateWithoutNpiProviderInput.schema.d'; export * from './PaymentUncheckedCreateWithoutNpiProviderInput.schema'; export * from './PaymentUncheckedCreateWithoutPatientInput.schema.d'; export * from './PaymentUncheckedCreateWithoutPatientInput.schema'; @@ -2891,7 +3366,9 @@ export * from './PaymentUncheckedUpdateInput.schema.d'; export * from './PaymentUncheckedUpdateInput.schema'; export * from './PaymentUncheckedUpdateManyInput.schema.d'; export * from './PaymentUncheckedUpdateManyInput.schema'; +export * from './PaymentUncheckedUpdateManyWithoutNpiProviderInput.schema.d'; export * from './PaymentUncheckedUpdateManyWithoutNpiProviderInput.schema'; +export * from './PaymentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema.d'; export * from './PaymentUncheckedUpdateManyWithoutNpiProviderNestedInput.schema'; export * from './PaymentUncheckedUpdateManyWithoutPatientInput.schema.d'; export * from './PaymentUncheckedUpdateManyWithoutPatientInput.schema'; @@ -2905,7 +3382,9 @@ export * from './PaymentUncheckedUpdateOneWithoutClaimNestedInput.schema.d'; export * from './PaymentUncheckedUpdateOneWithoutClaimNestedInput.schema'; export * from './PaymentUncheckedUpdateWithoutClaimInput.schema.d'; export * from './PaymentUncheckedUpdateWithoutClaimInput.schema'; +export * from './PaymentUncheckedUpdateWithoutCommissionBatchItemsInput.schema.d'; export * from './PaymentUncheckedUpdateWithoutCommissionBatchItemsInput.schema'; +export * from './PaymentUncheckedUpdateWithoutNpiProviderInput.schema.d'; export * from './PaymentUncheckedUpdateWithoutNpiProviderInput.schema'; export * from './PaymentUncheckedUpdateWithoutPatientInput.schema.d'; export * from './PaymentUncheckedUpdateWithoutPatientInput.schema'; @@ -2919,16 +3398,19 @@ export * from './PaymentUpdateInput.schema.d'; export * from './PaymentUpdateInput.schema'; export * from './PaymentUpdateManyMutationInput.schema.d'; export * from './PaymentUpdateManyMutationInput.schema'; +export * from './PaymentUpdateManyWithWhereWithoutNpiProviderInput.schema.d'; export * from './PaymentUpdateManyWithWhereWithoutNpiProviderInput.schema'; export * from './PaymentUpdateManyWithWhereWithoutPatientInput.schema.d'; export * from './PaymentUpdateManyWithWhereWithoutPatientInput.schema'; export * from './PaymentUpdateManyWithWhereWithoutUpdatedByInput.schema.d'; export * from './PaymentUpdateManyWithWhereWithoutUpdatedByInput.schema'; +export * from './PaymentUpdateManyWithoutNpiProviderNestedInput.schema.d'; export * from './PaymentUpdateManyWithoutNpiProviderNestedInput.schema'; export * from './PaymentUpdateManyWithoutPatientNestedInput.schema.d'; export * from './PaymentUpdateManyWithoutPatientNestedInput.schema'; export * from './PaymentUpdateManyWithoutUpdatedByNestedInput.schema.d'; export * from './PaymentUpdateManyWithoutUpdatedByNestedInput.schema'; +export * from './PaymentUpdateOneRequiredWithoutCommissionBatchItemsNestedInput.schema.d'; export * from './PaymentUpdateOneRequiredWithoutCommissionBatchItemsNestedInput.schema'; export * from './PaymentUpdateOneRequiredWithoutServiceLineTransactionsNestedInput.schema.d'; export * from './PaymentUpdateOneRequiredWithoutServiceLineTransactionsNestedInput.schema'; @@ -2938,11 +3420,13 @@ export * from './PaymentUpdateOneWithoutServiceLinesNestedInput.schema.d'; export * from './PaymentUpdateOneWithoutServiceLinesNestedInput.schema'; export * from './PaymentUpdateToOneWithWhereWithoutClaimInput.schema.d'; export * from './PaymentUpdateToOneWithWhereWithoutClaimInput.schema'; +export * from './PaymentUpdateToOneWithWhereWithoutCommissionBatchItemsInput.schema.d'; export * from './PaymentUpdateToOneWithWhereWithoutCommissionBatchItemsInput.schema'; export * from './PaymentUpdateToOneWithWhereWithoutServiceLineTransactionsInput.schema.d'; export * from './PaymentUpdateToOneWithWhereWithoutServiceLineTransactionsInput.schema'; export * from './PaymentUpdateToOneWithWhereWithoutServiceLinesInput.schema.d'; export * from './PaymentUpdateToOneWithWhereWithoutServiceLinesInput.schema'; +export * from './PaymentUpdateWithWhereUniqueWithoutNpiProviderInput.schema.d'; export * from './PaymentUpdateWithWhereUniqueWithoutNpiProviderInput.schema'; export * from './PaymentUpdateWithWhereUniqueWithoutPatientInput.schema.d'; export * from './PaymentUpdateWithWhereUniqueWithoutPatientInput.schema'; @@ -2950,7 +3434,9 @@ export * from './PaymentUpdateWithWhereUniqueWithoutUpdatedByInput.schema.d'; export * from './PaymentUpdateWithWhereUniqueWithoutUpdatedByInput.schema'; export * from './PaymentUpdateWithoutClaimInput.schema.d'; export * from './PaymentUpdateWithoutClaimInput.schema'; +export * from './PaymentUpdateWithoutCommissionBatchItemsInput.schema.d'; export * from './PaymentUpdateWithoutCommissionBatchItemsInput.schema'; +export * from './PaymentUpdateWithoutNpiProviderInput.schema.d'; export * from './PaymentUpdateWithoutNpiProviderInput.schema'; export * from './PaymentUpdateWithoutPatientInput.schema.d'; export * from './PaymentUpdateWithoutPatientInput.schema'; @@ -2960,6 +3446,7 @@ export * from './PaymentUpdateWithoutServiceLinesInput.schema.d'; export * from './PaymentUpdateWithoutServiceLinesInput.schema'; export * from './PaymentUpdateWithoutUpdatedByInput.schema.d'; export * from './PaymentUpdateWithoutUpdatedByInput.schema'; +export * from './PaymentUpsertWithWhereUniqueWithoutNpiProviderInput.schema.d'; export * from './PaymentUpsertWithWhereUniqueWithoutNpiProviderInput.schema'; export * from './PaymentUpsertWithWhereUniqueWithoutPatientInput.schema.d'; export * from './PaymentUpsertWithWhereUniqueWithoutPatientInput.schema'; @@ -2967,6 +3454,7 @@ export * from './PaymentUpsertWithWhereUniqueWithoutUpdatedByInput.schema.d'; export * from './PaymentUpsertWithWhereUniqueWithoutUpdatedByInput.schema'; export * from './PaymentUpsertWithoutClaimInput.schema.d'; export * from './PaymentUpsertWithoutClaimInput.schema'; +export * from './PaymentUpsertWithoutCommissionBatchItemsInput.schema.d'; export * from './PaymentUpsertWithoutCommissionBatchItemsInput.schema'; export * from './PaymentUpsertWithoutServiceLineTransactionsInput.schema.d'; export * from './PaymentUpsertWithoutServiceLineTransactionsInput.schema'; @@ -3174,42 +3662,79 @@ export * from './PdfGroupWhereInput.schema.d'; export * from './PdfGroupWhereInput.schema'; export * from './PdfGroupWhereUniqueInput.schema.d'; export * from './PdfGroupWhereUniqueInput.schema'; +export * from './ProcedureTimeslotArgs.schema.d'; export * from './ProcedureTimeslotArgs.schema'; +export * from './ProcedureTimeslotAvgAggregateInput.schema.d'; export * from './ProcedureTimeslotAvgAggregateInput.schema'; +export * from './ProcedureTimeslotAvgOrderByAggregateInput.schema.d'; export * from './ProcedureTimeslotAvgOrderByAggregateInput.schema'; +export * from './ProcedureTimeslotCountAggregateInput.schema.d'; export * from './ProcedureTimeslotCountAggregateInput.schema'; +export * from './ProcedureTimeslotCountOrderByAggregateInput.schema.d'; export * from './ProcedureTimeslotCountOrderByAggregateInput.schema'; +export * from './ProcedureTimeslotCreateInput.schema.d'; export * from './ProcedureTimeslotCreateInput.schema'; +export * from './ProcedureTimeslotCreateManyInput.schema.d'; export * from './ProcedureTimeslotCreateManyInput.schema'; +export * from './ProcedureTimeslotCreateNestedOneWithoutUserInput.schema.d'; export * from './ProcedureTimeslotCreateNestedOneWithoutUserInput.schema'; +export * from './ProcedureTimeslotCreateOrConnectWithoutUserInput.schema.d'; export * from './ProcedureTimeslotCreateOrConnectWithoutUserInput.schema'; +export * from './ProcedureTimeslotCreateWithoutUserInput.schema.d'; export * from './ProcedureTimeslotCreateWithoutUserInput.schema'; +export * from './ProcedureTimeslotInclude.schema.d'; export * from './ProcedureTimeslotInclude.schema'; +export * from './ProcedureTimeslotMaxAggregateInput.schema.d'; export * from './ProcedureTimeslotMaxAggregateInput.schema'; +export * from './ProcedureTimeslotMaxOrderByAggregateInput.schema.d'; export * from './ProcedureTimeslotMaxOrderByAggregateInput.schema'; +export * from './ProcedureTimeslotMinAggregateInput.schema.d'; export * from './ProcedureTimeslotMinAggregateInput.schema'; +export * from './ProcedureTimeslotMinOrderByAggregateInput.schema.d'; export * from './ProcedureTimeslotMinOrderByAggregateInput.schema'; +export * from './ProcedureTimeslotNullableScalarRelationFilter.schema.d'; export * from './ProcedureTimeslotNullableScalarRelationFilter.schema'; +export * from './ProcedureTimeslotOrderByWithAggregationInput.schema.d'; export * from './ProcedureTimeslotOrderByWithAggregationInput.schema'; +export * from './ProcedureTimeslotOrderByWithRelationInput.schema.d'; export * from './ProcedureTimeslotOrderByWithRelationInput.schema'; +export * from './ProcedureTimeslotScalarWhereWithAggregatesInput.schema.d'; export * from './ProcedureTimeslotScalarWhereWithAggregatesInput.schema'; +export * from './ProcedureTimeslotSelect.schema.d'; export * from './ProcedureTimeslotSelect.schema'; +export * from './ProcedureTimeslotSumAggregateInput.schema.d'; export * from './ProcedureTimeslotSumAggregateInput.schema'; +export * from './ProcedureTimeslotSumOrderByAggregateInput.schema.d'; export * from './ProcedureTimeslotSumOrderByAggregateInput.schema'; +export * from './ProcedureTimeslotUncheckedCreateInput.schema.d'; export * from './ProcedureTimeslotUncheckedCreateInput.schema'; +export * from './ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput.schema.d'; export * from './ProcedureTimeslotUncheckedCreateNestedOneWithoutUserInput.schema'; +export * from './ProcedureTimeslotUncheckedCreateWithoutUserInput.schema.d'; export * from './ProcedureTimeslotUncheckedCreateWithoutUserInput.schema'; +export * from './ProcedureTimeslotUncheckedUpdateInput.schema.d'; export * from './ProcedureTimeslotUncheckedUpdateInput.schema'; +export * from './ProcedureTimeslotUncheckedUpdateManyInput.schema.d'; export * from './ProcedureTimeslotUncheckedUpdateManyInput.schema'; +export * from './ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput.schema.d'; export * from './ProcedureTimeslotUncheckedUpdateOneWithoutUserNestedInput.schema'; +export * from './ProcedureTimeslotUncheckedUpdateWithoutUserInput.schema.d'; export * from './ProcedureTimeslotUncheckedUpdateWithoutUserInput.schema'; +export * from './ProcedureTimeslotUpdateInput.schema.d'; export * from './ProcedureTimeslotUpdateInput.schema'; +export * from './ProcedureTimeslotUpdateManyMutationInput.schema.d'; export * from './ProcedureTimeslotUpdateManyMutationInput.schema'; +export * from './ProcedureTimeslotUpdateOneWithoutUserNestedInput.schema.d'; export * from './ProcedureTimeslotUpdateOneWithoutUserNestedInput.schema'; +export * from './ProcedureTimeslotUpdateToOneWithWhereWithoutUserInput.schema.d'; export * from './ProcedureTimeslotUpdateToOneWithWhereWithoutUserInput.schema'; +export * from './ProcedureTimeslotUpdateWithoutUserInput.schema.d'; export * from './ProcedureTimeslotUpdateWithoutUserInput.schema'; +export * from './ProcedureTimeslotUpsertWithoutUserInput.schema.d'; export * from './ProcedureTimeslotUpsertWithoutUserInput.schema'; +export * from './ProcedureTimeslotWhereInput.schema.d'; export * from './ProcedureTimeslotWhereInput.schema'; +export * from './ProcedureTimeslotWhereUniqueInput.schema.d'; export * from './ProcedureTimeslotWhereUniqueInput.schema'; export * from './SeleniumSettingsArgs.schema'; export * from './SeleniumSettingsAvgAggregateInput.schema'; @@ -3506,48 +4031,91 @@ export * from './ServiceLineWhereInput.schema.d'; export * from './ServiceLineWhereInput.schema'; export * from './ServiceLineWhereUniqueInput.schema.d'; export * from './ServiceLineWhereUniqueInput.schema'; +export * from './ShoppingVendorArgs.schema.d'; export * from './ShoppingVendorArgs.schema'; +export * from './ShoppingVendorAvgAggregateInput.schema.d'; export * from './ShoppingVendorAvgAggregateInput.schema'; +export * from './ShoppingVendorAvgOrderByAggregateInput.schema.d'; export * from './ShoppingVendorAvgOrderByAggregateInput.schema'; +export * from './ShoppingVendorCountAggregateInput.schema.d'; export * from './ShoppingVendorCountAggregateInput.schema'; +export * from './ShoppingVendorCountOrderByAggregateInput.schema.d'; export * from './ShoppingVendorCountOrderByAggregateInput.schema'; +export * from './ShoppingVendorCreateInput.schema.d'; export * from './ShoppingVendorCreateInput.schema'; +export * from './ShoppingVendorCreateManyInput.schema.d'; export * from './ShoppingVendorCreateManyInput.schema'; +export * from './ShoppingVendorCreateManyUserInput.schema.d'; export * from './ShoppingVendorCreateManyUserInput.schema'; +export * from './ShoppingVendorCreateManyUserInputEnvelope.schema.d'; export * from './ShoppingVendorCreateManyUserInputEnvelope.schema'; +export * from './ShoppingVendorCreateNestedManyWithoutUserInput.schema.d'; export * from './ShoppingVendorCreateNestedManyWithoutUserInput.schema'; +export * from './ShoppingVendorCreateOrConnectWithoutUserInput.schema.d'; export * from './ShoppingVendorCreateOrConnectWithoutUserInput.schema'; +export * from './ShoppingVendorCreateWithoutUserInput.schema.d'; export * from './ShoppingVendorCreateWithoutUserInput.schema'; +export * from './ShoppingVendorInclude.schema.d'; export * from './ShoppingVendorInclude.schema'; +export * from './ShoppingVendorListRelationFilter.schema.d'; export * from './ShoppingVendorListRelationFilter.schema'; +export * from './ShoppingVendorMaxAggregateInput.schema.d'; export * from './ShoppingVendorMaxAggregateInput.schema'; +export * from './ShoppingVendorMaxOrderByAggregateInput.schema.d'; export * from './ShoppingVendorMaxOrderByAggregateInput.schema'; +export * from './ShoppingVendorMinAggregateInput.schema.d'; export * from './ShoppingVendorMinAggregateInput.schema'; +export * from './ShoppingVendorMinOrderByAggregateInput.schema.d'; export * from './ShoppingVendorMinOrderByAggregateInput.schema'; +export * from './ShoppingVendorOrderByRelationAggregateInput.schema.d'; export * from './ShoppingVendorOrderByRelationAggregateInput.schema'; +export * from './ShoppingVendorOrderByWithAggregationInput.schema.d'; export * from './ShoppingVendorOrderByWithAggregationInput.schema'; +export * from './ShoppingVendorOrderByWithRelationInput.schema.d'; export * from './ShoppingVendorOrderByWithRelationInput.schema'; +export * from './ShoppingVendorScalarWhereInput.schema.d'; export * from './ShoppingVendorScalarWhereInput.schema'; +export * from './ShoppingVendorScalarWhereWithAggregatesInput.schema.d'; export * from './ShoppingVendorScalarWhereWithAggregatesInput.schema'; +export * from './ShoppingVendorSelect.schema.d'; export * from './ShoppingVendorSelect.schema'; +export * from './ShoppingVendorSumAggregateInput.schema.d'; export * from './ShoppingVendorSumAggregateInput.schema'; +export * from './ShoppingVendorSumOrderByAggregateInput.schema.d'; export * from './ShoppingVendorSumOrderByAggregateInput.schema'; +export * from './ShoppingVendorUncheckedCreateInput.schema.d'; export * from './ShoppingVendorUncheckedCreateInput.schema'; +export * from './ShoppingVendorUncheckedCreateNestedManyWithoutUserInput.schema.d'; export * from './ShoppingVendorUncheckedCreateNestedManyWithoutUserInput.schema'; +export * from './ShoppingVendorUncheckedCreateWithoutUserInput.schema.d'; export * from './ShoppingVendorUncheckedCreateWithoutUserInput.schema'; +export * from './ShoppingVendorUncheckedUpdateInput.schema.d'; export * from './ShoppingVendorUncheckedUpdateInput.schema'; +export * from './ShoppingVendorUncheckedUpdateManyInput.schema.d'; export * from './ShoppingVendorUncheckedUpdateManyInput.schema'; +export * from './ShoppingVendorUncheckedUpdateManyWithoutUserInput.schema.d'; export * from './ShoppingVendorUncheckedUpdateManyWithoutUserInput.schema'; +export * from './ShoppingVendorUncheckedUpdateManyWithoutUserNestedInput.schema.d'; export * from './ShoppingVendorUncheckedUpdateManyWithoutUserNestedInput.schema'; +export * from './ShoppingVendorUncheckedUpdateWithoutUserInput.schema.d'; export * from './ShoppingVendorUncheckedUpdateWithoutUserInput.schema'; +export * from './ShoppingVendorUpdateInput.schema.d'; export * from './ShoppingVendorUpdateInput.schema'; +export * from './ShoppingVendorUpdateManyMutationInput.schema.d'; export * from './ShoppingVendorUpdateManyMutationInput.schema'; +export * from './ShoppingVendorUpdateManyWithWhereWithoutUserInput.schema.d'; export * from './ShoppingVendorUpdateManyWithWhereWithoutUserInput.schema'; +export * from './ShoppingVendorUpdateManyWithoutUserNestedInput.schema.d'; export * from './ShoppingVendorUpdateManyWithoutUserNestedInput.schema'; +export * from './ShoppingVendorUpdateWithWhereUniqueWithoutUserInput.schema.d'; export * from './ShoppingVendorUpdateWithWhereUniqueWithoutUserInput.schema'; +export * from './ShoppingVendorUpdateWithoutUserInput.schema.d'; export * from './ShoppingVendorUpdateWithoutUserInput.schema'; +export * from './ShoppingVendorUpsertWithWhereUniqueWithoutUserInput.schema.d'; export * from './ShoppingVendorUpsertWithWhereUniqueWithoutUserInput.schema'; +export * from './ShoppingVendorWhereInput.schema.d'; export * from './ShoppingVendorWhereInput.schema'; +export * from './ShoppingVendorWhereUniqueInput.schema.d'; export * from './ShoppingVendorWhereUniqueInput.schema'; export * from './SortOrderInput.schema.d'; export * from './SortOrderInput.schema'; @@ -3693,42 +4261,79 @@ export * from './StringNullableWithAggregatesFilter.schema.d'; export * from './StringNullableWithAggregatesFilter.schema'; export * from './StringWithAggregatesFilter.schema.d'; export * from './StringWithAggregatesFilter.schema'; +export * from './TwilioSettingsArgs.schema.d'; export * from './TwilioSettingsArgs.schema'; +export * from './TwilioSettingsAvgAggregateInput.schema.d'; export * from './TwilioSettingsAvgAggregateInput.schema'; +export * from './TwilioSettingsAvgOrderByAggregateInput.schema.d'; export * from './TwilioSettingsAvgOrderByAggregateInput.schema'; +export * from './TwilioSettingsCountAggregateInput.schema.d'; export * from './TwilioSettingsCountAggregateInput.schema'; +export * from './TwilioSettingsCountOrderByAggregateInput.schema.d'; export * from './TwilioSettingsCountOrderByAggregateInput.schema'; +export * from './TwilioSettingsCreateInput.schema.d'; export * from './TwilioSettingsCreateInput.schema'; +export * from './TwilioSettingsCreateManyInput.schema.d'; export * from './TwilioSettingsCreateManyInput.schema'; +export * from './TwilioSettingsCreateNestedOneWithoutUserInput.schema.d'; export * from './TwilioSettingsCreateNestedOneWithoutUserInput.schema'; +export * from './TwilioSettingsCreateOrConnectWithoutUserInput.schema.d'; export * from './TwilioSettingsCreateOrConnectWithoutUserInput.schema'; +export * from './TwilioSettingsCreateWithoutUserInput.schema.d'; export * from './TwilioSettingsCreateWithoutUserInput.schema'; +export * from './TwilioSettingsInclude.schema.d'; export * from './TwilioSettingsInclude.schema'; +export * from './TwilioSettingsMaxAggregateInput.schema.d'; export * from './TwilioSettingsMaxAggregateInput.schema'; +export * from './TwilioSettingsMaxOrderByAggregateInput.schema.d'; export * from './TwilioSettingsMaxOrderByAggregateInput.schema'; +export * from './TwilioSettingsMinAggregateInput.schema.d'; export * from './TwilioSettingsMinAggregateInput.schema'; +export * from './TwilioSettingsMinOrderByAggregateInput.schema.d'; export * from './TwilioSettingsMinOrderByAggregateInput.schema'; +export * from './TwilioSettingsNullableScalarRelationFilter.schema.d'; export * from './TwilioSettingsNullableScalarRelationFilter.schema'; +export * from './TwilioSettingsOrderByWithAggregationInput.schema.d'; export * from './TwilioSettingsOrderByWithAggregationInput.schema'; +export * from './TwilioSettingsOrderByWithRelationInput.schema.d'; export * from './TwilioSettingsOrderByWithRelationInput.schema'; +export * from './TwilioSettingsScalarWhereWithAggregatesInput.schema.d'; export * from './TwilioSettingsScalarWhereWithAggregatesInput.schema'; +export * from './TwilioSettingsSelect.schema.d'; export * from './TwilioSettingsSelect.schema'; +export * from './TwilioSettingsSumAggregateInput.schema.d'; export * from './TwilioSettingsSumAggregateInput.schema'; +export * from './TwilioSettingsSumOrderByAggregateInput.schema.d'; export * from './TwilioSettingsSumOrderByAggregateInput.schema'; +export * from './TwilioSettingsUncheckedCreateInput.schema.d'; export * from './TwilioSettingsUncheckedCreateInput.schema'; +export * from './TwilioSettingsUncheckedCreateNestedOneWithoutUserInput.schema.d'; export * from './TwilioSettingsUncheckedCreateNestedOneWithoutUserInput.schema'; +export * from './TwilioSettingsUncheckedCreateWithoutUserInput.schema.d'; export * from './TwilioSettingsUncheckedCreateWithoutUserInput.schema'; +export * from './TwilioSettingsUncheckedUpdateInput.schema.d'; export * from './TwilioSettingsUncheckedUpdateInput.schema'; +export * from './TwilioSettingsUncheckedUpdateManyInput.schema.d'; export * from './TwilioSettingsUncheckedUpdateManyInput.schema'; +export * from './TwilioSettingsUncheckedUpdateOneWithoutUserNestedInput.schema.d'; export * from './TwilioSettingsUncheckedUpdateOneWithoutUserNestedInput.schema'; +export * from './TwilioSettingsUncheckedUpdateWithoutUserInput.schema.d'; export * from './TwilioSettingsUncheckedUpdateWithoutUserInput.schema'; +export * from './TwilioSettingsUpdateInput.schema.d'; export * from './TwilioSettingsUpdateInput.schema'; +export * from './TwilioSettingsUpdateManyMutationInput.schema.d'; export * from './TwilioSettingsUpdateManyMutationInput.schema'; +export * from './TwilioSettingsUpdateOneWithoutUserNestedInput.schema.d'; export * from './TwilioSettingsUpdateOneWithoutUserNestedInput.schema'; +export * from './TwilioSettingsUpdateToOneWithWhereWithoutUserInput.schema.d'; export * from './TwilioSettingsUpdateToOneWithWhereWithoutUserInput.schema'; +export * from './TwilioSettingsUpdateWithoutUserInput.schema.d'; export * from './TwilioSettingsUpdateWithoutUserInput.schema'; +export * from './TwilioSettingsUpsertWithoutUserInput.schema.d'; export * from './TwilioSettingsUpsertWithoutUserInput.schema'; +export * from './TwilioSettingsWhereInput.schema.d'; export * from './TwilioSettingsWhereInput.schema'; +export * from './TwilioSettingsWhereUniqueInput.schema.d'; export * from './TwilioSettingsWhereUniqueInput.schema'; export * from './UserArgs.schema.d'; export * from './UserArgs.schema'; @@ -3756,6 +4361,7 @@ export * from './UserCountOutputTypeCountCloudFoldersArgs.schema.d'; export * from './UserCountOutputTypeCountCloudFoldersArgs.schema'; export * from './UserCountOutputTypeCountCommunicationsArgs.schema.d'; export * from './UserCountOutputTypeCountCommunicationsArgs.schema'; +export * from './UserCountOutputTypeCountInsuranceContactsArgs.schema.d'; export * from './UserCountOutputTypeCountInsuranceContactsArgs.schema'; export * from './UserCountOutputTypeCountInsuranceCredentialsArgs.schema.d'; export * from './UserCountOutputTypeCountInsuranceCredentialsArgs.schema'; @@ -3764,9 +4370,11 @@ export * from './UserCountOutputTypeCountNotificationsArgs.schema.d'; export * from './UserCountOutputTypeCountNotificationsArgs.schema'; export * from './UserCountOutputTypeCountNpiProvidersArgs.schema.d'; export * from './UserCountOutputTypeCountNpiProvidersArgs.schema'; +export * from './UserCountOutputTypeCountPatientConversationsArgs.schema.d'; export * from './UserCountOutputTypeCountPatientConversationsArgs.schema'; export * from './UserCountOutputTypeCountPatientsArgs.schema.d'; export * from './UserCountOutputTypeCountPatientsArgs.schema'; +export * from './UserCountOutputTypeCountShoppingVendorsArgs.schema.d'; export * from './UserCountOutputTypeCountShoppingVendorsArgs.schema'; export * from './UserCountOutputTypeCountStaffArgs.schema.d'; export * from './UserCountOutputTypeCountStaffArgs.schema'; @@ -3778,6 +4386,7 @@ export * from './UserCreateInput.schema.d'; export * from './UserCreateInput.schema'; export * from './UserCreateManyInput.schema.d'; export * from './UserCreateManyInput.schema'; +export * from './UserCreateNestedOneWithoutAiSettingsInput.schema.d'; export * from './UserCreateNestedOneWithoutAiSettingsInput.schema'; export * from './UserCreateNestedOneWithoutAppointmentsInput.schema.d'; export * from './UserCreateNestedOneWithoutAppointmentsInput.schema'; @@ -3793,6 +4402,7 @@ export * from './UserCreateNestedOneWithoutCloudFoldersInput.schema.d'; export * from './UserCreateNestedOneWithoutCloudFoldersInput.schema'; export * from './UserCreateNestedOneWithoutCommunicationsInput.schema.d'; export * from './UserCreateNestedOneWithoutCommunicationsInput.schema'; +export * from './UserCreateNestedOneWithoutInsuranceContactsInput.schema.d'; export * from './UserCreateNestedOneWithoutInsuranceContactsInput.schema'; export * from './UserCreateNestedOneWithoutInsuranceCredentialsInput.schema.d'; export * from './UserCreateNestedOneWithoutInsuranceCredentialsInput.schema'; @@ -3801,19 +4411,26 @@ export * from './UserCreateNestedOneWithoutNotificationsInput.schema.d'; export * from './UserCreateNestedOneWithoutNotificationsInput.schema'; export * from './UserCreateNestedOneWithoutNpiProvidersInput.schema.d'; export * from './UserCreateNestedOneWithoutNpiProvidersInput.schema'; +export * from './UserCreateNestedOneWithoutOfficeContactInput.schema.d'; export * from './UserCreateNestedOneWithoutOfficeContactInput.schema'; +export * from './UserCreateNestedOneWithoutOfficeHoursInput.schema.d'; export * from './UserCreateNestedOneWithoutOfficeHoursInput.schema'; +export * from './UserCreateNestedOneWithoutPatientConversationsInput.schema.d'; export * from './UserCreateNestedOneWithoutPatientConversationsInput.schema'; export * from './UserCreateNestedOneWithoutPatientsInput.schema.d'; export * from './UserCreateNestedOneWithoutPatientsInput.schema'; +export * from './UserCreateNestedOneWithoutProcedureTimeslotInput.schema.d'; export * from './UserCreateNestedOneWithoutProcedureTimeslotInput.schema'; export * from './UserCreateNestedOneWithoutSeleniumSettingsInput.schema'; +export * from './UserCreateNestedOneWithoutShoppingVendorsInput.schema.d'; export * from './UserCreateNestedOneWithoutShoppingVendorsInput.schema'; export * from './UserCreateNestedOneWithoutStaffInput.schema.d'; export * from './UserCreateNestedOneWithoutStaffInput.schema'; +export * from './UserCreateNestedOneWithoutTwilioSettingsInput.schema.d'; export * from './UserCreateNestedOneWithoutTwilioSettingsInput.schema'; export * from './UserCreateNestedOneWithoutUpdatedPaymentsInput.schema.d'; export * from './UserCreateNestedOneWithoutUpdatedPaymentsInput.schema'; +export * from './UserCreateOrConnectWithoutAiSettingsInput.schema.d'; export * from './UserCreateOrConnectWithoutAiSettingsInput.schema'; export * from './UserCreateOrConnectWithoutAppointmentsInput.schema.d'; export * from './UserCreateOrConnectWithoutAppointmentsInput.schema'; @@ -3829,6 +4446,7 @@ export * from './UserCreateOrConnectWithoutCloudFoldersInput.schema.d'; export * from './UserCreateOrConnectWithoutCloudFoldersInput.schema'; export * from './UserCreateOrConnectWithoutCommunicationsInput.schema.d'; export * from './UserCreateOrConnectWithoutCommunicationsInput.schema'; +export * from './UserCreateOrConnectWithoutInsuranceContactsInput.schema.d'; export * from './UserCreateOrConnectWithoutInsuranceContactsInput.schema'; export * from './UserCreateOrConnectWithoutInsuranceCredentialsInput.schema.d'; export * from './UserCreateOrConnectWithoutInsuranceCredentialsInput.schema'; @@ -3837,19 +4455,26 @@ export * from './UserCreateOrConnectWithoutNotificationsInput.schema.d'; export * from './UserCreateOrConnectWithoutNotificationsInput.schema'; export * from './UserCreateOrConnectWithoutNpiProvidersInput.schema.d'; export * from './UserCreateOrConnectWithoutNpiProvidersInput.schema'; +export * from './UserCreateOrConnectWithoutOfficeContactInput.schema.d'; export * from './UserCreateOrConnectWithoutOfficeContactInput.schema'; +export * from './UserCreateOrConnectWithoutOfficeHoursInput.schema.d'; export * from './UserCreateOrConnectWithoutOfficeHoursInput.schema'; +export * from './UserCreateOrConnectWithoutPatientConversationsInput.schema.d'; export * from './UserCreateOrConnectWithoutPatientConversationsInput.schema'; export * from './UserCreateOrConnectWithoutPatientsInput.schema.d'; export * from './UserCreateOrConnectWithoutPatientsInput.schema'; +export * from './UserCreateOrConnectWithoutProcedureTimeslotInput.schema.d'; export * from './UserCreateOrConnectWithoutProcedureTimeslotInput.schema'; export * from './UserCreateOrConnectWithoutSeleniumSettingsInput.schema'; +export * from './UserCreateOrConnectWithoutShoppingVendorsInput.schema.d'; export * from './UserCreateOrConnectWithoutShoppingVendorsInput.schema'; export * from './UserCreateOrConnectWithoutStaffInput.schema.d'; export * from './UserCreateOrConnectWithoutStaffInput.schema'; +export * from './UserCreateOrConnectWithoutTwilioSettingsInput.schema.d'; export * from './UserCreateOrConnectWithoutTwilioSettingsInput.schema'; export * from './UserCreateOrConnectWithoutUpdatedPaymentsInput.schema.d'; export * from './UserCreateOrConnectWithoutUpdatedPaymentsInput.schema'; +export * from './UserCreateWithoutAiSettingsInput.schema.d'; export * from './UserCreateWithoutAiSettingsInput.schema'; export * from './UserCreateWithoutAppointmentsInput.schema.d'; export * from './UserCreateWithoutAppointmentsInput.schema'; @@ -3865,6 +4490,7 @@ export * from './UserCreateWithoutCloudFoldersInput.schema.d'; export * from './UserCreateWithoutCloudFoldersInput.schema'; export * from './UserCreateWithoutCommunicationsInput.schema.d'; export * from './UserCreateWithoutCommunicationsInput.schema'; +export * from './UserCreateWithoutInsuranceContactsInput.schema.d'; export * from './UserCreateWithoutInsuranceContactsInput.schema'; export * from './UserCreateWithoutInsuranceCredentialsInput.schema.d'; export * from './UserCreateWithoutInsuranceCredentialsInput.schema'; @@ -3873,16 +4499,22 @@ export * from './UserCreateWithoutNotificationsInput.schema.d'; export * from './UserCreateWithoutNotificationsInput.schema'; export * from './UserCreateWithoutNpiProvidersInput.schema.d'; export * from './UserCreateWithoutNpiProvidersInput.schema'; +export * from './UserCreateWithoutOfficeContactInput.schema.d'; export * from './UserCreateWithoutOfficeContactInput.schema'; +export * from './UserCreateWithoutOfficeHoursInput.schema.d'; export * from './UserCreateWithoutOfficeHoursInput.schema'; +export * from './UserCreateWithoutPatientConversationsInput.schema.d'; export * from './UserCreateWithoutPatientConversationsInput.schema'; export * from './UserCreateWithoutPatientsInput.schema.d'; export * from './UserCreateWithoutPatientsInput.schema'; +export * from './UserCreateWithoutProcedureTimeslotInput.schema.d'; export * from './UserCreateWithoutProcedureTimeslotInput.schema'; export * from './UserCreateWithoutSeleniumSettingsInput.schema'; +export * from './UserCreateWithoutShoppingVendorsInput.schema.d'; export * from './UserCreateWithoutShoppingVendorsInput.schema'; export * from './UserCreateWithoutStaffInput.schema.d'; export * from './UserCreateWithoutStaffInput.schema'; +export * from './UserCreateWithoutTwilioSettingsInput.schema.d'; export * from './UserCreateWithoutTwilioSettingsInput.schema'; export * from './UserCreateWithoutUpdatedPaymentsInput.schema.d'; export * from './UserCreateWithoutUpdatedPaymentsInput.schema'; @@ -3914,6 +4546,7 @@ export * from './UserSumOrderByAggregateInput.schema.d'; export * from './UserSumOrderByAggregateInput.schema'; export * from './UserUncheckedCreateInput.schema.d'; export * from './UserUncheckedCreateInput.schema'; +export * from './UserUncheckedCreateWithoutAiSettingsInput.schema.d'; export * from './UserUncheckedCreateWithoutAiSettingsInput.schema'; export * from './UserUncheckedCreateWithoutAppointmentsInput.schema.d'; export * from './UserUncheckedCreateWithoutAppointmentsInput.schema'; @@ -3929,6 +4562,7 @@ export * from './UserUncheckedCreateWithoutCloudFoldersInput.schema.d'; export * from './UserUncheckedCreateWithoutCloudFoldersInput.schema'; export * from './UserUncheckedCreateWithoutCommunicationsInput.schema.d'; export * from './UserUncheckedCreateWithoutCommunicationsInput.schema'; +export * from './UserUncheckedCreateWithoutInsuranceContactsInput.schema.d'; export * from './UserUncheckedCreateWithoutInsuranceContactsInput.schema'; export * from './UserUncheckedCreateWithoutInsuranceCredentialsInput.schema.d'; export * from './UserUncheckedCreateWithoutInsuranceCredentialsInput.schema'; @@ -3937,16 +4571,22 @@ export * from './UserUncheckedCreateWithoutNotificationsInput.schema.d'; export * from './UserUncheckedCreateWithoutNotificationsInput.schema'; export * from './UserUncheckedCreateWithoutNpiProvidersInput.schema.d'; export * from './UserUncheckedCreateWithoutNpiProvidersInput.schema'; +export * from './UserUncheckedCreateWithoutOfficeContactInput.schema.d'; export * from './UserUncheckedCreateWithoutOfficeContactInput.schema'; +export * from './UserUncheckedCreateWithoutOfficeHoursInput.schema.d'; export * from './UserUncheckedCreateWithoutOfficeHoursInput.schema'; +export * from './UserUncheckedCreateWithoutPatientConversationsInput.schema.d'; export * from './UserUncheckedCreateWithoutPatientConversationsInput.schema'; export * from './UserUncheckedCreateWithoutPatientsInput.schema.d'; export * from './UserUncheckedCreateWithoutPatientsInput.schema'; +export * from './UserUncheckedCreateWithoutProcedureTimeslotInput.schema.d'; export * from './UserUncheckedCreateWithoutProcedureTimeslotInput.schema'; export * from './UserUncheckedCreateWithoutSeleniumSettingsInput.schema'; +export * from './UserUncheckedCreateWithoutShoppingVendorsInput.schema.d'; export * from './UserUncheckedCreateWithoutShoppingVendorsInput.schema'; export * from './UserUncheckedCreateWithoutStaffInput.schema.d'; export * from './UserUncheckedCreateWithoutStaffInput.schema'; +export * from './UserUncheckedCreateWithoutTwilioSettingsInput.schema.d'; export * from './UserUncheckedCreateWithoutTwilioSettingsInput.schema'; export * from './UserUncheckedCreateWithoutUpdatedPaymentsInput.schema.d'; export * from './UserUncheckedCreateWithoutUpdatedPaymentsInput.schema'; @@ -3954,6 +4594,7 @@ export * from './UserUncheckedUpdateInput.schema.d'; export * from './UserUncheckedUpdateInput.schema'; export * from './UserUncheckedUpdateManyInput.schema.d'; export * from './UserUncheckedUpdateManyInput.schema'; +export * from './UserUncheckedUpdateWithoutAiSettingsInput.schema.d'; export * from './UserUncheckedUpdateWithoutAiSettingsInput.schema'; export * from './UserUncheckedUpdateWithoutAppointmentsInput.schema.d'; export * from './UserUncheckedUpdateWithoutAppointmentsInput.schema'; @@ -3969,6 +4610,7 @@ export * from './UserUncheckedUpdateWithoutCloudFoldersInput.schema.d'; export * from './UserUncheckedUpdateWithoutCloudFoldersInput.schema'; export * from './UserUncheckedUpdateWithoutCommunicationsInput.schema.d'; export * from './UserUncheckedUpdateWithoutCommunicationsInput.schema'; +export * from './UserUncheckedUpdateWithoutInsuranceContactsInput.schema.d'; export * from './UserUncheckedUpdateWithoutInsuranceContactsInput.schema'; export * from './UserUncheckedUpdateWithoutInsuranceCredentialsInput.schema.d'; export * from './UserUncheckedUpdateWithoutInsuranceCredentialsInput.schema'; @@ -3977,16 +4619,22 @@ export * from './UserUncheckedUpdateWithoutNotificationsInput.schema.d'; export * from './UserUncheckedUpdateWithoutNotificationsInput.schema'; export * from './UserUncheckedUpdateWithoutNpiProvidersInput.schema.d'; export * from './UserUncheckedUpdateWithoutNpiProvidersInput.schema'; +export * from './UserUncheckedUpdateWithoutOfficeContactInput.schema.d'; export * from './UserUncheckedUpdateWithoutOfficeContactInput.schema'; +export * from './UserUncheckedUpdateWithoutOfficeHoursInput.schema.d'; export * from './UserUncheckedUpdateWithoutOfficeHoursInput.schema'; +export * from './UserUncheckedUpdateWithoutPatientConversationsInput.schema.d'; export * from './UserUncheckedUpdateWithoutPatientConversationsInput.schema'; export * from './UserUncheckedUpdateWithoutPatientsInput.schema.d'; export * from './UserUncheckedUpdateWithoutPatientsInput.schema'; +export * from './UserUncheckedUpdateWithoutProcedureTimeslotInput.schema.d'; export * from './UserUncheckedUpdateWithoutProcedureTimeslotInput.schema'; export * from './UserUncheckedUpdateWithoutSeleniumSettingsInput.schema'; +export * from './UserUncheckedUpdateWithoutShoppingVendorsInput.schema.d'; export * from './UserUncheckedUpdateWithoutShoppingVendorsInput.schema'; export * from './UserUncheckedUpdateWithoutStaffInput.schema.d'; export * from './UserUncheckedUpdateWithoutStaffInput.schema'; +export * from './UserUncheckedUpdateWithoutTwilioSettingsInput.schema.d'; export * from './UserUncheckedUpdateWithoutTwilioSettingsInput.schema'; export * from './UserUncheckedUpdateWithoutUpdatedPaymentsInput.schema.d'; export * from './UserUncheckedUpdateWithoutUpdatedPaymentsInput.schema'; @@ -3994,6 +4642,7 @@ export * from './UserUpdateInput.schema.d'; export * from './UserUpdateInput.schema'; export * from './UserUpdateManyMutationInput.schema.d'; export * from './UserUpdateManyMutationInput.schema'; +export * from './UserUpdateOneRequiredWithoutAiSettingsNestedInput.schema.d'; export * from './UserUpdateOneRequiredWithoutAiSettingsNestedInput.schema'; export * from './UserUpdateOneRequiredWithoutAppointmentsNestedInput.schema.d'; export * from './UserUpdateOneRequiredWithoutAppointmentsNestedInput.schema'; @@ -4005,6 +4654,7 @@ export * from './UserUpdateOneRequiredWithoutCloudFilesNestedInput.schema.d'; export * from './UserUpdateOneRequiredWithoutCloudFilesNestedInput.schema'; export * from './UserUpdateOneRequiredWithoutCloudFoldersNestedInput.schema.d'; export * from './UserUpdateOneRequiredWithoutCloudFoldersNestedInput.schema'; +export * from './UserUpdateOneRequiredWithoutInsuranceContactsNestedInput.schema.d'; export * from './UserUpdateOneRequiredWithoutInsuranceContactsNestedInput.schema'; export * from './UserUpdateOneRequiredWithoutInsuranceCredentialsNestedInput.schema.d'; export * from './UserUpdateOneRequiredWithoutInsuranceCredentialsNestedInput.schema'; @@ -4013,14 +4663,20 @@ export * from './UserUpdateOneRequiredWithoutNotificationsNestedInput.schema.d'; export * from './UserUpdateOneRequiredWithoutNotificationsNestedInput.schema'; export * from './UserUpdateOneRequiredWithoutNpiProvidersNestedInput.schema.d'; export * from './UserUpdateOneRequiredWithoutNpiProvidersNestedInput.schema'; +export * from './UserUpdateOneRequiredWithoutOfficeContactNestedInput.schema.d'; export * from './UserUpdateOneRequiredWithoutOfficeContactNestedInput.schema'; +export * from './UserUpdateOneRequiredWithoutOfficeHoursNestedInput.schema.d'; export * from './UserUpdateOneRequiredWithoutOfficeHoursNestedInput.schema'; +export * from './UserUpdateOneRequiredWithoutPatientConversationsNestedInput.schema.d'; export * from './UserUpdateOneRequiredWithoutPatientConversationsNestedInput.schema'; export * from './UserUpdateOneRequiredWithoutPatientsNestedInput.schema.d'; export * from './UserUpdateOneRequiredWithoutPatientsNestedInput.schema'; +export * from './UserUpdateOneRequiredWithoutProcedureTimeslotNestedInput.schema.d'; export * from './UserUpdateOneRequiredWithoutProcedureTimeslotNestedInput.schema'; export * from './UserUpdateOneRequiredWithoutSeleniumSettingsNestedInput.schema'; +export * from './UserUpdateOneRequiredWithoutShoppingVendorsNestedInput.schema.d'; export * from './UserUpdateOneRequiredWithoutShoppingVendorsNestedInput.schema'; +export * from './UserUpdateOneRequiredWithoutTwilioSettingsNestedInput.schema.d'; export * from './UserUpdateOneRequiredWithoutTwilioSettingsNestedInput.schema'; export * from './UserUpdateOneWithoutClaimsNestedInput.schema.d'; export * from './UserUpdateOneWithoutClaimsNestedInput.schema'; @@ -4030,6 +4686,7 @@ export * from './UserUpdateOneWithoutStaffNestedInput.schema.d'; export * from './UserUpdateOneWithoutStaffNestedInput.schema'; export * from './UserUpdateOneWithoutUpdatedPaymentsNestedInput.schema.d'; export * from './UserUpdateOneWithoutUpdatedPaymentsNestedInput.schema'; +export * from './UserUpdateToOneWithWhereWithoutAiSettingsInput.schema.d'; export * from './UserUpdateToOneWithWhereWithoutAiSettingsInput.schema'; export * from './UserUpdateToOneWithWhereWithoutAppointmentsInput.schema.d'; export * from './UserUpdateToOneWithWhereWithoutAppointmentsInput.schema'; @@ -4045,6 +4702,7 @@ export * from './UserUpdateToOneWithWhereWithoutCloudFoldersInput.schema.d'; export * from './UserUpdateToOneWithWhereWithoutCloudFoldersInput.schema'; export * from './UserUpdateToOneWithWhereWithoutCommunicationsInput.schema.d'; export * from './UserUpdateToOneWithWhereWithoutCommunicationsInput.schema'; +export * from './UserUpdateToOneWithWhereWithoutInsuranceContactsInput.schema.d'; export * from './UserUpdateToOneWithWhereWithoutInsuranceContactsInput.schema'; export * from './UserUpdateToOneWithWhereWithoutInsuranceCredentialsInput.schema.d'; export * from './UserUpdateToOneWithWhereWithoutInsuranceCredentialsInput.schema'; @@ -4053,19 +4711,26 @@ export * from './UserUpdateToOneWithWhereWithoutNotificationsInput.schema.d'; export * from './UserUpdateToOneWithWhereWithoutNotificationsInput.schema'; export * from './UserUpdateToOneWithWhereWithoutNpiProvidersInput.schema.d'; export * from './UserUpdateToOneWithWhereWithoutNpiProvidersInput.schema'; +export * from './UserUpdateToOneWithWhereWithoutOfficeContactInput.schema.d'; export * from './UserUpdateToOneWithWhereWithoutOfficeContactInput.schema'; +export * from './UserUpdateToOneWithWhereWithoutOfficeHoursInput.schema.d'; export * from './UserUpdateToOneWithWhereWithoutOfficeHoursInput.schema'; +export * from './UserUpdateToOneWithWhereWithoutPatientConversationsInput.schema.d'; export * from './UserUpdateToOneWithWhereWithoutPatientConversationsInput.schema'; export * from './UserUpdateToOneWithWhereWithoutPatientsInput.schema.d'; export * from './UserUpdateToOneWithWhereWithoutPatientsInput.schema'; +export * from './UserUpdateToOneWithWhereWithoutProcedureTimeslotInput.schema.d'; export * from './UserUpdateToOneWithWhereWithoutProcedureTimeslotInput.schema'; export * from './UserUpdateToOneWithWhereWithoutSeleniumSettingsInput.schema'; +export * from './UserUpdateToOneWithWhereWithoutShoppingVendorsInput.schema.d'; export * from './UserUpdateToOneWithWhereWithoutShoppingVendorsInput.schema'; export * from './UserUpdateToOneWithWhereWithoutStaffInput.schema.d'; export * from './UserUpdateToOneWithWhereWithoutStaffInput.schema'; +export * from './UserUpdateToOneWithWhereWithoutTwilioSettingsInput.schema.d'; export * from './UserUpdateToOneWithWhereWithoutTwilioSettingsInput.schema'; export * from './UserUpdateToOneWithWhereWithoutUpdatedPaymentsInput.schema.d'; export * from './UserUpdateToOneWithWhereWithoutUpdatedPaymentsInput.schema'; +export * from './UserUpdateWithoutAiSettingsInput.schema.d'; export * from './UserUpdateWithoutAiSettingsInput.schema'; export * from './UserUpdateWithoutAppointmentsInput.schema.d'; export * from './UserUpdateWithoutAppointmentsInput.schema'; @@ -4081,6 +4746,7 @@ export * from './UserUpdateWithoutCloudFoldersInput.schema.d'; export * from './UserUpdateWithoutCloudFoldersInput.schema'; export * from './UserUpdateWithoutCommunicationsInput.schema.d'; export * from './UserUpdateWithoutCommunicationsInput.schema'; +export * from './UserUpdateWithoutInsuranceContactsInput.schema.d'; export * from './UserUpdateWithoutInsuranceContactsInput.schema'; export * from './UserUpdateWithoutInsuranceCredentialsInput.schema.d'; export * from './UserUpdateWithoutInsuranceCredentialsInput.schema'; @@ -4089,19 +4755,26 @@ export * from './UserUpdateWithoutNotificationsInput.schema.d'; export * from './UserUpdateWithoutNotificationsInput.schema'; export * from './UserUpdateWithoutNpiProvidersInput.schema.d'; export * from './UserUpdateWithoutNpiProvidersInput.schema'; +export * from './UserUpdateWithoutOfficeContactInput.schema.d'; export * from './UserUpdateWithoutOfficeContactInput.schema'; +export * from './UserUpdateWithoutOfficeHoursInput.schema.d'; export * from './UserUpdateWithoutOfficeHoursInput.schema'; +export * from './UserUpdateWithoutPatientConversationsInput.schema.d'; export * from './UserUpdateWithoutPatientConversationsInput.schema'; export * from './UserUpdateWithoutPatientsInput.schema.d'; export * from './UserUpdateWithoutPatientsInput.schema'; +export * from './UserUpdateWithoutProcedureTimeslotInput.schema.d'; export * from './UserUpdateWithoutProcedureTimeslotInput.schema'; export * from './UserUpdateWithoutSeleniumSettingsInput.schema'; +export * from './UserUpdateWithoutShoppingVendorsInput.schema.d'; export * from './UserUpdateWithoutShoppingVendorsInput.schema'; export * from './UserUpdateWithoutStaffInput.schema.d'; export * from './UserUpdateWithoutStaffInput.schema'; +export * from './UserUpdateWithoutTwilioSettingsInput.schema.d'; export * from './UserUpdateWithoutTwilioSettingsInput.schema'; export * from './UserUpdateWithoutUpdatedPaymentsInput.schema.d'; export * from './UserUpdateWithoutUpdatedPaymentsInput.schema'; +export * from './UserUpsertWithoutAiSettingsInput.schema.d'; export * from './UserUpsertWithoutAiSettingsInput.schema'; export * from './UserUpsertWithoutAppointmentsInput.schema.d'; export * from './UserUpsertWithoutAppointmentsInput.schema'; @@ -4117,6 +4790,7 @@ export * from './UserUpsertWithoutCloudFoldersInput.schema.d'; export * from './UserUpsertWithoutCloudFoldersInput.schema'; export * from './UserUpsertWithoutCommunicationsInput.schema.d'; export * from './UserUpsertWithoutCommunicationsInput.schema'; +export * from './UserUpsertWithoutInsuranceContactsInput.schema.d'; export * from './UserUpsertWithoutInsuranceContactsInput.schema'; export * from './UserUpsertWithoutInsuranceCredentialsInput.schema.d'; export * from './UserUpsertWithoutInsuranceCredentialsInput.schema'; @@ -4125,16 +4799,22 @@ export * from './UserUpsertWithoutNotificationsInput.schema.d'; export * from './UserUpsertWithoutNotificationsInput.schema'; export * from './UserUpsertWithoutNpiProvidersInput.schema.d'; export * from './UserUpsertWithoutNpiProvidersInput.schema'; +export * from './UserUpsertWithoutOfficeContactInput.schema.d'; export * from './UserUpsertWithoutOfficeContactInput.schema'; +export * from './UserUpsertWithoutOfficeHoursInput.schema.d'; export * from './UserUpsertWithoutOfficeHoursInput.schema'; +export * from './UserUpsertWithoutPatientConversationsInput.schema.d'; export * from './UserUpsertWithoutPatientConversationsInput.schema'; export * from './UserUpsertWithoutPatientsInput.schema.d'; export * from './UserUpsertWithoutPatientsInput.schema'; +export * from './UserUpsertWithoutProcedureTimeslotInput.schema.d'; export * from './UserUpsertWithoutProcedureTimeslotInput.schema'; export * from './UserUpsertWithoutSeleniumSettingsInput.schema'; +export * from './UserUpsertWithoutShoppingVendorsInput.schema.d'; export * from './UserUpsertWithoutShoppingVendorsInput.schema'; export * from './UserUpsertWithoutStaffInput.schema.d'; export * from './UserUpsertWithoutStaffInput.schema'; +export * from './UserUpsertWithoutTwilioSettingsInput.schema.d'; export * from './UserUpsertWithoutTwilioSettingsInput.schema'; export * from './UserUpsertWithoutUpdatedPaymentsInput.schema.d'; export * from './UserUpsertWithoutUpdatedPaymentsInput.schema'; diff --git a/packages/db/shared/schemas/results/AppointmentAggregateResult.schema.d.ts b/packages/db/shared/schemas/results/AppointmentAggregateResult.schema.d.ts index 8e149cd9..bc7cb3bc 100644 --- a/packages/db/shared/schemas/results/AppointmentAggregateResult.schema.d.ts +++ b/packages/db/shared/schemas/results/AppointmentAggregateResult.schema.d.ts @@ -5,21 +5,26 @@ export declare const AppointmentAggregateResultSchema: z.ZodObject<{ patientId: z.ZodNumber; userId: z.ZodNumber; staffId: z.ZodNumber; + npiProviderId: z.ZodNumber; title: z.ZodNumber; date: z.ZodNumber; startTime: z.ZodNumber; endTime: z.ZodNumber; type: z.ZodNumber; + typeLocked: z.ZodNumber; notes: z.ZodNumber; procedureCodeNotes: z.ZodNumber; status: z.ZodNumber; + movedByAi: z.ZodNumber; createdAt: z.ZodNumber; eligibilityStatus: z.ZodNumber; patient: z.ZodNumber; user: z.ZodNumber; staff: z.ZodNumber; + npiProvider: z.ZodNumber; procedures: z.ZodNumber; claims: z.ZodNumber; + files: z.ZodNumber; }, "strip", z.ZodTypeAny, { type: number; status: number; @@ -29,17 +34,22 @@ export declare const AppointmentAggregateResultSchema: z.ZodObject<{ createdAt: number; patientId: number; patient: number; + npiProviderId: number; + npiProvider: number; + userId: number; + user: number; startTime: number; endTime: number; + typeLocked: number; notes: number; procedureCodeNotes: number; + movedByAi: number; eligibilityStatus: number; - user: number; staff: number; procedures: number; - userId: number; - staffId: number; claims: number; + files: number; + staffId: number; }, { type: number; status: number; @@ -49,31 +59,39 @@ export declare const AppointmentAggregateResultSchema: z.ZodObject<{ createdAt: number; patientId: number; patient: number; + npiProviderId: number; + npiProvider: number; + userId: number; + user: number; startTime: number; endTime: number; + typeLocked: number; notes: number; procedureCodeNotes: number; + movedByAi: number; eligibilityStatus: number; - user: number; staff: number; procedures: number; - userId: number; - staffId: number; claims: number; + files: number; + staffId: number; }>>; _sum: z.ZodOptional; patientId: z.ZodNullable; userId: z.ZodNullable; staffId: z.ZodNullable; + npiProviderId: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; patientId: number | null; + npiProviderId: number | null; userId: number | null; staffId: number | null; }, { id: number | null; patientId: number | null; + npiProviderId: number | null; userId: number | null; staffId: number | null; }>>>; @@ -82,14 +100,17 @@ export declare const AppointmentAggregateResultSchema: z.ZodObject<{ patientId: z.ZodNullable; userId: z.ZodNullable; staffId: z.ZodNullable; + npiProviderId: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; patientId: number | null; + npiProviderId: number | null; userId: number | null; staffId: number | null; }, { id: number | null; patientId: number | null; + npiProviderId: number | null; userId: number | null; staffId: number | null; }>>>; @@ -98,6 +119,7 @@ export declare const AppointmentAggregateResultSchema: z.ZodObject<{ patientId: z.ZodNullable; userId: z.ZodNullable; staffId: z.ZodNullable; + npiProviderId: z.ZodNullable; title: z.ZodNullable; date: z.ZodNullable; startTime: z.ZodNullable; @@ -115,11 +137,12 @@ export declare const AppointmentAggregateResultSchema: z.ZodObject<{ title: string | null; createdAt: Date | null; patientId: number | null; + npiProviderId: number | null; + userId: number | null; startTime: string | null; endTime: string | null; notes: string | null; procedureCodeNotes: string | null; - userId: number | null; staffId: number | null; }, { type: string | null; @@ -129,11 +152,12 @@ export declare const AppointmentAggregateResultSchema: z.ZodObject<{ title: string | null; createdAt: Date | null; patientId: number | null; + npiProviderId: number | null; + userId: number | null; startTime: string | null; endTime: string | null; notes: string | null; procedureCodeNotes: string | null; - userId: number | null; staffId: number | null; }>>>; _max: z.ZodOptional; userId: z.ZodNullable; staffId: z.ZodNullable; + npiProviderId: z.ZodNullable; title: z.ZodNullable; date: z.ZodNullable; startTime: z.ZodNullable; @@ -158,11 +183,12 @@ export declare const AppointmentAggregateResultSchema: z.ZodObject<{ title: string | null; createdAt: Date | null; patientId: number | null; + npiProviderId: number | null; + userId: number | null; startTime: string | null; endTime: string | null; notes: string | null; procedureCodeNotes: string | null; - userId: number | null; staffId: number | null; }, { type: string | null; @@ -172,11 +198,12 @@ export declare const AppointmentAggregateResultSchema: z.ZodObject<{ title: string | null; createdAt: Date | null; patientId: number | null; + npiProviderId: number | null; + userId: number | null; startTime: string | null; endTime: string | null; notes: string | null; procedureCodeNotes: string | null; - userId: number | null; staffId: number | null; }>>>; }, "strip", z.ZodTypeAny, { @@ -189,17 +216,22 @@ export declare const AppointmentAggregateResultSchema: z.ZodObject<{ createdAt: number; patientId: number; patient: number; + npiProviderId: number; + npiProvider: number; + userId: number; + user: number; startTime: number; endTime: number; + typeLocked: number; notes: number; procedureCodeNotes: number; + movedByAi: number; eligibilityStatus: number; - user: number; staff: number; procedures: number; - userId: number; - staffId: number; claims: number; + files: number; + staffId: number; } | undefined; _min?: { type: string | null; @@ -209,11 +241,12 @@ export declare const AppointmentAggregateResultSchema: z.ZodObject<{ title: string | null; createdAt: Date | null; patientId: number | null; + npiProviderId: number | null; + userId: number | null; startTime: string | null; endTime: string | null; notes: string | null; procedureCodeNotes: string | null; - userId: number | null; staffId: number | null; } | null | undefined; _max?: { @@ -224,22 +257,25 @@ export declare const AppointmentAggregateResultSchema: z.ZodObject<{ title: string | null; createdAt: Date | null; patientId: number | null; + npiProviderId: number | null; + userId: number | null; startTime: string | null; endTime: string | null; notes: string | null; procedureCodeNotes: string | null; - userId: number | null; staffId: number | null; } | null | undefined; _avg?: { id: number | null; patientId: number | null; + npiProviderId: number | null; userId: number | null; staffId: number | null; } | null | undefined; _sum?: { id: number | null; patientId: number | null; + npiProviderId: number | null; userId: number | null; staffId: number | null; } | null | undefined; @@ -253,17 +289,22 @@ export declare const AppointmentAggregateResultSchema: z.ZodObject<{ createdAt: number; patientId: number; patient: number; + npiProviderId: number; + npiProvider: number; + userId: number; + user: number; startTime: number; endTime: number; + typeLocked: number; notes: number; procedureCodeNotes: number; + movedByAi: number; eligibilityStatus: number; - user: number; staff: number; procedures: number; - userId: number; - staffId: number; claims: number; + files: number; + staffId: number; } | undefined; _min?: { type: string | null; @@ -273,11 +314,12 @@ export declare const AppointmentAggregateResultSchema: z.ZodObject<{ title: string | null; createdAt: Date | null; patientId: number | null; + npiProviderId: number | null; + userId: number | null; startTime: string | null; endTime: string | null; notes: string | null; procedureCodeNotes: string | null; - userId: number | null; staffId: number | null; } | null | undefined; _max?: { @@ -288,22 +330,25 @@ export declare const AppointmentAggregateResultSchema: z.ZodObject<{ title: string | null; createdAt: Date | null; patientId: number | null; + npiProviderId: number | null; + userId: number | null; startTime: string | null; endTime: string | null; notes: string | null; procedureCodeNotes: string | null; - userId: number | null; staffId: number | null; } | null | undefined; _avg?: { id: number | null; patientId: number | null; + npiProviderId: number | null; userId: number | null; staffId: number | null; } | null | undefined; _sum?: { id: number | null; patientId: number | null; + npiProviderId: number | null; userId: number | null; staffId: number | null; } | null | undefined; diff --git a/packages/db/shared/schemas/results/AppointmentAggregateResult.schema.d.ts.map b/packages/db/shared/schemas/results/AppointmentAggregateResult.schema.d.ts.map index 6e495676..299d8450 100644 --- a/packages/db/shared/schemas/results/AppointmentAggregateResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/AppointmentAggregateResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"AppointmentAggregateResult.schema.d.ts","sourceRoot":"","sources":["AppointmentAggregateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8DjB,CAAC"} \ No newline at end of file +{"version":3,"file":"AppointmentAggregateResult.schema.d.ts","sourceRoot":"","sources":["AppointmentAggregateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAuEjB,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/AppointmentAggregateResult.schema.js b/packages/db/shared/schemas/results/AppointmentAggregateResult.schema.js index c4cfb6ab..309378f0 100644 --- a/packages/db/shared/schemas/results/AppointmentAggregateResult.schema.js +++ b/packages/db/shared/schemas/results/AppointmentAggregateResult.schema.js @@ -40,6 +40,7 @@ exports.AppointmentAggregateResultSchema = z.object({ _count: z.object({ patientId: z.number(), userId: z.number(), staffId: z.number(), + npiProviderId: z.number(), title: z.number(), date: z.number(), startTime: z.number(), @@ -55,6 +56,7 @@ exports.AppointmentAggregateResultSchema = z.object({ _count: z.object({ patient: z.number(), user: z.number(), staff: z.number(), + npiProvider: z.number(), procedures: z.number(), claims: z.number(), files: z.number() @@ -63,19 +65,22 @@ exports.AppointmentAggregateResultSchema = z.object({ _count: z.object({ id: z.number().nullable(), patientId: z.number().nullable(), userId: z.number().nullable(), - staffId: z.number().nullable() + staffId: z.number().nullable(), + npiProviderId: z.number().nullable() }).nullable().optional(), _avg: z.object({ id: z.number().nullable(), patientId: z.number().nullable(), userId: z.number().nullable(), - staffId: z.number().nullable() + staffId: z.number().nullable(), + npiProviderId: z.number().nullable() }).nullable().optional(), _min: z.object({ id: z.number().int().nullable(), patientId: z.number().int().nullable(), userId: z.number().int().nullable(), staffId: z.number().int().nullable(), + npiProviderId: z.number().int().nullable(), title: z.string().nullable(), date: z.date().nullable(), startTime: z.string().nullable(), @@ -91,6 +96,7 @@ exports.AppointmentAggregateResultSchema = z.object({ _count: z.object({ patientId: z.number().int().nullable(), userId: z.number().int().nullable(), staffId: z.number().int().nullable(), + npiProviderId: z.number().int().nullable(), title: z.string().nullable(), date: z.date().nullable(), startTime: z.string().nullable(), diff --git a/packages/db/shared/schemas/results/AppointmentAggregateResult.schema.ts b/packages/db/shared/schemas/results/AppointmentAggregateResult.schema.ts index 97b0b46b..edc6a896 100644 --- a/packages/db/shared/schemas/results/AppointmentAggregateResult.schema.ts +++ b/packages/db/shared/schemas/results/AppointmentAggregateResult.schema.ts @@ -4,6 +4,7 @@ export const AppointmentAggregateResultSchema = z.object({ _count: z.object({ patientId: z.number(), userId: z.number(), staffId: z.number(), + npiProviderId: z.number(), title: z.number(), date: z.number(), startTime: z.number(), @@ -19,6 +20,7 @@ export const AppointmentAggregateResultSchema = z.object({ _count: z.object({ patient: z.number(), user: z.number(), staff: z.number(), + npiProvider: z.number(), procedures: z.number(), claims: z.number(), files: z.number() @@ -27,19 +29,22 @@ export const AppointmentAggregateResultSchema = z.object({ _count: z.object({ id: z.number().nullable(), patientId: z.number().nullable(), userId: z.number().nullable(), - staffId: z.number().nullable() + staffId: z.number().nullable(), + npiProviderId: z.number().nullable() }).nullable().optional(), _avg: z.object({ id: z.number().nullable(), patientId: z.number().nullable(), userId: z.number().nullable(), - staffId: z.number().nullable() + staffId: z.number().nullable(), + npiProviderId: z.number().nullable() }).nullable().optional(), _min: z.object({ id: z.number().int().nullable(), patientId: z.number().int().nullable(), userId: z.number().int().nullable(), staffId: z.number().int().nullable(), + npiProviderId: z.number().int().nullable(), title: z.string().nullable(), date: z.date().nullable(), startTime: z.string().nullable(), @@ -55,6 +60,7 @@ export const AppointmentAggregateResultSchema = z.object({ _count: z.object({ patientId: z.number().int().nullable(), userId: z.number().int().nullable(), staffId: z.number().int().nullable(), + npiProviderId: z.number().int().nullable(), title: z.string().nullable(), date: z.date().nullable(), startTime: z.string().nullable(), diff --git a/packages/db/shared/schemas/results/AppointmentCreateResult.schema.d.ts b/packages/db/shared/schemas/results/AppointmentCreateResult.schema.d.ts index 12089b34..81eee7f1 100644 --- a/packages/db/shared/schemas/results/AppointmentCreateResult.schema.d.ts +++ b/packages/db/shared/schemas/results/AppointmentCreateResult.schema.d.ts @@ -4,21 +4,26 @@ export declare const AppointmentCreateResultSchema: z.ZodObject<{ patientId: z.ZodNumber; userId: z.ZodNumber; staffId: z.ZodNumber; + npiProviderId: z.ZodOptional; title: z.ZodString; date: z.ZodDate; startTime: z.ZodString; endTime: z.ZodString; type: z.ZodString; + typeLocked: z.ZodBoolean; notes: z.ZodOptional; procedureCodeNotes: z.ZodOptional; status: z.ZodString; + movedByAi: z.ZodBoolean; createdAt: z.ZodDate; eligibilityStatus: z.ZodUnknown; patient: z.ZodUnknown; user: z.ZodUnknown; staff: z.ZodOptional; + npiProvider: z.ZodOptional; procedures: z.ZodArray; claims: z.ZodArray; + files: z.ZodArray; }, "strip", z.ZodTypeAny, { type: string; status: string; @@ -27,17 +32,22 @@ export declare const AppointmentCreateResultSchema: z.ZodObject<{ title: string; createdAt: Date; patientId: number; + userId: number; startTime: string; endTime: string; + typeLocked: boolean; + movedByAi: boolean; procedures: unknown[]; - userId: number; - staffId: number; claims: unknown[]; + files: unknown[]; + staffId: number; patient?: unknown; + npiProviderId?: number | undefined; + npiProvider?: unknown; + user?: unknown; notes?: string | undefined; procedureCodeNotes?: string | undefined; eligibilityStatus?: unknown; - user?: unknown; staff?: unknown; }, { type: string; @@ -47,17 +57,22 @@ export declare const AppointmentCreateResultSchema: z.ZodObject<{ title: string; createdAt: Date; patientId: number; + userId: number; startTime: string; endTime: string; + typeLocked: boolean; + movedByAi: boolean; procedures: unknown[]; - userId: number; - staffId: number; claims: unknown[]; + files: unknown[]; + staffId: number; patient?: unknown; + npiProviderId?: number | undefined; + npiProvider?: unknown; + user?: unknown; notes?: string | undefined; procedureCodeNotes?: string | undefined; eligibilityStatus?: unknown; - user?: unknown; staff?: unknown; }>; //# sourceMappingURL=AppointmentCreateResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/AppointmentCreateResult.schema.d.ts.map b/packages/db/shared/schemas/results/AppointmentCreateResult.schema.d.ts.map index f193ab43..6b1545e2 100644 --- a/packages/db/shared/schemas/results/AppointmentCreateResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/AppointmentCreateResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"AppointmentCreateResult.schema.d.ts","sourceRoot":"","sources":["AppointmentCreateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoBxC,CAAC"} \ No newline at end of file +{"version":3,"file":"AppointmentCreateResult.schema.d.ts","sourceRoot":"","sources":["AppointmentCreateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAyBxC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/AppointmentCreateResult.schema.js b/packages/db/shared/schemas/results/AppointmentCreateResult.schema.js index 0707f474..e2482e3a 100644 --- a/packages/db/shared/schemas/results/AppointmentCreateResult.schema.js +++ b/packages/db/shared/schemas/results/AppointmentCreateResult.schema.js @@ -40,6 +40,7 @@ exports.AppointmentCreateResultSchema = z.object({ patientId: z.number().int(), userId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().optional(), title: z.string(), date: z.date(), startTime: z.string(), @@ -55,6 +56,7 @@ exports.AppointmentCreateResultSchema = z.object({ patient: z.unknown(), user: z.unknown(), staff: z.unknown().optional(), + npiProvider: z.unknown().optional(), procedures: z.array(z.unknown()), claims: z.array(z.unknown()), files: z.array(z.unknown()) diff --git a/packages/db/shared/schemas/results/AppointmentCreateResult.schema.ts b/packages/db/shared/schemas/results/AppointmentCreateResult.schema.ts index cf73aa2c..5df13812 100644 --- a/packages/db/shared/schemas/results/AppointmentCreateResult.schema.ts +++ b/packages/db/shared/schemas/results/AppointmentCreateResult.schema.ts @@ -4,6 +4,7 @@ export const AppointmentCreateResultSchema = z.object({ patientId: z.number().int(), userId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().optional(), title: z.string(), date: z.date(), startTime: z.string(), @@ -19,6 +20,7 @@ export const AppointmentCreateResultSchema = z.object({ patient: z.unknown(), user: z.unknown(), staff: z.unknown().optional(), + npiProvider: z.unknown().optional(), procedures: z.array(z.unknown()), claims: z.array(z.unknown()), files: z.array(z.unknown()) diff --git a/packages/db/shared/schemas/results/AppointmentDeleteResult.schema.d.ts b/packages/db/shared/schemas/results/AppointmentDeleteResult.schema.d.ts index 58a5b96d..d83451c8 100644 --- a/packages/db/shared/schemas/results/AppointmentDeleteResult.schema.d.ts +++ b/packages/db/shared/schemas/results/AppointmentDeleteResult.schema.d.ts @@ -4,21 +4,26 @@ export declare const AppointmentDeleteResultSchema: z.ZodNullable; title: z.ZodString; date: z.ZodDate; startTime: z.ZodString; endTime: z.ZodString; type: z.ZodString; + typeLocked: z.ZodBoolean; notes: z.ZodOptional; procedureCodeNotes: z.ZodOptional; status: z.ZodString; + movedByAi: z.ZodBoolean; createdAt: z.ZodDate; eligibilityStatus: z.ZodUnknown; patient: z.ZodUnknown; user: z.ZodUnknown; staff: z.ZodOptional; + npiProvider: z.ZodOptional; procedures: z.ZodArray; claims: z.ZodArray; + files: z.ZodArray; }, "strip", z.ZodTypeAny, { type: string; status: string; @@ -27,17 +32,22 @@ export declare const AppointmentDeleteResultSchema: z.ZodNullable>; //# sourceMappingURL=AppointmentDeleteResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/AppointmentDeleteResult.schema.d.ts.map b/packages/db/shared/schemas/results/AppointmentDeleteResult.schema.d.ts.map index bea32039..57dfdcfb 100644 --- a/packages/db/shared/schemas/results/AppointmentDeleteResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/AppointmentDeleteResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"AppointmentDeleteResult.schema.d.ts","sourceRoot":"","sources":["AppointmentDeleteResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoBvC,CAAC"} \ No newline at end of file +{"version":3,"file":"AppointmentDeleteResult.schema.d.ts","sourceRoot":"","sources":["AppointmentDeleteResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAyBvC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/AppointmentDeleteResult.schema.js b/packages/db/shared/schemas/results/AppointmentDeleteResult.schema.js index b3bbcb45..066676d7 100644 --- a/packages/db/shared/schemas/results/AppointmentDeleteResult.schema.js +++ b/packages/db/shared/schemas/results/AppointmentDeleteResult.schema.js @@ -40,6 +40,7 @@ exports.AppointmentDeleteResultSchema = z.nullable(z.object({ patientId: z.number().int(), userId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().optional(), title: z.string(), date: z.date(), startTime: z.string(), @@ -55,6 +56,7 @@ exports.AppointmentDeleteResultSchema = z.nullable(z.object({ patient: z.unknown(), user: z.unknown(), staff: z.unknown().optional(), + npiProvider: z.unknown().optional(), procedures: z.array(z.unknown()), claims: z.array(z.unknown()), files: z.array(z.unknown()) diff --git a/packages/db/shared/schemas/results/AppointmentDeleteResult.schema.ts b/packages/db/shared/schemas/results/AppointmentDeleteResult.schema.ts index 591ef4c2..5fcf3782 100644 --- a/packages/db/shared/schemas/results/AppointmentDeleteResult.schema.ts +++ b/packages/db/shared/schemas/results/AppointmentDeleteResult.schema.ts @@ -4,6 +4,7 @@ export const AppointmentDeleteResultSchema = z.nullable(z.object({ patientId: z.number().int(), userId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().optional(), title: z.string(), date: z.date(), startTime: z.string(), @@ -19,6 +20,7 @@ export const AppointmentDeleteResultSchema = z.nullable(z.object({ patient: z.unknown(), user: z.unknown(), staff: z.unknown().optional(), + npiProvider: z.unknown().optional(), procedures: z.array(z.unknown()), claims: z.array(z.unknown()), files: z.array(z.unknown()) diff --git a/packages/db/shared/schemas/results/AppointmentFindFirstResult.schema.d.ts b/packages/db/shared/schemas/results/AppointmentFindFirstResult.schema.d.ts index 391bdac7..9930366b 100644 --- a/packages/db/shared/schemas/results/AppointmentFindFirstResult.schema.d.ts +++ b/packages/db/shared/schemas/results/AppointmentFindFirstResult.schema.d.ts @@ -4,21 +4,26 @@ export declare const AppointmentFindFirstResultSchema: z.ZodNullable; title: z.ZodString; date: z.ZodDate; startTime: z.ZodString; endTime: z.ZodString; type: z.ZodString; + typeLocked: z.ZodBoolean; notes: z.ZodOptional; procedureCodeNotes: z.ZodOptional; status: z.ZodString; + movedByAi: z.ZodBoolean; createdAt: z.ZodDate; eligibilityStatus: z.ZodUnknown; patient: z.ZodUnknown; user: z.ZodUnknown; staff: z.ZodOptional; + npiProvider: z.ZodOptional; procedures: z.ZodArray; claims: z.ZodArray; + files: z.ZodArray; }, "strip", z.ZodTypeAny, { type: string; status: string; @@ -27,17 +32,22 @@ export declare const AppointmentFindFirstResultSchema: z.ZodNullable>; //# sourceMappingURL=AppointmentFindFirstResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/AppointmentFindFirstResult.schema.d.ts.map b/packages/db/shared/schemas/results/AppointmentFindFirstResult.schema.d.ts.map index 3ab6e6af..40fb5a0a 100644 --- a/packages/db/shared/schemas/results/AppointmentFindFirstResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/AppointmentFindFirstResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"AppointmentFindFirstResult.schema.d.ts","sourceRoot":"","sources":["AppointmentFindFirstResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoB1C,CAAC"} \ No newline at end of file +{"version":3,"file":"AppointmentFindFirstResult.schema.d.ts","sourceRoot":"","sources":["AppointmentFindFirstResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAyB1C,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/AppointmentFindFirstResult.schema.js b/packages/db/shared/schemas/results/AppointmentFindFirstResult.schema.js index 663b641e..773a5e7a 100644 --- a/packages/db/shared/schemas/results/AppointmentFindFirstResult.schema.js +++ b/packages/db/shared/schemas/results/AppointmentFindFirstResult.schema.js @@ -40,6 +40,7 @@ exports.AppointmentFindFirstResultSchema = z.nullable(z.object({ patientId: z.number().int(), userId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().optional(), title: z.string(), date: z.date(), startTime: z.string(), @@ -55,6 +56,7 @@ exports.AppointmentFindFirstResultSchema = z.nullable(z.object({ patient: z.unknown(), user: z.unknown(), staff: z.unknown().optional(), + npiProvider: z.unknown().optional(), procedures: z.array(z.unknown()), claims: z.array(z.unknown()), files: z.array(z.unknown()) diff --git a/packages/db/shared/schemas/results/AppointmentFindFirstResult.schema.ts b/packages/db/shared/schemas/results/AppointmentFindFirstResult.schema.ts index bc4d5318..49d7462a 100644 --- a/packages/db/shared/schemas/results/AppointmentFindFirstResult.schema.ts +++ b/packages/db/shared/schemas/results/AppointmentFindFirstResult.schema.ts @@ -4,6 +4,7 @@ export const AppointmentFindFirstResultSchema = z.nullable(z.object({ patientId: z.number().int(), userId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().optional(), title: z.string(), date: z.date(), startTime: z.string(), @@ -19,6 +20,7 @@ export const AppointmentFindFirstResultSchema = z.nullable(z.object({ patient: z.unknown(), user: z.unknown(), staff: z.unknown().optional(), + npiProvider: z.unknown().optional(), procedures: z.array(z.unknown()), claims: z.array(z.unknown()), files: z.array(z.unknown()) diff --git a/packages/db/shared/schemas/results/AppointmentFindManyResult.schema.d.ts b/packages/db/shared/schemas/results/AppointmentFindManyResult.schema.d.ts index 04deff6b..729fc75f 100644 --- a/packages/db/shared/schemas/results/AppointmentFindManyResult.schema.d.ts +++ b/packages/db/shared/schemas/results/AppointmentFindManyResult.schema.d.ts @@ -5,21 +5,26 @@ export declare const AppointmentFindManyResultSchema: z.ZodObject<{ patientId: z.ZodNumber; userId: z.ZodNumber; staffId: z.ZodNumber; + npiProviderId: z.ZodOptional; title: z.ZodString; date: z.ZodDate; startTime: z.ZodString; endTime: z.ZodString; type: z.ZodString; + typeLocked: z.ZodBoolean; notes: z.ZodOptional; procedureCodeNotes: z.ZodOptional; status: z.ZodString; + movedByAi: z.ZodBoolean; createdAt: z.ZodDate; eligibilityStatus: z.ZodUnknown; patient: z.ZodUnknown; user: z.ZodUnknown; staff: z.ZodOptional; + npiProvider: z.ZodOptional; procedures: z.ZodArray; claims: z.ZodArray; + files: z.ZodArray; }, "strip", z.ZodTypeAny, { type: string; status: string; @@ -28,17 +33,22 @@ export declare const AppointmentFindManyResultSchema: z.ZodObject<{ title: string; createdAt: Date; patientId: number; + userId: number; startTime: string; endTime: string; + typeLocked: boolean; + movedByAi: boolean; procedures: unknown[]; - userId: number; - staffId: number; claims: unknown[]; + files: unknown[]; + staffId: number; patient?: unknown; + npiProviderId?: number | undefined; + npiProvider?: unknown; + user?: unknown; notes?: string | undefined; procedureCodeNotes?: string | undefined; eligibilityStatus?: unknown; - user?: unknown; staff?: unknown; }, { type: string; @@ -48,17 +58,22 @@ export declare const AppointmentFindManyResultSchema: z.ZodObject<{ title: string; createdAt: Date; patientId: number; + userId: number; startTime: string; endTime: string; + typeLocked: boolean; + movedByAi: boolean; procedures: unknown[]; - userId: number; - staffId: number; claims: unknown[]; + files: unknown[]; + staffId: number; patient?: unknown; + npiProviderId?: number | undefined; + npiProvider?: unknown; + user?: unknown; notes?: string | undefined; procedureCodeNotes?: string | undefined; eligibilityStatus?: unknown; - user?: unknown; staff?: unknown; }>, "many">; pagination: z.ZodObject<{ @@ -92,17 +107,22 @@ export declare const AppointmentFindManyResultSchema: z.ZodObject<{ title: string; createdAt: Date; patientId: number; + userId: number; startTime: string; endTime: string; + typeLocked: boolean; + movedByAi: boolean; procedures: unknown[]; - userId: number; - staffId: number; claims: unknown[]; + files: unknown[]; + staffId: number; patient?: unknown; + npiProviderId?: number | undefined; + npiProvider?: unknown; + user?: unknown; notes?: string | undefined; procedureCodeNotes?: string | undefined; eligibilityStatus?: unknown; - user?: unknown; staff?: unknown; }[]; pagination: { @@ -122,17 +142,22 @@ export declare const AppointmentFindManyResultSchema: z.ZodObject<{ title: string; createdAt: Date; patientId: number; + userId: number; startTime: string; endTime: string; + typeLocked: boolean; + movedByAi: boolean; procedures: unknown[]; - userId: number; - staffId: number; claims: unknown[]; + files: unknown[]; + staffId: number; patient?: unknown; + npiProviderId?: number | undefined; + npiProvider?: unknown; + user?: unknown; notes?: string | undefined; procedureCodeNotes?: string | undefined; eligibilityStatus?: unknown; - user?: unknown; staff?: unknown; }[]; pagination: { diff --git a/packages/db/shared/schemas/results/AppointmentFindManyResult.schema.d.ts.map b/packages/db/shared/schemas/results/AppointmentFindManyResult.schema.d.ts.map index bb7175ea..3424cb0f 100644 --- a/packages/db/shared/schemas/results/AppointmentFindManyResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/AppointmentFindManyResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"AppointmentFindManyResult.schema.d.ts","sourceRoot":"","sources":["AppointmentFindManyResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8B1C,CAAC"} \ No newline at end of file +{"version":3,"file":"AppointmentFindManyResult.schema.d.ts","sourceRoot":"","sources":["AppointmentFindManyResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmC1C,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/AppointmentFindManyResult.schema.js b/packages/db/shared/schemas/results/AppointmentFindManyResult.schema.js index 9d163aa6..5be99999 100644 --- a/packages/db/shared/schemas/results/AppointmentFindManyResult.schema.js +++ b/packages/db/shared/schemas/results/AppointmentFindManyResult.schema.js @@ -41,6 +41,7 @@ exports.AppointmentFindManyResultSchema = z.object({ patientId: z.number().int(), userId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().optional(), title: z.string(), date: z.date(), startTime: z.string(), @@ -56,6 +57,7 @@ exports.AppointmentFindManyResultSchema = z.object({ patient: z.unknown(), user: z.unknown(), staff: z.unknown().optional(), + npiProvider: z.unknown().optional(), procedures: z.array(z.unknown()), claims: z.array(z.unknown()), files: z.array(z.unknown()) diff --git a/packages/db/shared/schemas/results/AppointmentFindManyResult.schema.ts b/packages/db/shared/schemas/results/AppointmentFindManyResult.schema.ts index 8eece8d9..413723a7 100644 --- a/packages/db/shared/schemas/results/AppointmentFindManyResult.schema.ts +++ b/packages/db/shared/schemas/results/AppointmentFindManyResult.schema.ts @@ -5,6 +5,7 @@ export const AppointmentFindManyResultSchema = z.object({ patientId: z.number().int(), userId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().optional(), title: z.string(), date: z.date(), startTime: z.string(), @@ -20,6 +21,7 @@ export const AppointmentFindManyResultSchema = z.object({ patient: z.unknown(), user: z.unknown(), staff: z.unknown().optional(), + npiProvider: z.unknown().optional(), procedures: z.array(z.unknown()), claims: z.array(z.unknown()), files: z.array(z.unknown()) diff --git a/packages/db/shared/schemas/results/AppointmentFindUniqueResult.schema.d.ts b/packages/db/shared/schemas/results/AppointmentFindUniqueResult.schema.d.ts index 090b8601..2ef40652 100644 --- a/packages/db/shared/schemas/results/AppointmentFindUniqueResult.schema.d.ts +++ b/packages/db/shared/schemas/results/AppointmentFindUniqueResult.schema.d.ts @@ -4,21 +4,26 @@ export declare const AppointmentFindUniqueResultSchema: z.ZodNullable; title: z.ZodString; date: z.ZodDate; startTime: z.ZodString; endTime: z.ZodString; type: z.ZodString; + typeLocked: z.ZodBoolean; notes: z.ZodOptional; procedureCodeNotes: z.ZodOptional; status: z.ZodString; + movedByAi: z.ZodBoolean; createdAt: z.ZodDate; eligibilityStatus: z.ZodUnknown; patient: z.ZodUnknown; user: z.ZodUnknown; staff: z.ZodOptional; + npiProvider: z.ZodOptional; procedures: z.ZodArray; claims: z.ZodArray; + files: z.ZodArray; }, "strip", z.ZodTypeAny, { type: string; status: string; @@ -27,17 +32,22 @@ export declare const AppointmentFindUniqueResultSchema: z.ZodNullable>; //# sourceMappingURL=AppointmentFindUniqueResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/AppointmentFindUniqueResult.schema.d.ts.map b/packages/db/shared/schemas/results/AppointmentFindUniqueResult.schema.d.ts.map index a07413c3..a4c61f61 100644 --- a/packages/db/shared/schemas/results/AppointmentFindUniqueResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/AppointmentFindUniqueResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"AppointmentFindUniqueResult.schema.d.ts","sourceRoot":"","sources":["AppointmentFindUniqueResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoB3C,CAAC"} \ No newline at end of file +{"version":3,"file":"AppointmentFindUniqueResult.schema.d.ts","sourceRoot":"","sources":["AppointmentFindUniqueResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAyB3C,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/AppointmentFindUniqueResult.schema.js b/packages/db/shared/schemas/results/AppointmentFindUniqueResult.schema.js index 237b672f..f95313e1 100644 --- a/packages/db/shared/schemas/results/AppointmentFindUniqueResult.schema.js +++ b/packages/db/shared/schemas/results/AppointmentFindUniqueResult.schema.js @@ -40,6 +40,7 @@ exports.AppointmentFindUniqueResultSchema = z.nullable(z.object({ patientId: z.number().int(), userId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().optional(), title: z.string(), date: z.date(), startTime: z.string(), @@ -55,6 +56,7 @@ exports.AppointmentFindUniqueResultSchema = z.nullable(z.object({ patient: z.unknown(), user: z.unknown(), staff: z.unknown().optional(), + npiProvider: z.unknown().optional(), procedures: z.array(z.unknown()), claims: z.array(z.unknown()), files: z.array(z.unknown()) diff --git a/packages/db/shared/schemas/results/AppointmentFindUniqueResult.schema.ts b/packages/db/shared/schemas/results/AppointmentFindUniqueResult.schema.ts index 1e29f621..d34b8937 100644 --- a/packages/db/shared/schemas/results/AppointmentFindUniqueResult.schema.ts +++ b/packages/db/shared/schemas/results/AppointmentFindUniqueResult.schema.ts @@ -4,6 +4,7 @@ export const AppointmentFindUniqueResultSchema = z.nullable(z.object({ patientId: z.number().int(), userId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().optional(), title: z.string(), date: z.date(), startTime: z.string(), @@ -19,6 +20,7 @@ export const AppointmentFindUniqueResultSchema = z.nullable(z.object({ patient: z.unknown(), user: z.unknown(), staff: z.unknown().optional(), + npiProvider: z.unknown().optional(), procedures: z.array(z.unknown()), claims: z.array(z.unknown()), files: z.array(z.unknown()) diff --git a/packages/db/shared/schemas/results/AppointmentGroupByResult.schema.d.ts b/packages/db/shared/schemas/results/AppointmentGroupByResult.schema.d.ts index f4083104..0623cbf6 100644 --- a/packages/db/shared/schemas/results/AppointmentGroupByResult.schema.d.ts +++ b/packages/db/shared/schemas/results/AppointmentGroupByResult.schema.d.ts @@ -4,35 +4,43 @@ export declare const AppointmentGroupByResultSchema: z.ZodArray>; _sum: z.ZodOptional; patientId: z.ZodNullable; userId: z.ZodNullable; staffId: z.ZodNullable; + npiProviderId: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; patientId: number | null; + npiProviderId: number | null; userId: number | null; staffId: number | null; }, { id: number | null; patientId: number | null; + npiProviderId: number | null; userId: number | null; staffId: number | null; }>>>; @@ -95,14 +116,17 @@ export declare const AppointmentGroupByResultSchema: z.ZodArray; userId: z.ZodNullable; staffId: z.ZodNullable; + npiProviderId: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; patientId: number | null; + npiProviderId: number | null; userId: number | null; staffId: number | null; }, { id: number | null; patientId: number | null; + npiProviderId: number | null; userId: number | null; staffId: number | null; }>>>; @@ -111,6 +135,7 @@ export declare const AppointmentGroupByResultSchema: z.ZodArray; userId: z.ZodNullable; staffId: z.ZodNullable; + npiProviderId: z.ZodNullable; title: z.ZodNullable; date: z.ZodNullable; startTime: z.ZodNullable; @@ -128,11 +153,12 @@ export declare const AppointmentGroupByResultSchema: z.ZodArray>>; _max: z.ZodOptional; userId: z.ZodNullable; staffId: z.ZodNullable; + npiProviderId: z.ZodNullable; title: z.ZodNullable; date: z.ZodNullable; startTime: z.ZodNullable; @@ -171,11 +199,12 @@ export declare const AppointmentGroupByResultSchema: z.ZodArray>>; }, "strip", z.ZodTypeAny, { @@ -200,11 +230,14 @@ export declare const AppointmentGroupByResultSchema: z.ZodArray; title: z.ZodString; date: z.ZodDate; startTime: z.ZodString; endTime: z.ZodString; type: z.ZodString; + typeLocked: z.ZodBoolean; notes: z.ZodOptional; procedureCodeNotes: z.ZodOptional; status: z.ZodString; + movedByAi: z.ZodBoolean; createdAt: z.ZodDate; eligibilityStatus: z.ZodUnknown; patient: z.ZodUnknown; user: z.ZodUnknown; staff: z.ZodOptional; + npiProvider: z.ZodOptional; procedures: z.ZodArray; claims: z.ZodArray; + files: z.ZodArray; }, "strip", z.ZodTypeAny, { type: string; status: string; @@ -27,17 +32,22 @@ export declare const AppointmentUpdateResultSchema: z.ZodNullable>; //# sourceMappingURL=AppointmentUpdateResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/AppointmentUpdateResult.schema.d.ts.map b/packages/db/shared/schemas/results/AppointmentUpdateResult.schema.d.ts.map index 7250d22e..ca57c40a 100644 --- a/packages/db/shared/schemas/results/AppointmentUpdateResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/AppointmentUpdateResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"AppointmentUpdateResult.schema.d.ts","sourceRoot":"","sources":["AppointmentUpdateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoBvC,CAAC"} \ No newline at end of file +{"version":3,"file":"AppointmentUpdateResult.schema.d.ts","sourceRoot":"","sources":["AppointmentUpdateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAyBvC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/AppointmentUpdateResult.schema.js b/packages/db/shared/schemas/results/AppointmentUpdateResult.schema.js index 663a8929..84204197 100644 --- a/packages/db/shared/schemas/results/AppointmentUpdateResult.schema.js +++ b/packages/db/shared/schemas/results/AppointmentUpdateResult.schema.js @@ -40,6 +40,7 @@ exports.AppointmentUpdateResultSchema = z.nullable(z.object({ patientId: z.number().int(), userId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().optional(), title: z.string(), date: z.date(), startTime: z.string(), @@ -55,6 +56,7 @@ exports.AppointmentUpdateResultSchema = z.nullable(z.object({ patient: z.unknown(), user: z.unknown(), staff: z.unknown().optional(), + npiProvider: z.unknown().optional(), procedures: z.array(z.unknown()), claims: z.array(z.unknown()), files: z.array(z.unknown()) diff --git a/packages/db/shared/schemas/results/AppointmentUpdateResult.schema.ts b/packages/db/shared/schemas/results/AppointmentUpdateResult.schema.ts index 5698fad2..673e38e6 100644 --- a/packages/db/shared/schemas/results/AppointmentUpdateResult.schema.ts +++ b/packages/db/shared/schemas/results/AppointmentUpdateResult.schema.ts @@ -4,6 +4,7 @@ export const AppointmentUpdateResultSchema = z.nullable(z.object({ patientId: z.number().int(), userId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().optional(), title: z.string(), date: z.date(), startTime: z.string(), @@ -19,6 +20,7 @@ export const AppointmentUpdateResultSchema = z.nullable(z.object({ patient: z.unknown(), user: z.unknown(), staff: z.unknown().optional(), + npiProvider: z.unknown().optional(), procedures: z.array(z.unknown()), claims: z.array(z.unknown()), files: z.array(z.unknown()) diff --git a/packages/db/shared/schemas/results/AppointmentUpsertResult.schema.d.ts b/packages/db/shared/schemas/results/AppointmentUpsertResult.schema.d.ts index d8b4f8fb..c92553c3 100644 --- a/packages/db/shared/schemas/results/AppointmentUpsertResult.schema.d.ts +++ b/packages/db/shared/schemas/results/AppointmentUpsertResult.schema.d.ts @@ -4,21 +4,26 @@ export declare const AppointmentUpsertResultSchema: z.ZodObject<{ patientId: z.ZodNumber; userId: z.ZodNumber; staffId: z.ZodNumber; + npiProviderId: z.ZodOptional; title: z.ZodString; date: z.ZodDate; startTime: z.ZodString; endTime: z.ZodString; type: z.ZodString; + typeLocked: z.ZodBoolean; notes: z.ZodOptional; procedureCodeNotes: z.ZodOptional; status: z.ZodString; + movedByAi: z.ZodBoolean; createdAt: z.ZodDate; eligibilityStatus: z.ZodUnknown; patient: z.ZodUnknown; user: z.ZodUnknown; staff: z.ZodOptional; + npiProvider: z.ZodOptional; procedures: z.ZodArray; claims: z.ZodArray; + files: z.ZodArray; }, "strip", z.ZodTypeAny, { type: string; status: string; @@ -27,17 +32,22 @@ export declare const AppointmentUpsertResultSchema: z.ZodObject<{ title: string; createdAt: Date; patientId: number; + userId: number; startTime: string; endTime: string; + typeLocked: boolean; + movedByAi: boolean; procedures: unknown[]; - userId: number; - staffId: number; claims: unknown[]; + files: unknown[]; + staffId: number; patient?: unknown; + npiProviderId?: number | undefined; + npiProvider?: unknown; + user?: unknown; notes?: string | undefined; procedureCodeNotes?: string | undefined; eligibilityStatus?: unknown; - user?: unknown; staff?: unknown; }, { type: string; @@ -47,17 +57,22 @@ export declare const AppointmentUpsertResultSchema: z.ZodObject<{ title: string; createdAt: Date; patientId: number; + userId: number; startTime: string; endTime: string; + typeLocked: boolean; + movedByAi: boolean; procedures: unknown[]; - userId: number; - staffId: number; claims: unknown[]; + files: unknown[]; + staffId: number; patient?: unknown; + npiProviderId?: number | undefined; + npiProvider?: unknown; + user?: unknown; notes?: string | undefined; procedureCodeNotes?: string | undefined; eligibilityStatus?: unknown; - user?: unknown; staff?: unknown; }>; //# sourceMappingURL=AppointmentUpsertResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/AppointmentUpsertResult.schema.d.ts.map b/packages/db/shared/schemas/results/AppointmentUpsertResult.schema.d.ts.map index 65928757..94ff65fa 100644 --- a/packages/db/shared/schemas/results/AppointmentUpsertResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/AppointmentUpsertResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"AppointmentUpsertResult.schema.d.ts","sourceRoot":"","sources":["AppointmentUpsertResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoBxC,CAAC"} \ No newline at end of file +{"version":3,"file":"AppointmentUpsertResult.schema.d.ts","sourceRoot":"","sources":["AppointmentUpsertResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAyBxC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/AppointmentUpsertResult.schema.js b/packages/db/shared/schemas/results/AppointmentUpsertResult.schema.js index ef73fa07..5844ffa7 100644 --- a/packages/db/shared/schemas/results/AppointmentUpsertResult.schema.js +++ b/packages/db/shared/schemas/results/AppointmentUpsertResult.schema.js @@ -40,6 +40,7 @@ exports.AppointmentUpsertResultSchema = z.object({ patientId: z.number().int(), userId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().optional(), title: z.string(), date: z.date(), startTime: z.string(), @@ -55,6 +56,7 @@ exports.AppointmentUpsertResultSchema = z.object({ patient: z.unknown(), user: z.unknown(), staff: z.unknown().optional(), + npiProvider: z.unknown().optional(), procedures: z.array(z.unknown()), claims: z.array(z.unknown()), files: z.array(z.unknown()) diff --git a/packages/db/shared/schemas/results/AppointmentUpsertResult.schema.ts b/packages/db/shared/schemas/results/AppointmentUpsertResult.schema.ts index e35372a0..ae0fd357 100644 --- a/packages/db/shared/schemas/results/AppointmentUpsertResult.schema.ts +++ b/packages/db/shared/schemas/results/AppointmentUpsertResult.schema.ts @@ -4,6 +4,7 @@ export const AppointmentUpsertResultSchema = z.object({ patientId: z.number().int(), userId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().optional(), title: z.string(), date: z.date(), startTime: z.string(), @@ -19,6 +20,7 @@ export const AppointmentUpsertResultSchema = z.object({ patient: z.unknown(), user: z.unknown(), staff: z.unknown().optional(), + npiProvider: z.unknown().optional(), procedures: z.array(z.unknown()), claims: z.array(z.unknown()), files: z.array(z.unknown()) diff --git a/packages/db/shared/schemas/results/BackupDestinationAggregateResult.schema.d.ts b/packages/db/shared/schemas/results/BackupDestinationAggregateResult.schema.d.ts index 6cfa6752..1d736e70 100644 --- a/packages/db/shared/schemas/results/BackupDestinationAggregateResult.schema.d.ts +++ b/packages/db/shared/schemas/results/BackupDestinationAggregateResult.schema.d.ts @@ -11,15 +11,15 @@ export declare const BackupDestinationAggregateResultSchema: z.ZodObject<{ path: number; id: number; createdAt: number; - user: number; userId: number; + user: number; isActive: number; }, { path: number; id: number; createdAt: number; - user: number; userId: number; + user: number; isActive: number; }>>; _sum: z.ZodOptional>; _sum: z.ZodOptional>; _sum: z.ZodOptional; updatedAt: z.ZodNullable; claimNumber: z.ZodNullable; + preAuthNumber: z.ZodNullable; npiProviderId: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; @@ -158,6 +162,7 @@ export declare const ClaimAggregateResultSchema: z.ZodObject<{ serviceDate: Date | null; insuranceProvider: string | null; claimNumber: string | null; + preAuthNumber: string | null; }, { id: number | null; createdAt: Date | null; @@ -174,6 +179,7 @@ export declare const ClaimAggregateResultSchema: z.ZodObject<{ serviceDate: Date | null; insuranceProvider: string | null; claimNumber: string | null; + preAuthNumber: string | null; }>>>; _max: z.ZodOptional; @@ -190,6 +196,7 @@ export declare const ClaimAggregateResultSchema: z.ZodObject<{ createdAt: z.ZodNullable; updatedAt: z.ZodNullable; claimNumber: z.ZodNullable; + preAuthNumber: z.ZodNullable; npiProviderId: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; @@ -207,6 +214,7 @@ export declare const ClaimAggregateResultSchema: z.ZodObject<{ serviceDate: Date | null; insuranceProvider: string | null; claimNumber: string | null; + preAuthNumber: string | null; }, { id: number | null; createdAt: Date | null; @@ -223,6 +231,7 @@ export declare const ClaimAggregateResultSchema: z.ZodObject<{ serviceDate: Date | null; insuranceProvider: string | null; claimNumber: string | null; + preAuthNumber: string | null; }>>>; }, "strip", z.ZodTypeAny, { _count?: { @@ -235,9 +244,9 @@ export declare const ClaimAggregateResultSchema: z.ZodObject<{ appointmentId: number; appointment: number; npiProvider: number; + userId: number; user: number; staff: number; - userId: number; staffId: number; payment: number; updatedAt: number; @@ -251,6 +260,7 @@ export declare const ClaimAggregateResultSchema: z.ZodObject<{ serviceDate: number; insuranceProvider: number; claimNumber: number; + preAuthNumber: number; claimFiles: number; } | undefined; _min?: { @@ -269,6 +279,7 @@ export declare const ClaimAggregateResultSchema: z.ZodObject<{ serviceDate: Date | null; insuranceProvider: string | null; claimNumber: string | null; + preAuthNumber: string | null; } | null | undefined; _max?: { id: number | null; @@ -286,6 +297,7 @@ export declare const ClaimAggregateResultSchema: z.ZodObject<{ serviceDate: Date | null; insuranceProvider: string | null; claimNumber: string | null; + preAuthNumber: string | null; } | null | undefined; _avg?: { id: number | null; @@ -314,9 +326,9 @@ export declare const ClaimAggregateResultSchema: z.ZodObject<{ appointmentId: number; appointment: number; npiProvider: number; + userId: number; user: number; staff: number; - userId: number; staffId: number; payment: number; updatedAt: number; @@ -330,6 +342,7 @@ export declare const ClaimAggregateResultSchema: z.ZodObject<{ serviceDate: number; insuranceProvider: number; claimNumber: number; + preAuthNumber: number; claimFiles: number; } | undefined; _min?: { @@ -348,6 +361,7 @@ export declare const ClaimAggregateResultSchema: z.ZodObject<{ serviceDate: Date | null; insuranceProvider: string | null; claimNumber: string | null; + preAuthNumber: string | null; } | null | undefined; _max?: { id: number | null; @@ -365,6 +379,7 @@ export declare const ClaimAggregateResultSchema: z.ZodObject<{ serviceDate: Date | null; insuranceProvider: string | null; claimNumber: string | null; + preAuthNumber: string | null; } | null | undefined; _avg?: { id: number | null; diff --git a/packages/db/shared/schemas/results/ClaimAggregateResult.schema.d.ts.map b/packages/db/shared/schemas/results/ClaimAggregateResult.schema.d.ts.map index 43c5305e..c36f0274 100644 --- a/packages/db/shared/schemas/results/ClaimAggregateResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/ClaimAggregateResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ClaimAggregateResult.schema.d.ts","sourceRoot":"","sources":["ClaimAggregateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA6EX,CAAC"} \ No newline at end of file +{"version":3,"file":"ClaimAggregateResult.schema.d.ts","sourceRoot":"","sources":["ClaimAggregateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgFX,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/ClaimCreateResult.schema.d.ts b/packages/db/shared/schemas/results/ClaimCreateResult.schema.d.ts index 2c586976..07b41373 100644 --- a/packages/db/shared/schemas/results/ClaimCreateResult.schema.d.ts +++ b/packages/db/shared/schemas/results/ClaimCreateResult.schema.d.ts @@ -2,7 +2,7 @@ import * as z from 'zod'; export declare const ClaimCreateResultSchema: z.ZodObject<{ id: z.ZodNumber; patientId: z.ZodNumber; - appointmentId: z.ZodNumber; + appointmentId: z.ZodOptional; userId: z.ZodNumber; staffId: z.ZodNumber; patientName: z.ZodString; @@ -17,9 +17,10 @@ export declare const ClaimCreateResultSchema: z.ZodObject<{ updatedAt: z.ZodDate; status: z.ZodUnknown; claimNumber: z.ZodOptional; + preAuthNumber: z.ZodOptional; npiProviderId: z.ZodOptional; patient: z.ZodUnknown; - appointment: z.ZodUnknown; + appointment: z.ZodOptional; user: z.ZodOptional; staff: z.ZodOptional; npiProvider: z.ZodOptional; @@ -30,7 +31,6 @@ export declare const ClaimCreateResultSchema: z.ZodObject<{ id: number; createdAt: Date; patientId: number; - appointmentId: number; userId: number; staffId: number; updatedAt: Date; @@ -45,6 +45,7 @@ export declare const ClaimCreateResultSchema: z.ZodObject<{ status?: unknown; patient?: unknown; npiProviderId?: number | undefined; + appointmentId?: number | undefined; appointment?: unknown; npiProvider?: unknown; user?: unknown; @@ -53,11 +54,11 @@ export declare const ClaimCreateResultSchema: z.ZodObject<{ missingTeethStatus?: unknown; missingTeeth?: unknown; claimNumber?: string | undefined; + preAuthNumber?: string | undefined; }, { id: number; createdAt: Date; patientId: number; - appointmentId: number; userId: number; staffId: number; updatedAt: Date; @@ -72,6 +73,7 @@ export declare const ClaimCreateResultSchema: z.ZodObject<{ status?: unknown; patient?: unknown; npiProviderId?: number | undefined; + appointmentId?: number | undefined; appointment?: unknown; npiProvider?: unknown; user?: unknown; @@ -80,5 +82,6 @@ export declare const ClaimCreateResultSchema: z.ZodObject<{ missingTeethStatus?: unknown; missingTeeth?: unknown; claimNumber?: string | undefined; + preAuthNumber?: string | undefined; }>; //# sourceMappingURL=ClaimCreateResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/ClaimCreateResult.schema.d.ts.map b/packages/db/shared/schemas/results/ClaimCreateResult.schema.d.ts.map index bf63f89b..c0983f27 100644 --- a/packages/db/shared/schemas/results/ClaimCreateResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/ClaimCreateResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ClaimCreateResult.schema.d.ts","sourceRoot":"","sources":["ClaimCreateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA2BlC,CAAC"} \ No newline at end of file +{"version":3,"file":"ClaimCreateResult.schema.d.ts","sourceRoot":"","sources":["ClaimCreateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4BlC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/ClaimDeleteResult.schema.d.ts b/packages/db/shared/schemas/results/ClaimDeleteResult.schema.d.ts index f69cff6a..cdb4c188 100644 --- a/packages/db/shared/schemas/results/ClaimDeleteResult.schema.d.ts +++ b/packages/db/shared/schemas/results/ClaimDeleteResult.schema.d.ts @@ -2,7 +2,7 @@ import * as z from 'zod'; export declare const ClaimDeleteResultSchema: z.ZodNullable; userId: z.ZodNumber; staffId: z.ZodNumber; patientName: z.ZodString; @@ -17,9 +17,10 @@ export declare const ClaimDeleteResultSchema: z.ZodNullable; + preAuthNumber: z.ZodOptional; npiProviderId: z.ZodOptional; patient: z.ZodUnknown; - appointment: z.ZodUnknown; + appointment: z.ZodOptional; user: z.ZodOptional; staff: z.ZodOptional; npiProvider: z.ZodOptional; @@ -30,7 +31,6 @@ export declare const ClaimDeleteResultSchema: z.ZodNullable>; //# sourceMappingURL=ClaimDeleteResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/ClaimDeleteResult.schema.d.ts.map b/packages/db/shared/schemas/results/ClaimDeleteResult.schema.d.ts.map index c5f42dba..9f4e133f 100644 --- a/packages/db/shared/schemas/results/ClaimDeleteResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/ClaimDeleteResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ClaimDeleteResult.schema.d.ts","sourceRoot":"","sources":["ClaimDeleteResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BjC,CAAC"} \ No newline at end of file +{"version":3,"file":"ClaimDeleteResult.schema.d.ts","sourceRoot":"","sources":["ClaimDeleteResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BjC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/ClaimFindFirstResult.schema.d.ts b/packages/db/shared/schemas/results/ClaimFindFirstResult.schema.d.ts index bdc0eea5..4873b476 100644 --- a/packages/db/shared/schemas/results/ClaimFindFirstResult.schema.d.ts +++ b/packages/db/shared/schemas/results/ClaimFindFirstResult.schema.d.ts @@ -2,7 +2,7 @@ import * as z from 'zod'; export declare const ClaimFindFirstResultSchema: z.ZodNullable; userId: z.ZodNumber; staffId: z.ZodNumber; patientName: z.ZodString; @@ -17,9 +17,10 @@ export declare const ClaimFindFirstResultSchema: z.ZodNullable; + preAuthNumber: z.ZodOptional; npiProviderId: z.ZodOptional; patient: z.ZodUnknown; - appointment: z.ZodUnknown; + appointment: z.ZodOptional; user: z.ZodOptional; staff: z.ZodOptional; npiProvider: z.ZodOptional; @@ -30,7 +31,6 @@ export declare const ClaimFindFirstResultSchema: z.ZodNullable>; //# sourceMappingURL=ClaimFindFirstResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/ClaimFindFirstResult.schema.d.ts.map b/packages/db/shared/schemas/results/ClaimFindFirstResult.schema.d.ts.map index 3f7250c0..0940a0b0 100644 --- a/packages/db/shared/schemas/results/ClaimFindFirstResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/ClaimFindFirstResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ClaimFindFirstResult.schema.d.ts","sourceRoot":"","sources":["ClaimFindFirstResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BpC,CAAC"} \ No newline at end of file +{"version":3,"file":"ClaimFindFirstResult.schema.d.ts","sourceRoot":"","sources":["ClaimFindFirstResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BpC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/ClaimFindManyResult.schema.d.ts b/packages/db/shared/schemas/results/ClaimFindManyResult.schema.d.ts index 55e8bac5..bbf63993 100644 --- a/packages/db/shared/schemas/results/ClaimFindManyResult.schema.d.ts +++ b/packages/db/shared/schemas/results/ClaimFindManyResult.schema.d.ts @@ -3,7 +3,7 @@ export declare const ClaimFindManyResultSchema: z.ZodObject<{ data: z.ZodArray; userId: z.ZodNumber; staffId: z.ZodNumber; patientName: z.ZodString; @@ -18,9 +18,10 @@ export declare const ClaimFindManyResultSchema: z.ZodObject<{ updatedAt: z.ZodDate; status: z.ZodUnknown; claimNumber: z.ZodOptional; + preAuthNumber: z.ZodOptional; npiProviderId: z.ZodOptional; patient: z.ZodUnknown; - appointment: z.ZodUnknown; + appointment: z.ZodOptional; user: z.ZodOptional; staff: z.ZodOptional; npiProvider: z.ZodOptional; @@ -31,7 +32,6 @@ export declare const ClaimFindManyResultSchema: z.ZodObject<{ id: number; createdAt: Date; patientId: number; - appointmentId: number; userId: number; staffId: number; updatedAt: Date; @@ -46,6 +46,7 @@ export declare const ClaimFindManyResultSchema: z.ZodObject<{ status?: unknown; patient?: unknown; npiProviderId?: number | undefined; + appointmentId?: number | undefined; appointment?: unknown; npiProvider?: unknown; user?: unknown; @@ -54,11 +55,11 @@ export declare const ClaimFindManyResultSchema: z.ZodObject<{ missingTeethStatus?: unknown; missingTeeth?: unknown; claimNumber?: string | undefined; + preAuthNumber?: string | undefined; }, { id: number; createdAt: Date; patientId: number; - appointmentId: number; userId: number; staffId: number; updatedAt: Date; @@ -73,6 +74,7 @@ export declare const ClaimFindManyResultSchema: z.ZodObject<{ status?: unknown; patient?: unknown; npiProviderId?: number | undefined; + appointmentId?: number | undefined; appointment?: unknown; npiProvider?: unknown; user?: unknown; @@ -81,6 +83,7 @@ export declare const ClaimFindManyResultSchema: z.ZodObject<{ missingTeethStatus?: unknown; missingTeeth?: unknown; claimNumber?: string | undefined; + preAuthNumber?: string | undefined; }>, "many">; pagination: z.ZodObject<{ page: z.ZodNumber; @@ -109,7 +112,6 @@ export declare const ClaimFindManyResultSchema: z.ZodObject<{ id: number; createdAt: Date; patientId: number; - appointmentId: number; userId: number; staffId: number; updatedAt: Date; @@ -124,6 +126,7 @@ export declare const ClaimFindManyResultSchema: z.ZodObject<{ status?: unknown; patient?: unknown; npiProviderId?: number | undefined; + appointmentId?: number | undefined; appointment?: unknown; npiProvider?: unknown; user?: unknown; @@ -132,6 +135,7 @@ export declare const ClaimFindManyResultSchema: z.ZodObject<{ missingTeethStatus?: unknown; missingTeeth?: unknown; claimNumber?: string | undefined; + preAuthNumber?: string | undefined; }[]; pagination: { page: number; @@ -146,7 +150,6 @@ export declare const ClaimFindManyResultSchema: z.ZodObject<{ id: number; createdAt: Date; patientId: number; - appointmentId: number; userId: number; staffId: number; updatedAt: Date; @@ -161,6 +164,7 @@ export declare const ClaimFindManyResultSchema: z.ZodObject<{ status?: unknown; patient?: unknown; npiProviderId?: number | undefined; + appointmentId?: number | undefined; appointment?: unknown; npiProvider?: unknown; user?: unknown; @@ -169,6 +173,7 @@ export declare const ClaimFindManyResultSchema: z.ZodObject<{ missingTeethStatus?: unknown; missingTeeth?: unknown; claimNumber?: string | undefined; + preAuthNumber?: string | undefined; }[]; pagination: { page: number; diff --git a/packages/db/shared/schemas/results/ClaimFindManyResult.schema.d.ts.map b/packages/db/shared/schemas/results/ClaimFindManyResult.schema.d.ts.map index c6f69fc2..0dafa672 100644 --- a/packages/db/shared/schemas/results/ClaimFindManyResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/ClaimFindManyResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ClaimFindManyResult.schema.d.ts","sourceRoot":"","sources":["ClaimFindManyResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqCpC,CAAC"} \ No newline at end of file +{"version":3,"file":"ClaimFindManyResult.schema.d.ts","sourceRoot":"","sources":["ClaimFindManyResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAsCpC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/ClaimFindUniqueResult.schema.d.ts b/packages/db/shared/schemas/results/ClaimFindUniqueResult.schema.d.ts index 6fe84ab2..b56c45bc 100644 --- a/packages/db/shared/schemas/results/ClaimFindUniqueResult.schema.d.ts +++ b/packages/db/shared/schemas/results/ClaimFindUniqueResult.schema.d.ts @@ -2,7 +2,7 @@ import * as z from 'zod'; export declare const ClaimFindUniqueResultSchema: z.ZodNullable; userId: z.ZodNumber; staffId: z.ZodNumber; patientName: z.ZodString; @@ -17,9 +17,10 @@ export declare const ClaimFindUniqueResultSchema: z.ZodNullable; + preAuthNumber: z.ZodOptional; npiProviderId: z.ZodOptional; patient: z.ZodUnknown; - appointment: z.ZodUnknown; + appointment: z.ZodOptional; user: z.ZodOptional; staff: z.ZodOptional; npiProvider: z.ZodOptional; @@ -30,7 +31,6 @@ export declare const ClaimFindUniqueResultSchema: z.ZodNullable>; //# sourceMappingURL=ClaimFindUniqueResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/ClaimFindUniqueResult.schema.d.ts.map b/packages/db/shared/schemas/results/ClaimFindUniqueResult.schema.d.ts.map index d78712a9..c82d9fcd 100644 --- a/packages/db/shared/schemas/results/ClaimFindUniqueResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/ClaimFindUniqueResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ClaimFindUniqueResult.schema.d.ts","sourceRoot":"","sources":["ClaimFindUniqueResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BrC,CAAC"} \ No newline at end of file +{"version":3,"file":"ClaimFindUniqueResult.schema.d.ts","sourceRoot":"","sources":["ClaimFindUniqueResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BrC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/ClaimGroupByResult.schema.d.ts b/packages/db/shared/schemas/results/ClaimGroupByResult.schema.d.ts index a2354f0a..7bfb9955 100644 --- a/packages/db/shared/schemas/results/ClaimGroupByResult.schema.d.ts +++ b/packages/db/shared/schemas/results/ClaimGroupByResult.schema.d.ts @@ -15,6 +15,7 @@ export declare const ClaimGroupByResultSchema: z.ZodArray>; _sum: z.ZodOptional; updatedAt: z.ZodNullable; claimNumber: z.ZodNullable; + preAuthNumber: z.ZodNullable; npiProviderId: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; @@ -174,6 +179,7 @@ export declare const ClaimGroupByResultSchema: z.ZodArray>>; _max: z.ZodOptional; @@ -206,6 +213,7 @@ export declare const ClaimGroupByResultSchema: z.ZodArray; updatedAt: z.ZodNullable; claimNumber: z.ZodNullable; + preAuthNumber: z.ZodNullable; npiProviderId: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; @@ -223,6 +231,7 @@ export declare const ClaimGroupByResultSchema: z.ZodArray>>; }, "strip", z.ZodTypeAny, { id: number; @@ -256,6 +266,7 @@ export declare const ClaimGroupByResultSchema: z.ZodArray; userId: z.ZodNumber; staffId: z.ZodNumber; patientName: z.ZodString; @@ -17,9 +17,10 @@ export declare const ClaimUpdateResultSchema: z.ZodNullable; + preAuthNumber: z.ZodOptional; npiProviderId: z.ZodOptional; patient: z.ZodUnknown; - appointment: z.ZodUnknown; + appointment: z.ZodOptional; user: z.ZodOptional; staff: z.ZodOptional; npiProvider: z.ZodOptional; @@ -30,7 +31,6 @@ export declare const ClaimUpdateResultSchema: z.ZodNullable>; //# sourceMappingURL=ClaimUpdateResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/ClaimUpdateResult.schema.d.ts.map b/packages/db/shared/schemas/results/ClaimUpdateResult.schema.d.ts.map index b03ea23b..ff5fca97 100644 --- a/packages/db/shared/schemas/results/ClaimUpdateResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/ClaimUpdateResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ClaimUpdateResult.schema.d.ts","sourceRoot":"","sources":["ClaimUpdateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BjC,CAAC"} \ No newline at end of file +{"version":3,"file":"ClaimUpdateResult.schema.d.ts","sourceRoot":"","sources":["ClaimUpdateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BjC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/ClaimUpsertResult.schema.d.ts b/packages/db/shared/schemas/results/ClaimUpsertResult.schema.d.ts index fb3d39cd..274b276c 100644 --- a/packages/db/shared/schemas/results/ClaimUpsertResult.schema.d.ts +++ b/packages/db/shared/schemas/results/ClaimUpsertResult.schema.d.ts @@ -2,7 +2,7 @@ import * as z from 'zod'; export declare const ClaimUpsertResultSchema: z.ZodObject<{ id: z.ZodNumber; patientId: z.ZodNumber; - appointmentId: z.ZodNumber; + appointmentId: z.ZodOptional; userId: z.ZodNumber; staffId: z.ZodNumber; patientName: z.ZodString; @@ -17,9 +17,10 @@ export declare const ClaimUpsertResultSchema: z.ZodObject<{ updatedAt: z.ZodDate; status: z.ZodUnknown; claimNumber: z.ZodOptional; + preAuthNumber: z.ZodOptional; npiProviderId: z.ZodOptional; patient: z.ZodUnknown; - appointment: z.ZodUnknown; + appointment: z.ZodOptional; user: z.ZodOptional; staff: z.ZodOptional; npiProvider: z.ZodOptional; @@ -30,7 +31,6 @@ export declare const ClaimUpsertResultSchema: z.ZodObject<{ id: number; createdAt: Date; patientId: number; - appointmentId: number; userId: number; staffId: number; updatedAt: Date; @@ -45,6 +45,7 @@ export declare const ClaimUpsertResultSchema: z.ZodObject<{ status?: unknown; patient?: unknown; npiProviderId?: number | undefined; + appointmentId?: number | undefined; appointment?: unknown; npiProvider?: unknown; user?: unknown; @@ -53,11 +54,11 @@ export declare const ClaimUpsertResultSchema: z.ZodObject<{ missingTeethStatus?: unknown; missingTeeth?: unknown; claimNumber?: string | undefined; + preAuthNumber?: string | undefined; }, { id: number; createdAt: Date; patientId: number; - appointmentId: number; userId: number; staffId: number; updatedAt: Date; @@ -72,6 +73,7 @@ export declare const ClaimUpsertResultSchema: z.ZodObject<{ status?: unknown; patient?: unknown; npiProviderId?: number | undefined; + appointmentId?: number | undefined; appointment?: unknown; npiProvider?: unknown; user?: unknown; @@ -80,5 +82,6 @@ export declare const ClaimUpsertResultSchema: z.ZodObject<{ missingTeethStatus?: unknown; missingTeeth?: unknown; claimNumber?: string | undefined; + preAuthNumber?: string | undefined; }>; //# sourceMappingURL=ClaimUpsertResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/ClaimUpsertResult.schema.d.ts.map b/packages/db/shared/schemas/results/ClaimUpsertResult.schema.d.ts.map index ec860439..1a8e46fa 100644 --- a/packages/db/shared/schemas/results/ClaimUpsertResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/ClaimUpsertResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ClaimUpsertResult.schema.d.ts","sourceRoot":"","sources":["ClaimUpsertResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA2BlC,CAAC"} \ No newline at end of file +{"version":3,"file":"ClaimUpsertResult.schema.d.ts","sourceRoot":"","sources":["ClaimUpsertResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4BlC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/CloudFileAggregateResult.schema.d.ts b/packages/db/shared/schemas/results/CloudFileAggregateResult.schema.d.ts index 79095bd9..412f8456 100644 --- a/packages/db/shared/schemas/results/CloudFileAggregateResult.schema.d.ts +++ b/packages/db/shared/schemas/results/CloudFileAggregateResult.schema.d.ts @@ -18,8 +18,8 @@ export declare const CloudFileAggregateResultSchema: z.ZodObject<{ }, "strip", z.ZodTypeAny, { id: number; createdAt: number; - user: number; userId: number; + user: number; name: number; mimeType: number; updatedAt: number; @@ -33,8 +33,8 @@ export declare const CloudFileAggregateResultSchema: z.ZodObject<{ }, { id: number; createdAt: number; - user: number; userId: number; + user: number; name: number; mimeType: number; updatedAt: number; @@ -156,8 +156,8 @@ export declare const CloudFileAggregateResultSchema: z.ZodObject<{ _count?: { id: number; createdAt: number; - user: number; userId: number; + user: number; name: number; mimeType: number; updatedAt: number; @@ -211,8 +211,8 @@ export declare const CloudFileAggregateResultSchema: z.ZodObject<{ _count?: { id: number; createdAt: number; - user: number; userId: number; + user: number; name: number; mimeType: number; updatedAt: number; diff --git a/packages/db/shared/schemas/results/CloudFileGroupByResult.schema.d.ts b/packages/db/shared/schemas/results/CloudFileGroupByResult.schema.d.ts index 1241bae3..8e25e687 100644 --- a/packages/db/shared/schemas/results/CloudFileGroupByResult.schema.d.ts +++ b/packages/db/shared/schemas/results/CloudFileGroupByResult.schema.d.ts @@ -29,8 +29,8 @@ export declare const CloudFileGroupByResultSchema: z.ZodArray>; @@ -38,12 +44,15 @@ export declare const CloudFolderAggregateResultSchema: z.ZodObject<{ id: z.ZodNullable; userId: z.ZodNullable; parentId: z.ZodNullable; + patientId: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; + patientId: number | null; userId: number | null; parentId: number | null; }, { id: number | null; + patientId: number | null; userId: number | null; parentId: number | null; }>>>; @@ -51,12 +60,15 @@ export declare const CloudFolderAggregateResultSchema: z.ZodObject<{ id: z.ZodNullable; userId: z.ZodNullable; parentId: z.ZodNullable; + patientId: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; + patientId: number | null; userId: number | null; parentId: number | null; }, { id: number | null; + patientId: number | null; userId: number | null; parentId: number | null; }>>>; @@ -65,11 +77,13 @@ export declare const CloudFolderAggregateResultSchema: z.ZodObject<{ userId: z.ZodNullable; name: z.ZodNullable; parentId: z.ZodNullable; + patientId: z.ZodNullable; createdAt: z.ZodNullable; updatedAt: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; createdAt: Date | null; + patientId: number | null; userId: number | null; name: string | null; updatedAt: Date | null; @@ -77,6 +91,7 @@ export declare const CloudFolderAggregateResultSchema: z.ZodObject<{ }, { id: number | null; createdAt: Date | null; + patientId: number | null; userId: number | null; name: string | null; updatedAt: Date | null; @@ -87,11 +102,13 @@ export declare const CloudFolderAggregateResultSchema: z.ZodObject<{ userId: z.ZodNullable; name: z.ZodNullable; parentId: z.ZodNullable; + patientId: z.ZodNullable; createdAt: z.ZodNullable; updatedAt: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; createdAt: Date | null; + patientId: number | null; userId: number | null; name: string | null; updatedAt: Date | null; @@ -99,6 +116,7 @@ export declare const CloudFolderAggregateResultSchema: z.ZodObject<{ }, { id: number | null; createdAt: Date | null; + patientId: number | null; userId: number | null; name: string | null; updatedAt: Date | null; @@ -108,18 +126,21 @@ export declare const CloudFolderAggregateResultSchema: z.ZodObject<{ _count?: { id: number; createdAt: number; - user: number; + patientId: number; + patient: number; userId: number; + user: number; name: number; + files: number; updatedAt: number; children: number; - files: number; parentId: number; parent: number; } | undefined; _min?: { id: number | null; createdAt: Date | null; + patientId: number | null; userId: number | null; name: string | null; updatedAt: Date | null; @@ -128,6 +149,7 @@ export declare const CloudFolderAggregateResultSchema: z.ZodObject<{ _max?: { id: number | null; createdAt: Date | null; + patientId: number | null; userId: number | null; name: string | null; updatedAt: Date | null; @@ -135,11 +157,13 @@ export declare const CloudFolderAggregateResultSchema: z.ZodObject<{ } | null | undefined; _avg?: { id: number | null; + patientId: number | null; userId: number | null; parentId: number | null; } | null | undefined; _sum?: { id: number | null; + patientId: number | null; userId: number | null; parentId: number | null; } | null | undefined; @@ -147,18 +171,21 @@ export declare const CloudFolderAggregateResultSchema: z.ZodObject<{ _count?: { id: number; createdAt: number; - user: number; + patientId: number; + patient: number; userId: number; + user: number; name: number; + files: number; updatedAt: number; children: number; - files: number; parentId: number; parent: number; } | undefined; _min?: { id: number | null; createdAt: Date | null; + patientId: number | null; userId: number | null; name: string | null; updatedAt: Date | null; @@ -167,6 +194,7 @@ export declare const CloudFolderAggregateResultSchema: z.ZodObject<{ _max?: { id: number | null; createdAt: Date | null; + patientId: number | null; userId: number | null; name: string | null; updatedAt: Date | null; @@ -174,11 +202,13 @@ export declare const CloudFolderAggregateResultSchema: z.ZodObject<{ } | null | undefined; _avg?: { id: number | null; + patientId: number | null; userId: number | null; parentId: number | null; } | null | undefined; _sum?: { id: number | null; + patientId: number | null; userId: number | null; parentId: number | null; } | null | undefined; diff --git a/packages/db/shared/schemas/results/CloudFolderAggregateResult.schema.d.ts.map b/packages/db/shared/schemas/results/CloudFolderAggregateResult.schema.d.ts.map index b7f124a5..c6d406de 100644 --- a/packages/db/shared/schemas/results/CloudFolderAggregateResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/CloudFolderAggregateResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"CloudFolderAggregateResult.schema.d.ts","sourceRoot":"","sources":["CloudFolderAggregateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqCjB,CAAC"} \ No newline at end of file +{"version":3,"file":"CloudFolderAggregateResult.schema.d.ts","sourceRoot":"","sources":["CloudFolderAggregateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA2CjB,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/CloudFolderCreateResult.schema.d.ts b/packages/db/shared/schemas/results/CloudFolderCreateResult.schema.d.ts index 711b994e..130f38a4 100644 --- a/packages/db/shared/schemas/results/CloudFolderCreateResult.schema.d.ts +++ b/packages/db/shared/schemas/results/CloudFolderCreateResult.schema.d.ts @@ -4,9 +4,11 @@ export declare const CloudFolderCreateResultSchema: z.ZodObject<{ userId: z.ZodNumber; name: z.ZodString; parentId: z.ZodOptional; + patientId: z.ZodOptional; parent: z.ZodOptional; children: z.ZodArray; user: z.ZodUnknown; + patient: z.ZodOptional; files: z.ZodArray; createdAt: z.ZodDate; updatedAt: z.ZodDate; @@ -15,9 +17,11 @@ export declare const CloudFolderCreateResultSchema: z.ZodObject<{ createdAt: Date; userId: number; name: string; + files: unknown[]; updatedAt: Date; children: unknown[]; - files: unknown[]; + patientId?: number | undefined; + patient?: unknown; user?: unknown; parentId?: number | undefined; parent?: unknown; @@ -26,9 +30,11 @@ export declare const CloudFolderCreateResultSchema: z.ZodObject<{ createdAt: Date; userId: number; name: string; + files: unknown[]; updatedAt: Date; children: unknown[]; - files: unknown[]; + patientId?: number | undefined; + patient?: unknown; user?: unknown; parentId?: number | undefined; parent?: unknown; diff --git a/packages/db/shared/schemas/results/CloudFolderCreateResult.schema.d.ts.map b/packages/db/shared/schemas/results/CloudFolderCreateResult.schema.d.ts.map index 7368eb0a..70ad94be 100644 --- a/packages/db/shared/schemas/results/CloudFolderCreateResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/CloudFolderCreateResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"CloudFolderCreateResult.schema.d.ts","sourceRoot":"","sources":["CloudFolderCreateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAWxC,CAAC"} \ No newline at end of file +{"version":3,"file":"CloudFolderCreateResult.schema.d.ts","sourceRoot":"","sources":["CloudFolderCreateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAaxC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/CloudFolderDeleteResult.schema.d.ts b/packages/db/shared/schemas/results/CloudFolderDeleteResult.schema.d.ts index 21396b34..3d7d3432 100644 --- a/packages/db/shared/schemas/results/CloudFolderDeleteResult.schema.d.ts +++ b/packages/db/shared/schemas/results/CloudFolderDeleteResult.schema.d.ts @@ -4,9 +4,11 @@ export declare const CloudFolderDeleteResultSchema: z.ZodNullable; + patientId: z.ZodOptional; parent: z.ZodOptional; children: z.ZodArray; user: z.ZodUnknown; + patient: z.ZodOptional; files: z.ZodArray; createdAt: z.ZodDate; updatedAt: z.ZodDate; @@ -15,9 +17,11 @@ export declare const CloudFolderDeleteResultSchema: z.ZodNullable; + patientId: z.ZodOptional; parent: z.ZodOptional; children: z.ZodArray; user: z.ZodUnknown; + patient: z.ZodOptional; files: z.ZodArray; createdAt: z.ZodDate; updatedAt: z.ZodDate; @@ -15,9 +17,11 @@ export declare const CloudFolderFindFirstResultSchema: z.ZodNullable; + patientId: z.ZodOptional; parent: z.ZodOptional; children: z.ZodArray; user: z.ZodUnknown; + patient: z.ZodOptional; files: z.ZodArray; createdAt: z.ZodDate; updatedAt: z.ZodDate; @@ -16,9 +18,11 @@ export declare const CloudFolderFindManyResultSchema: z.ZodObject<{ createdAt: Date; userId: number; name: string; + files: unknown[]; updatedAt: Date; children: unknown[]; - files: unknown[]; + patientId?: number | undefined; + patient?: unknown; user?: unknown; parentId?: number | undefined; parent?: unknown; @@ -27,9 +31,11 @@ export declare const CloudFolderFindManyResultSchema: z.ZodObject<{ createdAt: Date; userId: number; name: string; + files: unknown[]; updatedAt: Date; children: unknown[]; - files: unknown[]; + patientId?: number | undefined; + patient?: unknown; user?: unknown; parentId?: number | undefined; parent?: unknown; @@ -62,9 +68,11 @@ export declare const CloudFolderFindManyResultSchema: z.ZodObject<{ createdAt: Date; userId: number; name: string; + files: unknown[]; updatedAt: Date; children: unknown[]; - files: unknown[]; + patientId?: number | undefined; + patient?: unknown; user?: unknown; parentId?: number | undefined; parent?: unknown; @@ -83,9 +91,11 @@ export declare const CloudFolderFindManyResultSchema: z.ZodObject<{ createdAt: Date; userId: number; name: string; + files: unknown[]; updatedAt: Date; children: unknown[]; - files: unknown[]; + patientId?: number | undefined; + patient?: unknown; user?: unknown; parentId?: number | undefined; parent?: unknown; diff --git a/packages/db/shared/schemas/results/CloudFolderFindManyResult.schema.d.ts.map b/packages/db/shared/schemas/results/CloudFolderFindManyResult.schema.d.ts.map index b542e5f5..1b297307 100644 --- a/packages/db/shared/schemas/results/CloudFolderFindManyResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/CloudFolderFindManyResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"CloudFolderFindManyResult.schema.d.ts","sourceRoot":"","sources":["CloudFolderFindManyResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqB1C,CAAC"} \ No newline at end of file +{"version":3,"file":"CloudFolderFindManyResult.schema.d.ts","sourceRoot":"","sources":["CloudFolderFindManyResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAuB1C,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/CloudFolderFindUniqueResult.schema.d.ts b/packages/db/shared/schemas/results/CloudFolderFindUniqueResult.schema.d.ts index 6d5ae111..a51febf0 100644 --- a/packages/db/shared/schemas/results/CloudFolderFindUniqueResult.schema.d.ts +++ b/packages/db/shared/schemas/results/CloudFolderFindUniqueResult.schema.d.ts @@ -4,9 +4,11 @@ export declare const CloudFolderFindUniqueResultSchema: z.ZodNullable; + patientId: z.ZodOptional; parent: z.ZodOptional; children: z.ZodArray; user: z.ZodUnknown; + patient: z.ZodOptional; files: z.ZodArray; createdAt: z.ZodDate; updatedAt: z.ZodDate; @@ -15,9 +17,11 @@ export declare const CloudFolderFindUniqueResultSchema: z.ZodNullable>; @@ -44,12 +51,15 @@ export declare const CloudFolderGroupByResultSchema: z.ZodArray; userId: z.ZodNullable; parentId: z.ZodNullable; + patientId: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; + patientId: number | null; userId: number | null; parentId: number | null; }, { id: number | null; + patientId: number | null; userId: number | null; parentId: number | null; }>>>; @@ -57,12 +67,15 @@ export declare const CloudFolderGroupByResultSchema: z.ZodArray; userId: z.ZodNullable; parentId: z.ZodNullable; + patientId: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; + patientId: number | null; userId: number | null; parentId: number | null; }, { id: number | null; + patientId: number | null; userId: number | null; parentId: number | null; }>>>; @@ -71,11 +84,13 @@ export declare const CloudFolderGroupByResultSchema: z.ZodArray; name: z.ZodNullable; parentId: z.ZodNullable; + patientId: z.ZodNullable; createdAt: z.ZodNullable; updatedAt: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; createdAt: Date | null; + patientId: number | null; userId: number | null; name: string | null; updatedAt: Date | null; @@ -83,6 +98,7 @@ export declare const CloudFolderGroupByResultSchema: z.ZodArray; name: z.ZodNullable; parentId: z.ZodNullable; + patientId: z.ZodNullable; createdAt: z.ZodNullable; updatedAt: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; createdAt: Date | null; + patientId: number | null; userId: number | null; name: string | null; updatedAt: Date | null; @@ -105,6 +123,7 @@ export declare const CloudFolderGroupByResultSchema: z.ZodArray; + patientId: z.ZodOptional; parent: z.ZodOptional; children: z.ZodArray; user: z.ZodUnknown; + patient: z.ZodOptional; files: z.ZodArray; createdAt: z.ZodDate; updatedAt: z.ZodDate; @@ -15,9 +17,11 @@ export declare const CloudFolderUpdateResultSchema: z.ZodNullable; + patientId: z.ZodOptional; parent: z.ZodOptional; children: z.ZodArray; user: z.ZodUnknown; + patient: z.ZodOptional; files: z.ZodArray; createdAt: z.ZodDate; updatedAt: z.ZodDate; @@ -15,9 +17,11 @@ export declare const CloudFolderUpsertResultSchema: z.ZodObject<{ createdAt: Date; userId: number; name: string; + files: unknown[]; updatedAt: Date; children: unknown[]; - files: unknown[]; + patientId?: number | undefined; + patient?: unknown; user?: unknown; parentId?: number | undefined; parent?: unknown; @@ -26,9 +30,11 @@ export declare const CloudFolderUpsertResultSchema: z.ZodObject<{ createdAt: Date; userId: number; name: string; + files: unknown[]; updatedAt: Date; children: unknown[]; - files: unknown[]; + patientId?: number | undefined; + patient?: unknown; user?: unknown; parentId?: number | undefined; parent?: unknown; diff --git a/packages/db/shared/schemas/results/CloudFolderUpsertResult.schema.d.ts.map b/packages/db/shared/schemas/results/CloudFolderUpsertResult.schema.d.ts.map index 6d1145f6..4d39e139 100644 --- a/packages/db/shared/schemas/results/CloudFolderUpsertResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/CloudFolderUpsertResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"CloudFolderUpsertResult.schema.d.ts","sourceRoot":"","sources":["CloudFolderUpsertResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAWxC,CAAC"} \ No newline at end of file +{"version":3,"file":"CloudFolderUpsertResult.schema.d.ts","sourceRoot":"","sources":["CloudFolderUpsertResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAaxC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/CommunicationAggregateResult.schema.d.ts b/packages/db/shared/schemas/results/CommunicationAggregateResult.schema.d.ts index d76fcb0d..bd47f91b 100644 --- a/packages/db/shared/schemas/results/CommunicationAggregateResult.schema.d.ts +++ b/packages/db/shared/schemas/results/CommunicationAggregateResult.schema.d.ts @@ -19,8 +19,8 @@ export declare const CommunicationAggregateResultSchema: z.ZodObject<{ createdAt: number; patientId: number; patient: number; - user: number; userId: number; + user: number; channel: number; direction: number; body: number; @@ -32,8 +32,8 @@ export declare const CommunicationAggregateResultSchema: z.ZodObject<{ createdAt: number; patientId: number; patient: number; - user: number; userId: number; + user: number; channel: number; direction: number; body: number; @@ -129,8 +129,8 @@ export declare const CommunicationAggregateResultSchema: z.ZodObject<{ createdAt: number; patientId: number; patient: number; - user: number; userId: number; + user: number; channel: number; direction: number; body: number; @@ -174,8 +174,8 @@ export declare const CommunicationAggregateResultSchema: z.ZodObject<{ createdAt: number; patientId: number; patient: number; - user: number; userId: number; + user: number; channel: number; direction: number; body: number; diff --git a/packages/db/shared/schemas/results/CommunicationCreateResult.schema.d.ts b/packages/db/shared/schemas/results/CommunicationCreateResult.schema.d.ts index d918a2c0..90b35d32 100644 --- a/packages/db/shared/schemas/results/CommunicationCreateResult.schema.d.ts +++ b/packages/db/shared/schemas/results/CommunicationCreateResult.schema.d.ts @@ -18,8 +18,8 @@ export declare const CommunicationCreateResultSchema: z.ZodObject<{ patientId: number; status?: unknown; patient?: unknown; - user?: unknown; userId?: number | undefined; + user?: unknown; channel?: unknown; direction?: unknown; body?: string | undefined; @@ -31,8 +31,8 @@ export declare const CommunicationCreateResultSchema: z.ZodObject<{ patientId: number; status?: unknown; patient?: unknown; - user?: unknown; userId?: number | undefined; + user?: unknown; channel?: unknown; direction?: unknown; body?: string | undefined; diff --git a/packages/db/shared/schemas/results/CommunicationDeleteResult.schema.d.ts b/packages/db/shared/schemas/results/CommunicationDeleteResult.schema.d.ts index c2becd36..1433dda2 100644 --- a/packages/db/shared/schemas/results/CommunicationDeleteResult.schema.d.ts +++ b/packages/db/shared/schemas/results/CommunicationDeleteResult.schema.d.ts @@ -18,8 +18,8 @@ export declare const CommunicationDeleteResultSchema: z.ZodNullable>; _sum: z.ZodOptional; @@ -66,8 +66,8 @@ export declare const DatabaseBackupAggregateResultSchema: z.ZodObject<{ _count?: { id: number; createdAt: number; - user: number; userId: number; + user: number; } | undefined; _min?: { id: number | null; @@ -91,8 +91,8 @@ export declare const DatabaseBackupAggregateResultSchema: z.ZodObject<{ _count?: { id: number; createdAt: number; - user: number; userId: number; + user: number; } | undefined; _min?: { id: number | null; diff --git a/packages/db/shared/schemas/results/DatabaseBackupGroupByResult.schema.d.ts b/packages/db/shared/schemas/results/DatabaseBackupGroupByResult.schema.d.ts index 1fed92e3..809f17d2 100644 --- a/packages/db/shared/schemas/results/DatabaseBackupGroupByResult.schema.d.ts +++ b/packages/db/shared/schemas/results/DatabaseBackupGroupByResult.schema.d.ts @@ -11,13 +11,13 @@ export declare const DatabaseBackupGroupByResultSchema: z.ZodArray>; _sum: z.ZodOptional; @@ -72,8 +72,8 @@ export declare const DatabaseBackupGroupByResultSchema: z.ZodArray>; _sum: z.ZodOptional; @@ -50,16 +50,16 @@ export declare const InsuranceCredentialAggregateResultSchema: z.ZodObject<{ password: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; - userId: number | null; siteKey: string | null; username: string | null; password: string | null; + userId: number | null; }, { id: number | null; - userId: number | null; siteKey: string | null; username: string | null; password: string | null; + userId: number | null; }>>>; _max: z.ZodOptional; @@ -69,39 +69,39 @@ export declare const InsuranceCredentialAggregateResultSchema: z.ZodObject<{ password: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; - userId: number | null; siteKey: string | null; username: string | null; password: string | null; + userId: number | null; }, { id: number | null; - userId: number | null; siteKey: string | null; username: string | null; password: string | null; + userId: number | null; }>>>; }, "strip", z.ZodTypeAny, { _count?: { id: number; - user: number; - userId: number; siteKey: number; username: number; password: number; + userId: number; + user: number; } | undefined; _min?: { id: number | null; - userId: number | null; siteKey: string | null; username: string | null; password: string | null; + userId: number | null; } | null | undefined; _max?: { id: number | null; - userId: number | null; siteKey: string | null; username: string | null; password: string | null; + userId: number | null; } | null | undefined; _avg?: { id: number | null; @@ -114,25 +114,25 @@ export declare const InsuranceCredentialAggregateResultSchema: z.ZodObject<{ }, { _count?: { id: number; - user: number; - userId: number; siteKey: number; username: number; password: number; + userId: number; + user: number; } | undefined; _min?: { id: number | null; - userId: number | null; siteKey: string | null; username: string | null; password: string | null; + userId: number | null; } | null | undefined; _max?: { id: number | null; - userId: number | null; siteKey: string | null; username: string | null; password: string | null; + userId: number | null; } | null | undefined; _avg?: { id: number | null; diff --git a/packages/db/shared/schemas/results/InsuranceCredentialCreateResult.schema.d.ts b/packages/db/shared/schemas/results/InsuranceCredentialCreateResult.schema.d.ts index d0c3b84c..ec44e88b 100644 --- a/packages/db/shared/schemas/results/InsuranceCredentialCreateResult.schema.d.ts +++ b/packages/db/shared/schemas/results/InsuranceCredentialCreateResult.schema.d.ts @@ -8,17 +8,17 @@ export declare const InsuranceCredentialCreateResultSchema: z.ZodObject<{ user: z.ZodUnknown; }, "strip", z.ZodTypeAny, { id: number; - userId: number; siteKey: string; username: string; password: string; + userId: number; user?: unknown; }, { id: number; - userId: number; siteKey: string; username: string; password: string; + userId: number; user?: unknown; }>; //# sourceMappingURL=InsuranceCredentialCreateResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/InsuranceCredentialDeleteResult.schema.d.ts b/packages/db/shared/schemas/results/InsuranceCredentialDeleteResult.schema.d.ts index 15a303a9..c169956a 100644 --- a/packages/db/shared/schemas/results/InsuranceCredentialDeleteResult.schema.d.ts +++ b/packages/db/shared/schemas/results/InsuranceCredentialDeleteResult.schema.d.ts @@ -8,17 +8,17 @@ export declare const InsuranceCredentialDeleteResultSchema: z.ZodNullable>; //# sourceMappingURL=InsuranceCredentialDeleteResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/InsuranceCredentialFindFirstResult.schema.d.ts b/packages/db/shared/schemas/results/InsuranceCredentialFindFirstResult.schema.d.ts index 457e9663..f482aedf 100644 --- a/packages/db/shared/schemas/results/InsuranceCredentialFindFirstResult.schema.d.ts +++ b/packages/db/shared/schemas/results/InsuranceCredentialFindFirstResult.schema.d.ts @@ -8,17 +8,17 @@ export declare const InsuranceCredentialFindFirstResultSchema: z.ZodNullable>; //# sourceMappingURL=InsuranceCredentialFindFirstResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/InsuranceCredentialFindManyResult.schema.d.ts b/packages/db/shared/schemas/results/InsuranceCredentialFindManyResult.schema.d.ts index a473deb9..c5283131 100644 --- a/packages/db/shared/schemas/results/InsuranceCredentialFindManyResult.schema.d.ts +++ b/packages/db/shared/schemas/results/InsuranceCredentialFindManyResult.schema.d.ts @@ -9,17 +9,17 @@ export declare const InsuranceCredentialFindManyResultSchema: z.ZodObject<{ user: z.ZodUnknown; }, "strip", z.ZodTypeAny, { id: number; - userId: number; siteKey: string; username: string; password: string; + userId: number; user?: unknown; }, { id: number; - userId: number; siteKey: string; username: string; password: string; + userId: number; user?: unknown; }>, "many">; pagination: z.ZodObject<{ @@ -47,10 +47,10 @@ export declare const InsuranceCredentialFindManyResultSchema: z.ZodObject<{ }, "strip", z.ZodTypeAny, { data: { id: number; - userId: number; siteKey: string; username: string; password: string; + userId: number; user?: unknown; }[]; pagination: { @@ -64,10 +64,10 @@ export declare const InsuranceCredentialFindManyResultSchema: z.ZodObject<{ }, { data: { id: number; - userId: number; siteKey: string; username: string; password: string; + userId: number; user?: unknown; }[]; pagination: { diff --git a/packages/db/shared/schemas/results/InsuranceCredentialFindUniqueResult.schema.d.ts b/packages/db/shared/schemas/results/InsuranceCredentialFindUniqueResult.schema.d.ts index b2026402..ccbf5bd6 100644 --- a/packages/db/shared/schemas/results/InsuranceCredentialFindUniqueResult.schema.d.ts +++ b/packages/db/shared/schemas/results/InsuranceCredentialFindUniqueResult.schema.d.ts @@ -8,17 +8,17 @@ export declare const InsuranceCredentialFindUniqueResultSchema: z.ZodNullable>; //# sourceMappingURL=InsuranceCredentialFindUniqueResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/InsuranceCredentialGroupByResult.schema.d.ts b/packages/db/shared/schemas/results/InsuranceCredentialGroupByResult.schema.d.ts index ee4fafc8..aba0d86a 100644 --- a/packages/db/shared/schemas/results/InsuranceCredentialGroupByResult.schema.d.ts +++ b/packages/db/shared/schemas/results/InsuranceCredentialGroupByResult.schema.d.ts @@ -14,18 +14,18 @@ export declare const InsuranceCredentialGroupByResultSchema: z.ZodArray>; _sum: z.ZodOptional; @@ -55,16 +55,16 @@ export declare const InsuranceCredentialGroupByResultSchema: z.ZodArray; }, "strip", z.ZodTypeAny, { id: number | null; - userId: number | null; siteKey: string | null; username: string | null; password: string | null; + userId: number | null; }, { id: number | null; - userId: number | null; siteKey: string | null; username: string | null; password: string | null; + userId: number | null; }>>>; _max: z.ZodOptional; @@ -74,44 +74,44 @@ export declare const InsuranceCredentialGroupByResultSchema: z.ZodArray; }, "strip", z.ZodTypeAny, { id: number | null; - userId: number | null; siteKey: string | null; username: string | null; password: string | null; + userId: number | null; }, { id: number | null; - userId: number | null; siteKey: string | null; username: string | null; password: string | null; + userId: number | null; }>>>; }, "strip", z.ZodTypeAny, { id: number; - userId: number; siteKey: string; username: string; password: string; + userId: number; _count?: { id: number; - user: number; - userId: number; siteKey: number; username: number; password: number; + userId: number; + user: number; } | undefined; _min?: { id: number | null; - userId: number | null; siteKey: string | null; username: string | null; password: string | null; + userId: number | null; } | null | undefined; _max?: { id: number | null; - userId: number | null; siteKey: string | null; username: string | null; password: string | null; + userId: number | null; } | null | undefined; _avg?: { id: number | null; @@ -123,31 +123,31 @@ export declare const InsuranceCredentialGroupByResultSchema: z.ZodArray>; //# sourceMappingURL=InsuranceCredentialUpdateResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/InsuranceCredentialUpsertResult.schema.d.ts b/packages/db/shared/schemas/results/InsuranceCredentialUpsertResult.schema.d.ts index 8c53f57c..81dba7cf 100644 --- a/packages/db/shared/schemas/results/InsuranceCredentialUpsertResult.schema.d.ts +++ b/packages/db/shared/schemas/results/InsuranceCredentialUpsertResult.schema.d.ts @@ -8,17 +8,17 @@ export declare const InsuranceCredentialUpsertResultSchema: z.ZodObject<{ user: z.ZodUnknown; }, "strip", z.ZodTypeAny, { id: number; - userId: number; siteKey: string; username: string; password: string; + userId: number; user?: unknown; }, { id: number; - userId: number; siteKey: string; username: string; password: string; + userId: number; user?: unknown; }>; //# sourceMappingURL=InsuranceCredentialUpsertResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/LabRxTemplateAggregateResult.schema.js b/packages/db/shared/schemas/results/LabRxTemplateAggregateResult.schema.js new file mode 100644 index 00000000..e363a12a --- /dev/null +++ b/packages/db/shared/schemas/results/LabRxTemplateAggregateResult.schema.js @@ -0,0 +1,96 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateAggregateResultSchema = void 0; +const z = __importStar(require("zod")); +exports.LabRxTemplateAggregateResultSchema = z.object({ _count: z.object({ + id: z.number(), + userId: z.number(), + name: z.number(), + labName: z.number(), + labPhone: z.number(), + labFax: z.number(), + labAddress: z.number(), + labAccount: z.number(), + caseType: z.number(), + material: z.number(), + instructions: z.number(), + sortOrder: z.number(), + createdAt: z.number(), + updatedAt: z.number(), + user: z.number() + }).optional(), + _sum: z.object({ + id: z.number().nullable(), + userId: z.number().nullable(), + sortOrder: z.number().nullable() + }).nullable().optional(), + _avg: z.object({ + id: z.number().nullable(), + userId: z.number().nullable(), + sortOrder: z.number().nullable() + }).nullable().optional(), + _min: z.object({ + id: z.number().int().nullable(), + userId: z.number().int().nullable(), + name: z.string().nullable(), + labName: z.string().nullable(), + labPhone: z.string().nullable(), + labFax: z.string().nullable(), + labAddress: z.string().nullable(), + labAccount: z.string().nullable(), + caseType: z.string().nullable(), + material: z.string().nullable(), + instructions: z.string().nullable(), + sortOrder: z.number().int().nullable(), + createdAt: z.date().nullable(), + updatedAt: z.date().nullable() + }).nullable().optional(), + _max: z.object({ + id: z.number().int().nullable(), + userId: z.number().int().nullable(), + name: z.string().nullable(), + labName: z.string().nullable(), + labPhone: z.string().nullable(), + labFax: z.string().nullable(), + labAddress: z.string().nullable(), + labAccount: z.string().nullable(), + caseType: z.string().nullable(), + material: z.string().nullable(), + instructions: z.string().nullable(), + sortOrder: z.number().int().nullable(), + createdAt: z.date().nullable(), + updatedAt: z.date().nullable() + }).nullable().optional() }); diff --git a/packages/db/shared/schemas/results/LabRxTemplateCountResult.schema.js b/packages/db/shared/schemas/results/LabRxTemplateCountResult.schema.js new file mode 100644 index 00000000..38956ef7 --- /dev/null +++ b/packages/db/shared/schemas/results/LabRxTemplateCountResult.schema.js @@ -0,0 +1,38 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateCountResultSchema = void 0; +const z = __importStar(require("zod")); +exports.LabRxTemplateCountResultSchema = z.number(); diff --git a/packages/db/shared/schemas/results/LabRxTemplateCreateManyResult.schema.js b/packages/db/shared/schemas/results/LabRxTemplateCreateManyResult.schema.js new file mode 100644 index 00000000..cc8389e9 --- /dev/null +++ b/packages/db/shared/schemas/results/LabRxTemplateCreateManyResult.schema.js @@ -0,0 +1,40 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateCreateManyResultSchema = void 0; +const z = __importStar(require("zod")); +exports.LabRxTemplateCreateManyResultSchema = z.object({ + count: z.number() +}); diff --git a/packages/db/shared/schemas/results/LabRxTemplateCreateResult.schema.js b/packages/db/shared/schemas/results/LabRxTemplateCreateResult.schema.js new file mode 100644 index 00000000..53d49467 --- /dev/null +++ b/packages/db/shared/schemas/results/LabRxTemplateCreateResult.schema.js @@ -0,0 +1,54 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateCreateResultSchema = void 0; +const z = __importStar(require("zod")); +exports.LabRxTemplateCreateResultSchema = z.object({ + id: z.number().int(), + userId: z.number().int(), + name: z.string(), + labName: z.string().optional(), + labPhone: z.string().optional(), + labFax: z.string().optional(), + labAddress: z.string().optional(), + labAccount: z.string().optional(), + caseType: z.string().optional(), + material: z.string().optional(), + instructions: z.string().optional(), + sortOrder: z.number().int(), + createdAt: z.date(), + updatedAt: z.date(), + user: z.unknown() +}); diff --git a/packages/db/shared/schemas/results/LabRxTemplateDeleteManyResult.schema.js b/packages/db/shared/schemas/results/LabRxTemplateDeleteManyResult.schema.js new file mode 100644 index 00000000..9acdd103 --- /dev/null +++ b/packages/db/shared/schemas/results/LabRxTemplateDeleteManyResult.schema.js @@ -0,0 +1,40 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateDeleteManyResultSchema = void 0; +const z = __importStar(require("zod")); +exports.LabRxTemplateDeleteManyResultSchema = z.object({ + count: z.number() +}); diff --git a/packages/db/shared/schemas/results/LabRxTemplateDeleteResult.schema.js b/packages/db/shared/schemas/results/LabRxTemplateDeleteResult.schema.js new file mode 100644 index 00000000..6ed6016b --- /dev/null +++ b/packages/db/shared/schemas/results/LabRxTemplateDeleteResult.schema.js @@ -0,0 +1,54 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateDeleteResultSchema = void 0; +const z = __importStar(require("zod")); +exports.LabRxTemplateDeleteResultSchema = z.nullable(z.object({ + id: z.number().int(), + userId: z.number().int(), + name: z.string(), + labName: z.string().optional(), + labPhone: z.string().optional(), + labFax: z.string().optional(), + labAddress: z.string().optional(), + labAccount: z.string().optional(), + caseType: z.string().optional(), + material: z.string().optional(), + instructions: z.string().optional(), + sortOrder: z.number().int(), + createdAt: z.date(), + updatedAt: z.date(), + user: z.unknown() +})); diff --git a/packages/db/shared/schemas/results/LabRxTemplateFindFirstResult.schema.js b/packages/db/shared/schemas/results/LabRxTemplateFindFirstResult.schema.js new file mode 100644 index 00000000..4679c5ef --- /dev/null +++ b/packages/db/shared/schemas/results/LabRxTemplateFindFirstResult.schema.js @@ -0,0 +1,54 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateFindFirstResultSchema = void 0; +const z = __importStar(require("zod")); +exports.LabRxTemplateFindFirstResultSchema = z.nullable(z.object({ + id: z.number().int(), + userId: z.number().int(), + name: z.string(), + labName: z.string().optional(), + labPhone: z.string().optional(), + labFax: z.string().optional(), + labAddress: z.string().optional(), + labAccount: z.string().optional(), + caseType: z.string().optional(), + material: z.string().optional(), + instructions: z.string().optional(), + sortOrder: z.number().int(), + createdAt: z.date(), + updatedAt: z.date(), + user: z.unknown() +})); diff --git a/packages/db/shared/schemas/results/LabRxTemplateFindManyResult.schema.js b/packages/db/shared/schemas/results/LabRxTemplateFindManyResult.schema.js new file mode 100644 index 00000000..07ce9664 --- /dev/null +++ b/packages/db/shared/schemas/results/LabRxTemplateFindManyResult.schema.js @@ -0,0 +1,64 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateFindManyResultSchema = void 0; +const z = __importStar(require("zod")); +exports.LabRxTemplateFindManyResultSchema = z.object({ + data: z.array(z.object({ + id: z.number().int(), + userId: z.number().int(), + name: z.string(), + labName: z.string().optional(), + labPhone: z.string().optional(), + labFax: z.string().optional(), + labAddress: z.string().optional(), + labAccount: z.string().optional(), + caseType: z.string().optional(), + material: z.string().optional(), + instructions: z.string().optional(), + sortOrder: z.number().int(), + createdAt: z.date(), + updatedAt: z.date(), + user: z.unknown() + })), + pagination: z.object({ + page: z.number().int().min(1), + pageSize: z.number().int().min(1), + total: z.number().int().min(0), + totalPages: z.number().int().min(0), + hasNext: z.boolean(), + hasPrev: z.boolean() + }) +}); diff --git a/packages/db/shared/schemas/results/LabRxTemplateFindUniqueResult.schema.js b/packages/db/shared/schemas/results/LabRxTemplateFindUniqueResult.schema.js new file mode 100644 index 00000000..aa593b9d --- /dev/null +++ b/packages/db/shared/schemas/results/LabRxTemplateFindUniqueResult.schema.js @@ -0,0 +1,54 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateFindUniqueResultSchema = void 0; +const z = __importStar(require("zod")); +exports.LabRxTemplateFindUniqueResultSchema = z.nullable(z.object({ + id: z.number().int(), + userId: z.number().int(), + name: z.string(), + labName: z.string().optional(), + labPhone: z.string().optional(), + labFax: z.string().optional(), + labAddress: z.string().optional(), + labAccount: z.string().optional(), + caseType: z.string().optional(), + material: z.string().optional(), + instructions: z.string().optional(), + sortOrder: z.number().int(), + createdAt: z.date(), + updatedAt: z.date(), + user: z.unknown() +})); diff --git a/packages/db/shared/schemas/results/LabRxTemplateGroupByResult.schema.js b/packages/db/shared/schemas/results/LabRxTemplateGroupByResult.schema.js new file mode 100644 index 00000000..e6cbdb52 --- /dev/null +++ b/packages/db/shared/schemas/results/LabRxTemplateGroupByResult.schema.js @@ -0,0 +1,112 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateGroupByResultSchema = void 0; +const z = __importStar(require("zod")); +exports.LabRxTemplateGroupByResultSchema = z.array(z.object({ + id: z.number().int(), + userId: z.number().int(), + name: z.string(), + labName: z.string(), + labPhone: z.string(), + labFax: z.string(), + labAddress: z.string(), + labAccount: z.string(), + caseType: z.string(), + material: z.string(), + instructions: z.string(), + sortOrder: z.number().int(), + createdAt: z.date(), + updatedAt: z.date(), + _count: z.object({ + id: z.number(), + userId: z.number(), + name: z.number(), + labName: z.number(), + labPhone: z.number(), + labFax: z.number(), + labAddress: z.number(), + labAccount: z.number(), + caseType: z.number(), + material: z.number(), + instructions: z.number(), + sortOrder: z.number(), + createdAt: z.number(), + updatedAt: z.number(), + user: z.number() + }).optional(), + _sum: z.object({ + id: z.number().nullable(), + userId: z.number().nullable(), + sortOrder: z.number().nullable() + }).nullable().optional(), + _avg: z.object({ + id: z.number().nullable(), + userId: z.number().nullable(), + sortOrder: z.number().nullable() + }).nullable().optional(), + _min: z.object({ + id: z.number().int().nullable(), + userId: z.number().int().nullable(), + name: z.string().nullable(), + labName: z.string().nullable(), + labPhone: z.string().nullable(), + labFax: z.string().nullable(), + labAddress: z.string().nullable(), + labAccount: z.string().nullable(), + caseType: z.string().nullable(), + material: z.string().nullable(), + instructions: z.string().nullable(), + sortOrder: z.number().int().nullable(), + createdAt: z.date().nullable(), + updatedAt: z.date().nullable() + }).nullable().optional(), + _max: z.object({ + id: z.number().int().nullable(), + userId: z.number().int().nullable(), + name: z.string().nullable(), + labName: z.string().nullable(), + labPhone: z.string().nullable(), + labFax: z.string().nullable(), + labAddress: z.string().nullable(), + labAccount: z.string().nullable(), + caseType: z.string().nullable(), + material: z.string().nullable(), + instructions: z.string().nullable(), + sortOrder: z.number().int().nullable(), + createdAt: z.date().nullable(), + updatedAt: z.date().nullable() + }).nullable().optional() +})); diff --git a/packages/db/shared/schemas/results/LabRxTemplateUpdateManyResult.schema.js b/packages/db/shared/schemas/results/LabRxTemplateUpdateManyResult.schema.js new file mode 100644 index 00000000..6338836c --- /dev/null +++ b/packages/db/shared/schemas/results/LabRxTemplateUpdateManyResult.schema.js @@ -0,0 +1,40 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateUpdateManyResultSchema = void 0; +const z = __importStar(require("zod")); +exports.LabRxTemplateUpdateManyResultSchema = z.object({ + count: z.number() +}); diff --git a/packages/db/shared/schemas/results/LabRxTemplateUpdateResult.schema.js b/packages/db/shared/schemas/results/LabRxTemplateUpdateResult.schema.js new file mode 100644 index 00000000..0588b3ca --- /dev/null +++ b/packages/db/shared/schemas/results/LabRxTemplateUpdateResult.schema.js @@ -0,0 +1,54 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateUpdateResultSchema = void 0; +const z = __importStar(require("zod")); +exports.LabRxTemplateUpdateResultSchema = z.nullable(z.object({ + id: z.number().int(), + userId: z.number().int(), + name: z.string(), + labName: z.string().optional(), + labPhone: z.string().optional(), + labFax: z.string().optional(), + labAddress: z.string().optional(), + labAccount: z.string().optional(), + caseType: z.string().optional(), + material: z.string().optional(), + instructions: z.string().optional(), + sortOrder: z.number().int(), + createdAt: z.date(), + updatedAt: z.date(), + user: z.unknown() +})); diff --git a/packages/db/shared/schemas/results/LabRxTemplateUpsertResult.schema.js b/packages/db/shared/schemas/results/LabRxTemplateUpsertResult.schema.js new file mode 100644 index 00000000..81b60971 --- /dev/null +++ b/packages/db/shared/schemas/results/LabRxTemplateUpsertResult.schema.js @@ -0,0 +1,54 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateUpsertResultSchema = void 0; +const z = __importStar(require("zod")); +exports.LabRxTemplateUpsertResultSchema = z.object({ + id: z.number().int(), + userId: z.number().int(), + name: z.string(), + labName: z.string().optional(), + labPhone: z.string().optional(), + labFax: z.string().optional(), + labAddress: z.string().optional(), + labAccount: z.string().optional(), + caseType: z.string().optional(), + material: z.string().optional(), + instructions: z.string().optional(), + sortOrder: z.number().int(), + createdAt: z.date(), + updatedAt: z.date(), + user: z.unknown() +}); diff --git a/packages/db/shared/schemas/results/NotificationAggregateResult.schema.d.ts b/packages/db/shared/schemas/results/NotificationAggregateResult.schema.d.ts index eae46cd0..02cb25bf 100644 --- a/packages/db/shared/schemas/results/NotificationAggregateResult.schema.d.ts +++ b/packages/db/shared/schemas/results/NotificationAggregateResult.schema.d.ts @@ -13,16 +13,16 @@ export declare const NotificationAggregateResultSchema: z.ZodObject<{ type: number; id: number; createdAt: number; - user: number; userId: number; + user: number; read: number; }, { message: number; type: number; id: number; createdAt: number; - user: number; userId: number; + user: number; read: number; }>>; _sum: z.ZodOptional>; _sum: z.ZodOptional>; _sum: z.ZodOptional; userId: z.ZodNullable; + sortOrder: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; userId: number | null; + sortOrder: number | null; }, { id: number | null; userId: number | null; + sortOrder: number | null; }>>>; _avg: z.ZodOptional; userId: z.ZodNullable; + sortOrder: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; userId: number | null; + sortOrder: number | null; }, { id: number | null; userId: number | null; + sortOrder: number | null; }>>>; _min: z.ZodOptional; userId: z.ZodNullable; npiNumber: z.ZodNullable; providerName: z.ZodNullable; + sortOrder: z.ZodNullable; createdAt: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; @@ -60,18 +79,21 @@ export declare const NpiProviderAggregateResultSchema: z.ZodObject<{ userId: number | null; npiNumber: string | null; providerName: string | null; + sortOrder: number | null; }, { id: number | null; createdAt: Date | null; userId: number | null; npiNumber: string | null; providerName: string | null; + sortOrder: number | null; }>>>; _max: z.ZodOptional; userId: z.ZodNullable; npiNumber: z.ZodNullable; providerName: z.ZodNullable; + sortOrder: z.ZodNullable; createdAt: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; @@ -79,23 +101,29 @@ export declare const NpiProviderAggregateResultSchema: z.ZodObject<{ userId: number | null; npiNumber: string | null; providerName: string | null; + sortOrder: number | null; }, { id: number | null; createdAt: Date | null; userId: number | null; npiNumber: string | null; providerName: string | null; + sortOrder: number | null; }>>>; }, "strip", z.ZodTypeAny, { _count?: { id: number; createdAt: number; - user: number; userId: number; + user: number; + appointments: number; claims: number; npiNumber: number; providerName: number; + sortOrder: number; + payments: number; appointmentProcedures: number; + commissionBatches: number; } | undefined; _min?: { id: number | null; @@ -103,6 +131,7 @@ export declare const NpiProviderAggregateResultSchema: z.ZodObject<{ userId: number | null; npiNumber: string | null; providerName: string | null; + sortOrder: number | null; } | null | undefined; _max?: { id: number | null; @@ -110,25 +139,32 @@ export declare const NpiProviderAggregateResultSchema: z.ZodObject<{ userId: number | null; npiNumber: string | null; providerName: string | null; + sortOrder: number | null; } | null | undefined; _avg?: { id: number | null; userId: number | null; + sortOrder: number | null; } | null | undefined; _sum?: { id: number | null; userId: number | null; + sortOrder: number | null; } | null | undefined; }, { _count?: { id: number; createdAt: number; - user: number; userId: number; + user: number; + appointments: number; claims: number; npiNumber: number; providerName: number; + sortOrder: number; + payments: number; appointmentProcedures: number; + commissionBatches: number; } | undefined; _min?: { id: number | null; @@ -136,6 +172,7 @@ export declare const NpiProviderAggregateResultSchema: z.ZodObject<{ userId: number | null; npiNumber: string | null; providerName: string | null; + sortOrder: number | null; } | null | undefined; _max?: { id: number | null; @@ -143,14 +180,17 @@ export declare const NpiProviderAggregateResultSchema: z.ZodObject<{ userId: number | null; npiNumber: string | null; providerName: string | null; + sortOrder: number | null; } | null | undefined; _avg?: { id: number | null; userId: number | null; + sortOrder: number | null; } | null | undefined; _sum?: { id: number | null; userId: number | null; + sortOrder: number | null; } | null | undefined; }>; //# sourceMappingURL=NpiProviderAggregateResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/NpiProviderAggregateResult.schema.d.ts.map b/packages/db/shared/schemas/results/NpiProviderAggregateResult.schema.d.ts.map index 4a971c41..bf23b485 100644 --- a/packages/db/shared/schemas/results/NpiProviderAggregateResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/NpiProviderAggregateResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"NpiProviderAggregateResult.schema.d.ts","sourceRoot":"","sources":["NpiProviderAggregateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA+BjB,CAAC"} \ No newline at end of file +{"version":3,"file":"NpiProviderAggregateResult.schema.d.ts","sourceRoot":"","sources":["NpiProviderAggregateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAuCjB,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/NpiProviderAggregateResult.schema.js b/packages/db/shared/schemas/results/NpiProviderAggregateResult.schema.js index 9971df1a..7439492c 100644 --- a/packages/db/shared/schemas/results/NpiProviderAggregateResult.schema.js +++ b/packages/db/shared/schemas/results/NpiProviderAggregateResult.schema.js @@ -46,7 +46,8 @@ exports.NpiProviderAggregateResultSchema = z.object({ _count: z.object({ claims: z.number(), payments: z.number(), commissionBatches: z.number(), - appointmentProcedures: z.number() + appointmentProcedures: z.number(), + appointments: z.number() }).optional(), _sum: z.object({ id: z.number().nullable(), diff --git a/packages/db/shared/schemas/results/NpiProviderAggregateResult.schema.ts b/packages/db/shared/schemas/results/NpiProviderAggregateResult.schema.ts index c48dd5f5..b6af8493 100644 --- a/packages/db/shared/schemas/results/NpiProviderAggregateResult.schema.ts +++ b/packages/db/shared/schemas/results/NpiProviderAggregateResult.schema.ts @@ -10,7 +10,8 @@ export const NpiProviderAggregateResultSchema = z.object({ _count: z.object({ claims: z.number(), payments: z.number(), commissionBatches: z.number(), - appointmentProcedures: z.number() + appointmentProcedures: z.number(), + appointments: z.number() }).optional(), _sum: z.object({ id: z.number().nullable(), diff --git a/packages/db/shared/schemas/results/NpiProviderCreateResult.schema.d.ts b/packages/db/shared/schemas/results/NpiProviderCreateResult.schema.d.ts index 14046a31..7543d536 100644 --- a/packages/db/shared/schemas/results/NpiProviderCreateResult.schema.d.ts +++ b/packages/db/shared/schemas/results/NpiProviderCreateResult.schema.d.ts @@ -4,27 +4,39 @@ export declare const NpiProviderCreateResultSchema: z.ZodObject<{ userId: z.ZodNumber; npiNumber: z.ZodString; providerName: z.ZodString; + sortOrder: z.ZodNumber; createdAt: z.ZodDate; user: z.ZodUnknown; claims: z.ZodArray; + payments: z.ZodArray; + commissionBatches: z.ZodArray; appointmentProcedures: z.ZodArray; + appointments: z.ZodArray; }, "strip", z.ZodTypeAny, { id: number; createdAt: Date; userId: number; + appointments: unknown[]; claims: unknown[]; npiNumber: string; providerName: string; + sortOrder: number; + payments: unknown[]; appointmentProcedures: unknown[]; + commissionBatches: unknown[]; user?: unknown; }, { id: number; createdAt: Date; userId: number; + appointments: unknown[]; claims: unknown[]; npiNumber: string; providerName: string; + sortOrder: number; + payments: unknown[]; appointmentProcedures: unknown[]; + commissionBatches: unknown[]; user?: unknown; }>; //# sourceMappingURL=NpiProviderCreateResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/NpiProviderCreateResult.schema.d.ts.map b/packages/db/shared/schemas/results/NpiProviderCreateResult.schema.d.ts.map index 25909170..ed01b374 100644 --- a/packages/db/shared/schemas/results/NpiProviderCreateResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/NpiProviderCreateResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"NpiProviderCreateResult.schema.d.ts","sourceRoot":"","sources":["NpiProviderCreateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;EASxC,CAAC"} \ No newline at end of file +{"version":3,"file":"NpiProviderCreateResult.schema.d.ts","sourceRoot":"","sources":["NpiProviderCreateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAaxC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/NpiProviderCreateResult.schema.js b/packages/db/shared/schemas/results/NpiProviderCreateResult.schema.js index 96d396e2..66b10722 100644 --- a/packages/db/shared/schemas/results/NpiProviderCreateResult.schema.js +++ b/packages/db/shared/schemas/results/NpiProviderCreateResult.schema.js @@ -46,5 +46,6 @@ exports.NpiProviderCreateResultSchema = z.object({ claims: z.array(z.unknown()), payments: z.array(z.unknown()), commissionBatches: z.array(z.unknown()), - appointmentProcedures: z.array(z.unknown()) + appointmentProcedures: z.array(z.unknown()), + appointments: z.array(z.unknown()) }); diff --git a/packages/db/shared/schemas/results/NpiProviderCreateResult.schema.ts b/packages/db/shared/schemas/results/NpiProviderCreateResult.schema.ts index d3f3868a..1392e4ff 100644 --- a/packages/db/shared/schemas/results/NpiProviderCreateResult.schema.ts +++ b/packages/db/shared/schemas/results/NpiProviderCreateResult.schema.ts @@ -10,5 +10,6 @@ export const NpiProviderCreateResultSchema = z.object({ claims: z.array(z.unknown()), payments: z.array(z.unknown()), commissionBatches: z.array(z.unknown()), - appointmentProcedures: z.array(z.unknown()) + appointmentProcedures: z.array(z.unknown()), + appointments: z.array(z.unknown()) }); \ No newline at end of file diff --git a/packages/db/shared/schemas/results/NpiProviderDeleteResult.schema.d.ts b/packages/db/shared/schemas/results/NpiProviderDeleteResult.schema.d.ts index e7ec2a78..e13bdf26 100644 --- a/packages/db/shared/schemas/results/NpiProviderDeleteResult.schema.d.ts +++ b/packages/db/shared/schemas/results/NpiProviderDeleteResult.schema.d.ts @@ -4,27 +4,39 @@ export declare const NpiProviderDeleteResultSchema: z.ZodNullable; + payments: z.ZodArray; + commissionBatches: z.ZodArray; appointmentProcedures: z.ZodArray; + appointments: z.ZodArray; }, "strip", z.ZodTypeAny, { id: number; createdAt: Date; userId: number; + appointments: unknown[]; claims: unknown[]; npiNumber: string; providerName: string; + sortOrder: number; + payments: unknown[]; appointmentProcedures: unknown[]; + commissionBatches: unknown[]; user?: unknown; }, { id: number; createdAt: Date; userId: number; + appointments: unknown[]; claims: unknown[]; npiNumber: string; providerName: string; + sortOrder: number; + payments: unknown[]; appointmentProcedures: unknown[]; + commissionBatches: unknown[]; user?: unknown; }>>; //# sourceMappingURL=NpiProviderDeleteResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/NpiProviderDeleteResult.schema.d.ts.map b/packages/db/shared/schemas/results/NpiProviderDeleteResult.schema.d.ts.map index e1e39a91..9384346c 100644 --- a/packages/db/shared/schemas/results/NpiProviderDeleteResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/NpiProviderDeleteResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"NpiProviderDeleteResult.schema.d.ts","sourceRoot":"","sources":["NpiProviderDeleteResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;GASvC,CAAC"} \ No newline at end of file +{"version":3,"file":"NpiProviderDeleteResult.schema.d.ts","sourceRoot":"","sources":["NpiProviderDeleteResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAavC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/NpiProviderDeleteResult.schema.js b/packages/db/shared/schemas/results/NpiProviderDeleteResult.schema.js index b8be2c30..feb2dd53 100644 --- a/packages/db/shared/schemas/results/NpiProviderDeleteResult.schema.js +++ b/packages/db/shared/schemas/results/NpiProviderDeleteResult.schema.js @@ -46,5 +46,6 @@ exports.NpiProviderDeleteResultSchema = z.nullable(z.object({ claims: z.array(z.unknown()), payments: z.array(z.unknown()), commissionBatches: z.array(z.unknown()), - appointmentProcedures: z.array(z.unknown()) + appointmentProcedures: z.array(z.unknown()), + appointments: z.array(z.unknown()) })); diff --git a/packages/db/shared/schemas/results/NpiProviderDeleteResult.schema.ts b/packages/db/shared/schemas/results/NpiProviderDeleteResult.schema.ts index e4c282ca..686d91ee 100644 --- a/packages/db/shared/schemas/results/NpiProviderDeleteResult.schema.ts +++ b/packages/db/shared/schemas/results/NpiProviderDeleteResult.schema.ts @@ -10,5 +10,6 @@ export const NpiProviderDeleteResultSchema = z.nullable(z.object({ claims: z.array(z.unknown()), payments: z.array(z.unknown()), commissionBatches: z.array(z.unknown()), - appointmentProcedures: z.array(z.unknown()) + appointmentProcedures: z.array(z.unknown()), + appointments: z.array(z.unknown()) })); \ No newline at end of file diff --git a/packages/db/shared/schemas/results/NpiProviderFindFirstResult.schema.d.ts b/packages/db/shared/schemas/results/NpiProviderFindFirstResult.schema.d.ts index 25955240..8f9ed5ab 100644 --- a/packages/db/shared/schemas/results/NpiProviderFindFirstResult.schema.d.ts +++ b/packages/db/shared/schemas/results/NpiProviderFindFirstResult.schema.d.ts @@ -4,27 +4,39 @@ export declare const NpiProviderFindFirstResultSchema: z.ZodNullable; + payments: z.ZodArray; + commissionBatches: z.ZodArray; appointmentProcedures: z.ZodArray; + appointments: z.ZodArray; }, "strip", z.ZodTypeAny, { id: number; createdAt: Date; userId: number; + appointments: unknown[]; claims: unknown[]; npiNumber: string; providerName: string; + sortOrder: number; + payments: unknown[]; appointmentProcedures: unknown[]; + commissionBatches: unknown[]; user?: unknown; }, { id: number; createdAt: Date; userId: number; + appointments: unknown[]; claims: unknown[]; npiNumber: string; providerName: string; + sortOrder: number; + payments: unknown[]; appointmentProcedures: unknown[]; + commissionBatches: unknown[]; user?: unknown; }>>; //# sourceMappingURL=NpiProviderFindFirstResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/NpiProviderFindFirstResult.schema.d.ts.map b/packages/db/shared/schemas/results/NpiProviderFindFirstResult.schema.d.ts.map index 2cfd42a9..50cbfd61 100644 --- a/packages/db/shared/schemas/results/NpiProviderFindFirstResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/NpiProviderFindFirstResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"NpiProviderFindFirstResult.schema.d.ts","sourceRoot":"","sources":["NpiProviderFindFirstResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;GAS1C,CAAC"} \ No newline at end of file +{"version":3,"file":"NpiProviderFindFirstResult.schema.d.ts","sourceRoot":"","sources":["NpiProviderFindFirstResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAa1C,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/NpiProviderFindFirstResult.schema.js b/packages/db/shared/schemas/results/NpiProviderFindFirstResult.schema.js index 2d8d81c3..ce92972f 100644 --- a/packages/db/shared/schemas/results/NpiProviderFindFirstResult.schema.js +++ b/packages/db/shared/schemas/results/NpiProviderFindFirstResult.schema.js @@ -46,5 +46,6 @@ exports.NpiProviderFindFirstResultSchema = z.nullable(z.object({ claims: z.array(z.unknown()), payments: z.array(z.unknown()), commissionBatches: z.array(z.unknown()), - appointmentProcedures: z.array(z.unknown()) + appointmentProcedures: z.array(z.unknown()), + appointments: z.array(z.unknown()) })); diff --git a/packages/db/shared/schemas/results/NpiProviderFindFirstResult.schema.ts b/packages/db/shared/schemas/results/NpiProviderFindFirstResult.schema.ts index 0b47375b..1c77d3c3 100644 --- a/packages/db/shared/schemas/results/NpiProviderFindFirstResult.schema.ts +++ b/packages/db/shared/schemas/results/NpiProviderFindFirstResult.schema.ts @@ -10,5 +10,6 @@ export const NpiProviderFindFirstResultSchema = z.nullable(z.object({ claims: z.array(z.unknown()), payments: z.array(z.unknown()), commissionBatches: z.array(z.unknown()), - appointmentProcedures: z.array(z.unknown()) + appointmentProcedures: z.array(z.unknown()), + appointments: z.array(z.unknown()) })); \ No newline at end of file diff --git a/packages/db/shared/schemas/results/NpiProviderFindManyResult.schema.d.ts b/packages/db/shared/schemas/results/NpiProviderFindManyResult.schema.d.ts index 199a2dc3..f33fe02a 100644 --- a/packages/db/shared/schemas/results/NpiProviderFindManyResult.schema.d.ts +++ b/packages/db/shared/schemas/results/NpiProviderFindManyResult.schema.d.ts @@ -5,27 +5,39 @@ export declare const NpiProviderFindManyResultSchema: z.ZodObject<{ userId: z.ZodNumber; npiNumber: z.ZodString; providerName: z.ZodString; + sortOrder: z.ZodNumber; createdAt: z.ZodDate; user: z.ZodUnknown; claims: z.ZodArray; + payments: z.ZodArray; + commissionBatches: z.ZodArray; appointmentProcedures: z.ZodArray; + appointments: z.ZodArray; }, "strip", z.ZodTypeAny, { id: number; createdAt: Date; userId: number; + appointments: unknown[]; claims: unknown[]; npiNumber: string; providerName: string; + sortOrder: number; + payments: unknown[]; appointmentProcedures: unknown[]; + commissionBatches: unknown[]; user?: unknown; }, { id: number; createdAt: Date; userId: number; + appointments: unknown[]; claims: unknown[]; npiNumber: string; providerName: string; + sortOrder: number; + payments: unknown[]; appointmentProcedures: unknown[]; + commissionBatches: unknown[]; user?: unknown; }>, "many">; pagination: z.ZodObject<{ @@ -55,10 +67,14 @@ export declare const NpiProviderFindManyResultSchema: z.ZodObject<{ id: number; createdAt: Date; userId: number; + appointments: unknown[]; claims: unknown[]; npiNumber: string; providerName: string; + sortOrder: number; + payments: unknown[]; appointmentProcedures: unknown[]; + commissionBatches: unknown[]; user?: unknown; }[]; pagination: { @@ -74,10 +90,14 @@ export declare const NpiProviderFindManyResultSchema: z.ZodObject<{ id: number; createdAt: Date; userId: number; + appointments: unknown[]; claims: unknown[]; npiNumber: string; providerName: string; + sortOrder: number; + payments: unknown[]; appointmentProcedures: unknown[]; + commissionBatches: unknown[]; user?: unknown; }[]; pagination: { diff --git a/packages/db/shared/schemas/results/NpiProviderFindManyResult.schema.d.ts.map b/packages/db/shared/schemas/results/NpiProviderFindManyResult.schema.d.ts.map index bf3aed2d..1ef77312 100644 --- a/packages/db/shared/schemas/results/NpiProviderFindManyResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/NpiProviderFindManyResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"NpiProviderFindManyResult.schema.d.ts","sourceRoot":"","sources":["NpiProviderFindManyResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmB1C,CAAC"} \ No newline at end of file +{"version":3,"file":"NpiProviderFindManyResult.schema.d.ts","sourceRoot":"","sources":["NpiProviderFindManyResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAuB1C,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/NpiProviderFindManyResult.schema.js b/packages/db/shared/schemas/results/NpiProviderFindManyResult.schema.js index 8d97c883..a9752ade 100644 --- a/packages/db/shared/schemas/results/NpiProviderFindManyResult.schema.js +++ b/packages/db/shared/schemas/results/NpiProviderFindManyResult.schema.js @@ -47,7 +47,8 @@ exports.NpiProviderFindManyResultSchema = z.object({ claims: z.array(z.unknown()), payments: z.array(z.unknown()), commissionBatches: z.array(z.unknown()), - appointmentProcedures: z.array(z.unknown()) + appointmentProcedures: z.array(z.unknown()), + appointments: z.array(z.unknown()) })), pagination: z.object({ page: z.number().int().min(1), diff --git a/packages/db/shared/schemas/results/NpiProviderFindManyResult.schema.ts b/packages/db/shared/schemas/results/NpiProviderFindManyResult.schema.ts index 7f0ec529..3d14d6c4 100644 --- a/packages/db/shared/schemas/results/NpiProviderFindManyResult.schema.ts +++ b/packages/db/shared/schemas/results/NpiProviderFindManyResult.schema.ts @@ -11,7 +11,8 @@ export const NpiProviderFindManyResultSchema = z.object({ claims: z.array(z.unknown()), payments: z.array(z.unknown()), commissionBatches: z.array(z.unknown()), - appointmentProcedures: z.array(z.unknown()) + appointmentProcedures: z.array(z.unknown()), + appointments: z.array(z.unknown()) })), pagination: z.object({ page: z.number().int().min(1), diff --git a/packages/db/shared/schemas/results/NpiProviderFindUniqueResult.schema.d.ts b/packages/db/shared/schemas/results/NpiProviderFindUniqueResult.schema.d.ts index c8217128..f72ed9c3 100644 --- a/packages/db/shared/schemas/results/NpiProviderFindUniqueResult.schema.d.ts +++ b/packages/db/shared/schemas/results/NpiProviderFindUniqueResult.schema.d.ts @@ -4,27 +4,39 @@ export declare const NpiProviderFindUniqueResultSchema: z.ZodNullable; + payments: z.ZodArray; + commissionBatches: z.ZodArray; appointmentProcedures: z.ZodArray; + appointments: z.ZodArray; }, "strip", z.ZodTypeAny, { id: number; createdAt: Date; userId: number; + appointments: unknown[]; claims: unknown[]; npiNumber: string; providerName: string; + sortOrder: number; + payments: unknown[]; appointmentProcedures: unknown[]; + commissionBatches: unknown[]; user?: unknown; }, { id: number; createdAt: Date; userId: number; + appointments: unknown[]; claims: unknown[]; npiNumber: string; providerName: string; + sortOrder: number; + payments: unknown[]; appointmentProcedures: unknown[]; + commissionBatches: unknown[]; user?: unknown; }>>; //# sourceMappingURL=NpiProviderFindUniqueResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/NpiProviderFindUniqueResult.schema.d.ts.map b/packages/db/shared/schemas/results/NpiProviderFindUniqueResult.schema.d.ts.map index dceb128e..9bfbe0f6 100644 --- a/packages/db/shared/schemas/results/NpiProviderFindUniqueResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/NpiProviderFindUniqueResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"NpiProviderFindUniqueResult.schema.d.ts","sourceRoot":"","sources":["NpiProviderFindUniqueResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;GAS3C,CAAC"} \ No newline at end of file +{"version":3,"file":"NpiProviderFindUniqueResult.schema.d.ts","sourceRoot":"","sources":["NpiProviderFindUniqueResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAa3C,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/NpiProviderFindUniqueResult.schema.js b/packages/db/shared/schemas/results/NpiProviderFindUniqueResult.schema.js index 0a458a99..725322de 100644 --- a/packages/db/shared/schemas/results/NpiProviderFindUniqueResult.schema.js +++ b/packages/db/shared/schemas/results/NpiProviderFindUniqueResult.schema.js @@ -46,5 +46,6 @@ exports.NpiProviderFindUniqueResultSchema = z.nullable(z.object({ claims: z.array(z.unknown()), payments: z.array(z.unknown()), commissionBatches: z.array(z.unknown()), - appointmentProcedures: z.array(z.unknown()) + appointmentProcedures: z.array(z.unknown()), + appointments: z.array(z.unknown()) })); diff --git a/packages/db/shared/schemas/results/NpiProviderFindUniqueResult.schema.ts b/packages/db/shared/schemas/results/NpiProviderFindUniqueResult.schema.ts index f909a629..fd33ba77 100644 --- a/packages/db/shared/schemas/results/NpiProviderFindUniqueResult.schema.ts +++ b/packages/db/shared/schemas/results/NpiProviderFindUniqueResult.schema.ts @@ -10,5 +10,6 @@ export const NpiProviderFindUniqueResultSchema = z.nullable(z.object({ claims: z.array(z.unknown()), payments: z.array(z.unknown()), commissionBatches: z.array(z.unknown()), - appointmentProcedures: z.array(z.unknown()) + appointmentProcedures: z.array(z.unknown()), + appointments: z.array(z.unknown()) })); \ No newline at end of file diff --git a/packages/db/shared/schemas/results/NpiProviderGroupByResult.schema.d.ts b/packages/db/shared/schemas/results/NpiProviderGroupByResult.schema.d.ts index b1f2572c..bfa3cc74 100644 --- a/packages/db/shared/schemas/results/NpiProviderGroupByResult.schema.d.ts +++ b/packages/db/shared/schemas/results/NpiProviderGroupByResult.schema.d.ts @@ -4,60 +4,80 @@ export declare const NpiProviderGroupByResultSchema: z.ZodArray>; _sum: z.ZodOptional; userId: z.ZodNullable; + sortOrder: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; userId: number | null; + sortOrder: number | null; }, { id: number | null; userId: number | null; + sortOrder: number | null; }>>>; _avg: z.ZodOptional; userId: z.ZodNullable; + sortOrder: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; userId: number | null; + sortOrder: number | null; }, { id: number | null; userId: number | null; + sortOrder: number | null; }>>>; _min: z.ZodOptional; userId: z.ZodNullable; npiNumber: z.ZodNullable; providerName: z.ZodNullable; + sortOrder: z.ZodNullable; createdAt: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; @@ -65,18 +85,21 @@ export declare const NpiProviderGroupByResultSchema: z.ZodArray>>; _max: z.ZodOptional; userId: z.ZodNullable; npiNumber: z.ZodNullable; providerName: z.ZodNullable; + sortOrder: z.ZodNullable; createdAt: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; @@ -84,12 +107,14 @@ export declare const NpiProviderGroupByResultSchema: z.ZodArray>>; }, "strip", z.ZodTypeAny, { id: number; @@ -97,15 +122,20 @@ export declare const NpiProviderGroupByResultSchema: z.ZodArray, "many">; //# sourceMappingURL=NpiProviderGroupByResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/NpiProviderGroupByResult.schema.d.ts.map b/packages/db/shared/schemas/results/NpiProviderGroupByResult.schema.d.ts.map index a52d806c..3b364fca 100644 --- a/packages/db/shared/schemas/results/NpiProviderGroupByResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/NpiProviderGroupByResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"NpiProviderGroupByResult.schema.d.ts","sourceRoot":"","sources":["NpiProviderGroupByResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAsCxC,CAAC"} \ No newline at end of file +{"version":3,"file":"NpiProviderGroupByResult.schema.d.ts","sourceRoot":"","sources":["NpiProviderGroupByResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WA+CxC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/NpiProviderGroupByResult.schema.js b/packages/db/shared/schemas/results/NpiProviderGroupByResult.schema.js index 88d1d008..cdeaa8d1 100644 --- a/packages/db/shared/schemas/results/NpiProviderGroupByResult.schema.js +++ b/packages/db/shared/schemas/results/NpiProviderGroupByResult.schema.js @@ -53,7 +53,8 @@ exports.NpiProviderGroupByResultSchema = z.array(z.object({ claims: z.number(), payments: z.number(), commissionBatches: z.number(), - appointmentProcedures: z.number() + appointmentProcedures: z.number(), + appointments: z.number() }).optional(), _sum: z.object({ id: z.number().nullable(), diff --git a/packages/db/shared/schemas/results/NpiProviderGroupByResult.schema.ts b/packages/db/shared/schemas/results/NpiProviderGroupByResult.schema.ts index cbc16e9d..7c6ffb63 100644 --- a/packages/db/shared/schemas/results/NpiProviderGroupByResult.schema.ts +++ b/packages/db/shared/schemas/results/NpiProviderGroupByResult.schema.ts @@ -17,7 +17,8 @@ export const NpiProviderGroupByResultSchema = z.array(z.object({ claims: z.number(), payments: z.number(), commissionBatches: z.number(), - appointmentProcedures: z.number() + appointmentProcedures: z.number(), + appointments: z.number() }).optional(), _sum: z.object({ id: z.number().nullable(), diff --git a/packages/db/shared/schemas/results/NpiProviderUpdateResult.schema.d.ts b/packages/db/shared/schemas/results/NpiProviderUpdateResult.schema.d.ts index 2c25c130..6eb4b7c8 100644 --- a/packages/db/shared/schemas/results/NpiProviderUpdateResult.schema.d.ts +++ b/packages/db/shared/schemas/results/NpiProviderUpdateResult.schema.d.ts @@ -4,27 +4,39 @@ export declare const NpiProviderUpdateResultSchema: z.ZodNullable; + payments: z.ZodArray; + commissionBatches: z.ZodArray; appointmentProcedures: z.ZodArray; + appointments: z.ZodArray; }, "strip", z.ZodTypeAny, { id: number; createdAt: Date; userId: number; + appointments: unknown[]; claims: unknown[]; npiNumber: string; providerName: string; + sortOrder: number; + payments: unknown[]; appointmentProcedures: unknown[]; + commissionBatches: unknown[]; user?: unknown; }, { id: number; createdAt: Date; userId: number; + appointments: unknown[]; claims: unknown[]; npiNumber: string; providerName: string; + sortOrder: number; + payments: unknown[]; appointmentProcedures: unknown[]; + commissionBatches: unknown[]; user?: unknown; }>>; //# sourceMappingURL=NpiProviderUpdateResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/NpiProviderUpdateResult.schema.d.ts.map b/packages/db/shared/schemas/results/NpiProviderUpdateResult.schema.d.ts.map index 23309d96..202cb9a3 100644 --- a/packages/db/shared/schemas/results/NpiProviderUpdateResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/NpiProviderUpdateResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"NpiProviderUpdateResult.schema.d.ts","sourceRoot":"","sources":["NpiProviderUpdateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;GASvC,CAAC"} \ No newline at end of file +{"version":3,"file":"NpiProviderUpdateResult.schema.d.ts","sourceRoot":"","sources":["NpiProviderUpdateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAavC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/NpiProviderUpdateResult.schema.js b/packages/db/shared/schemas/results/NpiProviderUpdateResult.schema.js index 4c31a9ef..cce5ddc6 100644 --- a/packages/db/shared/schemas/results/NpiProviderUpdateResult.schema.js +++ b/packages/db/shared/schemas/results/NpiProviderUpdateResult.schema.js @@ -46,5 +46,6 @@ exports.NpiProviderUpdateResultSchema = z.nullable(z.object({ claims: z.array(z.unknown()), payments: z.array(z.unknown()), commissionBatches: z.array(z.unknown()), - appointmentProcedures: z.array(z.unknown()) + appointmentProcedures: z.array(z.unknown()), + appointments: z.array(z.unknown()) })); diff --git a/packages/db/shared/schemas/results/NpiProviderUpdateResult.schema.ts b/packages/db/shared/schemas/results/NpiProviderUpdateResult.schema.ts index 978154fd..2f17ce5b 100644 --- a/packages/db/shared/schemas/results/NpiProviderUpdateResult.schema.ts +++ b/packages/db/shared/schemas/results/NpiProviderUpdateResult.schema.ts @@ -10,5 +10,6 @@ export const NpiProviderUpdateResultSchema = z.nullable(z.object({ claims: z.array(z.unknown()), payments: z.array(z.unknown()), commissionBatches: z.array(z.unknown()), - appointmentProcedures: z.array(z.unknown()) + appointmentProcedures: z.array(z.unknown()), + appointments: z.array(z.unknown()) })); \ No newline at end of file diff --git a/packages/db/shared/schemas/results/NpiProviderUpsertResult.schema.d.ts b/packages/db/shared/schemas/results/NpiProviderUpsertResult.schema.d.ts index c71ef300..f10facd7 100644 --- a/packages/db/shared/schemas/results/NpiProviderUpsertResult.schema.d.ts +++ b/packages/db/shared/schemas/results/NpiProviderUpsertResult.schema.d.ts @@ -4,27 +4,39 @@ export declare const NpiProviderUpsertResultSchema: z.ZodObject<{ userId: z.ZodNumber; npiNumber: z.ZodString; providerName: z.ZodString; + sortOrder: z.ZodNumber; createdAt: z.ZodDate; user: z.ZodUnknown; claims: z.ZodArray; + payments: z.ZodArray; + commissionBatches: z.ZodArray; appointmentProcedures: z.ZodArray; + appointments: z.ZodArray; }, "strip", z.ZodTypeAny, { id: number; createdAt: Date; userId: number; + appointments: unknown[]; claims: unknown[]; npiNumber: string; providerName: string; + sortOrder: number; + payments: unknown[]; appointmentProcedures: unknown[]; + commissionBatches: unknown[]; user?: unknown; }, { id: number; createdAt: Date; userId: number; + appointments: unknown[]; claims: unknown[]; npiNumber: string; providerName: string; + sortOrder: number; + payments: unknown[]; appointmentProcedures: unknown[]; + commissionBatches: unknown[]; user?: unknown; }>; //# sourceMappingURL=NpiProviderUpsertResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/NpiProviderUpsertResult.schema.d.ts.map b/packages/db/shared/schemas/results/NpiProviderUpsertResult.schema.d.ts.map index 6ba0256d..cea10859 100644 --- a/packages/db/shared/schemas/results/NpiProviderUpsertResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/NpiProviderUpsertResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"NpiProviderUpsertResult.schema.d.ts","sourceRoot":"","sources":["NpiProviderUpsertResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;EASxC,CAAC"} \ No newline at end of file +{"version":3,"file":"NpiProviderUpsertResult.schema.d.ts","sourceRoot":"","sources":["NpiProviderUpsertResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAaxC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/NpiProviderUpsertResult.schema.js b/packages/db/shared/schemas/results/NpiProviderUpsertResult.schema.js index a9e268bf..464375a0 100644 --- a/packages/db/shared/schemas/results/NpiProviderUpsertResult.schema.js +++ b/packages/db/shared/schemas/results/NpiProviderUpsertResult.schema.js @@ -46,5 +46,6 @@ exports.NpiProviderUpsertResultSchema = z.object({ claims: z.array(z.unknown()), payments: z.array(z.unknown()), commissionBatches: z.array(z.unknown()), - appointmentProcedures: z.array(z.unknown()) + appointmentProcedures: z.array(z.unknown()), + appointments: z.array(z.unknown()) }); diff --git a/packages/db/shared/schemas/results/NpiProviderUpsertResult.schema.ts b/packages/db/shared/schemas/results/NpiProviderUpsertResult.schema.ts index d396c25b..c5019602 100644 --- a/packages/db/shared/schemas/results/NpiProviderUpsertResult.schema.ts +++ b/packages/db/shared/schemas/results/NpiProviderUpsertResult.schema.ts @@ -10,5 +10,6 @@ export const NpiProviderUpsertResultSchema = z.object({ claims: z.array(z.unknown()), payments: z.array(z.unknown()), commissionBatches: z.array(z.unknown()), - appointmentProcedures: z.array(z.unknown()) + appointmentProcedures: z.array(z.unknown()), + appointments: z.array(z.unknown()) }); \ No newline at end of file diff --git a/packages/db/shared/schemas/results/PatientAggregateResult.schema.d.ts b/packages/db/shared/schemas/results/PatientAggregateResult.schema.d.ts index b860ac77..0df58dd9 100644 --- a/packages/db/shared/schemas/results/PatientAggregateResult.schema.d.ts +++ b/packages/db/shared/schemas/results/PatientAggregateResult.schema.d.ts @@ -17,9 +17,11 @@ export declare const PatientAggregateResultSchema: z.ZodObject<{ policyHolder: z.ZodNumber; allergies: z.ZodNumber; medicalConditions: z.ZodNumber; + preferredLanguage: z.ZodNumber; status: z.ZodNumber; userId: z.ZodNumber; createdAt: z.ZodNumber; + updatedAt: z.ZodNumber; user: z.ZodNumber; appointments: z.ZodNumber; procedures: z.ZodNumber; @@ -28,62 +30,72 @@ export declare const PatientAggregateResultSchema: z.ZodObject<{ payment: z.ZodNumber; communications: z.ZodNumber; documents: z.ZodNumber; + conversation: z.ZodNumber; + cloudFolders: z.ZodNumber; }, "strip", z.ZodTypeAny, { status: number; id: number; createdAt: number; - user: number; - procedures: number; userId: number; - claims: number; + user: number; email: number; phone: number; appointments: number; + procedures: number; + claims: number; payment: number; + updatedAt: number; dateOfBirth: number; insuranceProvider: number; + city: number; + zipCode: number; + cloudFolders: number; + communications: number; firstName: number; lastName: number; gender: number; address: number; - city: number; - zipCode: number; insuranceId: number; groupNumber: number; policyHolder: number; allergies: number; medicalConditions: number; + preferredLanguage: number; groups: number; documents: number; - communications: number; + conversation: number; }, { status: number; id: number; createdAt: number; - user: number; - procedures: number; userId: number; - claims: number; + user: number; email: number; phone: number; appointments: number; + procedures: number; + claims: number; payment: number; + updatedAt: number; dateOfBirth: number; insuranceProvider: number; + city: number; + zipCode: number; + cloudFolders: number; + communications: number; firstName: number; lastName: number; gender: number; address: number; - city: number; - zipCode: number; insuranceId: number; groupNumber: number; policyHolder: number; allergies: number; medicalConditions: number; + preferredLanguage: number; groups: number; documents: number; - communications: number; + conversation: number; }>>; _sum: z.ZodOptional; @@ -122,46 +134,52 @@ export declare const PatientAggregateResultSchema: z.ZodObject<{ policyHolder: z.ZodNullable; allergies: z.ZodNullable; medicalConditions: z.ZodNullable; + preferredLanguage: z.ZodNullable; userId: z.ZodNullable; createdAt: z.ZodNullable; + updatedAt: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; createdAt: Date | null; userId: number | null; email: string | null; phone: string | null; + updatedAt: Date | null; dateOfBirth: Date | null; insuranceProvider: string | null; + city: string | null; + zipCode: string | null; firstName: string | null; lastName: string | null; gender: string | null; address: string | null; - city: string | null; - zipCode: string | null; insuranceId: string | null; groupNumber: string | null; policyHolder: string | null; allergies: string | null; medicalConditions: string | null; + preferredLanguage: string | null; }, { id: number | null; createdAt: Date | null; userId: number | null; email: string | null; phone: string | null; + updatedAt: Date | null; dateOfBirth: Date | null; insuranceProvider: string | null; + city: string | null; + zipCode: string | null; firstName: string | null; lastName: string | null; gender: string | null; address: string | null; - city: string | null; - zipCode: string | null; insuranceId: string | null; groupNumber: string | null; policyHolder: string | null; allergies: string | null; medicalConditions: string | null; + preferredLanguage: string | null; }>>>; _max: z.ZodOptional; @@ -180,76 +198,86 @@ export declare const PatientAggregateResultSchema: z.ZodObject<{ policyHolder: z.ZodNullable; allergies: z.ZodNullable; medicalConditions: z.ZodNullable; + preferredLanguage: z.ZodNullable; userId: z.ZodNullable; createdAt: z.ZodNullable; + updatedAt: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; createdAt: Date | null; userId: number | null; email: string | null; phone: string | null; + updatedAt: Date | null; dateOfBirth: Date | null; insuranceProvider: string | null; + city: string | null; + zipCode: string | null; firstName: string | null; lastName: string | null; gender: string | null; address: string | null; - city: string | null; - zipCode: string | null; insuranceId: string | null; groupNumber: string | null; policyHolder: string | null; allergies: string | null; medicalConditions: string | null; + preferredLanguage: string | null; }, { id: number | null; createdAt: Date | null; userId: number | null; email: string | null; phone: string | null; + updatedAt: Date | null; dateOfBirth: Date | null; insuranceProvider: string | null; + city: string | null; + zipCode: string | null; firstName: string | null; lastName: string | null; gender: string | null; address: string | null; - city: string | null; - zipCode: string | null; insuranceId: string | null; groupNumber: string | null; policyHolder: string | null; allergies: string | null; medicalConditions: string | null; + preferredLanguage: string | null; }>>>; }, "strip", z.ZodTypeAny, { _count?: { status: number; id: number; createdAt: number; - user: number; - procedures: number; userId: number; - claims: number; + user: number; email: number; phone: number; appointments: number; + procedures: number; + claims: number; payment: number; + updatedAt: number; dateOfBirth: number; insuranceProvider: number; + city: number; + zipCode: number; + cloudFolders: number; + communications: number; firstName: number; lastName: number; gender: number; address: number; - city: number; - zipCode: number; insuranceId: number; groupNumber: number; policyHolder: number; allergies: number; medicalConditions: number; + preferredLanguage: number; groups: number; documents: number; - communications: number; + conversation: number; } | undefined; _min?: { id: number | null; @@ -257,19 +285,21 @@ export declare const PatientAggregateResultSchema: z.ZodObject<{ userId: number | null; email: string | null; phone: string | null; + updatedAt: Date | null; dateOfBirth: Date | null; insuranceProvider: string | null; + city: string | null; + zipCode: string | null; firstName: string | null; lastName: string | null; gender: string | null; address: string | null; - city: string | null; - zipCode: string | null; insuranceId: string | null; groupNumber: string | null; policyHolder: string | null; allergies: string | null; medicalConditions: string | null; + preferredLanguage: string | null; } | null | undefined; _max?: { id: number | null; @@ -277,19 +307,21 @@ export declare const PatientAggregateResultSchema: z.ZodObject<{ userId: number | null; email: string | null; phone: string | null; + updatedAt: Date | null; dateOfBirth: Date | null; insuranceProvider: string | null; + city: string | null; + zipCode: string | null; firstName: string | null; lastName: string | null; gender: string | null; address: string | null; - city: string | null; - zipCode: string | null; insuranceId: string | null; groupNumber: string | null; policyHolder: string | null; allergies: string | null; medicalConditions: string | null; + preferredLanguage: string | null; } | null | undefined; _avg?: { id: number | null; @@ -304,30 +336,34 @@ export declare const PatientAggregateResultSchema: z.ZodObject<{ status: number; id: number; createdAt: number; - user: number; - procedures: number; userId: number; - claims: number; + user: number; email: number; phone: number; appointments: number; + procedures: number; + claims: number; payment: number; + updatedAt: number; dateOfBirth: number; insuranceProvider: number; + city: number; + zipCode: number; + cloudFolders: number; + communications: number; firstName: number; lastName: number; gender: number; address: number; - city: number; - zipCode: number; insuranceId: number; groupNumber: number; policyHolder: number; allergies: number; medicalConditions: number; + preferredLanguage: number; groups: number; documents: number; - communications: number; + conversation: number; } | undefined; _min?: { id: number | null; @@ -335,19 +371,21 @@ export declare const PatientAggregateResultSchema: z.ZodObject<{ userId: number | null; email: string | null; phone: string | null; + updatedAt: Date | null; dateOfBirth: Date | null; insuranceProvider: string | null; + city: string | null; + zipCode: string | null; firstName: string | null; lastName: string | null; gender: string | null; address: string | null; - city: string | null; - zipCode: string | null; insuranceId: string | null; groupNumber: string | null; policyHolder: string | null; allergies: string | null; medicalConditions: string | null; + preferredLanguage: string | null; } | null | undefined; _max?: { id: number | null; @@ -355,19 +393,21 @@ export declare const PatientAggregateResultSchema: z.ZodObject<{ userId: number | null; email: string | null; phone: string | null; + updatedAt: Date | null; dateOfBirth: Date | null; insuranceProvider: string | null; + city: string | null; + zipCode: string | null; firstName: string | null; lastName: string | null; gender: string | null; address: string | null; - city: string | null; - zipCode: string | null; insuranceId: string | null; groupNumber: string | null; policyHolder: string | null; allergies: string | null; medicalConditions: string | null; + preferredLanguage: string | null; } | null | undefined; _avg?: { id: number | null; diff --git a/packages/db/shared/schemas/results/PatientAggregateResult.schema.d.ts.map b/packages/db/shared/schemas/results/PatientAggregateResult.schema.d.ts.map index b3d9ff87..a42d629f 100644 --- a/packages/db/shared/schemas/results/PatientAggregateResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/PatientAggregateResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"PatientAggregateResult.schema.d.ts","sourceRoot":"","sources":["PatientAggregateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4Eb,CAAC"} \ No newline at end of file +{"version":3,"file":"PatientAggregateResult.schema.d.ts","sourceRoot":"","sources":["PatientAggregateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoFb,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/PatientCreateResult.schema.d.ts b/packages/db/shared/schemas/results/PatientCreateResult.schema.d.ts index f6a2e45e..7a932531 100644 --- a/packages/db/shared/schemas/results/PatientCreateResult.schema.d.ts +++ b/packages/db/shared/schemas/results/PatientCreateResult.schema.d.ts @@ -16,9 +16,11 @@ export declare const PatientCreateResultSchema: z.ZodObject<{ policyHolder: z.ZodOptional; allergies: z.ZodOptional; medicalConditions: z.ZodOptional; + preferredLanguage: z.ZodOptional; status: z.ZodUnknown; userId: z.ZodNumber; createdAt: z.ZodDate; + updatedAt: z.ZodDate; user: z.ZodUnknown; appointments: z.ZodArray; procedures: z.ZodArray; @@ -27,61 +29,71 @@ export declare const PatientCreateResultSchema: z.ZodObject<{ payment: z.ZodArray; communications: z.ZodArray; documents: z.ZodArray; + conversation: z.ZodOptional; + cloudFolders: z.ZodArray; }, "strip", z.ZodTypeAny, { id: number; createdAt: Date; - procedures: unknown[]; userId: number; - claims: unknown[]; phone: string; appointments: unknown[]; + procedures: unknown[]; + claims: unknown[]; payment: unknown[]; + updatedAt: Date; + cloudFolders: unknown[]; + communications: unknown[]; firstName: string; lastName: string; gender: string; groups: unknown[]; documents: unknown[]; - communications: unknown[]; status?: unknown; user?: unknown; email?: string | undefined; dateOfBirth?: Date | undefined; insuranceProvider?: string | undefined; - address?: string | undefined; city?: string | undefined; zipCode?: string | undefined; + address?: string | undefined; insuranceId?: string | undefined; groupNumber?: string | undefined; policyHolder?: string | undefined; allergies?: string | undefined; medicalConditions?: string | undefined; + preferredLanguage?: string | undefined; + conversation?: unknown; }, { id: number; createdAt: Date; - procedures: unknown[]; userId: number; - claims: unknown[]; phone: string; appointments: unknown[]; + procedures: unknown[]; + claims: unknown[]; payment: unknown[]; + updatedAt: Date; + cloudFolders: unknown[]; + communications: unknown[]; firstName: string; lastName: string; gender: string; groups: unknown[]; documents: unknown[]; - communications: unknown[]; status?: unknown; user?: unknown; email?: string | undefined; dateOfBirth?: Date | undefined; insuranceProvider?: string | undefined; - address?: string | undefined; city?: string | undefined; zipCode?: string | undefined; + address?: string | undefined; insuranceId?: string | undefined; groupNumber?: string | undefined; policyHolder?: string | undefined; allergies?: string | undefined; medicalConditions?: string | undefined; + preferredLanguage?: string | undefined; + conversation?: unknown; }>; //# sourceMappingURL=PatientCreateResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/PatientCreateResult.schema.d.ts.map b/packages/db/shared/schemas/results/PatientCreateResult.schema.d.ts.map index 997285cc..d84e1dd9 100644 --- a/packages/db/shared/schemas/results/PatientCreateResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/PatientCreateResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"PatientCreateResult.schema.d.ts","sourceRoot":"","sources":["PatientCreateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4BpC,CAAC"} \ No newline at end of file +{"version":3,"file":"PatientCreateResult.schema.d.ts","sourceRoot":"","sources":["PatientCreateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgCpC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/PatientDeleteResult.schema.d.ts b/packages/db/shared/schemas/results/PatientDeleteResult.schema.d.ts index 32ce6328..6aaba616 100644 --- a/packages/db/shared/schemas/results/PatientDeleteResult.schema.d.ts +++ b/packages/db/shared/schemas/results/PatientDeleteResult.schema.d.ts @@ -16,9 +16,11 @@ export declare const PatientDeleteResultSchema: z.ZodNullable; allergies: z.ZodOptional; medicalConditions: z.ZodOptional; + preferredLanguage: z.ZodOptional; status: z.ZodUnknown; userId: z.ZodNumber; createdAt: z.ZodDate; + updatedAt: z.ZodDate; user: z.ZodUnknown; appointments: z.ZodArray; procedures: z.ZodArray; @@ -27,61 +29,71 @@ export declare const PatientDeleteResultSchema: z.ZodNullable; communications: z.ZodArray; documents: z.ZodArray; + conversation: z.ZodOptional; + cloudFolders: z.ZodArray; }, "strip", z.ZodTypeAny, { id: number; createdAt: Date; - procedures: unknown[]; userId: number; - claims: unknown[]; phone: string; appointments: unknown[]; + procedures: unknown[]; + claims: unknown[]; payment: unknown[]; + updatedAt: Date; + cloudFolders: unknown[]; + communications: unknown[]; firstName: string; lastName: string; gender: string; groups: unknown[]; documents: unknown[]; - communications: unknown[]; status?: unknown; user?: unknown; email?: string | undefined; dateOfBirth?: Date | undefined; insuranceProvider?: string | undefined; - address?: string | undefined; city?: string | undefined; zipCode?: string | undefined; + address?: string | undefined; insuranceId?: string | undefined; groupNumber?: string | undefined; policyHolder?: string | undefined; allergies?: string | undefined; medicalConditions?: string | undefined; + preferredLanguage?: string | undefined; + conversation?: unknown; }, { id: number; createdAt: Date; - procedures: unknown[]; userId: number; - claims: unknown[]; phone: string; appointments: unknown[]; + procedures: unknown[]; + claims: unknown[]; payment: unknown[]; + updatedAt: Date; + cloudFolders: unknown[]; + communications: unknown[]; firstName: string; lastName: string; gender: string; groups: unknown[]; documents: unknown[]; - communications: unknown[]; status?: unknown; user?: unknown; email?: string | undefined; dateOfBirth?: Date | undefined; insuranceProvider?: string | undefined; - address?: string | undefined; city?: string | undefined; zipCode?: string | undefined; + address?: string | undefined; insuranceId?: string | undefined; groupNumber?: string | undefined; policyHolder?: string | undefined; allergies?: string | undefined; medicalConditions?: string | undefined; + preferredLanguage?: string | undefined; + conversation?: unknown; }>>; //# sourceMappingURL=PatientDeleteResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/PatientDeleteResult.schema.d.ts.map b/packages/db/shared/schemas/results/PatientDeleteResult.schema.d.ts.map index a7999318..30501dea 100644 --- a/packages/db/shared/schemas/results/PatientDeleteResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/PatientDeleteResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"PatientDeleteResult.schema.d.ts","sourceRoot":"","sources":["PatientDeleteResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BnC,CAAC"} \ No newline at end of file +{"version":3,"file":"PatientDeleteResult.schema.d.ts","sourceRoot":"","sources":["PatientDeleteResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCnC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/PatientFindFirstResult.schema.d.ts b/packages/db/shared/schemas/results/PatientFindFirstResult.schema.d.ts index 6a88f08b..126e0ab0 100644 --- a/packages/db/shared/schemas/results/PatientFindFirstResult.schema.d.ts +++ b/packages/db/shared/schemas/results/PatientFindFirstResult.schema.d.ts @@ -16,9 +16,11 @@ export declare const PatientFindFirstResultSchema: z.ZodNullable; allergies: z.ZodOptional; medicalConditions: z.ZodOptional; + preferredLanguage: z.ZodOptional; status: z.ZodUnknown; userId: z.ZodNumber; createdAt: z.ZodDate; + updatedAt: z.ZodDate; user: z.ZodUnknown; appointments: z.ZodArray; procedures: z.ZodArray; @@ -27,61 +29,71 @@ export declare const PatientFindFirstResultSchema: z.ZodNullable; communications: z.ZodArray; documents: z.ZodArray; + conversation: z.ZodOptional; + cloudFolders: z.ZodArray; }, "strip", z.ZodTypeAny, { id: number; createdAt: Date; - procedures: unknown[]; userId: number; - claims: unknown[]; phone: string; appointments: unknown[]; + procedures: unknown[]; + claims: unknown[]; payment: unknown[]; + updatedAt: Date; + cloudFolders: unknown[]; + communications: unknown[]; firstName: string; lastName: string; gender: string; groups: unknown[]; documents: unknown[]; - communications: unknown[]; status?: unknown; user?: unknown; email?: string | undefined; dateOfBirth?: Date | undefined; insuranceProvider?: string | undefined; - address?: string | undefined; city?: string | undefined; zipCode?: string | undefined; + address?: string | undefined; insuranceId?: string | undefined; groupNumber?: string | undefined; policyHolder?: string | undefined; allergies?: string | undefined; medicalConditions?: string | undefined; + preferredLanguage?: string | undefined; + conversation?: unknown; }, { id: number; createdAt: Date; - procedures: unknown[]; userId: number; - claims: unknown[]; phone: string; appointments: unknown[]; + procedures: unknown[]; + claims: unknown[]; payment: unknown[]; + updatedAt: Date; + cloudFolders: unknown[]; + communications: unknown[]; firstName: string; lastName: string; gender: string; groups: unknown[]; documents: unknown[]; - communications: unknown[]; status?: unknown; user?: unknown; email?: string | undefined; dateOfBirth?: Date | undefined; insuranceProvider?: string | undefined; - address?: string | undefined; city?: string | undefined; zipCode?: string | undefined; + address?: string | undefined; insuranceId?: string | undefined; groupNumber?: string | undefined; policyHolder?: string | undefined; allergies?: string | undefined; medicalConditions?: string | undefined; + preferredLanguage?: string | undefined; + conversation?: unknown; }>>; //# sourceMappingURL=PatientFindFirstResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/PatientFindFirstResult.schema.d.ts.map b/packages/db/shared/schemas/results/PatientFindFirstResult.schema.d.ts.map index 5479a865..b4a7f95a 100644 --- a/packages/db/shared/schemas/results/PatientFindFirstResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/PatientFindFirstResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"PatientFindFirstResult.schema.d.ts","sourceRoot":"","sources":["PatientFindFirstResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BtC,CAAC"} \ No newline at end of file +{"version":3,"file":"PatientFindFirstResult.schema.d.ts","sourceRoot":"","sources":["PatientFindFirstResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCtC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/PatientFindManyResult.schema.d.ts b/packages/db/shared/schemas/results/PatientFindManyResult.schema.d.ts index e362032e..694f141c 100644 --- a/packages/db/shared/schemas/results/PatientFindManyResult.schema.d.ts +++ b/packages/db/shared/schemas/results/PatientFindManyResult.schema.d.ts @@ -17,9 +17,11 @@ export declare const PatientFindManyResultSchema: z.ZodObject<{ policyHolder: z.ZodOptional; allergies: z.ZodOptional; medicalConditions: z.ZodOptional; + preferredLanguage: z.ZodOptional; status: z.ZodUnknown; userId: z.ZodNumber; createdAt: z.ZodDate; + updatedAt: z.ZodDate; user: z.ZodUnknown; appointments: z.ZodArray; procedures: z.ZodArray; @@ -28,62 +30,72 @@ export declare const PatientFindManyResultSchema: z.ZodObject<{ payment: z.ZodArray; communications: z.ZodArray; documents: z.ZodArray; + conversation: z.ZodOptional; + cloudFolders: z.ZodArray; }, "strip", z.ZodTypeAny, { id: number; createdAt: Date; - procedures: unknown[]; userId: number; - claims: unknown[]; phone: string; appointments: unknown[]; + procedures: unknown[]; + claims: unknown[]; payment: unknown[]; + updatedAt: Date; + cloudFolders: unknown[]; + communications: unknown[]; firstName: string; lastName: string; gender: string; groups: unknown[]; documents: unknown[]; - communications: unknown[]; status?: unknown; user?: unknown; email?: string | undefined; dateOfBirth?: Date | undefined; insuranceProvider?: string | undefined; - address?: string | undefined; city?: string | undefined; zipCode?: string | undefined; + address?: string | undefined; insuranceId?: string | undefined; groupNumber?: string | undefined; policyHolder?: string | undefined; allergies?: string | undefined; medicalConditions?: string | undefined; + preferredLanguage?: string | undefined; + conversation?: unknown; }, { id: number; createdAt: Date; - procedures: unknown[]; userId: number; - claims: unknown[]; phone: string; appointments: unknown[]; + procedures: unknown[]; + claims: unknown[]; payment: unknown[]; + updatedAt: Date; + cloudFolders: unknown[]; + communications: unknown[]; firstName: string; lastName: string; gender: string; groups: unknown[]; documents: unknown[]; - communications: unknown[]; status?: unknown; user?: unknown; email?: string | undefined; dateOfBirth?: Date | undefined; insuranceProvider?: string | undefined; - address?: string | undefined; city?: string | undefined; zipCode?: string | undefined; + address?: string | undefined; insuranceId?: string | undefined; groupNumber?: string | undefined; policyHolder?: string | undefined; allergies?: string | undefined; medicalConditions?: string | undefined; + preferredLanguage?: string | undefined; + conversation?: unknown; }>, "many">; pagination: z.ZodObject<{ page: z.ZodNumber; @@ -111,31 +123,35 @@ export declare const PatientFindManyResultSchema: z.ZodObject<{ data: { id: number; createdAt: Date; - procedures: unknown[]; userId: number; - claims: unknown[]; phone: string; appointments: unknown[]; + procedures: unknown[]; + claims: unknown[]; payment: unknown[]; + updatedAt: Date; + cloudFolders: unknown[]; + communications: unknown[]; firstName: string; lastName: string; gender: string; groups: unknown[]; documents: unknown[]; - communications: unknown[]; status?: unknown; user?: unknown; email?: string | undefined; dateOfBirth?: Date | undefined; insuranceProvider?: string | undefined; - address?: string | undefined; city?: string | undefined; zipCode?: string | undefined; + address?: string | undefined; insuranceId?: string | undefined; groupNumber?: string | undefined; policyHolder?: string | undefined; allergies?: string | undefined; medicalConditions?: string | undefined; + preferredLanguage?: string | undefined; + conversation?: unknown; }[]; pagination: { page: number; @@ -149,31 +165,35 @@ export declare const PatientFindManyResultSchema: z.ZodObject<{ data: { id: number; createdAt: Date; - procedures: unknown[]; userId: number; - claims: unknown[]; phone: string; appointments: unknown[]; + procedures: unknown[]; + claims: unknown[]; payment: unknown[]; + updatedAt: Date; + cloudFolders: unknown[]; + communications: unknown[]; firstName: string; lastName: string; gender: string; groups: unknown[]; documents: unknown[]; - communications: unknown[]; status?: unknown; user?: unknown; email?: string | undefined; dateOfBirth?: Date | undefined; insuranceProvider?: string | undefined; - address?: string | undefined; city?: string | undefined; zipCode?: string | undefined; + address?: string | undefined; insuranceId?: string | undefined; groupNumber?: string | undefined; policyHolder?: string | undefined; allergies?: string | undefined; medicalConditions?: string | undefined; + preferredLanguage?: string | undefined; + conversation?: unknown; }[]; pagination: { page: number; diff --git a/packages/db/shared/schemas/results/PatientFindManyResult.schema.d.ts.map b/packages/db/shared/schemas/results/PatientFindManyResult.schema.d.ts.map index c6b132bf..07d0e58f 100644 --- a/packages/db/shared/schemas/results/PatientFindManyResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/PatientFindManyResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"PatientFindManyResult.schema.d.ts","sourceRoot":"","sources":["PatientFindManyResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAsCtC,CAAC"} \ No newline at end of file +{"version":3,"file":"PatientFindManyResult.schema.d.ts","sourceRoot":"","sources":["PatientFindManyResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0CtC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/PatientFindUniqueResult.schema.d.ts b/packages/db/shared/schemas/results/PatientFindUniqueResult.schema.d.ts index 0f4d4fdc..b1d87ac1 100644 --- a/packages/db/shared/schemas/results/PatientFindUniqueResult.schema.d.ts +++ b/packages/db/shared/schemas/results/PatientFindUniqueResult.schema.d.ts @@ -16,9 +16,11 @@ export declare const PatientFindUniqueResultSchema: z.ZodNullable; allergies: z.ZodOptional; medicalConditions: z.ZodOptional; + preferredLanguage: z.ZodOptional; status: z.ZodUnknown; userId: z.ZodNumber; createdAt: z.ZodDate; + updatedAt: z.ZodDate; user: z.ZodUnknown; appointments: z.ZodArray; procedures: z.ZodArray; @@ -27,61 +29,71 @@ export declare const PatientFindUniqueResultSchema: z.ZodNullable; communications: z.ZodArray; documents: z.ZodArray; + conversation: z.ZodOptional; + cloudFolders: z.ZodArray; }, "strip", z.ZodTypeAny, { id: number; createdAt: Date; - procedures: unknown[]; userId: number; - claims: unknown[]; phone: string; appointments: unknown[]; + procedures: unknown[]; + claims: unknown[]; payment: unknown[]; + updatedAt: Date; + cloudFolders: unknown[]; + communications: unknown[]; firstName: string; lastName: string; gender: string; groups: unknown[]; documents: unknown[]; - communications: unknown[]; status?: unknown; user?: unknown; email?: string | undefined; dateOfBirth?: Date | undefined; insuranceProvider?: string | undefined; - address?: string | undefined; city?: string | undefined; zipCode?: string | undefined; + address?: string | undefined; insuranceId?: string | undefined; groupNumber?: string | undefined; policyHolder?: string | undefined; allergies?: string | undefined; medicalConditions?: string | undefined; + preferredLanguage?: string | undefined; + conversation?: unknown; }, { id: number; createdAt: Date; - procedures: unknown[]; userId: number; - claims: unknown[]; phone: string; appointments: unknown[]; + procedures: unknown[]; + claims: unknown[]; payment: unknown[]; + updatedAt: Date; + cloudFolders: unknown[]; + communications: unknown[]; firstName: string; lastName: string; gender: string; groups: unknown[]; documents: unknown[]; - communications: unknown[]; status?: unknown; user?: unknown; email?: string | undefined; dateOfBirth?: Date | undefined; insuranceProvider?: string | undefined; - address?: string | undefined; city?: string | undefined; zipCode?: string | undefined; + address?: string | undefined; insuranceId?: string | undefined; groupNumber?: string | undefined; policyHolder?: string | undefined; allergies?: string | undefined; medicalConditions?: string | undefined; + preferredLanguage?: string | undefined; + conversation?: unknown; }>>; //# sourceMappingURL=PatientFindUniqueResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/PatientFindUniqueResult.schema.d.ts.map b/packages/db/shared/schemas/results/PatientFindUniqueResult.schema.d.ts.map index 7d9303f7..758e97bf 100644 --- a/packages/db/shared/schemas/results/PatientFindUniqueResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/PatientFindUniqueResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"PatientFindUniqueResult.schema.d.ts","sourceRoot":"","sources":["PatientFindUniqueResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BvC,CAAC"} \ No newline at end of file +{"version":3,"file":"PatientFindUniqueResult.schema.d.ts","sourceRoot":"","sources":["PatientFindUniqueResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCvC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/PatientGroupByResult.schema.d.ts b/packages/db/shared/schemas/results/PatientGroupByResult.schema.d.ts index 6978281e..40dd1865 100644 --- a/packages/db/shared/schemas/results/PatientGroupByResult.schema.d.ts +++ b/packages/db/shared/schemas/results/PatientGroupByResult.schema.d.ts @@ -16,8 +16,10 @@ export declare const PatientGroupByResultSchema: z.ZodArray>; _sum: z.ZodOptional; @@ -140,46 +154,52 @@ export declare const PatientGroupByResultSchema: z.ZodArray; allergies: z.ZodNullable; medicalConditions: z.ZodNullable; + preferredLanguage: z.ZodNullable; userId: z.ZodNullable; createdAt: z.ZodNullable; + updatedAt: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; createdAt: Date | null; userId: number | null; email: string | null; phone: string | null; + updatedAt: Date | null; dateOfBirth: Date | null; insuranceProvider: string | null; + city: string | null; + zipCode: string | null; firstName: string | null; lastName: string | null; gender: string | null; address: string | null; - city: string | null; - zipCode: string | null; insuranceId: string | null; groupNumber: string | null; policyHolder: string | null; allergies: string | null; medicalConditions: string | null; + preferredLanguage: string | null; }, { id: number | null; createdAt: Date | null; userId: number | null; email: string | null; phone: string | null; + updatedAt: Date | null; dateOfBirth: Date | null; insuranceProvider: string | null; + city: string | null; + zipCode: string | null; firstName: string | null; lastName: string | null; gender: string | null; address: string | null; - city: string | null; - zipCode: string | null; insuranceId: string | null; groupNumber: string | null; policyHolder: string | null; allergies: string | null; medicalConditions: string | null; + preferredLanguage: string | null; }>>>; _max: z.ZodOptional; @@ -198,46 +218,52 @@ export declare const PatientGroupByResultSchema: z.ZodArray; allergies: z.ZodNullable; medicalConditions: z.ZodNullable; + preferredLanguage: z.ZodNullable; userId: z.ZodNullable; createdAt: z.ZodNullable; + updatedAt: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; createdAt: Date | null; userId: number | null; email: string | null; phone: string | null; + updatedAt: Date | null; dateOfBirth: Date | null; insuranceProvider: string | null; + city: string | null; + zipCode: string | null; firstName: string | null; lastName: string | null; gender: string | null; address: string | null; - city: string | null; - zipCode: string | null; insuranceId: string | null; groupNumber: string | null; policyHolder: string | null; allergies: string | null; medicalConditions: string | null; + preferredLanguage: string | null; }, { id: number | null; createdAt: Date | null; userId: number | null; email: string | null; phone: string | null; + updatedAt: Date | null; dateOfBirth: Date | null; insuranceProvider: string | null; + city: string | null; + zipCode: string | null; firstName: string | null; lastName: string | null; gender: string | null; address: string | null; - city: string | null; - zipCode: string | null; insuranceId: string | null; groupNumber: string | null; policyHolder: string | null; allergies: string | null; medicalConditions: string | null; + preferredLanguage: string | null; }>>>; }, "strip", z.ZodTypeAny, { id: number; @@ -245,47 +271,53 @@ export declare const PatientGroupByResultSchema: z.ZodArray; allergies: z.ZodOptional; medicalConditions: z.ZodOptional; + preferredLanguage: z.ZodOptional; status: z.ZodUnknown; userId: z.ZodNumber; createdAt: z.ZodDate; + updatedAt: z.ZodDate; user: z.ZodUnknown; appointments: z.ZodArray; procedures: z.ZodArray; @@ -27,61 +29,71 @@ export declare const PatientUpdateResultSchema: z.ZodNullable; communications: z.ZodArray; documents: z.ZodArray; + conversation: z.ZodOptional; + cloudFolders: z.ZodArray; }, "strip", z.ZodTypeAny, { id: number; createdAt: Date; - procedures: unknown[]; userId: number; - claims: unknown[]; phone: string; appointments: unknown[]; + procedures: unknown[]; + claims: unknown[]; payment: unknown[]; + updatedAt: Date; + cloudFolders: unknown[]; + communications: unknown[]; firstName: string; lastName: string; gender: string; groups: unknown[]; documents: unknown[]; - communications: unknown[]; status?: unknown; user?: unknown; email?: string | undefined; dateOfBirth?: Date | undefined; insuranceProvider?: string | undefined; - address?: string | undefined; city?: string | undefined; zipCode?: string | undefined; + address?: string | undefined; insuranceId?: string | undefined; groupNumber?: string | undefined; policyHolder?: string | undefined; allergies?: string | undefined; medicalConditions?: string | undefined; + preferredLanguage?: string | undefined; + conversation?: unknown; }, { id: number; createdAt: Date; - procedures: unknown[]; userId: number; - claims: unknown[]; phone: string; appointments: unknown[]; + procedures: unknown[]; + claims: unknown[]; payment: unknown[]; + updatedAt: Date; + cloudFolders: unknown[]; + communications: unknown[]; firstName: string; lastName: string; gender: string; groups: unknown[]; documents: unknown[]; - communications: unknown[]; status?: unknown; user?: unknown; email?: string | undefined; dateOfBirth?: Date | undefined; insuranceProvider?: string | undefined; - address?: string | undefined; city?: string | undefined; zipCode?: string | undefined; + address?: string | undefined; insuranceId?: string | undefined; groupNumber?: string | undefined; policyHolder?: string | undefined; allergies?: string | undefined; medicalConditions?: string | undefined; + preferredLanguage?: string | undefined; + conversation?: unknown; }>>; //# sourceMappingURL=PatientUpdateResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/PatientUpdateResult.schema.d.ts.map b/packages/db/shared/schemas/results/PatientUpdateResult.schema.d.ts.map index 80ff8f39..c01520fc 100644 --- a/packages/db/shared/schemas/results/PatientUpdateResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/PatientUpdateResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"PatientUpdateResult.schema.d.ts","sourceRoot":"","sources":["PatientUpdateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BnC,CAAC"} \ No newline at end of file +{"version":3,"file":"PatientUpdateResult.schema.d.ts","sourceRoot":"","sources":["PatientUpdateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCnC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/PatientUpsertResult.schema.d.ts b/packages/db/shared/schemas/results/PatientUpsertResult.schema.d.ts index b9e55af7..ab802141 100644 --- a/packages/db/shared/schemas/results/PatientUpsertResult.schema.d.ts +++ b/packages/db/shared/schemas/results/PatientUpsertResult.schema.d.ts @@ -16,9 +16,11 @@ export declare const PatientUpsertResultSchema: z.ZodObject<{ policyHolder: z.ZodOptional; allergies: z.ZodOptional; medicalConditions: z.ZodOptional; + preferredLanguage: z.ZodOptional; status: z.ZodUnknown; userId: z.ZodNumber; createdAt: z.ZodDate; + updatedAt: z.ZodDate; user: z.ZodUnknown; appointments: z.ZodArray; procedures: z.ZodArray; @@ -27,61 +29,71 @@ export declare const PatientUpsertResultSchema: z.ZodObject<{ payment: z.ZodArray; communications: z.ZodArray; documents: z.ZodArray; + conversation: z.ZodOptional; + cloudFolders: z.ZodArray; }, "strip", z.ZodTypeAny, { id: number; createdAt: Date; - procedures: unknown[]; userId: number; - claims: unknown[]; phone: string; appointments: unknown[]; + procedures: unknown[]; + claims: unknown[]; payment: unknown[]; + updatedAt: Date; + cloudFolders: unknown[]; + communications: unknown[]; firstName: string; lastName: string; gender: string; groups: unknown[]; documents: unknown[]; - communications: unknown[]; status?: unknown; user?: unknown; email?: string | undefined; dateOfBirth?: Date | undefined; insuranceProvider?: string | undefined; - address?: string | undefined; city?: string | undefined; zipCode?: string | undefined; + address?: string | undefined; insuranceId?: string | undefined; groupNumber?: string | undefined; policyHolder?: string | undefined; allergies?: string | undefined; medicalConditions?: string | undefined; + preferredLanguage?: string | undefined; + conversation?: unknown; }, { id: number; createdAt: Date; - procedures: unknown[]; userId: number; - claims: unknown[]; phone: string; appointments: unknown[]; + procedures: unknown[]; + claims: unknown[]; payment: unknown[]; + updatedAt: Date; + cloudFolders: unknown[]; + communications: unknown[]; firstName: string; lastName: string; gender: string; groups: unknown[]; documents: unknown[]; - communications: unknown[]; status?: unknown; user?: unknown; email?: string | undefined; dateOfBirth?: Date | undefined; insuranceProvider?: string | undefined; - address?: string | undefined; city?: string | undefined; zipCode?: string | undefined; + address?: string | undefined; insuranceId?: string | undefined; groupNumber?: string | undefined; policyHolder?: string | undefined; allergies?: string | undefined; medicalConditions?: string | undefined; + preferredLanguage?: string | undefined; + conversation?: unknown; }>; //# sourceMappingURL=PatientUpsertResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/PatientUpsertResult.schema.d.ts.map b/packages/db/shared/schemas/results/PatientUpsertResult.schema.d.ts.map index 9ed7ac4f..bfe13ac6 100644 --- a/packages/db/shared/schemas/results/PatientUpsertResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/PatientUpsertResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"PatientUpsertResult.schema.d.ts","sourceRoot":"","sources":["PatientUpsertResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4BpC,CAAC"} \ No newline at end of file +{"version":3,"file":"PatientUpsertResult.schema.d.ts","sourceRoot":"","sources":["PatientUpsertResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgCpC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/PaymentAggregateResult.schema.d.ts b/packages/db/shared/schemas/results/PaymentAggregateResult.schema.d.ts index 4bae62b5..03d70ba7 100644 --- a/packages/db/shared/schemas/results/PaymentAggregateResult.schema.d.ts +++ b/packages/db/shared/schemas/results/PaymentAggregateResult.schema.d.ts @@ -6,10 +6,14 @@ export declare const PaymentAggregateResultSchema: z.ZodObject<{ patientId: z.ZodNumber; userId: z.ZodNumber; updatedById: z.ZodNumber; + npiProviderId: z.ZodNumber; totalBilled: z.ZodNumber; totalPaid: z.ZodNumber; totalAdjusted: z.ZodNumber; totalDue: z.ZodNumber; + mhPaidAmount: z.ZodNumber; + copayment: z.ZodNumber; + adjustment: z.ZodNumber; status: z.ZodNumber; notes: z.ZodNumber; icn: z.ZodNumber; @@ -18,48 +22,62 @@ export declare const PaymentAggregateResultSchema: z.ZodObject<{ claim: z.ZodNumber; patient: z.ZodNumber; updatedBy: z.ZodNumber; + npiProvider: z.ZodNumber; serviceLineTransactions: z.ZodNumber; serviceLines: z.ZodNumber; + commissionBatchItems: z.ZodNumber; }, "strip", z.ZodTypeAny, { status: number; id: number; createdAt: number; patientId: number; patient: number; - notes: number; + npiProviderId: number; + npiProvider: number; userId: number; claimId: number; claim: number; + notes: number; + icn: number; totalBilled: number; totalPaid: number; totalAdjusted: number; totalDue: number; serviceLineTransactions: number; - icn: number; - updatedAt: number; - updatedBy: number; - serviceLines: number; updatedById: number; + mhPaidAmount: number; + copayment: number; + adjustment: number; + updatedAt: number; + serviceLines: number; + commissionBatchItems: number; + updatedBy: number; }, { status: number; id: number; createdAt: number; patientId: number; patient: number; - notes: number; + npiProviderId: number; + npiProvider: number; userId: number; claimId: number; claim: number; + notes: number; + icn: number; totalBilled: number; totalPaid: number; totalAdjusted: number; totalDue: number; serviceLineTransactions: number; - icn: number; - updatedAt: number; - updatedBy: number; - serviceLines: number; updatedById: number; + mhPaidAmount: number; + copayment: number; + adjustment: number; + updatedAt: number; + serviceLines: number; + commissionBatchItems: number; + updatedBy: number; }>>; _sum: z.ZodOptional; @@ -67,13 +85,18 @@ export declare const PaymentAggregateResultSchema: z.ZodObject<{ patientId: z.ZodNullable; userId: z.ZodNullable; updatedById: z.ZodNullable; + npiProviderId: z.ZodNullable; totalBilled: z.ZodNullable; totalPaid: z.ZodNullable; totalAdjusted: z.ZodNullable; totalDue: z.ZodNullable; + mhPaidAmount: z.ZodNullable; + copayment: z.ZodNullable; + adjustment: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; patientId: number | null; + npiProviderId: number | null; userId: number | null; claimId: number | null; totalBilled: number | null; @@ -81,9 +104,13 @@ export declare const PaymentAggregateResultSchema: z.ZodObject<{ totalAdjusted: number | null; totalDue: number | null; updatedById: number | null; + mhPaidAmount: number | null; + copayment: number | null; + adjustment: number | null; }, { id: number | null; patientId: number | null; + npiProviderId: number | null; userId: number | null; claimId: number | null; totalBilled: number | null; @@ -91,6 +118,9 @@ export declare const PaymentAggregateResultSchema: z.ZodObject<{ totalAdjusted: number | null; totalDue: number | null; updatedById: number | null; + mhPaidAmount: number | null; + copayment: number | null; + adjustment: number | null; }>>>; _avg: z.ZodOptional; @@ -98,13 +128,18 @@ export declare const PaymentAggregateResultSchema: z.ZodObject<{ patientId: z.ZodNullable; userId: z.ZodNullable; updatedById: z.ZodNullable; + npiProviderId: z.ZodNullable; totalBilled: z.ZodNullable; totalPaid: z.ZodNullable; totalAdjusted: z.ZodNullable; totalDue: z.ZodNullable; + mhPaidAmount: z.ZodNullable; + copayment: z.ZodNullable; + adjustment: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; patientId: number | null; + npiProviderId: number | null; userId: number | null; claimId: number | null; totalBilled: number | null; @@ -112,9 +147,13 @@ export declare const PaymentAggregateResultSchema: z.ZodObject<{ totalAdjusted: number | null; totalDue: number | null; updatedById: number | null; + mhPaidAmount: number | null; + copayment: number | null; + adjustment: number | null; }, { id: number | null; patientId: number | null; + npiProviderId: number | null; userId: number | null; claimId: number | null; totalBilled: number | null; @@ -122,6 +161,9 @@ export declare const PaymentAggregateResultSchema: z.ZodObject<{ totalAdjusted: number | null; totalDue: number | null; updatedById: number | null; + mhPaidAmount: number | null; + copayment: number | null; + adjustment: number | null; }>>>; _min: z.ZodOptional; @@ -129,10 +171,14 @@ export declare const PaymentAggregateResultSchema: z.ZodObject<{ patientId: z.ZodNullable; userId: z.ZodNullable; updatedById: z.ZodNullable; + npiProviderId: z.ZodNullable; totalBilled: z.ZodNullable; totalPaid: z.ZodNullable; totalAdjusted: z.ZodNullable; totalDue: z.ZodNullable; + mhPaidAmount: z.ZodNullable; + copayment: z.ZodNullable; + adjustment: z.ZodNullable; notes: z.ZodNullable; icn: z.ZodNullable; createdAt: z.ZodNullable; @@ -141,30 +187,38 @@ export declare const PaymentAggregateResultSchema: z.ZodObject<{ id: number | null; createdAt: Date | null; patientId: number | null; - notes: string | null; + npiProviderId: number | null; userId: number | null; claimId: number | null; + notes: string | null; + icn: string | null; totalBilled: number | null; totalPaid: number | null; totalAdjusted: number | null; totalDue: number | null; - icn: string | null; - updatedAt: Date | null; updatedById: number | null; + mhPaidAmount: number | null; + copayment: number | null; + adjustment: number | null; + updatedAt: Date | null; }, { id: number | null; createdAt: Date | null; patientId: number | null; - notes: string | null; + npiProviderId: number | null; userId: number | null; claimId: number | null; + notes: string | null; + icn: string | null; totalBilled: number | null; totalPaid: number | null; totalAdjusted: number | null; totalDue: number | null; - icn: string | null; - updatedAt: Date | null; updatedById: number | null; + mhPaidAmount: number | null; + copayment: number | null; + adjustment: number | null; + updatedAt: Date | null; }>>>; _max: z.ZodOptional; @@ -172,10 +226,14 @@ export declare const PaymentAggregateResultSchema: z.ZodObject<{ patientId: z.ZodNullable; userId: z.ZodNullable; updatedById: z.ZodNullable; + npiProviderId: z.ZodNullable; totalBilled: z.ZodNullable; totalPaid: z.ZodNullable; totalAdjusted: z.ZodNullable; totalDue: z.ZodNullable; + mhPaidAmount: z.ZodNullable; + copayment: z.ZodNullable; + adjustment: z.ZodNullable; notes: z.ZodNullable; icn: z.ZodNullable; createdAt: z.ZodNullable; @@ -184,30 +242,38 @@ export declare const PaymentAggregateResultSchema: z.ZodObject<{ id: number | null; createdAt: Date | null; patientId: number | null; - notes: string | null; + npiProviderId: number | null; userId: number | null; claimId: number | null; + notes: string | null; + icn: string | null; totalBilled: number | null; totalPaid: number | null; totalAdjusted: number | null; totalDue: number | null; - icn: string | null; - updatedAt: Date | null; updatedById: number | null; + mhPaidAmount: number | null; + copayment: number | null; + adjustment: number | null; + updatedAt: Date | null; }, { id: number | null; createdAt: Date | null; patientId: number | null; - notes: string | null; + npiProviderId: number | null; userId: number | null; claimId: number | null; + notes: string | null; + icn: string | null; totalBilled: number | null; totalPaid: number | null; totalAdjusted: number | null; totalDue: number | null; - icn: string | null; - updatedAt: Date | null; updatedById: number | null; + mhPaidAmount: number | null; + copayment: number | null; + adjustment: number | null; + updatedAt: Date | null; }>>>; }, "strip", z.ZodTypeAny, { _count?: { @@ -216,54 +282,69 @@ export declare const PaymentAggregateResultSchema: z.ZodObject<{ createdAt: number; patientId: number; patient: number; - notes: number; + npiProviderId: number; + npiProvider: number; userId: number; claimId: number; claim: number; + notes: number; + icn: number; totalBilled: number; totalPaid: number; totalAdjusted: number; totalDue: number; serviceLineTransactions: number; - icn: number; - updatedAt: number; - updatedBy: number; - serviceLines: number; updatedById: number; + mhPaidAmount: number; + copayment: number; + adjustment: number; + updatedAt: number; + serviceLines: number; + commissionBatchItems: number; + updatedBy: number; } | undefined; _min?: { id: number | null; createdAt: Date | null; patientId: number | null; - notes: string | null; + npiProviderId: number | null; userId: number | null; claimId: number | null; + notes: string | null; + icn: string | null; totalBilled: number | null; totalPaid: number | null; totalAdjusted: number | null; totalDue: number | null; - icn: string | null; - updatedAt: Date | null; updatedById: number | null; + mhPaidAmount: number | null; + copayment: number | null; + adjustment: number | null; + updatedAt: Date | null; } | null | undefined; _max?: { id: number | null; createdAt: Date | null; patientId: number | null; - notes: string | null; + npiProviderId: number | null; userId: number | null; claimId: number | null; + notes: string | null; + icn: string | null; totalBilled: number | null; totalPaid: number | null; totalAdjusted: number | null; totalDue: number | null; - icn: string | null; - updatedAt: Date | null; updatedById: number | null; + mhPaidAmount: number | null; + copayment: number | null; + adjustment: number | null; + updatedAt: Date | null; } | null | undefined; _avg?: { id: number | null; patientId: number | null; + npiProviderId: number | null; userId: number | null; claimId: number | null; totalBilled: number | null; @@ -271,10 +352,14 @@ export declare const PaymentAggregateResultSchema: z.ZodObject<{ totalAdjusted: number | null; totalDue: number | null; updatedById: number | null; + mhPaidAmount: number | null; + copayment: number | null; + adjustment: number | null; } | null | undefined; _sum?: { id: number | null; patientId: number | null; + npiProviderId: number | null; userId: number | null; claimId: number | null; totalBilled: number | null; @@ -282,6 +367,9 @@ export declare const PaymentAggregateResultSchema: z.ZodObject<{ totalAdjusted: number | null; totalDue: number | null; updatedById: number | null; + mhPaidAmount: number | null; + copayment: number | null; + adjustment: number | null; } | null | undefined; }, { _count?: { @@ -290,54 +378,69 @@ export declare const PaymentAggregateResultSchema: z.ZodObject<{ createdAt: number; patientId: number; patient: number; - notes: number; + npiProviderId: number; + npiProvider: number; userId: number; claimId: number; claim: number; + notes: number; + icn: number; totalBilled: number; totalPaid: number; totalAdjusted: number; totalDue: number; serviceLineTransactions: number; - icn: number; - updatedAt: number; - updatedBy: number; - serviceLines: number; updatedById: number; + mhPaidAmount: number; + copayment: number; + adjustment: number; + updatedAt: number; + serviceLines: number; + commissionBatchItems: number; + updatedBy: number; } | undefined; _min?: { id: number | null; createdAt: Date | null; patientId: number | null; - notes: string | null; + npiProviderId: number | null; userId: number | null; claimId: number | null; + notes: string | null; + icn: string | null; totalBilled: number | null; totalPaid: number | null; totalAdjusted: number | null; totalDue: number | null; - icn: string | null; - updatedAt: Date | null; updatedById: number | null; + mhPaidAmount: number | null; + copayment: number | null; + adjustment: number | null; + updatedAt: Date | null; } | null | undefined; _max?: { id: number | null; createdAt: Date | null; patientId: number | null; - notes: string | null; + npiProviderId: number | null; userId: number | null; claimId: number | null; + notes: string | null; + icn: string | null; totalBilled: number | null; totalPaid: number | null; totalAdjusted: number | null; totalDue: number | null; - icn: string | null; - updatedAt: Date | null; updatedById: number | null; + mhPaidAmount: number | null; + copayment: number | null; + adjustment: number | null; + updatedAt: Date | null; } | null | undefined; _avg?: { id: number | null; patientId: number | null; + npiProviderId: number | null; userId: number | null; claimId: number | null; totalBilled: number | null; @@ -345,10 +448,14 @@ export declare const PaymentAggregateResultSchema: z.ZodObject<{ totalAdjusted: number | null; totalDue: number | null; updatedById: number | null; + mhPaidAmount: number | null; + copayment: number | null; + adjustment: number | null; } | null | undefined; _sum?: { id: number | null; patientId: number | null; + npiProviderId: number | null; userId: number | null; claimId: number | null; totalBilled: number | null; @@ -356,6 +463,9 @@ export declare const PaymentAggregateResultSchema: z.ZodObject<{ totalAdjusted: number | null; totalDue: number | null; updatedById: number | null; + mhPaidAmount: number | null; + copayment: number | null; + adjustment: number | null; } | null | undefined; }>; //# sourceMappingURL=PaymentAggregateResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/PaymentAggregateResult.schema.d.ts.map b/packages/db/shared/schemas/results/PaymentAggregateResult.schema.d.ts.map index 297f6a8b..3fb806c6 100644 --- a/packages/db/shared/schemas/results/PaymentAggregateResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/PaymentAggregateResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"PaymentAggregateResult.schema.d.ts","sourceRoot":"","sources":["PaymentAggregateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAwEb,CAAC"} \ No newline at end of file +{"version":3,"file":"PaymentAggregateResult.schema.d.ts","sourceRoot":"","sources":["PaymentAggregateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8Fb,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/PaymentCreateResult.schema.d.ts b/packages/db/shared/schemas/results/PaymentCreateResult.schema.d.ts index fd0bdafe..942371a6 100644 --- a/packages/db/shared/schemas/results/PaymentCreateResult.schema.d.ts +++ b/packages/db/shared/schemas/results/PaymentCreateResult.schema.d.ts @@ -5,10 +5,14 @@ export declare const PaymentCreateResultSchema: z.ZodObject<{ patientId: z.ZodNumber; userId: z.ZodNumber; updatedById: z.ZodOptional; + npiProviderId: z.ZodOptional; totalBilled: z.ZodNumber; totalPaid: z.ZodNumber; totalAdjusted: z.ZodNumber; totalDue: z.ZodNumber; + mhPaidAmount: z.ZodOptional; + copayment: z.ZodNumber; + adjustment: z.ZodNumber; status: z.ZodUnknown; notes: z.ZodOptional; icn: z.ZodOptional; @@ -17,8 +21,10 @@ export declare const PaymentCreateResultSchema: z.ZodObject<{ claim: z.ZodOptional; patient: z.ZodUnknown; updatedBy: z.ZodOptional; + npiProvider: z.ZodOptional; serviceLineTransactions: z.ZodArray; serviceLines: z.ZodArray; + commissionBatchItems: z.ZodArray; }, "strip", z.ZodTypeAny, { id: number; createdAt: Date; @@ -29,16 +35,22 @@ export declare const PaymentCreateResultSchema: z.ZodObject<{ totalAdjusted: number; totalDue: number; serviceLineTransactions: unknown[]; + copayment: number; + adjustment: number; updatedAt: Date; serviceLines: unknown[]; + commissionBatchItems: unknown[]; status?: unknown; patient?: unknown; - notes?: string | undefined; + npiProviderId?: number | undefined; + npiProvider?: unknown; claimId?: number | undefined; claim?: unknown; + notes?: string | undefined; icn?: string | undefined; - updatedBy?: unknown; updatedById?: number | undefined; + mhPaidAmount?: number | undefined; + updatedBy?: unknown; }, { id: number; createdAt: Date; @@ -49,15 +61,21 @@ export declare const PaymentCreateResultSchema: z.ZodObject<{ totalAdjusted: number; totalDue: number; serviceLineTransactions: unknown[]; + copayment: number; + adjustment: number; updatedAt: Date; serviceLines: unknown[]; + commissionBatchItems: unknown[]; status?: unknown; patient?: unknown; - notes?: string | undefined; + npiProviderId?: number | undefined; + npiProvider?: unknown; claimId?: number | undefined; claim?: unknown; + notes?: string | undefined; icn?: string | undefined; - updatedBy?: unknown; updatedById?: number | undefined; + mhPaidAmount?: number | undefined; + updatedBy?: unknown; }>; //# sourceMappingURL=PaymentCreateResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/PaymentCreateResult.schema.d.ts.map b/packages/db/shared/schemas/results/PaymentCreateResult.schema.d.ts.map index 9ecdba81..a0602f49 100644 --- a/packages/db/shared/schemas/results/PaymentCreateResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/PaymentCreateResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"PaymentCreateResult.schema.d.ts","sourceRoot":"","sources":["PaymentCreateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoBpC,CAAC"} \ No newline at end of file +{"version":3,"file":"PaymentCreateResult.schema.d.ts","sourceRoot":"","sources":["PaymentCreateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0BpC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/PaymentDeleteResult.schema.d.ts b/packages/db/shared/schemas/results/PaymentDeleteResult.schema.d.ts index 09e27b9a..9b19e5d3 100644 --- a/packages/db/shared/schemas/results/PaymentDeleteResult.schema.d.ts +++ b/packages/db/shared/schemas/results/PaymentDeleteResult.schema.d.ts @@ -5,10 +5,14 @@ export declare const PaymentDeleteResultSchema: z.ZodNullable; + npiProviderId: z.ZodOptional; totalBilled: z.ZodNumber; totalPaid: z.ZodNumber; totalAdjusted: z.ZodNumber; totalDue: z.ZodNumber; + mhPaidAmount: z.ZodOptional; + copayment: z.ZodNumber; + adjustment: z.ZodNumber; status: z.ZodUnknown; notes: z.ZodOptional; icn: z.ZodOptional; @@ -17,8 +21,10 @@ export declare const PaymentDeleteResultSchema: z.ZodNullable; patient: z.ZodUnknown; updatedBy: z.ZodOptional; + npiProvider: z.ZodOptional; serviceLineTransactions: z.ZodArray; serviceLines: z.ZodArray; + commissionBatchItems: z.ZodArray; }, "strip", z.ZodTypeAny, { id: number; createdAt: Date; @@ -29,16 +35,22 @@ export declare const PaymentDeleteResultSchema: z.ZodNullable>; //# sourceMappingURL=PaymentDeleteResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/PaymentDeleteResult.schema.d.ts.map b/packages/db/shared/schemas/results/PaymentDeleteResult.schema.d.ts.map index d9d50a24..2c8f142f 100644 --- a/packages/db/shared/schemas/results/PaymentDeleteResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/PaymentDeleteResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"PaymentDeleteResult.schema.d.ts","sourceRoot":"","sources":["PaymentDeleteResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoBnC,CAAC"} \ No newline at end of file +{"version":3,"file":"PaymentDeleteResult.schema.d.ts","sourceRoot":"","sources":["PaymentDeleteResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BnC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/PaymentFindFirstResult.schema.d.ts b/packages/db/shared/schemas/results/PaymentFindFirstResult.schema.d.ts index 5726a2fb..0e3d0032 100644 --- a/packages/db/shared/schemas/results/PaymentFindFirstResult.schema.d.ts +++ b/packages/db/shared/schemas/results/PaymentFindFirstResult.schema.d.ts @@ -5,10 +5,14 @@ export declare const PaymentFindFirstResultSchema: z.ZodNullable; + npiProviderId: z.ZodOptional; totalBilled: z.ZodNumber; totalPaid: z.ZodNumber; totalAdjusted: z.ZodNumber; totalDue: z.ZodNumber; + mhPaidAmount: z.ZodOptional; + copayment: z.ZodNumber; + adjustment: z.ZodNumber; status: z.ZodUnknown; notes: z.ZodOptional; icn: z.ZodOptional; @@ -17,8 +21,10 @@ export declare const PaymentFindFirstResultSchema: z.ZodNullable; patient: z.ZodUnknown; updatedBy: z.ZodOptional; + npiProvider: z.ZodOptional; serviceLineTransactions: z.ZodArray; serviceLines: z.ZodArray; + commissionBatchItems: z.ZodArray; }, "strip", z.ZodTypeAny, { id: number; createdAt: Date; @@ -29,16 +35,22 @@ export declare const PaymentFindFirstResultSchema: z.ZodNullable>; //# sourceMappingURL=PaymentFindFirstResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/PaymentFindFirstResult.schema.d.ts.map b/packages/db/shared/schemas/results/PaymentFindFirstResult.schema.d.ts.map index b74fe83f..c54ebf43 100644 --- a/packages/db/shared/schemas/results/PaymentFindFirstResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/PaymentFindFirstResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"PaymentFindFirstResult.schema.d.ts","sourceRoot":"","sources":["PaymentFindFirstResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoBtC,CAAC"} \ No newline at end of file +{"version":3,"file":"PaymentFindFirstResult.schema.d.ts","sourceRoot":"","sources":["PaymentFindFirstResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BtC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/PaymentFindManyResult.schema.d.ts b/packages/db/shared/schemas/results/PaymentFindManyResult.schema.d.ts index d5375d56..4b6e073a 100644 --- a/packages/db/shared/schemas/results/PaymentFindManyResult.schema.d.ts +++ b/packages/db/shared/schemas/results/PaymentFindManyResult.schema.d.ts @@ -6,10 +6,14 @@ export declare const PaymentFindManyResultSchema: z.ZodObject<{ patientId: z.ZodNumber; userId: z.ZodNumber; updatedById: z.ZodOptional; + npiProviderId: z.ZodOptional; totalBilled: z.ZodNumber; totalPaid: z.ZodNumber; totalAdjusted: z.ZodNumber; totalDue: z.ZodNumber; + mhPaidAmount: z.ZodOptional; + copayment: z.ZodNumber; + adjustment: z.ZodNumber; status: z.ZodUnknown; notes: z.ZodOptional; icn: z.ZodOptional; @@ -18,8 +22,10 @@ export declare const PaymentFindManyResultSchema: z.ZodObject<{ claim: z.ZodOptional; patient: z.ZodUnknown; updatedBy: z.ZodOptional; + npiProvider: z.ZodOptional; serviceLineTransactions: z.ZodArray; serviceLines: z.ZodArray; + commissionBatchItems: z.ZodArray; }, "strip", z.ZodTypeAny, { id: number; createdAt: Date; @@ -30,16 +36,22 @@ export declare const PaymentFindManyResultSchema: z.ZodObject<{ totalAdjusted: number; totalDue: number; serviceLineTransactions: unknown[]; + copayment: number; + adjustment: number; updatedAt: Date; serviceLines: unknown[]; + commissionBatchItems: unknown[]; status?: unknown; patient?: unknown; - notes?: string | undefined; + npiProviderId?: number | undefined; + npiProvider?: unknown; claimId?: number | undefined; claim?: unknown; + notes?: string | undefined; icn?: string | undefined; - updatedBy?: unknown; updatedById?: number | undefined; + mhPaidAmount?: number | undefined; + updatedBy?: unknown; }, { id: number; createdAt: Date; @@ -50,16 +62,22 @@ export declare const PaymentFindManyResultSchema: z.ZodObject<{ totalAdjusted: number; totalDue: number; serviceLineTransactions: unknown[]; + copayment: number; + adjustment: number; updatedAt: Date; serviceLines: unknown[]; + commissionBatchItems: unknown[]; status?: unknown; patient?: unknown; - notes?: string | undefined; + npiProviderId?: number | undefined; + npiProvider?: unknown; claimId?: number | undefined; claim?: unknown; + notes?: string | undefined; icn?: string | undefined; - updatedBy?: unknown; updatedById?: number | undefined; + mhPaidAmount?: number | undefined; + updatedBy?: unknown; }>, "many">; pagination: z.ZodObject<{ page: z.ZodNumber; @@ -94,16 +112,22 @@ export declare const PaymentFindManyResultSchema: z.ZodObject<{ totalAdjusted: number; totalDue: number; serviceLineTransactions: unknown[]; + copayment: number; + adjustment: number; updatedAt: Date; serviceLines: unknown[]; + commissionBatchItems: unknown[]; status?: unknown; patient?: unknown; - notes?: string | undefined; + npiProviderId?: number | undefined; + npiProvider?: unknown; claimId?: number | undefined; claim?: unknown; + notes?: string | undefined; icn?: string | undefined; - updatedBy?: unknown; updatedById?: number | undefined; + mhPaidAmount?: number | undefined; + updatedBy?: unknown; }[]; pagination: { page: number; @@ -124,16 +148,22 @@ export declare const PaymentFindManyResultSchema: z.ZodObject<{ totalAdjusted: number; totalDue: number; serviceLineTransactions: unknown[]; + copayment: number; + adjustment: number; updatedAt: Date; serviceLines: unknown[]; + commissionBatchItems: unknown[]; status?: unknown; patient?: unknown; - notes?: string | undefined; + npiProviderId?: number | undefined; + npiProvider?: unknown; claimId?: number | undefined; claim?: unknown; + notes?: string | undefined; icn?: string | undefined; - updatedBy?: unknown; updatedById?: number | undefined; + mhPaidAmount?: number | undefined; + updatedBy?: unknown; }[]; pagination: { page: number; diff --git a/packages/db/shared/schemas/results/PaymentFindManyResult.schema.d.ts.map b/packages/db/shared/schemas/results/PaymentFindManyResult.schema.d.ts.map index b8268716..74e4d939 100644 --- a/packages/db/shared/schemas/results/PaymentFindManyResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/PaymentFindManyResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"PaymentFindManyResult.schema.d.ts","sourceRoot":"","sources":["PaymentFindManyResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8BtC,CAAC"} \ No newline at end of file +{"version":3,"file":"PaymentFindManyResult.schema.d.ts","sourceRoot":"","sources":["PaymentFindManyResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoCtC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/PaymentFindUniqueResult.schema.d.ts b/packages/db/shared/schemas/results/PaymentFindUniqueResult.schema.d.ts index aeed06b4..3b5a94fa 100644 --- a/packages/db/shared/schemas/results/PaymentFindUniqueResult.schema.d.ts +++ b/packages/db/shared/schemas/results/PaymentFindUniqueResult.schema.d.ts @@ -5,10 +5,14 @@ export declare const PaymentFindUniqueResultSchema: z.ZodNullable; + npiProviderId: z.ZodOptional; totalBilled: z.ZodNumber; totalPaid: z.ZodNumber; totalAdjusted: z.ZodNumber; totalDue: z.ZodNumber; + mhPaidAmount: z.ZodOptional; + copayment: z.ZodNumber; + adjustment: z.ZodNumber; status: z.ZodUnknown; notes: z.ZodOptional; icn: z.ZodOptional; @@ -17,8 +21,10 @@ export declare const PaymentFindUniqueResultSchema: z.ZodNullable; patient: z.ZodUnknown; updatedBy: z.ZodOptional; + npiProvider: z.ZodOptional; serviceLineTransactions: z.ZodArray; serviceLines: z.ZodArray; + commissionBatchItems: z.ZodArray; }, "strip", z.ZodTypeAny, { id: number; createdAt: Date; @@ -29,16 +35,22 @@ export declare const PaymentFindUniqueResultSchema: z.ZodNullable>; //# sourceMappingURL=PaymentFindUniqueResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/PaymentFindUniqueResult.schema.d.ts.map b/packages/db/shared/schemas/results/PaymentFindUniqueResult.schema.d.ts.map index 830d9d9e..d7f6fcf0 100644 --- a/packages/db/shared/schemas/results/PaymentFindUniqueResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/PaymentFindUniqueResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"PaymentFindUniqueResult.schema.d.ts","sourceRoot":"","sources":["PaymentFindUniqueResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoBvC,CAAC"} \ No newline at end of file +{"version":3,"file":"PaymentFindUniqueResult.schema.d.ts","sourceRoot":"","sources":["PaymentFindUniqueResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BvC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/PaymentGroupByResult.schema.d.ts b/packages/db/shared/schemas/results/PaymentGroupByResult.schema.d.ts index 5ebdf96b..9200a3fb 100644 --- a/packages/db/shared/schemas/results/PaymentGroupByResult.schema.d.ts +++ b/packages/db/shared/schemas/results/PaymentGroupByResult.schema.d.ts @@ -5,10 +5,14 @@ export declare const PaymentGroupByResultSchema: z.ZodArray>; _sum: z.ZodOptional; @@ -80,13 +102,18 @@ export declare const PaymentGroupByResultSchema: z.ZodArray; userId: z.ZodNullable; updatedById: z.ZodNullable; + npiProviderId: z.ZodNullable; totalBilled: z.ZodNullable; totalPaid: z.ZodNullable; totalAdjusted: z.ZodNullable; totalDue: z.ZodNullable; + mhPaidAmount: z.ZodNullable; + copayment: z.ZodNullable; + adjustment: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; patientId: number | null; + npiProviderId: number | null; userId: number | null; claimId: number | null; totalBilled: number | null; @@ -94,9 +121,13 @@ export declare const PaymentGroupByResultSchema: z.ZodArray>>; _avg: z.ZodOptional; @@ -111,13 +145,18 @@ export declare const PaymentGroupByResultSchema: z.ZodArray; userId: z.ZodNullable; updatedById: z.ZodNullable; + npiProviderId: z.ZodNullable; totalBilled: z.ZodNullable; totalPaid: z.ZodNullable; totalAdjusted: z.ZodNullable; totalDue: z.ZodNullable; + mhPaidAmount: z.ZodNullable; + copayment: z.ZodNullable; + adjustment: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; patientId: number | null; + npiProviderId: number | null; userId: number | null; claimId: number | null; totalBilled: number | null; @@ -125,9 +164,13 @@ export declare const PaymentGroupByResultSchema: z.ZodArray>>; _min: z.ZodOptional; @@ -142,10 +188,14 @@ export declare const PaymentGroupByResultSchema: z.ZodArray; userId: z.ZodNullable; updatedById: z.ZodNullable; + npiProviderId: z.ZodNullable; totalBilled: z.ZodNullable; totalPaid: z.ZodNullable; totalAdjusted: z.ZodNullable; totalDue: z.ZodNullable; + mhPaidAmount: z.ZodNullable; + copayment: z.ZodNullable; + adjustment: z.ZodNullable; notes: z.ZodNullable; icn: z.ZodNullable; createdAt: z.ZodNullable; @@ -154,30 +204,38 @@ export declare const PaymentGroupByResultSchema: z.ZodArray>>; _max: z.ZodOptional; @@ -185,10 +243,14 @@ export declare const PaymentGroupByResultSchema: z.ZodArray; userId: z.ZodNullable; updatedById: z.ZodNullable; + npiProviderId: z.ZodNullable; totalBilled: z.ZodNullable; totalPaid: z.ZodNullable; totalAdjusted: z.ZodNullable; totalDue: z.ZodNullable; + mhPaidAmount: z.ZodNullable; + copayment: z.ZodNullable; + adjustment: z.ZodNullable; notes: z.ZodNullable; icn: z.ZodNullable; createdAt: z.ZodNullable; @@ -197,99 +259,126 @@ export declare const PaymentGroupByResultSchema: z.ZodArray>>; }, "strip", z.ZodTypeAny, { id: number; createdAt: Date; patientId: number; - notes: string; + npiProviderId: number; userId: number; claimId: number; + notes: string; + icn: string; totalBilled: number; totalPaid: number; totalAdjusted: number; totalDue: number; - icn: string; - updatedAt: Date; updatedById: number; + mhPaidAmount: number; + copayment: number; + adjustment: number; + updatedAt: Date; _count?: { status: number; id: number; createdAt: number; patientId: number; patient: number; - notes: number; + npiProviderId: number; + npiProvider: number; userId: number; claimId: number; claim: number; + notes: number; + icn: number; totalBilled: number; totalPaid: number; totalAdjusted: number; totalDue: number; serviceLineTransactions: number; - icn: number; - updatedAt: number; - updatedBy: number; - serviceLines: number; updatedById: number; + mhPaidAmount: number; + copayment: number; + adjustment: number; + updatedAt: number; + serviceLines: number; + commissionBatchItems: number; + updatedBy: number; } | undefined; _min?: { id: number | null; createdAt: Date | null; patientId: number | null; - notes: string | null; + npiProviderId: number | null; userId: number | null; claimId: number | null; + notes: string | null; + icn: string | null; totalBilled: number | null; totalPaid: number | null; totalAdjusted: number | null; totalDue: number | null; - icn: string | null; - updatedAt: Date | null; updatedById: number | null; + mhPaidAmount: number | null; + copayment: number | null; + adjustment: number | null; + updatedAt: Date | null; } | null | undefined; _max?: { id: number | null; createdAt: Date | null; patientId: number | null; - notes: string | null; + npiProviderId: number | null; userId: number | null; claimId: number | null; + notes: string | null; + icn: string | null; totalBilled: number | null; totalPaid: number | null; totalAdjusted: number | null; totalDue: number | null; - icn: string | null; - updatedAt: Date | null; updatedById: number | null; + mhPaidAmount: number | null; + copayment: number | null; + adjustment: number | null; + updatedAt: Date | null; } | null | undefined; _avg?: { id: number | null; patientId: number | null; + npiProviderId: number | null; userId: number | null; claimId: number | null; totalBilled: number | null; @@ -297,10 +386,14 @@ export declare const PaymentGroupByResultSchema: z.ZodArray, "many">; //# sourceMappingURL=PaymentGroupByResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/PaymentGroupByResult.schema.d.ts.map b/packages/db/shared/schemas/results/PaymentGroupByResult.schema.d.ts.map index 53bb4a3f..e3c6edc9 100644 --- a/packages/db/shared/schemas/results/PaymentGroupByResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/PaymentGroupByResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"PaymentGroupByResult.schema.d.ts","sourceRoot":"","sources":["PaymentGroupByResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAuFpC,CAAC"} \ No newline at end of file +{"version":3,"file":"PaymentGroupByResult.schema.d.ts","sourceRoot":"","sources":["PaymentGroupByResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAiHpC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/PaymentUpdateResult.schema.d.ts b/packages/db/shared/schemas/results/PaymentUpdateResult.schema.d.ts index a9983ec6..11a2a998 100644 --- a/packages/db/shared/schemas/results/PaymentUpdateResult.schema.d.ts +++ b/packages/db/shared/schemas/results/PaymentUpdateResult.schema.d.ts @@ -5,10 +5,14 @@ export declare const PaymentUpdateResultSchema: z.ZodNullable; + npiProviderId: z.ZodOptional; totalBilled: z.ZodNumber; totalPaid: z.ZodNumber; totalAdjusted: z.ZodNumber; totalDue: z.ZodNumber; + mhPaidAmount: z.ZodOptional; + copayment: z.ZodNumber; + adjustment: z.ZodNumber; status: z.ZodUnknown; notes: z.ZodOptional; icn: z.ZodOptional; @@ -17,8 +21,10 @@ export declare const PaymentUpdateResultSchema: z.ZodNullable; patient: z.ZodUnknown; updatedBy: z.ZodOptional; + npiProvider: z.ZodOptional; serviceLineTransactions: z.ZodArray; serviceLines: z.ZodArray; + commissionBatchItems: z.ZodArray; }, "strip", z.ZodTypeAny, { id: number; createdAt: Date; @@ -29,16 +35,22 @@ export declare const PaymentUpdateResultSchema: z.ZodNullable>; //# sourceMappingURL=PaymentUpdateResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/PaymentUpdateResult.schema.d.ts.map b/packages/db/shared/schemas/results/PaymentUpdateResult.schema.d.ts.map index 20f42f28..e77c29f3 100644 --- a/packages/db/shared/schemas/results/PaymentUpdateResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/PaymentUpdateResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"PaymentUpdateResult.schema.d.ts","sourceRoot":"","sources":["PaymentUpdateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoBnC,CAAC"} \ No newline at end of file +{"version":3,"file":"PaymentUpdateResult.schema.d.ts","sourceRoot":"","sources":["PaymentUpdateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BnC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/PaymentUpsertResult.schema.d.ts b/packages/db/shared/schemas/results/PaymentUpsertResult.schema.d.ts index 756c82a3..82870e56 100644 --- a/packages/db/shared/schemas/results/PaymentUpsertResult.schema.d.ts +++ b/packages/db/shared/schemas/results/PaymentUpsertResult.schema.d.ts @@ -5,10 +5,14 @@ export declare const PaymentUpsertResultSchema: z.ZodObject<{ patientId: z.ZodNumber; userId: z.ZodNumber; updatedById: z.ZodOptional; + npiProviderId: z.ZodOptional; totalBilled: z.ZodNumber; totalPaid: z.ZodNumber; totalAdjusted: z.ZodNumber; totalDue: z.ZodNumber; + mhPaidAmount: z.ZodOptional; + copayment: z.ZodNumber; + adjustment: z.ZodNumber; status: z.ZodUnknown; notes: z.ZodOptional; icn: z.ZodOptional; @@ -17,8 +21,10 @@ export declare const PaymentUpsertResultSchema: z.ZodObject<{ claim: z.ZodOptional; patient: z.ZodUnknown; updatedBy: z.ZodOptional; + npiProvider: z.ZodOptional; serviceLineTransactions: z.ZodArray; serviceLines: z.ZodArray; + commissionBatchItems: z.ZodArray; }, "strip", z.ZodTypeAny, { id: number; createdAt: Date; @@ -29,16 +35,22 @@ export declare const PaymentUpsertResultSchema: z.ZodObject<{ totalAdjusted: number; totalDue: number; serviceLineTransactions: unknown[]; + copayment: number; + adjustment: number; updatedAt: Date; serviceLines: unknown[]; + commissionBatchItems: unknown[]; status?: unknown; patient?: unknown; - notes?: string | undefined; + npiProviderId?: number | undefined; + npiProvider?: unknown; claimId?: number | undefined; claim?: unknown; + notes?: string | undefined; icn?: string | undefined; - updatedBy?: unknown; updatedById?: number | undefined; + mhPaidAmount?: number | undefined; + updatedBy?: unknown; }, { id: number; createdAt: Date; @@ -49,15 +61,21 @@ export declare const PaymentUpsertResultSchema: z.ZodObject<{ totalAdjusted: number; totalDue: number; serviceLineTransactions: unknown[]; + copayment: number; + adjustment: number; updatedAt: Date; serviceLines: unknown[]; + commissionBatchItems: unknown[]; status?: unknown; patient?: unknown; - notes?: string | undefined; + npiProviderId?: number | undefined; + npiProvider?: unknown; claimId?: number | undefined; claim?: unknown; + notes?: string | undefined; icn?: string | undefined; - updatedBy?: unknown; updatedById?: number | undefined; + mhPaidAmount?: number | undefined; + updatedBy?: unknown; }>; //# sourceMappingURL=PaymentUpsertResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/PaymentUpsertResult.schema.d.ts.map b/packages/db/shared/schemas/results/PaymentUpsertResult.schema.d.ts.map index a63ef35e..03b5ef54 100644 --- a/packages/db/shared/schemas/results/PaymentUpsertResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/PaymentUpsertResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"PaymentUpsertResult.schema.d.ts","sourceRoot":"","sources":["PaymentUpsertResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoBpC,CAAC"} \ No newline at end of file +{"version":3,"file":"PaymentUpsertResult.schema.d.ts","sourceRoot":"","sources":["PaymentUpsertResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0BpC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/SeleniumSettingsAggregateResult.schema.js b/packages/db/shared/schemas/results/SeleniumSettingsAggregateResult.schema.js new file mode 100644 index 00000000..28ec1815 --- /dev/null +++ b/packages/db/shared/schemas/results/SeleniumSettingsAggregateResult.schema.js @@ -0,0 +1,61 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsAggregateResultSchema = void 0; +const z = __importStar(require("zod")); +exports.SeleniumSettingsAggregateResultSchema = z.object({ _count: z.object({ + id: z.number(), + userId: z.number(), + paymentGroupId: z.number(), + user: z.number() + }).optional(), + _sum: z.object({ + id: z.number().nullable(), + userId: z.number().nullable() + }).nullable().optional(), + _avg: z.object({ + id: z.number().nullable(), + userId: z.number().nullable() + }).nullable().optional(), + _min: z.object({ + id: z.number().int().nullable(), + userId: z.number().int().nullable(), + paymentGroupId: z.string().nullable() + }).nullable().optional(), + _max: z.object({ + id: z.number().int().nullable(), + userId: z.number().int().nullable(), + paymentGroupId: z.string().nullable() + }).nullable().optional() }); diff --git a/packages/db/shared/schemas/results/SeleniumSettingsCountResult.schema.js b/packages/db/shared/schemas/results/SeleniumSettingsCountResult.schema.js new file mode 100644 index 00000000..d8ee6fe7 --- /dev/null +++ b/packages/db/shared/schemas/results/SeleniumSettingsCountResult.schema.js @@ -0,0 +1,38 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsCountResultSchema = void 0; +const z = __importStar(require("zod")); +exports.SeleniumSettingsCountResultSchema = z.number(); diff --git a/packages/db/shared/schemas/results/SeleniumSettingsCreateManyResult.schema.js b/packages/db/shared/schemas/results/SeleniumSettingsCreateManyResult.schema.js new file mode 100644 index 00000000..d9b87666 --- /dev/null +++ b/packages/db/shared/schemas/results/SeleniumSettingsCreateManyResult.schema.js @@ -0,0 +1,40 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsCreateManyResultSchema = void 0; +const z = __importStar(require("zod")); +exports.SeleniumSettingsCreateManyResultSchema = z.object({ + count: z.number() +}); diff --git a/packages/db/shared/schemas/results/SeleniumSettingsCreateResult.schema.js b/packages/db/shared/schemas/results/SeleniumSettingsCreateResult.schema.js new file mode 100644 index 00000000..522ff95b --- /dev/null +++ b/packages/db/shared/schemas/results/SeleniumSettingsCreateResult.schema.js @@ -0,0 +1,43 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsCreateResultSchema = void 0; +const z = __importStar(require("zod")); +exports.SeleniumSettingsCreateResultSchema = z.object({ + id: z.number().int(), + userId: z.number().int(), + paymentGroupId: z.string(), + user: z.unknown() +}); diff --git a/packages/db/shared/schemas/results/SeleniumSettingsDeleteManyResult.schema.js b/packages/db/shared/schemas/results/SeleniumSettingsDeleteManyResult.schema.js new file mode 100644 index 00000000..bd3b3e64 --- /dev/null +++ b/packages/db/shared/schemas/results/SeleniumSettingsDeleteManyResult.schema.js @@ -0,0 +1,40 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsDeleteManyResultSchema = void 0; +const z = __importStar(require("zod")); +exports.SeleniumSettingsDeleteManyResultSchema = z.object({ + count: z.number() +}); diff --git a/packages/db/shared/schemas/results/SeleniumSettingsDeleteResult.schema.js b/packages/db/shared/schemas/results/SeleniumSettingsDeleteResult.schema.js new file mode 100644 index 00000000..81834435 --- /dev/null +++ b/packages/db/shared/schemas/results/SeleniumSettingsDeleteResult.schema.js @@ -0,0 +1,43 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsDeleteResultSchema = void 0; +const z = __importStar(require("zod")); +exports.SeleniumSettingsDeleteResultSchema = z.nullable(z.object({ + id: z.number().int(), + userId: z.number().int(), + paymentGroupId: z.string(), + user: z.unknown() +})); diff --git a/packages/db/shared/schemas/results/SeleniumSettingsFindFirstResult.schema.js b/packages/db/shared/schemas/results/SeleniumSettingsFindFirstResult.schema.js new file mode 100644 index 00000000..ec75a9f0 --- /dev/null +++ b/packages/db/shared/schemas/results/SeleniumSettingsFindFirstResult.schema.js @@ -0,0 +1,43 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsFindFirstResultSchema = void 0; +const z = __importStar(require("zod")); +exports.SeleniumSettingsFindFirstResultSchema = z.nullable(z.object({ + id: z.number().int(), + userId: z.number().int(), + paymentGroupId: z.string(), + user: z.unknown() +})); diff --git a/packages/db/shared/schemas/results/SeleniumSettingsFindManyResult.schema.js b/packages/db/shared/schemas/results/SeleniumSettingsFindManyResult.schema.js new file mode 100644 index 00000000..ea32d243 --- /dev/null +++ b/packages/db/shared/schemas/results/SeleniumSettingsFindManyResult.schema.js @@ -0,0 +1,53 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsFindManyResultSchema = void 0; +const z = __importStar(require("zod")); +exports.SeleniumSettingsFindManyResultSchema = z.object({ + data: z.array(z.object({ + id: z.number().int(), + userId: z.number().int(), + paymentGroupId: z.string(), + user: z.unknown() + })), + pagination: z.object({ + page: z.number().int().min(1), + pageSize: z.number().int().min(1), + total: z.number().int().min(0), + totalPages: z.number().int().min(0), + hasNext: z.boolean(), + hasPrev: z.boolean() + }) +}); diff --git a/packages/db/shared/schemas/results/SeleniumSettingsFindUniqueResult.schema.js b/packages/db/shared/schemas/results/SeleniumSettingsFindUniqueResult.schema.js new file mode 100644 index 00000000..456094cb --- /dev/null +++ b/packages/db/shared/schemas/results/SeleniumSettingsFindUniqueResult.schema.js @@ -0,0 +1,43 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsFindUniqueResultSchema = void 0; +const z = __importStar(require("zod")); +exports.SeleniumSettingsFindUniqueResultSchema = z.nullable(z.object({ + id: z.number().int(), + userId: z.number().int(), + paymentGroupId: z.string(), + user: z.unknown() +})); diff --git a/packages/db/shared/schemas/results/SeleniumSettingsGroupByResult.schema.js b/packages/db/shared/schemas/results/SeleniumSettingsGroupByResult.schema.js new file mode 100644 index 00000000..0e231add --- /dev/null +++ b/packages/db/shared/schemas/results/SeleniumSettingsGroupByResult.schema.js @@ -0,0 +1,66 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsGroupByResultSchema = void 0; +const z = __importStar(require("zod")); +exports.SeleniumSettingsGroupByResultSchema = z.array(z.object({ + id: z.number().int(), + userId: z.number().int(), + paymentGroupId: z.string(), + _count: z.object({ + id: z.number(), + userId: z.number(), + paymentGroupId: z.number(), + user: z.number() + }).optional(), + _sum: z.object({ + id: z.number().nullable(), + userId: z.number().nullable() + }).nullable().optional(), + _avg: z.object({ + id: z.number().nullable(), + userId: z.number().nullable() + }).nullable().optional(), + _min: z.object({ + id: z.number().int().nullable(), + userId: z.number().int().nullable(), + paymentGroupId: z.string().nullable() + }).nullable().optional(), + _max: z.object({ + id: z.number().int().nullable(), + userId: z.number().int().nullable(), + paymentGroupId: z.string().nullable() + }).nullable().optional() +})); diff --git a/packages/db/shared/schemas/results/SeleniumSettingsUpdateManyResult.schema.js b/packages/db/shared/schemas/results/SeleniumSettingsUpdateManyResult.schema.js new file mode 100644 index 00000000..65f57107 --- /dev/null +++ b/packages/db/shared/schemas/results/SeleniumSettingsUpdateManyResult.schema.js @@ -0,0 +1,40 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsUpdateManyResultSchema = void 0; +const z = __importStar(require("zod")); +exports.SeleniumSettingsUpdateManyResultSchema = z.object({ + count: z.number() +}); diff --git a/packages/db/shared/schemas/results/SeleniumSettingsUpdateResult.schema.js b/packages/db/shared/schemas/results/SeleniumSettingsUpdateResult.schema.js new file mode 100644 index 00000000..d0011d09 --- /dev/null +++ b/packages/db/shared/schemas/results/SeleniumSettingsUpdateResult.schema.js @@ -0,0 +1,43 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsUpdateResultSchema = void 0; +const z = __importStar(require("zod")); +exports.SeleniumSettingsUpdateResultSchema = z.nullable(z.object({ + id: z.number().int(), + userId: z.number().int(), + paymentGroupId: z.string(), + user: z.unknown() +})); diff --git a/packages/db/shared/schemas/results/SeleniumSettingsUpsertResult.schema.js b/packages/db/shared/schemas/results/SeleniumSettingsUpsertResult.schema.js new file mode 100644 index 00000000..81438b7e --- /dev/null +++ b/packages/db/shared/schemas/results/SeleniumSettingsUpsertResult.schema.js @@ -0,0 +1,43 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsUpsertResultSchema = void 0; +const z = __importStar(require("zod")); +exports.SeleniumSettingsUpsertResultSchema = z.object({ + id: z.number().int(), + userId: z.number().int(), + paymentGroupId: z.string(), + user: z.unknown() +}); diff --git a/packages/db/shared/schemas/results/ServiceLineAggregateResult.schema.d.ts b/packages/db/shared/schemas/results/ServiceLineAggregateResult.schema.d.ts index 2892ad31..c2d9bede 100644 --- a/packages/db/shared/schemas/results/ServiceLineAggregateResult.schema.d.ts +++ b/packages/db/shared/schemas/results/ServiceLineAggregateResult.schema.d.ts @@ -10,6 +10,9 @@ export declare const ServiceLineAggregateResultSchema: z.ZodObject<{ arch: z.ZodNumber; toothNumber: z.ZodNumber; toothSurface: z.ZodNumber; + icn: z.ZodNumber; + paidCode: z.ZodNumber; + allowedAmount: z.ZodNumber; totalBilled: z.ZodNumber; totalPaid: z.ZodNumber; totalAdjusted: z.ZodNumber; @@ -31,6 +34,9 @@ export declare const ServiceLineAggregateResultSchema: z.ZodObject<{ procedureDate: number; quad: number; arch: number; + icn: number; + paidCode: number; + allowedAmount: number; totalBilled: number; totalPaid: number; totalAdjusted: number; @@ -49,6 +55,9 @@ export declare const ServiceLineAggregateResultSchema: z.ZodObject<{ procedureDate: number; quad: number; arch: number; + icn: number; + paidCode: number; + allowedAmount: number; totalBilled: number; totalPaid: number; totalAdjusted: number; @@ -59,6 +68,7 @@ export declare const ServiceLineAggregateResultSchema: z.ZodObject<{ id: z.ZodNullable; claimId: z.ZodNullable; paymentId: z.ZodNullable; + allowedAmount: z.ZodNullable; totalBilled: z.ZodNullable; totalPaid: z.ZodNullable; totalAdjusted: z.ZodNullable; @@ -67,6 +77,7 @@ export declare const ServiceLineAggregateResultSchema: z.ZodObject<{ id: number | null; claimId: number | null; paymentId: number | null; + allowedAmount: number | null; totalBilled: number | null; totalPaid: number | null; totalAdjusted: number | null; @@ -75,6 +86,7 @@ export declare const ServiceLineAggregateResultSchema: z.ZodObject<{ id: number | null; claimId: number | null; paymentId: number | null; + allowedAmount: number | null; totalBilled: number | null; totalPaid: number | null; totalAdjusted: number | null; @@ -84,6 +96,7 @@ export declare const ServiceLineAggregateResultSchema: z.ZodObject<{ id: z.ZodNullable; claimId: z.ZodNullable; paymentId: z.ZodNullable; + allowedAmount: z.ZodNullable; totalBilled: z.ZodNullable; totalPaid: z.ZodNullable; totalAdjusted: z.ZodNullable; @@ -92,6 +105,7 @@ export declare const ServiceLineAggregateResultSchema: z.ZodObject<{ id: number | null; claimId: number | null; paymentId: number | null; + allowedAmount: number | null; totalBilled: number | null; totalPaid: number | null; totalAdjusted: number | null; @@ -100,6 +114,7 @@ export declare const ServiceLineAggregateResultSchema: z.ZodObject<{ id: number | null; claimId: number | null; paymentId: number | null; + allowedAmount: number | null; totalBilled: number | null; totalPaid: number | null; totalAdjusted: number | null; @@ -115,6 +130,9 @@ export declare const ServiceLineAggregateResultSchema: z.ZodObject<{ arch: z.ZodNullable; toothNumber: z.ZodNullable; toothSurface: z.ZodNullable; + icn: z.ZodNullable; + paidCode: z.ZodNullable; + allowedAmount: z.ZodNullable; totalBilled: z.ZodNullable; totalPaid: z.ZodNullable; totalAdjusted: z.ZodNullable; @@ -129,6 +147,9 @@ export declare const ServiceLineAggregateResultSchema: z.ZodObject<{ procedureDate: Date | null; quad: string | null; arch: string | null; + icn: string | null; + paidCode: string | null; + allowedAmount: number | null; totalBilled: number | null; totalPaid: number | null; totalAdjusted: number | null; @@ -143,6 +164,9 @@ export declare const ServiceLineAggregateResultSchema: z.ZodObject<{ procedureDate: Date | null; quad: string | null; arch: string | null; + icn: string | null; + paidCode: string | null; + allowedAmount: number | null; totalBilled: number | null; totalPaid: number | null; totalAdjusted: number | null; @@ -158,6 +182,9 @@ export declare const ServiceLineAggregateResultSchema: z.ZodObject<{ arch: z.ZodNullable; toothNumber: z.ZodNullable; toothSurface: z.ZodNullable; + icn: z.ZodNullable; + paidCode: z.ZodNullable; + allowedAmount: z.ZodNullable; totalBilled: z.ZodNullable; totalPaid: z.ZodNullable; totalAdjusted: z.ZodNullable; @@ -172,6 +199,9 @@ export declare const ServiceLineAggregateResultSchema: z.ZodObject<{ procedureDate: Date | null; quad: string | null; arch: string | null; + icn: string | null; + paidCode: string | null; + allowedAmount: number | null; totalBilled: number | null; totalPaid: number | null; totalAdjusted: number | null; @@ -186,6 +216,9 @@ export declare const ServiceLineAggregateResultSchema: z.ZodObject<{ procedureDate: Date | null; quad: string | null; arch: string | null; + icn: string | null; + paidCode: string | null; + allowedAmount: number | null; totalBilled: number | null; totalPaid: number | null; totalAdjusted: number | null; @@ -205,6 +238,9 @@ export declare const ServiceLineAggregateResultSchema: z.ZodObject<{ procedureDate: number; quad: number; arch: number; + icn: number; + paidCode: number; + allowedAmount: number; totalBilled: number; totalPaid: number; totalAdjusted: number; @@ -221,6 +257,9 @@ export declare const ServiceLineAggregateResultSchema: z.ZodObject<{ procedureDate: Date | null; quad: string | null; arch: string | null; + icn: string | null; + paidCode: string | null; + allowedAmount: number | null; totalBilled: number | null; totalPaid: number | null; totalAdjusted: number | null; @@ -236,6 +275,9 @@ export declare const ServiceLineAggregateResultSchema: z.ZodObject<{ procedureDate: Date | null; quad: string | null; arch: string | null; + icn: string | null; + paidCode: string | null; + allowedAmount: number | null; totalBilled: number | null; totalPaid: number | null; totalAdjusted: number | null; @@ -245,6 +287,7 @@ export declare const ServiceLineAggregateResultSchema: z.ZodObject<{ id: number | null; claimId: number | null; paymentId: number | null; + allowedAmount: number | null; totalBilled: number | null; totalPaid: number | null; totalAdjusted: number | null; @@ -254,6 +297,7 @@ export declare const ServiceLineAggregateResultSchema: z.ZodObject<{ id: number | null; claimId: number | null; paymentId: number | null; + allowedAmount: number | null; totalBilled: number | null; totalPaid: number | null; totalAdjusted: number | null; @@ -273,6 +317,9 @@ export declare const ServiceLineAggregateResultSchema: z.ZodObject<{ procedureDate: number; quad: number; arch: number; + icn: number; + paidCode: number; + allowedAmount: number; totalBilled: number; totalPaid: number; totalAdjusted: number; @@ -289,6 +336,9 @@ export declare const ServiceLineAggregateResultSchema: z.ZodObject<{ procedureDate: Date | null; quad: string | null; arch: string | null; + icn: string | null; + paidCode: string | null; + allowedAmount: number | null; totalBilled: number | null; totalPaid: number | null; totalAdjusted: number | null; @@ -304,6 +354,9 @@ export declare const ServiceLineAggregateResultSchema: z.ZodObject<{ procedureDate: Date | null; quad: string | null; arch: string | null; + icn: string | null; + paidCode: string | null; + allowedAmount: number | null; totalBilled: number | null; totalPaid: number | null; totalAdjusted: number | null; @@ -313,6 +366,7 @@ export declare const ServiceLineAggregateResultSchema: z.ZodObject<{ id: number | null; claimId: number | null; paymentId: number | null; + allowedAmount: number | null; totalBilled: number | null; totalPaid: number | null; totalAdjusted: number | null; @@ -322,6 +376,7 @@ export declare const ServiceLineAggregateResultSchema: z.ZodObject<{ id: number | null; claimId: number | null; paymentId: number | null; + allowedAmount: number | null; totalBilled: number | null; totalPaid: number | null; totalAdjusted: number | null; diff --git a/packages/db/shared/schemas/results/ServiceLineAggregateResult.schema.d.ts.map b/packages/db/shared/schemas/results/ServiceLineAggregateResult.schema.d.ts.map index 1415e2a5..258f2a65 100644 --- a/packages/db/shared/schemas/results/ServiceLineAggregateResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/ServiceLineAggregateResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ServiceLineAggregateResult.schema.d.ts","sourceRoot":"","sources":["ServiceLineAggregateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkEjB,CAAC"} \ No newline at end of file +{"version":3,"file":"ServiceLineAggregateResult.schema.d.ts","sourceRoot":"","sources":["ServiceLineAggregateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA6EjB,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/ServiceLineCreateResult.schema.d.ts b/packages/db/shared/schemas/results/ServiceLineCreateResult.schema.d.ts index b7ba550a..dc463f57 100644 --- a/packages/db/shared/schemas/results/ServiceLineCreateResult.schema.d.ts +++ b/packages/db/shared/schemas/results/ServiceLineCreateResult.schema.d.ts @@ -9,6 +9,9 @@ export declare const ServiceLineCreateResultSchema: z.ZodObject<{ arch: z.ZodOptional; toothNumber: z.ZodOptional; toothSurface: z.ZodOptional; + icn: z.ZodOptional; + paidCode: z.ZodOptional; + allowedAmount: z.ZodOptional; totalBilled: z.ZodNumber; totalPaid: z.ZodNumber; totalAdjusted: z.ZodNumber; @@ -35,6 +38,9 @@ export declare const ServiceLineCreateResultSchema: z.ZodObject<{ payment?: unknown; quad?: string | undefined; arch?: string | undefined; + icn?: string | undefined; + paidCode?: string | undefined; + allowedAmount?: number | undefined; }, { id: number; procedureCode: string; @@ -53,5 +59,8 @@ export declare const ServiceLineCreateResultSchema: z.ZodObject<{ payment?: unknown; quad?: string | undefined; arch?: string | undefined; + icn?: string | undefined; + paidCode?: string | undefined; + allowedAmount?: number | undefined; }>; //# sourceMappingURL=ServiceLineCreateResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/ServiceLineCreateResult.schema.d.ts.map b/packages/db/shared/schemas/results/ServiceLineCreateResult.schema.d.ts.map index b1144282..3c978daa 100644 --- a/packages/db/shared/schemas/results/ServiceLineCreateResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/ServiceLineCreateResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ServiceLineCreateResult.schema.d.ts","sourceRoot":"","sources":["ServiceLineCreateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkBxC,CAAC"} \ No newline at end of file +{"version":3,"file":"ServiceLineCreateResult.schema.d.ts","sourceRoot":"","sources":["ServiceLineCreateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqBxC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/ServiceLineDeleteResult.schema.d.ts b/packages/db/shared/schemas/results/ServiceLineDeleteResult.schema.d.ts index f1bcdb42..b5937376 100644 --- a/packages/db/shared/schemas/results/ServiceLineDeleteResult.schema.d.ts +++ b/packages/db/shared/schemas/results/ServiceLineDeleteResult.schema.d.ts @@ -9,6 +9,9 @@ export declare const ServiceLineDeleteResultSchema: z.ZodNullable; toothNumber: z.ZodOptional; toothSurface: z.ZodOptional; + icn: z.ZodOptional; + paidCode: z.ZodOptional; + allowedAmount: z.ZodOptional; totalBilled: z.ZodNumber; totalPaid: z.ZodNumber; totalAdjusted: z.ZodNumber; @@ -35,6 +38,9 @@ export declare const ServiceLineDeleteResultSchema: z.ZodNullable>; //# sourceMappingURL=ServiceLineDeleteResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/ServiceLineDeleteResult.schema.d.ts.map b/packages/db/shared/schemas/results/ServiceLineDeleteResult.schema.d.ts.map index 991e0990..0794578d 100644 --- a/packages/db/shared/schemas/results/ServiceLineDeleteResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/ServiceLineDeleteResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ServiceLineDeleteResult.schema.d.ts","sourceRoot":"","sources":["ServiceLineDeleteResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkBvC,CAAC"} \ No newline at end of file +{"version":3,"file":"ServiceLineDeleteResult.schema.d.ts","sourceRoot":"","sources":["ServiceLineDeleteResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqBvC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/ServiceLineFindFirstResult.schema.d.ts b/packages/db/shared/schemas/results/ServiceLineFindFirstResult.schema.d.ts index 6c03438b..e08fb2bf 100644 --- a/packages/db/shared/schemas/results/ServiceLineFindFirstResult.schema.d.ts +++ b/packages/db/shared/schemas/results/ServiceLineFindFirstResult.schema.d.ts @@ -9,6 +9,9 @@ export declare const ServiceLineFindFirstResultSchema: z.ZodNullable; toothNumber: z.ZodOptional; toothSurface: z.ZodOptional; + icn: z.ZodOptional; + paidCode: z.ZodOptional; + allowedAmount: z.ZodOptional; totalBilled: z.ZodNumber; totalPaid: z.ZodNumber; totalAdjusted: z.ZodNumber; @@ -35,6 +38,9 @@ export declare const ServiceLineFindFirstResultSchema: z.ZodNullable>; //# sourceMappingURL=ServiceLineFindFirstResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/ServiceLineFindFirstResult.schema.d.ts.map b/packages/db/shared/schemas/results/ServiceLineFindFirstResult.schema.d.ts.map index 86f6f1fb..2023a4cb 100644 --- a/packages/db/shared/schemas/results/ServiceLineFindFirstResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/ServiceLineFindFirstResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ServiceLineFindFirstResult.schema.d.ts","sourceRoot":"","sources":["ServiceLineFindFirstResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkB1C,CAAC"} \ No newline at end of file +{"version":3,"file":"ServiceLineFindFirstResult.schema.d.ts","sourceRoot":"","sources":["ServiceLineFindFirstResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqB1C,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/ServiceLineFindManyResult.schema.d.ts b/packages/db/shared/schemas/results/ServiceLineFindManyResult.schema.d.ts index e30a5c5e..a00d4ecb 100644 --- a/packages/db/shared/schemas/results/ServiceLineFindManyResult.schema.d.ts +++ b/packages/db/shared/schemas/results/ServiceLineFindManyResult.schema.d.ts @@ -10,6 +10,9 @@ export declare const ServiceLineFindManyResultSchema: z.ZodObject<{ arch: z.ZodOptional; toothNumber: z.ZodOptional; toothSurface: z.ZodOptional; + icn: z.ZodOptional; + paidCode: z.ZodOptional; + allowedAmount: z.ZodOptional; totalBilled: z.ZodNumber; totalPaid: z.ZodNumber; totalAdjusted: z.ZodNumber; @@ -36,6 +39,9 @@ export declare const ServiceLineFindManyResultSchema: z.ZodObject<{ payment?: unknown; quad?: string | undefined; arch?: string | undefined; + icn?: string | undefined; + paidCode?: string | undefined; + allowedAmount?: number | undefined; }, { id: number; procedureCode: string; @@ -54,6 +60,9 @@ export declare const ServiceLineFindManyResultSchema: z.ZodObject<{ payment?: unknown; quad?: string | undefined; arch?: string | undefined; + icn?: string | undefined; + paidCode?: string | undefined; + allowedAmount?: number | undefined; }>, "many">; pagination: z.ZodObject<{ page: z.ZodNumber; @@ -96,6 +105,9 @@ export declare const ServiceLineFindManyResultSchema: z.ZodObject<{ payment?: unknown; quad?: string | undefined; arch?: string | undefined; + icn?: string | undefined; + paidCode?: string | undefined; + allowedAmount?: number | undefined; }[]; pagination: { page: number; @@ -124,6 +136,9 @@ export declare const ServiceLineFindManyResultSchema: z.ZodObject<{ payment?: unknown; quad?: string | undefined; arch?: string | undefined; + icn?: string | undefined; + paidCode?: string | undefined; + allowedAmount?: number | undefined; }[]; pagination: { page: number; diff --git a/packages/db/shared/schemas/results/ServiceLineFindManyResult.schema.d.ts.map b/packages/db/shared/schemas/results/ServiceLineFindManyResult.schema.d.ts.map index ddabd16e..a2598fd4 100644 --- a/packages/db/shared/schemas/results/ServiceLineFindManyResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/ServiceLineFindManyResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ServiceLineFindManyResult.schema.d.ts","sourceRoot":"","sources":["ServiceLineFindManyResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4B1C,CAAC"} \ No newline at end of file +{"version":3,"file":"ServiceLineFindManyResult.schema.d.ts","sourceRoot":"","sources":["ServiceLineFindManyResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA+B1C,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/ServiceLineFindUniqueResult.schema.d.ts b/packages/db/shared/schemas/results/ServiceLineFindUniqueResult.schema.d.ts index ad5f1df6..0f3294b0 100644 --- a/packages/db/shared/schemas/results/ServiceLineFindUniqueResult.schema.d.ts +++ b/packages/db/shared/schemas/results/ServiceLineFindUniqueResult.schema.d.ts @@ -9,6 +9,9 @@ export declare const ServiceLineFindUniqueResultSchema: z.ZodNullable; toothNumber: z.ZodOptional; toothSurface: z.ZodOptional; + icn: z.ZodOptional; + paidCode: z.ZodOptional; + allowedAmount: z.ZodOptional; totalBilled: z.ZodNumber; totalPaid: z.ZodNumber; totalAdjusted: z.ZodNumber; @@ -35,6 +38,9 @@ export declare const ServiceLineFindUniqueResultSchema: z.ZodNullable>; //# sourceMappingURL=ServiceLineFindUniqueResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/ServiceLineFindUniqueResult.schema.d.ts.map b/packages/db/shared/schemas/results/ServiceLineFindUniqueResult.schema.d.ts.map index df9fc79a..9ae69b4f 100644 --- a/packages/db/shared/schemas/results/ServiceLineFindUniqueResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/ServiceLineFindUniqueResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ServiceLineFindUniqueResult.schema.d.ts","sourceRoot":"","sources":["ServiceLineFindUniqueResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkB3C,CAAC"} \ No newline at end of file +{"version":3,"file":"ServiceLineFindUniqueResult.schema.d.ts","sourceRoot":"","sources":["ServiceLineFindUniqueResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqB3C,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/ServiceLineGroupByResult.schema.d.ts b/packages/db/shared/schemas/results/ServiceLineGroupByResult.schema.d.ts index 6063163f..0518db3b 100644 --- a/packages/db/shared/schemas/results/ServiceLineGroupByResult.schema.d.ts +++ b/packages/db/shared/schemas/results/ServiceLineGroupByResult.schema.d.ts @@ -9,6 +9,9 @@ export declare const ServiceLineGroupByResultSchema: z.ZodArray; claimId: z.ZodNullable; paymentId: z.ZodNullable; + allowedAmount: z.ZodNullable; totalBilled: z.ZodNullable; totalPaid: z.ZodNullable; totalAdjusted: z.ZodNullable; @@ -80,6 +93,7 @@ export declare const ServiceLineGroupByResultSchema: z.ZodArray; claimId: z.ZodNullable; paymentId: z.ZodNullable; + allowedAmount: z.ZodNullable; totalBilled: z.ZodNullable; totalPaid: z.ZodNullable; totalAdjusted: z.ZodNullable; @@ -105,6 +121,7 @@ export declare const ServiceLineGroupByResultSchema: z.ZodArray; toothNumber: z.ZodNullable; toothSurface: z.ZodNullable; + icn: z.ZodNullable; + paidCode: z.ZodNullable; + allowedAmount: z.ZodNullable; totalBilled: z.ZodNullable; totalPaid: z.ZodNullable; totalAdjusted: z.ZodNullable; @@ -142,6 +163,9 @@ export declare const ServiceLineGroupByResultSchema: z.ZodArray; toothNumber: z.ZodNullable; toothSurface: z.ZodNullable; + icn: z.ZodNullable; + paidCode: z.ZodNullable; + allowedAmount: z.ZodNullable; totalBilled: z.ZodNullable; totalPaid: z.ZodNullable; totalAdjusted: z.ZodNullable; @@ -185,6 +215,9 @@ export declare const ServiceLineGroupByResultSchema: z.ZodArray>; @@ -51,16 +51,16 @@ export declare const ServiceLineTransactionAggregateResultSchema: z.ZodObject<{ adjustedAmount: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; - paymentId: number | null; + serviceLineId: number | null; paidAmount: number | null; adjustedAmount: number | null; - serviceLineId: number | null; + paymentId: number | null; }, { id: number | null; - paymentId: number | null; + serviceLineId: number | null; paidAmount: number | null; adjustedAmount: number | null; - serviceLineId: number | null; + paymentId: number | null; }>>>; _avg: z.ZodOptional; @@ -70,16 +70,16 @@ export declare const ServiceLineTransactionAggregateResultSchema: z.ZodObject<{ adjustedAmount: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; - paymentId: number | null; + serviceLineId: number | null; paidAmount: number | null; adjustedAmount: number | null; - serviceLineId: number | null; + paymentId: number | null; }, { id: number | null; - paymentId: number | null; + serviceLineId: number | null; paidAmount: number | null; adjustedAmount: number | null; - serviceLineId: number | null; + paymentId: number | null; }>>>; _min: z.ZodOptional; @@ -96,24 +96,24 @@ export declare const ServiceLineTransactionAggregateResultSchema: z.ZodObject<{ id: number | null; createdAt: Date | null; notes: string | null; - paymentId: number | null; + serviceLineId: number | null; transactionId: string | null; paidAmount: number | null; adjustedAmount: number | null; receivedDate: Date | null; payerName: string | null; - serviceLineId: number | null; + paymentId: number | null; }, { id: number | null; createdAt: Date | null; notes: string | null; - paymentId: number | null; + serviceLineId: number | null; transactionId: string | null; paidAmount: number | null; adjustedAmount: number | null; receivedDate: Date | null; payerName: string | null; - serviceLineId: number | null; + paymentId: number | null; }>>>; _max: z.ZodOptional; @@ -130,38 +130,38 @@ export declare const ServiceLineTransactionAggregateResultSchema: z.ZodObject<{ id: number | null; createdAt: Date | null; notes: string | null; - paymentId: number | null; + serviceLineId: number | null; transactionId: string | null; paidAmount: number | null; adjustedAmount: number | null; receivedDate: Date | null; payerName: string | null; - serviceLineId: number | null; + paymentId: number | null; }, { id: number | null; createdAt: Date | null; notes: string | null; - paymentId: number | null; + serviceLineId: number | null; transactionId: string | null; paidAmount: number | null; adjustedAmount: number | null; receivedDate: Date | null; payerName: string | null; - serviceLineId: number | null; + paymentId: number | null; }>>>; }, "strip", z.ZodTypeAny, { _count?: { id: number; createdAt: number; notes: number; - paymentId: number; + serviceLineId: number; transactionId: number; paidAmount: number; adjustedAmount: number; method: number; receivedDate: number; payerName: number; - serviceLineId: number; + paymentId: number; payment: number; serviceLine: number; } | undefined; @@ -169,53 +169,53 @@ export declare const ServiceLineTransactionAggregateResultSchema: z.ZodObject<{ id: number | null; createdAt: Date | null; notes: string | null; - paymentId: number | null; + serviceLineId: number | null; transactionId: string | null; paidAmount: number | null; adjustedAmount: number | null; receivedDate: Date | null; payerName: string | null; - serviceLineId: number | null; + paymentId: number | null; } | null | undefined; _max?: { id: number | null; createdAt: Date | null; notes: string | null; - paymentId: number | null; + serviceLineId: number | null; transactionId: string | null; paidAmount: number | null; adjustedAmount: number | null; receivedDate: Date | null; payerName: string | null; - serviceLineId: number | null; + paymentId: number | null; } | null | undefined; _avg?: { id: number | null; - paymentId: number | null; + serviceLineId: number | null; paidAmount: number | null; adjustedAmount: number | null; - serviceLineId: number | null; + paymentId: number | null; } | null | undefined; _sum?: { id: number | null; - paymentId: number | null; + serviceLineId: number | null; paidAmount: number | null; adjustedAmount: number | null; - serviceLineId: number | null; + paymentId: number | null; } | null | undefined; }, { _count?: { id: number; createdAt: number; notes: number; - paymentId: number; + serviceLineId: number; transactionId: number; paidAmount: number; adjustedAmount: number; method: number; receivedDate: number; payerName: number; - serviceLineId: number; + paymentId: number; payment: number; serviceLine: number; } | undefined; @@ -223,39 +223,39 @@ export declare const ServiceLineTransactionAggregateResultSchema: z.ZodObject<{ id: number | null; createdAt: Date | null; notes: string | null; - paymentId: number | null; + serviceLineId: number | null; transactionId: string | null; paidAmount: number | null; adjustedAmount: number | null; receivedDate: Date | null; payerName: string | null; - serviceLineId: number | null; + paymentId: number | null; } | null | undefined; _max?: { id: number | null; createdAt: Date | null; notes: string | null; - paymentId: number | null; + serviceLineId: number | null; transactionId: string | null; paidAmount: number | null; adjustedAmount: number | null; receivedDate: Date | null; payerName: string | null; - serviceLineId: number | null; + paymentId: number | null; } | null | undefined; _avg?: { id: number | null; - paymentId: number | null; + serviceLineId: number | null; paidAmount: number | null; adjustedAmount: number | null; - serviceLineId: number | null; + paymentId: number | null; } | null | undefined; _sum?: { id: number | null; - paymentId: number | null; + serviceLineId: number | null; paidAmount: number | null; adjustedAmount: number | null; - serviceLineId: number | null; + paymentId: number | null; } | null | undefined; }>; //# sourceMappingURL=ServiceLineTransactionAggregateResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/ServiceLineTransactionCreateResult.schema.d.ts b/packages/db/shared/schemas/results/ServiceLineTransactionCreateResult.schema.d.ts index 7d0a0bc4..4d15de00 100644 --- a/packages/db/shared/schemas/results/ServiceLineTransactionCreateResult.schema.d.ts +++ b/packages/db/shared/schemas/results/ServiceLineTransactionCreateResult.schema.d.ts @@ -16,11 +16,11 @@ export declare const ServiceLineTransactionCreateResultSchema: z.ZodObject<{ }, "strip", z.ZodTypeAny, { id: number; createdAt: Date; - paymentId: number; + serviceLineId: number; paidAmount: number; adjustedAmount: number; receivedDate: Date; - serviceLineId: number; + paymentId: number; notes?: string | undefined; transactionId?: string | undefined; method?: unknown; @@ -30,11 +30,11 @@ export declare const ServiceLineTransactionCreateResultSchema: z.ZodObject<{ }, { id: number; createdAt: Date; - paymentId: number; + serviceLineId: number; paidAmount: number; adjustedAmount: number; receivedDate: Date; - serviceLineId: number; + paymentId: number; notes?: string | undefined; transactionId?: string | undefined; method?: unknown; diff --git a/packages/db/shared/schemas/results/ServiceLineTransactionDeleteResult.schema.d.ts b/packages/db/shared/schemas/results/ServiceLineTransactionDeleteResult.schema.d.ts index 4074ee61..2e79c763 100644 --- a/packages/db/shared/schemas/results/ServiceLineTransactionDeleteResult.schema.d.ts +++ b/packages/db/shared/schemas/results/ServiceLineTransactionDeleteResult.schema.d.ts @@ -16,11 +16,11 @@ export declare const ServiceLineTransactionDeleteResultSchema: z.ZodNullable>; @@ -61,16 +61,16 @@ export declare const ServiceLineTransactionGroupByResultSchema: z.ZodArray; }, "strip", z.ZodTypeAny, { id: number | null; - paymentId: number | null; + serviceLineId: number | null; paidAmount: number | null; adjustedAmount: number | null; - serviceLineId: number | null; + paymentId: number | null; }, { id: number | null; - paymentId: number | null; + serviceLineId: number | null; paidAmount: number | null; adjustedAmount: number | null; - serviceLineId: number | null; + paymentId: number | null; }>>>; _avg: z.ZodOptional; @@ -80,16 +80,16 @@ export declare const ServiceLineTransactionGroupByResultSchema: z.ZodArray; }, "strip", z.ZodTypeAny, { id: number | null; - paymentId: number | null; + serviceLineId: number | null; paidAmount: number | null; adjustedAmount: number | null; - serviceLineId: number | null; + paymentId: number | null; }, { id: number | null; - paymentId: number | null; + serviceLineId: number | null; paidAmount: number | null; adjustedAmount: number | null; - serviceLineId: number | null; + paymentId: number | null; }>>>; _min: z.ZodOptional; @@ -106,24 +106,24 @@ export declare const ServiceLineTransactionGroupByResultSchema: z.ZodArray>>; _max: z.ZodOptional; @@ -140,48 +140,48 @@ export declare const ServiceLineTransactionGroupByResultSchema: z.ZodArray>>; }, "strip", z.ZodTypeAny, { id: number; createdAt: Date; notes: string; - paymentId: number; + serviceLineId: number; transactionId: string; paidAmount: number; adjustedAmount: number; receivedDate: Date; payerName: string; - serviceLineId: number; + paymentId: number; _count?: { id: number; createdAt: number; notes: number; - paymentId: number; + serviceLineId: number; transactionId: number; paidAmount: number; adjustedAmount: number; method: number; receivedDate: number; payerName: number; - serviceLineId: number; + paymentId: number; payment: number; serviceLine: number; } | undefined; @@ -189,63 +189,63 @@ export declare const ServiceLineTransactionGroupByResultSchema: z.ZodArray, "many">; //# sourceMappingURL=ServiceLineTransactionGroupByResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/ServiceLineTransactionUpdateResult.schema.d.ts b/packages/db/shared/schemas/results/ServiceLineTransactionUpdateResult.schema.d.ts index ab1f4050..85f85988 100644 --- a/packages/db/shared/schemas/results/ServiceLineTransactionUpdateResult.schema.d.ts +++ b/packages/db/shared/schemas/results/ServiceLineTransactionUpdateResult.schema.d.ts @@ -16,11 +16,11 @@ export declare const ServiceLineTransactionUpdateResultSchema: z.ZodNullable; toothNumber: z.ZodOptional; toothSurface: z.ZodOptional; + icn: z.ZodOptional; + paidCode: z.ZodOptional; + allowedAmount: z.ZodOptional; totalBilled: z.ZodNumber; totalPaid: z.ZodNumber; totalAdjusted: z.ZodNumber; @@ -35,6 +38,9 @@ export declare const ServiceLineUpdateResultSchema: z.ZodNullable>; //# sourceMappingURL=ServiceLineUpdateResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/ServiceLineUpdateResult.schema.d.ts.map b/packages/db/shared/schemas/results/ServiceLineUpdateResult.schema.d.ts.map index 2e2ad6b6..42481b7a 100644 --- a/packages/db/shared/schemas/results/ServiceLineUpdateResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/ServiceLineUpdateResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ServiceLineUpdateResult.schema.d.ts","sourceRoot":"","sources":["ServiceLineUpdateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkBvC,CAAC"} \ No newline at end of file +{"version":3,"file":"ServiceLineUpdateResult.schema.d.ts","sourceRoot":"","sources":["ServiceLineUpdateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqBvC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/ServiceLineUpsertResult.schema.d.ts b/packages/db/shared/schemas/results/ServiceLineUpsertResult.schema.d.ts index 78529e11..c934a571 100644 --- a/packages/db/shared/schemas/results/ServiceLineUpsertResult.schema.d.ts +++ b/packages/db/shared/schemas/results/ServiceLineUpsertResult.schema.d.ts @@ -9,6 +9,9 @@ export declare const ServiceLineUpsertResultSchema: z.ZodObject<{ arch: z.ZodOptional; toothNumber: z.ZodOptional; toothSurface: z.ZodOptional; + icn: z.ZodOptional; + paidCode: z.ZodOptional; + allowedAmount: z.ZodOptional; totalBilled: z.ZodNumber; totalPaid: z.ZodNumber; totalAdjusted: z.ZodNumber; @@ -35,6 +38,9 @@ export declare const ServiceLineUpsertResultSchema: z.ZodObject<{ payment?: unknown; quad?: string | undefined; arch?: string | undefined; + icn?: string | undefined; + paidCode?: string | undefined; + allowedAmount?: number | undefined; }, { id: number; procedureCode: string; @@ -53,5 +59,8 @@ export declare const ServiceLineUpsertResultSchema: z.ZodObject<{ payment?: unknown; quad?: string | undefined; arch?: string | undefined; + icn?: string | undefined; + paidCode?: string | undefined; + allowedAmount?: number | undefined; }>; //# sourceMappingURL=ServiceLineUpsertResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/ServiceLineUpsertResult.schema.d.ts.map b/packages/db/shared/schemas/results/ServiceLineUpsertResult.schema.d.ts.map index 5a134ead..b4a00359 100644 --- a/packages/db/shared/schemas/results/ServiceLineUpsertResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/ServiceLineUpsertResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ServiceLineUpsertResult.schema.d.ts","sourceRoot":"","sources":["ServiceLineUpsertResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkBxC,CAAC"} \ No newline at end of file +{"version":3,"file":"ServiceLineUpsertResult.schema.d.ts","sourceRoot":"","sources":["ServiceLineUpsertResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqBxC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/StaffAggregateResult.schema.d.ts b/packages/db/shared/schemas/results/StaffAggregateResult.schema.d.ts index e80a9b95..ed5c1b65 100644 --- a/packages/db/shared/schemas/results/StaffAggregateResult.schema.d.ts +++ b/packages/db/shared/schemas/results/StaffAggregateResult.schema.d.ts @@ -14,25 +14,25 @@ export declare const StaffAggregateResultSchema: z.ZodObject<{ }, "strip", z.ZodTypeAny, { id: number; createdAt: number; - user: number; userId: number; - claims: number; + user: number; name: number; email: number; role: number; phone: number; appointments: number; + claims: number; }, { id: number; createdAt: number; - user: number; userId: number; - claims: number; + user: number; name: number; email: number; role: number; phone: number; appointments: number; + claims: number; }>>; _sum: z.ZodOptional; @@ -108,14 +108,14 @@ export declare const StaffAggregateResultSchema: z.ZodObject<{ _count?: { id: number; createdAt: number; - user: number; userId: number; - claims: number; + user: number; name: number; email: number; role: number; phone: number; appointments: number; + claims: number; } | undefined; _min?: { id: number | null; @@ -147,14 +147,14 @@ export declare const StaffAggregateResultSchema: z.ZodObject<{ _count?: { id: number; createdAt: number; - user: number; userId: number; - claims: number; + user: number; name: number; email: number; role: number; phone: number; appointments: number; + claims: number; } | undefined; _min?: { id: number | null; diff --git a/packages/db/shared/schemas/results/StaffCreateResult.schema.d.ts b/packages/db/shared/schemas/results/StaffCreateResult.schema.d.ts index 75633c74..43f67ae1 100644 --- a/packages/db/shared/schemas/results/StaffCreateResult.schema.d.ts +++ b/packages/db/shared/schemas/results/StaffCreateResult.schema.d.ts @@ -14,10 +14,10 @@ export declare const StaffCreateResultSchema: z.ZodObject<{ id: number; createdAt: Date; userId: number; - claims: unknown[]; name: string; role: string; appointments: unknown[]; + claims: unknown[]; user?: unknown; email?: string | undefined; phone?: string | undefined; @@ -25,10 +25,10 @@ export declare const StaffCreateResultSchema: z.ZodObject<{ id: number; createdAt: Date; userId: number; - claims: unknown[]; name: string; role: string; appointments: unknown[]; + claims: unknown[]; user?: unknown; email?: string | undefined; phone?: string | undefined; diff --git a/packages/db/shared/schemas/results/StaffDeleteResult.schema.d.ts b/packages/db/shared/schemas/results/StaffDeleteResult.schema.d.ts index 699b2bc1..e384c7de 100644 --- a/packages/db/shared/schemas/results/StaffDeleteResult.schema.d.ts +++ b/packages/db/shared/schemas/results/StaffDeleteResult.schema.d.ts @@ -14,10 +14,10 @@ export declare const StaffDeleteResultSchema: z.ZodNullable>; _sum: z.ZodOptional; @@ -122,14 +122,14 @@ export declare const StaffGroupByResultSchema: z.ZodArray>; _sum: z.ZodOptional; + autoBackupHour: z.ZodNullable; + usbBackupHour: z.ZodNullable; + autoMhCheckDayOfWeek: z.ZodNullable; + autoMhCheckHour: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; + autoBackupHour: number | null; + usbBackupHour: number | null; + autoMhCheckDayOfWeek: number | null; + autoMhCheckHour: number | null; }, { id: number | null; + autoBackupHour: number | null; + usbBackupHour: number | null; + autoMhCheckDayOfWeek: number | null; + autoMhCheckHour: number | null; }>>>; _avg: z.ZodOptional; + autoBackupHour: z.ZodNullable; + usbBackupHour: z.ZodNullable; + autoMhCheckDayOfWeek: z.ZodNullable; + autoMhCheckHour: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; + autoBackupHour: number | null; + usbBackupHour: number | null; + autoMhCheckDayOfWeek: number | null; + autoMhCheckHour: number | null; }, { id: number | null; + autoBackupHour: number | null; + usbBackupHour: number | null; + autoMhCheckDayOfWeek: number | null; + autoMhCheckHour: number | null; }>>>; _min: z.ZodOptional; username: z.ZodNullable; password: z.ZodNullable; + autoBackupHour: z.ZodNullable; + usbBackupHour: z.ZodNullable; + autoMhCheckDayOfWeek: z.ZodNullable; + autoMhCheckHour: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; username: string | null; password: string | null; + autoBackupHour: number | null; + usbBackupHour: number | null; + autoMhCheckDayOfWeek: number | null; + autoMhCheckHour: number | null; }, { id: number | null; username: string | null; password: string | null; + autoBackupHour: number | null; + usbBackupHour: number | null; + autoMhCheckDayOfWeek: number | null; + autoMhCheckHour: number | null; }>>>; _max: z.ZodOptional; username: z.ZodNullable; password: z.ZodNullable; + autoBackupHour: z.ZodNullable; + usbBackupHour: z.ZodNullable; + autoMhCheckDayOfWeek: z.ZodNullable; + autoMhCheckHour: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; username: string | null; password: string | null; + autoBackupHour: number | null; + usbBackupHour: number | null; + autoMhCheckDayOfWeek: number | null; + autoMhCheckHour: number | null; }, { id: number | null; username: string | null; password: string | null; + autoBackupHour: number | null; + usbBackupHour: number | null; + autoMhCheckDayOfWeek: number | null; + autoMhCheckHour: number | null; }>>>; }, "strip", z.ZodTypeAny, { _count?: { id: number; - staff: number; - claims: number; - appointments: number; username: number; password: number; - communications: number; + appointments: number; + staff: number; + claims: number; autoBackupEnabled: number; + autoBackupHour: number; usbBackupEnabled: number; + usbBackupHour: number; + autoMhCheckEnabled: number; + autoMhCheckDayOfWeek: number; + autoMhCheckHour: number; patients: number; npiProviders: number; insuranceCredentials: number; + shoppingVendors: number; updatedPayments: number; backups: number; backupDestinations: number; notifications: number; cloudFolders: number; cloudFiles: number; + communications: number; + twilioSettings: number; + aiSettings: number; + officeHours: number; + officeContact: number; + procedureTimeslot: number; + insuranceContacts: number; + labRxTemplates: number; + seleniumSettings: number; + patientConversations: number; } | undefined; _min?: { id: number | null; username: string | null; password: string | null; + autoBackupHour: number | null; + usbBackupHour: number | null; + autoMhCheckDayOfWeek: number | null; + autoMhCheckHour: number | null; } | null | undefined; _max?: { id: number | null; username: string | null; password: string | null; + autoBackupHour: number | null; + usbBackupHour: number | null; + autoMhCheckDayOfWeek: number | null; + autoMhCheckHour: number | null; } | null | undefined; _avg?: { id: number | null; + autoBackupHour: number | null; + usbBackupHour: number | null; + autoMhCheckDayOfWeek: number | null; + autoMhCheckHour: number | null; } | null | undefined; _sum?: { id: number | null; + autoBackupHour: number | null; + usbBackupHour: number | null; + autoMhCheckDayOfWeek: number | null; + autoMhCheckHour: number | null; } | null | undefined; }, { _count?: { id: number; - staff: number; - claims: number; - appointments: number; username: number; password: number; - communications: number; + appointments: number; + staff: number; + claims: number; autoBackupEnabled: number; + autoBackupHour: number; usbBackupEnabled: number; + usbBackupHour: number; + autoMhCheckEnabled: number; + autoMhCheckDayOfWeek: number; + autoMhCheckHour: number; patients: number; npiProviders: number; insuranceCredentials: number; + shoppingVendors: number; updatedPayments: number; backups: number; backupDestinations: number; notifications: number; cloudFolders: number; cloudFiles: number; + communications: number; + twilioSettings: number; + aiSettings: number; + officeHours: number; + officeContact: number; + procedureTimeslot: number; + insuranceContacts: number; + labRxTemplates: number; + seleniumSettings: number; + patientConversations: number; } | undefined; _min?: { id: number | null; username: string | null; password: string | null; + autoBackupHour: number | null; + usbBackupHour: number | null; + autoMhCheckDayOfWeek: number | null; + autoMhCheckHour: number | null; } | null | undefined; _max?: { id: number | null; username: string | null; password: string | null; + autoBackupHour: number | null; + usbBackupHour: number | null; + autoMhCheckDayOfWeek: number | null; + autoMhCheckHour: number | null; } | null | undefined; _avg?: { id: number | null; + autoBackupHour: number | null; + usbBackupHour: number | null; + autoMhCheckDayOfWeek: number | null; + autoMhCheckHour: number | null; } | null | undefined; _sum?: { id: number | null; + autoBackupHour: number | null; + usbBackupHour: number | null; + autoMhCheckDayOfWeek: number | null; + autoMhCheckHour: number | null; } | null | undefined; }>; //# sourceMappingURL=UserAggregateResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/UserAggregateResult.schema.d.ts.map b/packages/db/shared/schemas/results/UserAggregateResult.schema.d.ts.map index 31ce7736..e9d36143 100644 --- a/packages/db/shared/schemas/results/UserAggregateResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/UserAggregateResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"UserAggregateResult.schema.d.ts","sourceRoot":"","sources":["UserAggregateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmCV,CAAC"} \ No newline at end of file +{"version":3,"file":"UserAggregateResult.schema.d.ts","sourceRoot":"","sources":["UserAggregateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkEV,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/UserAggregateResult.schema.js b/packages/db/shared/schemas/results/UserAggregateResult.schema.js index ace24c55..69546c3f 100644 --- a/packages/db/shared/schemas/results/UserAggregateResult.schema.js +++ b/packages/db/shared/schemas/results/UserAggregateResult.schema.js @@ -66,7 +66,9 @@ exports.UserAggregateResultSchema = z.object({ _count: z.object({ officeContact: z.number(), procedureTimeslot: z.number(), insuranceContacts: z.number(), - patientConversations: z.number() + patientConversations: z.number(), + labRxTemplates: z.number(), + seleniumSettings: z.number() }).optional(), _sum: z.object({ id: z.number().nullable(), diff --git a/packages/db/shared/schemas/results/UserCreateResult.schema.d.ts b/packages/db/shared/schemas/results/UserCreateResult.schema.d.ts index 23926250..a35c9531 100644 --- a/packages/db/shared/schemas/results/UserCreateResult.schema.d.ts +++ b/packages/db/shared/schemas/results/UserCreateResult.schema.d.ts @@ -4,13 +4,19 @@ export declare const UserCreateResultSchema: z.ZodObject<{ username: z.ZodString; password: z.ZodString; autoBackupEnabled: z.ZodBoolean; + autoBackupHour: z.ZodNumber; usbBackupEnabled: z.ZodBoolean; + usbBackupHour: z.ZodNumber; + autoMhCheckEnabled: z.ZodBoolean; + autoMhCheckDayOfWeek: z.ZodNumber; + autoMhCheckHour: z.ZodNumber; patients: z.ZodArray; appointments: z.ZodArray; staff: z.ZodArray; npiProviders: z.ZodArray; claims: z.ZodArray; insuranceCredentials: z.ZodArray; + shoppingVendors: z.ZodArray; updatedPayments: z.ZodArray; backups: z.ZodArray; backupDestinations: z.ZodArray; @@ -18,43 +24,82 @@ export declare const UserCreateResultSchema: z.ZodObject<{ cloudFolders: z.ZodArray; cloudFiles: z.ZodArray; communications: z.ZodArray; + twilioSettings: z.ZodOptional; + aiSettings: z.ZodOptional; + officeHours: z.ZodOptional; + officeContact: z.ZodOptional; + procedureTimeslot: z.ZodOptional; + insuranceContacts: z.ZodArray; + patientConversations: z.ZodArray; + labRxTemplates: z.ZodArray; + seleniumSettings: z.ZodOptional; }, "strip", z.ZodTypeAny, { id: number; - staff: unknown[]; - claims: unknown[]; - appointments: unknown[]; username: string; password: string; - communications: unknown[]; + appointments: unknown[]; + staff: unknown[]; + claims: unknown[]; autoBackupEnabled: boolean; + autoBackupHour: number; usbBackupEnabled: boolean; + usbBackupHour: number; + autoMhCheckEnabled: boolean; + autoMhCheckDayOfWeek: number; + autoMhCheckHour: number; patients: unknown[]; npiProviders: unknown[]; insuranceCredentials: unknown[]; + shoppingVendors: unknown[]; updatedPayments: unknown[]; backups: unknown[]; backupDestinations: unknown[]; notifications: unknown[]; cloudFolders: unknown[]; cloudFiles: unknown[]; + communications: unknown[]; + insuranceContacts: unknown[]; + labRxTemplates: unknown[]; + patientConversations: unknown[]; + twilioSettings?: unknown; + aiSettings?: unknown; + officeHours?: unknown; + officeContact?: unknown; + procedureTimeslot?: unknown; + seleniumSettings?: unknown; }, { id: number; - staff: unknown[]; - claims: unknown[]; - appointments: unknown[]; username: string; password: string; - communications: unknown[]; + appointments: unknown[]; + staff: unknown[]; + claims: unknown[]; autoBackupEnabled: boolean; + autoBackupHour: number; usbBackupEnabled: boolean; + usbBackupHour: number; + autoMhCheckEnabled: boolean; + autoMhCheckDayOfWeek: number; + autoMhCheckHour: number; patients: unknown[]; npiProviders: unknown[]; insuranceCredentials: unknown[]; + shoppingVendors: unknown[]; updatedPayments: unknown[]; backups: unknown[]; backupDestinations: unknown[]; notifications: unknown[]; cloudFolders: unknown[]; cloudFiles: unknown[]; + communications: unknown[]; + insuranceContacts: unknown[]; + labRxTemplates: unknown[]; + patientConversations: unknown[]; + twilioSettings?: unknown; + aiSettings?: unknown; + officeHours?: unknown; + officeContact?: unknown; + procedureTimeslot?: unknown; + seleniumSettings?: unknown; }>; //# sourceMappingURL=UserCreateResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/UserCreateResult.schema.d.ts.map b/packages/db/shared/schemas/results/UserCreateResult.schema.d.ts.map index 0dba762f..ec9b9e28 100644 --- a/packages/db/shared/schemas/results/UserCreateResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/UserCreateResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"UserCreateResult.schema.d.ts","sourceRoot":"","sources":["UserCreateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmBjC,CAAC"} \ No newline at end of file +{"version":3,"file":"UserCreateResult.schema.d.ts","sourceRoot":"","sources":["UserCreateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkCjC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/UserCreateResult.schema.js b/packages/db/shared/schemas/results/UserCreateResult.schema.js index cb1f33e6..3004ab00 100644 --- a/packages/db/shared/schemas/results/UserCreateResult.schema.js +++ b/packages/db/shared/schemas/results/UserCreateResult.schema.js @@ -66,5 +66,7 @@ exports.UserCreateResultSchema = z.object({ officeContact: z.unknown().optional(), procedureTimeslot: z.unknown().optional(), insuranceContacts: z.array(z.unknown()), - patientConversations: z.array(z.unknown()) + patientConversations: z.array(z.unknown()), + labRxTemplates: z.array(z.unknown()), + seleniumSettings: z.unknown().optional() }); diff --git a/packages/db/shared/schemas/results/UserDeleteResult.schema.d.ts b/packages/db/shared/schemas/results/UserDeleteResult.schema.d.ts index b79578e1..14370dc8 100644 --- a/packages/db/shared/schemas/results/UserDeleteResult.schema.d.ts +++ b/packages/db/shared/schemas/results/UserDeleteResult.schema.d.ts @@ -4,13 +4,19 @@ export declare const UserDeleteResultSchema: z.ZodNullable; appointments: z.ZodArray; staff: z.ZodArray; npiProviders: z.ZodArray; claims: z.ZodArray; insuranceCredentials: z.ZodArray; + shoppingVendors: z.ZodArray; updatedPayments: z.ZodArray; backups: z.ZodArray; backupDestinations: z.ZodArray; @@ -18,43 +24,82 @@ export declare const UserDeleteResultSchema: z.ZodNullable; cloudFiles: z.ZodArray; communications: z.ZodArray; + twilioSettings: z.ZodOptional; + aiSettings: z.ZodOptional; + officeHours: z.ZodOptional; + officeContact: z.ZodOptional; + procedureTimeslot: z.ZodOptional; + insuranceContacts: z.ZodArray; + patientConversations: z.ZodArray; + labRxTemplates: z.ZodArray; + seleniumSettings: z.ZodOptional; }, "strip", z.ZodTypeAny, { id: number; - staff: unknown[]; - claims: unknown[]; - appointments: unknown[]; username: string; password: string; - communications: unknown[]; + appointments: unknown[]; + staff: unknown[]; + claims: unknown[]; autoBackupEnabled: boolean; + autoBackupHour: number; usbBackupEnabled: boolean; + usbBackupHour: number; + autoMhCheckEnabled: boolean; + autoMhCheckDayOfWeek: number; + autoMhCheckHour: number; patients: unknown[]; npiProviders: unknown[]; insuranceCredentials: unknown[]; + shoppingVendors: unknown[]; updatedPayments: unknown[]; backups: unknown[]; backupDestinations: unknown[]; notifications: unknown[]; cloudFolders: unknown[]; cloudFiles: unknown[]; + communications: unknown[]; + insuranceContacts: unknown[]; + labRxTemplates: unknown[]; + patientConversations: unknown[]; + twilioSettings?: unknown; + aiSettings?: unknown; + officeHours?: unknown; + officeContact?: unknown; + procedureTimeslot?: unknown; + seleniumSettings?: unknown; }, { id: number; - staff: unknown[]; - claims: unknown[]; - appointments: unknown[]; username: string; password: string; - communications: unknown[]; + appointments: unknown[]; + staff: unknown[]; + claims: unknown[]; autoBackupEnabled: boolean; + autoBackupHour: number; usbBackupEnabled: boolean; + usbBackupHour: number; + autoMhCheckEnabled: boolean; + autoMhCheckDayOfWeek: number; + autoMhCheckHour: number; patients: unknown[]; npiProviders: unknown[]; insuranceCredentials: unknown[]; + shoppingVendors: unknown[]; updatedPayments: unknown[]; backups: unknown[]; backupDestinations: unknown[]; notifications: unknown[]; cloudFolders: unknown[]; cloudFiles: unknown[]; + communications: unknown[]; + insuranceContacts: unknown[]; + labRxTemplates: unknown[]; + patientConversations: unknown[]; + twilioSettings?: unknown; + aiSettings?: unknown; + officeHours?: unknown; + officeContact?: unknown; + procedureTimeslot?: unknown; + seleniumSettings?: unknown; }>>; //# sourceMappingURL=UserDeleteResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/UserDeleteResult.schema.d.ts.map b/packages/db/shared/schemas/results/UserDeleteResult.schema.d.ts.map index 9bf4ec03..01c69695 100644 --- a/packages/db/shared/schemas/results/UserDeleteResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/UserDeleteResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"UserDeleteResult.schema.d.ts","sourceRoot":"","sources":["UserDeleteResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmBhC,CAAC"} \ No newline at end of file +{"version":3,"file":"UserDeleteResult.schema.d.ts","sourceRoot":"","sources":["UserDeleteResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkChC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/UserDeleteResult.schema.js b/packages/db/shared/schemas/results/UserDeleteResult.schema.js index e5b39bf7..a21784e4 100644 --- a/packages/db/shared/schemas/results/UserDeleteResult.schema.js +++ b/packages/db/shared/schemas/results/UserDeleteResult.schema.js @@ -66,5 +66,7 @@ exports.UserDeleteResultSchema = z.nullable(z.object({ officeContact: z.unknown().optional(), procedureTimeslot: z.unknown().optional(), insuranceContacts: z.array(z.unknown()), - patientConversations: z.array(z.unknown()) + patientConversations: z.array(z.unknown()), + labRxTemplates: z.array(z.unknown()), + seleniumSettings: z.unknown().optional() })); diff --git a/packages/db/shared/schemas/results/UserFindFirstResult.schema.d.ts b/packages/db/shared/schemas/results/UserFindFirstResult.schema.d.ts index 09a2ca9d..2a9fe17d 100644 --- a/packages/db/shared/schemas/results/UserFindFirstResult.schema.d.ts +++ b/packages/db/shared/schemas/results/UserFindFirstResult.schema.d.ts @@ -4,13 +4,19 @@ export declare const UserFindFirstResultSchema: z.ZodNullable; appointments: z.ZodArray; staff: z.ZodArray; npiProviders: z.ZodArray; claims: z.ZodArray; insuranceCredentials: z.ZodArray; + shoppingVendors: z.ZodArray; updatedPayments: z.ZodArray; backups: z.ZodArray; backupDestinations: z.ZodArray; @@ -18,43 +24,82 @@ export declare const UserFindFirstResultSchema: z.ZodNullable; cloudFiles: z.ZodArray; communications: z.ZodArray; + twilioSettings: z.ZodOptional; + aiSettings: z.ZodOptional; + officeHours: z.ZodOptional; + officeContact: z.ZodOptional; + procedureTimeslot: z.ZodOptional; + insuranceContacts: z.ZodArray; + patientConversations: z.ZodArray; + labRxTemplates: z.ZodArray; + seleniumSettings: z.ZodOptional; }, "strip", z.ZodTypeAny, { id: number; - staff: unknown[]; - claims: unknown[]; - appointments: unknown[]; username: string; password: string; - communications: unknown[]; + appointments: unknown[]; + staff: unknown[]; + claims: unknown[]; autoBackupEnabled: boolean; + autoBackupHour: number; usbBackupEnabled: boolean; + usbBackupHour: number; + autoMhCheckEnabled: boolean; + autoMhCheckDayOfWeek: number; + autoMhCheckHour: number; patients: unknown[]; npiProviders: unknown[]; insuranceCredentials: unknown[]; + shoppingVendors: unknown[]; updatedPayments: unknown[]; backups: unknown[]; backupDestinations: unknown[]; notifications: unknown[]; cloudFolders: unknown[]; cloudFiles: unknown[]; + communications: unknown[]; + insuranceContacts: unknown[]; + labRxTemplates: unknown[]; + patientConversations: unknown[]; + twilioSettings?: unknown; + aiSettings?: unknown; + officeHours?: unknown; + officeContact?: unknown; + procedureTimeslot?: unknown; + seleniumSettings?: unknown; }, { id: number; - staff: unknown[]; - claims: unknown[]; - appointments: unknown[]; username: string; password: string; - communications: unknown[]; + appointments: unknown[]; + staff: unknown[]; + claims: unknown[]; autoBackupEnabled: boolean; + autoBackupHour: number; usbBackupEnabled: boolean; + usbBackupHour: number; + autoMhCheckEnabled: boolean; + autoMhCheckDayOfWeek: number; + autoMhCheckHour: number; patients: unknown[]; npiProviders: unknown[]; insuranceCredentials: unknown[]; + shoppingVendors: unknown[]; updatedPayments: unknown[]; backups: unknown[]; backupDestinations: unknown[]; notifications: unknown[]; cloudFolders: unknown[]; cloudFiles: unknown[]; + communications: unknown[]; + insuranceContacts: unknown[]; + labRxTemplates: unknown[]; + patientConversations: unknown[]; + twilioSettings?: unknown; + aiSettings?: unknown; + officeHours?: unknown; + officeContact?: unknown; + procedureTimeslot?: unknown; + seleniumSettings?: unknown; }>>; //# sourceMappingURL=UserFindFirstResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/UserFindFirstResult.schema.d.ts.map b/packages/db/shared/schemas/results/UserFindFirstResult.schema.d.ts.map index 5b6cb378..564de3b5 100644 --- a/packages/db/shared/schemas/results/UserFindFirstResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/UserFindFirstResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"UserFindFirstResult.schema.d.ts","sourceRoot":"","sources":["UserFindFirstResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmBnC,CAAC"} \ No newline at end of file +{"version":3,"file":"UserFindFirstResult.schema.d.ts","sourceRoot":"","sources":["UserFindFirstResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCnC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/UserFindFirstResult.schema.js b/packages/db/shared/schemas/results/UserFindFirstResult.schema.js index 48380e56..27ab51b4 100644 --- a/packages/db/shared/schemas/results/UserFindFirstResult.schema.js +++ b/packages/db/shared/schemas/results/UserFindFirstResult.schema.js @@ -66,5 +66,7 @@ exports.UserFindFirstResultSchema = z.nullable(z.object({ officeContact: z.unknown().optional(), procedureTimeslot: z.unknown().optional(), insuranceContacts: z.array(z.unknown()), - patientConversations: z.array(z.unknown()) + patientConversations: z.array(z.unknown()), + labRxTemplates: z.array(z.unknown()), + seleniumSettings: z.unknown().optional() })); diff --git a/packages/db/shared/schemas/results/UserFindManyResult.schema.d.ts b/packages/db/shared/schemas/results/UserFindManyResult.schema.d.ts index 53811b63..c3d5ae1d 100644 --- a/packages/db/shared/schemas/results/UserFindManyResult.schema.d.ts +++ b/packages/db/shared/schemas/results/UserFindManyResult.schema.d.ts @@ -5,13 +5,19 @@ export declare const UserFindManyResultSchema: z.ZodObject<{ username: z.ZodString; password: z.ZodString; autoBackupEnabled: z.ZodBoolean; + autoBackupHour: z.ZodNumber; usbBackupEnabled: z.ZodBoolean; + usbBackupHour: z.ZodNumber; + autoMhCheckEnabled: z.ZodBoolean; + autoMhCheckDayOfWeek: z.ZodNumber; + autoMhCheckHour: z.ZodNumber; patients: z.ZodArray; appointments: z.ZodArray; staff: z.ZodArray; npiProviders: z.ZodArray; claims: z.ZodArray; insuranceCredentials: z.ZodArray; + shoppingVendors: z.ZodArray; updatedPayments: z.ZodArray; backups: z.ZodArray; backupDestinations: z.ZodArray; @@ -19,44 +25,83 @@ export declare const UserFindManyResultSchema: z.ZodObject<{ cloudFolders: z.ZodArray; cloudFiles: z.ZodArray; communications: z.ZodArray; + twilioSettings: z.ZodOptional; + aiSettings: z.ZodOptional; + officeHours: z.ZodOptional; + officeContact: z.ZodOptional; + procedureTimeslot: z.ZodOptional; + insuranceContacts: z.ZodArray; + patientConversations: z.ZodArray; + labRxTemplates: z.ZodArray; + seleniumSettings: z.ZodOptional; }, "strip", z.ZodTypeAny, { id: number; - staff: unknown[]; - claims: unknown[]; - appointments: unknown[]; username: string; password: string; - communications: unknown[]; + appointments: unknown[]; + staff: unknown[]; + claims: unknown[]; autoBackupEnabled: boolean; + autoBackupHour: number; usbBackupEnabled: boolean; + usbBackupHour: number; + autoMhCheckEnabled: boolean; + autoMhCheckDayOfWeek: number; + autoMhCheckHour: number; patients: unknown[]; npiProviders: unknown[]; insuranceCredentials: unknown[]; + shoppingVendors: unknown[]; updatedPayments: unknown[]; backups: unknown[]; backupDestinations: unknown[]; notifications: unknown[]; cloudFolders: unknown[]; cloudFiles: unknown[]; + communications: unknown[]; + insuranceContacts: unknown[]; + labRxTemplates: unknown[]; + patientConversations: unknown[]; + twilioSettings?: unknown; + aiSettings?: unknown; + officeHours?: unknown; + officeContact?: unknown; + procedureTimeslot?: unknown; + seleniumSettings?: unknown; }, { id: number; - staff: unknown[]; - claims: unknown[]; - appointments: unknown[]; username: string; password: string; - communications: unknown[]; + appointments: unknown[]; + staff: unknown[]; + claims: unknown[]; autoBackupEnabled: boolean; + autoBackupHour: number; usbBackupEnabled: boolean; + usbBackupHour: number; + autoMhCheckEnabled: boolean; + autoMhCheckDayOfWeek: number; + autoMhCheckHour: number; patients: unknown[]; npiProviders: unknown[]; insuranceCredentials: unknown[]; + shoppingVendors: unknown[]; updatedPayments: unknown[]; backups: unknown[]; backupDestinations: unknown[]; notifications: unknown[]; cloudFolders: unknown[]; cloudFiles: unknown[]; + communications: unknown[]; + insuranceContacts: unknown[]; + labRxTemplates: unknown[]; + patientConversations: unknown[]; + twilioSettings?: unknown; + aiSettings?: unknown; + officeHours?: unknown; + officeContact?: unknown; + procedureTimeslot?: unknown; + seleniumSettings?: unknown; }>, "many">; pagination: z.ZodObject<{ page: z.ZodNumber; @@ -83,23 +128,38 @@ export declare const UserFindManyResultSchema: z.ZodObject<{ }, "strip", z.ZodTypeAny, { data: { id: number; - staff: unknown[]; - claims: unknown[]; - appointments: unknown[]; username: string; password: string; - communications: unknown[]; + appointments: unknown[]; + staff: unknown[]; + claims: unknown[]; autoBackupEnabled: boolean; + autoBackupHour: number; usbBackupEnabled: boolean; + usbBackupHour: number; + autoMhCheckEnabled: boolean; + autoMhCheckDayOfWeek: number; + autoMhCheckHour: number; patients: unknown[]; npiProviders: unknown[]; insuranceCredentials: unknown[]; + shoppingVendors: unknown[]; updatedPayments: unknown[]; backups: unknown[]; backupDestinations: unknown[]; notifications: unknown[]; cloudFolders: unknown[]; cloudFiles: unknown[]; + communications: unknown[]; + insuranceContacts: unknown[]; + labRxTemplates: unknown[]; + patientConversations: unknown[]; + twilioSettings?: unknown; + aiSettings?: unknown; + officeHours?: unknown; + officeContact?: unknown; + procedureTimeslot?: unknown; + seleniumSettings?: unknown; }[]; pagination: { page: number; @@ -112,23 +172,38 @@ export declare const UserFindManyResultSchema: z.ZodObject<{ }, { data: { id: number; - staff: unknown[]; - claims: unknown[]; - appointments: unknown[]; username: string; password: string; - communications: unknown[]; + appointments: unknown[]; + staff: unknown[]; + claims: unknown[]; autoBackupEnabled: boolean; + autoBackupHour: number; usbBackupEnabled: boolean; + usbBackupHour: number; + autoMhCheckEnabled: boolean; + autoMhCheckDayOfWeek: number; + autoMhCheckHour: number; patients: unknown[]; npiProviders: unknown[]; insuranceCredentials: unknown[]; + shoppingVendors: unknown[]; updatedPayments: unknown[]; backups: unknown[]; backupDestinations: unknown[]; notifications: unknown[]; cloudFolders: unknown[]; cloudFiles: unknown[]; + communications: unknown[]; + insuranceContacts: unknown[]; + labRxTemplates: unknown[]; + patientConversations: unknown[]; + twilioSettings?: unknown; + aiSettings?: unknown; + officeHours?: unknown; + officeContact?: unknown; + procedureTimeslot?: unknown; + seleniumSettings?: unknown; }[]; pagination: { page: number; diff --git a/packages/db/shared/schemas/results/UserFindManyResult.schema.d.ts.map b/packages/db/shared/schemas/results/UserFindManyResult.schema.d.ts.map index 5e24de04..468c7c1d 100644 --- a/packages/db/shared/schemas/results/UserFindManyResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/UserFindManyResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"UserFindManyResult.schema.d.ts","sourceRoot":"","sources":["UserFindManyResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA6BnC,CAAC"} \ No newline at end of file +{"version":3,"file":"UserFindManyResult.schema.d.ts","sourceRoot":"","sources":["UserFindManyResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4CnC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/UserFindManyResult.schema.js b/packages/db/shared/schemas/results/UserFindManyResult.schema.js index 19b3a21a..8dfcc912 100644 --- a/packages/db/shared/schemas/results/UserFindManyResult.schema.js +++ b/packages/db/shared/schemas/results/UserFindManyResult.schema.js @@ -67,7 +67,9 @@ exports.UserFindManyResultSchema = z.object({ officeContact: z.unknown().optional(), procedureTimeslot: z.unknown().optional(), insuranceContacts: z.array(z.unknown()), - patientConversations: z.array(z.unknown()) + patientConversations: z.array(z.unknown()), + labRxTemplates: z.array(z.unknown()), + seleniumSettings: z.unknown().optional() })), pagination: z.object({ page: z.number().int().min(1), diff --git a/packages/db/shared/schemas/results/UserFindUniqueResult.schema.d.ts b/packages/db/shared/schemas/results/UserFindUniqueResult.schema.d.ts index 1ba4a013..5e998750 100644 --- a/packages/db/shared/schemas/results/UserFindUniqueResult.schema.d.ts +++ b/packages/db/shared/schemas/results/UserFindUniqueResult.schema.d.ts @@ -4,13 +4,19 @@ export declare const UserFindUniqueResultSchema: z.ZodNullable; appointments: z.ZodArray; staff: z.ZodArray; npiProviders: z.ZodArray; claims: z.ZodArray; insuranceCredentials: z.ZodArray; + shoppingVendors: z.ZodArray; updatedPayments: z.ZodArray; backups: z.ZodArray; backupDestinations: z.ZodArray; @@ -18,43 +24,82 @@ export declare const UserFindUniqueResultSchema: z.ZodNullable; cloudFiles: z.ZodArray; communications: z.ZodArray; + twilioSettings: z.ZodOptional; + aiSettings: z.ZodOptional; + officeHours: z.ZodOptional; + officeContact: z.ZodOptional; + procedureTimeslot: z.ZodOptional; + insuranceContacts: z.ZodArray; + patientConversations: z.ZodArray; + labRxTemplates: z.ZodArray; + seleniumSettings: z.ZodOptional; }, "strip", z.ZodTypeAny, { id: number; - staff: unknown[]; - claims: unknown[]; - appointments: unknown[]; username: string; password: string; - communications: unknown[]; + appointments: unknown[]; + staff: unknown[]; + claims: unknown[]; autoBackupEnabled: boolean; + autoBackupHour: number; usbBackupEnabled: boolean; + usbBackupHour: number; + autoMhCheckEnabled: boolean; + autoMhCheckDayOfWeek: number; + autoMhCheckHour: number; patients: unknown[]; npiProviders: unknown[]; insuranceCredentials: unknown[]; + shoppingVendors: unknown[]; updatedPayments: unknown[]; backups: unknown[]; backupDestinations: unknown[]; notifications: unknown[]; cloudFolders: unknown[]; cloudFiles: unknown[]; + communications: unknown[]; + insuranceContacts: unknown[]; + labRxTemplates: unknown[]; + patientConversations: unknown[]; + twilioSettings?: unknown; + aiSettings?: unknown; + officeHours?: unknown; + officeContact?: unknown; + procedureTimeslot?: unknown; + seleniumSettings?: unknown; }, { id: number; - staff: unknown[]; - claims: unknown[]; - appointments: unknown[]; username: string; password: string; - communications: unknown[]; + appointments: unknown[]; + staff: unknown[]; + claims: unknown[]; autoBackupEnabled: boolean; + autoBackupHour: number; usbBackupEnabled: boolean; + usbBackupHour: number; + autoMhCheckEnabled: boolean; + autoMhCheckDayOfWeek: number; + autoMhCheckHour: number; patients: unknown[]; npiProviders: unknown[]; insuranceCredentials: unknown[]; + shoppingVendors: unknown[]; updatedPayments: unknown[]; backups: unknown[]; backupDestinations: unknown[]; notifications: unknown[]; cloudFolders: unknown[]; cloudFiles: unknown[]; + communications: unknown[]; + insuranceContacts: unknown[]; + labRxTemplates: unknown[]; + patientConversations: unknown[]; + twilioSettings?: unknown; + aiSettings?: unknown; + officeHours?: unknown; + officeContact?: unknown; + procedureTimeslot?: unknown; + seleniumSettings?: unknown; }>>; //# sourceMappingURL=UserFindUniqueResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/UserFindUniqueResult.schema.d.ts.map b/packages/db/shared/schemas/results/UserFindUniqueResult.schema.d.ts.map index db5eb60b..657baab0 100644 --- a/packages/db/shared/schemas/results/UserFindUniqueResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/UserFindUniqueResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"UserFindUniqueResult.schema.d.ts","sourceRoot":"","sources":["UserFindUniqueResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmBpC,CAAC"} \ No newline at end of file +{"version":3,"file":"UserFindUniqueResult.schema.d.ts","sourceRoot":"","sources":["UserFindUniqueResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCpC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/UserFindUniqueResult.schema.js b/packages/db/shared/schemas/results/UserFindUniqueResult.schema.js index 7f4b8505..da44a166 100644 --- a/packages/db/shared/schemas/results/UserFindUniqueResult.schema.js +++ b/packages/db/shared/schemas/results/UserFindUniqueResult.schema.js @@ -66,5 +66,7 @@ exports.UserFindUniqueResultSchema = z.nullable(z.object({ officeContact: z.unknown().optional(), procedureTimeslot: z.unknown().optional(), insuranceContacts: z.array(z.unknown()), - patientConversations: z.array(z.unknown()) + patientConversations: z.array(z.unknown()), + labRxTemplates: z.array(z.unknown()), + seleniumSettings: z.unknown().optional() })); diff --git a/packages/db/shared/schemas/results/UserGroupByResult.schema.d.ts b/packages/db/shared/schemas/results/UserGroupByResult.schema.d.ts index 064d0bdb..143bfc64 100644 --- a/packages/db/shared/schemas/results/UserGroupByResult.schema.d.ts +++ b/packages/db/shared/schemas/results/UserGroupByResult.schema.d.ts @@ -4,19 +4,30 @@ export declare const UserGroupByResultSchema: z.ZodArray>; _sum: z.ZodOptional; + autoBackupHour: z.ZodNullable; + usbBackupHour: z.ZodNullable; + autoMhCheckDayOfWeek: z.ZodNullable; + autoMhCheckHour: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; + autoBackupHour: number | null; + usbBackupHour: number | null; + autoMhCheckDayOfWeek: number | null; + autoMhCheckHour: number | null; }, { id: number | null; + autoBackupHour: number | null; + usbBackupHour: number | null; + autoMhCheckDayOfWeek: number | null; + autoMhCheckHour: number | null; }>>>; _avg: z.ZodOptional; + autoBackupHour: z.ZodNullable; + usbBackupHour: z.ZodNullable; + autoMhCheckDayOfWeek: z.ZodNullable; + autoMhCheckHour: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; + autoBackupHour: number | null; + usbBackupHour: number | null; + autoMhCheckDayOfWeek: number | null; + autoMhCheckHour: number | null; }, { id: number | null; + autoBackupHour: number | null; + usbBackupHour: number | null; + autoMhCheckDayOfWeek: number | null; + autoMhCheckHour: number | null; }>>>; _min: z.ZodOptional; username: z.ZodNullable; password: z.ZodNullable; + autoBackupHour: z.ZodNullable; + usbBackupHour: z.ZodNullable; + autoMhCheckDayOfWeek: z.ZodNullable; + autoMhCheckHour: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; username: string | null; password: string | null; + autoBackupHour: number | null; + usbBackupHour: number | null; + autoMhCheckDayOfWeek: number | null; + autoMhCheckHour: number | null; }, { id: number | null; username: string | null; password: string | null; + autoBackupHour: number | null; + usbBackupHour: number | null; + autoMhCheckDayOfWeek: number | null; + autoMhCheckHour: number | null; }>>>; _max: z.ZodOptional; username: z.ZodNullable; password: z.ZodNullable; + autoBackupHour: z.ZodNullable; + usbBackupHour: z.ZodNullable; + autoMhCheckDayOfWeek: z.ZodNullable; + autoMhCheckHour: z.ZodNullable; }, "strip", z.ZodTypeAny, { id: number | null; username: string | null; password: string | null; + autoBackupHour: number | null; + usbBackupHour: number | null; + autoMhCheckDayOfWeek: number | null; + autoMhCheckHour: number | null; }, { id: number | null; username: string | null; password: string | null; + autoBackupHour: number | null; + usbBackupHour: number | null; + autoMhCheckDayOfWeek: number | null; + autoMhCheckHour: number | null; }>>>; }, "strip", z.ZodTypeAny, { id: number; username: string; password: string; autoBackupEnabled: boolean; + autoBackupHour: number; usbBackupEnabled: boolean; + usbBackupHour: number; + autoMhCheckEnabled: boolean; + autoMhCheckDayOfWeek: number; + autoMhCheckHour: number; _count?: { id: number; - staff: number; - claims: number; - appointments: number; username: number; password: number; - communications: number; + appointments: number; + staff: number; + claims: number; autoBackupEnabled: number; + autoBackupHour: number; usbBackupEnabled: number; + usbBackupHour: number; + autoMhCheckEnabled: number; + autoMhCheckDayOfWeek: number; + autoMhCheckHour: number; patients: number; npiProviders: number; insuranceCredentials: number; + shoppingVendors: number; updatedPayments: number; backups: number; backupDestinations: number; notifications: number; cloudFolders: number; cloudFiles: number; + communications: number; + twilioSettings: number; + aiSettings: number; + officeHours: number; + officeContact: number; + procedureTimeslot: number; + insuranceContacts: number; + labRxTemplates: number; + seleniumSettings: number; + patientConversations: number; } | undefined; _min?: { id: number | null; username: string | null; password: string | null; + autoBackupHour: number | null; + usbBackupHour: number | null; + autoMhCheckDayOfWeek: number | null; + autoMhCheckHour: number | null; } | null | undefined; _max?: { id: number | null; username: string | null; password: string | null; + autoBackupHour: number | null; + usbBackupHour: number | null; + autoMhCheckDayOfWeek: number | null; + autoMhCheckHour: number | null; } | null | undefined; _avg?: { id: number | null; + autoBackupHour: number | null; + usbBackupHour: number | null; + autoMhCheckDayOfWeek: number | null; + autoMhCheckHour: number | null; } | null | undefined; _sum?: { id: number | null; + autoBackupHour: number | null; + usbBackupHour: number | null; + autoMhCheckDayOfWeek: number | null; + autoMhCheckHour: number | null; } | null | undefined; }, { id: number; username: string; password: string; autoBackupEnabled: boolean; + autoBackupHour: number; usbBackupEnabled: boolean; + usbBackupHour: number; + autoMhCheckEnabled: boolean; + autoMhCheckDayOfWeek: number; + autoMhCheckHour: number; _count?: { id: number; - staff: number; - claims: number; - appointments: number; username: number; password: number; - communications: number; + appointments: number; + staff: number; + claims: number; autoBackupEnabled: number; + autoBackupHour: number; usbBackupEnabled: number; + usbBackupHour: number; + autoMhCheckEnabled: number; + autoMhCheckDayOfWeek: number; + autoMhCheckHour: number; patients: number; npiProviders: number; insuranceCredentials: number; + shoppingVendors: number; updatedPayments: number; backups: number; backupDestinations: number; notifications: number; cloudFolders: number; cloudFiles: number; + communications: number; + twilioSettings: number; + aiSettings: number; + officeHours: number; + officeContact: number; + procedureTimeslot: number; + insuranceContacts: number; + labRxTemplates: number; + seleniumSettings: number; + patientConversations: number; } | undefined; _min?: { id: number | null; username: string | null; password: string | null; + autoBackupHour: number | null; + usbBackupHour: number | null; + autoMhCheckDayOfWeek: number | null; + autoMhCheckHour: number | null; } | null | undefined; _max?: { id: number | null; username: string | null; password: string | null; + autoBackupHour: number | null; + usbBackupHour: number | null; + autoMhCheckDayOfWeek: number | null; + autoMhCheckHour: number | null; } | null | undefined; _avg?: { id: number | null; + autoBackupHour: number | null; + usbBackupHour: number | null; + autoMhCheckDayOfWeek: number | null; + autoMhCheckHour: number | null; } | null | undefined; _sum?: { id: number | null; + autoBackupHour: number | null; + usbBackupHour: number | null; + autoMhCheckDayOfWeek: number | null; + autoMhCheckHour: number | null; } | null | undefined; }>, "many">; //# sourceMappingURL=UserGroupByResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/UserGroupByResult.schema.d.ts.map b/packages/db/shared/schemas/results/UserGroupByResult.schema.d.ts.map index 775d2edb..69e2a3b6 100644 --- a/packages/db/shared/schemas/results/UserGroupByResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/UserGroupByResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"UserGroupByResult.schema.d.ts","sourceRoot":"","sources":["UserGroupByResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WA0CjC,CAAC"} \ No newline at end of file +{"version":3,"file":"UserGroupByResult.schema.d.ts","sourceRoot":"","sources":["UserGroupByResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WA8EjC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/UserGroupByResult.schema.js b/packages/db/shared/schemas/results/UserGroupByResult.schema.js index 95b51488..a4a1e807 100644 --- a/packages/db/shared/schemas/results/UserGroupByResult.schema.js +++ b/packages/db/shared/schemas/results/UserGroupByResult.schema.js @@ -77,7 +77,9 @@ exports.UserGroupByResultSchema = z.array(z.object({ officeContact: z.number(), procedureTimeslot: z.number(), insuranceContacts: z.number(), - patientConversations: z.number() + patientConversations: z.number(), + labRxTemplates: z.number(), + seleniumSettings: z.number() }).optional(), _sum: z.object({ id: z.number().nullable(), diff --git a/packages/db/shared/schemas/results/UserUpdateResult.schema.d.ts b/packages/db/shared/schemas/results/UserUpdateResult.schema.d.ts index 1045bb8d..8606d838 100644 --- a/packages/db/shared/schemas/results/UserUpdateResult.schema.d.ts +++ b/packages/db/shared/schemas/results/UserUpdateResult.schema.d.ts @@ -4,13 +4,19 @@ export declare const UserUpdateResultSchema: z.ZodNullable; appointments: z.ZodArray; staff: z.ZodArray; npiProviders: z.ZodArray; claims: z.ZodArray; insuranceCredentials: z.ZodArray; + shoppingVendors: z.ZodArray; updatedPayments: z.ZodArray; backups: z.ZodArray; backupDestinations: z.ZodArray; @@ -18,43 +24,82 @@ export declare const UserUpdateResultSchema: z.ZodNullable; cloudFiles: z.ZodArray; communications: z.ZodArray; + twilioSettings: z.ZodOptional; + aiSettings: z.ZodOptional; + officeHours: z.ZodOptional; + officeContact: z.ZodOptional; + procedureTimeslot: z.ZodOptional; + insuranceContacts: z.ZodArray; + patientConversations: z.ZodArray; + labRxTemplates: z.ZodArray; + seleniumSettings: z.ZodOptional; }, "strip", z.ZodTypeAny, { id: number; - staff: unknown[]; - claims: unknown[]; - appointments: unknown[]; username: string; password: string; - communications: unknown[]; + appointments: unknown[]; + staff: unknown[]; + claims: unknown[]; autoBackupEnabled: boolean; + autoBackupHour: number; usbBackupEnabled: boolean; + usbBackupHour: number; + autoMhCheckEnabled: boolean; + autoMhCheckDayOfWeek: number; + autoMhCheckHour: number; patients: unknown[]; npiProviders: unknown[]; insuranceCredentials: unknown[]; + shoppingVendors: unknown[]; updatedPayments: unknown[]; backups: unknown[]; backupDestinations: unknown[]; notifications: unknown[]; cloudFolders: unknown[]; cloudFiles: unknown[]; + communications: unknown[]; + insuranceContacts: unknown[]; + labRxTemplates: unknown[]; + patientConversations: unknown[]; + twilioSettings?: unknown; + aiSettings?: unknown; + officeHours?: unknown; + officeContact?: unknown; + procedureTimeslot?: unknown; + seleniumSettings?: unknown; }, { id: number; - staff: unknown[]; - claims: unknown[]; - appointments: unknown[]; username: string; password: string; - communications: unknown[]; + appointments: unknown[]; + staff: unknown[]; + claims: unknown[]; autoBackupEnabled: boolean; + autoBackupHour: number; usbBackupEnabled: boolean; + usbBackupHour: number; + autoMhCheckEnabled: boolean; + autoMhCheckDayOfWeek: number; + autoMhCheckHour: number; patients: unknown[]; npiProviders: unknown[]; insuranceCredentials: unknown[]; + shoppingVendors: unknown[]; updatedPayments: unknown[]; backups: unknown[]; backupDestinations: unknown[]; notifications: unknown[]; cloudFolders: unknown[]; cloudFiles: unknown[]; + communications: unknown[]; + insuranceContacts: unknown[]; + labRxTemplates: unknown[]; + patientConversations: unknown[]; + twilioSettings?: unknown; + aiSettings?: unknown; + officeHours?: unknown; + officeContact?: unknown; + procedureTimeslot?: unknown; + seleniumSettings?: unknown; }>>; //# sourceMappingURL=UserUpdateResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/UserUpdateResult.schema.d.ts.map b/packages/db/shared/schemas/results/UserUpdateResult.schema.d.ts.map index d74e9b88..ca3c42cd 100644 --- a/packages/db/shared/schemas/results/UserUpdateResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/UserUpdateResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"UserUpdateResult.schema.d.ts","sourceRoot":"","sources":["UserUpdateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmBhC,CAAC"} \ No newline at end of file +{"version":3,"file":"UserUpdateResult.schema.d.ts","sourceRoot":"","sources":["UserUpdateResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkChC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/UserUpdateResult.schema.js b/packages/db/shared/schemas/results/UserUpdateResult.schema.js index 2d2299bb..cdebd225 100644 --- a/packages/db/shared/schemas/results/UserUpdateResult.schema.js +++ b/packages/db/shared/schemas/results/UserUpdateResult.schema.js @@ -66,5 +66,7 @@ exports.UserUpdateResultSchema = z.nullable(z.object({ officeContact: z.unknown().optional(), procedureTimeslot: z.unknown().optional(), insuranceContacts: z.array(z.unknown()), - patientConversations: z.array(z.unknown()) + patientConversations: z.array(z.unknown()), + labRxTemplates: z.array(z.unknown()), + seleniumSettings: z.unknown().optional() })); diff --git a/packages/db/shared/schemas/results/UserUpsertResult.schema.d.ts b/packages/db/shared/schemas/results/UserUpsertResult.schema.d.ts index c87955da..8928a0bc 100644 --- a/packages/db/shared/schemas/results/UserUpsertResult.schema.d.ts +++ b/packages/db/shared/schemas/results/UserUpsertResult.schema.d.ts @@ -4,13 +4,19 @@ export declare const UserUpsertResultSchema: z.ZodObject<{ username: z.ZodString; password: z.ZodString; autoBackupEnabled: z.ZodBoolean; + autoBackupHour: z.ZodNumber; usbBackupEnabled: z.ZodBoolean; + usbBackupHour: z.ZodNumber; + autoMhCheckEnabled: z.ZodBoolean; + autoMhCheckDayOfWeek: z.ZodNumber; + autoMhCheckHour: z.ZodNumber; patients: z.ZodArray; appointments: z.ZodArray; staff: z.ZodArray; npiProviders: z.ZodArray; claims: z.ZodArray; insuranceCredentials: z.ZodArray; + shoppingVendors: z.ZodArray; updatedPayments: z.ZodArray; backups: z.ZodArray; backupDestinations: z.ZodArray; @@ -18,43 +24,82 @@ export declare const UserUpsertResultSchema: z.ZodObject<{ cloudFolders: z.ZodArray; cloudFiles: z.ZodArray; communications: z.ZodArray; + twilioSettings: z.ZodOptional; + aiSettings: z.ZodOptional; + officeHours: z.ZodOptional; + officeContact: z.ZodOptional; + procedureTimeslot: z.ZodOptional; + insuranceContacts: z.ZodArray; + patientConversations: z.ZodArray; + labRxTemplates: z.ZodArray; + seleniumSettings: z.ZodOptional; }, "strip", z.ZodTypeAny, { id: number; - staff: unknown[]; - claims: unknown[]; - appointments: unknown[]; username: string; password: string; - communications: unknown[]; + appointments: unknown[]; + staff: unknown[]; + claims: unknown[]; autoBackupEnabled: boolean; + autoBackupHour: number; usbBackupEnabled: boolean; + usbBackupHour: number; + autoMhCheckEnabled: boolean; + autoMhCheckDayOfWeek: number; + autoMhCheckHour: number; patients: unknown[]; npiProviders: unknown[]; insuranceCredentials: unknown[]; + shoppingVendors: unknown[]; updatedPayments: unknown[]; backups: unknown[]; backupDestinations: unknown[]; notifications: unknown[]; cloudFolders: unknown[]; cloudFiles: unknown[]; + communications: unknown[]; + insuranceContacts: unknown[]; + labRxTemplates: unknown[]; + patientConversations: unknown[]; + twilioSettings?: unknown; + aiSettings?: unknown; + officeHours?: unknown; + officeContact?: unknown; + procedureTimeslot?: unknown; + seleniumSettings?: unknown; }, { id: number; - staff: unknown[]; - claims: unknown[]; - appointments: unknown[]; username: string; password: string; - communications: unknown[]; + appointments: unknown[]; + staff: unknown[]; + claims: unknown[]; autoBackupEnabled: boolean; + autoBackupHour: number; usbBackupEnabled: boolean; + usbBackupHour: number; + autoMhCheckEnabled: boolean; + autoMhCheckDayOfWeek: number; + autoMhCheckHour: number; patients: unknown[]; npiProviders: unknown[]; insuranceCredentials: unknown[]; + shoppingVendors: unknown[]; updatedPayments: unknown[]; backups: unknown[]; backupDestinations: unknown[]; notifications: unknown[]; cloudFolders: unknown[]; cloudFiles: unknown[]; + communications: unknown[]; + insuranceContacts: unknown[]; + labRxTemplates: unknown[]; + patientConversations: unknown[]; + twilioSettings?: unknown; + aiSettings?: unknown; + officeHours?: unknown; + officeContact?: unknown; + procedureTimeslot?: unknown; + seleniumSettings?: unknown; }>; //# sourceMappingURL=UserUpsertResult.schema.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/UserUpsertResult.schema.d.ts.map b/packages/db/shared/schemas/results/UserUpsertResult.schema.d.ts.map index 53ab98d9..48bed208 100644 --- a/packages/db/shared/schemas/results/UserUpsertResult.schema.d.ts.map +++ b/packages/db/shared/schemas/results/UserUpsertResult.schema.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"UserUpsertResult.schema.d.ts","sourceRoot":"","sources":["UserUpsertResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmBjC,CAAC"} \ No newline at end of file +{"version":3,"file":"UserUpsertResult.schema.d.ts","sourceRoot":"","sources":["UserUpsertResult.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkCjC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/UserUpsertResult.schema.js b/packages/db/shared/schemas/results/UserUpsertResult.schema.js index 0486c6be..8b33d92b 100644 --- a/packages/db/shared/schemas/results/UserUpsertResult.schema.js +++ b/packages/db/shared/schemas/results/UserUpsertResult.schema.js @@ -66,5 +66,7 @@ exports.UserUpsertResultSchema = z.object({ officeContact: z.unknown().optional(), procedureTimeslot: z.unknown().optional(), insuranceContacts: z.array(z.unknown()), - patientConversations: z.array(z.unknown()) + patientConversations: z.array(z.unknown()), + labRxTemplates: z.array(z.unknown()), + seleniumSettings: z.unknown().optional() }); diff --git a/packages/db/shared/schemas/results/index.d.ts b/packages/db/shared/schemas/results/index.d.ts index 9a8f3c54..49c2a20e 100644 --- a/packages/db/shared/schemas/results/index.d.ts +++ b/packages/db/shared/schemas/results/index.d.ts @@ -37,6 +37,19 @@ export { AppointmentDeleteManyResultSchema } from './AppointmentDeleteManyResult export { AppointmentAggregateResultSchema } from './AppointmentAggregateResult.schema'; export { AppointmentGroupByResultSchema } from './AppointmentGroupByResult.schema'; export { AppointmentCountResultSchema } from './AppointmentCountResult.schema'; +export { AppointmentFileFindUniqueResultSchema } from './AppointmentFileFindUniqueResult.schema'; +export { AppointmentFileFindFirstResultSchema } from './AppointmentFileFindFirstResult.schema'; +export { AppointmentFileFindManyResultSchema } from './AppointmentFileFindManyResult.schema'; +export { AppointmentFileCreateResultSchema } from './AppointmentFileCreateResult.schema'; +export { AppointmentFileCreateManyResultSchema } from './AppointmentFileCreateManyResult.schema'; +export { AppointmentFileUpdateResultSchema } from './AppointmentFileUpdateResult.schema'; +export { AppointmentFileUpdateManyResultSchema } from './AppointmentFileUpdateManyResult.schema'; +export { AppointmentFileUpsertResultSchema } from './AppointmentFileUpsertResult.schema'; +export { AppointmentFileDeleteResultSchema } from './AppointmentFileDeleteResult.schema'; +export { AppointmentFileDeleteManyResultSchema } from './AppointmentFileDeleteManyResult.schema'; +export { AppointmentFileAggregateResultSchema } from './AppointmentFileAggregateResult.schema'; +export { AppointmentFileGroupByResultSchema } from './AppointmentFileGroupByResult.schema'; +export { AppointmentFileCountResultSchema } from './AppointmentFileCountResult.schema'; export { StaffFindUniqueResultSchema } from './StaffFindUniqueResult.schema'; export { StaffFindFirstResultSchema } from './StaffFindFirstResult.schema'; export { StaffFindManyResultSchema } from './StaffFindManyResult.schema'; @@ -128,6 +141,19 @@ export { InsuranceCredentialDeleteManyResultSchema } from './InsuranceCredential export { InsuranceCredentialAggregateResultSchema } from './InsuranceCredentialAggregateResult.schema'; export { InsuranceCredentialGroupByResultSchema } from './InsuranceCredentialGroupByResult.schema'; export { InsuranceCredentialCountResultSchema } from './InsuranceCredentialCountResult.schema'; +export { ShoppingVendorFindUniqueResultSchema } from './ShoppingVendorFindUniqueResult.schema'; +export { ShoppingVendorFindFirstResultSchema } from './ShoppingVendorFindFirstResult.schema'; +export { ShoppingVendorFindManyResultSchema } from './ShoppingVendorFindManyResult.schema'; +export { ShoppingVendorCreateResultSchema } from './ShoppingVendorCreateResult.schema'; +export { ShoppingVendorCreateManyResultSchema } from './ShoppingVendorCreateManyResult.schema'; +export { ShoppingVendorUpdateResultSchema } from './ShoppingVendorUpdateResult.schema'; +export { ShoppingVendorUpdateManyResultSchema } from './ShoppingVendorUpdateManyResult.schema'; +export { ShoppingVendorUpsertResultSchema } from './ShoppingVendorUpsertResult.schema'; +export { ShoppingVendorDeleteResultSchema } from './ShoppingVendorDeleteResult.schema'; +export { ShoppingVendorDeleteManyResultSchema } from './ShoppingVendorDeleteManyResult.schema'; +export { ShoppingVendorAggregateResultSchema } from './ShoppingVendorAggregateResult.schema'; +export { ShoppingVendorGroupByResultSchema } from './ShoppingVendorGroupByResult.schema'; +export { ShoppingVendorCountResultSchema } from './ShoppingVendorCountResult.schema'; export { PdfGroupFindUniqueResultSchema } from './PdfGroupFindUniqueResult.schema'; export { PdfGroupFindFirstResultSchema } from './PdfGroupFindFirstResult.schema'; export { PdfGroupFindManyResultSchema } from './PdfGroupFindManyResult.schema'; @@ -297,4 +323,147 @@ export { PatientDocumentDeleteManyResultSchema } from './PatientDocumentDeleteMa export { PatientDocumentAggregateResultSchema } from './PatientDocumentAggregateResult.schema'; export { PatientDocumentGroupByResultSchema } from './PatientDocumentGroupByResult.schema'; export { PatientDocumentCountResultSchema } from './PatientDocumentCountResult.schema'; +export { TwilioSettingsFindUniqueResultSchema } from './TwilioSettingsFindUniqueResult.schema'; +export { TwilioSettingsFindFirstResultSchema } from './TwilioSettingsFindFirstResult.schema'; +export { TwilioSettingsFindManyResultSchema } from './TwilioSettingsFindManyResult.schema'; +export { TwilioSettingsCreateResultSchema } from './TwilioSettingsCreateResult.schema'; +export { TwilioSettingsCreateManyResultSchema } from './TwilioSettingsCreateManyResult.schema'; +export { TwilioSettingsUpdateResultSchema } from './TwilioSettingsUpdateResult.schema'; +export { TwilioSettingsUpdateManyResultSchema } from './TwilioSettingsUpdateManyResult.schema'; +export { TwilioSettingsUpsertResultSchema } from './TwilioSettingsUpsertResult.schema'; +export { TwilioSettingsDeleteResultSchema } from './TwilioSettingsDeleteResult.schema'; +export { TwilioSettingsDeleteManyResultSchema } from './TwilioSettingsDeleteManyResult.schema'; +export { TwilioSettingsAggregateResultSchema } from './TwilioSettingsAggregateResult.schema'; +export { TwilioSettingsGroupByResultSchema } from './TwilioSettingsGroupByResult.schema'; +export { TwilioSettingsCountResultSchema } from './TwilioSettingsCountResult.schema'; +export { AiSettingsFindUniqueResultSchema } from './AiSettingsFindUniqueResult.schema'; +export { AiSettingsFindFirstResultSchema } from './AiSettingsFindFirstResult.schema'; +export { AiSettingsFindManyResultSchema } from './AiSettingsFindManyResult.schema'; +export { AiSettingsCreateResultSchema } from './AiSettingsCreateResult.schema'; +export { AiSettingsCreateManyResultSchema } from './AiSettingsCreateManyResult.schema'; +export { AiSettingsUpdateResultSchema } from './AiSettingsUpdateResult.schema'; +export { AiSettingsUpdateManyResultSchema } from './AiSettingsUpdateManyResult.schema'; +export { AiSettingsUpsertResultSchema } from './AiSettingsUpsertResult.schema'; +export { AiSettingsDeleteResultSchema } from './AiSettingsDeleteResult.schema'; +export { AiSettingsDeleteManyResultSchema } from './AiSettingsDeleteManyResult.schema'; +export { AiSettingsAggregateResultSchema } from './AiSettingsAggregateResult.schema'; +export { AiSettingsGroupByResultSchema } from './AiSettingsGroupByResult.schema'; +export { AiSettingsCountResultSchema } from './AiSettingsCountResult.schema'; +export { OfficeHoursFindUniqueResultSchema } from './OfficeHoursFindUniqueResult.schema'; +export { OfficeHoursFindFirstResultSchema } from './OfficeHoursFindFirstResult.schema'; +export { OfficeHoursFindManyResultSchema } from './OfficeHoursFindManyResult.schema'; +export { OfficeHoursCreateResultSchema } from './OfficeHoursCreateResult.schema'; +export { OfficeHoursCreateManyResultSchema } from './OfficeHoursCreateManyResult.schema'; +export { OfficeHoursUpdateResultSchema } from './OfficeHoursUpdateResult.schema'; +export { OfficeHoursUpdateManyResultSchema } from './OfficeHoursUpdateManyResult.schema'; +export { OfficeHoursUpsertResultSchema } from './OfficeHoursUpsertResult.schema'; +export { OfficeHoursDeleteResultSchema } from './OfficeHoursDeleteResult.schema'; +export { OfficeHoursDeleteManyResultSchema } from './OfficeHoursDeleteManyResult.schema'; +export { OfficeHoursAggregateResultSchema } from './OfficeHoursAggregateResult.schema'; +export { OfficeHoursGroupByResultSchema } from './OfficeHoursGroupByResult.schema'; +export { OfficeHoursCountResultSchema } from './OfficeHoursCountResult.schema'; +export { OfficeContactFindUniqueResultSchema } from './OfficeContactFindUniqueResult.schema'; +export { OfficeContactFindFirstResultSchema } from './OfficeContactFindFirstResult.schema'; +export { OfficeContactFindManyResultSchema } from './OfficeContactFindManyResult.schema'; +export { OfficeContactCreateResultSchema } from './OfficeContactCreateResult.schema'; +export { OfficeContactCreateManyResultSchema } from './OfficeContactCreateManyResult.schema'; +export { OfficeContactUpdateResultSchema } from './OfficeContactUpdateResult.schema'; +export { OfficeContactUpdateManyResultSchema } from './OfficeContactUpdateManyResult.schema'; +export { OfficeContactUpsertResultSchema } from './OfficeContactUpsertResult.schema'; +export { OfficeContactDeleteResultSchema } from './OfficeContactDeleteResult.schema'; +export { OfficeContactDeleteManyResultSchema } from './OfficeContactDeleteManyResult.schema'; +export { OfficeContactAggregateResultSchema } from './OfficeContactAggregateResult.schema'; +export { OfficeContactGroupByResultSchema } from './OfficeContactGroupByResult.schema'; +export { OfficeContactCountResultSchema } from './OfficeContactCountResult.schema'; +export { InsuranceContactFindUniqueResultSchema } from './InsuranceContactFindUniqueResult.schema'; +export { InsuranceContactFindFirstResultSchema } from './InsuranceContactFindFirstResult.schema'; +export { InsuranceContactFindManyResultSchema } from './InsuranceContactFindManyResult.schema'; +export { InsuranceContactCreateResultSchema } from './InsuranceContactCreateResult.schema'; +export { InsuranceContactCreateManyResultSchema } from './InsuranceContactCreateManyResult.schema'; +export { InsuranceContactUpdateResultSchema } from './InsuranceContactUpdateResult.schema'; +export { InsuranceContactUpdateManyResultSchema } from './InsuranceContactUpdateManyResult.schema'; +export { InsuranceContactUpsertResultSchema } from './InsuranceContactUpsertResult.schema'; +export { InsuranceContactDeleteResultSchema } from './InsuranceContactDeleteResult.schema'; +export { InsuranceContactDeleteManyResultSchema } from './InsuranceContactDeleteManyResult.schema'; +export { InsuranceContactAggregateResultSchema } from './InsuranceContactAggregateResult.schema'; +export { InsuranceContactGroupByResultSchema } from './InsuranceContactGroupByResult.schema'; +export { InsuranceContactCountResultSchema } from './InsuranceContactCountResult.schema'; +export { ProcedureTimeslotFindUniqueResultSchema } from './ProcedureTimeslotFindUniqueResult.schema'; +export { ProcedureTimeslotFindFirstResultSchema } from './ProcedureTimeslotFindFirstResult.schema'; +export { ProcedureTimeslotFindManyResultSchema } from './ProcedureTimeslotFindManyResult.schema'; +export { ProcedureTimeslotCreateResultSchema } from './ProcedureTimeslotCreateResult.schema'; +export { ProcedureTimeslotCreateManyResultSchema } from './ProcedureTimeslotCreateManyResult.schema'; +export { ProcedureTimeslotUpdateResultSchema } from './ProcedureTimeslotUpdateResult.schema'; +export { ProcedureTimeslotUpdateManyResultSchema } from './ProcedureTimeslotUpdateManyResult.schema'; +export { ProcedureTimeslotUpsertResultSchema } from './ProcedureTimeslotUpsertResult.schema'; +export { ProcedureTimeslotDeleteResultSchema } from './ProcedureTimeslotDeleteResult.schema'; +export { ProcedureTimeslotDeleteManyResultSchema } from './ProcedureTimeslotDeleteManyResult.schema'; +export { ProcedureTimeslotAggregateResultSchema } from './ProcedureTimeslotAggregateResult.schema'; +export { ProcedureTimeslotGroupByResultSchema } from './ProcedureTimeslotGroupByResult.schema'; +export { ProcedureTimeslotCountResultSchema } from './ProcedureTimeslotCountResult.schema'; +export { PatientConversationFindUniqueResultSchema } from './PatientConversationFindUniqueResult.schema'; +export { PatientConversationFindFirstResultSchema } from './PatientConversationFindFirstResult.schema'; +export { PatientConversationFindManyResultSchema } from './PatientConversationFindManyResult.schema'; +export { PatientConversationCreateResultSchema } from './PatientConversationCreateResult.schema'; +export { PatientConversationCreateManyResultSchema } from './PatientConversationCreateManyResult.schema'; +export { PatientConversationUpdateResultSchema } from './PatientConversationUpdateResult.schema'; +export { PatientConversationUpdateManyResultSchema } from './PatientConversationUpdateManyResult.schema'; +export { PatientConversationUpsertResultSchema } from './PatientConversationUpsertResult.schema'; +export { PatientConversationDeleteResultSchema } from './PatientConversationDeleteResult.schema'; +export { PatientConversationDeleteManyResultSchema } from './PatientConversationDeleteManyResult.schema'; +export { PatientConversationAggregateResultSchema } from './PatientConversationAggregateResult.schema'; +export { PatientConversationGroupByResultSchema } from './PatientConversationGroupByResult.schema'; +export { PatientConversationCountResultSchema } from './PatientConversationCountResult.schema'; +export { LabRxTemplateFindUniqueResultSchema } from './LabRxTemplateFindUniqueResult.schema'; +export { LabRxTemplateFindFirstResultSchema } from './LabRxTemplateFindFirstResult.schema'; +export { LabRxTemplateFindManyResultSchema } from './LabRxTemplateFindManyResult.schema'; +export { LabRxTemplateCreateResultSchema } from './LabRxTemplateCreateResult.schema'; +export { LabRxTemplateCreateManyResultSchema } from './LabRxTemplateCreateManyResult.schema'; +export { LabRxTemplateUpdateResultSchema } from './LabRxTemplateUpdateResult.schema'; +export { LabRxTemplateUpdateManyResultSchema } from './LabRxTemplateUpdateManyResult.schema'; +export { LabRxTemplateUpsertResultSchema } from './LabRxTemplateUpsertResult.schema'; +export { LabRxTemplateDeleteResultSchema } from './LabRxTemplateDeleteResult.schema'; +export { LabRxTemplateDeleteManyResultSchema } from './LabRxTemplateDeleteManyResult.schema'; +export { LabRxTemplateAggregateResultSchema } from './LabRxTemplateAggregateResult.schema'; +export { LabRxTemplateGroupByResultSchema } from './LabRxTemplateGroupByResult.schema'; +export { LabRxTemplateCountResultSchema } from './LabRxTemplateCountResult.schema'; +export { CommissionBatchFindUniqueResultSchema } from './CommissionBatchFindUniqueResult.schema'; +export { CommissionBatchFindFirstResultSchema } from './CommissionBatchFindFirstResult.schema'; +export { CommissionBatchFindManyResultSchema } from './CommissionBatchFindManyResult.schema'; +export { CommissionBatchCreateResultSchema } from './CommissionBatchCreateResult.schema'; +export { CommissionBatchCreateManyResultSchema } from './CommissionBatchCreateManyResult.schema'; +export { CommissionBatchUpdateResultSchema } from './CommissionBatchUpdateResult.schema'; +export { CommissionBatchUpdateManyResultSchema } from './CommissionBatchUpdateManyResult.schema'; +export { CommissionBatchUpsertResultSchema } from './CommissionBatchUpsertResult.schema'; +export { CommissionBatchDeleteResultSchema } from './CommissionBatchDeleteResult.schema'; +export { CommissionBatchDeleteManyResultSchema } from './CommissionBatchDeleteManyResult.schema'; +export { CommissionBatchAggregateResultSchema } from './CommissionBatchAggregateResult.schema'; +export { CommissionBatchGroupByResultSchema } from './CommissionBatchGroupByResult.schema'; +export { CommissionBatchCountResultSchema } from './CommissionBatchCountResult.schema'; +export { CommissionBatchItemFindUniqueResultSchema } from './CommissionBatchItemFindUniqueResult.schema'; +export { CommissionBatchItemFindFirstResultSchema } from './CommissionBatchItemFindFirstResult.schema'; +export { CommissionBatchItemFindManyResultSchema } from './CommissionBatchItemFindManyResult.schema'; +export { CommissionBatchItemCreateResultSchema } from './CommissionBatchItemCreateResult.schema'; +export { CommissionBatchItemCreateManyResultSchema } from './CommissionBatchItemCreateManyResult.schema'; +export { CommissionBatchItemUpdateResultSchema } from './CommissionBatchItemUpdateResult.schema'; +export { CommissionBatchItemUpdateManyResultSchema } from './CommissionBatchItemUpdateManyResult.schema'; +export { CommissionBatchItemUpsertResultSchema } from './CommissionBatchItemUpsertResult.schema'; +export { CommissionBatchItemDeleteResultSchema } from './CommissionBatchItemDeleteResult.schema'; +export { CommissionBatchItemDeleteManyResultSchema } from './CommissionBatchItemDeleteManyResult.schema'; +export { CommissionBatchItemAggregateResultSchema } from './CommissionBatchItemAggregateResult.schema'; +export { CommissionBatchItemGroupByResultSchema } from './CommissionBatchItemGroupByResult.schema'; +export { CommissionBatchItemCountResultSchema } from './CommissionBatchItemCountResult.schema'; +export { SeleniumSettingsFindUniqueResultSchema } from './SeleniumSettingsFindUniqueResult.schema'; +export { SeleniumSettingsFindFirstResultSchema } from './SeleniumSettingsFindFirstResult.schema'; +export { SeleniumSettingsFindManyResultSchema } from './SeleniumSettingsFindManyResult.schema'; +export { SeleniumSettingsCreateResultSchema } from './SeleniumSettingsCreateResult.schema'; +export { SeleniumSettingsCreateManyResultSchema } from './SeleniumSettingsCreateManyResult.schema'; +export { SeleniumSettingsUpdateResultSchema } from './SeleniumSettingsUpdateResult.schema'; +export { SeleniumSettingsUpdateManyResultSchema } from './SeleniumSettingsUpdateManyResult.schema'; +export { SeleniumSettingsUpsertResultSchema } from './SeleniumSettingsUpsertResult.schema'; +export { SeleniumSettingsDeleteResultSchema } from './SeleniumSettingsDeleteResult.schema'; +export { SeleniumSettingsDeleteManyResultSchema } from './SeleniumSettingsDeleteManyResult.schema'; +export { SeleniumSettingsAggregateResultSchema } from './SeleniumSettingsAggregateResult.schema'; +export { SeleniumSettingsGroupByResultSchema } from './SeleniumSettingsGroupByResult.schema'; +export { SeleniumSettingsCountResultSchema } from './SeleniumSettingsCountResult.schema'; //# sourceMappingURL=index.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/results/index.d.ts.map b/packages/db/shared/schemas/results/index.d.ts.map index 4ac44bbd..47bf084f 100644 --- a/packages/db/shared/schemas/results/index.d.ts.map +++ b/packages/db/shared/schemas/results/index.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,0BAA0B,EAAE,MAAM,+BAA+B,CAAC;AAC3E,OAAO,EAAE,yBAAyB,EAAE,MAAM,8BAA8B,CAAC;AACzE,OAAO,EAAE,wBAAwB,EAAE,MAAM,6BAA6B,CAAC;AACvE,OAAO,EAAE,sBAAsB,EAAE,MAAM,2BAA2B,CAAC;AACnE,OAAO,EAAE,0BAA0B,EAAE,MAAM,+BAA+B,CAAC;AAC3E,OAAO,EAAE,sBAAsB,EAAE,MAAM,2BAA2B,CAAC;AACnE,OAAO,EAAE,0BAA0B,EAAE,MAAM,+BAA+B,CAAC;AAC3E,OAAO,EAAE,sBAAsB,EAAE,MAAM,2BAA2B,CAAC;AACnE,OAAO,EAAE,sBAAsB,EAAE,MAAM,2BAA2B,CAAC;AACnE,OAAO,EAAE,0BAA0B,EAAE,MAAM,+BAA+B,CAAC;AAC3E,OAAO,EAAE,yBAAyB,EAAE,MAAM,8BAA8B,CAAC;AACzE,OAAO,EAAE,uBAAuB,EAAE,MAAM,4BAA4B,CAAC;AACrE,OAAO,EAAE,qBAAqB,EAAE,MAAM,0BAA0B,CAAC;AACjE,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,4BAA4B,EAAE,MAAM,iCAAiC,CAAC;AAC/E,OAAO,EAAE,2BAA2B,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,EAAE,yBAAyB,EAAE,MAAM,8BAA8B,CAAC;AACzE,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,yBAAyB,EAAE,MAAM,8BAA8B,CAAC;AACzE,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,yBAAyB,EAAE,MAAM,8BAA8B,CAAC;AACzE,OAAO,EAAE,yBAAyB,EAAE,MAAM,8BAA8B,CAAC;AACzE,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,4BAA4B,EAAE,MAAM,iCAAiC,CAAC;AAC/E,OAAO,EAAE,0BAA0B,EAAE,MAAM,+BAA+B,CAAC;AAC3E,OAAO,EAAE,wBAAwB,EAAE,MAAM,6BAA6B,CAAC;AACvE,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,+BAA+B,EAAE,MAAM,oCAAoC,CAAC;AACrF,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,8BAA8B,EAAE,MAAM,mCAAmC,CAAC;AACnF,OAAO,EAAE,4BAA4B,EAAE,MAAM,iCAAiC,CAAC;AAC/E,OAAO,EAAE,qCAAqC,EAAE,MAAM,0CAA0C,CAAC;AACjG,OAAO,EAAE,oCAAoC,EAAE,MAAM,yCAAyC,CAAC;AAC/F,OAAO,EAAE,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAC7F,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,qCAAqC,EAAE,MAAM,0CAA0C,CAAC;AACjG,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,qCAAqC,EAAE,MAAM,0CAA0C,CAAC;AACjG,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,qCAAqC,EAAE,MAAM,0CAA0C,CAAC;AACjG,OAAO,EAAE,oCAAoC,EAAE,MAAM,yCAAyC,CAAC;AAC/F,OAAO,EAAE,kCAAkC,EAAE,MAAM,uCAAuC,CAAC;AAC3F,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,2BAA2B,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,EAAE,0BAA0B,EAAE,MAAM,+BAA+B,CAAC;AAC3E,OAAO,EAAE,yBAAyB,EAAE,MAAM,8BAA8B,CAAC;AACzE,OAAO,EAAE,uBAAuB,EAAE,MAAM,4BAA4B,CAAC;AACrE,OAAO,EAAE,2BAA2B,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,EAAE,uBAAuB,EAAE,MAAM,4BAA4B,CAAC;AACrE,OAAO,EAAE,2BAA2B,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,EAAE,uBAAuB,EAAE,MAAM,4BAA4B,CAAC;AACrE,OAAO,EAAE,uBAAuB,EAAE,MAAM,4BAA4B,CAAC;AACrE,OAAO,EAAE,2BAA2B,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,EAAE,0BAA0B,EAAE,MAAM,+BAA+B,CAAC;AAC3E,OAAO,EAAE,wBAAwB,EAAE,MAAM,6BAA6B,CAAC;AACvE,OAAO,EAAE,sBAAsB,EAAE,MAAM,2BAA2B,CAAC;AACnE,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,+BAA+B,EAAE,MAAM,oCAAoC,CAAC;AACrF,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,8BAA8B,EAAE,MAAM,mCAAmC,CAAC;AACnF,OAAO,EAAE,4BAA4B,EAAE,MAAM,iCAAiC,CAAC;AAC/E,OAAO,EAAE,0CAA0C,EAAE,MAAM,+CAA+C,CAAC;AAC3G,OAAO,EAAE,yCAAyC,EAAE,MAAM,8CAA8C,CAAC;AACzG,OAAO,EAAE,wCAAwC,EAAE,MAAM,6CAA6C,CAAC;AACvG,OAAO,EAAE,sCAAsC,EAAE,MAAM,2CAA2C,CAAC;AACnG,OAAO,EAAE,0CAA0C,EAAE,MAAM,+CAA+C,CAAC;AAC3G,OAAO,EAAE,sCAAsC,EAAE,MAAM,2CAA2C,CAAC;AACnG,OAAO,EAAE,0CAA0C,EAAE,MAAM,+CAA+C,CAAC;AAC3G,OAAO,EAAE,sCAAsC,EAAE,MAAM,2CAA2C,CAAC;AACnG,OAAO,EAAE,sCAAsC,EAAE,MAAM,2CAA2C,CAAC;AACnG,OAAO,EAAE,0CAA0C,EAAE,MAAM,+CAA+C,CAAC;AAC3G,OAAO,EAAE,yCAAyC,EAAE,MAAM,8CAA8C,CAAC;AACzG,OAAO,EAAE,uCAAuC,EAAE,MAAM,4CAA4C,CAAC;AACrG,OAAO,EAAE,qCAAqC,EAAE,MAAM,0CAA0C,CAAC;AACjG,OAAO,EAAE,2BAA2B,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,EAAE,0BAA0B,EAAE,MAAM,+BAA+B,CAAC;AAC3E,OAAO,EAAE,yBAAyB,EAAE,MAAM,8BAA8B,CAAC;AACzE,OAAO,EAAE,uBAAuB,EAAE,MAAM,4BAA4B,CAAC;AACrE,OAAO,EAAE,2BAA2B,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,EAAE,uBAAuB,EAAE,MAAM,4BAA4B,CAAC;AACrE,OAAO,EAAE,2BAA2B,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,EAAE,uBAAuB,EAAE,MAAM,4BAA4B,CAAC;AACrE,OAAO,EAAE,uBAAuB,EAAE,MAAM,4BAA4B,CAAC;AACrE,OAAO,EAAE,2BAA2B,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,EAAE,0BAA0B,EAAE,MAAM,+BAA+B,CAAC;AAC3E,OAAO,EAAE,wBAAwB,EAAE,MAAM,6BAA6B,CAAC;AACvE,OAAO,EAAE,sBAAsB,EAAE,MAAM,2BAA2B,CAAC;AACnE,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,+BAA+B,EAAE,MAAM,oCAAoC,CAAC;AACrF,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,8BAA8B,EAAE,MAAM,mCAAmC,CAAC;AACnF,OAAO,EAAE,4BAA4B,EAAE,MAAM,iCAAiC,CAAC;AAC/E,OAAO,EAAE,+BAA+B,EAAE,MAAM,oCAAoC,CAAC;AACrF,OAAO,EAAE,8BAA8B,EAAE,MAAM,mCAAmC,CAAC;AACnF,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,2BAA2B,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,EAAE,+BAA+B,EAAE,MAAM,oCAAoC,CAAC;AACrF,OAAO,EAAE,2BAA2B,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,EAAE,+BAA+B,EAAE,MAAM,oCAAoC,CAAC;AACrF,OAAO,EAAE,2BAA2B,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,EAAE,2BAA2B,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,EAAE,+BAA+B,EAAE,MAAM,oCAAoC,CAAC;AACrF,OAAO,EAAE,8BAA8B,EAAE,MAAM,mCAAmC,CAAC;AACnF,OAAO,EAAE,4BAA4B,EAAE,MAAM,iCAAiC,CAAC;AAC/E,OAAO,EAAE,0BAA0B,EAAE,MAAM,+BAA+B,CAAC;AAC3E,OAAO,EAAE,yCAAyC,EAAE,MAAM,8CAA8C,CAAC;AACzG,OAAO,EAAE,wCAAwC,EAAE,MAAM,6CAA6C,CAAC;AACvG,OAAO,EAAE,uCAAuC,EAAE,MAAM,4CAA4C,CAAC;AACrG,OAAO,EAAE,qCAAqC,EAAE,MAAM,0CAA0C,CAAC;AACjG,OAAO,EAAE,yCAAyC,EAAE,MAAM,8CAA8C,CAAC;AACzG,OAAO,EAAE,qCAAqC,EAAE,MAAM,0CAA0C,CAAC;AACjG,OAAO,EAAE,yCAAyC,EAAE,MAAM,8CAA8C,CAAC;AACzG,OAAO,EAAE,qCAAqC,EAAE,MAAM,0CAA0C,CAAC;AACjG,OAAO,EAAE,qCAAqC,EAAE,MAAM,0CAA0C,CAAC;AACjG,OAAO,EAAE,yCAAyC,EAAE,MAAM,8CAA8C,CAAC;AACzG,OAAO,EAAE,wCAAwC,EAAE,MAAM,6CAA6C,CAAC;AACvG,OAAO,EAAE,sCAAsC,EAAE,MAAM,2CAA2C,CAAC;AACnG,OAAO,EAAE,oCAAoC,EAAE,MAAM,yCAAyC,CAAC;AAC/F,OAAO,EAAE,oCAAoC,EAAE,MAAM,yCAAyC,CAAC;AAC/F,OAAO,EAAE,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAC7F,OAAO,EAAE,kCAAkC,EAAE,MAAM,uCAAuC,CAAC;AAC3F,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,oCAAoC,EAAE,MAAM,yCAAyC,CAAC;AAC/F,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,oCAAoC,EAAE,MAAM,yCAAyC,CAAC;AAC/F,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,oCAAoC,EAAE,MAAM,yCAAyC,CAAC;AAC/F,OAAO,EAAE,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAC7F,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,+BAA+B,EAAE,MAAM,oCAAoC,CAAC;AACrF,OAAO,EAAE,8BAA8B,EAAE,MAAM,mCAAmC,CAAC;AACnF,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,4BAA4B,EAAE,MAAM,iCAAiC,CAAC;AAC/E,OAAO,EAAE,0BAA0B,EAAE,MAAM,+BAA+B,CAAC;AAC3E,OAAO,EAAE,8BAA8B,EAAE,MAAM,mCAAmC,CAAC;AACnF,OAAO,EAAE,0BAA0B,EAAE,MAAM,+BAA+B,CAAC;AAC3E,OAAO,EAAE,8BAA8B,EAAE,MAAM,mCAAmC,CAAC;AACnF,OAAO,EAAE,0BAA0B,EAAE,MAAM,+BAA+B,CAAC;AAC3E,OAAO,EAAE,0BAA0B,EAAE,MAAM,+BAA+B,CAAC;AAC3E,OAAO,EAAE,8BAA8B,EAAE,MAAM,mCAAmC,CAAC;AACnF,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,2BAA2B,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,EAAE,yBAAyB,EAAE,MAAM,8BAA8B,CAAC;AACzE,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,4BAA4B,EAAE,MAAM,iCAAiC,CAAC;AAC/E,OAAO,EAAE,2BAA2B,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,EAAE,yBAAyB,EAAE,MAAM,8BAA8B,CAAC;AACzE,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,yBAAyB,EAAE,MAAM,8BAA8B,CAAC;AACzE,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,yBAAyB,EAAE,MAAM,8BAA8B,CAAC;AACzE,OAAO,EAAE,yBAAyB,EAAE,MAAM,8BAA8B,CAAC;AACzE,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,4BAA4B,EAAE,MAAM,iCAAiC,CAAC;AAC/E,OAAO,EAAE,0BAA0B,EAAE,MAAM,+BAA+B,CAAC;AAC3E,OAAO,EAAE,wBAAwB,EAAE,MAAM,6BAA6B,CAAC;AACvE,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,4BAA4B,EAAE,MAAM,iCAAiC,CAAC;AAC/E,OAAO,EAAE,2BAA2B,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,EAAE,yBAAyB,EAAE,MAAM,8BAA8B,CAAC;AACzE,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,yBAAyB,EAAE,MAAM,8BAA8B,CAAC;AACzE,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,yBAAyB,EAAE,MAAM,8BAA8B,CAAC;AACzE,OAAO,EAAE,yBAAyB,EAAE,MAAM,8BAA8B,CAAC;AACzE,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,4BAA4B,EAAE,MAAM,iCAAiC,CAAC;AAC/E,OAAO,EAAE,0BAA0B,EAAE,MAAM,+BAA+B,CAAC;AAC3E,OAAO,EAAE,wBAAwB,EAAE,MAAM,6BAA6B,CAAC;AACvE,OAAO,EAAE,4CAA4C,EAAE,MAAM,iDAAiD,CAAC;AAC/G,OAAO,EAAE,2CAA2C,EAAE,MAAM,gDAAgD,CAAC;AAC7G,OAAO,EAAE,0CAA0C,EAAE,MAAM,+CAA+C,CAAC;AAC3G,OAAO,EAAE,wCAAwC,EAAE,MAAM,6CAA6C,CAAC;AACvG,OAAO,EAAE,4CAA4C,EAAE,MAAM,iDAAiD,CAAC;AAC/G,OAAO,EAAE,wCAAwC,EAAE,MAAM,6CAA6C,CAAC;AACvG,OAAO,EAAE,4CAA4C,EAAE,MAAM,iDAAiD,CAAC;AAC/G,OAAO,EAAE,wCAAwC,EAAE,MAAM,6CAA6C,CAAC;AACvG,OAAO,EAAE,wCAAwC,EAAE,MAAM,6CAA6C,CAAC;AACvG,OAAO,EAAE,4CAA4C,EAAE,MAAM,iDAAiD,CAAC;AAC/G,OAAO,EAAE,2CAA2C,EAAE,MAAM,gDAAgD,CAAC;AAC7G,OAAO,EAAE,yCAAyC,EAAE,MAAM,8CAA8C,CAAC;AACzG,OAAO,EAAE,uCAAuC,EAAE,MAAM,4CAA4C,CAAC;AACrG,OAAO,EAAE,oCAAoC,EAAE,MAAM,yCAAyC,CAAC;AAC/F,OAAO,EAAE,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAC7F,OAAO,EAAE,kCAAkC,EAAE,MAAM,uCAAuC,CAAC;AAC3F,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,oCAAoC,EAAE,MAAM,yCAAyC,CAAC;AAC/F,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,oCAAoC,EAAE,MAAM,yCAAyC,CAAC;AAC/F,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,oCAAoC,EAAE,MAAM,yCAAyC,CAAC;AAC/F,OAAO,EAAE,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAC7F,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,+BAA+B,EAAE,MAAM,oCAAoC,CAAC;AACrF,OAAO,EAAE,uCAAuC,EAAE,MAAM,4CAA4C,CAAC;AACrG,OAAO,EAAE,sCAAsC,EAAE,MAAM,2CAA2C,CAAC;AACnG,OAAO,EAAE,qCAAqC,EAAE,MAAM,0CAA0C,CAAC;AACjG,OAAO,EAAE,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAC7F,OAAO,EAAE,uCAAuC,EAAE,MAAM,4CAA4C,CAAC;AACrG,OAAO,EAAE,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAC7F,OAAO,EAAE,uCAAuC,EAAE,MAAM,4CAA4C,CAAC;AACrG,OAAO,EAAE,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAC7F,OAAO,EAAE,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAC7F,OAAO,EAAE,uCAAuC,EAAE,MAAM,4CAA4C,CAAC;AACrG,OAAO,EAAE,sCAAsC,EAAE,MAAM,2CAA2C,CAAC;AACnG,OAAO,EAAE,oCAAoC,EAAE,MAAM,yCAAyC,CAAC;AAC/F,OAAO,EAAE,kCAAkC,EAAE,MAAM,uCAAuC,CAAC;AAC3F,OAAO,EAAE,kCAAkC,EAAE,MAAM,uCAAuC,CAAC;AAC3F,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,8BAA8B,EAAE,MAAM,mCAAmC,CAAC;AACnF,OAAO,EAAE,kCAAkC,EAAE,MAAM,uCAAuC,CAAC;AAC3F,OAAO,EAAE,8BAA8B,EAAE,MAAM,mCAAmC,CAAC;AACnF,OAAO,EAAE,kCAAkC,EAAE,MAAM,uCAAuC,CAAC;AAC3F,OAAO,EAAE,8BAA8B,EAAE,MAAM,mCAAmC,CAAC;AACnF,OAAO,EAAE,8BAA8B,EAAE,MAAM,mCAAmC,CAAC;AACnF,OAAO,EAAE,kCAAkC,EAAE,MAAM,uCAAuC,CAAC;AAC3F,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,+BAA+B,EAAE,MAAM,oCAAoC,CAAC;AACrF,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,+BAA+B,EAAE,MAAM,oCAAoC,CAAC;AACrF,OAAO,EAAE,8BAA8B,EAAE,MAAM,mCAAmC,CAAC;AACnF,OAAO,EAAE,4BAA4B,EAAE,MAAM,iCAAiC,CAAC;AAC/E,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,4BAA4B,EAAE,MAAM,iCAAiC,CAAC;AAC/E,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,4BAA4B,EAAE,MAAM,iCAAiC,CAAC;AAC/E,OAAO,EAAE,4BAA4B,EAAE,MAAM,iCAAiC,CAAC;AAC/E,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,+BAA+B,EAAE,MAAM,oCAAoC,CAAC;AACrF,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,2BAA2B,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,+BAA+B,EAAE,MAAM,oCAAoC,CAAC;AACrF,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,8BAA8B,EAAE,MAAM,mCAAmC,CAAC;AACnF,OAAO,EAAE,4BAA4B,EAAE,MAAM,iCAAiC,CAAC;AAC/E,OAAO,EAAE,+BAA+B,EAAE,MAAM,oCAAoC,CAAC;AACrF,OAAO,EAAE,8BAA8B,EAAE,MAAM,mCAAmC,CAAC;AACnF,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,2BAA2B,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,EAAE,+BAA+B,EAAE,MAAM,oCAAoC,CAAC;AACrF,OAAO,EAAE,2BAA2B,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,EAAE,+BAA+B,EAAE,MAAM,oCAAoC,CAAC;AACrF,OAAO,EAAE,2BAA2B,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,EAAE,2BAA2B,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,EAAE,+BAA+B,EAAE,MAAM,oCAAoC,CAAC;AACrF,OAAO,EAAE,8BAA8B,EAAE,MAAM,mCAAmC,CAAC;AACnF,OAAO,EAAE,4BAA4B,EAAE,MAAM,iCAAiC,CAAC;AAC/E,OAAO,EAAE,0BAA0B,EAAE,MAAM,+BAA+B,CAAC;AAC3E,OAAO,EAAE,oCAAoC,EAAE,MAAM,yCAAyC,CAAC;AAC/F,OAAO,EAAE,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAC7F,OAAO,EAAE,kCAAkC,EAAE,MAAM,uCAAuC,CAAC;AAC3F,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,oCAAoC,EAAE,MAAM,yCAAyC,CAAC;AAC/F,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,oCAAoC,EAAE,MAAM,yCAAyC,CAAC;AAC/F,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,oCAAoC,EAAE,MAAM,yCAAyC,CAAC;AAC/F,OAAO,EAAE,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAC7F,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,+BAA+B,EAAE,MAAM,oCAAoC,CAAC;AACrF,OAAO,EAAE,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAC7F,OAAO,EAAE,kCAAkC,EAAE,MAAM,uCAAuC,CAAC;AAC3F,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,+BAA+B,EAAE,MAAM,oCAAoC,CAAC;AACrF,OAAO,EAAE,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAC7F,OAAO,EAAE,+BAA+B,EAAE,MAAM,oCAAoC,CAAC;AACrF,OAAO,EAAE,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAC7F,OAAO,EAAE,+BAA+B,EAAE,MAAM,oCAAoC,CAAC;AACrF,OAAO,EAAE,+BAA+B,EAAE,MAAM,oCAAoC,CAAC;AACrF,OAAO,EAAE,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAC7F,OAAO,EAAE,kCAAkC,EAAE,MAAM,uCAAuC,CAAC;AAC3F,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,8BAA8B,EAAE,MAAM,mCAAmC,CAAC;AACnF,OAAO,EAAE,qCAAqC,EAAE,MAAM,0CAA0C,CAAC;AACjG,OAAO,EAAE,oCAAoC,EAAE,MAAM,yCAAyC,CAAC;AAC/F,OAAO,EAAE,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAC7F,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,qCAAqC,EAAE,MAAM,0CAA0C,CAAC;AACjG,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,qCAAqC,EAAE,MAAM,0CAA0C,CAAC;AACjG,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,qCAAqC,EAAE,MAAM,0CAA0C,CAAC;AACjG,OAAO,EAAE,oCAAoC,EAAE,MAAM,yCAAyC,CAAC;AAC/F,OAAO,EAAE,kCAAkC,EAAE,MAAM,uCAAuC,CAAC;AAC3F,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,oCAAoC,EAAE,MAAM,yCAAyC,CAAC;AAC/F,OAAO,EAAE,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAC7F,OAAO,EAAE,kCAAkC,EAAE,MAAM,uCAAuC,CAAC;AAC3F,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,oCAAoC,EAAE,MAAM,yCAAyC,CAAC;AAC/F,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,oCAAoC,EAAE,MAAM,yCAAyC,CAAC;AAC/F,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,oCAAoC,EAAE,MAAM,yCAAyC,CAAC;AAC/F,OAAO,EAAE,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAC7F,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,+BAA+B,EAAE,MAAM,oCAAoC,CAAC;AACrF,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,+BAA+B,EAAE,MAAM,oCAAoC,CAAC;AACrF,OAAO,EAAE,8BAA8B,EAAE,MAAM,mCAAmC,CAAC;AACnF,OAAO,EAAE,4BAA4B,EAAE,MAAM,iCAAiC,CAAC;AAC/E,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,4BAA4B,EAAE,MAAM,iCAAiC,CAAC;AAC/E,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,4BAA4B,EAAE,MAAM,iCAAiC,CAAC;AAC/E,OAAO,EAAE,4BAA4B,EAAE,MAAM,iCAAiC,CAAC;AAC/E,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,+BAA+B,EAAE,MAAM,oCAAoC,CAAC;AACrF,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,2BAA2B,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,+BAA+B,EAAE,MAAM,oCAAoC,CAAC;AACrF,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,8BAA8B,EAAE,MAAM,mCAAmC,CAAC;AACnF,OAAO,EAAE,4BAA4B,EAAE,MAAM,iCAAiC,CAAC;AAC/E,OAAO,EAAE,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAC7F,OAAO,EAAE,kCAAkC,EAAE,MAAM,uCAAuC,CAAC;AAC3F,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,+BAA+B,EAAE,MAAM,oCAAoC,CAAC;AACrF,OAAO,EAAE,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAC7F,OAAO,EAAE,+BAA+B,EAAE,MAAM,oCAAoC,CAAC;AACrF,OAAO,EAAE,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAC7F,OAAO,EAAE,+BAA+B,EAAE,MAAM,oCAAoC,CAAC;AACrF,OAAO,EAAE,+BAA+B,EAAE,MAAM,oCAAoC,CAAC;AACrF,OAAO,EAAE,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAC7F,OAAO,EAAE,kCAAkC,EAAE,MAAM,uCAAuC,CAAC;AAC3F,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,8BAA8B,EAAE,MAAM,mCAAmC,CAAC;AACnF,OAAO,EAAE,sCAAsC,EAAE,MAAM,2CAA2C,CAAC;AACnG,OAAO,EAAE,qCAAqC,EAAE,MAAM,0CAA0C,CAAC;AACjG,OAAO,EAAE,oCAAoC,EAAE,MAAM,yCAAyC,CAAC;AAC/F,OAAO,EAAE,kCAAkC,EAAE,MAAM,uCAAuC,CAAC;AAC3F,OAAO,EAAE,sCAAsC,EAAE,MAAM,2CAA2C,CAAC;AACnG,OAAO,EAAE,kCAAkC,EAAE,MAAM,uCAAuC,CAAC;AAC3F,OAAO,EAAE,sCAAsC,EAAE,MAAM,2CAA2C,CAAC;AACnG,OAAO,EAAE,kCAAkC,EAAE,MAAM,uCAAuC,CAAC;AAC3F,OAAO,EAAE,kCAAkC,EAAE,MAAM,uCAAuC,CAAC;AAC3F,OAAO,EAAE,sCAAsC,EAAE,MAAM,2CAA2C,CAAC;AACnG,OAAO,EAAE,qCAAqC,EAAE,MAAM,0CAA0C,CAAC;AACjG,OAAO,EAAE,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAC7F,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,uCAAuC,EAAE,MAAM,4CAA4C,CAAC;AACrG,OAAO,EAAE,sCAAsC,EAAE,MAAM,2CAA2C,CAAC;AACnG,OAAO,EAAE,qCAAqC,EAAE,MAAM,0CAA0C,CAAC;AACjG,OAAO,EAAE,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAC7F,OAAO,EAAE,uCAAuC,EAAE,MAAM,4CAA4C,CAAC;AACrG,OAAO,EAAE,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAC7F,OAAO,EAAE,uCAAuC,EAAE,MAAM,4CAA4C,CAAC;AACrG,OAAO,EAAE,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAC7F,OAAO,EAAE,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAC7F,OAAO,EAAE,uCAAuC,EAAE,MAAM,4CAA4C,CAAC;AACrG,OAAO,EAAE,sCAAsC,EAAE,MAAM,2CAA2C,CAAC;AACnG,OAAO,EAAE,oCAAoC,EAAE,MAAM,yCAAyC,CAAC;AAC/F,OAAO,EAAE,kCAAkC,EAAE,MAAM,uCAAuC,CAAC;AAC3F,OAAO,EAAE,yCAAyC,EAAE,MAAM,8CAA8C,CAAC;AACzG,OAAO,EAAE,wCAAwC,EAAE,MAAM,6CAA6C,CAAC;AACvG,OAAO,EAAE,uCAAuC,EAAE,MAAM,4CAA4C,CAAC;AACrG,OAAO,EAAE,qCAAqC,EAAE,MAAM,0CAA0C,CAAC;AACjG,OAAO,EAAE,yCAAyC,EAAE,MAAM,8CAA8C,CAAC;AACzG,OAAO,EAAE,qCAAqC,EAAE,MAAM,0CAA0C,CAAC;AACjG,OAAO,EAAE,yCAAyC,EAAE,MAAM,8CAA8C,CAAC;AACzG,OAAO,EAAE,qCAAqC,EAAE,MAAM,0CAA0C,CAAC;AACjG,OAAO,EAAE,qCAAqC,EAAE,MAAM,0CAA0C,CAAC;AACjG,OAAO,EAAE,yCAAyC,EAAE,MAAM,8CAA8C,CAAC;AACzG,OAAO,EAAE,wCAAwC,EAAE,MAAM,6CAA6C,CAAC;AACvG,OAAO,EAAE,sCAAsC,EAAE,MAAM,2CAA2C,CAAC;AACnG,OAAO,EAAE,oCAAoC,EAAE,MAAM,yCAAyC,CAAC;AAC/F,OAAO,EAAE,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAC7F,OAAO,EAAE,kCAAkC,EAAE,MAAM,uCAAuC,CAAC;AAC3F,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,+BAA+B,EAAE,MAAM,oCAAoC,CAAC;AACrF,OAAO,EAAE,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAC7F,OAAO,EAAE,+BAA+B,EAAE,MAAM,oCAAoC,CAAC;AACrF,OAAO,EAAE,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAC7F,OAAO,EAAE,+BAA+B,EAAE,MAAM,oCAAoC,CAAC;AACrF,OAAO,EAAE,+BAA+B,EAAE,MAAM,oCAAoC,CAAC;AACrF,OAAO,EAAE,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAC7F,OAAO,EAAE,kCAAkC,EAAE,MAAM,uCAAuC,CAAC;AAC3F,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,8BAA8B,EAAE,MAAM,mCAAmC,CAAC;AACnF,OAAO,EAAE,qCAAqC,EAAE,MAAM,0CAA0C,CAAC;AACjG,OAAO,EAAE,oCAAoC,EAAE,MAAM,yCAAyC,CAAC;AAC/F,OAAO,EAAE,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAC7F,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,qCAAqC,EAAE,MAAM,0CAA0C,CAAC;AACjG,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,qCAAqC,EAAE,MAAM,0CAA0C,CAAC;AACjG,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC;AACzF,OAAO,EAAE,qCAAqC,EAAE,MAAM,0CAA0C,CAAC;AACjG,OAAO,EAAE,oCAAoC,EAAE,MAAM,yCAAyC,CAAC;AAC/F,OAAO,EAAE,kCAAkC,EAAE,MAAM,uCAAuC,CAAC;AAC3F,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AACvF,OAAO,EAAE,yCAAyC,EAAE,MAAM,8CAA8C,CAAC;AACzG,OAAO,EAAE,wCAAwC,EAAE,MAAM,6CAA6C,CAAC;AACvG,OAAO,EAAE,uCAAuC,EAAE,MAAM,4CAA4C,CAAC;AACrG,OAAO,EAAE,qCAAqC,EAAE,MAAM,0CAA0C,CAAC;AACjG,OAAO,EAAE,yCAAyC,EAAE,MAAM,8CAA8C,CAAC;AACzG,OAAO,EAAE,qCAAqC,EAAE,MAAM,0CAA0C,CAAC;AACjG,OAAO,EAAE,yCAAyC,EAAE,MAAM,8CAA8C,CAAC;AACzG,OAAO,EAAE,qCAAqC,EAAE,MAAM,0CAA0C,CAAC;AACjG,OAAO,EAAE,qCAAqC,EAAE,MAAM,0CAA0C,CAAC;AACjG,OAAO,EAAE,yCAAyC,EAAE,MAAM,8CAA8C,CAAC;AACzG,OAAO,EAAE,wCAAwC,EAAE,MAAM,6CAA6C,CAAC;AACvG,OAAO,EAAE,sCAAsC,EAAE,MAAM,2CAA2C,CAAC;AACnG,OAAO,EAAE,oCAAoC,EAAE,MAAM,yCAAyC,CAAC;AAC/F,OAAO,EAAE,sCAAsC,EAAE,MAAM,2CAA2C,CAAC;AACnG,OAAO,EAAE,qCAAqC,EAAE,MAAM,0CAA0C,CAAC;AACjG,OAAO,EAAE,oCAAoC,EAAE,MAAM,yCAAyC,CAAC;AAC/F,OAAO,EAAE,kCAAkC,EAAE,MAAM,uCAAuC,CAAC;AAC3F,OAAO,EAAE,sCAAsC,EAAE,MAAM,2CAA2C,CAAC;AACnG,OAAO,EAAE,kCAAkC,EAAE,MAAM,uCAAuC,CAAC;AAC3F,OAAO,EAAE,sCAAsC,EAAE,MAAM,2CAA2C,CAAC;AACnG,OAAO,EAAE,kCAAkC,EAAE,MAAM,uCAAuC,CAAC;AAC3F,OAAO,EAAE,kCAAkC,EAAE,MAAM,uCAAuC,CAAC;AAC3F,OAAO,EAAE,sCAAsC,EAAE,MAAM,2CAA2C,CAAC;AACnG,OAAO,EAAE,qCAAqC,EAAE,MAAM,0CAA0C,CAAC;AACjG,OAAO,EAAE,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAC7F,OAAO,EAAE,iCAAiC,EAAE,MAAM,sCAAsC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/results/index.js b/packages/db/shared/schemas/results/index.js index 0fd22880..0631a3fa 100644 --- a/packages/db/shared/schemas/results/index.js +++ b/packages/db/shared/schemas/results/index.js @@ -8,7 +8,8 @@ exports.CronJobLogFindManyResultSchema = exports.CronJobLogFindFirstResultSchema exports.CommunicationFindUniqueResultSchema = exports.CloudFileChunkCountResultSchema = exports.CloudFileChunkGroupByResultSchema = exports.CloudFileChunkAggregateResultSchema = exports.CloudFileChunkDeleteManyResultSchema = exports.CloudFileChunkDeleteResultSchema = exports.CloudFileChunkUpsertResultSchema = exports.CloudFileChunkUpdateManyResultSchema = exports.CloudFileChunkUpdateResultSchema = exports.CloudFileChunkCreateManyResultSchema = exports.CloudFileChunkCreateResultSchema = exports.CloudFileChunkFindManyResultSchema = exports.CloudFileChunkFindFirstResultSchema = exports.CloudFileChunkFindUniqueResultSchema = exports.CloudFileCountResultSchema = exports.CloudFileGroupByResultSchema = exports.CloudFileAggregateResultSchema = exports.CloudFileDeleteManyResultSchema = exports.CloudFileDeleteResultSchema = exports.CloudFileUpsertResultSchema = exports.CloudFileUpdateManyResultSchema = exports.CloudFileUpdateResultSchema = exports.CloudFileCreateManyResultSchema = exports.CloudFileCreateResultSchema = exports.CloudFileFindManyResultSchema = exports.CloudFileFindFirstResultSchema = exports.CloudFileFindUniqueResultSchema = exports.CloudFolderCountResultSchema = exports.CloudFolderGroupByResultSchema = exports.CloudFolderAggregateResultSchema = exports.CloudFolderDeleteManyResultSchema = exports.CloudFolderDeleteResultSchema = exports.CloudFolderUpsertResultSchema = exports.CloudFolderUpdateManyResultSchema = exports.CloudFolderUpdateResultSchema = exports.CloudFolderCreateManyResultSchema = exports.CloudFolderCreateResultSchema = exports.CloudFolderFindManyResultSchema = exports.CloudFolderFindFirstResultSchema = exports.CloudFolderFindUniqueResultSchema = exports.CronJobLogCountResultSchema = exports.CronJobLogGroupByResultSchema = exports.CronJobLogAggregateResultSchema = exports.CronJobLogDeleteManyResultSchema = exports.CronJobLogDeleteResultSchema = exports.CronJobLogUpsertResultSchema = exports.CronJobLogUpdateManyResultSchema = exports.CronJobLogUpdateResultSchema = exports.CronJobLogCreateManyResultSchema = exports.CronJobLogCreateResultSchema = void 0; exports.AiSettingsGroupByResultSchema = exports.AiSettingsAggregateResultSchema = exports.AiSettingsDeleteManyResultSchema = exports.AiSettingsDeleteResultSchema = exports.AiSettingsUpsertResultSchema = exports.AiSettingsUpdateManyResultSchema = exports.AiSettingsUpdateResultSchema = exports.AiSettingsCreateManyResultSchema = exports.AiSettingsCreateResultSchema = exports.AiSettingsFindManyResultSchema = exports.AiSettingsFindFirstResultSchema = exports.AiSettingsFindUniqueResultSchema = exports.TwilioSettingsCountResultSchema = exports.TwilioSettingsGroupByResultSchema = exports.TwilioSettingsAggregateResultSchema = exports.TwilioSettingsDeleteManyResultSchema = exports.TwilioSettingsDeleteResultSchema = exports.TwilioSettingsUpsertResultSchema = exports.TwilioSettingsUpdateManyResultSchema = exports.TwilioSettingsUpdateResultSchema = exports.TwilioSettingsCreateManyResultSchema = exports.TwilioSettingsCreateResultSchema = exports.TwilioSettingsFindManyResultSchema = exports.TwilioSettingsFindFirstResultSchema = exports.TwilioSettingsFindUniqueResultSchema = exports.PatientDocumentCountResultSchema = exports.PatientDocumentGroupByResultSchema = exports.PatientDocumentAggregateResultSchema = exports.PatientDocumentDeleteManyResultSchema = exports.PatientDocumentDeleteResultSchema = exports.PatientDocumentUpsertResultSchema = exports.PatientDocumentUpdateManyResultSchema = exports.PatientDocumentUpdateResultSchema = exports.PatientDocumentCreateManyResultSchema = exports.PatientDocumentCreateResultSchema = exports.PatientDocumentFindManyResultSchema = exports.PatientDocumentFindFirstResultSchema = exports.PatientDocumentFindUniqueResultSchema = exports.CommunicationCountResultSchema = exports.CommunicationGroupByResultSchema = exports.CommunicationAggregateResultSchema = exports.CommunicationDeleteManyResultSchema = exports.CommunicationDeleteResultSchema = exports.CommunicationUpsertResultSchema = exports.CommunicationUpdateManyResultSchema = exports.CommunicationUpdateResultSchema = exports.CommunicationCreateManyResultSchema = exports.CommunicationCreateResultSchema = exports.CommunicationFindManyResultSchema = exports.CommunicationFindFirstResultSchema = void 0; exports.ProcedureTimeslotDeleteManyResultSchema = exports.ProcedureTimeslotDeleteResultSchema = exports.ProcedureTimeslotUpsertResultSchema = exports.ProcedureTimeslotUpdateManyResultSchema = exports.ProcedureTimeslotUpdateResultSchema = exports.ProcedureTimeslotCreateManyResultSchema = exports.ProcedureTimeslotCreateResultSchema = exports.ProcedureTimeslotFindManyResultSchema = exports.ProcedureTimeslotFindFirstResultSchema = exports.ProcedureTimeslotFindUniqueResultSchema = exports.InsuranceContactCountResultSchema = exports.InsuranceContactGroupByResultSchema = exports.InsuranceContactAggregateResultSchema = exports.InsuranceContactDeleteManyResultSchema = exports.InsuranceContactDeleteResultSchema = exports.InsuranceContactUpsertResultSchema = exports.InsuranceContactUpdateManyResultSchema = exports.InsuranceContactUpdateResultSchema = exports.InsuranceContactCreateManyResultSchema = exports.InsuranceContactCreateResultSchema = exports.InsuranceContactFindManyResultSchema = exports.InsuranceContactFindFirstResultSchema = exports.InsuranceContactFindUniqueResultSchema = exports.OfficeContactCountResultSchema = exports.OfficeContactGroupByResultSchema = exports.OfficeContactAggregateResultSchema = exports.OfficeContactDeleteManyResultSchema = exports.OfficeContactDeleteResultSchema = exports.OfficeContactUpsertResultSchema = exports.OfficeContactUpdateManyResultSchema = exports.OfficeContactUpdateResultSchema = exports.OfficeContactCreateManyResultSchema = exports.OfficeContactCreateResultSchema = exports.OfficeContactFindManyResultSchema = exports.OfficeContactFindFirstResultSchema = exports.OfficeContactFindUniqueResultSchema = exports.OfficeHoursCountResultSchema = exports.OfficeHoursGroupByResultSchema = exports.OfficeHoursAggregateResultSchema = exports.OfficeHoursDeleteManyResultSchema = exports.OfficeHoursDeleteResultSchema = exports.OfficeHoursUpsertResultSchema = exports.OfficeHoursUpdateManyResultSchema = exports.OfficeHoursUpdateResultSchema = exports.OfficeHoursCreateManyResultSchema = exports.OfficeHoursCreateResultSchema = exports.OfficeHoursFindManyResultSchema = exports.OfficeHoursFindFirstResultSchema = exports.OfficeHoursFindUniqueResultSchema = exports.AiSettingsCountResultSchema = void 0; -exports.CommissionBatchItemCountResultSchema = exports.CommissionBatchItemGroupByResultSchema = exports.CommissionBatchItemAggregateResultSchema = exports.CommissionBatchItemDeleteManyResultSchema = exports.CommissionBatchItemDeleteResultSchema = exports.CommissionBatchItemUpsertResultSchema = exports.CommissionBatchItemUpdateManyResultSchema = exports.CommissionBatchItemUpdateResultSchema = exports.CommissionBatchItemCreateManyResultSchema = exports.CommissionBatchItemCreateResultSchema = exports.CommissionBatchItemFindManyResultSchema = exports.CommissionBatchItemFindFirstResultSchema = exports.CommissionBatchItemFindUniqueResultSchema = exports.CommissionBatchCountResultSchema = exports.CommissionBatchGroupByResultSchema = exports.CommissionBatchAggregateResultSchema = exports.CommissionBatchDeleteManyResultSchema = exports.CommissionBatchDeleteResultSchema = exports.CommissionBatchUpsertResultSchema = exports.CommissionBatchUpdateManyResultSchema = exports.CommissionBatchUpdateResultSchema = exports.CommissionBatchCreateManyResultSchema = exports.CommissionBatchCreateResultSchema = exports.CommissionBatchFindManyResultSchema = exports.CommissionBatchFindFirstResultSchema = exports.CommissionBatchFindUniqueResultSchema = exports.PatientConversationCountResultSchema = exports.PatientConversationGroupByResultSchema = exports.PatientConversationAggregateResultSchema = exports.PatientConversationDeleteManyResultSchema = exports.PatientConversationDeleteResultSchema = exports.PatientConversationUpsertResultSchema = exports.PatientConversationUpdateManyResultSchema = exports.PatientConversationUpdateResultSchema = exports.PatientConversationCreateManyResultSchema = exports.PatientConversationCreateResultSchema = exports.PatientConversationFindManyResultSchema = exports.PatientConversationFindFirstResultSchema = exports.PatientConversationFindUniqueResultSchema = exports.ProcedureTimeslotCountResultSchema = exports.ProcedureTimeslotGroupByResultSchema = exports.ProcedureTimeslotAggregateResultSchema = void 0; +exports.CommissionBatchItemUpsertResultSchema = exports.CommissionBatchItemUpdateManyResultSchema = exports.CommissionBatchItemUpdateResultSchema = exports.CommissionBatchItemCreateManyResultSchema = exports.CommissionBatchItemCreateResultSchema = exports.CommissionBatchItemFindManyResultSchema = exports.CommissionBatchItemFindFirstResultSchema = exports.CommissionBatchItemFindUniqueResultSchema = exports.CommissionBatchCountResultSchema = exports.CommissionBatchGroupByResultSchema = exports.CommissionBatchAggregateResultSchema = exports.CommissionBatchDeleteManyResultSchema = exports.CommissionBatchDeleteResultSchema = exports.CommissionBatchUpsertResultSchema = exports.CommissionBatchUpdateManyResultSchema = exports.CommissionBatchUpdateResultSchema = exports.CommissionBatchCreateManyResultSchema = exports.CommissionBatchCreateResultSchema = exports.CommissionBatchFindManyResultSchema = exports.CommissionBatchFindFirstResultSchema = exports.CommissionBatchFindUniqueResultSchema = exports.LabRxTemplateCountResultSchema = exports.LabRxTemplateGroupByResultSchema = exports.LabRxTemplateAggregateResultSchema = exports.LabRxTemplateDeleteManyResultSchema = exports.LabRxTemplateDeleteResultSchema = exports.LabRxTemplateUpsertResultSchema = exports.LabRxTemplateUpdateManyResultSchema = exports.LabRxTemplateUpdateResultSchema = exports.LabRxTemplateCreateManyResultSchema = exports.LabRxTemplateCreateResultSchema = exports.LabRxTemplateFindManyResultSchema = exports.LabRxTemplateFindFirstResultSchema = exports.LabRxTemplateFindUniqueResultSchema = exports.PatientConversationCountResultSchema = exports.PatientConversationGroupByResultSchema = exports.PatientConversationAggregateResultSchema = exports.PatientConversationDeleteManyResultSchema = exports.PatientConversationDeleteResultSchema = exports.PatientConversationUpsertResultSchema = exports.PatientConversationUpdateManyResultSchema = exports.PatientConversationUpdateResultSchema = exports.PatientConversationCreateManyResultSchema = exports.PatientConversationCreateResultSchema = exports.PatientConversationFindManyResultSchema = exports.PatientConversationFindFirstResultSchema = exports.PatientConversationFindUniqueResultSchema = exports.ProcedureTimeslotCountResultSchema = exports.ProcedureTimeslotGroupByResultSchema = exports.ProcedureTimeslotAggregateResultSchema = void 0; +exports.SeleniumSettingsCountResultSchema = exports.SeleniumSettingsGroupByResultSchema = exports.SeleniumSettingsAggregateResultSchema = exports.SeleniumSettingsDeleteManyResultSchema = exports.SeleniumSettingsDeleteResultSchema = exports.SeleniumSettingsUpsertResultSchema = exports.SeleniumSettingsUpdateManyResultSchema = exports.SeleniumSettingsUpdateResultSchema = exports.SeleniumSettingsCreateManyResultSchema = exports.SeleniumSettingsCreateResultSchema = exports.SeleniumSettingsFindManyResultSchema = exports.SeleniumSettingsFindFirstResultSchema = exports.SeleniumSettingsFindUniqueResultSchema = exports.CommissionBatchItemCountResultSchema = exports.CommissionBatchItemGroupByResultSchema = exports.CommissionBatchItemAggregateResultSchema = exports.CommissionBatchItemDeleteManyResultSchema = exports.CommissionBatchItemDeleteResultSchema = void 0; var UserFindUniqueResult_schema_1 = require("./UserFindUniqueResult.schema"); Object.defineProperty(exports, "UserFindUniqueResultSchema", { enumerable: true, get: function () { return UserFindUniqueResult_schema_1.UserFindUniqueResultSchema; } }); var UserFindFirstResult_schema_1 = require("./UserFindFirstResult.schema"); @@ -841,6 +842,32 @@ var PatientConversationGroupByResult_schema_1 = require("./PatientConversationGr Object.defineProperty(exports, "PatientConversationGroupByResultSchema", { enumerable: true, get: function () { return PatientConversationGroupByResult_schema_1.PatientConversationGroupByResultSchema; } }); var PatientConversationCountResult_schema_1 = require("./PatientConversationCountResult.schema"); Object.defineProperty(exports, "PatientConversationCountResultSchema", { enumerable: true, get: function () { return PatientConversationCountResult_schema_1.PatientConversationCountResultSchema; } }); +var LabRxTemplateFindUniqueResult_schema_1 = require("./LabRxTemplateFindUniqueResult.schema"); +Object.defineProperty(exports, "LabRxTemplateFindUniqueResultSchema", { enumerable: true, get: function () { return LabRxTemplateFindUniqueResult_schema_1.LabRxTemplateFindUniqueResultSchema; } }); +var LabRxTemplateFindFirstResult_schema_1 = require("./LabRxTemplateFindFirstResult.schema"); +Object.defineProperty(exports, "LabRxTemplateFindFirstResultSchema", { enumerable: true, get: function () { return LabRxTemplateFindFirstResult_schema_1.LabRxTemplateFindFirstResultSchema; } }); +var LabRxTemplateFindManyResult_schema_1 = require("./LabRxTemplateFindManyResult.schema"); +Object.defineProperty(exports, "LabRxTemplateFindManyResultSchema", { enumerable: true, get: function () { return LabRxTemplateFindManyResult_schema_1.LabRxTemplateFindManyResultSchema; } }); +var LabRxTemplateCreateResult_schema_1 = require("./LabRxTemplateCreateResult.schema"); +Object.defineProperty(exports, "LabRxTemplateCreateResultSchema", { enumerable: true, get: function () { return LabRxTemplateCreateResult_schema_1.LabRxTemplateCreateResultSchema; } }); +var LabRxTemplateCreateManyResult_schema_1 = require("./LabRxTemplateCreateManyResult.schema"); +Object.defineProperty(exports, "LabRxTemplateCreateManyResultSchema", { enumerable: true, get: function () { return LabRxTemplateCreateManyResult_schema_1.LabRxTemplateCreateManyResultSchema; } }); +var LabRxTemplateUpdateResult_schema_1 = require("./LabRxTemplateUpdateResult.schema"); +Object.defineProperty(exports, "LabRxTemplateUpdateResultSchema", { enumerable: true, get: function () { return LabRxTemplateUpdateResult_schema_1.LabRxTemplateUpdateResultSchema; } }); +var LabRxTemplateUpdateManyResult_schema_1 = require("./LabRxTemplateUpdateManyResult.schema"); +Object.defineProperty(exports, "LabRxTemplateUpdateManyResultSchema", { enumerable: true, get: function () { return LabRxTemplateUpdateManyResult_schema_1.LabRxTemplateUpdateManyResultSchema; } }); +var LabRxTemplateUpsertResult_schema_1 = require("./LabRxTemplateUpsertResult.schema"); +Object.defineProperty(exports, "LabRxTemplateUpsertResultSchema", { enumerable: true, get: function () { return LabRxTemplateUpsertResult_schema_1.LabRxTemplateUpsertResultSchema; } }); +var LabRxTemplateDeleteResult_schema_1 = require("./LabRxTemplateDeleteResult.schema"); +Object.defineProperty(exports, "LabRxTemplateDeleteResultSchema", { enumerable: true, get: function () { return LabRxTemplateDeleteResult_schema_1.LabRxTemplateDeleteResultSchema; } }); +var LabRxTemplateDeleteManyResult_schema_1 = require("./LabRxTemplateDeleteManyResult.schema"); +Object.defineProperty(exports, "LabRxTemplateDeleteManyResultSchema", { enumerable: true, get: function () { return LabRxTemplateDeleteManyResult_schema_1.LabRxTemplateDeleteManyResultSchema; } }); +var LabRxTemplateAggregateResult_schema_1 = require("./LabRxTemplateAggregateResult.schema"); +Object.defineProperty(exports, "LabRxTemplateAggregateResultSchema", { enumerable: true, get: function () { return LabRxTemplateAggregateResult_schema_1.LabRxTemplateAggregateResultSchema; } }); +var LabRxTemplateGroupByResult_schema_1 = require("./LabRxTemplateGroupByResult.schema"); +Object.defineProperty(exports, "LabRxTemplateGroupByResultSchema", { enumerable: true, get: function () { return LabRxTemplateGroupByResult_schema_1.LabRxTemplateGroupByResultSchema; } }); +var LabRxTemplateCountResult_schema_1 = require("./LabRxTemplateCountResult.schema"); +Object.defineProperty(exports, "LabRxTemplateCountResultSchema", { enumerable: true, get: function () { return LabRxTemplateCountResult_schema_1.LabRxTemplateCountResultSchema; } }); var CommissionBatchFindUniqueResult_schema_1 = require("./CommissionBatchFindUniqueResult.schema"); Object.defineProperty(exports, "CommissionBatchFindUniqueResultSchema", { enumerable: true, get: function () { return CommissionBatchFindUniqueResult_schema_1.CommissionBatchFindUniqueResultSchema; } }); var CommissionBatchFindFirstResult_schema_1 = require("./CommissionBatchFindFirstResult.schema"); @@ -893,3 +920,29 @@ var CommissionBatchItemGroupByResult_schema_1 = require("./CommissionBatchItemGr Object.defineProperty(exports, "CommissionBatchItemGroupByResultSchema", { enumerable: true, get: function () { return CommissionBatchItemGroupByResult_schema_1.CommissionBatchItemGroupByResultSchema; } }); var CommissionBatchItemCountResult_schema_1 = require("./CommissionBatchItemCountResult.schema"); Object.defineProperty(exports, "CommissionBatchItemCountResultSchema", { enumerable: true, get: function () { return CommissionBatchItemCountResult_schema_1.CommissionBatchItemCountResultSchema; } }); +var SeleniumSettingsFindUniqueResult_schema_1 = require("./SeleniumSettingsFindUniqueResult.schema"); +Object.defineProperty(exports, "SeleniumSettingsFindUniqueResultSchema", { enumerable: true, get: function () { return SeleniumSettingsFindUniqueResult_schema_1.SeleniumSettingsFindUniqueResultSchema; } }); +var SeleniumSettingsFindFirstResult_schema_1 = require("./SeleniumSettingsFindFirstResult.schema"); +Object.defineProperty(exports, "SeleniumSettingsFindFirstResultSchema", { enumerable: true, get: function () { return SeleniumSettingsFindFirstResult_schema_1.SeleniumSettingsFindFirstResultSchema; } }); +var SeleniumSettingsFindManyResult_schema_1 = require("./SeleniumSettingsFindManyResult.schema"); +Object.defineProperty(exports, "SeleniumSettingsFindManyResultSchema", { enumerable: true, get: function () { return SeleniumSettingsFindManyResult_schema_1.SeleniumSettingsFindManyResultSchema; } }); +var SeleniumSettingsCreateResult_schema_1 = require("./SeleniumSettingsCreateResult.schema"); +Object.defineProperty(exports, "SeleniumSettingsCreateResultSchema", { enumerable: true, get: function () { return SeleniumSettingsCreateResult_schema_1.SeleniumSettingsCreateResultSchema; } }); +var SeleniumSettingsCreateManyResult_schema_1 = require("./SeleniumSettingsCreateManyResult.schema"); +Object.defineProperty(exports, "SeleniumSettingsCreateManyResultSchema", { enumerable: true, get: function () { return SeleniumSettingsCreateManyResult_schema_1.SeleniumSettingsCreateManyResultSchema; } }); +var SeleniumSettingsUpdateResult_schema_1 = require("./SeleniumSettingsUpdateResult.schema"); +Object.defineProperty(exports, "SeleniumSettingsUpdateResultSchema", { enumerable: true, get: function () { return SeleniumSettingsUpdateResult_schema_1.SeleniumSettingsUpdateResultSchema; } }); +var SeleniumSettingsUpdateManyResult_schema_1 = require("./SeleniumSettingsUpdateManyResult.schema"); +Object.defineProperty(exports, "SeleniumSettingsUpdateManyResultSchema", { enumerable: true, get: function () { return SeleniumSettingsUpdateManyResult_schema_1.SeleniumSettingsUpdateManyResultSchema; } }); +var SeleniumSettingsUpsertResult_schema_1 = require("./SeleniumSettingsUpsertResult.schema"); +Object.defineProperty(exports, "SeleniumSettingsUpsertResultSchema", { enumerable: true, get: function () { return SeleniumSettingsUpsertResult_schema_1.SeleniumSettingsUpsertResultSchema; } }); +var SeleniumSettingsDeleteResult_schema_1 = require("./SeleniumSettingsDeleteResult.schema"); +Object.defineProperty(exports, "SeleniumSettingsDeleteResultSchema", { enumerable: true, get: function () { return SeleniumSettingsDeleteResult_schema_1.SeleniumSettingsDeleteResultSchema; } }); +var SeleniumSettingsDeleteManyResult_schema_1 = require("./SeleniumSettingsDeleteManyResult.schema"); +Object.defineProperty(exports, "SeleniumSettingsDeleteManyResultSchema", { enumerable: true, get: function () { return SeleniumSettingsDeleteManyResult_schema_1.SeleniumSettingsDeleteManyResultSchema; } }); +var SeleniumSettingsAggregateResult_schema_1 = require("./SeleniumSettingsAggregateResult.schema"); +Object.defineProperty(exports, "SeleniumSettingsAggregateResultSchema", { enumerable: true, get: function () { return SeleniumSettingsAggregateResult_schema_1.SeleniumSettingsAggregateResultSchema; } }); +var SeleniumSettingsGroupByResult_schema_1 = require("./SeleniumSettingsGroupByResult.schema"); +Object.defineProperty(exports, "SeleniumSettingsGroupByResultSchema", { enumerable: true, get: function () { return SeleniumSettingsGroupByResult_schema_1.SeleniumSettingsGroupByResultSchema; } }); +var SeleniumSettingsCountResult_schema_1 = require("./SeleniumSettingsCountResult.schema"); +Object.defineProperty(exports, "SeleniumSettingsCountResultSchema", { enumerable: true, get: function () { return SeleniumSettingsCountResult_schema_1.SeleniumSettingsCountResultSchema; } }); diff --git a/packages/db/shared/schemas/updateManyAndReturnLabRxTemplate.schema.js b/packages/db/shared/schemas/updateManyAndReturnLabRxTemplate.schema.js new file mode 100644 index 00000000..82001d1a --- /dev/null +++ b/packages/db/shared/schemas/updateManyAndReturnLabRxTemplate.schema.js @@ -0,0 +1,42 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateUpdateManyAndReturnZodSchema = exports.LabRxTemplateUpdateManyAndReturnSchema = void 0; +const z = __importStar(require("zod")); +const LabRxTemplateSelect_schema_1 = require("./objects/LabRxTemplateSelect.schema"); +const LabRxTemplateUpdateManyMutationInput_schema_1 = require("./objects/LabRxTemplateUpdateManyMutationInput.schema"); +const LabRxTemplateWhereInput_schema_1 = require("./objects/LabRxTemplateWhereInput.schema"); +exports.LabRxTemplateUpdateManyAndReturnSchema = z.object({ select: LabRxTemplateSelect_schema_1.LabRxTemplateSelectObjectSchema.optional(), data: LabRxTemplateUpdateManyMutationInput_schema_1.LabRxTemplateUpdateManyMutationInputObjectSchema, where: LabRxTemplateWhereInput_schema_1.LabRxTemplateWhereInputObjectSchema.optional() }).strict(); +exports.LabRxTemplateUpdateManyAndReturnZodSchema = z.object({ select: LabRxTemplateSelect_schema_1.LabRxTemplateSelectObjectSchema.optional(), data: LabRxTemplateUpdateManyMutationInput_schema_1.LabRxTemplateUpdateManyMutationInputObjectSchema, where: LabRxTemplateWhereInput_schema_1.LabRxTemplateWhereInputObjectSchema.optional() }).strict(); diff --git a/packages/db/shared/schemas/updateManyAndReturnSeleniumSettings.schema.js b/packages/db/shared/schemas/updateManyAndReturnSeleniumSettings.schema.js new file mode 100644 index 00000000..716c9e80 --- /dev/null +++ b/packages/db/shared/schemas/updateManyAndReturnSeleniumSettings.schema.js @@ -0,0 +1,42 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsUpdateManyAndReturnZodSchema = exports.SeleniumSettingsUpdateManyAndReturnSchema = void 0; +const z = __importStar(require("zod")); +const SeleniumSettingsSelect_schema_1 = require("./objects/SeleniumSettingsSelect.schema"); +const SeleniumSettingsUpdateManyMutationInput_schema_1 = require("./objects/SeleniumSettingsUpdateManyMutationInput.schema"); +const SeleniumSettingsWhereInput_schema_1 = require("./objects/SeleniumSettingsWhereInput.schema"); +exports.SeleniumSettingsUpdateManyAndReturnSchema = z.object({ select: SeleniumSettingsSelect_schema_1.SeleniumSettingsSelectObjectSchema.optional(), data: SeleniumSettingsUpdateManyMutationInput_schema_1.SeleniumSettingsUpdateManyMutationInputObjectSchema, where: SeleniumSettingsWhereInput_schema_1.SeleniumSettingsWhereInputObjectSchema.optional() }).strict(); +exports.SeleniumSettingsUpdateManyAndReturnZodSchema = z.object({ select: SeleniumSettingsSelect_schema_1.SeleniumSettingsSelectObjectSchema.optional(), data: SeleniumSettingsUpdateManyMutationInput_schema_1.SeleniumSettingsUpdateManyMutationInputObjectSchema, where: SeleniumSettingsWhereInput_schema_1.SeleniumSettingsWhereInputObjectSchema.optional() }).strict(); diff --git a/packages/db/shared/schemas/updateManyLabRxTemplate.schema.js b/packages/db/shared/schemas/updateManyLabRxTemplate.schema.js new file mode 100644 index 00000000..236e3f83 --- /dev/null +++ b/packages/db/shared/schemas/updateManyLabRxTemplate.schema.js @@ -0,0 +1,41 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateUpdateManyZodSchema = exports.LabRxTemplateUpdateManySchema = void 0; +const z = __importStar(require("zod")); +const LabRxTemplateUpdateManyMutationInput_schema_1 = require("./objects/LabRxTemplateUpdateManyMutationInput.schema"); +const LabRxTemplateWhereInput_schema_1 = require("./objects/LabRxTemplateWhereInput.schema"); +exports.LabRxTemplateUpdateManySchema = z.object({ data: LabRxTemplateUpdateManyMutationInput_schema_1.LabRxTemplateUpdateManyMutationInputObjectSchema, where: LabRxTemplateWhereInput_schema_1.LabRxTemplateWhereInputObjectSchema.optional() }).strict(); +exports.LabRxTemplateUpdateManyZodSchema = z.object({ data: LabRxTemplateUpdateManyMutationInput_schema_1.LabRxTemplateUpdateManyMutationInputObjectSchema, where: LabRxTemplateWhereInput_schema_1.LabRxTemplateWhereInputObjectSchema.optional() }).strict(); diff --git a/packages/db/shared/schemas/updateManySeleniumSettings.schema.js b/packages/db/shared/schemas/updateManySeleniumSettings.schema.js new file mode 100644 index 00000000..8a738ae3 --- /dev/null +++ b/packages/db/shared/schemas/updateManySeleniumSettings.schema.js @@ -0,0 +1,41 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsUpdateManyZodSchema = exports.SeleniumSettingsUpdateManySchema = void 0; +const z = __importStar(require("zod")); +const SeleniumSettingsUpdateManyMutationInput_schema_1 = require("./objects/SeleniumSettingsUpdateManyMutationInput.schema"); +const SeleniumSettingsWhereInput_schema_1 = require("./objects/SeleniumSettingsWhereInput.schema"); +exports.SeleniumSettingsUpdateManySchema = z.object({ data: SeleniumSettingsUpdateManyMutationInput_schema_1.SeleniumSettingsUpdateManyMutationInputObjectSchema, where: SeleniumSettingsWhereInput_schema_1.SeleniumSettingsWhereInputObjectSchema.optional() }).strict(); +exports.SeleniumSettingsUpdateManyZodSchema = z.object({ data: SeleniumSettingsUpdateManyMutationInput_schema_1.SeleniumSettingsUpdateManyMutationInputObjectSchema, where: SeleniumSettingsWhereInput_schema_1.SeleniumSettingsWhereInputObjectSchema.optional() }).strict(); diff --git a/packages/db/shared/schemas/updateOneLabRxTemplate.schema.js b/packages/db/shared/schemas/updateOneLabRxTemplate.schema.js new file mode 100644 index 00000000..e4ba14c1 --- /dev/null +++ b/packages/db/shared/schemas/updateOneLabRxTemplate.schema.js @@ -0,0 +1,44 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateUpdateOneZodSchema = exports.LabRxTemplateUpdateOneSchema = void 0; +const z = __importStar(require("zod")); +const LabRxTemplateSelect_schema_1 = require("./objects/LabRxTemplateSelect.schema"); +const LabRxTemplateInclude_schema_1 = require("./objects/LabRxTemplateInclude.schema"); +const LabRxTemplateUpdateInput_schema_1 = require("./objects/LabRxTemplateUpdateInput.schema"); +const LabRxTemplateUncheckedUpdateInput_schema_1 = require("./objects/LabRxTemplateUncheckedUpdateInput.schema"); +const LabRxTemplateWhereUniqueInput_schema_1 = require("./objects/LabRxTemplateWhereUniqueInput.schema"); +exports.LabRxTemplateUpdateOneSchema = z.object({ select: LabRxTemplateSelect_schema_1.LabRxTemplateSelectObjectSchema.optional(), include: LabRxTemplateInclude_schema_1.LabRxTemplateIncludeObjectSchema.optional(), data: z.union([LabRxTemplateUpdateInput_schema_1.LabRxTemplateUpdateInputObjectSchema, LabRxTemplateUncheckedUpdateInput_schema_1.LabRxTemplateUncheckedUpdateInputObjectSchema]), where: LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema }).strict(); +exports.LabRxTemplateUpdateOneZodSchema = z.object({ select: LabRxTemplateSelect_schema_1.LabRxTemplateSelectObjectSchema.optional(), include: LabRxTemplateInclude_schema_1.LabRxTemplateIncludeObjectSchema.optional(), data: z.union([LabRxTemplateUpdateInput_schema_1.LabRxTemplateUpdateInputObjectSchema, LabRxTemplateUncheckedUpdateInput_schema_1.LabRxTemplateUncheckedUpdateInputObjectSchema]), where: LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema }).strict(); diff --git a/packages/db/shared/schemas/updateOneSeleniumSettings.schema.js b/packages/db/shared/schemas/updateOneSeleniumSettings.schema.js new file mode 100644 index 00000000..f4affb10 --- /dev/null +++ b/packages/db/shared/schemas/updateOneSeleniumSettings.schema.js @@ -0,0 +1,44 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsUpdateOneZodSchema = exports.SeleniumSettingsUpdateOneSchema = void 0; +const z = __importStar(require("zod")); +const SeleniumSettingsSelect_schema_1 = require("./objects/SeleniumSettingsSelect.schema"); +const SeleniumSettingsInclude_schema_1 = require("./objects/SeleniumSettingsInclude.schema"); +const SeleniumSettingsUpdateInput_schema_1 = require("./objects/SeleniumSettingsUpdateInput.schema"); +const SeleniumSettingsUncheckedUpdateInput_schema_1 = require("./objects/SeleniumSettingsUncheckedUpdateInput.schema"); +const SeleniumSettingsWhereUniqueInput_schema_1 = require("./objects/SeleniumSettingsWhereUniqueInput.schema"); +exports.SeleniumSettingsUpdateOneSchema = z.object({ select: SeleniumSettingsSelect_schema_1.SeleniumSettingsSelectObjectSchema.optional(), include: SeleniumSettingsInclude_schema_1.SeleniumSettingsIncludeObjectSchema.optional(), data: z.union([SeleniumSettingsUpdateInput_schema_1.SeleniumSettingsUpdateInputObjectSchema, SeleniumSettingsUncheckedUpdateInput_schema_1.SeleniumSettingsUncheckedUpdateInputObjectSchema]), where: SeleniumSettingsWhereUniqueInput_schema_1.SeleniumSettingsWhereUniqueInputObjectSchema }).strict(); +exports.SeleniumSettingsUpdateOneZodSchema = z.object({ select: SeleniumSettingsSelect_schema_1.SeleniumSettingsSelectObjectSchema.optional(), include: SeleniumSettingsInclude_schema_1.SeleniumSettingsIncludeObjectSchema.optional(), data: z.union([SeleniumSettingsUpdateInput_schema_1.SeleniumSettingsUpdateInputObjectSchema, SeleniumSettingsUncheckedUpdateInput_schema_1.SeleniumSettingsUncheckedUpdateInputObjectSchema]), where: SeleniumSettingsWhereUniqueInput_schema_1.SeleniumSettingsWhereUniqueInputObjectSchema }).strict(); diff --git a/packages/db/shared/schemas/upsertOneLabRxTemplate.schema.js b/packages/db/shared/schemas/upsertOneLabRxTemplate.schema.js new file mode 100644 index 00000000..e3b4fe92 --- /dev/null +++ b/packages/db/shared/schemas/upsertOneLabRxTemplate.schema.js @@ -0,0 +1,46 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateUpsertOneZodSchema = exports.LabRxTemplateUpsertOneSchema = void 0; +const z = __importStar(require("zod")); +const LabRxTemplateSelect_schema_1 = require("./objects/LabRxTemplateSelect.schema"); +const LabRxTemplateInclude_schema_1 = require("./objects/LabRxTemplateInclude.schema"); +const LabRxTemplateWhereUniqueInput_schema_1 = require("./objects/LabRxTemplateWhereUniqueInput.schema"); +const LabRxTemplateCreateInput_schema_1 = require("./objects/LabRxTemplateCreateInput.schema"); +const LabRxTemplateUncheckedCreateInput_schema_1 = require("./objects/LabRxTemplateUncheckedCreateInput.schema"); +const LabRxTemplateUpdateInput_schema_1 = require("./objects/LabRxTemplateUpdateInput.schema"); +const LabRxTemplateUncheckedUpdateInput_schema_1 = require("./objects/LabRxTemplateUncheckedUpdateInput.schema"); +exports.LabRxTemplateUpsertOneSchema = z.object({ select: LabRxTemplateSelect_schema_1.LabRxTemplateSelectObjectSchema.optional(), include: LabRxTemplateInclude_schema_1.LabRxTemplateIncludeObjectSchema.optional(), where: LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema, create: z.union([LabRxTemplateCreateInput_schema_1.LabRxTemplateCreateInputObjectSchema, LabRxTemplateUncheckedCreateInput_schema_1.LabRxTemplateUncheckedCreateInputObjectSchema]), update: z.union([LabRxTemplateUpdateInput_schema_1.LabRxTemplateUpdateInputObjectSchema, LabRxTemplateUncheckedUpdateInput_schema_1.LabRxTemplateUncheckedUpdateInputObjectSchema]) }).strict(); +exports.LabRxTemplateUpsertOneZodSchema = z.object({ select: LabRxTemplateSelect_schema_1.LabRxTemplateSelectObjectSchema.optional(), include: LabRxTemplateInclude_schema_1.LabRxTemplateIncludeObjectSchema.optional(), where: LabRxTemplateWhereUniqueInput_schema_1.LabRxTemplateWhereUniqueInputObjectSchema, create: z.union([LabRxTemplateCreateInput_schema_1.LabRxTemplateCreateInputObjectSchema, LabRxTemplateUncheckedCreateInput_schema_1.LabRxTemplateUncheckedCreateInputObjectSchema]), update: z.union([LabRxTemplateUpdateInput_schema_1.LabRxTemplateUpdateInputObjectSchema, LabRxTemplateUncheckedUpdateInput_schema_1.LabRxTemplateUncheckedUpdateInputObjectSchema]) }).strict(); diff --git a/packages/db/shared/schemas/upsertOneSeleniumSettings.schema.js b/packages/db/shared/schemas/upsertOneSeleniumSettings.schema.js new file mode 100644 index 00000000..70533953 --- /dev/null +++ b/packages/db/shared/schemas/upsertOneSeleniumSettings.schema.js @@ -0,0 +1,46 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsUpsertOneZodSchema = exports.SeleniumSettingsUpsertOneSchema = void 0; +const z = __importStar(require("zod")); +const SeleniumSettingsSelect_schema_1 = require("./objects/SeleniumSettingsSelect.schema"); +const SeleniumSettingsInclude_schema_1 = require("./objects/SeleniumSettingsInclude.schema"); +const SeleniumSettingsWhereUniqueInput_schema_1 = require("./objects/SeleniumSettingsWhereUniqueInput.schema"); +const SeleniumSettingsCreateInput_schema_1 = require("./objects/SeleniumSettingsCreateInput.schema"); +const SeleniumSettingsUncheckedCreateInput_schema_1 = require("./objects/SeleniumSettingsUncheckedCreateInput.schema"); +const SeleniumSettingsUpdateInput_schema_1 = require("./objects/SeleniumSettingsUpdateInput.schema"); +const SeleniumSettingsUncheckedUpdateInput_schema_1 = require("./objects/SeleniumSettingsUncheckedUpdateInput.schema"); +exports.SeleniumSettingsUpsertOneSchema = z.object({ select: SeleniumSettingsSelect_schema_1.SeleniumSettingsSelectObjectSchema.optional(), include: SeleniumSettingsInclude_schema_1.SeleniumSettingsIncludeObjectSchema.optional(), where: SeleniumSettingsWhereUniqueInput_schema_1.SeleniumSettingsWhereUniqueInputObjectSchema, create: z.union([SeleniumSettingsCreateInput_schema_1.SeleniumSettingsCreateInputObjectSchema, SeleniumSettingsUncheckedCreateInput_schema_1.SeleniumSettingsUncheckedCreateInputObjectSchema]), update: z.union([SeleniumSettingsUpdateInput_schema_1.SeleniumSettingsUpdateInputObjectSchema, SeleniumSettingsUncheckedUpdateInput_schema_1.SeleniumSettingsUncheckedUpdateInputObjectSchema]) }).strict(); +exports.SeleniumSettingsUpsertOneZodSchema = z.object({ select: SeleniumSettingsSelect_schema_1.SeleniumSettingsSelectObjectSchema.optional(), include: SeleniumSettingsInclude_schema_1.SeleniumSettingsIncludeObjectSchema.optional(), where: SeleniumSettingsWhereUniqueInput_schema_1.SeleniumSettingsWhereUniqueInputObjectSchema, create: z.union([SeleniumSettingsCreateInput_schema_1.SeleniumSettingsCreateInputObjectSchema, SeleniumSettingsUncheckedCreateInput_schema_1.SeleniumSettingsUncheckedCreateInputObjectSchema]), update: z.union([SeleniumSettingsUpdateInput_schema_1.SeleniumSettingsUpdateInputObjectSchema, SeleniumSettingsUncheckedUpdateInput_schema_1.SeleniumSettingsUncheckedUpdateInputObjectSchema]) }).strict(); diff --git a/packages/db/shared/schemas/variants/input/Appointment.input.d.ts b/packages/db/shared/schemas/variants/input/Appointment.input.d.ts index c4aae684..2013c891 100644 --- a/packages/db/shared/schemas/variants/input/Appointment.input.d.ts +++ b/packages/db/shared/schemas/variants/input/Appointment.input.d.ts @@ -4,21 +4,26 @@ export declare const AppointmentInputSchema: z.ZodObject<{ patientId: z.ZodNumber; userId: z.ZodNumber; staffId: z.ZodNumber; + npiProviderId: z.ZodNullable>; title: z.ZodString; date: z.ZodDate; startTime: z.ZodString; endTime: z.ZodString; type: z.ZodString; + typeLocked: z.ZodBoolean; notes: z.ZodNullable>; procedureCodeNotes: z.ZodNullable>; status: z.ZodString; + movedByAi: z.ZodBoolean; createdAt: z.ZodDate; eligibilityStatus: z.ZodEnum<["ACTIVE", "INACTIVE", "UNKNOWN", "PLAN_NOT_ACCEPTED"]>; patient: z.ZodUnknown; user: z.ZodUnknown; staff: z.ZodNullable>; + npiProvider: z.ZodNullable>; procedures: z.ZodArray; claims: z.ZodArray; + files: z.ZodArray; }, "strict", z.ZodTypeAny, { type: string; status: string; @@ -27,17 +32,22 @@ export declare const AppointmentInputSchema: z.ZodObject<{ title: string; createdAt: Date; patientId: number; + userId: number; startTime: string; endTime: string; + typeLocked: boolean; + movedByAi: boolean; eligibilityStatus: "ACTIVE" | "INACTIVE" | "UNKNOWN" | "PLAN_NOT_ACCEPTED"; procedures: unknown[]; - userId: number; - staffId: number; claims: unknown[]; + files: unknown[]; + staffId: number; patient?: unknown; + npiProviderId?: number | null | undefined; + npiProvider?: unknown; + user?: unknown; notes?: string | null | undefined; procedureCodeNotes?: string | null | undefined; - user?: unknown; staff?: unknown; }, { type: string; @@ -47,17 +57,22 @@ export declare const AppointmentInputSchema: z.ZodObject<{ title: string; createdAt: Date; patientId: number; + userId: number; startTime: string; endTime: string; + typeLocked: boolean; + movedByAi: boolean; eligibilityStatus: "ACTIVE" | "INACTIVE" | "UNKNOWN" | "PLAN_NOT_ACCEPTED"; procedures: unknown[]; - userId: number; - staffId: number; claims: unknown[]; + files: unknown[]; + staffId: number; patient?: unknown; + npiProviderId?: number | null | undefined; + npiProvider?: unknown; + user?: unknown; notes?: string | null | undefined; procedureCodeNotes?: string | null | undefined; - user?: unknown; staff?: unknown; }>; export type AppointmentInputType = z.infer; diff --git a/packages/db/shared/schemas/variants/input/Appointment.input.d.ts.map b/packages/db/shared/schemas/variants/input/Appointment.input.d.ts.map index 85602cff..25292d39 100644 --- a/packages/db/shared/schemas/variants/input/Appointment.input.d.ts.map +++ b/packages/db/shared/schemas/variants/input/Appointment.input.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"Appointment.input.d.ts","sourceRoot":"","sources":["Appointment.input.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAGzB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoBxB,CAAC;AAEZ,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"Appointment.input.d.ts","sourceRoot":"","sources":["Appointment.input.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAGzB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAyBxB,CAAC;AAEZ,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/input/Appointment.input.js b/packages/db/shared/schemas/variants/input/Appointment.input.js index c2997afc..e28e8ebe 100644 --- a/packages/db/shared/schemas/variants/input/Appointment.input.js +++ b/packages/db/shared/schemas/variants/input/Appointment.input.js @@ -42,6 +42,7 @@ exports.AppointmentInputSchema = z.object({ patientId: z.number().int(), userId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().optional().nullable(), title: z.string(), date: z.date(), startTime: z.string(), @@ -57,6 +58,7 @@ exports.AppointmentInputSchema = z.object({ patient: z.unknown(), user: z.unknown(), staff: z.unknown().optional().nullable(), + npiProvider: z.unknown().optional().nullable(), procedures: z.array(z.unknown()), claims: z.array(z.unknown()), files: z.array(z.unknown()) diff --git a/packages/db/shared/schemas/variants/input/Appointment.input.ts b/packages/db/shared/schemas/variants/input/Appointment.input.ts index 489c27e2..e2194f84 100644 --- a/packages/db/shared/schemas/variants/input/Appointment.input.ts +++ b/packages/db/shared/schemas/variants/input/Appointment.input.ts @@ -6,6 +6,7 @@ export const AppointmentInputSchema = z.object({ patientId: z.number().int(), userId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().optional().nullable(), title: z.string(), date: z.date(), startTime: z.string(), @@ -21,6 +22,7 @@ export const AppointmentInputSchema = z.object({ patient: z.unknown(), user: z.unknown(), staff: z.unknown().optional().nullable(), + npiProvider: z.unknown().optional().nullable(), procedures: z.array(z.unknown()), claims: z.array(z.unknown()), files: z.array(z.unknown()) diff --git a/packages/db/shared/schemas/variants/input/Claim.input.d.ts b/packages/db/shared/schemas/variants/input/Claim.input.d.ts index 0acaa704..b084ae69 100644 --- a/packages/db/shared/schemas/variants/input/Claim.input.d.ts +++ b/packages/db/shared/schemas/variants/input/Claim.input.d.ts @@ -2,7 +2,7 @@ import * as z from 'zod'; export declare const ClaimInputSchema: z.ZodObject<{ id: z.ZodNumber; patientId: z.ZodNumber; - appointmentId: z.ZodNumber; + appointmentId: z.ZodNullable>; userId: z.ZodNumber; staffId: z.ZodNumber; patientName: z.ZodString; @@ -15,11 +15,12 @@ export declare const ClaimInputSchema: z.ZodObject<{ insuranceProvider: z.ZodString; createdAt: z.ZodDate; updatedAt: z.ZodDate; - status: z.ZodEnum<["PENDING", "APPROVED", "CANCELLED", "REVIEW", "VOID"]>; + status: z.ZodEnum<["PENDING", "APPROVED", "CANCELLED", "REVIEW", "VOID", "PREAUTH"]>; claimNumber: z.ZodNullable>; + preAuthNumber: z.ZodNullable>; npiProviderId: z.ZodNullable>; patient: z.ZodUnknown; - appointment: z.ZodUnknown; + appointment: z.ZodNullable>; user: z.ZodNullable>; staff: z.ZodNullable>; npiProvider: z.ZodNullable>; @@ -27,11 +28,10 @@ export declare const ClaimInputSchema: z.ZodObject<{ claimFiles: z.ZodArray; payment: z.ZodNullable>; }, "strict", z.ZodTypeAny, { - status: "PENDING" | "APPROVED" | "CANCELLED" | "REVIEW" | "VOID"; + status: "PENDING" | "APPROVED" | "CANCELLED" | "REVIEW" | "VOID" | "PREAUTH"; id: number; createdAt: Date; patientId: number; - appointmentId: number; userId: number; staffId: number; updatedAt: Date; @@ -46,6 +46,7 @@ export declare const ClaimInputSchema: z.ZodObject<{ claimFiles: unknown[]; patient?: unknown; npiProviderId?: number | null | undefined; + appointmentId?: number | null | undefined; appointment?: unknown; npiProvider?: unknown; user?: unknown; @@ -53,12 +54,12 @@ export declare const ClaimInputSchema: z.ZodObject<{ payment?: unknown; missingTeeth?: unknown; claimNumber?: string | null | undefined; + preAuthNumber?: string | null | undefined; }, { - status: "PENDING" | "APPROVED" | "CANCELLED" | "REVIEW" | "VOID"; + status: "PENDING" | "APPROVED" | "CANCELLED" | "REVIEW" | "VOID" | "PREAUTH"; id: number; createdAt: Date; patientId: number; - appointmentId: number; userId: number; staffId: number; updatedAt: Date; @@ -73,6 +74,7 @@ export declare const ClaimInputSchema: z.ZodObject<{ claimFiles: unknown[]; patient?: unknown; npiProviderId?: number | null | undefined; + appointmentId?: number | null | undefined; appointment?: unknown; npiProvider?: unknown; user?: unknown; @@ -80,6 +82,7 @@ export declare const ClaimInputSchema: z.ZodObject<{ payment?: unknown; missingTeeth?: unknown; claimNumber?: string | null | undefined; + preAuthNumber?: string | null | undefined; }>; export type ClaimInputType = z.infer; //# sourceMappingURL=Claim.input.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/input/Claim.input.d.ts.map b/packages/db/shared/schemas/variants/input/Claim.input.d.ts.map index ff758377..d42ca119 100644 --- a/packages/db/shared/schemas/variants/input/Claim.input.d.ts.map +++ b/packages/db/shared/schemas/variants/input/Claim.input.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"Claim.input.d.ts","sourceRoot":"","sources":["Claim.input.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAIzB,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA2BlB,CAAC;AAEZ,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"Claim.input.d.ts","sourceRoot":"","sources":["Claim.input.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAIzB,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4BlB,CAAC;AAEZ,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/input/CloudFolder.input.d.ts b/packages/db/shared/schemas/variants/input/CloudFolder.input.d.ts index 85acf877..b4eaad7c 100644 --- a/packages/db/shared/schemas/variants/input/CloudFolder.input.d.ts +++ b/packages/db/shared/schemas/variants/input/CloudFolder.input.d.ts @@ -4,9 +4,11 @@ export declare const CloudFolderInputSchema: z.ZodObject<{ userId: z.ZodNumber; name: z.ZodString; parentId: z.ZodNullable>; + patientId: z.ZodNullable>; parent: z.ZodNullable>; children: z.ZodArray; user: z.ZodUnknown; + patient: z.ZodNullable>; files: z.ZodArray; createdAt: z.ZodDate; updatedAt: z.ZodDate; @@ -15,9 +17,11 @@ export declare const CloudFolderInputSchema: z.ZodObject<{ createdAt: Date; userId: number; name: string; + files: unknown[]; updatedAt: Date; children: unknown[]; - files: unknown[]; + patientId?: number | null | undefined; + patient?: unknown; user?: unknown; parentId?: number | null | undefined; parent?: unknown; @@ -26,9 +30,11 @@ export declare const CloudFolderInputSchema: z.ZodObject<{ createdAt: Date; userId: number; name: string; + files: unknown[]; updatedAt: Date; children: unknown[]; - files: unknown[]; + patientId?: number | null | undefined; + patient?: unknown; user?: unknown; parentId?: number | null | undefined; parent?: unknown; diff --git a/packages/db/shared/schemas/variants/input/CloudFolder.input.d.ts.map b/packages/db/shared/schemas/variants/input/CloudFolder.input.d.ts.map index ef07ce4e..d731e482 100644 --- a/packages/db/shared/schemas/variants/input/CloudFolder.input.d.ts.map +++ b/packages/db/shared/schemas/variants/input/CloudFolder.input.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"CloudFolder.input.d.ts","sourceRoot":"","sources":["CloudFolder.input.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAWxB,CAAC;AAEZ,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"CloudFolder.input.d.ts","sourceRoot":"","sources":["CloudFolder.input.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAaxB,CAAC;AAEZ,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/input/Communication.input.d.ts b/packages/db/shared/schemas/variants/input/Communication.input.d.ts index 90d9a49b..de16b483 100644 --- a/packages/db/shared/schemas/variants/input/Communication.input.d.ts +++ b/packages/db/shared/schemas/variants/input/Communication.input.d.ts @@ -20,8 +20,8 @@ export declare const CommunicationInputSchema: z.ZodObject<{ channel: "sms" | "voice"; direction: "outbound" | "inbound"; patient?: unknown; - user?: unknown; userId?: number | null | undefined; + user?: unknown; body?: string | null | undefined; callDuration?: number | null | undefined; twilioSid?: string | null | undefined; @@ -33,8 +33,8 @@ export declare const CommunicationInputSchema: z.ZodObject<{ channel: "sms" | "voice"; direction: "outbound" | "inbound"; patient?: unknown; - user?: unknown; userId?: number | null | undefined; + user?: unknown; body?: string | null | undefined; callDuration?: number | null | undefined; twilioSid?: string | null | undefined; diff --git a/packages/db/shared/schemas/variants/input/InsuranceCredential.input.d.ts b/packages/db/shared/schemas/variants/input/InsuranceCredential.input.d.ts index 40012c03..cd012bfa 100644 --- a/packages/db/shared/schemas/variants/input/InsuranceCredential.input.d.ts +++ b/packages/db/shared/schemas/variants/input/InsuranceCredential.input.d.ts @@ -8,17 +8,17 @@ export declare const InsuranceCredentialInputSchema: z.ZodObject<{ user: z.ZodUnknown; }, "strict", z.ZodTypeAny, { id: number; - userId: number; siteKey: string; username: string; password: string; + userId: number; user?: unknown; }, { id: number; - userId: number; siteKey: string; username: string; password: string; + userId: number; user?: unknown; }>; export type InsuranceCredentialInputType = z.infer; diff --git a/packages/db/shared/schemas/variants/input/LabRxTemplate.input.js b/packages/db/shared/schemas/variants/input/LabRxTemplate.input.js new file mode 100644 index 00000000..3b52f745 --- /dev/null +++ b/packages/db/shared/schemas/variants/input/LabRxTemplate.input.js @@ -0,0 +1,55 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateInputSchema = void 0; +const z = __importStar(require("zod")); +// prettier-ignore +exports.LabRxTemplateInputSchema = z.object({ + id: z.number().int(), + userId: z.number().int(), + name: z.string(), + labName: z.string().optional().nullable(), + labPhone: z.string().optional().nullable(), + labFax: z.string().optional().nullable(), + labAddress: z.string().optional().nullable(), + labAccount: z.string().optional().nullable(), + caseType: z.string().optional().nullable(), + material: z.string().optional().nullable(), + instructions: z.string().optional().nullable(), + sortOrder: z.number().int(), + createdAt: z.date(), + updatedAt: z.date(), + user: z.unknown() +}).strict(); diff --git a/packages/db/shared/schemas/variants/input/NpiProvider.input.d.ts b/packages/db/shared/schemas/variants/input/NpiProvider.input.d.ts index 27a64b87..ec50b1d8 100644 --- a/packages/db/shared/schemas/variants/input/NpiProvider.input.d.ts +++ b/packages/db/shared/schemas/variants/input/NpiProvider.input.d.ts @@ -4,27 +4,39 @@ export declare const NpiProviderInputSchema: z.ZodObject<{ userId: z.ZodNumber; npiNumber: z.ZodString; providerName: z.ZodString; + sortOrder: z.ZodNumber; createdAt: z.ZodDate; user: z.ZodUnknown; claims: z.ZodArray; + payments: z.ZodArray; + commissionBatches: z.ZodArray; appointmentProcedures: z.ZodArray; + appointments: z.ZodArray; }, "strict", z.ZodTypeAny, { id: number; createdAt: Date; userId: number; + appointments: unknown[]; claims: unknown[]; npiNumber: string; providerName: string; + sortOrder: number; + payments: unknown[]; appointmentProcedures: unknown[]; + commissionBatches: unknown[]; user?: unknown; }, { id: number; createdAt: Date; userId: number; + appointments: unknown[]; claims: unknown[]; npiNumber: string; providerName: string; + sortOrder: number; + payments: unknown[]; appointmentProcedures: unknown[]; + commissionBatches: unknown[]; user?: unknown; }>; export type NpiProviderInputType = z.infer; diff --git a/packages/db/shared/schemas/variants/input/NpiProvider.input.d.ts.map b/packages/db/shared/schemas/variants/input/NpiProvider.input.d.ts.map index 68121823..bdfd4eba 100644 --- a/packages/db/shared/schemas/variants/input/NpiProvider.input.d.ts.map +++ b/packages/db/shared/schemas/variants/input/NpiProvider.input.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"NpiProvider.input.d.ts","sourceRoot":"","sources":["NpiProvider.input.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;EASxB,CAAC;AAEZ,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"NpiProvider.input.d.ts","sourceRoot":"","sources":["NpiProvider.input.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAaxB,CAAC;AAEZ,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/input/NpiProvider.input.js b/packages/db/shared/schemas/variants/input/NpiProvider.input.js index 04f4e853..9a9803b9 100644 --- a/packages/db/shared/schemas/variants/input/NpiProvider.input.js +++ b/packages/db/shared/schemas/variants/input/NpiProvider.input.js @@ -47,5 +47,6 @@ exports.NpiProviderInputSchema = z.object({ claims: z.array(z.unknown()), payments: z.array(z.unknown()), commissionBatches: z.array(z.unknown()), - appointmentProcedures: z.array(z.unknown()) + appointmentProcedures: z.array(z.unknown()), + appointments: z.array(z.unknown()) }).strict(); diff --git a/packages/db/shared/schemas/variants/input/NpiProvider.input.ts b/packages/db/shared/schemas/variants/input/NpiProvider.input.ts index a1543a21..5a071a06 100644 --- a/packages/db/shared/schemas/variants/input/NpiProvider.input.ts +++ b/packages/db/shared/schemas/variants/input/NpiProvider.input.ts @@ -11,7 +11,8 @@ export const NpiProviderInputSchema = z.object({ claims: z.array(z.unknown()), payments: z.array(z.unknown()), commissionBatches: z.array(z.unknown()), - appointmentProcedures: z.array(z.unknown()) + appointmentProcedures: z.array(z.unknown()), + appointments: z.array(z.unknown()) }).strict(); export type NpiProviderInputType = z.infer; diff --git a/packages/db/shared/schemas/variants/input/Patient.input.d.ts b/packages/db/shared/schemas/variants/input/Patient.input.d.ts index 24266ecd..f8ffdd45 100644 --- a/packages/db/shared/schemas/variants/input/Patient.input.d.ts +++ b/packages/db/shared/schemas/variants/input/Patient.input.d.ts @@ -16,9 +16,11 @@ export declare const PatientInputSchema: z.ZodObject<{ policyHolder: z.ZodNullable>; allergies: z.ZodNullable>; medicalConditions: z.ZodNullable>; + preferredLanguage: z.ZodNullable>; status: z.ZodEnum<["ACTIVE", "INACTIVE", "UNKNOWN", "PLAN_NOT_ACCEPTED"]>; userId: z.ZodNumber; createdAt: z.ZodDate; + updatedAt: z.ZodDate; user: z.ZodUnknown; appointments: z.ZodArray; procedures: z.ZodArray; @@ -27,62 +29,72 @@ export declare const PatientInputSchema: z.ZodObject<{ payment: z.ZodArray; communications: z.ZodArray; documents: z.ZodArray; + conversation: z.ZodNullable>; + cloudFolders: z.ZodArray; }, "strict", z.ZodTypeAny, { status: "ACTIVE" | "INACTIVE" | "UNKNOWN" | "PLAN_NOT_ACCEPTED"; id: number; createdAt: Date; - procedures: unknown[]; userId: number; - claims: unknown[]; phone: string; appointments: unknown[]; + procedures: unknown[]; + claims: unknown[]; payment: unknown[]; + updatedAt: Date; + cloudFolders: unknown[]; + communications: unknown[]; firstName: string; lastName: string; gender: string; groups: unknown[]; documents: unknown[]; - communications: unknown[]; user?: unknown; email?: string | null | undefined; dateOfBirth?: Date | null | undefined; insuranceProvider?: string | null | undefined; - address?: string | null | undefined; city?: string | null | undefined; zipCode?: string | null | undefined; + address?: string | null | undefined; insuranceId?: string | null | undefined; groupNumber?: string | null | undefined; policyHolder?: string | null | undefined; allergies?: string | null | undefined; medicalConditions?: string | null | undefined; + preferredLanguage?: string | null | undefined; + conversation?: unknown; }, { status: "ACTIVE" | "INACTIVE" | "UNKNOWN" | "PLAN_NOT_ACCEPTED"; id: number; createdAt: Date; - procedures: unknown[]; userId: number; - claims: unknown[]; phone: string; appointments: unknown[]; + procedures: unknown[]; + claims: unknown[]; payment: unknown[]; + updatedAt: Date; + cloudFolders: unknown[]; + communications: unknown[]; firstName: string; lastName: string; gender: string; groups: unknown[]; documents: unknown[]; - communications: unknown[]; user?: unknown; email?: string | null | undefined; dateOfBirth?: Date | null | undefined; insuranceProvider?: string | null | undefined; - address?: string | null | undefined; city?: string | null | undefined; zipCode?: string | null | undefined; + address?: string | null | undefined; insuranceId?: string | null | undefined; groupNumber?: string | null | undefined; policyHolder?: string | null | undefined; allergies?: string | null | undefined; medicalConditions?: string | null | undefined; + preferredLanguage?: string | null | undefined; + conversation?: unknown; }>; export type PatientInputType = z.infer; //# sourceMappingURL=Patient.input.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/input/Patient.input.d.ts.map b/packages/db/shared/schemas/variants/input/Patient.input.d.ts.map index fed225dd..3ffa0ddf 100644 --- a/packages/db/shared/schemas/variants/input/Patient.input.d.ts.map +++ b/packages/db/shared/schemas/variants/input/Patient.input.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"Patient.input.d.ts","sourceRoot":"","sources":["Patient.input.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAGzB,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4BpB,CAAC;AAEZ,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"Patient.input.d.ts","sourceRoot":"","sources":["Patient.input.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAGzB,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgCpB,CAAC;AAEZ,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/input/Payment.input.d.ts b/packages/db/shared/schemas/variants/input/Payment.input.d.ts index e5453170..fa33846a 100644 --- a/packages/db/shared/schemas/variants/input/Payment.input.d.ts +++ b/packages/db/shared/schemas/variants/input/Payment.input.d.ts @@ -5,10 +5,14 @@ export declare const PaymentInputSchema: z.ZodObject<{ patientId: z.ZodNumber; userId: z.ZodNumber; updatedById: z.ZodNullable>; + npiProviderId: z.ZodNullable>; totalBilled: z.ZodNumber; totalPaid: z.ZodNumber; totalAdjusted: z.ZodNumber; totalDue: z.ZodNumber; + mhPaidAmount: z.ZodNullable>; + copayment: z.ZodNumber; + adjustment: z.ZodNumber; status: z.ZodEnum<["PENDING", "PARTIALLY_PAID", "PAID", "OVERPAID", "DENIED", "VOID"]>; notes: z.ZodNullable>; icn: z.ZodNullable>; @@ -17,8 +21,10 @@ export declare const PaymentInputSchema: z.ZodObject<{ claim: z.ZodNullable>; patient: z.ZodUnknown; updatedBy: z.ZodNullable>; + npiProvider: z.ZodNullable>; serviceLineTransactions: z.ZodArray; serviceLines: z.ZodArray; + commissionBatchItems: z.ZodArray; }, "strict", z.ZodTypeAny, { status: "PENDING" | "VOID" | "PARTIALLY_PAID" | "PAID" | "OVERPAID" | "DENIED"; id: number; @@ -30,15 +36,21 @@ export declare const PaymentInputSchema: z.ZodObject<{ totalAdjusted: number; totalDue: number; serviceLineTransactions: unknown[]; + copayment: number; + adjustment: number; updatedAt: Date; serviceLines: unknown[]; + commissionBatchItems: unknown[]; patient?: unknown; - notes?: string | null | undefined; + npiProviderId?: number | null | undefined; + npiProvider?: unknown; claimId?: number | null | undefined; claim?: unknown; + notes?: string | null | undefined; icn?: string | null | undefined; - updatedBy?: unknown; updatedById?: number | null | undefined; + mhPaidAmount?: number | null | undefined; + updatedBy?: unknown; }, { status: "PENDING" | "VOID" | "PARTIALLY_PAID" | "PAID" | "OVERPAID" | "DENIED"; id: number; @@ -50,15 +62,21 @@ export declare const PaymentInputSchema: z.ZodObject<{ totalAdjusted: number; totalDue: number; serviceLineTransactions: unknown[]; + copayment: number; + adjustment: number; updatedAt: Date; serviceLines: unknown[]; + commissionBatchItems: unknown[]; patient?: unknown; - notes?: string | null | undefined; + npiProviderId?: number | null | undefined; + npiProvider?: unknown; claimId?: number | null | undefined; claim?: unknown; + notes?: string | null | undefined; icn?: string | null | undefined; - updatedBy?: unknown; updatedById?: number | null | undefined; + mhPaidAmount?: number | null | undefined; + updatedBy?: unknown; }>; export type PaymentInputType = z.infer; //# sourceMappingURL=Payment.input.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/input/Payment.input.d.ts.map b/packages/db/shared/schemas/variants/input/Payment.input.d.ts.map index 0bfaf43a..e638616e 100644 --- a/packages/db/shared/schemas/variants/input/Payment.input.d.ts.map +++ b/packages/db/shared/schemas/variants/input/Payment.input.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"Payment.input.d.ts","sourceRoot":"","sources":["Payment.input.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAGzB,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoBpB,CAAC;AAEZ,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"Payment.input.d.ts","sourceRoot":"","sources":["Payment.input.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAGzB,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0BpB,CAAC;AAEZ,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/input/SeleniumSettings.input.js b/packages/db/shared/schemas/variants/input/SeleniumSettings.input.js new file mode 100644 index 00000000..5a20ef0d --- /dev/null +++ b/packages/db/shared/schemas/variants/input/SeleniumSettings.input.js @@ -0,0 +1,44 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsInputSchema = void 0; +const z = __importStar(require("zod")); +// prettier-ignore +exports.SeleniumSettingsInputSchema = z.object({ + id: z.number().int(), + userId: z.number().int(), + paymentGroupId: z.string(), + user: z.unknown() +}).strict(); diff --git a/packages/db/shared/schemas/variants/input/ServiceLine.input.d.ts b/packages/db/shared/schemas/variants/input/ServiceLine.input.d.ts index 912ded88..e8b2ffad 100644 --- a/packages/db/shared/schemas/variants/input/ServiceLine.input.d.ts +++ b/packages/db/shared/schemas/variants/input/ServiceLine.input.d.ts @@ -9,6 +9,9 @@ export declare const ServiceLineInputSchema: z.ZodObject<{ arch: z.ZodNullable>; toothNumber: z.ZodNullable>; toothSurface: z.ZodNullable>; + icn: z.ZodNullable>; + paidCode: z.ZodNullable>; + allowedAmount: z.ZodNullable>; totalBilled: z.ZodNumber; totalPaid: z.ZodNumber; totalAdjusted: z.ZodNumber; @@ -35,6 +38,9 @@ export declare const ServiceLineInputSchema: z.ZodObject<{ payment?: unknown; quad?: string | null | undefined; arch?: string | null | undefined; + icn?: string | null | undefined; + paidCode?: string | null | undefined; + allowedAmount?: number | null | undefined; }, { status: "PENDING" | "PARTIALLY_PAID" | "PAID" | "OVERPAID" | "DENIED" | "UNPAID" | "ADJUSTED"; id: number; @@ -53,6 +59,9 @@ export declare const ServiceLineInputSchema: z.ZodObject<{ payment?: unknown; quad?: string | null | undefined; arch?: string | null | undefined; + icn?: string | null | undefined; + paidCode?: string | null | undefined; + allowedAmount?: number | null | undefined; }>; export type ServiceLineInputType = z.infer; //# sourceMappingURL=ServiceLine.input.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/input/ServiceLine.input.d.ts.map b/packages/db/shared/schemas/variants/input/ServiceLine.input.d.ts.map index d6e9bf2a..593ae98b 100644 --- a/packages/db/shared/schemas/variants/input/ServiceLine.input.d.ts.map +++ b/packages/db/shared/schemas/variants/input/ServiceLine.input.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ServiceLine.input.d.ts","sourceRoot":"","sources":["ServiceLine.input.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAGzB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkBxB,CAAC;AAEZ,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"ServiceLine.input.d.ts","sourceRoot":"","sources":["ServiceLine.input.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAGzB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqBxB,CAAC;AAEZ,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/input/ServiceLineTransaction.input.d.ts b/packages/db/shared/schemas/variants/input/ServiceLineTransaction.input.d.ts index 79509309..82390880 100644 --- a/packages/db/shared/schemas/variants/input/ServiceLineTransaction.input.d.ts +++ b/packages/db/shared/schemas/variants/input/ServiceLineTransaction.input.d.ts @@ -16,12 +16,12 @@ export declare const ServiceLineTransactionInputSchema: z.ZodObject<{ }, "strict", z.ZodTypeAny, { id: number; createdAt: Date; - paymentId: number; + serviceLineId: number; paidAmount: number; adjustedAmount: number; method: "OTHER" | "EFT" | "CHECK" | "CASH" | "CARD"; receivedDate: Date; - serviceLineId: number; + paymentId: number; notes?: string | null | undefined; transactionId?: string | null | undefined; payerName?: string | null | undefined; @@ -30,12 +30,12 @@ export declare const ServiceLineTransactionInputSchema: z.ZodObject<{ }, { id: number; createdAt: Date; - paymentId: number; + serviceLineId: number; paidAmount: number; adjustedAmount: number; method: "OTHER" | "EFT" | "CHECK" | "CASH" | "CARD"; receivedDate: Date; - serviceLineId: number; + paymentId: number; notes?: string | null | undefined; transactionId?: string | null | undefined; payerName?: string | null | undefined; diff --git a/packages/db/shared/schemas/variants/input/Staff.input.d.ts b/packages/db/shared/schemas/variants/input/Staff.input.d.ts index 80af513b..f012c643 100644 --- a/packages/db/shared/schemas/variants/input/Staff.input.d.ts +++ b/packages/db/shared/schemas/variants/input/Staff.input.d.ts @@ -14,10 +14,10 @@ export declare const StaffInputSchema: z.ZodObject<{ id: number; createdAt: Date; userId: number; - claims: unknown[]; name: string; role: string; appointments: unknown[]; + claims: unknown[]; user?: unknown; email?: string | null | undefined; phone?: string | null | undefined; @@ -25,10 +25,10 @@ export declare const StaffInputSchema: z.ZodObject<{ id: number; createdAt: Date; userId: number; - claims: unknown[]; name: string; role: string; appointments: unknown[]; + claims: unknown[]; user?: unknown; email?: string | null | undefined; phone?: string | null | undefined; diff --git a/packages/db/shared/schemas/variants/input/User.input.d.ts b/packages/db/shared/schemas/variants/input/User.input.d.ts index 4f4cae7c..a7f220a1 100644 --- a/packages/db/shared/schemas/variants/input/User.input.d.ts +++ b/packages/db/shared/schemas/variants/input/User.input.d.ts @@ -4,13 +4,19 @@ export declare const UserInputSchema: z.ZodObject<{ username: z.ZodString; password: z.ZodString; autoBackupEnabled: z.ZodBoolean; + autoBackupHour: z.ZodNumber; usbBackupEnabled: z.ZodBoolean; + usbBackupHour: z.ZodNumber; + autoMhCheckEnabled: z.ZodBoolean; + autoMhCheckDayOfWeek: z.ZodNumber; + autoMhCheckHour: z.ZodNumber; patients: z.ZodArray; appointments: z.ZodArray; staff: z.ZodArray; npiProviders: z.ZodArray; claims: z.ZodArray; insuranceCredentials: z.ZodArray; + shoppingVendors: z.ZodArray; updatedPayments: z.ZodArray; backups: z.ZodArray; backupDestinations: z.ZodArray; @@ -18,44 +24,83 @@ export declare const UserInputSchema: z.ZodObject<{ cloudFolders: z.ZodArray; cloudFiles: z.ZodArray; communications: z.ZodArray; + twilioSettings: z.ZodNullable>; + aiSettings: z.ZodNullable>; + officeHours: z.ZodNullable>; + officeContact: z.ZodNullable>; + procedureTimeslot: z.ZodNullable>; + insuranceContacts: z.ZodArray; + patientConversations: z.ZodArray; + labRxTemplates: z.ZodArray; + seleniumSettings: z.ZodNullable>; }, "strict", z.ZodTypeAny, { id: number; - staff: unknown[]; - claims: unknown[]; - appointments: unknown[]; username: string; password: string; - communications: unknown[]; + appointments: unknown[]; + staff: unknown[]; + claims: unknown[]; autoBackupEnabled: boolean; + autoBackupHour: number; usbBackupEnabled: boolean; + usbBackupHour: number; + autoMhCheckEnabled: boolean; + autoMhCheckDayOfWeek: number; + autoMhCheckHour: number; patients: unknown[]; npiProviders: unknown[]; insuranceCredentials: unknown[]; + shoppingVendors: unknown[]; updatedPayments: unknown[]; backups: unknown[]; backupDestinations: unknown[]; notifications: unknown[]; cloudFolders: unknown[]; cloudFiles: unknown[]; + communications: unknown[]; + insuranceContacts: unknown[]; + labRxTemplates: unknown[]; + patientConversations: unknown[]; + twilioSettings?: unknown; + aiSettings?: unknown; + officeHours?: unknown; + officeContact?: unknown; + procedureTimeslot?: unknown; + seleniumSettings?: unknown; }, { id: number; - staff: unknown[]; - claims: unknown[]; - appointments: unknown[]; username: string; password: string; - communications: unknown[]; + appointments: unknown[]; + staff: unknown[]; + claims: unknown[]; autoBackupEnabled: boolean; + autoBackupHour: number; usbBackupEnabled: boolean; + usbBackupHour: number; + autoMhCheckEnabled: boolean; + autoMhCheckDayOfWeek: number; + autoMhCheckHour: number; patients: unknown[]; npiProviders: unknown[]; insuranceCredentials: unknown[]; + shoppingVendors: unknown[]; updatedPayments: unknown[]; backups: unknown[]; backupDestinations: unknown[]; notifications: unknown[]; cloudFolders: unknown[]; cloudFiles: unknown[]; + communications: unknown[]; + insuranceContacts: unknown[]; + labRxTemplates: unknown[]; + patientConversations: unknown[]; + twilioSettings?: unknown; + aiSettings?: unknown; + officeHours?: unknown; + officeContact?: unknown; + procedureTimeslot?: unknown; + seleniumSettings?: unknown; }>; export type UserInputType = z.infer; //# sourceMappingURL=User.input.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/input/User.input.d.ts.map b/packages/db/shared/schemas/variants/input/User.input.d.ts.map index 01349536..7d44dec3 100644 --- a/packages/db/shared/schemas/variants/input/User.input.d.ts.map +++ b/packages/db/shared/schemas/variants/input/User.input.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"User.input.d.ts","sourceRoot":"","sources":["User.input.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmBjB,CAAC;AAEZ,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"User.input.d.ts","sourceRoot":"","sources":["User.input.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkCjB,CAAC;AAEZ,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/input/User.input.js b/packages/db/shared/schemas/variants/input/User.input.js index 534aeb94..213b06a5 100644 --- a/packages/db/shared/schemas/variants/input/User.input.js +++ b/packages/db/shared/schemas/variants/input/User.input.js @@ -67,5 +67,7 @@ exports.UserInputSchema = z.object({ officeContact: z.unknown().optional().nullable(), procedureTimeslot: z.unknown().optional().nullable(), insuranceContacts: z.array(z.unknown()), - patientConversations: z.array(z.unknown()) + patientConversations: z.array(z.unknown()), + labRxTemplates: z.array(z.unknown()), + seleniumSettings: z.unknown().optional().nullable() }).strict(); diff --git a/packages/db/shared/schemas/variants/input/index.d.ts b/packages/db/shared/schemas/variants/input/index.d.ts index bf031f74..c9f6a935 100644 --- a/packages/db/shared/schemas/variants/input/index.d.ts +++ b/packages/db/shared/schemas/variants/input/index.d.ts @@ -5,6 +5,7 @@ export { UserInputSchema } from './User.input'; export { PatientInputSchema } from './Patient.input'; export { AppointmentInputSchema } from './Appointment.input'; +export { AppointmentFileInputSchema } from './AppointmentFile.input'; export { StaffInputSchema } from './Staff.input'; export { NpiProviderInputSchema } from './NpiProvider.input'; export { AppointmentProcedureInputSchema } from './AppointmentProcedure.input'; @@ -12,6 +13,7 @@ export { ClaimInputSchema } from './Claim.input'; export { ServiceLineInputSchema } from './ServiceLine.input'; export { ClaimFileInputSchema } from './ClaimFile.input'; export { InsuranceCredentialInputSchema } from './InsuranceCredential.input'; +export { ShoppingVendorInputSchema } from './ShoppingVendor.input'; export { PdfGroupInputSchema } from './PdfGroup.input'; export { PdfFileInputSchema } from './PdfFile.input'; export { PaymentInputSchema } from './Payment.input'; @@ -25,4 +27,15 @@ export { CloudFileInputSchema } from './CloudFile.input'; export { CloudFileChunkInputSchema } from './CloudFileChunk.input'; export { CommunicationInputSchema } from './Communication.input'; export { PatientDocumentInputSchema } from './PatientDocument.input'; +export { TwilioSettingsInputSchema } from './TwilioSettings.input'; +export { AiSettingsInputSchema } from './AiSettings.input'; +export { OfficeHoursInputSchema } from './OfficeHours.input'; +export { OfficeContactInputSchema } from './OfficeContact.input'; +export { InsuranceContactInputSchema } from './InsuranceContact.input'; +export { ProcedureTimeslotInputSchema } from './ProcedureTimeslot.input'; +export { PatientConversationInputSchema } from './PatientConversation.input'; +export { LabRxTemplateInputSchema } from './LabRxTemplate.input'; +export { CommissionBatchInputSchema } from './CommissionBatch.input'; +export { CommissionBatchItemInputSchema } from './CommissionBatchItem.input'; +export { SeleniumSettingsInputSchema } from './SeleniumSettings.input'; //# sourceMappingURL=index.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/input/index.d.ts.map b/packages/db/shared/schemas/variants/input/index.d.ts.map index f6f93da0..0a0c7e91 100644 --- a/packages/db/shared/schemas/variants/input/index.d.ts.map +++ b/packages/db/shared/schemas/variants/input/index.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAC/C,OAAO,EAAE,kBAAkB,EAAE,MAAM,iBAAiB,CAAC;AACrD,OAAO,EAAE,sBAAsB,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AACjD,OAAO,EAAE,sBAAsB,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,EAAE,+BAA+B,EAAE,MAAM,8BAA8B,CAAC;AAC/E,OAAO,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AACjD,OAAO,EAAE,sBAAsB,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,EAAE,oBAAoB,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,EAAE,8BAA8B,EAAE,MAAM,6BAA6B,CAAC;AAC7E,OAAO,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,kBAAkB,EAAE,MAAM,iBAAiB,CAAC;AACrD,OAAO,EAAE,kBAAkB,EAAE,MAAM,iBAAiB,CAAC;AACrD,OAAO,EAAE,iCAAiC,EAAE,MAAM,gCAAgC,CAAC;AACnF,OAAO,EAAE,yBAAyB,EAAE,MAAM,wBAAwB,CAAC;AACnE,OAAO,EAAE,4BAA4B,EAAE,MAAM,2BAA2B,CAAC;AACzE,OAAO,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,EAAE,qBAAqB,EAAE,MAAM,oBAAoB,CAAC;AAC3D,OAAO,EAAE,sBAAsB,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,EAAE,oBAAoB,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,EAAE,yBAAyB,EAAE,MAAM,wBAAwB,CAAC;AACnE,OAAO,EAAE,wBAAwB,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,EAAE,0BAA0B,EAAE,MAAM,yBAAyB,CAAC"} \ No newline at end of file +{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAC/C,OAAO,EAAE,kBAAkB,EAAE,MAAM,iBAAiB,CAAC;AACrD,OAAO,EAAE,sBAAsB,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,EAAE,0BAA0B,EAAE,MAAM,yBAAyB,CAAC;AACrE,OAAO,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AACjD,OAAO,EAAE,sBAAsB,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,EAAE,+BAA+B,EAAE,MAAM,8BAA8B,CAAC;AAC/E,OAAO,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AACjD,OAAO,EAAE,sBAAsB,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,EAAE,oBAAoB,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,EAAE,8BAA8B,EAAE,MAAM,6BAA6B,CAAC;AAC7E,OAAO,EAAE,yBAAyB,EAAE,MAAM,wBAAwB,CAAC;AACnE,OAAO,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,kBAAkB,EAAE,MAAM,iBAAiB,CAAC;AACrD,OAAO,EAAE,kBAAkB,EAAE,MAAM,iBAAiB,CAAC;AACrD,OAAO,EAAE,iCAAiC,EAAE,MAAM,gCAAgC,CAAC;AACnF,OAAO,EAAE,yBAAyB,EAAE,MAAM,wBAAwB,CAAC;AACnE,OAAO,EAAE,4BAA4B,EAAE,MAAM,2BAA2B,CAAC;AACzE,OAAO,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,EAAE,qBAAqB,EAAE,MAAM,oBAAoB,CAAC;AAC3D,OAAO,EAAE,sBAAsB,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,EAAE,oBAAoB,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,EAAE,yBAAyB,EAAE,MAAM,wBAAwB,CAAC;AACnE,OAAO,EAAE,wBAAwB,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,EAAE,0BAA0B,EAAE,MAAM,yBAAyB,CAAC;AACrE,OAAO,EAAE,yBAAyB,EAAE,MAAM,wBAAwB,CAAC;AACnE,OAAO,EAAE,qBAAqB,EAAE,MAAM,oBAAoB,CAAC;AAC3D,OAAO,EAAE,sBAAsB,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,EAAE,wBAAwB,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,EAAE,2BAA2B,EAAE,MAAM,0BAA0B,CAAC;AACvE,OAAO,EAAE,4BAA4B,EAAE,MAAM,2BAA2B,CAAC;AACzE,OAAO,EAAE,8BAA8B,EAAE,MAAM,6BAA6B,CAAC;AAC7E,OAAO,EAAE,wBAAwB,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,EAAE,0BAA0B,EAAE,MAAM,yBAAyB,CAAC;AACrE,OAAO,EAAE,8BAA8B,EAAE,MAAM,6BAA6B,CAAC;AAC7E,OAAO,EAAE,2BAA2B,EAAE,MAAM,0BAA0B,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/input/index.js b/packages/db/shared/schemas/variants/input/index.js index 8a77c9e1..9c76167e 100644 --- a/packages/db/shared/schemas/variants/input/index.js +++ b/packages/db/shared/schemas/variants/input/index.js @@ -4,7 +4,7 @@ * Auto-generated - do not edit manually */ Object.defineProperty(exports, "__esModule", { value: true }); -exports.CommissionBatchItemInputSchema = exports.CommissionBatchInputSchema = exports.PatientConversationInputSchema = exports.ProcedureTimeslotInputSchema = exports.InsuranceContactInputSchema = exports.OfficeContactInputSchema = exports.OfficeHoursInputSchema = exports.AiSettingsInputSchema = exports.TwilioSettingsInputSchema = exports.PatientDocumentInputSchema = exports.CommunicationInputSchema = exports.CloudFileChunkInputSchema = exports.CloudFileInputSchema = exports.CloudFolderInputSchema = exports.CronJobLogInputSchema = exports.NotificationInputSchema = exports.BackupDestinationInputSchema = exports.DatabaseBackupInputSchema = exports.ServiceLineTransactionInputSchema = exports.PaymentInputSchema = exports.PdfFileInputSchema = exports.PdfGroupInputSchema = exports.ShoppingVendorInputSchema = exports.InsuranceCredentialInputSchema = exports.ClaimFileInputSchema = exports.ServiceLineInputSchema = exports.ClaimInputSchema = exports.AppointmentProcedureInputSchema = exports.NpiProviderInputSchema = exports.StaffInputSchema = exports.AppointmentFileInputSchema = exports.AppointmentInputSchema = exports.PatientInputSchema = exports.UserInputSchema = void 0; +exports.SeleniumSettingsInputSchema = exports.CommissionBatchItemInputSchema = exports.CommissionBatchInputSchema = exports.LabRxTemplateInputSchema = exports.PatientConversationInputSchema = exports.ProcedureTimeslotInputSchema = exports.InsuranceContactInputSchema = exports.OfficeContactInputSchema = exports.OfficeHoursInputSchema = exports.AiSettingsInputSchema = exports.TwilioSettingsInputSchema = exports.PatientDocumentInputSchema = exports.CommunicationInputSchema = exports.CloudFileChunkInputSchema = exports.CloudFileInputSchema = exports.CloudFolderInputSchema = exports.CronJobLogInputSchema = exports.NotificationInputSchema = exports.BackupDestinationInputSchema = exports.DatabaseBackupInputSchema = exports.ServiceLineTransactionInputSchema = exports.PaymentInputSchema = exports.PdfFileInputSchema = exports.PdfGroupInputSchema = exports.ShoppingVendorInputSchema = exports.InsuranceCredentialInputSchema = exports.ClaimFileInputSchema = exports.ServiceLineInputSchema = exports.ClaimInputSchema = exports.AppointmentProcedureInputSchema = exports.NpiProviderInputSchema = exports.StaffInputSchema = exports.AppointmentFileInputSchema = exports.AppointmentInputSchema = exports.PatientInputSchema = exports.UserInputSchema = void 0; var User_input_1 = require("./User.input"); Object.defineProperty(exports, "UserInputSchema", { enumerable: true, get: function () { return User_input_1.UserInputSchema; } }); var Patient_input_1 = require("./Patient.input"); @@ -69,7 +69,11 @@ var ProcedureTimeslot_input_1 = require("./ProcedureTimeslot.input"); Object.defineProperty(exports, "ProcedureTimeslotInputSchema", { enumerable: true, get: function () { return ProcedureTimeslot_input_1.ProcedureTimeslotInputSchema; } }); var PatientConversation_input_1 = require("./PatientConversation.input"); Object.defineProperty(exports, "PatientConversationInputSchema", { enumerable: true, get: function () { return PatientConversation_input_1.PatientConversationInputSchema; } }); +var LabRxTemplate_input_1 = require("./LabRxTemplate.input"); +Object.defineProperty(exports, "LabRxTemplateInputSchema", { enumerable: true, get: function () { return LabRxTemplate_input_1.LabRxTemplateInputSchema; } }); var CommissionBatch_input_1 = require("./CommissionBatch.input"); Object.defineProperty(exports, "CommissionBatchInputSchema", { enumerable: true, get: function () { return CommissionBatch_input_1.CommissionBatchInputSchema; } }); var CommissionBatchItem_input_1 = require("./CommissionBatchItem.input"); Object.defineProperty(exports, "CommissionBatchItemInputSchema", { enumerable: true, get: function () { return CommissionBatchItem_input_1.CommissionBatchItemInputSchema; } }); +var SeleniumSettings_input_1 = require("./SeleniumSettings.input"); +Object.defineProperty(exports, "SeleniumSettingsInputSchema", { enumerable: true, get: function () { return SeleniumSettings_input_1.SeleniumSettingsInputSchema; } }); diff --git a/packages/db/shared/schemas/variants/pure/Appointment.pure.d.ts b/packages/db/shared/schemas/variants/pure/Appointment.pure.d.ts index 8141a50c..176d3c9f 100644 --- a/packages/db/shared/schemas/variants/pure/Appointment.pure.d.ts +++ b/packages/db/shared/schemas/variants/pure/Appointment.pure.d.ts @@ -4,21 +4,26 @@ export declare const AppointmentModelSchema: z.ZodObject<{ patientId: z.ZodNumber; userId: z.ZodNumber; staffId: z.ZodNumber; + npiProviderId: z.ZodNullable; title: z.ZodString; date: z.ZodDate; startTime: z.ZodString; endTime: z.ZodString; type: z.ZodString; + typeLocked: z.ZodBoolean; notes: z.ZodNullable; procedureCodeNotes: z.ZodNullable; status: z.ZodString; + movedByAi: z.ZodBoolean; createdAt: z.ZodDate; eligibilityStatus: z.ZodEnum<["ACTIVE", "INACTIVE", "UNKNOWN", "PLAN_NOT_ACCEPTED"]>; patient: z.ZodUnknown; user: z.ZodUnknown; staff: z.ZodNullable; + npiProvider: z.ZodNullable; procedures: z.ZodArray; claims: z.ZodArray; + files: z.ZodArray; }, "strict", z.ZodTypeAny, { type: string; status: string; @@ -27,16 +32,21 @@ export declare const AppointmentModelSchema: z.ZodObject<{ title: string; createdAt: Date; patientId: number; + npiProviderId: number | null; + userId: number; startTime: string; endTime: string; + typeLocked: boolean; notes: string | null; procedureCodeNotes: string | null; + movedByAi: boolean; eligibilityStatus: "ACTIVE" | "INACTIVE" | "UNKNOWN" | "PLAN_NOT_ACCEPTED"; procedures: unknown[]; - userId: number; - staffId: number; claims: unknown[]; + files: unknown[]; + staffId: number; patient?: unknown; + npiProvider?: unknown; user?: unknown; staff?: unknown; }, { @@ -47,16 +57,21 @@ export declare const AppointmentModelSchema: z.ZodObject<{ title: string; createdAt: Date; patientId: number; + npiProviderId: number | null; + userId: number; startTime: string; endTime: string; + typeLocked: boolean; notes: string | null; procedureCodeNotes: string | null; + movedByAi: boolean; eligibilityStatus: "ACTIVE" | "INACTIVE" | "UNKNOWN" | "PLAN_NOT_ACCEPTED"; procedures: unknown[]; - userId: number; - staffId: number; claims: unknown[]; + files: unknown[]; + staffId: number; patient?: unknown; + npiProvider?: unknown; user?: unknown; staff?: unknown; }>; diff --git a/packages/db/shared/schemas/variants/pure/Appointment.pure.d.ts.map b/packages/db/shared/schemas/variants/pure/Appointment.pure.d.ts.map index 700f9b02..01d8975d 100644 --- a/packages/db/shared/schemas/variants/pure/Appointment.pure.d.ts.map +++ b/packages/db/shared/schemas/variants/pure/Appointment.pure.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"Appointment.pure.d.ts","sourceRoot":"","sources":["Appointment.pure.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAGzB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoBxB,CAAC;AAEZ,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"Appointment.pure.d.ts","sourceRoot":"","sources":["Appointment.pure.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAGzB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAyBxB,CAAC;AAEZ,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/pure/Appointment.pure.js b/packages/db/shared/schemas/variants/pure/Appointment.pure.js index 3efe74d9..d486faa3 100644 --- a/packages/db/shared/schemas/variants/pure/Appointment.pure.js +++ b/packages/db/shared/schemas/variants/pure/Appointment.pure.js @@ -42,6 +42,7 @@ exports.AppointmentModelSchema = z.object({ patientId: z.number().int(), userId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().nullable(), title: z.string(), date: z.date(), startTime: z.string(), @@ -57,6 +58,7 @@ exports.AppointmentModelSchema = z.object({ patient: z.unknown(), user: z.unknown(), staff: z.unknown().nullable(), + npiProvider: z.unknown().nullable(), procedures: z.array(z.unknown()), claims: z.array(z.unknown()), files: z.array(z.unknown()) diff --git a/packages/db/shared/schemas/variants/pure/Appointment.pure.ts b/packages/db/shared/schemas/variants/pure/Appointment.pure.ts index 9c82265a..e9d23b96 100644 --- a/packages/db/shared/schemas/variants/pure/Appointment.pure.ts +++ b/packages/db/shared/schemas/variants/pure/Appointment.pure.ts @@ -6,6 +6,7 @@ export const AppointmentModelSchema = z.object({ patientId: z.number().int(), userId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().nullable(), title: z.string(), date: z.date(), startTime: z.string(), @@ -21,6 +22,7 @@ export const AppointmentModelSchema = z.object({ patient: z.unknown(), user: z.unknown(), staff: z.unknown().nullable(), + npiProvider: z.unknown().nullable(), procedures: z.array(z.unknown()), claims: z.array(z.unknown()), files: z.array(z.unknown()) diff --git a/packages/db/shared/schemas/variants/pure/Claim.pure.d.ts b/packages/db/shared/schemas/variants/pure/Claim.pure.d.ts index 1b6c2186..7934c854 100644 --- a/packages/db/shared/schemas/variants/pure/Claim.pure.d.ts +++ b/packages/db/shared/schemas/variants/pure/Claim.pure.d.ts @@ -2,7 +2,7 @@ import * as z from 'zod'; export declare const ClaimModelSchema: z.ZodObject<{ id: z.ZodNumber; patientId: z.ZodNumber; - appointmentId: z.ZodNumber; + appointmentId: z.ZodNullable; userId: z.ZodNumber; staffId: z.ZodNumber; patientName: z.ZodString; @@ -15,11 +15,12 @@ export declare const ClaimModelSchema: z.ZodObject<{ insuranceProvider: z.ZodString; createdAt: z.ZodDate; updatedAt: z.ZodDate; - status: z.ZodEnum<["PENDING", "APPROVED", "CANCELLED", "REVIEW", "VOID"]>; + status: z.ZodEnum<["PENDING", "APPROVED", "CANCELLED", "REVIEW", "VOID", "PREAUTH"]>; claimNumber: z.ZodNullable; + preAuthNumber: z.ZodNullable; npiProviderId: z.ZodNullable; patient: z.ZodUnknown; - appointment: z.ZodUnknown; + appointment: z.ZodNullable; user: z.ZodNullable; staff: z.ZodNullable; npiProvider: z.ZodNullable; @@ -27,12 +28,12 @@ export declare const ClaimModelSchema: z.ZodObject<{ claimFiles: z.ZodArray; payment: z.ZodNullable; }, "strict", z.ZodTypeAny, { - status: "PENDING" | "APPROVED" | "CANCELLED" | "REVIEW" | "VOID"; + status: "PENDING" | "APPROVED" | "CANCELLED" | "REVIEW" | "VOID" | "PREAUTH"; id: number; createdAt: Date; patientId: number; npiProviderId: number | null; - appointmentId: number; + appointmentId: number | null; userId: number; staffId: number; updatedAt: Date; @@ -45,6 +46,7 @@ export declare const ClaimModelSchema: z.ZodObject<{ serviceDate: Date; insuranceProvider: string; claimNumber: string | null; + preAuthNumber: string | null; claimFiles: unknown[]; patient?: unknown; appointment?: unknown; @@ -54,12 +56,12 @@ export declare const ClaimModelSchema: z.ZodObject<{ payment?: unknown; missingTeeth?: unknown; }, { - status: "PENDING" | "APPROVED" | "CANCELLED" | "REVIEW" | "VOID"; + status: "PENDING" | "APPROVED" | "CANCELLED" | "REVIEW" | "VOID" | "PREAUTH"; id: number; createdAt: Date; patientId: number; npiProviderId: number | null; - appointmentId: number; + appointmentId: number | null; userId: number; staffId: number; updatedAt: Date; @@ -72,6 +74,7 @@ export declare const ClaimModelSchema: z.ZodObject<{ serviceDate: Date; insuranceProvider: string; claimNumber: string | null; + preAuthNumber: string | null; claimFiles: unknown[]; patient?: unknown; appointment?: unknown; diff --git a/packages/db/shared/schemas/variants/pure/Claim.pure.d.ts.map b/packages/db/shared/schemas/variants/pure/Claim.pure.d.ts.map index 0cf21d21..c9e184aa 100644 --- a/packages/db/shared/schemas/variants/pure/Claim.pure.d.ts.map +++ b/packages/db/shared/schemas/variants/pure/Claim.pure.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"Claim.pure.d.ts","sourceRoot":"","sources":["Claim.pure.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAIzB,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA2BlB,CAAC;AAEZ,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"Claim.pure.d.ts","sourceRoot":"","sources":["Claim.pure.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAIzB,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4BlB,CAAC;AAEZ,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/pure/CloudFolder.pure.d.ts b/packages/db/shared/schemas/variants/pure/CloudFolder.pure.d.ts index fb0d35cd..4956287a 100644 --- a/packages/db/shared/schemas/variants/pure/CloudFolder.pure.d.ts +++ b/packages/db/shared/schemas/variants/pure/CloudFolder.pure.d.ts @@ -4,32 +4,38 @@ export declare const CloudFolderModelSchema: z.ZodObject<{ userId: z.ZodNumber; name: z.ZodString; parentId: z.ZodNullable; + patientId: z.ZodNullable; parent: z.ZodNullable; children: z.ZodArray; user: z.ZodUnknown; + patient: z.ZodNullable; files: z.ZodArray; createdAt: z.ZodDate; updatedAt: z.ZodDate; }, "strict", z.ZodTypeAny, { id: number; createdAt: Date; + patientId: number | null; userId: number; name: string; + files: unknown[]; updatedAt: Date; children: unknown[]; - files: unknown[]; parentId: number | null; + patient?: unknown; user?: unknown; parent?: unknown; }, { id: number; createdAt: Date; + patientId: number | null; userId: number; name: string; + files: unknown[]; updatedAt: Date; children: unknown[]; - files: unknown[]; parentId: number | null; + patient?: unknown; user?: unknown; parent?: unknown; }>; diff --git a/packages/db/shared/schemas/variants/pure/CloudFolder.pure.d.ts.map b/packages/db/shared/schemas/variants/pure/CloudFolder.pure.d.ts.map index df92e48f..710a4719 100644 --- a/packages/db/shared/schemas/variants/pure/CloudFolder.pure.d.ts.map +++ b/packages/db/shared/schemas/variants/pure/CloudFolder.pure.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"CloudFolder.pure.d.ts","sourceRoot":"","sources":["CloudFolder.pure.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAWxB,CAAC;AAEZ,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"CloudFolder.pure.d.ts","sourceRoot":"","sources":["CloudFolder.pure.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAaxB,CAAC;AAEZ,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/pure/InsuranceCredential.pure.d.ts b/packages/db/shared/schemas/variants/pure/InsuranceCredential.pure.d.ts index acf525af..857c8432 100644 --- a/packages/db/shared/schemas/variants/pure/InsuranceCredential.pure.d.ts +++ b/packages/db/shared/schemas/variants/pure/InsuranceCredential.pure.d.ts @@ -8,17 +8,17 @@ export declare const InsuranceCredentialModelSchema: z.ZodObject<{ user: z.ZodUnknown; }, "strict", z.ZodTypeAny, { id: number; - userId: number; siteKey: string; username: string; password: string; + userId: number; user?: unknown; }, { id: number; - userId: number; siteKey: string; username: string; password: string; + userId: number; user?: unknown; }>; export type InsuranceCredentialPureType = z.infer; diff --git a/packages/db/shared/schemas/variants/pure/LabRxTemplate.pure.js b/packages/db/shared/schemas/variants/pure/LabRxTemplate.pure.js new file mode 100644 index 00000000..7313bb2f --- /dev/null +++ b/packages/db/shared/schemas/variants/pure/LabRxTemplate.pure.js @@ -0,0 +1,55 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateModelSchema = void 0; +const z = __importStar(require("zod")); +// prettier-ignore +exports.LabRxTemplateModelSchema = z.object({ + id: z.number().int(), + userId: z.number().int(), + name: z.string(), + labName: z.string().nullable(), + labPhone: z.string().nullable(), + labFax: z.string().nullable(), + labAddress: z.string().nullable(), + labAccount: z.string().nullable(), + caseType: z.string().nullable(), + material: z.string().nullable(), + instructions: z.string().nullable(), + sortOrder: z.number().int(), + createdAt: z.date(), + updatedAt: z.date(), + user: z.unknown() +}).strict(); diff --git a/packages/db/shared/schemas/variants/pure/NpiProvider.pure.d.ts b/packages/db/shared/schemas/variants/pure/NpiProvider.pure.d.ts index 3e745a5f..30caecc6 100644 --- a/packages/db/shared/schemas/variants/pure/NpiProvider.pure.d.ts +++ b/packages/db/shared/schemas/variants/pure/NpiProvider.pure.d.ts @@ -4,27 +4,39 @@ export declare const NpiProviderModelSchema: z.ZodObject<{ userId: z.ZodNumber; npiNumber: z.ZodString; providerName: z.ZodString; + sortOrder: z.ZodNumber; createdAt: z.ZodDate; user: z.ZodUnknown; claims: z.ZodArray; + payments: z.ZodArray; + commissionBatches: z.ZodArray; appointmentProcedures: z.ZodArray; + appointments: z.ZodArray; }, "strict", z.ZodTypeAny, { id: number; createdAt: Date; userId: number; + appointments: unknown[]; claims: unknown[]; npiNumber: string; providerName: string; + sortOrder: number; + payments: unknown[]; appointmentProcedures: unknown[]; + commissionBatches: unknown[]; user?: unknown; }, { id: number; createdAt: Date; userId: number; + appointments: unknown[]; claims: unknown[]; npiNumber: string; providerName: string; + sortOrder: number; + payments: unknown[]; appointmentProcedures: unknown[]; + commissionBatches: unknown[]; user?: unknown; }>; export type NpiProviderPureType = z.infer; diff --git a/packages/db/shared/schemas/variants/pure/NpiProvider.pure.d.ts.map b/packages/db/shared/schemas/variants/pure/NpiProvider.pure.d.ts.map index a483b386..a4d092a5 100644 --- a/packages/db/shared/schemas/variants/pure/NpiProvider.pure.d.ts.map +++ b/packages/db/shared/schemas/variants/pure/NpiProvider.pure.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"NpiProvider.pure.d.ts","sourceRoot":"","sources":["NpiProvider.pure.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;EASxB,CAAC;AAEZ,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"NpiProvider.pure.d.ts","sourceRoot":"","sources":["NpiProvider.pure.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAaxB,CAAC;AAEZ,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/pure/NpiProvider.pure.js b/packages/db/shared/schemas/variants/pure/NpiProvider.pure.js index 8f5adf7a..146c4cdf 100644 --- a/packages/db/shared/schemas/variants/pure/NpiProvider.pure.js +++ b/packages/db/shared/schemas/variants/pure/NpiProvider.pure.js @@ -47,5 +47,6 @@ exports.NpiProviderModelSchema = z.object({ claims: z.array(z.unknown()), payments: z.array(z.unknown()), commissionBatches: z.array(z.unknown()), - appointmentProcedures: z.array(z.unknown()) + appointmentProcedures: z.array(z.unknown()), + appointments: z.array(z.unknown()) }).strict(); diff --git a/packages/db/shared/schemas/variants/pure/NpiProvider.pure.ts b/packages/db/shared/schemas/variants/pure/NpiProvider.pure.ts index ad264c83..055912c0 100644 --- a/packages/db/shared/schemas/variants/pure/NpiProvider.pure.ts +++ b/packages/db/shared/schemas/variants/pure/NpiProvider.pure.ts @@ -11,7 +11,8 @@ export const NpiProviderModelSchema = z.object({ claims: z.array(z.unknown()), payments: z.array(z.unknown()), commissionBatches: z.array(z.unknown()), - appointmentProcedures: z.array(z.unknown()) + appointmentProcedures: z.array(z.unknown()), + appointments: z.array(z.unknown()) }).strict(); export type NpiProviderPureType = z.infer; diff --git a/packages/db/shared/schemas/variants/pure/Patient.pure.d.ts b/packages/db/shared/schemas/variants/pure/Patient.pure.d.ts index 9378620e..d6ff90f2 100644 --- a/packages/db/shared/schemas/variants/pure/Patient.pure.d.ts +++ b/packages/db/shared/schemas/variants/pure/Patient.pure.d.ts @@ -16,9 +16,11 @@ export declare const PatientModelSchema: z.ZodObject<{ policyHolder: z.ZodNullable; allergies: z.ZodNullable; medicalConditions: z.ZodNullable; + preferredLanguage: z.ZodNullable; status: z.ZodEnum<["ACTIVE", "INACTIVE", "UNKNOWN", "PLAN_NOT_ACCEPTED"]>; userId: z.ZodNumber; createdAt: z.ZodDate; + updatedAt: z.ZodDate; user: z.ZodUnknown; appointments: z.ZodArray; procedures: z.ZodArray; @@ -27,62 +29,72 @@ export declare const PatientModelSchema: z.ZodObject<{ payment: z.ZodArray; communications: z.ZodArray; documents: z.ZodArray; + conversation: z.ZodNullable; + cloudFolders: z.ZodArray; }, "strict", z.ZodTypeAny, { status: "ACTIVE" | "INACTIVE" | "UNKNOWN" | "PLAN_NOT_ACCEPTED"; id: number; createdAt: Date; - procedures: unknown[]; userId: number; - claims: unknown[]; email: string | null; phone: string; appointments: unknown[]; + procedures: unknown[]; + claims: unknown[]; payment: unknown[]; + updatedAt: Date; dateOfBirth: Date | null; insuranceProvider: string | null; + city: string | null; + zipCode: string | null; + cloudFolders: unknown[]; + communications: unknown[]; firstName: string; lastName: string; gender: string; address: string | null; - city: string | null; - zipCode: string | null; insuranceId: string | null; groupNumber: string | null; policyHolder: string | null; allergies: string | null; medicalConditions: string | null; + preferredLanguage: string | null; groups: unknown[]; documents: unknown[]; - communications: unknown[]; user?: unknown; + conversation?: unknown; }, { status: "ACTIVE" | "INACTIVE" | "UNKNOWN" | "PLAN_NOT_ACCEPTED"; id: number; createdAt: Date; - procedures: unknown[]; userId: number; - claims: unknown[]; email: string | null; phone: string; appointments: unknown[]; + procedures: unknown[]; + claims: unknown[]; payment: unknown[]; + updatedAt: Date; dateOfBirth: Date | null; insuranceProvider: string | null; + city: string | null; + zipCode: string | null; + cloudFolders: unknown[]; + communications: unknown[]; firstName: string; lastName: string; gender: string; address: string | null; - city: string | null; - zipCode: string | null; insuranceId: string | null; groupNumber: string | null; policyHolder: string | null; allergies: string | null; medicalConditions: string | null; + preferredLanguage: string | null; groups: unknown[]; documents: unknown[]; - communications: unknown[]; user?: unknown; + conversation?: unknown; }>; export type PatientPureType = z.infer; //# sourceMappingURL=Patient.pure.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/pure/Patient.pure.d.ts.map b/packages/db/shared/schemas/variants/pure/Patient.pure.d.ts.map index f5b7858e..4147b538 100644 --- a/packages/db/shared/schemas/variants/pure/Patient.pure.d.ts.map +++ b/packages/db/shared/schemas/variants/pure/Patient.pure.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"Patient.pure.d.ts","sourceRoot":"","sources":["Patient.pure.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAGzB,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4BpB,CAAC;AAEZ,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"Patient.pure.d.ts","sourceRoot":"","sources":["Patient.pure.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAGzB,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgCpB,CAAC;AAEZ,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/pure/Payment.pure.d.ts b/packages/db/shared/schemas/variants/pure/Payment.pure.d.ts index 5c425eef..9d7741d7 100644 --- a/packages/db/shared/schemas/variants/pure/Payment.pure.d.ts +++ b/packages/db/shared/schemas/variants/pure/Payment.pure.d.ts @@ -5,10 +5,14 @@ export declare const PaymentModelSchema: z.ZodObject<{ patientId: z.ZodNumber; userId: z.ZodNumber; updatedById: z.ZodNullable; + npiProviderId: z.ZodNullable; totalBilled: z.ZodNumber; totalPaid: z.ZodNumber; totalAdjusted: z.ZodNumber; totalDue: z.ZodNumber; + mhPaidAmount: z.ZodNullable; + copayment: z.ZodNumber; + adjustment: z.ZodNumber; status: z.ZodEnum<["PENDING", "PARTIALLY_PAID", "PAID", "OVERPAID", "DENIED", "VOID"]>; notes: z.ZodNullable; icn: z.ZodNullable; @@ -17,26 +21,34 @@ export declare const PaymentModelSchema: z.ZodObject<{ claim: z.ZodNullable; patient: z.ZodUnknown; updatedBy: z.ZodNullable; + npiProvider: z.ZodNullable; serviceLineTransactions: z.ZodArray; serviceLines: z.ZodArray; + commissionBatchItems: z.ZodArray; }, "strict", z.ZodTypeAny, { status: "PENDING" | "VOID" | "PARTIALLY_PAID" | "PAID" | "OVERPAID" | "DENIED"; id: number; createdAt: Date; patientId: number; - notes: string | null; + npiProviderId: number | null; userId: number; claimId: number | null; + notes: string | null; + icn: string | null; totalBilled: number; totalPaid: number; totalAdjusted: number; totalDue: number; serviceLineTransactions: unknown[]; - icn: string | null; + updatedById: number | null; + mhPaidAmount: number | null; + copayment: number; + adjustment: number; updatedAt: Date; serviceLines: unknown[]; - updatedById: number | null; + commissionBatchItems: unknown[]; patient?: unknown; + npiProvider?: unknown; claim?: unknown; updatedBy?: unknown; }, { @@ -44,19 +56,25 @@ export declare const PaymentModelSchema: z.ZodObject<{ id: number; createdAt: Date; patientId: number; - notes: string | null; + npiProviderId: number | null; userId: number; claimId: number | null; + notes: string | null; + icn: string | null; totalBilled: number; totalPaid: number; totalAdjusted: number; totalDue: number; serviceLineTransactions: unknown[]; - icn: string | null; + updatedById: number | null; + mhPaidAmount: number | null; + copayment: number; + adjustment: number; updatedAt: Date; serviceLines: unknown[]; - updatedById: number | null; + commissionBatchItems: unknown[]; patient?: unknown; + npiProvider?: unknown; claim?: unknown; updatedBy?: unknown; }>; diff --git a/packages/db/shared/schemas/variants/pure/Payment.pure.d.ts.map b/packages/db/shared/schemas/variants/pure/Payment.pure.d.ts.map index e8e97b6f..b236c4c7 100644 --- a/packages/db/shared/schemas/variants/pure/Payment.pure.d.ts.map +++ b/packages/db/shared/schemas/variants/pure/Payment.pure.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"Payment.pure.d.ts","sourceRoot":"","sources":["Payment.pure.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAGzB,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoBpB,CAAC;AAEZ,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"Payment.pure.d.ts","sourceRoot":"","sources":["Payment.pure.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAGzB,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0BpB,CAAC;AAEZ,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/pure/SeleniumSettings.pure.js b/packages/db/shared/schemas/variants/pure/SeleniumSettings.pure.js new file mode 100644 index 00000000..10fb4d87 --- /dev/null +++ b/packages/db/shared/schemas/variants/pure/SeleniumSettings.pure.js @@ -0,0 +1,44 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsModelSchema = void 0; +const z = __importStar(require("zod")); +// prettier-ignore +exports.SeleniumSettingsModelSchema = z.object({ + id: z.number().int(), + userId: z.number().int(), + paymentGroupId: z.string(), + user: z.unknown() +}).strict(); diff --git a/packages/db/shared/schemas/variants/pure/ServiceLine.pure.d.ts b/packages/db/shared/schemas/variants/pure/ServiceLine.pure.d.ts index d8cf5406..a8008dce 100644 --- a/packages/db/shared/schemas/variants/pure/ServiceLine.pure.d.ts +++ b/packages/db/shared/schemas/variants/pure/ServiceLine.pure.d.ts @@ -9,6 +9,9 @@ export declare const ServiceLineModelSchema: z.ZodObject<{ arch: z.ZodNullable; toothNumber: z.ZodNullable; toothSurface: z.ZodNullable; + icn: z.ZodNullable; + paidCode: z.ZodNullable; + allowedAmount: z.ZodNullable; totalBilled: z.ZodNumber; totalPaid: z.ZodNumber; totalAdjusted: z.ZodNumber; @@ -28,6 +31,9 @@ export declare const ServiceLineModelSchema: z.ZodObject<{ procedureDate: Date; quad: string | null; arch: string | null; + icn: string | null; + paidCode: string | null; + allowedAmount: number | null; totalBilled: number; totalPaid: number; totalAdjusted: number; @@ -46,6 +52,9 @@ export declare const ServiceLineModelSchema: z.ZodObject<{ procedureDate: Date; quad: string | null; arch: string | null; + icn: string | null; + paidCode: string | null; + allowedAmount: number | null; totalBilled: number; totalPaid: number; totalAdjusted: number; diff --git a/packages/db/shared/schemas/variants/pure/ServiceLine.pure.d.ts.map b/packages/db/shared/schemas/variants/pure/ServiceLine.pure.d.ts.map index 2b549687..2a6deed9 100644 --- a/packages/db/shared/schemas/variants/pure/ServiceLine.pure.d.ts.map +++ b/packages/db/shared/schemas/variants/pure/ServiceLine.pure.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ServiceLine.pure.d.ts","sourceRoot":"","sources":["ServiceLine.pure.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAGzB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkBxB,CAAC;AAEZ,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"ServiceLine.pure.d.ts","sourceRoot":"","sources":["ServiceLine.pure.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAGzB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqBxB,CAAC;AAEZ,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/pure/ServiceLineTransaction.pure.d.ts b/packages/db/shared/schemas/variants/pure/ServiceLineTransaction.pure.d.ts index 1745f8dd..ff8585da 100644 --- a/packages/db/shared/schemas/variants/pure/ServiceLineTransaction.pure.d.ts +++ b/packages/db/shared/schemas/variants/pure/ServiceLineTransaction.pure.d.ts @@ -17,28 +17,28 @@ export declare const ServiceLineTransactionModelSchema: z.ZodObject<{ id: number; createdAt: Date; notes: string | null; - paymentId: number; + serviceLineId: number; transactionId: string | null; paidAmount: number; adjustedAmount: number; method: "OTHER" | "EFT" | "CHECK" | "CASH" | "CARD"; receivedDate: Date; payerName: string | null; - serviceLineId: number; + paymentId: number; payment?: unknown; serviceLine?: unknown; }, { id: number; createdAt: Date; notes: string | null; - paymentId: number; + serviceLineId: number; transactionId: string | null; paidAmount: number; adjustedAmount: number; method: "OTHER" | "EFT" | "CHECK" | "CASH" | "CARD"; receivedDate: Date; payerName: string | null; - serviceLineId: number; + paymentId: number; payment?: unknown; serviceLine?: unknown; }>; diff --git a/packages/db/shared/schemas/variants/pure/Staff.pure.d.ts b/packages/db/shared/schemas/variants/pure/Staff.pure.d.ts index a2db2e93..688449cd 100644 --- a/packages/db/shared/schemas/variants/pure/Staff.pure.d.ts +++ b/packages/db/shared/schemas/variants/pure/Staff.pure.d.ts @@ -14,23 +14,23 @@ export declare const StaffModelSchema: z.ZodObject<{ id: number; createdAt: Date; userId: number; - claims: unknown[]; name: string; email: string | null; role: string; phone: string | null; appointments: unknown[]; + claims: unknown[]; user?: unknown; }, { id: number; createdAt: Date; userId: number; - claims: unknown[]; name: string; email: string | null; role: string; phone: string | null; appointments: unknown[]; + claims: unknown[]; user?: unknown; }>; export type StaffPureType = z.infer; diff --git a/packages/db/shared/schemas/variants/pure/User.pure.d.ts b/packages/db/shared/schemas/variants/pure/User.pure.d.ts index f2a6fe45..0dcc119d 100644 --- a/packages/db/shared/schemas/variants/pure/User.pure.d.ts +++ b/packages/db/shared/schemas/variants/pure/User.pure.d.ts @@ -4,13 +4,19 @@ export declare const UserModelSchema: z.ZodObject<{ username: z.ZodString; password: z.ZodString; autoBackupEnabled: z.ZodBoolean; + autoBackupHour: z.ZodNumber; usbBackupEnabled: z.ZodBoolean; + usbBackupHour: z.ZodNumber; + autoMhCheckEnabled: z.ZodBoolean; + autoMhCheckDayOfWeek: z.ZodNumber; + autoMhCheckHour: z.ZodNumber; patients: z.ZodArray; appointments: z.ZodArray; staff: z.ZodArray; npiProviders: z.ZodArray; claims: z.ZodArray; insuranceCredentials: z.ZodArray; + shoppingVendors: z.ZodArray; updatedPayments: z.ZodArray; backups: z.ZodArray; backupDestinations: z.ZodArray; @@ -18,44 +24,83 @@ export declare const UserModelSchema: z.ZodObject<{ cloudFolders: z.ZodArray; cloudFiles: z.ZodArray; communications: z.ZodArray; + twilioSettings: z.ZodNullable; + aiSettings: z.ZodNullable; + officeHours: z.ZodNullable; + officeContact: z.ZodNullable; + procedureTimeslot: z.ZodNullable; + insuranceContacts: z.ZodArray; + patientConversations: z.ZodArray; + labRxTemplates: z.ZodArray; + seleniumSettings: z.ZodNullable; }, "strict", z.ZodTypeAny, { id: number; - staff: unknown[]; - claims: unknown[]; - appointments: unknown[]; username: string; password: string; - communications: unknown[]; + appointments: unknown[]; + staff: unknown[]; + claims: unknown[]; autoBackupEnabled: boolean; + autoBackupHour: number; usbBackupEnabled: boolean; + usbBackupHour: number; + autoMhCheckEnabled: boolean; + autoMhCheckDayOfWeek: number; + autoMhCheckHour: number; patients: unknown[]; npiProviders: unknown[]; insuranceCredentials: unknown[]; + shoppingVendors: unknown[]; updatedPayments: unknown[]; backups: unknown[]; backupDestinations: unknown[]; notifications: unknown[]; cloudFolders: unknown[]; cloudFiles: unknown[]; + communications: unknown[]; + insuranceContacts: unknown[]; + labRxTemplates: unknown[]; + patientConversations: unknown[]; + twilioSettings?: unknown; + aiSettings?: unknown; + officeHours?: unknown; + officeContact?: unknown; + procedureTimeslot?: unknown; + seleniumSettings?: unknown; }, { id: number; - staff: unknown[]; - claims: unknown[]; - appointments: unknown[]; username: string; password: string; - communications: unknown[]; + appointments: unknown[]; + staff: unknown[]; + claims: unknown[]; autoBackupEnabled: boolean; + autoBackupHour: number; usbBackupEnabled: boolean; + usbBackupHour: number; + autoMhCheckEnabled: boolean; + autoMhCheckDayOfWeek: number; + autoMhCheckHour: number; patients: unknown[]; npiProviders: unknown[]; insuranceCredentials: unknown[]; + shoppingVendors: unknown[]; updatedPayments: unknown[]; backups: unknown[]; backupDestinations: unknown[]; notifications: unknown[]; cloudFolders: unknown[]; cloudFiles: unknown[]; + communications: unknown[]; + insuranceContacts: unknown[]; + labRxTemplates: unknown[]; + patientConversations: unknown[]; + twilioSettings?: unknown; + aiSettings?: unknown; + officeHours?: unknown; + officeContact?: unknown; + procedureTimeslot?: unknown; + seleniumSettings?: unknown; }>; export type UserPureType = z.infer; //# sourceMappingURL=User.pure.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/pure/User.pure.d.ts.map b/packages/db/shared/schemas/variants/pure/User.pure.d.ts.map index 4e5c33e2..2c1ade08 100644 --- a/packages/db/shared/schemas/variants/pure/User.pure.d.ts.map +++ b/packages/db/shared/schemas/variants/pure/User.pure.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"User.pure.d.ts","sourceRoot":"","sources":["User.pure.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmBjB,CAAC;AAEZ,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"User.pure.d.ts","sourceRoot":"","sources":["User.pure.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkCjB,CAAC;AAEZ,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/pure/User.pure.js b/packages/db/shared/schemas/variants/pure/User.pure.js index 9016197a..c8dc0cb7 100644 --- a/packages/db/shared/schemas/variants/pure/User.pure.js +++ b/packages/db/shared/schemas/variants/pure/User.pure.js @@ -67,5 +67,7 @@ exports.UserModelSchema = z.object({ officeContact: z.unknown().nullable(), procedureTimeslot: z.unknown().nullable(), insuranceContacts: z.array(z.unknown()), - patientConversations: z.array(z.unknown()) + patientConversations: z.array(z.unknown()), + labRxTemplates: z.array(z.unknown()), + seleniumSettings: z.unknown().nullable() }).strict(); diff --git a/packages/db/shared/schemas/variants/pure/index.d.ts b/packages/db/shared/schemas/variants/pure/index.d.ts index 4d79f87b..499a34f5 100644 --- a/packages/db/shared/schemas/variants/pure/index.d.ts +++ b/packages/db/shared/schemas/variants/pure/index.d.ts @@ -5,6 +5,7 @@ export { UserModelSchema } from './User.pure'; export { PatientModelSchema } from './Patient.pure'; export { AppointmentModelSchema } from './Appointment.pure'; +export { AppointmentFileModelSchema } from './AppointmentFile.pure'; export { StaffModelSchema } from './Staff.pure'; export { NpiProviderModelSchema } from './NpiProvider.pure'; export { AppointmentProcedureModelSchema } from './AppointmentProcedure.pure'; @@ -12,6 +13,7 @@ export { ClaimModelSchema } from './Claim.pure'; export { ServiceLineModelSchema } from './ServiceLine.pure'; export { ClaimFileModelSchema } from './ClaimFile.pure'; export { InsuranceCredentialModelSchema } from './InsuranceCredential.pure'; +export { ShoppingVendorModelSchema } from './ShoppingVendor.pure'; export { PdfGroupModelSchema } from './PdfGroup.pure'; export { PdfFileModelSchema } from './PdfFile.pure'; export { PaymentModelSchema } from './Payment.pure'; @@ -25,4 +27,15 @@ export { CloudFileModelSchema } from './CloudFile.pure'; export { CloudFileChunkModelSchema } from './CloudFileChunk.pure'; export { CommunicationModelSchema } from './Communication.pure'; export { PatientDocumentModelSchema } from './PatientDocument.pure'; +export { TwilioSettingsModelSchema } from './TwilioSettings.pure'; +export { AiSettingsModelSchema } from './AiSettings.pure'; +export { OfficeHoursModelSchema } from './OfficeHours.pure'; +export { OfficeContactModelSchema } from './OfficeContact.pure'; +export { InsuranceContactModelSchema } from './InsuranceContact.pure'; +export { ProcedureTimeslotModelSchema } from './ProcedureTimeslot.pure'; +export { PatientConversationModelSchema } from './PatientConversation.pure'; +export { LabRxTemplateModelSchema } from './LabRxTemplate.pure'; +export { CommissionBatchModelSchema } from './CommissionBatch.pure'; +export { CommissionBatchItemModelSchema } from './CommissionBatchItem.pure'; +export { SeleniumSettingsModelSchema } from './SeleniumSettings.pure'; //# sourceMappingURL=index.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/pure/index.d.ts.map b/packages/db/shared/schemas/variants/pure/index.d.ts.map index 07c8c676..211e6615 100644 --- a/packages/db/shared/schemas/variants/pure/index.d.ts.map +++ b/packages/db/shared/schemas/variants/pure/index.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,eAAe,EAAE,MAAM,aAAa,CAAC;AAC9C,OAAO,EAAE,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AACpD,OAAO,EAAE,sBAAsB,EAAE,MAAM,oBAAoB,CAAC;AAC5D,OAAO,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAChD,OAAO,EAAE,sBAAsB,EAAE,MAAM,oBAAoB,CAAC;AAC5D,OAAO,EAAE,+BAA+B,EAAE,MAAM,6BAA6B,CAAC;AAC9E,OAAO,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAChD,OAAO,EAAE,sBAAsB,EAAE,MAAM,oBAAoB,CAAC;AAC5D,OAAO,EAAE,oBAAoB,EAAE,MAAM,kBAAkB,CAAC;AACxD,OAAO,EAAE,8BAA8B,EAAE,MAAM,4BAA4B,CAAC;AAC5E,OAAO,EAAE,mBAAmB,EAAE,MAAM,iBAAiB,CAAC;AACtD,OAAO,EAAE,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AACpD,OAAO,EAAE,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AACpD,OAAO,EAAE,iCAAiC,EAAE,MAAM,+BAA+B,CAAC;AAClF,OAAO,EAAE,yBAAyB,EAAE,MAAM,uBAAuB,CAAC;AAClE,OAAO,EAAE,4BAA4B,EAAE,MAAM,0BAA0B,CAAC;AACxE,OAAO,EAAE,uBAAuB,EAAE,MAAM,qBAAqB,CAAC;AAC9D,OAAO,EAAE,qBAAqB,EAAE,MAAM,mBAAmB,CAAC;AAC1D,OAAO,EAAE,sBAAsB,EAAE,MAAM,oBAAoB,CAAC;AAC5D,OAAO,EAAE,oBAAoB,EAAE,MAAM,kBAAkB,CAAC;AACxD,OAAO,EAAE,yBAAyB,EAAE,MAAM,uBAAuB,CAAC;AAClE,OAAO,EAAE,wBAAwB,EAAE,MAAM,sBAAsB,CAAC;AAChE,OAAO,EAAE,0BAA0B,EAAE,MAAM,wBAAwB,CAAC"} \ No newline at end of file +{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,eAAe,EAAE,MAAM,aAAa,CAAC;AAC9C,OAAO,EAAE,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AACpD,OAAO,EAAE,sBAAsB,EAAE,MAAM,oBAAoB,CAAC;AAC5D,OAAO,EAAE,0BAA0B,EAAE,MAAM,wBAAwB,CAAC;AACpE,OAAO,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAChD,OAAO,EAAE,sBAAsB,EAAE,MAAM,oBAAoB,CAAC;AAC5D,OAAO,EAAE,+BAA+B,EAAE,MAAM,6BAA6B,CAAC;AAC9E,OAAO,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAChD,OAAO,EAAE,sBAAsB,EAAE,MAAM,oBAAoB,CAAC;AAC5D,OAAO,EAAE,oBAAoB,EAAE,MAAM,kBAAkB,CAAC;AACxD,OAAO,EAAE,8BAA8B,EAAE,MAAM,4BAA4B,CAAC;AAC5E,OAAO,EAAE,yBAAyB,EAAE,MAAM,uBAAuB,CAAC;AAClE,OAAO,EAAE,mBAAmB,EAAE,MAAM,iBAAiB,CAAC;AACtD,OAAO,EAAE,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AACpD,OAAO,EAAE,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AACpD,OAAO,EAAE,iCAAiC,EAAE,MAAM,+BAA+B,CAAC;AAClF,OAAO,EAAE,yBAAyB,EAAE,MAAM,uBAAuB,CAAC;AAClE,OAAO,EAAE,4BAA4B,EAAE,MAAM,0BAA0B,CAAC;AACxE,OAAO,EAAE,uBAAuB,EAAE,MAAM,qBAAqB,CAAC;AAC9D,OAAO,EAAE,qBAAqB,EAAE,MAAM,mBAAmB,CAAC;AAC1D,OAAO,EAAE,sBAAsB,EAAE,MAAM,oBAAoB,CAAC;AAC5D,OAAO,EAAE,oBAAoB,EAAE,MAAM,kBAAkB,CAAC;AACxD,OAAO,EAAE,yBAAyB,EAAE,MAAM,uBAAuB,CAAC;AAClE,OAAO,EAAE,wBAAwB,EAAE,MAAM,sBAAsB,CAAC;AAChE,OAAO,EAAE,0BAA0B,EAAE,MAAM,wBAAwB,CAAC;AACpE,OAAO,EAAE,yBAAyB,EAAE,MAAM,uBAAuB,CAAC;AAClE,OAAO,EAAE,qBAAqB,EAAE,MAAM,mBAAmB,CAAC;AAC1D,OAAO,EAAE,sBAAsB,EAAE,MAAM,oBAAoB,CAAC;AAC5D,OAAO,EAAE,wBAAwB,EAAE,MAAM,sBAAsB,CAAC;AAChE,OAAO,EAAE,2BAA2B,EAAE,MAAM,yBAAyB,CAAC;AACtE,OAAO,EAAE,4BAA4B,EAAE,MAAM,0BAA0B,CAAC;AACxE,OAAO,EAAE,8BAA8B,EAAE,MAAM,4BAA4B,CAAC;AAC5E,OAAO,EAAE,wBAAwB,EAAE,MAAM,sBAAsB,CAAC;AAChE,OAAO,EAAE,0BAA0B,EAAE,MAAM,wBAAwB,CAAC;AACpE,OAAO,EAAE,8BAA8B,EAAE,MAAM,4BAA4B,CAAC;AAC5E,OAAO,EAAE,2BAA2B,EAAE,MAAM,yBAAyB,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/pure/index.js b/packages/db/shared/schemas/variants/pure/index.js index 63b5dc86..594570af 100644 --- a/packages/db/shared/schemas/variants/pure/index.js +++ b/packages/db/shared/schemas/variants/pure/index.js @@ -4,7 +4,7 @@ * Auto-generated - do not edit manually */ Object.defineProperty(exports, "__esModule", { value: true }); -exports.CommissionBatchItemModelSchema = exports.CommissionBatchModelSchema = exports.PatientConversationModelSchema = exports.ProcedureTimeslotModelSchema = exports.InsuranceContactModelSchema = exports.OfficeContactModelSchema = exports.OfficeHoursModelSchema = exports.AiSettingsModelSchema = exports.TwilioSettingsModelSchema = exports.PatientDocumentModelSchema = exports.CommunicationModelSchema = exports.CloudFileChunkModelSchema = exports.CloudFileModelSchema = exports.CloudFolderModelSchema = exports.CronJobLogModelSchema = exports.NotificationModelSchema = exports.BackupDestinationModelSchema = exports.DatabaseBackupModelSchema = exports.ServiceLineTransactionModelSchema = exports.PaymentModelSchema = exports.PdfFileModelSchema = exports.PdfGroupModelSchema = exports.ShoppingVendorModelSchema = exports.InsuranceCredentialModelSchema = exports.ClaimFileModelSchema = exports.ServiceLineModelSchema = exports.ClaimModelSchema = exports.AppointmentProcedureModelSchema = exports.NpiProviderModelSchema = exports.StaffModelSchema = exports.AppointmentFileModelSchema = exports.AppointmentModelSchema = exports.PatientModelSchema = exports.UserModelSchema = void 0; +exports.SeleniumSettingsModelSchema = exports.CommissionBatchItemModelSchema = exports.CommissionBatchModelSchema = exports.LabRxTemplateModelSchema = exports.PatientConversationModelSchema = exports.ProcedureTimeslotModelSchema = exports.InsuranceContactModelSchema = exports.OfficeContactModelSchema = exports.OfficeHoursModelSchema = exports.AiSettingsModelSchema = exports.TwilioSettingsModelSchema = exports.PatientDocumentModelSchema = exports.CommunicationModelSchema = exports.CloudFileChunkModelSchema = exports.CloudFileModelSchema = exports.CloudFolderModelSchema = exports.CronJobLogModelSchema = exports.NotificationModelSchema = exports.BackupDestinationModelSchema = exports.DatabaseBackupModelSchema = exports.ServiceLineTransactionModelSchema = exports.PaymentModelSchema = exports.PdfFileModelSchema = exports.PdfGroupModelSchema = exports.ShoppingVendorModelSchema = exports.InsuranceCredentialModelSchema = exports.ClaimFileModelSchema = exports.ServiceLineModelSchema = exports.ClaimModelSchema = exports.AppointmentProcedureModelSchema = exports.NpiProviderModelSchema = exports.StaffModelSchema = exports.AppointmentFileModelSchema = exports.AppointmentModelSchema = exports.PatientModelSchema = exports.UserModelSchema = void 0; var User_pure_1 = require("./User.pure"); Object.defineProperty(exports, "UserModelSchema", { enumerable: true, get: function () { return User_pure_1.UserModelSchema; } }); var Patient_pure_1 = require("./Patient.pure"); @@ -69,7 +69,11 @@ var ProcedureTimeslot_pure_1 = require("./ProcedureTimeslot.pure"); Object.defineProperty(exports, "ProcedureTimeslotModelSchema", { enumerable: true, get: function () { return ProcedureTimeslot_pure_1.ProcedureTimeslotModelSchema; } }); var PatientConversation_pure_1 = require("./PatientConversation.pure"); Object.defineProperty(exports, "PatientConversationModelSchema", { enumerable: true, get: function () { return PatientConversation_pure_1.PatientConversationModelSchema; } }); +var LabRxTemplate_pure_1 = require("./LabRxTemplate.pure"); +Object.defineProperty(exports, "LabRxTemplateModelSchema", { enumerable: true, get: function () { return LabRxTemplate_pure_1.LabRxTemplateModelSchema; } }); var CommissionBatch_pure_1 = require("./CommissionBatch.pure"); Object.defineProperty(exports, "CommissionBatchModelSchema", { enumerable: true, get: function () { return CommissionBatch_pure_1.CommissionBatchModelSchema; } }); var CommissionBatchItem_pure_1 = require("./CommissionBatchItem.pure"); Object.defineProperty(exports, "CommissionBatchItemModelSchema", { enumerable: true, get: function () { return CommissionBatchItem_pure_1.CommissionBatchItemModelSchema; } }); +var SeleniumSettings_pure_1 = require("./SeleniumSettings.pure"); +Object.defineProperty(exports, "SeleniumSettingsModelSchema", { enumerable: true, get: function () { return SeleniumSettings_pure_1.SeleniumSettingsModelSchema; } }); diff --git a/packages/db/shared/schemas/variants/result/Appointment.result.d.ts b/packages/db/shared/schemas/variants/result/Appointment.result.d.ts index 1f7f6c0b..f0dbcc09 100644 --- a/packages/db/shared/schemas/variants/result/Appointment.result.d.ts +++ b/packages/db/shared/schemas/variants/result/Appointment.result.d.ts @@ -4,21 +4,26 @@ export declare const AppointmentResultSchema: z.ZodObject<{ patientId: z.ZodNumber; userId: z.ZodNumber; staffId: z.ZodNumber; + npiProviderId: z.ZodNullable; title: z.ZodString; date: z.ZodDate; startTime: z.ZodString; endTime: z.ZodString; type: z.ZodString; + typeLocked: z.ZodBoolean; notes: z.ZodNullable; procedureCodeNotes: z.ZodNullable; status: z.ZodString; + movedByAi: z.ZodBoolean; createdAt: z.ZodDate; eligibilityStatus: z.ZodEnum<["ACTIVE", "INACTIVE", "UNKNOWN", "PLAN_NOT_ACCEPTED"]>; patient: z.ZodUnknown; user: z.ZodUnknown; staff: z.ZodNullable; + npiProvider: z.ZodNullable; procedures: z.ZodArray; claims: z.ZodArray; + files: z.ZodArray; }, "strict", z.ZodTypeAny, { type: string; status: string; @@ -27,16 +32,21 @@ export declare const AppointmentResultSchema: z.ZodObject<{ title: string; createdAt: Date; patientId: number; + npiProviderId: number | null; + userId: number; startTime: string; endTime: string; + typeLocked: boolean; notes: string | null; procedureCodeNotes: string | null; + movedByAi: boolean; eligibilityStatus: "ACTIVE" | "INACTIVE" | "UNKNOWN" | "PLAN_NOT_ACCEPTED"; procedures: unknown[]; - userId: number; - staffId: number; claims: unknown[]; + files: unknown[]; + staffId: number; patient?: unknown; + npiProvider?: unknown; user?: unknown; staff?: unknown; }, { @@ -47,16 +57,21 @@ export declare const AppointmentResultSchema: z.ZodObject<{ title: string; createdAt: Date; patientId: number; + npiProviderId: number | null; + userId: number; startTime: string; endTime: string; + typeLocked: boolean; notes: string | null; procedureCodeNotes: string | null; + movedByAi: boolean; eligibilityStatus: "ACTIVE" | "INACTIVE" | "UNKNOWN" | "PLAN_NOT_ACCEPTED"; procedures: unknown[]; - userId: number; - staffId: number; claims: unknown[]; + files: unknown[]; + staffId: number; patient?: unknown; + npiProvider?: unknown; user?: unknown; staff?: unknown; }>; diff --git a/packages/db/shared/schemas/variants/result/Appointment.result.d.ts.map b/packages/db/shared/schemas/variants/result/Appointment.result.d.ts.map index 607ad6d6..ac903064 100644 --- a/packages/db/shared/schemas/variants/result/Appointment.result.d.ts.map +++ b/packages/db/shared/schemas/variants/result/Appointment.result.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"Appointment.result.d.ts","sourceRoot":"","sources":["Appointment.result.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAGzB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoBzB,CAAC;AAEZ,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"Appointment.result.d.ts","sourceRoot":"","sources":["Appointment.result.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAGzB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAyBzB,CAAC;AAEZ,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/result/Appointment.result.js b/packages/db/shared/schemas/variants/result/Appointment.result.js index cf3ef2fc..2ca472d9 100644 --- a/packages/db/shared/schemas/variants/result/Appointment.result.js +++ b/packages/db/shared/schemas/variants/result/Appointment.result.js @@ -42,6 +42,7 @@ exports.AppointmentResultSchema = z.object({ patientId: z.number().int(), userId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().nullable(), title: z.string(), date: z.date(), startTime: z.string(), @@ -57,6 +58,7 @@ exports.AppointmentResultSchema = z.object({ patient: z.unknown(), user: z.unknown(), staff: z.unknown().nullable(), + npiProvider: z.unknown().nullable(), procedures: z.array(z.unknown()), claims: z.array(z.unknown()), files: z.array(z.unknown()) diff --git a/packages/db/shared/schemas/variants/result/Appointment.result.ts b/packages/db/shared/schemas/variants/result/Appointment.result.ts index c6406908..518191bd 100644 --- a/packages/db/shared/schemas/variants/result/Appointment.result.ts +++ b/packages/db/shared/schemas/variants/result/Appointment.result.ts @@ -6,6 +6,7 @@ export const AppointmentResultSchema = z.object({ patientId: z.number().int(), userId: z.number().int(), staffId: z.number().int(), + npiProviderId: z.number().int().nullable(), title: z.string(), date: z.date(), startTime: z.string(), @@ -21,6 +22,7 @@ export const AppointmentResultSchema = z.object({ patient: z.unknown(), user: z.unknown(), staff: z.unknown().nullable(), + npiProvider: z.unknown().nullable(), procedures: z.array(z.unknown()), claims: z.array(z.unknown()), files: z.array(z.unknown()) diff --git a/packages/db/shared/schemas/variants/result/Claim.result.d.ts b/packages/db/shared/schemas/variants/result/Claim.result.d.ts index efa8a2c4..239dd4bb 100644 --- a/packages/db/shared/schemas/variants/result/Claim.result.d.ts +++ b/packages/db/shared/schemas/variants/result/Claim.result.d.ts @@ -2,7 +2,7 @@ import * as z from 'zod'; export declare const ClaimResultSchema: z.ZodObject<{ id: z.ZodNumber; patientId: z.ZodNumber; - appointmentId: z.ZodNumber; + appointmentId: z.ZodNullable; userId: z.ZodNumber; staffId: z.ZodNumber; patientName: z.ZodString; @@ -15,11 +15,12 @@ export declare const ClaimResultSchema: z.ZodObject<{ insuranceProvider: z.ZodString; createdAt: z.ZodDate; updatedAt: z.ZodDate; - status: z.ZodEnum<["PENDING", "APPROVED", "CANCELLED", "REVIEW", "VOID"]>; + status: z.ZodEnum<["PENDING", "APPROVED", "CANCELLED", "REVIEW", "VOID", "PREAUTH"]>; claimNumber: z.ZodNullable; + preAuthNumber: z.ZodNullable; npiProviderId: z.ZodNullable; patient: z.ZodUnknown; - appointment: z.ZodUnknown; + appointment: z.ZodNullable; user: z.ZodNullable; staff: z.ZodNullable; npiProvider: z.ZodNullable; @@ -27,12 +28,12 @@ export declare const ClaimResultSchema: z.ZodObject<{ claimFiles: z.ZodArray; payment: z.ZodNullable; }, "strict", z.ZodTypeAny, { - status: "PENDING" | "APPROVED" | "CANCELLED" | "REVIEW" | "VOID"; + status: "PENDING" | "APPROVED" | "CANCELLED" | "REVIEW" | "VOID" | "PREAUTH"; id: number; createdAt: Date; patientId: number; npiProviderId: number | null; - appointmentId: number; + appointmentId: number | null; userId: number; staffId: number; updatedAt: Date; @@ -45,6 +46,7 @@ export declare const ClaimResultSchema: z.ZodObject<{ serviceDate: Date; insuranceProvider: string; claimNumber: string | null; + preAuthNumber: string | null; claimFiles: unknown[]; patient?: unknown; appointment?: unknown; @@ -54,12 +56,12 @@ export declare const ClaimResultSchema: z.ZodObject<{ payment?: unknown; missingTeeth?: unknown; }, { - status: "PENDING" | "APPROVED" | "CANCELLED" | "REVIEW" | "VOID"; + status: "PENDING" | "APPROVED" | "CANCELLED" | "REVIEW" | "VOID" | "PREAUTH"; id: number; createdAt: Date; patientId: number; npiProviderId: number | null; - appointmentId: number; + appointmentId: number | null; userId: number; staffId: number; updatedAt: Date; @@ -72,6 +74,7 @@ export declare const ClaimResultSchema: z.ZodObject<{ serviceDate: Date; insuranceProvider: string; claimNumber: string | null; + preAuthNumber: string | null; claimFiles: unknown[]; patient?: unknown; appointment?: unknown; diff --git a/packages/db/shared/schemas/variants/result/Claim.result.d.ts.map b/packages/db/shared/schemas/variants/result/Claim.result.d.ts.map index 23227388..991e89a9 100644 --- a/packages/db/shared/schemas/variants/result/Claim.result.d.ts.map +++ b/packages/db/shared/schemas/variants/result/Claim.result.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"Claim.result.d.ts","sourceRoot":"","sources":["Claim.result.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAIzB,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA2BnB,CAAC;AAEZ,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"Claim.result.d.ts","sourceRoot":"","sources":["Claim.result.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAIzB,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4BnB,CAAC;AAEZ,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/result/CloudFolder.result.d.ts b/packages/db/shared/schemas/variants/result/CloudFolder.result.d.ts index d810f81c..f16b0af3 100644 --- a/packages/db/shared/schemas/variants/result/CloudFolder.result.d.ts +++ b/packages/db/shared/schemas/variants/result/CloudFolder.result.d.ts @@ -4,32 +4,38 @@ export declare const CloudFolderResultSchema: z.ZodObject<{ userId: z.ZodNumber; name: z.ZodString; parentId: z.ZodNullable; + patientId: z.ZodNullable; parent: z.ZodNullable; children: z.ZodArray; user: z.ZodUnknown; + patient: z.ZodNullable; files: z.ZodArray; createdAt: z.ZodDate; updatedAt: z.ZodDate; }, "strict", z.ZodTypeAny, { id: number; createdAt: Date; + patientId: number | null; userId: number; name: string; + files: unknown[]; updatedAt: Date; children: unknown[]; - files: unknown[]; parentId: number | null; + patient?: unknown; user?: unknown; parent?: unknown; }, { id: number; createdAt: Date; + patientId: number | null; userId: number; name: string; + files: unknown[]; updatedAt: Date; children: unknown[]; - files: unknown[]; parentId: number | null; + patient?: unknown; user?: unknown; parent?: unknown; }>; diff --git a/packages/db/shared/schemas/variants/result/CloudFolder.result.d.ts.map b/packages/db/shared/schemas/variants/result/CloudFolder.result.d.ts.map index 0f40556b..e4b88f92 100644 --- a/packages/db/shared/schemas/variants/result/CloudFolder.result.d.ts.map +++ b/packages/db/shared/schemas/variants/result/CloudFolder.result.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"CloudFolder.result.d.ts","sourceRoot":"","sources":["CloudFolder.result.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAWzB,CAAC;AAEZ,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"CloudFolder.result.d.ts","sourceRoot":"","sources":["CloudFolder.result.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAazB,CAAC;AAEZ,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/result/InsuranceCredential.result.d.ts b/packages/db/shared/schemas/variants/result/InsuranceCredential.result.d.ts index a7e051b1..a94a6dfe 100644 --- a/packages/db/shared/schemas/variants/result/InsuranceCredential.result.d.ts +++ b/packages/db/shared/schemas/variants/result/InsuranceCredential.result.d.ts @@ -8,17 +8,17 @@ export declare const InsuranceCredentialResultSchema: z.ZodObject<{ user: z.ZodUnknown; }, "strict", z.ZodTypeAny, { id: number; - userId: number; siteKey: string; username: string; password: string; + userId: number; user?: unknown; }, { id: number; - userId: number; siteKey: string; username: string; password: string; + userId: number; user?: unknown; }>; export type InsuranceCredentialResultType = z.infer; diff --git a/packages/db/shared/schemas/variants/result/LabRxTemplate.result.js b/packages/db/shared/schemas/variants/result/LabRxTemplate.result.js new file mode 100644 index 00000000..d4c47f30 --- /dev/null +++ b/packages/db/shared/schemas/variants/result/LabRxTemplate.result.js @@ -0,0 +1,55 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.LabRxTemplateResultSchema = void 0; +const z = __importStar(require("zod")); +// prettier-ignore +exports.LabRxTemplateResultSchema = z.object({ + id: z.number().int(), + userId: z.number().int(), + name: z.string(), + labName: z.string().nullable(), + labPhone: z.string().nullable(), + labFax: z.string().nullable(), + labAddress: z.string().nullable(), + labAccount: z.string().nullable(), + caseType: z.string().nullable(), + material: z.string().nullable(), + instructions: z.string().nullable(), + sortOrder: z.number().int(), + createdAt: z.date(), + updatedAt: z.date(), + user: z.unknown() +}).strict(); diff --git a/packages/db/shared/schemas/variants/result/NpiProvider.result.d.ts b/packages/db/shared/schemas/variants/result/NpiProvider.result.d.ts index 1c5235dd..cb1661e1 100644 --- a/packages/db/shared/schemas/variants/result/NpiProvider.result.d.ts +++ b/packages/db/shared/schemas/variants/result/NpiProvider.result.d.ts @@ -4,27 +4,39 @@ export declare const NpiProviderResultSchema: z.ZodObject<{ userId: z.ZodNumber; npiNumber: z.ZodString; providerName: z.ZodString; + sortOrder: z.ZodNumber; createdAt: z.ZodDate; user: z.ZodUnknown; claims: z.ZodArray; + payments: z.ZodArray; + commissionBatches: z.ZodArray; appointmentProcedures: z.ZodArray; + appointments: z.ZodArray; }, "strict", z.ZodTypeAny, { id: number; createdAt: Date; userId: number; + appointments: unknown[]; claims: unknown[]; npiNumber: string; providerName: string; + sortOrder: number; + payments: unknown[]; appointmentProcedures: unknown[]; + commissionBatches: unknown[]; user?: unknown; }, { id: number; createdAt: Date; userId: number; + appointments: unknown[]; claims: unknown[]; npiNumber: string; providerName: string; + sortOrder: number; + payments: unknown[]; appointmentProcedures: unknown[]; + commissionBatches: unknown[]; user?: unknown; }>; export type NpiProviderResultType = z.infer; diff --git a/packages/db/shared/schemas/variants/result/NpiProvider.result.d.ts.map b/packages/db/shared/schemas/variants/result/NpiProvider.result.d.ts.map index 49776cd3..0054f2d4 100644 --- a/packages/db/shared/schemas/variants/result/NpiProvider.result.d.ts.map +++ b/packages/db/shared/schemas/variants/result/NpiProvider.result.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"NpiProvider.result.d.ts","sourceRoot":"","sources":["NpiProvider.result.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;EASzB,CAAC;AAEZ,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"NpiProvider.result.d.ts","sourceRoot":"","sources":["NpiProvider.result.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAazB,CAAC;AAEZ,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/result/NpiProvider.result.js b/packages/db/shared/schemas/variants/result/NpiProvider.result.js index c6f6a911..ac4fa5c5 100644 --- a/packages/db/shared/schemas/variants/result/NpiProvider.result.js +++ b/packages/db/shared/schemas/variants/result/NpiProvider.result.js @@ -47,5 +47,6 @@ exports.NpiProviderResultSchema = z.object({ claims: z.array(z.unknown()), payments: z.array(z.unknown()), commissionBatches: z.array(z.unknown()), - appointmentProcedures: z.array(z.unknown()) + appointmentProcedures: z.array(z.unknown()), + appointments: z.array(z.unknown()) }).strict(); diff --git a/packages/db/shared/schemas/variants/result/NpiProvider.result.ts b/packages/db/shared/schemas/variants/result/NpiProvider.result.ts index 3344a99a..adb75b65 100644 --- a/packages/db/shared/schemas/variants/result/NpiProvider.result.ts +++ b/packages/db/shared/schemas/variants/result/NpiProvider.result.ts @@ -11,7 +11,8 @@ export const NpiProviderResultSchema = z.object({ claims: z.array(z.unknown()), payments: z.array(z.unknown()), commissionBatches: z.array(z.unknown()), - appointmentProcedures: z.array(z.unknown()) + appointmentProcedures: z.array(z.unknown()), + appointments: z.array(z.unknown()) }).strict(); export type NpiProviderResultType = z.infer; diff --git a/packages/db/shared/schemas/variants/result/Patient.result.d.ts b/packages/db/shared/schemas/variants/result/Patient.result.d.ts index 75799dcc..324317cb 100644 --- a/packages/db/shared/schemas/variants/result/Patient.result.d.ts +++ b/packages/db/shared/schemas/variants/result/Patient.result.d.ts @@ -16,9 +16,11 @@ export declare const PatientResultSchema: z.ZodObject<{ policyHolder: z.ZodNullable; allergies: z.ZodNullable; medicalConditions: z.ZodNullable; + preferredLanguage: z.ZodNullable; status: z.ZodEnum<["ACTIVE", "INACTIVE", "UNKNOWN", "PLAN_NOT_ACCEPTED"]>; userId: z.ZodNumber; createdAt: z.ZodDate; + updatedAt: z.ZodDate; user: z.ZodUnknown; appointments: z.ZodArray; procedures: z.ZodArray; @@ -27,62 +29,72 @@ export declare const PatientResultSchema: z.ZodObject<{ payment: z.ZodArray; communications: z.ZodArray; documents: z.ZodArray; + conversation: z.ZodNullable; + cloudFolders: z.ZodArray; }, "strict", z.ZodTypeAny, { status: "ACTIVE" | "INACTIVE" | "UNKNOWN" | "PLAN_NOT_ACCEPTED"; id: number; createdAt: Date; - procedures: unknown[]; userId: number; - claims: unknown[]; email: string | null; phone: string; appointments: unknown[]; + procedures: unknown[]; + claims: unknown[]; payment: unknown[]; + updatedAt: Date; dateOfBirth: Date | null; insuranceProvider: string | null; + city: string | null; + zipCode: string | null; + cloudFolders: unknown[]; + communications: unknown[]; firstName: string; lastName: string; gender: string; address: string | null; - city: string | null; - zipCode: string | null; insuranceId: string | null; groupNumber: string | null; policyHolder: string | null; allergies: string | null; medicalConditions: string | null; + preferredLanguage: string | null; groups: unknown[]; documents: unknown[]; - communications: unknown[]; user?: unknown; + conversation?: unknown; }, { status: "ACTIVE" | "INACTIVE" | "UNKNOWN" | "PLAN_NOT_ACCEPTED"; id: number; createdAt: Date; - procedures: unknown[]; userId: number; - claims: unknown[]; email: string | null; phone: string; appointments: unknown[]; + procedures: unknown[]; + claims: unknown[]; payment: unknown[]; + updatedAt: Date; dateOfBirth: Date | null; insuranceProvider: string | null; + city: string | null; + zipCode: string | null; + cloudFolders: unknown[]; + communications: unknown[]; firstName: string; lastName: string; gender: string; address: string | null; - city: string | null; - zipCode: string | null; insuranceId: string | null; groupNumber: string | null; policyHolder: string | null; allergies: string | null; medicalConditions: string | null; + preferredLanguage: string | null; groups: unknown[]; documents: unknown[]; - communications: unknown[]; user?: unknown; + conversation?: unknown; }>; export type PatientResultType = z.infer; //# sourceMappingURL=Patient.result.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/result/Patient.result.d.ts.map b/packages/db/shared/schemas/variants/result/Patient.result.d.ts.map index 855d4d2b..20044b1e 100644 --- a/packages/db/shared/schemas/variants/result/Patient.result.d.ts.map +++ b/packages/db/shared/schemas/variants/result/Patient.result.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"Patient.result.d.ts","sourceRoot":"","sources":["Patient.result.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAGzB,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4BrB,CAAC;AAEZ,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"Patient.result.d.ts","sourceRoot":"","sources":["Patient.result.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAGzB,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgCrB,CAAC;AAEZ,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/result/Payment.result.d.ts b/packages/db/shared/schemas/variants/result/Payment.result.d.ts index 65610d9a..4940c7af 100644 --- a/packages/db/shared/schemas/variants/result/Payment.result.d.ts +++ b/packages/db/shared/schemas/variants/result/Payment.result.d.ts @@ -5,10 +5,14 @@ export declare const PaymentResultSchema: z.ZodObject<{ patientId: z.ZodNumber; userId: z.ZodNumber; updatedById: z.ZodNullable; + npiProviderId: z.ZodNullable; totalBilled: z.ZodNumber; totalPaid: z.ZodNumber; totalAdjusted: z.ZodNumber; totalDue: z.ZodNumber; + mhPaidAmount: z.ZodNullable; + copayment: z.ZodNumber; + adjustment: z.ZodNumber; status: z.ZodEnum<["PENDING", "PARTIALLY_PAID", "PAID", "OVERPAID", "DENIED", "VOID"]>; notes: z.ZodNullable; icn: z.ZodNullable; @@ -17,26 +21,34 @@ export declare const PaymentResultSchema: z.ZodObject<{ claim: z.ZodNullable; patient: z.ZodUnknown; updatedBy: z.ZodNullable; + npiProvider: z.ZodNullable; serviceLineTransactions: z.ZodArray; serviceLines: z.ZodArray; + commissionBatchItems: z.ZodArray; }, "strict", z.ZodTypeAny, { status: "PENDING" | "VOID" | "PARTIALLY_PAID" | "PAID" | "OVERPAID" | "DENIED"; id: number; createdAt: Date; patientId: number; - notes: string | null; + npiProviderId: number | null; userId: number; claimId: number | null; + notes: string | null; + icn: string | null; totalBilled: number; totalPaid: number; totalAdjusted: number; totalDue: number; serviceLineTransactions: unknown[]; - icn: string | null; + updatedById: number | null; + mhPaidAmount: number | null; + copayment: number; + adjustment: number; updatedAt: Date; serviceLines: unknown[]; - updatedById: number | null; + commissionBatchItems: unknown[]; patient?: unknown; + npiProvider?: unknown; claim?: unknown; updatedBy?: unknown; }, { @@ -44,19 +56,25 @@ export declare const PaymentResultSchema: z.ZodObject<{ id: number; createdAt: Date; patientId: number; - notes: string | null; + npiProviderId: number | null; userId: number; claimId: number | null; + notes: string | null; + icn: string | null; totalBilled: number; totalPaid: number; totalAdjusted: number; totalDue: number; serviceLineTransactions: unknown[]; - icn: string | null; + updatedById: number | null; + mhPaidAmount: number | null; + copayment: number; + adjustment: number; updatedAt: Date; serviceLines: unknown[]; - updatedById: number | null; + commissionBatchItems: unknown[]; patient?: unknown; + npiProvider?: unknown; claim?: unknown; updatedBy?: unknown; }>; diff --git a/packages/db/shared/schemas/variants/result/Payment.result.d.ts.map b/packages/db/shared/schemas/variants/result/Payment.result.d.ts.map index 1d481137..861f5909 100644 --- a/packages/db/shared/schemas/variants/result/Payment.result.d.ts.map +++ b/packages/db/shared/schemas/variants/result/Payment.result.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"Payment.result.d.ts","sourceRoot":"","sources":["Payment.result.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAGzB,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoBrB,CAAC;AAEZ,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"Payment.result.d.ts","sourceRoot":"","sources":["Payment.result.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAGzB,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0BrB,CAAC;AAEZ,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/result/SeleniumSettings.result.js b/packages/db/shared/schemas/variants/result/SeleniumSettings.result.js new file mode 100644 index 00000000..a483f68c --- /dev/null +++ b/packages/db/shared/schemas/variants/result/SeleniumSettings.result.js @@ -0,0 +1,44 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SeleniumSettingsResultSchema = void 0; +const z = __importStar(require("zod")); +// prettier-ignore +exports.SeleniumSettingsResultSchema = z.object({ + id: z.number().int(), + userId: z.number().int(), + paymentGroupId: z.string(), + user: z.unknown() +}).strict(); diff --git a/packages/db/shared/schemas/variants/result/ServiceLine.result.d.ts b/packages/db/shared/schemas/variants/result/ServiceLine.result.d.ts index c8be94ab..0f5a78c2 100644 --- a/packages/db/shared/schemas/variants/result/ServiceLine.result.d.ts +++ b/packages/db/shared/schemas/variants/result/ServiceLine.result.d.ts @@ -9,6 +9,9 @@ export declare const ServiceLineResultSchema: z.ZodObject<{ arch: z.ZodNullable; toothNumber: z.ZodNullable; toothSurface: z.ZodNullable; + icn: z.ZodNullable; + paidCode: z.ZodNullable; + allowedAmount: z.ZodNullable; totalBilled: z.ZodNumber; totalPaid: z.ZodNumber; totalAdjusted: z.ZodNumber; @@ -28,6 +31,9 @@ export declare const ServiceLineResultSchema: z.ZodObject<{ procedureDate: Date; quad: string | null; arch: string | null; + icn: string | null; + paidCode: string | null; + allowedAmount: number | null; totalBilled: number; totalPaid: number; totalAdjusted: number; @@ -46,6 +52,9 @@ export declare const ServiceLineResultSchema: z.ZodObject<{ procedureDate: Date; quad: string | null; arch: string | null; + icn: string | null; + paidCode: string | null; + allowedAmount: number | null; totalBilled: number; totalPaid: number; totalAdjusted: number; diff --git a/packages/db/shared/schemas/variants/result/ServiceLine.result.d.ts.map b/packages/db/shared/schemas/variants/result/ServiceLine.result.d.ts.map index 56cd9c87..00a94ac1 100644 --- a/packages/db/shared/schemas/variants/result/ServiceLine.result.d.ts.map +++ b/packages/db/shared/schemas/variants/result/ServiceLine.result.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"ServiceLine.result.d.ts","sourceRoot":"","sources":["ServiceLine.result.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAGzB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkBzB,CAAC;AAEZ,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"ServiceLine.result.d.ts","sourceRoot":"","sources":["ServiceLine.result.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAGzB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqBzB,CAAC;AAEZ,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/result/ServiceLineTransaction.result.d.ts b/packages/db/shared/schemas/variants/result/ServiceLineTransaction.result.d.ts index 714693c0..5b12c0a2 100644 --- a/packages/db/shared/schemas/variants/result/ServiceLineTransaction.result.d.ts +++ b/packages/db/shared/schemas/variants/result/ServiceLineTransaction.result.d.ts @@ -17,28 +17,28 @@ export declare const ServiceLineTransactionResultSchema: z.ZodObject<{ id: number; createdAt: Date; notes: string | null; - paymentId: number; + serviceLineId: number; transactionId: string | null; paidAmount: number; adjustedAmount: number; method: "OTHER" | "EFT" | "CHECK" | "CASH" | "CARD"; receivedDate: Date; payerName: string | null; - serviceLineId: number; + paymentId: number; payment?: unknown; serviceLine?: unknown; }, { id: number; createdAt: Date; notes: string | null; - paymentId: number; + serviceLineId: number; transactionId: string | null; paidAmount: number; adjustedAmount: number; method: "OTHER" | "EFT" | "CHECK" | "CASH" | "CARD"; receivedDate: Date; payerName: string | null; - serviceLineId: number; + paymentId: number; payment?: unknown; serviceLine?: unknown; }>; diff --git a/packages/db/shared/schemas/variants/result/Staff.result.d.ts b/packages/db/shared/schemas/variants/result/Staff.result.d.ts index 490ca8a2..1b8ca93e 100644 --- a/packages/db/shared/schemas/variants/result/Staff.result.d.ts +++ b/packages/db/shared/schemas/variants/result/Staff.result.d.ts @@ -14,23 +14,23 @@ export declare const StaffResultSchema: z.ZodObject<{ id: number; createdAt: Date; userId: number; - claims: unknown[]; name: string; email: string | null; role: string; phone: string | null; appointments: unknown[]; + claims: unknown[]; user?: unknown; }, { id: number; createdAt: Date; userId: number; - claims: unknown[]; name: string; email: string | null; role: string; phone: string | null; appointments: unknown[]; + claims: unknown[]; user?: unknown; }>; export type StaffResultType = z.infer; diff --git a/packages/db/shared/schemas/variants/result/User.result.d.ts b/packages/db/shared/schemas/variants/result/User.result.d.ts index 5bc5ea46..66d26c4f 100644 --- a/packages/db/shared/schemas/variants/result/User.result.d.ts +++ b/packages/db/shared/schemas/variants/result/User.result.d.ts @@ -4,13 +4,19 @@ export declare const UserResultSchema: z.ZodObject<{ username: z.ZodString; password: z.ZodString; autoBackupEnabled: z.ZodBoolean; + autoBackupHour: z.ZodNumber; usbBackupEnabled: z.ZodBoolean; + usbBackupHour: z.ZodNumber; + autoMhCheckEnabled: z.ZodBoolean; + autoMhCheckDayOfWeek: z.ZodNumber; + autoMhCheckHour: z.ZodNumber; patients: z.ZodArray; appointments: z.ZodArray; staff: z.ZodArray; npiProviders: z.ZodArray; claims: z.ZodArray; insuranceCredentials: z.ZodArray; + shoppingVendors: z.ZodArray; updatedPayments: z.ZodArray; backups: z.ZodArray; backupDestinations: z.ZodArray; @@ -18,44 +24,83 @@ export declare const UserResultSchema: z.ZodObject<{ cloudFolders: z.ZodArray; cloudFiles: z.ZodArray; communications: z.ZodArray; + twilioSettings: z.ZodNullable; + aiSettings: z.ZodNullable; + officeHours: z.ZodNullable; + officeContact: z.ZodNullable; + procedureTimeslot: z.ZodNullable; + insuranceContacts: z.ZodArray; + patientConversations: z.ZodArray; + labRxTemplates: z.ZodArray; + seleniumSettings: z.ZodNullable; }, "strict", z.ZodTypeAny, { id: number; - staff: unknown[]; - claims: unknown[]; - appointments: unknown[]; username: string; password: string; - communications: unknown[]; + appointments: unknown[]; + staff: unknown[]; + claims: unknown[]; autoBackupEnabled: boolean; + autoBackupHour: number; usbBackupEnabled: boolean; + usbBackupHour: number; + autoMhCheckEnabled: boolean; + autoMhCheckDayOfWeek: number; + autoMhCheckHour: number; patients: unknown[]; npiProviders: unknown[]; insuranceCredentials: unknown[]; + shoppingVendors: unknown[]; updatedPayments: unknown[]; backups: unknown[]; backupDestinations: unknown[]; notifications: unknown[]; cloudFolders: unknown[]; cloudFiles: unknown[]; + communications: unknown[]; + insuranceContacts: unknown[]; + labRxTemplates: unknown[]; + patientConversations: unknown[]; + twilioSettings?: unknown; + aiSettings?: unknown; + officeHours?: unknown; + officeContact?: unknown; + procedureTimeslot?: unknown; + seleniumSettings?: unknown; }, { id: number; - staff: unknown[]; - claims: unknown[]; - appointments: unknown[]; username: string; password: string; - communications: unknown[]; + appointments: unknown[]; + staff: unknown[]; + claims: unknown[]; autoBackupEnabled: boolean; + autoBackupHour: number; usbBackupEnabled: boolean; + usbBackupHour: number; + autoMhCheckEnabled: boolean; + autoMhCheckDayOfWeek: number; + autoMhCheckHour: number; patients: unknown[]; npiProviders: unknown[]; insuranceCredentials: unknown[]; + shoppingVendors: unknown[]; updatedPayments: unknown[]; backups: unknown[]; backupDestinations: unknown[]; notifications: unknown[]; cloudFolders: unknown[]; cloudFiles: unknown[]; + communications: unknown[]; + insuranceContacts: unknown[]; + labRxTemplates: unknown[]; + patientConversations: unknown[]; + twilioSettings?: unknown; + aiSettings?: unknown; + officeHours?: unknown; + officeContact?: unknown; + procedureTimeslot?: unknown; + seleniumSettings?: unknown; }>; export type UserResultType = z.infer; //# sourceMappingURL=User.result.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/result/User.result.d.ts.map b/packages/db/shared/schemas/variants/result/User.result.d.ts.map index d5e9e3a1..ba426d40 100644 --- a/packages/db/shared/schemas/variants/result/User.result.d.ts.map +++ b/packages/db/shared/schemas/variants/result/User.result.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"User.result.d.ts","sourceRoot":"","sources":["User.result.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmBlB,CAAC;AAEZ,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"User.result.d.ts","sourceRoot":"","sources":["User.result.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkClB,CAAC;AAEZ,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/result/User.result.js b/packages/db/shared/schemas/variants/result/User.result.js index 8be5ad43..ed837bce 100644 --- a/packages/db/shared/schemas/variants/result/User.result.js +++ b/packages/db/shared/schemas/variants/result/User.result.js @@ -67,5 +67,7 @@ exports.UserResultSchema = z.object({ officeContact: z.unknown().nullable(), procedureTimeslot: z.unknown().nullable(), insuranceContacts: z.array(z.unknown()), - patientConversations: z.array(z.unknown()) + patientConversations: z.array(z.unknown()), + labRxTemplates: z.array(z.unknown()), + seleniumSettings: z.unknown().nullable() }).strict(); diff --git a/packages/db/shared/schemas/variants/result/index.d.ts b/packages/db/shared/schemas/variants/result/index.d.ts index cb41a5b0..845093f1 100644 --- a/packages/db/shared/schemas/variants/result/index.d.ts +++ b/packages/db/shared/schemas/variants/result/index.d.ts @@ -5,6 +5,7 @@ export { UserResultSchema } from './User.result'; export { PatientResultSchema } from './Patient.result'; export { AppointmentResultSchema } from './Appointment.result'; +export { AppointmentFileResultSchema } from './AppointmentFile.result'; export { StaffResultSchema } from './Staff.result'; export { NpiProviderResultSchema } from './NpiProvider.result'; export { AppointmentProcedureResultSchema } from './AppointmentProcedure.result'; @@ -12,6 +13,7 @@ export { ClaimResultSchema } from './Claim.result'; export { ServiceLineResultSchema } from './ServiceLine.result'; export { ClaimFileResultSchema } from './ClaimFile.result'; export { InsuranceCredentialResultSchema } from './InsuranceCredential.result'; +export { ShoppingVendorResultSchema } from './ShoppingVendor.result'; export { PdfGroupResultSchema } from './PdfGroup.result'; export { PdfFileResultSchema } from './PdfFile.result'; export { PaymentResultSchema } from './Payment.result'; @@ -25,4 +27,15 @@ export { CloudFileResultSchema } from './CloudFile.result'; export { CloudFileChunkResultSchema } from './CloudFileChunk.result'; export { CommunicationResultSchema } from './Communication.result'; export { PatientDocumentResultSchema } from './PatientDocument.result'; +export { TwilioSettingsResultSchema } from './TwilioSettings.result'; +export { AiSettingsResultSchema } from './AiSettings.result'; +export { OfficeHoursResultSchema } from './OfficeHours.result'; +export { OfficeContactResultSchema } from './OfficeContact.result'; +export { InsuranceContactResultSchema } from './InsuranceContact.result'; +export { ProcedureTimeslotResultSchema } from './ProcedureTimeslot.result'; +export { PatientConversationResultSchema } from './PatientConversation.result'; +export { LabRxTemplateResultSchema } from './LabRxTemplate.result'; +export { CommissionBatchResultSchema } from './CommissionBatch.result'; +export { CommissionBatchItemResultSchema } from './CommissionBatchItem.result'; +export { SeleniumSettingsResultSchema } from './SeleniumSettings.result'; //# sourceMappingURL=index.d.ts.map \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/result/index.d.ts.map b/packages/db/shared/schemas/variants/result/index.d.ts.map index ea6e6ee3..8de91699 100644 --- a/packages/db/shared/schemas/variants/result/index.d.ts.map +++ b/packages/db/shared/schemas/variants/result/index.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AACjD,OAAO,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AACnD,OAAO,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,EAAE,gCAAgC,EAAE,MAAM,+BAA+B,CAAC;AACjF,OAAO,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AACnD,OAAO,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,EAAE,qBAAqB,EAAE,MAAM,oBAAoB,CAAC;AAC3D,OAAO,EAAE,+BAA+B,EAAE,MAAM,8BAA8B,CAAC;AAC/E,OAAO,EAAE,oBAAoB,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,kCAAkC,EAAE,MAAM,iCAAiC,CAAC;AACrF,OAAO,EAAE,0BAA0B,EAAE,MAAM,yBAAyB,CAAC;AACrE,OAAO,EAAE,6BAA6B,EAAE,MAAM,4BAA4B,CAAC;AAC3E,OAAO,EAAE,wBAAwB,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,EAAE,sBAAsB,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,EAAE,qBAAqB,EAAE,MAAM,oBAAoB,CAAC;AAC3D,OAAO,EAAE,0BAA0B,EAAE,MAAM,yBAAyB,CAAC;AACrE,OAAO,EAAE,yBAAyB,EAAE,MAAM,wBAAwB,CAAC;AACnE,OAAO,EAAE,2BAA2B,EAAE,MAAM,0BAA0B,CAAC"} \ No newline at end of file +{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AACjD,OAAO,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,EAAE,2BAA2B,EAAE,MAAM,0BAA0B,CAAC;AACvE,OAAO,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AACnD,OAAO,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,EAAE,gCAAgC,EAAE,MAAM,+BAA+B,CAAC;AACjF,OAAO,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AACnD,OAAO,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,EAAE,qBAAqB,EAAE,MAAM,oBAAoB,CAAC;AAC3D,OAAO,EAAE,+BAA+B,EAAE,MAAM,8BAA8B,CAAC;AAC/E,OAAO,EAAE,0BAA0B,EAAE,MAAM,yBAAyB,CAAC;AACrE,OAAO,EAAE,oBAAoB,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,kCAAkC,EAAE,MAAM,iCAAiC,CAAC;AACrF,OAAO,EAAE,0BAA0B,EAAE,MAAM,yBAAyB,CAAC;AACrE,OAAO,EAAE,6BAA6B,EAAE,MAAM,4BAA4B,CAAC;AAC3E,OAAO,EAAE,wBAAwB,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,EAAE,sBAAsB,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,EAAE,qBAAqB,EAAE,MAAM,oBAAoB,CAAC;AAC3D,OAAO,EAAE,0BAA0B,EAAE,MAAM,yBAAyB,CAAC;AACrE,OAAO,EAAE,yBAAyB,EAAE,MAAM,wBAAwB,CAAC;AACnE,OAAO,EAAE,2BAA2B,EAAE,MAAM,0BAA0B,CAAC;AACvE,OAAO,EAAE,0BAA0B,EAAE,MAAM,yBAAyB,CAAC;AACrE,OAAO,EAAE,sBAAsB,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,EAAE,yBAAyB,EAAE,MAAM,wBAAwB,CAAC;AACnE,OAAO,EAAE,4BAA4B,EAAE,MAAM,2BAA2B,CAAC;AACzE,OAAO,EAAE,6BAA6B,EAAE,MAAM,4BAA4B,CAAC;AAC3E,OAAO,EAAE,+BAA+B,EAAE,MAAM,8BAA8B,CAAC;AAC/E,OAAO,EAAE,yBAAyB,EAAE,MAAM,wBAAwB,CAAC;AACnE,OAAO,EAAE,2BAA2B,EAAE,MAAM,0BAA0B,CAAC;AACvE,OAAO,EAAE,+BAA+B,EAAE,MAAM,8BAA8B,CAAC;AAC/E,OAAO,EAAE,4BAA4B,EAAE,MAAM,2BAA2B,CAAC"} \ No newline at end of file diff --git a/packages/db/shared/schemas/variants/result/index.js b/packages/db/shared/schemas/variants/result/index.js index 45beec5c..fb780b64 100644 --- a/packages/db/shared/schemas/variants/result/index.js +++ b/packages/db/shared/schemas/variants/result/index.js @@ -4,7 +4,7 @@ * Auto-generated - do not edit manually */ Object.defineProperty(exports, "__esModule", { value: true }); -exports.CommissionBatchItemResultSchema = exports.CommissionBatchResultSchema = exports.PatientConversationResultSchema = exports.ProcedureTimeslotResultSchema = exports.InsuranceContactResultSchema = exports.OfficeContactResultSchema = exports.OfficeHoursResultSchema = exports.AiSettingsResultSchema = exports.TwilioSettingsResultSchema = exports.PatientDocumentResultSchema = exports.CommunicationResultSchema = exports.CloudFileChunkResultSchema = exports.CloudFileResultSchema = exports.CloudFolderResultSchema = exports.CronJobLogResultSchema = exports.NotificationResultSchema = exports.BackupDestinationResultSchema = exports.DatabaseBackupResultSchema = exports.ServiceLineTransactionResultSchema = exports.PaymentResultSchema = exports.PdfFileResultSchema = exports.PdfGroupResultSchema = exports.ShoppingVendorResultSchema = exports.InsuranceCredentialResultSchema = exports.ClaimFileResultSchema = exports.ServiceLineResultSchema = exports.ClaimResultSchema = exports.AppointmentProcedureResultSchema = exports.NpiProviderResultSchema = exports.StaffResultSchema = exports.AppointmentFileResultSchema = exports.AppointmentResultSchema = exports.PatientResultSchema = exports.UserResultSchema = void 0; +exports.SeleniumSettingsResultSchema = exports.CommissionBatchItemResultSchema = exports.CommissionBatchResultSchema = exports.LabRxTemplateResultSchema = exports.PatientConversationResultSchema = exports.ProcedureTimeslotResultSchema = exports.InsuranceContactResultSchema = exports.OfficeContactResultSchema = exports.OfficeHoursResultSchema = exports.AiSettingsResultSchema = exports.TwilioSettingsResultSchema = exports.PatientDocumentResultSchema = exports.CommunicationResultSchema = exports.CloudFileChunkResultSchema = exports.CloudFileResultSchema = exports.CloudFolderResultSchema = exports.CronJobLogResultSchema = exports.NotificationResultSchema = exports.BackupDestinationResultSchema = exports.DatabaseBackupResultSchema = exports.ServiceLineTransactionResultSchema = exports.PaymentResultSchema = exports.PdfFileResultSchema = exports.PdfGroupResultSchema = exports.ShoppingVendorResultSchema = exports.InsuranceCredentialResultSchema = exports.ClaimFileResultSchema = exports.ServiceLineResultSchema = exports.ClaimResultSchema = exports.AppointmentProcedureResultSchema = exports.NpiProviderResultSchema = exports.StaffResultSchema = exports.AppointmentFileResultSchema = exports.AppointmentResultSchema = exports.PatientResultSchema = exports.UserResultSchema = void 0; var User_result_1 = require("./User.result"); Object.defineProperty(exports, "UserResultSchema", { enumerable: true, get: function () { return User_result_1.UserResultSchema; } }); var Patient_result_1 = require("./Patient.result"); @@ -69,7 +69,11 @@ var ProcedureTimeslot_result_1 = require("./ProcedureTimeslot.result"); Object.defineProperty(exports, "ProcedureTimeslotResultSchema", { enumerable: true, get: function () { return ProcedureTimeslot_result_1.ProcedureTimeslotResultSchema; } }); var PatientConversation_result_1 = require("./PatientConversation.result"); Object.defineProperty(exports, "PatientConversationResultSchema", { enumerable: true, get: function () { return PatientConversation_result_1.PatientConversationResultSchema; } }); +var LabRxTemplate_result_1 = require("./LabRxTemplate.result"); +Object.defineProperty(exports, "LabRxTemplateResultSchema", { enumerable: true, get: function () { return LabRxTemplate_result_1.LabRxTemplateResultSchema; } }); var CommissionBatch_result_1 = require("./CommissionBatch.result"); Object.defineProperty(exports, "CommissionBatchResultSchema", { enumerable: true, get: function () { return CommissionBatch_result_1.CommissionBatchResultSchema; } }); var CommissionBatchItem_result_1 = require("./CommissionBatchItem.result"); Object.defineProperty(exports, "CommissionBatchItemResultSchema", { enumerable: true, get: function () { return CommissionBatchItem_result_1.CommissionBatchItemResultSchema; } }); +var SeleniumSettings_result_1 = require("./SeleniumSettings.result"); +Object.defineProperty(exports, "SeleniumSettingsResultSchema", { enumerable: true, get: function () { return SeleniumSettings_result_1.SeleniumSettingsResultSchema; } }); diff --git a/packages/db/types/claim-types.d.ts.map b/packages/db/types/claim-types.d.ts.map index 9b918cb0..d4a8fae1 100644 --- a/packages/db/types/claim-types.d.ts.map +++ b/packages/db/types/claim-types.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"claim-types.d.ts","sourceRoot":"","sources":["claim-types.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,iBAAiB,EACjB,qCAAqC,EACtC,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,OAAO,EAAE,MAAM,YAAY,CAAC;AACrC,OAAO,EAAE,KAAK,EAAE,MAAM,gBAAgB,CAAC;AAGvC,eAAO,MAAM,iBAAiB;;;;;;;;EAM5B,CAAC;AACH,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAE5D,eAAO,MAAM,iBAAiB;;;;;;;;;;;;EAQlB,CAAC;AAEb,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAG5D,eAAO,MAAM,mBAAmB;;;;;;;;;;EAI9B,CAAC;AAEH,MAAM,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qCAAqC,CAAC,CAAC;AAC1E,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAC5D,eAAO,MAAM,kBAAkB;;CAKT,CAAC;AACvB,MAAM,MAAM,kBAAkB,GAC5B,CAAC,OAAO,kBAAkB,CAAC,CAAC,MAAM,OAAO,kBAAkB,CAAC,CAAC;AAE/D,MAAM,MAAM,aAAa,GAAG;IAC1B,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;AAGF,MAAM,WAAW,gBAAgB;IAC/B,aAAa,EAAE,MAAM,CAAC;IACtB,aAAa,EAAE,MAAM,CAAC;IACtB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,OAAO,CAAC;IACrB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,aAAa,CAAC,EAAE,OAAO,CAAC;CACzB;AAGD,MAAM,MAAM,qBAAqB,GAAG,KAAK,GAAG;IAC1C,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,YAAY,EAAE;QACZ,EAAE,EAAE,MAAM,CAAC;QACX,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;QACvB,aAAa,EAAE,MAAM,CAAC;QACtB,aAAa,EAAE,IAAI,CAAC;QACpB,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;QACpB,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;QACpB,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;QAC3B,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;QAC5B,WAAW,EAAE,OAAO,CAAC;QACrB,SAAS,EAAE,OAAO,CAAC;QACnB,aAAa,EAAE,OAAO,CAAC;QACvB,MAAM,EAAE,MAAM,CAAC;KAChB,EAAE,CAAC;IACJ,KAAK,CAAC,EAAE,KAAK,GAAG,IAAI,CAAC;IACrB,UAAU,CAAC,EAAE,aAAa,EAAE,GAAG,IAAI,CAAC;CACrC,CAAC;AAEF,MAAM,MAAM,kBAAkB,GAAG,YAAY,GAAG,aAAa,GAAG,aAAa,CAAC;AAE9E,MAAM,WAAW,aAAa;IAC5B,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,EAAE,MAAM,CAAC;IACtB,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC;IAChB,kBAAkB,EAAE,kBAAkB,CAAC;IACvC,YAAY,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,GAAG,GAAG,CAAC,CAAC;IACxC,WAAW,EAAE,MAAM,CAAC;IACpB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,WAAW,CAAC,EAAE;QACZ,SAAS,EAAE,MAAM,CAAC;QAClB,YAAY,EAAE,MAAM,CAAC;KACtB,CAAC;IACF,MAAM,EAAE,MAAM,CAAC;IACf,YAAY,EAAE,gBAAgB,EAAE,CAAC;IACjC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,UAAU,CAAC,EAAE,aAAa,EAAE,CAAC;CAC9B;AAED,MAAM,WAAW,gBAAgB;IAC/B,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC;IAChB,kBAAkB,EAAE,kBAAkB,CAAC;IACvC,YAAY,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,GAAG,GAAG,CAAC,CAAC;IACxC,WAAW,EAAE,MAAM,CAAC;IACpB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,WAAW,CAAC,EAAE;QACZ,SAAS,EAAE,MAAM,CAAC;QAClB,YAAY,EAAE,MAAM,CAAC;KACtB,CAAC;IACF,MAAM,EAAE,MAAM,CAAC;IACf,YAAY,EAAE,gBAAgB,EAAE,CAAC;IACjC,UAAU,CAAC,EAAE,aAAa,EAAE,CAAC;CAC9B"} \ No newline at end of file +{"version":3,"file":"claim-types.d.ts","sourceRoot":"","sources":["claim-types.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/packages/db/types/index.d.ts b/packages/db/types/index.d.ts index c806d38e..0705ae50 100644 --- a/packages/db/types/index.d.ts +++ b/packages/db/types/index.d.ts @@ -13,4 +13,5 @@ export * from "./payments-reports-types"; export * from "./patientConnection-types"; export * from "./npiProviders-types"; export * from "./patientDocument-types"; +export * from "./shopping-vendor-types"; //# sourceMappingURL=index.d.ts.map \ No newline at end of file diff --git a/packages/db/types/index.d.ts.map b/packages/db/types/index.d.ts.map index c2aba44d..4c920c8a 100644 --- a/packages/db/types/index.d.ts.map +++ b/packages/db/types/index.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC;AACpC,cAAc,eAAe,CAAC;AAC9B,cAAc,mBAAmB,CAAC;AAClC,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,wBAAwB,CAAC;AACvC,cAAc,uBAAuB,CAAC;AACtC,cAAc,sBAAsB,CAAC;AACrC,cAAc,0BAA0B,CAAC;AACzC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,sBAAsB,CAAC;AACrC,cAAc,yBAAyB,CAAC"} \ No newline at end of file +{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC;AACpC,cAAc,eAAe,CAAC;AAC9B,cAAc,mBAAmB,CAAC;AAClC,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,wBAAwB,CAAC;AACvC,cAAc,uBAAuB,CAAC;AACtC,cAAc,sBAAsB,CAAC;AACrC,cAAc,0BAA0B,CAAC;AACzC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,sBAAsB,CAAC;AACrC,cAAc,yBAAyB,CAAC;AACxC,cAAc,yBAAyB,CAAC"} \ No newline at end of file diff --git a/packages/db/types/patient-types.d.ts b/packages/db/types/patient-types.d.ts index 6279ae6f..c8b26bd8 100644 --- a/packages/db/types/patient-types.d.ts +++ b/packages/db/types/patient-types.d.ts @@ -11,16 +11,31 @@ export declare const insertPatientSchema: z.ZodObject<{ [x: number]: any; [x: symbol]: any; } & { + firstName: z.ZodDefault>; + lastName: z.ZodDefault>; + dateOfBirth: z.ZodEffects; + gender: z.ZodNullable>; + phone: z.ZodNullable>; insuranceId: z.ZodEffects>, string | null | undefined, unknown>; }, z.UnknownKeysParam, z.ZodTypeAny, { [x: string]: any; [x: number]: any; [x: symbol]: any; + firstName?: unknown; + lastName?: unknown; + dateOfBirth?: unknown; + gender?: unknown; + phone?: unknown; insuranceId?: unknown; }, { [x: string]: any; [x: number]: any; [x: symbol]: any; + firstName?: unknown; + lastName?: unknown; + dateOfBirth?: unknown; + gender?: unknown; + phone?: unknown; insuranceId?: unknown; }>; export type InsertPatient = z.infer; diff --git a/packages/db/types/patient-types.d.ts.map b/packages/db/types/patient-types.d.ts.map index c006aec5..cf781460 100644 --- a/packages/db/types/patient-types.d.ts.map +++ b/packages/db/types/patient-types.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"patient-types.d.ts","sourceRoot":"","sources":["patient-types.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,mBAAmB,EACnB,uCAAuC,EACxC,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uCAAuC,CAAC,CAAC;AAE9E,eAAO,MAAM,iBAAiB,6FAuB7B,CAAC;AAGF,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAGhE,eAAO,MAAM,oBAAoB;;CAKT,CAAC;AAEzB,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;EAS5B,CAAC;AAEL,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEhE,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;EAW5B,CAAC;AAEL,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEhE,MAAM,MAAM,YAAY,GAAG;IACzB,IAAI,EAAE,OAAO,GAAG,SAAS,CAAC;IAC1B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IACpB,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;IACnB,cAAc,EAAE,MAAM,CAAC;IACvB,SAAS,EAAE,MAAM,CAAC;IAClB,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,aAAa,EAAE,GAAG,EAAE,CAAC;IACrB,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CACnC,CAAC"} \ No newline at end of file +{"version":3,"file":"patient-types.d.ts","sourceRoot":"","sources":["patient-types.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,mBAAmB,EACnB,uCAAuC,EACxC,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uCAAuC,CAAC,CAAC;AAE9E,eAAO,MAAM,iBAAiB,6FAuB7B,CAAC;AAGF,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAGhE,eAAO,MAAM,oBAAoB;;CAKT,CAAC;AAEzB,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiB5B,CAAC;AAEL,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEhE,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;EAW5B,CAAC;AAEL,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEhE,MAAM,MAAM,YAAY,GAAG;IACzB,IAAI,EAAE,OAAO,GAAG,SAAS,CAAC;IAC1B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IACpB,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;IACnB,cAAc,EAAE,MAAM,CAAC;IACvB,SAAS,EAAE,MAAM,CAAC;IAClB,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,aAAa,EAAE,GAAG,EAAE,CAAC;IACrB,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CACnC,CAAC"} \ No newline at end of file diff --git a/packages/db/types/payment-types.d.ts b/packages/db/types/payment-types.d.ts index 9256e8f5..78bd738a 100644 --- a/packages/db/types/payment-types.d.ts +++ b/packages/db/types/payment-types.d.ts @@ -61,6 +61,12 @@ export type PaymentWithExtras = Prisma.PaymentGetPayload<{ }; updatedBy: true; patient: true; + npiProvider: true; + commissionBatchItems: { + include: { + commissionBatch: true; + }; + }; }; }> & { patientName: string; @@ -79,19 +85,19 @@ export declare const newTransactionPayloadSchema: z.ZodObject<{ payerName: z.ZodOptional; notes: z.ZodOptional; }, "strip", z.ZodTypeAny, { + serviceLineId: number; paidAmount: number; method: "OTHER" | "EFT" | "CHECK" | "CASH" | "CARD"; receivedDate: Date; - serviceLineId: number; notes?: string | undefined; transactionId?: string | undefined; adjustedAmount?: number | undefined; payerName?: string | undefined; }, { + serviceLineId: number; paidAmount: number; method: "OTHER" | "EFT" | "CHECK" | "CASH" | "CARD"; receivedDate: Date; - serviceLineId: number; notes?: string | undefined; transactionId?: string | undefined; adjustedAmount?: number | undefined; @@ -100,10 +106,10 @@ export declare const newTransactionPayloadSchema: z.ZodObject<{ }, "strip", z.ZodTypeAny, { paymentId: number; serviceLineTransactions: { + serviceLineId: number; paidAmount: number; method: "OTHER" | "EFT" | "CHECK" | "CASH" | "CARD"; receivedDate: Date; - serviceLineId: number; notes?: string | undefined; transactionId?: string | undefined; adjustedAmount?: number | undefined; @@ -112,10 +118,10 @@ export declare const newTransactionPayloadSchema: z.ZodObject<{ }, { paymentId: number; serviceLineTransactions: { + serviceLineId: number; paidAmount: number; method: "OTHER" | "EFT" | "CHECK" | "CASH" | "CARD"; receivedDate: Date; - serviceLineId: number; notes?: string | undefined; transactionId?: string | undefined; adjustedAmount?: number | undefined; diff --git a/packages/db/types/payment-types.d.ts.map b/packages/db/types/payment-types.d.ts.map index baa713b6..53645731 100644 --- a/packages/db/types/payment-types.d.ts.map +++ b/packages/db/types/payment-types.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"payment-types.d.ts","sourceRoot":"","sources":["payment-types.ts"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"payment-types.d.ts","sourceRoot":"","sources":["payment-types.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/packages/db/usedSchemas/browser.d.ts b/packages/db/usedSchemas/browser.d.ts index 75c41dcb..1c01f790 100644 --- a/packages/db/usedSchemas/browser.d.ts +++ b/packages/db/usedSchemas/browser.d.ts @@ -52,10 +52,10 @@ export declare const PatientUncheckedCreateInputObjectSchema: z.ZodObject<{ id?: number | undefined; email?: string | undefined; phone?: string | undefined; - address?: string | undefined; city?: string | undefined; - zipCode?: string | undefined; state?: string | undefined; + zipCode?: string | undefined; + address?: string | undefined; }, { dateOfBirth: string; firstName: string; @@ -64,10 +64,10 @@ export declare const PatientUncheckedCreateInputObjectSchema: z.ZodObject<{ id?: number | undefined; email?: string | undefined; phone?: string | undefined; - address?: string | undefined; city?: string | undefined; - zipCode?: string | undefined; state?: string | undefined; + zipCode?: string | undefined; + address?: string | undefined; }>; export declare const StaffUncheckedCreateInputObjectSchema: z.ZodObject<{ id: z.ZodOptional; @@ -99,6 +99,7 @@ export declare const AppointmentUncheckedCreateInputObjectSchema: z.ZodObject<{ patientId: z.ZodNumber; userId: z.ZodOptional; staffId: z.ZodOptional; + npiProviderId: z.ZodNullable>; title: z.ZodOptional; date: z.ZodDate; startTime: z.ZodString; @@ -115,8 +116,9 @@ export declare const AppointmentUncheckedCreateInputObjectSchema: z.ZodObject<{ status?: "completed" | "scheduled" | "confirmed" | "cancelled" | "no-show" | undefined; id?: number | undefined; title?: string | undefined; - notes?: string | undefined; + npiProviderId?: number | null | undefined; userId?: number | undefined; + notes?: string | undefined; staffId?: number | undefined; }, { type: string; @@ -127,8 +129,9 @@ export declare const AppointmentUncheckedCreateInputObjectSchema: z.ZodObject<{ status?: "completed" | "scheduled" | "confirmed" | "cancelled" | "no-show" | undefined; id?: number | undefined; title?: string | undefined; - notes?: string | undefined; + npiProviderId?: number | null | undefined; userId?: number | undefined; + notes?: string | undefined; staffId?: number | undefined; }>; export declare const AppointmentProcedureUncheckedCreateInputObjectSchema: z.ZodObject<{ @@ -228,16 +231,16 @@ export declare const InsuranceCredentialUncheckedCreateInputObjectSchema: z.ZodO username: z.ZodString; password: z.ZodString; }, "strip", z.ZodTypeAny, { - userId: number; siteKey: string; username: string; password: string; + userId: number; id?: number | undefined; }, { - userId: number; siteKey: string; username: string; password: string; + userId: number; id?: number | undefined; }>; export declare const PdfFileUncheckedCreateInputObjectSchema: z.ZodObject<{ @@ -472,4 +475,26 @@ export declare const CommunicationUncheckedCreateInputObjectSchema: z.ZodObject< callDuration?: number | null | undefined; twilioSid?: string | null | undefined; }>; +export declare const ShoppingVendorUncheckedCreateInputObjectSchema: z.ZodObject<{ + id: z.ZodOptional; + userId: z.ZodNumber; + vendorName: z.ZodString; + websiteUrl: z.ZodString; + loginUsername: z.ZodString; + loginPassword: z.ZodString; +}, "strip", z.ZodTypeAny, { + userId: number; + vendorName: string; + websiteUrl: string; + loginUsername: string; + loginPassword: string; + id?: number | undefined; +}, { + userId: number; + vendorName: string; + websiteUrl: string; + loginUsername: string; + loginPassword: string; + id?: number | undefined; +}>; //# sourceMappingURL=browser.d.ts.map \ No newline at end of file diff --git a/packages/db/usedSchemas/browser.d.ts.map b/packages/db/usedSchemas/browser.d.ts.map index fe349d10..62b21e8e 100644 --- a/packages/db/usedSchemas/browser.d.ts.map +++ b/packages/db/usedSchemas/browser.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"browser.d.ts","sourceRoot":"","sources":["browser.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAIzB,eAAO,MAAM,mBAAmB,8CAA4C,CAAC;AAC7E,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEhE,eAAO,MAAM,iBAAiB,mEAM5B,CAAC;AACH,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAE5D,eAAO,MAAM,mBAAmB,sDAM9B,CAAC;AACH,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEhE,eAAO,MAAM,mBAAmB,gFAO9B,CAAC;AACH,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEhE,eAAO,MAAM,uBAAuB,kDAKlC,CAAC;AACH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAExE,eAAO,MAAM,qBAAqB,gCAA8B,CAAC;AACjE,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAEpE,eAAO,MAAM,iBAAiB,0GAM5B,CAAC;AACH,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAE5D,eAAO,MAAM,0BAA0B,6BAA2B,CAAC;AACnE,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAE9E,eAAO,MAAM,4BAA4B,oCAAkC,CAAC;AAC5E,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAC1C,OAAO,4BAA4B,CACpC,CAAC;AAEF,eAAO,MAAM,yBAAyB,wFAQpC,CAAC;AACH,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAI5E,eAAO,MAAM,oCAAoC;;;;;;;;;;;;EAI/C,CAAC;AAEH,eAAO,MAAM,uCAAuC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAYlD,CAAC;AAEH,eAAO,MAAM,qCAAqC;;;;;;;;;;;;;;;;;;;;;;;;EAQhD,CAAC;AAEH,eAAO,MAAM,2CAA2C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EActD,CAAC;AAEH,eAAO,MAAM,oDAAoD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAc/D,CAAC;AAEH,eAAO,MAAM,2CAA2C;;;;;;;;;;;;;;;;;;EAMtD,CAAC;AAEH,eAAO,MAAM,qCAAqC;;;;;;;;;;;;;;;;;;;;;;;;;;;EAShD,CAAC;AAEH,eAAO,MAAM,mDAAmD;;;;;;;;;;;;;;;;;;EAM9D,CAAC;AAEH,eAAO,MAAM,uCAAuC;;;;;;;;;;;;;;;;;;EAMlD,CAAC;AAEH,eAAO,MAAM,wCAAwC;;;;;;;;;;;;;;;;;;EAMnD,CAAC;AAEH,eAAO,MAAM,uCAAuC;;;;;;;;;;;;;;;;;;;;;;;;;;;EASlD,CAAC;AAEH,eAAO,MAAM,6CAA6C;;;;;;;;;;;;;;;;;;;;;;;;;;;EASxD,CAAC;AAEH,eAAO,MAAM,4CAA4C;;;;;;;;;;;;;;;;;;;;;EAOvD,CAAC;AAEH,eAAO,MAAM,8CAA8C;;;;;;;;;;;;EAIzD,CAAC;AAEH,eAAO,MAAM,iDAAiD;;;;;;;;;;;;;;;;;;EAM5D,CAAC;AAEH,eAAO,MAAM,2CAA2C;;;;;;;;;;;;;;;;;;EAMtD,CAAC;AAEH,eAAO,MAAM,yCAAyC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUpD,CAAC;AAEH,eAAO,MAAM,6CAA6C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAWxD,CAAC"} \ No newline at end of file +{"version":3,"file":"browser.d.ts","sourceRoot":"","sources":["browser.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/packages/db/usedSchemas/browser.js b/packages/db/usedSchemas/browser.js index ded1c92f..86fb1d99 100644 --- a/packages/db/usedSchemas/browser.js +++ b/packages/db/usedSchemas/browser.js @@ -117,6 +117,7 @@ exports.AppointmentUncheckedCreateInputObjectSchema = z.object({ patientId: z.number().int(), userId: z.number().int().optional(), staffId: z.number().int().optional(), + npiProviderId: z.number().int().optional().nullable(), title: z.string().optional(), date: z.coerce.date(), startTime: z.string(), diff --git a/packages/db/usedSchemas/browser.ts b/packages/db/usedSchemas/browser.ts index f3a6d9e0..3d140a39 100644 --- a/packages/db/usedSchemas/browser.ts +++ b/packages/db/usedSchemas/browser.ts @@ -109,6 +109,7 @@ export const AppointmentUncheckedCreateInputObjectSchema = z.object({ patientId: z.number().int(), userId: z.number().int().optional(), staffId: z.number().int().optional(), + npiProviderId: z.number().int().optional().nullable(), title: z.string().optional(), date: z.coerce.date(), startTime: z.string(), diff --git a/packages/db/usedSchemas/index.d.ts b/packages/db/usedSchemas/index.d.ts index 643b2129..f5d5364c 100644 --- a/packages/db/usedSchemas/index.d.ts +++ b/packages/db/usedSchemas/index.d.ts @@ -21,4 +21,5 @@ export * from '../shared/schemas/objects/BackupDestinationUncheckedCreateInput.s export * from '../shared/schemas/objects/CloudFolderUncheckedCreateInput.schema'; export * from '../shared/schemas/objects/CloudFileUncheckedCreateInput.schema'; export * from '../shared/schemas/objects/CommunicationUncheckedCreateInput.schema'; +export * from '../shared/schemas/objects/ShoppingVendorUncheckedCreateInput.schema'; //# sourceMappingURL=index.d.ts.map \ No newline at end of file diff --git a/packages/db/usedSchemas/index.d.ts.map b/packages/db/usedSchemas/index.d.ts.map index 83d4ec8c..31e97ca3 100644 --- a/packages/db/usedSchemas/index.d.ts.map +++ b/packages/db/usedSchemas/index.d.ts.map @@ -1 +1 @@ -{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AACA,cAAc,kEAAkE,CAAC;AACjF,cAAc,2EAA2E,CAAC;AAC1F,cAAc,8DAA8D,CAAC;AAC7E,cAAc,8CAA8C,CAAC;AAC7D,cAAc,2DAA2D,CAAC;AAC1E,cAAc,4DAA4D,CAAA;AAC1E,cAAc,kEAAkE,CAAA;AAChF,cAAc,4DAA4D,CAAA;AAC1E,cAAc,0EAA0E,CAAA;AACxF,cAAc,8DAA8D,CAAA;AAC5E,cAAc,+DAA+D,CAAA;AAC7E,cAAc,4CAA4C,CAAA;AAC1D,cAAc,8DAA8D,CAAA;AAC5E,cAAc,oEAAoE,CAAA;AAClF,cAAc,8CAA8C,CAAA;AAC5D,cAAc,8CAA8C,CAAA;AAC5D,cAAc,kDAAkD,CAAA;AAChE,cAAc,mEAAmE,CAAA;AACjF,cAAc,qEAAqE,CAAA;AACnF,cAAc,wEAAwE,CAAA;AACtF,cAAc,kEAAkE,CAAA;AAChF,cAAc,gEAAgE,CAAA;AAC9E,cAAc,oEAAoE,CAAA"} \ No newline at end of file +{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AACA,cAAc,kEAAkE,CAAC;AACjF,cAAc,2EAA2E,CAAC;AAC1F,cAAc,8DAA8D,CAAC;AAC7E,cAAc,8CAA8C,CAAC;AAC7D,cAAc,2DAA2D,CAAC;AAC1E,cAAc,4DAA4D,CAAA;AAC1E,cAAc,kEAAkE,CAAA;AAChF,cAAc,4DAA4D,CAAA;AAC1E,cAAc,0EAA0E,CAAA;AACxF,cAAc,8DAA8D,CAAA;AAC5E,cAAc,+DAA+D,CAAA;AAC7E,cAAc,4CAA4C,CAAA;AAC1D,cAAc,8DAA8D,CAAA;AAC5E,cAAc,oEAAoE,CAAA;AAClF,cAAc,8CAA8C,CAAA;AAC5D,cAAc,8CAA8C,CAAA;AAC5D,cAAc,kDAAkD,CAAA;AAChE,cAAc,mEAAmE,CAAA;AACjF,cAAc,qEAAqE,CAAA;AACnF,cAAc,wEAAwE,CAAA;AACtF,cAAc,kEAAkE,CAAA;AAChF,cAAc,gEAAgE,CAAA;AAC9E,cAAc,oEAAoE,CAAA;AAClF,cAAc,qEAAqE,CAAA"} \ No newline at end of file