@@ -4,22 +4,22 @@ export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K]
44export type MakeOptional < T , K extends keyof T > = Omit < T , K > & { [ SubKey in K ] ?: Maybe < T [ SubKey ] > } ;
55export type MakeMaybe < T , K extends keyof T > = Omit < T , K > & { [ SubKey in K ] : Maybe < T [ SubKey ] > } ;
66export type MakeEmpty < T extends { [ key : string ] : unknown } , K extends keyof T > = { [ _ in K ] ?: never } ;
7- export type Incremental < T > = T | { [ P in keyof T ] ?: P extends ' $fragmentName' | '__typename' ? T [ P ] : never } ;
7+ export type Incremental < T > = { [ P in keyof T ] ?: P extends ' $fragmentName' | '__typename' ? T [ P ] : never } | T ;
88/** All built-in and custom scalars, mapped to their actual values */
99export interface Scalars {
10- ID : { input : string ; output : string ; }
11- String : { input : string ; output : string ; }
12- Boolean : { input : boolean ; output : boolean ; }
13- Int : { input : number ; output : number ; }
14- Float : { input : number ; output : number ; }
1510 /** Any scalar type */
16- Any : { input : any ; output : any ; }
11+ Any : { input : any ; output : any } ;
12+ Boolean : { input : boolean ; output : boolean } ;
1713 /** Date custom scalar type */
18- Date : { input : any ; output : any ; }
14+ Date : { input : any ; output : any } ;
15+ Float : { input : number ; output : number } ;
16+ ID : { input : string ; output : string } ;
17+ Int : { input : number ; output : number } ;
1918 /** JSON scalar type. Information on the exact schema of the JSON object is contained in the description of the field. */
20- JSON : { input : any ; output : any ; }
19+ JSON : { input : any ; output : any } ;
20+ String : { input : string ; output : string } ;
2121 /** The `Upload` scalar type represents a file upload. */
22- Upload : { input : any ; output : any ; }
22+ Upload : { input : any ; output : any } ;
2323}
2424
2525/** Authentication data */
@@ -78,7 +78,7 @@ export enum ComparisonOperatorEnum {
7878 LTE = 'LTE' ,
7979 NE = 'NE' ,
8080 NIN = 'NIN' ,
81- REGEX = 'REGEX'
81+ REGEX = 'REGEX' ,
8282}
8383
8484/** CoreAuth */
@@ -175,7 +175,7 @@ export interface FindAndCountUsersResult {
175175export enum LogicalOperatorEnum {
176176 AND = 'AND' ,
177177 NOR = 'NOR' ,
178- OR = 'OR'
178+ OR = 'OR' ,
179179}
180180
181181/** Metadata of API */
@@ -222,80 +222,65 @@ export interface Mutation {
222222 verifyUser : Scalars [ 'Boolean' ] [ 'output' ] ;
223223}
224224
225-
226225export interface MutationCreateTodoArgs {
227226 input : TodoCreateInput ;
228227}
229228
230-
231229export interface MutationCreateUserArgs {
232230 input : UserCreateInput ;
233231}
234232
235-
236233export interface MutationDeleteFileArgs {
237234 filename : Scalars [ 'String' ] [ 'input' ] ;
238235}
239236
240-
241237export interface MutationDeleteTodoArgs {
242238 id : Scalars [ 'String' ] [ 'input' ] ;
243239}
244240
245-
246241export interface MutationDeleteUserArgs {
247242 id : Scalars [ 'String' ] [ 'input' ] ;
248243}
249244
250-
251245export interface MutationErrorTodoArgs {
252246 id : Scalars [ 'String' ] [ 'input' ] ;
253247}
254248
255-
256249export interface MutationLogoutArgs {
257250 allDevices ?: InputMaybe < Scalars [ 'Boolean' ] [ 'input' ] > ;
258251}
259252
260-
261253export interface MutationResetPasswordArgs {
262254 password : Scalars [ 'String' ] [ 'input' ] ;
263255 token : Scalars [ 'String' ] [ 'input' ] ;
264256}
265257
266-
267258export interface MutationSignInArgs {
268259 input : AuthSignInInput ;
269260}
270261
271-
272262export interface MutationSignUpArgs {
273263 input : AuthSignUpInput ;
274264}
275265
276-
277266export interface MutationUpdateTodoArgs {
278267 id : Scalars [ 'String' ] [ 'input' ] ;
279268 input : TodoInput ;
280269}
281270
282-
283271export interface MutationUpdateUserArgs {
284272 id : Scalars [ 'String' ] [ 'input' ] ;
285273 input : UserInput ;
286274}
287275
288-
289276export interface MutationUploadFileArgs {
290277 file : Scalars [ 'Upload' ] [ 'input' ] ;
291278}
292279
293-
294280export interface MutationUploadFilesArgs {
295281 files : Array < Scalars [ 'Upload' ] [ 'input' ] > ;
296282}
297283
298-
299284export interface MutationVerifyUserArgs {
300285 token : Scalars [ 'String' ] [ 'input' ] ;
301286}
@@ -324,7 +309,6 @@ export interface Query {
324309 requestPasswordResetMail : Scalars [ 'Boolean' ] [ 'output' ] ;
325310}
326311
327-
328312export interface QueryFindAndCountTodosArgs {
329313 filter ?: InputMaybe < FilterInput > ;
330314 limit ?: InputMaybe < Scalars [ 'Int' ] [ 'input' ] > ;
@@ -335,7 +319,6 @@ export interface QueryFindAndCountTodosArgs {
335319 take ?: InputMaybe < Scalars [ 'Int' ] [ 'input' ] > ;
336320}
337321
338-
339322export interface QueryFindAndCountUsersArgs {
340323 filter ?: InputMaybe < FilterInput > ;
341324 limit ?: InputMaybe < Scalars [ 'Int' ] [ 'input' ] > ;
@@ -346,7 +329,6 @@ export interface QueryFindAndCountUsersArgs {
346329 take ?: InputMaybe < Scalars [ 'Int' ] [ 'input' ] > ;
347330}
348331
349-
350332export interface QueryFindTodosArgs {
351333 filter ?: InputMaybe < FilterInput > ;
352334 limit ?: InputMaybe < Scalars [ 'Int' ] [ 'input' ] > ;
@@ -357,7 +339,6 @@ export interface QueryFindTodosArgs {
357339 take ?: InputMaybe < Scalars [ 'Int' ] [ 'input' ] > ;
358340}
359341
360-
361342export interface QueryFindUsersArgs {
362343 filter ?: InputMaybe < FilterInput > ;
363344 limit ?: InputMaybe < Scalars [ 'Int' ] [ 'input' ] > ;
@@ -368,27 +349,22 @@ export interface QueryFindUsersArgs {
368349 take ?: InputMaybe < Scalars [ 'Int' ] [ 'input' ] > ;
369350}
370351
371-
372352export interface QueryGetFileInfoArgs {
373353 filename : Scalars [ 'String' ] [ 'input' ] ;
374354}
375355
376-
377356export interface QueryGetTodoArgs {
378357 id : Scalars [ 'String' ] [ 'input' ] ;
379358}
380359
381-
382360export interface QueryGetUserArgs {
383361 id : Scalars [ 'String' ] [ 'input' ] ;
384362}
385363
386-
387364export interface QueryGetVerifiedStateArgs {
388365 token : Scalars [ 'String' ] [ 'input' ] ;
389366}
390367
391-
392368export interface QueryRequestPasswordResetMailArgs {
393369 email : Scalars [ 'String' ] [ 'input' ] ;
394370}
@@ -422,7 +398,7 @@ export interface SortInput {
422398/** SortInput order of items */
423399export enum SortOrderEnum {
424400 ASC = 'ASC' ,
425- DESC = 'DESC'
401+ DESC = 'DESC' ,
426402}
427403
428404export interface Subscription {
0 commit comments