initial commit
This commit is contained in:
88
packages/db/shared/schemas/findFirstUser.schema.d.ts
vendored
Normal file
88
packages/db/shared/schemas/findFirstUser.schema.d.ts
vendored
Normal file
@@ -0,0 +1,88 @@
|
||||
import type { Prisma } from '../../generated/prisma';
|
||||
import * as z from 'zod';
|
||||
export declare const UserFindFirstSelectSchema: z.ZodType<Prisma.UserSelect>;
|
||||
export declare const UserFindFirstSelectZodSchema: z.ZodObject<{
|
||||
id: z.ZodOptional<z.ZodBoolean>;
|
||||
username: z.ZodOptional<z.ZodBoolean>;
|
||||
password: z.ZodOptional<z.ZodBoolean>;
|
||||
patients: z.ZodOptional<z.ZodBoolean>;
|
||||
appointments: z.ZodOptional<z.ZodBoolean>;
|
||||
staff: z.ZodOptional<z.ZodBoolean>;
|
||||
npiProviders: z.ZodOptional<z.ZodBoolean>;
|
||||
claims: z.ZodOptional<z.ZodBoolean>;
|
||||
insuranceCredentials: z.ZodOptional<z.ZodBoolean>;
|
||||
updatedPayments: z.ZodOptional<z.ZodBoolean>;
|
||||
backups: z.ZodOptional<z.ZodBoolean>;
|
||||
backupDestinations: z.ZodOptional<z.ZodBoolean>;
|
||||
notifications: z.ZodOptional<z.ZodBoolean>;
|
||||
cloudFolders: z.ZodOptional<z.ZodBoolean>;
|
||||
cloudFiles: z.ZodOptional<z.ZodBoolean>;
|
||||
communications: z.ZodOptional<z.ZodBoolean>;
|
||||
_count: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
id?: boolean | undefined;
|
||||
staff?: boolean | undefined;
|
||||
claims?: boolean | undefined;
|
||||
appointments?: boolean | undefined;
|
||||
username?: boolean | undefined;
|
||||
password?: boolean | undefined;
|
||||
communications?: boolean | undefined;
|
||||
patients?: boolean | undefined;
|
||||
npiProviders?: boolean | undefined;
|
||||
insuranceCredentials?: boolean | undefined;
|
||||
updatedPayments?: boolean | undefined;
|
||||
backups?: boolean | undefined;
|
||||
backupDestinations?: boolean | undefined;
|
||||
notifications?: boolean | undefined;
|
||||
cloudFolders?: boolean | undefined;
|
||||
cloudFiles?: 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;
|
||||
patients?: boolean | undefined;
|
||||
npiProviders?: boolean | undefined;
|
||||
insuranceCredentials?: boolean | undefined;
|
||||
updatedPayments?: boolean | undefined;
|
||||
backups?: boolean | undefined;
|
||||
backupDestinations?: boolean | undefined;
|
||||
notifications?: boolean | undefined;
|
||||
cloudFolders?: boolean | undefined;
|
||||
cloudFiles?: boolean | undefined;
|
||||
_count?: boolean | undefined;
|
||||
}>;
|
||||
export declare const UserFindFirstSchema: z.ZodType<Prisma.UserFindFirstArgs>;
|
||||
export declare const UserFindFirstZodSchema: z.ZodObject<{
|
||||
select: z.ZodOptional<z.ZodType<Prisma.UserSelect<import("../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.UserSelect<import("../../generated/prisma/runtime/client").DefaultArgs>>>;
|
||||
include: z.ZodLazy<z.ZodOptional<z.ZodType<Prisma.UserInclude<import("../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.UserInclude<import("../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
||||
orderBy: z.ZodOptional<z.ZodUnion<[z.ZodType<Prisma.UserOrderByWithRelationInput, z.ZodTypeDef, Prisma.UserOrderByWithRelationInput>, z.ZodArray<z.ZodType<Prisma.UserOrderByWithRelationInput, z.ZodTypeDef, Prisma.UserOrderByWithRelationInput>, "many">]>>;
|
||||
where: z.ZodOptional<z.ZodType<Prisma.UserWhereInput, z.ZodTypeDef, Prisma.UserWhereInput>>;
|
||||
cursor: z.ZodOptional<z.ZodType<Prisma.UserWhereUniqueInput, z.ZodTypeDef, Prisma.UserWhereUniqueInput>>;
|
||||
take: z.ZodOptional<z.ZodNumber>;
|
||||
skip: z.ZodOptional<z.ZodNumber>;
|
||||
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "username", "password"]>, z.ZodArray<z.ZodEnum<["id", "username", "password"]>, "many">]>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
where?: Prisma.UserWhereInput | undefined;
|
||||
include?: Prisma.UserInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.UserSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
orderBy?: Prisma.UserOrderByWithRelationInput | Prisma.UserOrderByWithRelationInput[] | undefined;
|
||||
cursor?: Prisma.UserWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "id" | "username" | "password" | ("id" | "username" | "password")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.UserWhereInput | undefined;
|
||||
include?: Prisma.UserInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.UserSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
orderBy?: Prisma.UserOrderByWithRelationInput | Prisma.UserOrderByWithRelationInput[] | undefined;
|
||||
cursor?: Prisma.UserWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "id" | "username" | "password" | ("id" | "username" | "password")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstUser.schema.d.ts.map
|
||||
Reference in New Issue
Block a user