66/* eslint-disable */
77
88import { type SchemaType as $Schema } from "./schema-lite" ;
9- import type {
10- FindManyArgs as $FindManyArgs ,
11- FindUniqueArgs as $FindUniqueArgs ,
12- FindFirstArgs as $FindFirstArgs ,
13- ExistsArgs as $ExistsArgs ,
14- CreateArgs as $CreateArgs ,
15- CreateManyArgs as $CreateManyArgs ,
16- CreateManyAndReturnArgs as $CreateManyAndReturnArgs ,
17- UpdateArgs as $UpdateArgs ,
18- UpdateManyArgs as $UpdateManyArgs ,
19- UpdateManyAndReturnArgs as $UpdateManyAndReturnArgs ,
20- UpsertArgs as $UpsertArgs ,
21- DeleteArgs as $DeleteArgs ,
22- DeleteManyArgs as $DeleteManyArgs ,
23- CountArgs as $CountArgs ,
24- AggregateArgs as $AggregateArgs ,
25- GroupByArgs as $GroupByArgs ,
26- WhereInput as $WhereInput ,
27- SelectInput as $SelectInput ,
28- IncludeInput as $IncludeInput ,
29- OmitInput as $OmitInput ,
30- QueryOptions as $QueryOptions ,
31- } from "@zenstackhq/orm" ;
32- import type {
33- SimplifiedPlainResult as $Result ,
34- SelectIncludeOmit as $SelectIncludeOmit ,
35- } from "@zenstackhq/orm" ;
9+ import type { FindManyArgs as $FindManyArgs , FindUniqueArgs as $FindUniqueArgs , FindFirstArgs as $FindFirstArgs , ExistsArgs as $ExistsArgs , CreateArgs as $CreateArgs , CreateManyArgs as $CreateManyArgs , CreateManyAndReturnArgs as $CreateManyAndReturnArgs , UpdateArgs as $UpdateArgs , UpdateManyArgs as $UpdateManyArgs , UpdateManyAndReturnArgs as $UpdateManyAndReturnArgs , UpsertArgs as $UpsertArgs , DeleteArgs as $DeleteArgs , DeleteManyArgs as $DeleteManyArgs , CountArgs as $CountArgs , AggregateArgs as $AggregateArgs , GroupByArgs as $GroupByArgs , WhereInput as $WhereInput , SelectInput as $SelectInput , IncludeInput as $IncludeInput , OmitInput as $OmitInput , QueryOptions as $QueryOptions } from "@zenstackhq/orm" ;
10+ import type { SimplifiedPlainResult as $Result , SelectIncludeOmit as $SelectIncludeOmit } from "@zenstackhq/orm" ;
3611export type UserFindManyArgs = $FindManyArgs < $Schema , "User" > ;
3712export type UserFindUniqueArgs = $FindUniqueArgs < $Schema , "User" > ;
3813export type UserFindFirstArgs = $FindFirstArgs < $Schema , "User" > ;
3914export type UserExistsArgs = $ExistsArgs < $Schema , "User" > ;
4015export type UserCreateArgs = $CreateArgs < $Schema , "User" > ;
4116export type UserCreateManyArgs = $CreateManyArgs < $Schema , "User" > ;
42- export type UserCreateManyAndReturnArgs = $CreateManyAndReturnArgs <
43- $Schema ,
44- "User"
45- > ;
17+ export type UserCreateManyAndReturnArgs = $CreateManyAndReturnArgs < $Schema , "User" > ;
4618export type UserUpdateArgs = $UpdateArgs < $Schema , "User" > ;
4719export type UserUpdateManyArgs = $UpdateManyArgs < $Schema , "User" > ;
48- export type UserUpdateManyAndReturnArgs = $UpdateManyAndReturnArgs <
49- $Schema ,
50- "User"
51- > ;
20+ export type UserUpdateManyAndReturnArgs = $UpdateManyAndReturnArgs < $Schema , "User" > ;
5221export type UserUpsertArgs = $UpsertArgs < $Schema , "User" > ;
5322export type UserDeleteArgs = $DeleteArgs < $Schema , "User" > ;
5423export type UserDeleteManyArgs = $DeleteManyArgs < $Schema , "User" > ;
@@ -59,26 +28,17 @@ export type UserWhereInput = $WhereInput<$Schema, "User">;
5928export type UserSelect = $SelectInput < $Schema , "User" > ;
6029export type UserInclude = $IncludeInput < $Schema , "User" > ;
6130export type UserOmit = $OmitInput < $Schema , "User" > ;
62- export type UserGetPayload <
63- Args extends $SelectIncludeOmit < $Schema , "User" , true > ,
64- Options extends $QueryOptions < $Schema > = $QueryOptions < $Schema > ,
65- > = $Result < $Schema , "User" , Args , Options > ;
31+ export type UserGetPayload < Args extends $SelectIncludeOmit < $Schema , "User" , true > , Options extends $QueryOptions < $Schema > = $QueryOptions < $Schema > > = $Result < $Schema , "User" , Args , Options > ;
6632export type PostFindManyArgs = $FindManyArgs < $Schema , "Post" > ;
6733export type PostFindUniqueArgs = $FindUniqueArgs < $Schema , "Post" > ;
6834export type PostFindFirstArgs = $FindFirstArgs < $Schema , "Post" > ;
6935export type PostExistsArgs = $ExistsArgs < $Schema , "Post" > ;
7036export type PostCreateArgs = $CreateArgs < $Schema , "Post" > ;
7137export type PostCreateManyArgs = $CreateManyArgs < $Schema , "Post" > ;
72- export type PostCreateManyAndReturnArgs = $CreateManyAndReturnArgs <
73- $Schema ,
74- "Post"
75- > ;
38+ export type PostCreateManyAndReturnArgs = $CreateManyAndReturnArgs < $Schema , "Post" > ;
7639export type PostUpdateArgs = $UpdateArgs < $Schema , "Post" > ;
7740export type PostUpdateManyArgs = $UpdateManyArgs < $Schema , "Post" > ;
78- export type PostUpdateManyAndReturnArgs = $UpdateManyAndReturnArgs <
79- $Schema ,
80- "Post"
81- > ;
41+ export type PostUpdateManyAndReturnArgs = $UpdateManyAndReturnArgs < $Schema , "Post" > ;
8242export type PostUpsertArgs = $UpsertArgs < $Schema , "Post" > ;
8343export type PostDeleteArgs = $DeleteArgs < $Schema , "Post" > ;
8444export type PostDeleteManyArgs = $DeleteManyArgs < $Schema , "Post" > ;
@@ -89,7 +49,4 @@ export type PostWhereInput = $WhereInput<$Schema, "Post">;
8949export type PostSelect = $SelectInput < $Schema , "Post" > ;
9050export type PostInclude = $IncludeInput < $Schema , "Post" > ;
9151export type PostOmit = $OmitInput < $Schema , "Post" > ;
92- export type PostGetPayload <
93- Args extends $SelectIncludeOmit < $Schema , "Post" , true > ,
94- Options extends $QueryOptions < $Schema > = $QueryOptions < $Schema > ,
95- > = $Result < $Schema , "Post" , Args , Options > ;
52+ export type PostGetPayload < Args extends $SelectIncludeOmit < $Schema , "Post" , true > , Options extends $QueryOptions < $Schema > = $QueryOptions < $Schema > > = $Result < $Schema , "Post" , Args , Options > ;
0 commit comments