initial commit

This commit is contained in:
2026-04-04 22:13:55 -04:00
commit 5d77e207c9
10181 changed files with 522212 additions and 0 deletions

View File

@@ -0,0 +1,50 @@
import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const UserCreateWithoutBackupDestinationsInputObjectSchema: z.ZodType<Prisma.UserCreateWithoutBackupDestinationsInput>;
export declare const UserCreateWithoutBackupDestinationsInputObjectZodSchema: z.ZodObject<{
username: z.ZodString;
password: z.ZodString;
patients: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PatientCreateNestedManyWithoutUserInput, z.ZodTypeDef, Prisma.PatientCreateNestedManyWithoutUserInput>>>;
appointments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.AppointmentCreateNestedManyWithoutUserInput, z.ZodTypeDef, Prisma.AppointmentCreateNestedManyWithoutUserInput>>>;
staff: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.StaffCreateNestedManyWithoutUserInput, z.ZodTypeDef, Prisma.StaffCreateNestedManyWithoutUserInput>>>;
npiProviders: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.NpiProviderCreateNestedManyWithoutUserInput, z.ZodTypeDef, Prisma.NpiProviderCreateNestedManyWithoutUserInput>>>;
claims: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ClaimCreateNestedManyWithoutUserInput, z.ZodTypeDef, Prisma.ClaimCreateNestedManyWithoutUserInput>>>;
insuranceCredentials: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.InsuranceCredentialCreateNestedManyWithoutUserInput, z.ZodTypeDef, Prisma.InsuranceCredentialCreateNestedManyWithoutUserInput>>>;
updatedPayments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PaymentCreateNestedManyWithoutUpdatedByInput, z.ZodTypeDef, Prisma.PaymentCreateNestedManyWithoutUpdatedByInput>>>;
backups: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.DatabaseBackupCreateNestedManyWithoutUserInput, z.ZodTypeDef, Prisma.DatabaseBackupCreateNestedManyWithoutUserInput>>>;
notifications: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.NotificationCreateNestedManyWithoutUserInput, z.ZodTypeDef, Prisma.NotificationCreateNestedManyWithoutUserInput>>>;
cloudFolders: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CloudFolderCreateNestedManyWithoutUserInput, z.ZodTypeDef, Prisma.CloudFolderCreateNestedManyWithoutUserInput>>>;
cloudFiles: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CloudFileCreateNestedManyWithoutUserInput, z.ZodTypeDef, Prisma.CloudFileCreateNestedManyWithoutUserInput>>>;
communications: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CommunicationCreateNestedManyWithoutUserInput, z.ZodTypeDef, Prisma.CommunicationCreateNestedManyWithoutUserInput>>>;
}, "strict", z.ZodTypeAny, {
username: string;
password: string;
staff?: Prisma.StaffCreateNestedManyWithoutUserInput | undefined;
claims?: Prisma.ClaimCreateNestedManyWithoutUserInput | undefined;
appointments?: Prisma.AppointmentCreateNestedManyWithoutUserInput | undefined;
communications?: Prisma.CommunicationCreateNestedManyWithoutUserInput | undefined;
patients?: Prisma.PatientCreateNestedManyWithoutUserInput | undefined;
npiProviders?: Prisma.NpiProviderCreateNestedManyWithoutUserInput | undefined;
insuranceCredentials?: Prisma.InsuranceCredentialCreateNestedManyWithoutUserInput | undefined;
updatedPayments?: Prisma.PaymentCreateNestedManyWithoutUpdatedByInput | undefined;
backups?: Prisma.DatabaseBackupCreateNestedManyWithoutUserInput | undefined;
notifications?: Prisma.NotificationCreateNestedManyWithoutUserInput | undefined;
cloudFolders?: Prisma.CloudFolderCreateNestedManyWithoutUserInput | undefined;
cloudFiles?: Prisma.CloudFileCreateNestedManyWithoutUserInput | undefined;
}, {
username: string;
password: string;
staff?: Prisma.StaffCreateNestedManyWithoutUserInput | undefined;
claims?: Prisma.ClaimCreateNestedManyWithoutUserInput | undefined;
appointments?: Prisma.AppointmentCreateNestedManyWithoutUserInput | undefined;
communications?: Prisma.CommunicationCreateNestedManyWithoutUserInput | undefined;
patients?: Prisma.PatientCreateNestedManyWithoutUserInput | undefined;
npiProviders?: Prisma.NpiProviderCreateNestedManyWithoutUserInput | undefined;
insuranceCredentials?: Prisma.InsuranceCredentialCreateNestedManyWithoutUserInput | undefined;
updatedPayments?: Prisma.PaymentCreateNestedManyWithoutUpdatedByInput | undefined;
backups?: Prisma.DatabaseBackupCreateNestedManyWithoutUserInput | undefined;
notifications?: Prisma.NotificationCreateNestedManyWithoutUserInput | undefined;
cloudFolders?: Prisma.CloudFolderCreateNestedManyWithoutUserInput | undefined;
cloudFiles?: Prisma.CloudFileCreateNestedManyWithoutUserInput | undefined;
}>;
//# sourceMappingURL=UserCreateWithoutBackupDestinationsInput.schema.d.ts.map