69 lines
8.7 KiB
TypeScript
69 lines
8.7 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const UserSelectObjectSchema: z.ZodType<Prisma.UserSelect>;
|
|
export declare const UserSelectObjectZodSchema: z.ZodObject<{
|
|
id: z.ZodOptional<z.ZodBoolean>;
|
|
username: z.ZodOptional<z.ZodBoolean>;
|
|
password: z.ZodOptional<z.ZodBoolean>;
|
|
patients: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.PatientFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.PatientFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>>>]>>;
|
|
appointments: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.AppointmentFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.AppointmentFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>>>]>>;
|
|
staff: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.StaffFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.StaffFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>>>]>>;
|
|
npiProviders: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.NpiProviderFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.NpiProviderFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>>>]>>;
|
|
claims: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.ClaimFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.ClaimFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>>>]>>;
|
|
insuranceCredentials: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.InsuranceCredentialFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.InsuranceCredentialFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>>>]>>;
|
|
updatedPayments: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.PaymentFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.PaymentFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>>>]>>;
|
|
backups: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.DatabaseBackupFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.DatabaseBackupFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>>>]>>;
|
|
backupDestinations: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.BackupDestinationFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.BackupDestinationFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>>>]>>;
|
|
notifications: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.NotificationFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.NotificationFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>>>]>>;
|
|
cloudFolders: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.CloudFolderFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.CloudFolderFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>>>]>>;
|
|
cloudFiles: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.CloudFileFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.CloudFileFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>>>]>>;
|
|
communications: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.CommunicationFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.CommunicationFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>>>]>>;
|
|
_count: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodObject<{
|
|
select: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.UserCountOutputTypeSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.UserCountOutputTypeSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
select?: Prisma.UserCountOutputTypeSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
}, {
|
|
select?: Prisma.UserCountOutputTypeSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
}>>]>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
id?: boolean | undefined;
|
|
staff?: boolean | Prisma.StaffFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
claims?: boolean | Prisma.ClaimFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
appointments?: boolean | Prisma.AppointmentFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
username?: boolean | undefined;
|
|
password?: boolean | undefined;
|
|
communications?: boolean | Prisma.CommunicationFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
patients?: boolean | Prisma.PatientFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
npiProviders?: boolean | Prisma.NpiProviderFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
insuranceCredentials?: boolean | Prisma.InsuranceCredentialFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
updatedPayments?: boolean | Prisma.PaymentFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
backups?: boolean | Prisma.DatabaseBackupFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
backupDestinations?: boolean | Prisma.BackupDestinationFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
notifications?: boolean | Prisma.NotificationFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
cloudFolders?: boolean | Prisma.CloudFolderFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
cloudFiles?: boolean | Prisma.CloudFileFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
_count?: boolean | {
|
|
select?: Prisma.UserCountOutputTypeSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
} | undefined;
|
|
}, {
|
|
id?: boolean | undefined;
|
|
staff?: boolean | Prisma.StaffFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
claims?: boolean | Prisma.ClaimFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
appointments?: boolean | Prisma.AppointmentFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
username?: boolean | undefined;
|
|
password?: boolean | undefined;
|
|
communications?: boolean | Prisma.CommunicationFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
patients?: boolean | Prisma.PatientFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
npiProviders?: boolean | Prisma.NpiProviderFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
insuranceCredentials?: boolean | Prisma.InsuranceCredentialFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
updatedPayments?: boolean | Prisma.PaymentFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
backups?: boolean | Prisma.DatabaseBackupFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
backupDestinations?: boolean | Prisma.BackupDestinationFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
notifications?: boolean | Prisma.NotificationFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
cloudFolders?: boolean | Prisma.CloudFolderFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
cloudFiles?: boolean | Prisma.CloudFileFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
_count?: boolean | {
|
|
select?: Prisma.UserCountOutputTypeSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
|
} | undefined;
|
|
}>;
|
|
//# sourceMappingURL=UserSelect.schema.d.ts.map
|