initial commit
This commit is contained in:
26
packages/db/shared/schemas/objects/UserScalarWhereWithAggregatesInput.schema.d.ts
vendored
Normal file
26
packages/db/shared/schemas/objects/UserScalarWhereWithAggregatesInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const UserScalarWhereWithAggregatesInputObjectSchema: z.ZodType<Prisma.UserScalarWhereWithAggregatesInput>;
|
||||
export declare const UserScalarWhereWithAggregatesInputObjectZodSchema: z.ZodObject<{
|
||||
AND: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.UserScalarWhereWithAggregatesInput, z.ZodTypeDef, Prisma.UserScalarWhereWithAggregatesInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.UserScalarWhereWithAggregatesInput, z.ZodTypeDef, Prisma.UserScalarWhereWithAggregatesInput>>, "many">]>>;
|
||||
OR: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodType<Prisma.UserScalarWhereWithAggregatesInput, z.ZodTypeDef, Prisma.UserScalarWhereWithAggregatesInput>>, "many">>;
|
||||
NOT: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.UserScalarWhereWithAggregatesInput, z.ZodTypeDef, Prisma.UserScalarWhereWithAggregatesInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.UserScalarWhereWithAggregatesInput, z.ZodTypeDef, Prisma.UserScalarWhereWithAggregatesInput>>, "many">]>>;
|
||||
id: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.IntWithAggregatesFilter<never>>>, z.ZodNumber]>>;
|
||||
username: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.StringWithAggregatesFilter<never>>>, z.ZodString]>>;
|
||||
password: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.StringWithAggregatesFilter<never>>>, z.ZodString]>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
id?: number | Prisma.IntWithAggregatesFilter<never> | undefined;
|
||||
AND?: Prisma.UserScalarWhereWithAggregatesInput | Prisma.UserScalarWhereWithAggregatesInput[] | undefined;
|
||||
OR?: Prisma.UserScalarWhereWithAggregatesInput[] | undefined;
|
||||
NOT?: Prisma.UserScalarWhereWithAggregatesInput | Prisma.UserScalarWhereWithAggregatesInput[] | undefined;
|
||||
username?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
|
||||
password?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
|
||||
}, {
|
||||
id?: number | Prisma.IntWithAggregatesFilter<never> | undefined;
|
||||
AND?: Prisma.UserScalarWhereWithAggregatesInput | Prisma.UserScalarWhereWithAggregatesInput[] | undefined;
|
||||
OR?: Prisma.UserScalarWhereWithAggregatesInput[] | undefined;
|
||||
NOT?: Prisma.UserScalarWhereWithAggregatesInput | Prisma.UserScalarWhereWithAggregatesInput[] | undefined;
|
||||
username?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
|
||||
password?: string | Prisma.StringWithAggregatesFilter<never> | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=UserScalarWhereWithAggregatesInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user