initial commit
This commit is contained in:
41
packages/db/shared/schemas/groupByUser.schema.d.ts
vendored
Normal file
41
packages/db/shared/schemas/groupByUser.schema.d.ts
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
import type { Prisma } from '../../generated/prisma';
|
||||
import * as z from 'zod';
|
||||
export declare const UserGroupBySchema: z.ZodType<Prisma.UserGroupByArgs>;
|
||||
export declare const UserGroupByZodSchema: z.ZodObject<{
|
||||
where: z.ZodOptional<z.ZodType<Prisma.UserWhereInput, z.ZodTypeDef, Prisma.UserWhereInput>>;
|
||||
orderBy: z.ZodOptional<z.ZodUnion<[z.ZodType<Prisma.UserOrderByWithAggregationInput, z.ZodTypeDef, Prisma.UserOrderByWithAggregationInput>, z.ZodArray<z.ZodType<Prisma.UserOrderByWithAggregationInput, z.ZodTypeDef, Prisma.UserOrderByWithAggregationInput>, "many">]>>;
|
||||
having: z.ZodOptional<z.ZodType<Prisma.UserScalarWhereWithAggregatesInput, z.ZodTypeDef, Prisma.UserScalarWhereWithAggregatesInput>>;
|
||||
take: z.ZodOptional<z.ZodNumber>;
|
||||
skip: z.ZodOptional<z.ZodNumber>;
|
||||
by: z.ZodArray<z.ZodEnum<["id", "username", "password"]>, "many">;
|
||||
_count: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<true>, z.ZodType<Prisma.UserCountAggregateInputType, z.ZodTypeDef, Prisma.UserCountAggregateInputType>]>>;
|
||||
_min: z.ZodOptional<z.ZodType<Prisma.UserMinAggregateInputType, z.ZodTypeDef, Prisma.UserMinAggregateInputType>>;
|
||||
_max: z.ZodOptional<z.ZodType<Prisma.UserMaxAggregateInputType, z.ZodTypeDef, Prisma.UserMaxAggregateInputType>>;
|
||||
_avg: z.ZodOptional<z.ZodType<Prisma.UserAvgAggregateInputType, z.ZodTypeDef, Prisma.UserAvgAggregateInputType>>;
|
||||
_sum: z.ZodOptional<z.ZodType<Prisma.UserSumAggregateInputType, z.ZodTypeDef, Prisma.UserSumAggregateInputType>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
by: ("id" | "username" | "password")[];
|
||||
where?: Prisma.UserWhereInput | undefined;
|
||||
_count?: true | Prisma.UserCountAggregateInputType | undefined;
|
||||
orderBy?: Prisma.UserOrderByWithAggregationInput | Prisma.UserOrderByWithAggregationInput[] | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
_min?: Prisma.UserMinAggregateInputType | undefined;
|
||||
_max?: Prisma.UserMaxAggregateInputType | undefined;
|
||||
_avg?: Prisma.UserAvgAggregateInputType | undefined;
|
||||
_sum?: Prisma.UserSumAggregateInputType | undefined;
|
||||
having?: Prisma.UserScalarWhereWithAggregatesInput | undefined;
|
||||
}, {
|
||||
by: ("id" | "username" | "password")[];
|
||||
where?: Prisma.UserWhereInput | undefined;
|
||||
_count?: true | Prisma.UserCountAggregateInputType | undefined;
|
||||
orderBy?: Prisma.UserOrderByWithAggregationInput | Prisma.UserOrderByWithAggregationInput[] | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
_min?: Prisma.UserMinAggregateInputType | undefined;
|
||||
_max?: Prisma.UserMaxAggregateInputType | undefined;
|
||||
_avg?: Prisma.UserAvgAggregateInputType | undefined;
|
||||
_sum?: Prisma.UserSumAggregateInputType | undefined;
|
||||
having?: Prisma.UserScalarWhereWithAggregatesInput | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=groupByUser.schema.d.ts.map
|
||||
Reference in New Issue
Block a user