@@ -3,25 +3,27 @@ export type InputMaybe<T> = Maybe<T>;
3
3
export type Exact < T extends { [ key : string ] : unknown } > = { [ K in keyof T ] : T [ K ] } ;
4
4
export type MakeOptional < T , K extends keyof T > = Omit < T , K > & { [ SubKey in K ] ?: Maybe < T [ SubKey ] > } ;
5
5
export type MakeMaybe < T , K extends keyof T > = Omit < T , K > & { [ SubKey in K ] : Maybe < T [ SubKey ] > } ;
6
+ export 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 } ;
6
8
/** All built-in and custom scalars, mapped to their actual values */
7
9
export type Scalars = {
8
- ID : string ;
9
- String : string ;
10
- Boolean : boolean ;
11
- Int : number ;
12
- Float : number ;
13
- Date : any ;
14
- URL : any ;
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 ; }
15
+ Date : { input : any ; output : any ; }
16
+ URL : { input : any ; output : any ; }
15
17
} ;
16
18
17
19
export type Admin = {
18
20
__typename ?: 'Admin' ;
19
- lastModifiedAt ?: Maybe < Scalars [ 'Date' ] > ;
21
+ lastModifiedAt ?: Maybe < Scalars [ 'Date' ] [ 'output' ] > ;
20
22
} ;
21
23
22
24
export type AttributeInput = {
23
- key ?: InputMaybe < Scalars [ 'String' ] > ;
24
- val ?: InputMaybe < Scalars [ 'String' ] > ;
25
+ key ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
26
+ val ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
25
27
} ;
26
28
27
29
export enum ButtonComponentType {
@@ -33,7 +35,7 @@ export type ComponentInput = {
33
35
child ?: InputMaybe < ComponentInput > ;
34
36
childrens ?: InputMaybe < Array < InputMaybe < ComponentInput > > > ;
35
37
event ?: InputMaybe < EventInput > ;
36
- name : Scalars [ 'String' ] ;
38
+ name : Scalars [ 'String' ] [ 'input' ] ;
37
39
type : ButtonComponentType ;
38
40
} ;
39
41
@@ -43,8 +45,8 @@ export type DropDownComponentInput = {
43
45
} ;
44
46
45
47
export type EventArgumentInput = {
46
- name : Scalars [ 'String' ] ;
47
- value : Scalars [ 'String' ] ;
48
+ name : Scalars [ 'String' ] [ 'input' ] ;
49
+ value : Scalars [ 'String' ] [ 'input' ] ;
48
50
} ;
49
51
50
52
export type EventInput = {
@@ -59,12 +61,12 @@ export enum EventOptionType {
59
61
60
62
export type Guest = {
61
63
__typename ?: 'Guest' ;
62
- lastLoggedIn ?: Maybe < Scalars [ 'Date' ] > ;
64
+ lastLoggedIn ?: Maybe < Scalars [ 'Date' ] [ 'output' ] > ;
63
65
} ;
64
66
65
67
export type HttpInput = {
66
68
method ?: InputMaybe < HttpMethod > ;
67
- url : Scalars [ 'URL' ] ;
69
+ url : Scalars [ 'URL' ] [ 'input' ] ;
68
70
} ;
69
71
70
72
export enum HttpMethod {
@@ -78,16 +80,16 @@ export type LayoutInput = {
78
80
79
81
export type PageInput = {
80
82
attributes ?: InputMaybe < Array < AttributeInput > > ;
81
- date ?: InputMaybe < Scalars [ 'Date' ] > ;
82
- height : Scalars [ 'Float' ] ;
83
- id : Scalars [ 'ID' ] ;
83
+ date ?: InputMaybe < Scalars [ 'Date' ] [ 'input' ] > ;
84
+ height : Scalars [ 'Float' ] [ 'input' ] ;
85
+ id : Scalars [ 'ID' ] [ 'input' ] ;
84
86
layout : LayoutInput ;
85
87
pageType : PageType ;
86
- postIDs ?: InputMaybe < Array < Scalars [ 'ID' ] > > ;
87
- show : Scalars [ 'Boolean' ] ;
88
- tags ?: InputMaybe < Array < InputMaybe < Scalars [ 'String' ] > > > ;
89
- title : Scalars [ 'String' ] ;
90
- width : Scalars [ 'Int' ] ;
88
+ postIDs ?: InputMaybe < Array < Scalars [ 'ID' ] [ 'input' ] > > ;
89
+ show : Scalars [ 'Boolean' ] [ 'input' ] ;
90
+ tags ?: InputMaybe < Array < InputMaybe < Scalars [ 'String' ] [ 'input' ] > > > ;
91
+ title : Scalars [ 'String' ] [ 'input' ] ;
92
+ width : Scalars [ 'Int' ] [ 'input' ] ;
91
93
} ;
92
94
93
95
export enum PageType {
@@ -99,13 +101,13 @@ export enum PageType {
99
101
100
102
export type User = {
101
103
__typename ?: 'User' ;
102
- createdAt ?: Maybe < Scalars [ 'Date' ] > ;
103
- email ?: Maybe < Scalars [ 'String' ] > ;
104
- id ?: Maybe < Scalars [ 'ID' ] > ;
104
+ createdAt ?: Maybe < Scalars [ 'Date' ] [ 'output' ] > ;
105
+ email ?: Maybe < Scalars [ 'String' ] [ 'output' ] > ;
106
+ id ?: Maybe < Scalars [ 'ID' ] [ 'output' ] > ;
105
107
kind ?: Maybe < UserKind > ;
106
- name ?: Maybe < Scalars [ 'String' ] > ;
107
- password ?: Maybe < Scalars [ 'String' ] > ;
108
- updatedAt ?: Maybe < Scalars [ 'Date' ] > ;
108
+ name ?: Maybe < Scalars [ 'String' ] [ 'output' ] > ;
109
+ password ?: Maybe < Scalars [ 'String' ] [ 'output' ] > ;
110
+ updatedAt ?: Maybe < Scalars [ 'Date' ] [ 'output' ] > ;
109
111
} ;
110
112
111
113
export type UserKind = Admin | Guest ;
0 commit comments