initial commit
This commit is contained in:
53
packages/db/shared/schemas/objects/UserUncheckedCreateWithoutCloudFoldersInput.schema.d.ts
vendored
Normal file
53
packages/db/shared/schemas/objects/UserUncheckedCreateWithoutCloudFoldersInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,53 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const UserUncheckedCreateWithoutCloudFoldersInputObjectSchema: z.ZodType<Prisma.UserUncheckedCreateWithoutCloudFoldersInput>;
|
||||
export declare const UserUncheckedCreateWithoutCloudFoldersInputObjectZodSchema: z.ZodObject<{
|
||||
id: z.ZodOptional<z.ZodNumber>;
|
||||
username: z.ZodString;
|
||||
password: z.ZodString;
|
||||
patients: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PatientUncheckedCreateNestedManyWithoutUserInput, z.ZodTypeDef, Prisma.PatientUncheckedCreateNestedManyWithoutUserInput>>>;
|
||||
appointments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.AppointmentUncheckedCreateNestedManyWithoutUserInput, z.ZodTypeDef, Prisma.AppointmentUncheckedCreateNestedManyWithoutUserInput>>>;
|
||||
staff: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.StaffUncheckedCreateNestedManyWithoutUserInput, z.ZodTypeDef, Prisma.StaffUncheckedCreateNestedManyWithoutUserInput>>>;
|
||||
npiProviders: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.NpiProviderUncheckedCreateNestedManyWithoutUserInput, z.ZodTypeDef, Prisma.NpiProviderUncheckedCreateNestedManyWithoutUserInput>>>;
|
||||
claims: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ClaimUncheckedCreateNestedManyWithoutUserInput, z.ZodTypeDef, Prisma.ClaimUncheckedCreateNestedManyWithoutUserInput>>>;
|
||||
insuranceCredentials: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.InsuranceCredentialUncheckedCreateNestedManyWithoutUserInput, z.ZodTypeDef, Prisma.InsuranceCredentialUncheckedCreateNestedManyWithoutUserInput>>>;
|
||||
updatedPayments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PaymentUncheckedCreateNestedManyWithoutUpdatedByInput, z.ZodTypeDef, Prisma.PaymentUncheckedCreateNestedManyWithoutUpdatedByInput>>>;
|
||||
backups: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.DatabaseBackupUncheckedCreateNestedManyWithoutUserInput, z.ZodTypeDef, Prisma.DatabaseBackupUncheckedCreateNestedManyWithoutUserInput>>>;
|
||||
backupDestinations: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.BackupDestinationUncheckedCreateNestedManyWithoutUserInput, z.ZodTypeDef, Prisma.BackupDestinationUncheckedCreateNestedManyWithoutUserInput>>>;
|
||||
notifications: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.NotificationUncheckedCreateNestedManyWithoutUserInput, z.ZodTypeDef, Prisma.NotificationUncheckedCreateNestedManyWithoutUserInput>>>;
|
||||
cloudFiles: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CloudFileUncheckedCreateNestedManyWithoutUserInput, z.ZodTypeDef, Prisma.CloudFileUncheckedCreateNestedManyWithoutUserInput>>>;
|
||||
communications: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CommunicationUncheckedCreateNestedManyWithoutUserInput, z.ZodTypeDef, Prisma.CommunicationUncheckedCreateNestedManyWithoutUserInput>>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
username: string;
|
||||
password: string;
|
||||
id?: number | undefined;
|
||||
staff?: Prisma.StaffUncheckedCreateNestedManyWithoutUserInput | undefined;
|
||||
claims?: Prisma.ClaimUncheckedCreateNestedManyWithoutUserInput | undefined;
|
||||
appointments?: Prisma.AppointmentUncheckedCreateNestedManyWithoutUserInput | undefined;
|
||||
communications?: Prisma.CommunicationUncheckedCreateNestedManyWithoutUserInput | undefined;
|
||||
patients?: Prisma.PatientUncheckedCreateNestedManyWithoutUserInput | undefined;
|
||||
npiProviders?: Prisma.NpiProviderUncheckedCreateNestedManyWithoutUserInput | undefined;
|
||||
insuranceCredentials?: Prisma.InsuranceCredentialUncheckedCreateNestedManyWithoutUserInput | undefined;
|
||||
updatedPayments?: Prisma.PaymentUncheckedCreateNestedManyWithoutUpdatedByInput | undefined;
|
||||
backups?: Prisma.DatabaseBackupUncheckedCreateNestedManyWithoutUserInput | undefined;
|
||||
backupDestinations?: Prisma.BackupDestinationUncheckedCreateNestedManyWithoutUserInput | undefined;
|
||||
notifications?: Prisma.NotificationUncheckedCreateNestedManyWithoutUserInput | undefined;
|
||||
cloudFiles?: Prisma.CloudFileUncheckedCreateNestedManyWithoutUserInput | undefined;
|
||||
}, {
|
||||
username: string;
|
||||
password: string;
|
||||
id?: number | undefined;
|
||||
staff?: Prisma.StaffUncheckedCreateNestedManyWithoutUserInput | undefined;
|
||||
claims?: Prisma.ClaimUncheckedCreateNestedManyWithoutUserInput | undefined;
|
||||
appointments?: Prisma.AppointmentUncheckedCreateNestedManyWithoutUserInput | undefined;
|
||||
communications?: Prisma.CommunicationUncheckedCreateNestedManyWithoutUserInput | undefined;
|
||||
patients?: Prisma.PatientUncheckedCreateNestedManyWithoutUserInput | undefined;
|
||||
npiProviders?: Prisma.NpiProviderUncheckedCreateNestedManyWithoutUserInput | undefined;
|
||||
insuranceCredentials?: Prisma.InsuranceCredentialUncheckedCreateNestedManyWithoutUserInput | undefined;
|
||||
updatedPayments?: Prisma.PaymentUncheckedCreateNestedManyWithoutUpdatedByInput | undefined;
|
||||
backups?: Prisma.DatabaseBackupUncheckedCreateNestedManyWithoutUserInput | undefined;
|
||||
backupDestinations?: Prisma.BackupDestinationUncheckedCreateNestedManyWithoutUserInput | undefined;
|
||||
notifications?: Prisma.NotificationUncheckedCreateNestedManyWithoutUserInput | undefined;
|
||||
cloudFiles?: Prisma.CloudFileUncheckedCreateNestedManyWithoutUserInput | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=UserUncheckedCreateWithoutCloudFoldersInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user