53 lines
5.1 KiB
TypeScript
53 lines
5.1 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const UserUncheckedCreateWithoutAppointmentsInputObjectSchema: z.ZodType<Prisma.UserUncheckedCreateWithoutAppointmentsInput>;
|
|
export declare const UserUncheckedCreateWithoutAppointmentsInputObjectZodSchema: 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>>>;
|
|
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>>>;
|
|
cloudFolders: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CloudFolderUncheckedCreateNestedManyWithoutUserInput, z.ZodTypeDef, Prisma.CloudFolderUncheckedCreateNestedManyWithoutUserInput>>>;
|
|
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;
|
|
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;
|
|
cloudFolders?: Prisma.CloudFolderUncheckedCreateNestedManyWithoutUserInput | undefined;
|
|
cloudFiles?: Prisma.CloudFileUncheckedCreateNestedManyWithoutUserInput | undefined;
|
|
}, {
|
|
username: string;
|
|
password: string;
|
|
id?: number | undefined;
|
|
staff?: Prisma.StaffUncheckedCreateNestedManyWithoutUserInput | undefined;
|
|
claims?: Prisma.ClaimUncheckedCreateNestedManyWithoutUserInput | 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;
|
|
cloudFolders?: Prisma.CloudFolderUncheckedCreateNestedManyWithoutUserInput | undefined;
|
|
cloudFiles?: Prisma.CloudFileUncheckedCreateNestedManyWithoutUserInput | undefined;
|
|
}>;
|
|
//# sourceMappingURL=UserUncheckedCreateWithoutAppointmentsInput.schema.d.ts.map
|