wabe 0.5.5 → 0.5.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/dist/index.d.ts +446 -311
  2. package/dist/index.js +17030 -33823
  3. package/generated/wabe.ts +1012 -1198
  4. package/package.json +5 -9
package/generated/wabe.ts CHANGED
@@ -1,169 +1,142 @@
1
- import { GraphQLClient, RequestOptions } from 'graphql-request';
2
- import gql from 'graphql-tag';
3
- export type Maybe<T> = T | null;
4
- export type InputMaybe<T> = Maybe<T>;
5
- export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
6
- export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
7
- export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
8
- export type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never };
9
- export type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };
10
- type GraphQLClientRequestHeaders = RequestOptions['requestHeaders'];
11
- /** All built-in and custom scalars, mapped to their actual values */
12
1
  export type Scalars = {
13
- ID: { input: string; output: string; }
14
- String: { input: string; output: string; }
15
- Boolean: { input: boolean; output: boolean; }
16
- Int: { input: number; output: number; }
17
- Float: { input: number; output: number; }
18
- /** Phone custom scalar type */
19
- Phone: { input: any; output: any; }
20
- /** Date scalar type */
21
- Date: { input: any; output: any; }
22
- /** Email scalar type */
23
- Email: { input: any; output: any; }
24
- /** File scalar type */
25
- File: { input: any; output: any; }
26
- /** Search scalar to tokenize and search for all searchable fields */
27
- Search: { input: any; output: any; }
28
- /** The Any scalar type is used in operations and types that involve any type of value. */
29
- Any: { input: any; output: any; }
2
+ ID: { input: string; output: string; };
3
+ String: { input: string; output: string; };
4
+ Boolean: { input: boolean; output: boolean; };
5
+ Int: { input: number; output: number; };
6
+ Float: { input: number; output: number; };
7
+ Email: { input: string; output: string; };
8
+ Phone: { input: string; output: string; };
9
+ Date: { input: Date; output: string; };
10
+ Search: { input: any; output: any; };
11
+ Any: { input: any; output: any; };
12
+ File: { input: any; output: any; };
30
13
  };
31
14
 
15
+
32
16
  export enum RoleEnum {
33
- Admin = 'Admin',
34
- Client = 'Client'
17
+ Admin = "Admin",
18
+ Client = "Client",
35
19
  }
36
20
 
37
21
  export enum AuthenticationProvider {
38
- Google = 'google',
39
- EmailPassword = 'emailPassword'
22
+ google = "google",
23
+ emailPassword = "emailPassword",
40
24
  }
41
25
 
42
26
  export enum SecondaryFactor {
43
- EmailOtp = 'EmailOTP'
27
+ EmailOTP = "EmailOTP",
44
28
  }
45
29
 
46
30
  export enum PaymentMode {
47
- Payment = 'payment',
48
- Subscription = 'subscription'
31
+ payment = "payment",
32
+ subscription = "subscription",
49
33
  }
50
34
 
51
35
  export enum PaymentReccuringInterval {
52
- Month = 'month',
53
- Year = 'year'
36
+ month = "month",
37
+ year = "year",
54
38
  }
55
39
 
56
40
  export enum Currency {
57
- Eur = 'eur',
58
- Usd = 'usd'
41
+ eur = "eur",
42
+ usd = "usd",
59
43
  }
60
44
 
61
- /** User class */
62
45
  export type User = {
63
- __typename?: 'User';
64
46
  id: Scalars['ID']['output'];
65
- name?: Maybe<Scalars['String']['output']>;
66
- age?: Maybe<Scalars['Int']['output']>;
67
- acl?: Maybe<UserAclObject>;
68
- createdAt?: Maybe<Scalars['Date']['output']>;
69
- updatedAt?: Maybe<Scalars['Date']['output']>;
70
- search?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
71
- authentication?: Maybe<UserAuthentication>;
72
- provider?: Maybe<AuthenticationProvider>;
73
- isOauth?: Maybe<Scalars['Boolean']['output']>;
74
- email?: Maybe<Scalars['Email']['output']>;
75
- verifiedEmail?: Maybe<Scalars['Boolean']['output']>;
76
- role?: Maybe<Role>;
77
- sessions?: Maybe<_SessionConnection>;
78
- };
79
-
80
- export type UserAclObject = {
81
- __typename?: 'UserACLObject';
82
- users?: Maybe<Array<Maybe<UserAclObjectUsersAcl>>>;
83
- roles?: Maybe<Array<Maybe<UserAclObjectRolesAcl>>>;
84
- };
85
-
86
- export type UserAclObjectUsersAcl = {
87
- __typename?: 'UserACLObjectUsersACL';
47
+ name?: Scalars['String']['output'];
48
+ age?: Scalars['Int']['output'];
49
+ acl?: UserACLObject;
50
+ createdAt?: Scalars['Date']['output'];
51
+ updatedAt?: Scalars['Date']['output'];
52
+ search?: Scalars['String']['output'][];
53
+ authentication?: UserAuthentication;
54
+ provider?: AuthenticationProvider;
55
+ isOauth?: Scalars['Boolean']['output'];
56
+ email?: Scalars['Email']['output'];
57
+ verifiedEmail?: Scalars['Boolean']['output'];
58
+ role?: Role;
59
+ sessions?: _SessionConnection;
60
+ };
61
+
62
+ export type UserACLObject = {
63
+ users?: UserACLObjectUsersACL[];
64
+ roles?: UserACLObjectRolesACL[];
65
+ };
66
+
67
+ export type UserACLObjectUsersACL = {
88
68
  userId: Scalars['String']['output'];
89
69
  read: Scalars['Boolean']['output'];
90
70
  write: Scalars['Boolean']['output'];
91
71
  };
92
72
 
93
- export type UserAclObjectRolesAcl = {
94
- __typename?: 'UserACLObjectRolesACL';
73
+ export type UserACLObjectRolesACL = {
95
74
  roleId: Scalars['String']['output'];
96
75
  read: Scalars['Boolean']['output'];
97
76
  write: Scalars['Boolean']['output'];
98
77
  };
99
78
 
100
79
  export type UserAuthentication = {
101
- __typename?: 'UserAuthentication';
102
- emailPassword?: Maybe<UserAuthenticationEmailPassword>;
103
- google?: Maybe<UserAuthenticationGoogle>;
80
+ emailPassword?: UserAuthenticationEmailPassword;
81
+ google?: UserAuthenticationGoogle;
104
82
  };
105
83
 
106
84
  export type UserAuthenticationEmailPassword = {
107
- __typename?: 'UserAuthenticationEmailPassword';
108
85
  email: Scalars['Email']['output'];
109
86
  password: Scalars['String']['output'];
110
87
  };
111
88
 
112
89
  export type UserAuthenticationGoogle = {
113
- __typename?: 'UserAuthenticationGoogle';
114
90
  email: Scalars['Email']['output'];
115
91
  verifiedEmail: Scalars['Boolean']['output'];
116
92
  idToken: Scalars['String']['output'];
117
93
  };
118
94
 
119
95
  export type _SessionConnection = {
120
- __typename?: '_SessionConnection';
121
- totalCount?: Maybe<Scalars['Int']['output']>;
122
- edges?: Maybe<Array<Maybe<_SessionEdge>>>;
96
+ totalCount?: Scalars['Int']['output'];
97
+ edges?: _SessionEdge[];
123
98
  };
124
99
 
125
100
  export type _SessionEdge = {
126
- __typename?: '_SessionEdge';
127
101
  node: _Session;
128
102
  };
129
103
 
130
- /** User class */
131
104
  export type UserInput = {
132
- name?: InputMaybe<Scalars['String']['input']>;
133
- age?: InputMaybe<Scalars['Int']['input']>;
134
- acl?: InputMaybe<UserAclObjectInput>;
135
- createdAt?: InputMaybe<Scalars['Date']['input']>;
136
- updatedAt?: InputMaybe<Scalars['Date']['input']>;
137
- search?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
138
- authentication?: InputMaybe<UserAuthenticationInput>;
139
- provider?: InputMaybe<AuthenticationProvider>;
140
- isOauth?: InputMaybe<Scalars['Boolean']['input']>;
141
- email?: InputMaybe<Scalars['Email']['input']>;
142
- verifiedEmail?: InputMaybe<Scalars['Boolean']['input']>;
143
- role?: InputMaybe<RolePointerInput>;
144
- sessions?: InputMaybe<_SessionRelationInput>;
145
- };
146
-
147
- export type UserAclObjectInput = {
148
- users?: InputMaybe<Array<InputMaybe<UserAclObjectUsersAclInput>>>;
149
- roles?: InputMaybe<Array<InputMaybe<UserAclObjectRolesAclInput>>>;
150
- };
151
-
152
- export type UserAclObjectUsersAclInput = {
105
+ name?: Scalars['String']['input'];
106
+ age?: Scalars['Int']['input'];
107
+ acl?: UserACLObjectInput;
108
+ createdAt?: Scalars['Date']['input'];
109
+ updatedAt?: Scalars['Date']['input'];
110
+ search?: Scalars['String']['input'][];
111
+ authentication?: UserAuthenticationInput;
112
+ provider?: AuthenticationProvider;
113
+ isOauth?: Scalars['Boolean']['input'];
114
+ email?: Scalars['Email']['input'];
115
+ verifiedEmail?: Scalars['Boolean']['input'];
116
+ role?: RolePointerInput;
117
+ sessions?: _SessionRelationInput;
118
+ };
119
+
120
+ export type UserACLObjectInput = {
121
+ users?: UserACLObjectUsersACLInput[];
122
+ roles?: UserACLObjectRolesACLInput[];
123
+ };
124
+
125
+ export type UserACLObjectUsersACLInput = {
153
126
  userId: Scalars['String']['input'];
154
127
  read: Scalars['Boolean']['input'];
155
128
  write: Scalars['Boolean']['input'];
156
129
  };
157
130
 
158
- export type UserAclObjectRolesAclInput = {
131
+ export type UserACLObjectRolesACLInput = {
159
132
  roleId: Scalars['String']['input'];
160
133
  read: Scalars['Boolean']['input'];
161
134
  write: Scalars['Boolean']['input'];
162
135
  };
163
136
 
164
137
  export type UserAuthenticationInput = {
165
- emailPassword?: InputMaybe<UserAuthenticationEmailPasswordInput>;
166
- google?: InputMaybe<UserAuthenticationGoogleInput>;
138
+ emailPassword?: UserAuthenticationEmailPasswordInput;
139
+ google?: UserAuthenticationGoogleInput;
167
140
  };
168
141
 
169
142
  export type UserAuthenticationEmailPasswordInput = {
@@ -177,96 +150,89 @@ export type UserAuthenticationGoogleInput = {
177
150
  idToken: Scalars['String']['input'];
178
151
  };
179
152
 
180
- /** Input to link an object to a pointer User */
181
153
  export type UserPointerInput = {
182
- unlink?: InputMaybe<Scalars['Boolean']['input']>;
183
- link?: InputMaybe<Scalars['ID']['input']>;
184
- createAndLink?: InputMaybe<UserCreateFieldsInput>;
154
+ unlink?: Scalars['Boolean']['input'];
155
+ link?: Scalars['ID']['input'];
156
+ createAndLink?: UserCreateFieldsInput;
185
157
  };
186
158
 
187
- /** User class */
188
159
  export type UserCreateFieldsInput = {
189
- name?: InputMaybe<Scalars['String']['input']>;
190
- age?: InputMaybe<Scalars['Int']['input']>;
191
- acl?: InputMaybe<UserAclObjectCreateFieldsInput>;
192
- createdAt?: InputMaybe<Scalars['Date']['input']>;
193
- updatedAt?: InputMaybe<Scalars['Date']['input']>;
194
- search?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
195
- authentication?: InputMaybe<UserAuthenticationCreateFieldsInput>;
196
- provider?: InputMaybe<AuthenticationProvider>;
197
- isOauth?: InputMaybe<Scalars['Boolean']['input']>;
198
- email?: InputMaybe<Scalars['Email']['input']>;
199
- verifiedEmail?: InputMaybe<Scalars['Boolean']['input']>;
200
- role?: InputMaybe<RolePointerInput>;
201
- sessions?: InputMaybe<_SessionRelationInput>;
160
+ name?: Scalars['String']['input'];
161
+ age?: Scalars['Int']['input'];
162
+ acl?: UserACLObjectCreateFieldsInput;
163
+ createdAt?: Scalars['Date']['input'];
164
+ updatedAt?: Scalars['Date']['input'];
165
+ search?: Scalars['String']['input'][];
166
+ authentication?: UserAuthenticationCreateFieldsInput;
167
+ provider?: AuthenticationProvider;
168
+ isOauth?: Scalars['Boolean']['input'];
169
+ email?: Scalars['Email']['input'];
170
+ verifiedEmail?: Scalars['Boolean']['input'];
171
+ role?: RolePointerInput;
172
+ sessions?: _SessionRelationInput;
202
173
  };
203
174
 
204
- export type UserAclObjectCreateFieldsInput = {
205
- users?: InputMaybe<Array<InputMaybe<UserAclObjectUsersAclCreateFieldsInput>>>;
206
- roles?: InputMaybe<Array<InputMaybe<UserAclObjectRolesAclCreateFieldsInput>>>;
175
+ export type UserACLObjectCreateFieldsInput = {
176
+ users?: UserACLObjectUsersACLCreateFieldsInput[];
177
+ roles?: UserACLObjectRolesACLCreateFieldsInput[];
207
178
  };
208
179
 
209
- export type UserAclObjectUsersAclCreateFieldsInput = {
210
- userId?: InputMaybe<Scalars['String']['input']>;
211
- read?: InputMaybe<Scalars['Boolean']['input']>;
212
- write?: InputMaybe<Scalars['Boolean']['input']>;
180
+ export type UserACLObjectUsersACLCreateFieldsInput = {
181
+ userId?: Scalars['String']['input'];
182
+ read?: Scalars['Boolean']['input'];
183
+ write?: Scalars['Boolean']['input'];
213
184
  };
214
185
 
215
- export type UserAclObjectRolesAclCreateFieldsInput = {
216
- roleId?: InputMaybe<Scalars['String']['input']>;
217
- read?: InputMaybe<Scalars['Boolean']['input']>;
218
- write?: InputMaybe<Scalars['Boolean']['input']>;
186
+ export type UserACLObjectRolesACLCreateFieldsInput = {
187
+ roleId?: Scalars['String']['input'];
188
+ read?: Scalars['Boolean']['input'];
189
+ write?: Scalars['Boolean']['input'];
219
190
  };
220
191
 
221
192
  export type UserAuthenticationCreateFieldsInput = {
222
- emailPassword?: InputMaybe<UserAuthenticationEmailPasswordCreateFieldsInput>;
223
- google?: InputMaybe<UserAuthenticationGoogleCreateFieldsInput>;
193
+ emailPassword?: UserAuthenticationEmailPasswordCreateFieldsInput;
194
+ google?: UserAuthenticationGoogleCreateFieldsInput;
224
195
  };
225
196
 
226
197
  export type UserAuthenticationEmailPasswordCreateFieldsInput = {
227
- email?: InputMaybe<Scalars['Email']['input']>;
228
- password?: InputMaybe<Scalars['String']['input']>;
198
+ email?: Scalars['Email']['input'];
199
+ password?: Scalars['String']['input'];
229
200
  };
230
201
 
231
202
  export type UserAuthenticationGoogleCreateFieldsInput = {
232
- email?: InputMaybe<Scalars['Email']['input']>;
233
- verifiedEmail?: InputMaybe<Scalars['Boolean']['input']>;
234
- idToken?: InputMaybe<Scalars['String']['input']>;
203
+ email?: Scalars['Email']['input'];
204
+ verifiedEmail?: Scalars['Boolean']['input'];
205
+ idToken?: Scalars['String']['input'];
235
206
  };
236
207
 
237
- /** Input to add a relation to the class User */
238
208
  export type UserRelationInput = {
239
- add?: InputMaybe<Array<Scalars['ID']['input']>>;
240
- remove?: InputMaybe<Array<Scalars['ID']['input']>>;
241
- createAndAdd?: InputMaybe<Array<UserCreateFieldsInput>>;
209
+ add?: Scalars['ID']['input'][];
210
+ remove?: Scalars['ID']['input'][];
211
+ createAndAdd?: UserCreateFieldsInput[];
242
212
  };
243
213
 
244
214
  export type Post = {
245
- __typename?: 'Post';
246
215
  id: Scalars['ID']['output'];
247
216
  name: Scalars['String']['output'];
248
- test?: Maybe<Scalars['File']['output']>;
249
- acl?: Maybe<PostAclObject>;
250
- createdAt?: Maybe<Scalars['Date']['output']>;
251
- updatedAt?: Maybe<Scalars['Date']['output']>;
252
- search?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
217
+ test?: Scalars['File']['output'];
218
+ acl?: PostACLObject;
219
+ createdAt?: Scalars['Date']['output'];
220
+ updatedAt?: Scalars['Date']['output'];
221
+ search?: Scalars['String']['output'][];
253
222
  };
254
223
 
255
- export type PostAclObject = {
256
- __typename?: 'PostACLObject';
257
- users?: Maybe<Array<Maybe<PostAclObjectUsersAcl>>>;
258
- roles?: Maybe<Array<Maybe<PostAclObjectRolesAcl>>>;
224
+ export type PostACLObject = {
225
+ users?: PostACLObjectUsersACL[];
226
+ roles?: PostACLObjectRolesACL[];
259
227
  };
260
228
 
261
- export type PostAclObjectUsersAcl = {
262
- __typename?: 'PostACLObjectUsersACL';
229
+ export type PostACLObjectUsersACL = {
263
230
  userId: Scalars['String']['output'];
264
231
  read: Scalars['Boolean']['output'];
265
232
  write: Scalars['Boolean']['output'];
266
233
  };
267
234
 
268
- export type PostAclObjectRolesAcl = {
269
- __typename?: 'PostACLObjectRolesACL';
235
+ export type PostACLObjectRolesACL = {
270
236
  roleId: Scalars['String']['output'];
271
237
  read: Scalars['Boolean']['output'];
272
238
  write: Scalars['Boolean']['output'];
@@ -274,213 +240,199 @@ export type PostAclObjectRolesAcl = {
274
240
 
275
241
  export type PostInput = {
276
242
  name: Scalars['String']['input'];
277
- test?: InputMaybe<Scalars['File']['input']>;
278
- acl?: InputMaybe<PostAclObjectInput>;
279
- createdAt?: InputMaybe<Scalars['Date']['input']>;
280
- updatedAt?: InputMaybe<Scalars['Date']['input']>;
281
- search?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
243
+ test?: Scalars['File']['input'];
244
+ acl?: PostACLObjectInput;
245
+ createdAt?: Scalars['Date']['input'];
246
+ updatedAt?: Scalars['Date']['input'];
247
+ search?: Scalars['String']['input'][];
282
248
  };
283
249
 
284
- export type PostAclObjectInput = {
285
- users?: InputMaybe<Array<InputMaybe<PostAclObjectUsersAclInput>>>;
286
- roles?: InputMaybe<Array<InputMaybe<PostAclObjectRolesAclInput>>>;
250
+ export type PostACLObjectInput = {
251
+ users?: PostACLObjectUsersACLInput[];
252
+ roles?: PostACLObjectRolesACLInput[];
287
253
  };
288
254
 
289
- export type PostAclObjectUsersAclInput = {
255
+ export type PostACLObjectUsersACLInput = {
290
256
  userId: Scalars['String']['input'];
291
257
  read: Scalars['Boolean']['input'];
292
258
  write: Scalars['Boolean']['input'];
293
259
  };
294
260
 
295
- export type PostAclObjectRolesAclInput = {
261
+ export type PostACLObjectRolesACLInput = {
296
262
  roleId: Scalars['String']['input'];
297
263
  read: Scalars['Boolean']['input'];
298
264
  write: Scalars['Boolean']['input'];
299
265
  };
300
266
 
301
- /** Input to link an object to a pointer Post */
302
267
  export type PostPointerInput = {
303
- unlink?: InputMaybe<Scalars['Boolean']['input']>;
304
- link?: InputMaybe<Scalars['ID']['input']>;
305
- createAndLink?: InputMaybe<PostCreateFieldsInput>;
268
+ unlink?: Scalars['Boolean']['input'];
269
+ link?: Scalars['ID']['input'];
270
+ createAndLink?: PostCreateFieldsInput;
306
271
  };
307
272
 
308
273
  export type PostCreateFieldsInput = {
309
- name?: InputMaybe<Scalars['String']['input']>;
310
- test?: InputMaybe<Scalars['File']['input']>;
311
- acl?: InputMaybe<PostAclObjectCreateFieldsInput>;
312
- createdAt?: InputMaybe<Scalars['Date']['input']>;
313
- updatedAt?: InputMaybe<Scalars['Date']['input']>;
314
- search?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
274
+ name?: Scalars['String']['input'];
275
+ test?: Scalars['File']['input'];
276
+ acl?: PostACLObjectCreateFieldsInput;
277
+ createdAt?: Scalars['Date']['input'];
278
+ updatedAt?: Scalars['Date']['input'];
279
+ search?: Scalars['String']['input'][];
315
280
  };
316
281
 
317
- export type PostAclObjectCreateFieldsInput = {
318
- users?: InputMaybe<Array<InputMaybe<PostAclObjectUsersAclCreateFieldsInput>>>;
319
- roles?: InputMaybe<Array<InputMaybe<PostAclObjectRolesAclCreateFieldsInput>>>;
282
+ export type PostACLObjectCreateFieldsInput = {
283
+ users?: PostACLObjectUsersACLCreateFieldsInput[];
284
+ roles?: PostACLObjectRolesACLCreateFieldsInput[];
320
285
  };
321
286
 
322
- export type PostAclObjectUsersAclCreateFieldsInput = {
323
- userId?: InputMaybe<Scalars['String']['input']>;
324
- read?: InputMaybe<Scalars['Boolean']['input']>;
325
- write?: InputMaybe<Scalars['Boolean']['input']>;
287
+ export type PostACLObjectUsersACLCreateFieldsInput = {
288
+ userId?: Scalars['String']['input'];
289
+ read?: Scalars['Boolean']['input'];
290
+ write?: Scalars['Boolean']['input'];
326
291
  };
327
292
 
328
- export type PostAclObjectRolesAclCreateFieldsInput = {
329
- roleId?: InputMaybe<Scalars['String']['input']>;
330
- read?: InputMaybe<Scalars['Boolean']['input']>;
331
- write?: InputMaybe<Scalars['Boolean']['input']>;
293
+ export type PostACLObjectRolesACLCreateFieldsInput = {
294
+ roleId?: Scalars['String']['input'];
295
+ read?: Scalars['Boolean']['input'];
296
+ write?: Scalars['Boolean']['input'];
332
297
  };
333
298
 
334
- /** Input to add a relation to the class Post */
335
299
  export type PostRelationInput = {
336
- add?: InputMaybe<Array<Scalars['ID']['input']>>;
337
- remove?: InputMaybe<Array<Scalars['ID']['input']>>;
338
- createAndAdd?: InputMaybe<Array<PostCreateFieldsInput>>;
300
+ add?: Scalars['ID']['input'][];
301
+ remove?: Scalars['ID']['input'][];
302
+ createAndAdd?: PostCreateFieldsInput[];
339
303
  };
340
304
 
341
305
  export type _Session = {
342
- __typename?: '_Session';
343
306
  id: Scalars['ID']['output'];
344
- user?: Maybe<User>;
307
+ user?: User;
345
308
  accessToken: Scalars['String']['output'];
346
309
  accessTokenExpiresAt: Scalars['Date']['output'];
347
- refreshToken?: Maybe<Scalars['String']['output']>;
310
+ refreshToken?: Scalars['String']['output'];
348
311
  refreshTokenExpiresAt: Scalars['Date']['output'];
349
- acl?: Maybe<_SessionAclObject>;
350
- createdAt?: Maybe<Scalars['Date']['output']>;
351
- updatedAt?: Maybe<Scalars['Date']['output']>;
352
- search?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
312
+ acl?: _SessionACLObject;
313
+ createdAt?: Scalars['Date']['output'];
314
+ updatedAt?: Scalars['Date']['output'];
315
+ search?: Scalars['String']['output'][];
353
316
  };
354
317
 
355
- export type _SessionAclObject = {
356
- __typename?: '_SessionACLObject';
357
- users?: Maybe<Array<Maybe<_SessionAclObjectUsersAcl>>>;
358
- roles?: Maybe<Array<Maybe<_SessionAclObjectRolesAcl>>>;
318
+ export type _SessionACLObject = {
319
+ users?: _SessionACLObjectUsersACL[];
320
+ roles?: _SessionACLObjectRolesACL[];
359
321
  };
360
322
 
361
- export type _SessionAclObjectUsersAcl = {
362
- __typename?: '_SessionACLObjectUsersACL';
323
+ export type _SessionACLObjectUsersACL = {
363
324
  userId: Scalars['String']['output'];
364
325
  read: Scalars['Boolean']['output'];
365
326
  write: Scalars['Boolean']['output'];
366
327
  };
367
328
 
368
- export type _SessionAclObjectRolesAcl = {
369
- __typename?: '_SessionACLObjectRolesACL';
329
+ export type _SessionACLObjectRolesACL = {
370
330
  roleId: Scalars['String']['output'];
371
331
  read: Scalars['Boolean']['output'];
372
332
  write: Scalars['Boolean']['output'];
373
333
  };
374
334
 
375
335
  export type _SessionInput = {
376
- user?: InputMaybe<UserPointerInput>;
336
+ user?: UserPointerInput;
377
337
  accessToken: Scalars['String']['input'];
378
338
  accessTokenExpiresAt: Scalars['Date']['input'];
379
- refreshToken?: InputMaybe<Scalars['String']['input']>;
339
+ refreshToken?: Scalars['String']['input'];
380
340
  refreshTokenExpiresAt: Scalars['Date']['input'];
381
- acl?: InputMaybe<_SessionAclObjectInput>;
382
- createdAt?: InputMaybe<Scalars['Date']['input']>;
383
- updatedAt?: InputMaybe<Scalars['Date']['input']>;
384
- search?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
341
+ acl?: _SessionACLObjectInput;
342
+ createdAt?: Scalars['Date']['input'];
343
+ updatedAt?: Scalars['Date']['input'];
344
+ search?: Scalars['String']['input'][];
385
345
  };
386
346
 
387
- export type _SessionAclObjectInput = {
388
- users?: InputMaybe<Array<InputMaybe<_SessionAclObjectUsersAclInput>>>;
389
- roles?: InputMaybe<Array<InputMaybe<_SessionAclObjectRolesAclInput>>>;
347
+ export type _SessionACLObjectInput = {
348
+ users?: _SessionACLObjectUsersACLInput[];
349
+ roles?: _SessionACLObjectRolesACLInput[];
390
350
  };
391
351
 
392
- export type _SessionAclObjectUsersAclInput = {
352
+ export type _SessionACLObjectUsersACLInput = {
393
353
  userId: Scalars['String']['input'];
394
354
  read: Scalars['Boolean']['input'];
395
355
  write: Scalars['Boolean']['input'];
396
356
  };
397
357
 
398
- export type _SessionAclObjectRolesAclInput = {
358
+ export type _SessionACLObjectRolesACLInput = {
399
359
  roleId: Scalars['String']['input'];
400
360
  read: Scalars['Boolean']['input'];
401
361
  write: Scalars['Boolean']['input'];
402
362
  };
403
363
 
404
- /** Input to link an object to a pointer _Session */
405
364
  export type _SessionPointerInput = {
406
- unlink?: InputMaybe<Scalars['Boolean']['input']>;
407
- link?: InputMaybe<Scalars['ID']['input']>;
408
- createAndLink?: InputMaybe<_SessionCreateFieldsInput>;
365
+ unlink?: Scalars['Boolean']['input'];
366
+ link?: Scalars['ID']['input'];
367
+ createAndLink?: _SessionCreateFieldsInput;
409
368
  };
410
369
 
411
370
  export type _SessionCreateFieldsInput = {
412
- user?: InputMaybe<UserPointerInput>;
413
- accessToken?: InputMaybe<Scalars['String']['input']>;
414
- accessTokenExpiresAt?: InputMaybe<Scalars['Date']['input']>;
415
- refreshToken?: InputMaybe<Scalars['String']['input']>;
416
- refreshTokenExpiresAt?: InputMaybe<Scalars['Date']['input']>;
417
- acl?: InputMaybe<_SessionAclObjectCreateFieldsInput>;
418
- createdAt?: InputMaybe<Scalars['Date']['input']>;
419
- updatedAt?: InputMaybe<Scalars['Date']['input']>;
420
- search?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
371
+ user?: UserPointerInput;
372
+ accessToken?: Scalars['String']['input'];
373
+ accessTokenExpiresAt?: Scalars['Date']['input'];
374
+ refreshToken?: Scalars['String']['input'];
375
+ refreshTokenExpiresAt?: Scalars['Date']['input'];
376
+ acl?: _SessionACLObjectCreateFieldsInput;
377
+ createdAt?: Scalars['Date']['input'];
378
+ updatedAt?: Scalars['Date']['input'];
379
+ search?: Scalars['String']['input'][];
421
380
  };
422
381
 
423
- export type _SessionAclObjectCreateFieldsInput = {
424
- users?: InputMaybe<Array<InputMaybe<_SessionAclObjectUsersAclCreateFieldsInput>>>;
425
- roles?: InputMaybe<Array<InputMaybe<_SessionAclObjectRolesAclCreateFieldsInput>>>;
382
+ export type _SessionACLObjectCreateFieldsInput = {
383
+ users?: _SessionACLObjectUsersACLCreateFieldsInput[];
384
+ roles?: _SessionACLObjectRolesACLCreateFieldsInput[];
426
385
  };
427
386
 
428
- export type _SessionAclObjectUsersAclCreateFieldsInput = {
429
- userId?: InputMaybe<Scalars['String']['input']>;
430
- read?: InputMaybe<Scalars['Boolean']['input']>;
431
- write?: InputMaybe<Scalars['Boolean']['input']>;
387
+ export type _SessionACLObjectUsersACLCreateFieldsInput = {
388
+ userId?: Scalars['String']['input'];
389
+ read?: Scalars['Boolean']['input'];
390
+ write?: Scalars['Boolean']['input'];
432
391
  };
433
392
 
434
- export type _SessionAclObjectRolesAclCreateFieldsInput = {
435
- roleId?: InputMaybe<Scalars['String']['input']>;
436
- read?: InputMaybe<Scalars['Boolean']['input']>;
437
- write?: InputMaybe<Scalars['Boolean']['input']>;
393
+ export type _SessionACLObjectRolesACLCreateFieldsInput = {
394
+ roleId?: Scalars['String']['input'];
395
+ read?: Scalars['Boolean']['input'];
396
+ write?: Scalars['Boolean']['input'];
438
397
  };
439
398
 
440
- /** Input to add a relation to the class _Session */
441
399
  export type _SessionRelationInput = {
442
- add?: InputMaybe<Array<Scalars['ID']['input']>>;
443
- remove?: InputMaybe<Array<Scalars['ID']['input']>>;
444
- createAndAdd?: InputMaybe<Array<_SessionCreateFieldsInput>>;
400
+ add?: Scalars['ID']['input'][];
401
+ remove?: Scalars['ID']['input'][];
402
+ createAndAdd?: _SessionCreateFieldsInput[];
445
403
  };
446
404
 
447
405
  export type Role = {
448
- __typename?: 'Role';
449
406
  id: Scalars['ID']['output'];
450
407
  name: Scalars['String']['output'];
451
- users?: Maybe<UserConnection>;
452
- acl?: Maybe<RoleAclObject>;
453
- createdAt?: Maybe<Scalars['Date']['output']>;
454
- updatedAt?: Maybe<Scalars['Date']['output']>;
455
- search?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
408
+ users?: UserConnection;
409
+ acl?: RoleACLObject;
410
+ createdAt?: Scalars['Date']['output'];
411
+ updatedAt?: Scalars['Date']['output'];
412
+ search?: Scalars['String']['output'][];
456
413
  };
457
414
 
458
415
  export type UserConnection = {
459
- __typename?: 'UserConnection';
460
- totalCount?: Maybe<Scalars['Int']['output']>;
461
- edges?: Maybe<Array<Maybe<UserEdge>>>;
416
+ totalCount?: Scalars['Int']['output'];
417
+ edges?: UserEdge[];
462
418
  };
463
419
 
464
420
  export type UserEdge = {
465
- __typename?: 'UserEdge';
466
421
  node: User;
467
422
  };
468
423
 
469
- export type RoleAclObject = {
470
- __typename?: 'RoleACLObject';
471
- users?: Maybe<Array<Maybe<RoleAclObjectUsersAcl>>>;
472
- roles?: Maybe<Array<Maybe<RoleAclObjectRolesAcl>>>;
424
+ export type RoleACLObject = {
425
+ users?: RoleACLObjectUsersACL[];
426
+ roles?: RoleACLObjectRolesACL[];
473
427
  };
474
428
 
475
- export type RoleAclObjectUsersAcl = {
476
- __typename?: 'RoleACLObjectUsersACL';
429
+ export type RoleACLObjectUsersACL = {
477
430
  userId: Scalars['String']['output'];
478
431
  read: Scalars['Boolean']['output'];
479
432
  write: Scalars['Boolean']['output'];
480
433
  };
481
434
 
482
- export type RoleAclObjectRolesAcl = {
483
- __typename?: 'RoleACLObjectRolesACL';
435
+ export type RoleACLObjectRolesACL = {
484
436
  roleId: Scalars['String']['output'];
485
437
  read: Scalars['Boolean']['output'];
486
438
  write: Scalars['Boolean']['output'];
@@ -488,197 +440,185 @@ export type RoleAclObjectRolesAcl = {
488
440
 
489
441
  export type RoleInput = {
490
442
  name: Scalars['String']['input'];
491
- users?: InputMaybe<UserRelationInput>;
492
- acl?: InputMaybe<RoleAclObjectInput>;
493
- createdAt?: InputMaybe<Scalars['Date']['input']>;
494
- updatedAt?: InputMaybe<Scalars['Date']['input']>;
495
- search?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
443
+ users?: UserRelationInput;
444
+ acl?: RoleACLObjectInput;
445
+ createdAt?: Scalars['Date']['input'];
446
+ updatedAt?: Scalars['Date']['input'];
447
+ search?: Scalars['String']['input'][];
496
448
  };
497
449
 
498
- export type RoleAclObjectInput = {
499
- users?: InputMaybe<Array<InputMaybe<RoleAclObjectUsersAclInput>>>;
500
- roles?: InputMaybe<Array<InputMaybe<RoleAclObjectRolesAclInput>>>;
450
+ export type RoleACLObjectInput = {
451
+ users?: RoleACLObjectUsersACLInput[];
452
+ roles?: RoleACLObjectRolesACLInput[];
501
453
  };
502
454
 
503
- export type RoleAclObjectUsersAclInput = {
455
+ export type RoleACLObjectUsersACLInput = {
504
456
  userId: Scalars['String']['input'];
505
457
  read: Scalars['Boolean']['input'];
506
458
  write: Scalars['Boolean']['input'];
507
459
  };
508
460
 
509
- export type RoleAclObjectRolesAclInput = {
461
+ export type RoleACLObjectRolesACLInput = {
510
462
  roleId: Scalars['String']['input'];
511
463
  read: Scalars['Boolean']['input'];
512
464
  write: Scalars['Boolean']['input'];
513
465
  };
514
466
 
515
- /** Input to link an object to a pointer Role */
516
467
  export type RolePointerInput = {
517
- unlink?: InputMaybe<Scalars['Boolean']['input']>;
518
- link?: InputMaybe<Scalars['ID']['input']>;
519
- createAndLink?: InputMaybe<RoleCreateFieldsInput>;
468
+ unlink?: Scalars['Boolean']['input'];
469
+ link?: Scalars['ID']['input'];
470
+ createAndLink?: RoleCreateFieldsInput;
520
471
  };
521
472
 
522
473
  export type RoleCreateFieldsInput = {
523
- name?: InputMaybe<Scalars['String']['input']>;
524
- users?: InputMaybe<UserRelationInput>;
525
- acl?: InputMaybe<RoleAclObjectCreateFieldsInput>;
526
- createdAt?: InputMaybe<Scalars['Date']['input']>;
527
- updatedAt?: InputMaybe<Scalars['Date']['input']>;
528
- search?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
474
+ name?: Scalars['String']['input'];
475
+ users?: UserRelationInput;
476
+ acl?: RoleACLObjectCreateFieldsInput;
477
+ createdAt?: Scalars['Date']['input'];
478
+ updatedAt?: Scalars['Date']['input'];
479
+ search?: Scalars['String']['input'][];
529
480
  };
530
481
 
531
- export type RoleAclObjectCreateFieldsInput = {
532
- users?: InputMaybe<Array<InputMaybe<RoleAclObjectUsersAclCreateFieldsInput>>>;
533
- roles?: InputMaybe<Array<InputMaybe<RoleAclObjectRolesAclCreateFieldsInput>>>;
482
+ export type RoleACLObjectCreateFieldsInput = {
483
+ users?: RoleACLObjectUsersACLCreateFieldsInput[];
484
+ roles?: RoleACLObjectRolesACLCreateFieldsInput[];
534
485
  };
535
486
 
536
- export type RoleAclObjectUsersAclCreateFieldsInput = {
537
- userId?: InputMaybe<Scalars['String']['input']>;
538
- read?: InputMaybe<Scalars['Boolean']['input']>;
539
- write?: InputMaybe<Scalars['Boolean']['input']>;
487
+ export type RoleACLObjectUsersACLCreateFieldsInput = {
488
+ userId?: Scalars['String']['input'];
489
+ read?: Scalars['Boolean']['input'];
490
+ write?: Scalars['Boolean']['input'];
540
491
  };
541
492
 
542
- export type RoleAclObjectRolesAclCreateFieldsInput = {
543
- roleId?: InputMaybe<Scalars['String']['input']>;
544
- read?: InputMaybe<Scalars['Boolean']['input']>;
545
- write?: InputMaybe<Scalars['Boolean']['input']>;
493
+ export type RoleACLObjectRolesACLCreateFieldsInput = {
494
+ roleId?: Scalars['String']['input'];
495
+ read?: Scalars['Boolean']['input'];
496
+ write?: Scalars['Boolean']['input'];
546
497
  };
547
498
 
548
- /** Input to add a relation to the class Role */
549
499
  export type RoleRelationInput = {
550
- add?: InputMaybe<Array<Scalars['ID']['input']>>;
551
- remove?: InputMaybe<Array<Scalars['ID']['input']>>;
552
- createAndAdd?: InputMaybe<Array<RoleCreateFieldsInput>>;
500
+ add?: Scalars['ID']['input'][];
501
+ remove?: Scalars['ID']['input'][];
502
+ createAndAdd?: RoleCreateFieldsInput[];
553
503
  };
554
504
 
555
505
  export type Payment = {
556
- __typename?: 'Payment';
557
506
  id: Scalars['ID']['output'];
558
- user?: Maybe<User>;
507
+ user?: User;
559
508
  amount: Scalars['Int']['output'];
560
509
  currency: Currency;
561
- acl?: Maybe<PaymentAclObject>;
562
- createdAt?: Maybe<Scalars['Date']['output']>;
563
- updatedAt?: Maybe<Scalars['Date']['output']>;
564
- search?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
510
+ acl?: PaymentACLObject;
511
+ createdAt?: Scalars['Date']['output'];
512
+ updatedAt?: Scalars['Date']['output'];
513
+ search?: Scalars['String']['output'][];
565
514
  };
566
515
 
567
- export type PaymentAclObject = {
568
- __typename?: 'PaymentACLObject';
569
- users?: Maybe<Array<Maybe<PaymentAclObjectUsersAcl>>>;
570
- roles?: Maybe<Array<Maybe<PaymentAclObjectRolesAcl>>>;
516
+ export type PaymentACLObject = {
517
+ users?: PaymentACLObjectUsersACL[];
518
+ roles?: PaymentACLObjectRolesACL[];
571
519
  };
572
520
 
573
- export type PaymentAclObjectUsersAcl = {
574
- __typename?: 'PaymentACLObjectUsersACL';
521
+ export type PaymentACLObjectUsersACL = {
575
522
  userId: Scalars['String']['output'];
576
523
  read: Scalars['Boolean']['output'];
577
524
  write: Scalars['Boolean']['output'];
578
525
  };
579
526
 
580
- export type PaymentAclObjectRolesAcl = {
581
- __typename?: 'PaymentACLObjectRolesACL';
527
+ export type PaymentACLObjectRolesACL = {
582
528
  roleId: Scalars['String']['output'];
583
529
  read: Scalars['Boolean']['output'];
584
530
  write: Scalars['Boolean']['output'];
585
531
  };
586
532
 
587
533
  export type PaymentInput = {
588
- user?: InputMaybe<UserPointerInput>;
534
+ user?: UserPointerInput;
589
535
  amount: Scalars['Int']['input'];
590
536
  currency: Currency;
591
- acl?: InputMaybe<PaymentAclObjectInput>;
592
- createdAt?: InputMaybe<Scalars['Date']['input']>;
593
- updatedAt?: InputMaybe<Scalars['Date']['input']>;
594
- search?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
537
+ acl?: PaymentACLObjectInput;
538
+ createdAt?: Scalars['Date']['input'];
539
+ updatedAt?: Scalars['Date']['input'];
540
+ search?: Scalars['String']['input'][];
595
541
  };
596
542
 
597
- export type PaymentAclObjectInput = {
598
- users?: InputMaybe<Array<InputMaybe<PaymentAclObjectUsersAclInput>>>;
599
- roles?: InputMaybe<Array<InputMaybe<PaymentAclObjectRolesAclInput>>>;
543
+ export type PaymentACLObjectInput = {
544
+ users?: PaymentACLObjectUsersACLInput[];
545
+ roles?: PaymentACLObjectRolesACLInput[];
600
546
  };
601
547
 
602
- export type PaymentAclObjectUsersAclInput = {
548
+ export type PaymentACLObjectUsersACLInput = {
603
549
  userId: Scalars['String']['input'];
604
550
  read: Scalars['Boolean']['input'];
605
551
  write: Scalars['Boolean']['input'];
606
552
  };
607
553
 
608
- export type PaymentAclObjectRolesAclInput = {
554
+ export type PaymentACLObjectRolesACLInput = {
609
555
  roleId: Scalars['String']['input'];
610
556
  read: Scalars['Boolean']['input'];
611
557
  write: Scalars['Boolean']['input'];
612
558
  };
613
559
 
614
- /** Input to link an object to a pointer Payment */
615
560
  export type PaymentPointerInput = {
616
- unlink?: InputMaybe<Scalars['Boolean']['input']>;
617
- link?: InputMaybe<Scalars['ID']['input']>;
618
- createAndLink?: InputMaybe<PaymentCreateFieldsInput>;
561
+ unlink?: Scalars['Boolean']['input'];
562
+ link?: Scalars['ID']['input'];
563
+ createAndLink?: PaymentCreateFieldsInput;
619
564
  };
620
565
 
621
566
  export type PaymentCreateFieldsInput = {
622
- user?: InputMaybe<UserPointerInput>;
623
- amount?: InputMaybe<Scalars['Int']['input']>;
624
- currency?: InputMaybe<Currency>;
625
- acl?: InputMaybe<PaymentAclObjectCreateFieldsInput>;
626
- createdAt?: InputMaybe<Scalars['Date']['input']>;
627
- updatedAt?: InputMaybe<Scalars['Date']['input']>;
628
- search?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
567
+ user?: UserPointerInput;
568
+ amount?: Scalars['Int']['input'];
569
+ currency?: Currency;
570
+ acl?: PaymentACLObjectCreateFieldsInput;
571
+ createdAt?: Scalars['Date']['input'];
572
+ updatedAt?: Scalars['Date']['input'];
573
+ search?: Scalars['String']['input'][];
629
574
  };
630
575
 
631
- export type PaymentAclObjectCreateFieldsInput = {
632
- users?: InputMaybe<Array<InputMaybe<PaymentAclObjectUsersAclCreateFieldsInput>>>;
633
- roles?: InputMaybe<Array<InputMaybe<PaymentAclObjectRolesAclCreateFieldsInput>>>;
576
+ export type PaymentACLObjectCreateFieldsInput = {
577
+ users?: PaymentACLObjectUsersACLCreateFieldsInput[];
578
+ roles?: PaymentACLObjectRolesACLCreateFieldsInput[];
634
579
  };
635
580
 
636
- export type PaymentAclObjectUsersAclCreateFieldsInput = {
637
- userId?: InputMaybe<Scalars['String']['input']>;
638
- read?: InputMaybe<Scalars['Boolean']['input']>;
639
- write?: InputMaybe<Scalars['Boolean']['input']>;
581
+ export type PaymentACLObjectUsersACLCreateFieldsInput = {
582
+ userId?: Scalars['String']['input'];
583
+ read?: Scalars['Boolean']['input'];
584
+ write?: Scalars['Boolean']['input'];
640
585
  };
641
586
 
642
- export type PaymentAclObjectRolesAclCreateFieldsInput = {
643
- roleId?: InputMaybe<Scalars['String']['input']>;
644
- read?: InputMaybe<Scalars['Boolean']['input']>;
645
- write?: InputMaybe<Scalars['Boolean']['input']>;
587
+ export type PaymentACLObjectRolesACLCreateFieldsInput = {
588
+ roleId?: Scalars['String']['input'];
589
+ read?: Scalars['Boolean']['input'];
590
+ write?: Scalars['Boolean']['input'];
646
591
  };
647
592
 
648
- /** Input to add a relation to the class Payment */
649
593
  export type PaymentRelationInput = {
650
- add?: InputMaybe<Array<Scalars['ID']['input']>>;
651
- remove?: InputMaybe<Array<Scalars['ID']['input']>>;
652
- createAndAdd?: InputMaybe<Array<PaymentCreateFieldsInput>>;
594
+ add?: Scalars['ID']['input'][];
595
+ remove?: Scalars['ID']['input'][];
596
+ createAndAdd?: PaymentCreateFieldsInput[];
653
597
  };
654
598
 
655
599
  export type _InternalConfig = {
656
- __typename?: '_InternalConfig';
657
600
  id: Scalars['ID']['output'];
658
601
  configKey: Scalars['String']['output'];
659
602
  configValue: Scalars['String']['output'];
660
- description?: Maybe<Scalars['String']['output']>;
661
- acl?: Maybe<_InternalConfigAclObject>;
662
- createdAt?: Maybe<Scalars['Date']['output']>;
663
- updatedAt?: Maybe<Scalars['Date']['output']>;
664
- search?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
603
+ description?: Scalars['String']['output'];
604
+ acl?: _InternalConfigACLObject;
605
+ createdAt?: Scalars['Date']['output'];
606
+ updatedAt?: Scalars['Date']['output'];
607
+ search?: Scalars['String']['output'][];
665
608
  };
666
609
 
667
- export type _InternalConfigAclObject = {
668
- __typename?: '_InternalConfigACLObject';
669
- users?: Maybe<Array<Maybe<_InternalConfigAclObjectUsersAcl>>>;
670
- roles?: Maybe<Array<Maybe<_InternalConfigAclObjectRolesAcl>>>;
610
+ export type _InternalConfigACLObject = {
611
+ users?: _InternalConfigACLObjectUsersACL[];
612
+ roles?: _InternalConfigACLObjectRolesACL[];
671
613
  };
672
614
 
673
- export type _InternalConfigAclObjectUsersAcl = {
674
- __typename?: '_InternalConfigACLObjectUsersACL';
615
+ export type _InternalConfigACLObjectUsersACL = {
675
616
  userId: Scalars['String']['output'];
676
617
  read: Scalars['Boolean']['output'];
677
618
  write: Scalars['Boolean']['output'];
678
619
  };
679
620
 
680
- export type _InternalConfigAclObjectRolesAcl = {
681
- __typename?: '_InternalConfigACLObjectRolesACL';
621
+ export type _InternalConfigACLObjectRolesACL = {
682
622
  roleId: Scalars['String']['output'];
683
623
  read: Scalars['Boolean']['output'];
684
624
  write: Scalars['Boolean']['output'];
@@ -687,658 +627,626 @@ export type _InternalConfigAclObjectRolesAcl = {
687
627
  export type _InternalConfigInput = {
688
628
  configKey: Scalars['String']['input'];
689
629
  configValue: Scalars['String']['input'];
690
- description?: InputMaybe<Scalars['String']['input']>;
691
- acl?: InputMaybe<_InternalConfigAclObjectInput>;
692
- createdAt?: InputMaybe<Scalars['Date']['input']>;
693
- updatedAt?: InputMaybe<Scalars['Date']['input']>;
694
- search?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
630
+ description?: Scalars['String']['input'];
631
+ acl?: _InternalConfigACLObjectInput;
632
+ createdAt?: Scalars['Date']['input'];
633
+ updatedAt?: Scalars['Date']['input'];
634
+ search?: Scalars['String']['input'][];
695
635
  };
696
636
 
697
- export type _InternalConfigAclObjectInput = {
698
- users?: InputMaybe<Array<InputMaybe<_InternalConfigAclObjectUsersAclInput>>>;
699
- roles?: InputMaybe<Array<InputMaybe<_InternalConfigAclObjectRolesAclInput>>>;
637
+ export type _InternalConfigACLObjectInput = {
638
+ users?: _InternalConfigACLObjectUsersACLInput[];
639
+ roles?: _InternalConfigACLObjectRolesACLInput[];
700
640
  };
701
641
 
702
- export type _InternalConfigAclObjectUsersAclInput = {
642
+ export type _InternalConfigACLObjectUsersACLInput = {
703
643
  userId: Scalars['String']['input'];
704
644
  read: Scalars['Boolean']['input'];
705
645
  write: Scalars['Boolean']['input'];
706
646
  };
707
647
 
708
- export type _InternalConfigAclObjectRolesAclInput = {
648
+ export type _InternalConfigACLObjectRolesACLInput = {
709
649
  roleId: Scalars['String']['input'];
710
650
  read: Scalars['Boolean']['input'];
711
651
  write: Scalars['Boolean']['input'];
712
652
  };
713
653
 
714
- /** Input to link an object to a pointer _InternalConfig */
715
654
  export type _InternalConfigPointerInput = {
716
- unlink?: InputMaybe<Scalars['Boolean']['input']>;
717
- link?: InputMaybe<Scalars['ID']['input']>;
718
- createAndLink?: InputMaybe<_InternalConfigCreateFieldsInput>;
655
+ unlink?: Scalars['Boolean']['input'];
656
+ link?: Scalars['ID']['input'];
657
+ createAndLink?: _InternalConfigCreateFieldsInput;
719
658
  };
720
659
 
721
660
  export type _InternalConfigCreateFieldsInput = {
722
- configKey?: InputMaybe<Scalars['String']['input']>;
723
- configValue?: InputMaybe<Scalars['String']['input']>;
724
- description?: InputMaybe<Scalars['String']['input']>;
725
- acl?: InputMaybe<_InternalConfigAclObjectCreateFieldsInput>;
726
- createdAt?: InputMaybe<Scalars['Date']['input']>;
727
- updatedAt?: InputMaybe<Scalars['Date']['input']>;
728
- search?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
661
+ configKey?: Scalars['String']['input'];
662
+ configValue?: Scalars['String']['input'];
663
+ description?: Scalars['String']['input'];
664
+ acl?: _InternalConfigACLObjectCreateFieldsInput;
665
+ createdAt?: Scalars['Date']['input'];
666
+ updatedAt?: Scalars['Date']['input'];
667
+ search?: Scalars['String']['input'][];
729
668
  };
730
669
 
731
- export type _InternalConfigAclObjectCreateFieldsInput = {
732
- users?: InputMaybe<Array<InputMaybe<_InternalConfigAclObjectUsersAclCreateFieldsInput>>>;
733
- roles?: InputMaybe<Array<InputMaybe<_InternalConfigAclObjectRolesAclCreateFieldsInput>>>;
670
+ export type _InternalConfigACLObjectCreateFieldsInput = {
671
+ users?: _InternalConfigACLObjectUsersACLCreateFieldsInput[];
672
+ roles?: _InternalConfigACLObjectRolesACLCreateFieldsInput[];
734
673
  };
735
674
 
736
- export type _InternalConfigAclObjectUsersAclCreateFieldsInput = {
737
- userId?: InputMaybe<Scalars['String']['input']>;
738
- read?: InputMaybe<Scalars['Boolean']['input']>;
739
- write?: InputMaybe<Scalars['Boolean']['input']>;
675
+ export type _InternalConfigACLObjectUsersACLCreateFieldsInput = {
676
+ userId?: Scalars['String']['input'];
677
+ read?: Scalars['Boolean']['input'];
678
+ write?: Scalars['Boolean']['input'];
740
679
  };
741
680
 
742
- export type _InternalConfigAclObjectRolesAclCreateFieldsInput = {
743
- roleId?: InputMaybe<Scalars['String']['input']>;
744
- read?: InputMaybe<Scalars['Boolean']['input']>;
745
- write?: InputMaybe<Scalars['Boolean']['input']>;
681
+ export type _InternalConfigACLObjectRolesACLCreateFieldsInput = {
682
+ roleId?: Scalars['String']['input'];
683
+ read?: Scalars['Boolean']['input'];
684
+ write?: Scalars['Boolean']['input'];
746
685
  };
747
686
 
748
- /** Input to add a relation to the class _InternalConfig */
749
687
  export type _InternalConfigRelationInput = {
750
- add?: InputMaybe<Array<Scalars['ID']['input']>>;
751
- remove?: InputMaybe<Array<Scalars['ID']['input']>>;
752
- createAndAdd?: InputMaybe<Array<_InternalConfigCreateFieldsInput>>;
688
+ add?: Scalars['ID']['input'][];
689
+ remove?: Scalars['ID']['input'][];
690
+ createAndAdd?: _InternalConfigCreateFieldsInput[];
753
691
  };
754
692
 
755
693
  export type Query = {
756
- __typename?: 'Query';
757
- /** User class */
758
- user?: Maybe<User>;
759
- /** User class */
694
+ user?: User;
760
695
  users: UserConnection;
761
- post?: Maybe<Post>;
696
+ post?: Post;
762
697
  posts: PostConnection;
763
- _session?: Maybe<_Session>;
698
+ _session?: _Session;
764
699
  _sessions: _SessionConnection;
765
- role?: Maybe<Role>;
700
+ role?: Role;
766
701
  roles: RoleConnection;
767
- payment?: Maybe<Payment>;
702
+ payment?: Payment;
768
703
  payments: PaymentConnection;
769
- _internalConfig?: Maybe<_InternalConfig>;
704
+ _internalConfig?: _InternalConfig;
770
705
  _internalConfigs: _InternalConfigConnection;
771
- /** Hello world description */
772
- helloWorld?: Maybe<Scalars['String']['output']>;
773
- me?: Maybe<MeOutput>;
774
- /** Get invoices of a customer */
775
- getInvoices: Array<Maybe<Invoice>>;
706
+ helloWorld?: Scalars['String']['output'];
707
+ me?: MeOutput;
708
+ getInvoices: Invoice[];
776
709
  };
777
710
 
778
-
779
711
  export type QueryUserArgs = {
780
- id?: InputMaybe<Scalars['ID']['input']>;
712
+ id?: Scalars['ID']['input'];
781
713
  };
782
714
 
783
-
784
715
  export type QueryUsersArgs = {
785
- where?: InputMaybe<UserWhereInput>;
786
- offset?: InputMaybe<Scalars['Int']['input']>;
787
- first?: InputMaybe<Scalars['Int']['input']>;
788
- order?: InputMaybe<Array<UserOrder>>;
716
+ where?: UserWhereInput;
717
+ offset?: Scalars['Int']['input'];
718
+ first?: Scalars['Int']['input'];
719
+ order?: UserOrder[];
789
720
  };
790
721
 
791
-
792
722
  export type QueryPostArgs = {
793
- id?: InputMaybe<Scalars['ID']['input']>;
723
+ id?: Scalars['ID']['input'];
794
724
  };
795
725
 
796
-
797
726
  export type QueryPostsArgs = {
798
- where?: InputMaybe<PostWhereInput>;
799
- offset?: InputMaybe<Scalars['Int']['input']>;
800
- first?: InputMaybe<Scalars['Int']['input']>;
801
- order?: InputMaybe<Array<PostOrder>>;
727
+ where?: PostWhereInput;
728
+ offset?: Scalars['Int']['input'];
729
+ first?: Scalars['Int']['input'];
730
+ order?: PostOrder[];
802
731
  };
803
732
 
804
-
805
- export type Query_SessionArgs = {
806
- id?: InputMaybe<Scalars['ID']['input']>;
733
+ export type Query_sessionArgs = {
734
+ id?: Scalars['ID']['input'];
807
735
  };
808
736
 
809
-
810
- export type Query_SessionsArgs = {
811
- where?: InputMaybe<_SessionWhereInput>;
812
- offset?: InputMaybe<Scalars['Int']['input']>;
813
- first?: InputMaybe<Scalars['Int']['input']>;
814
- order?: InputMaybe<Array<_SessionOrder>>;
737
+ export type Query_sessionsArgs = {
738
+ where?: _SessionWhereInput;
739
+ offset?: Scalars['Int']['input'];
740
+ first?: Scalars['Int']['input'];
741
+ order?: _SessionOrder[];
815
742
  };
816
743
 
817
-
818
744
  export type QueryRoleArgs = {
819
- id?: InputMaybe<Scalars['ID']['input']>;
745
+ id?: Scalars['ID']['input'];
820
746
  };
821
747
 
822
-
823
748
  export type QueryRolesArgs = {
824
- where?: InputMaybe<RoleWhereInput>;
825
- offset?: InputMaybe<Scalars['Int']['input']>;
826
- first?: InputMaybe<Scalars['Int']['input']>;
827
- order?: InputMaybe<Array<RoleOrder>>;
749
+ where?: RoleWhereInput;
750
+ offset?: Scalars['Int']['input'];
751
+ first?: Scalars['Int']['input'];
752
+ order?: RoleOrder[];
828
753
  };
829
754
 
830
-
831
755
  export type QueryPaymentArgs = {
832
- id?: InputMaybe<Scalars['ID']['input']>;
756
+ id?: Scalars['ID']['input'];
833
757
  };
834
758
 
835
-
836
759
  export type QueryPaymentsArgs = {
837
- where?: InputMaybe<PaymentWhereInput>;
838
- offset?: InputMaybe<Scalars['Int']['input']>;
839
- first?: InputMaybe<Scalars['Int']['input']>;
840
- order?: InputMaybe<Array<PaymentOrder>>;
760
+ where?: PaymentWhereInput;
761
+ offset?: Scalars['Int']['input'];
762
+ first?: Scalars['Int']['input'];
763
+ order?: PaymentOrder[];
841
764
  };
842
765
 
843
-
844
- export type Query_InternalConfigArgs = {
845
- id?: InputMaybe<Scalars['ID']['input']>;
766
+ export type Query_internalConfigArgs = {
767
+ id?: Scalars['ID']['input'];
846
768
  };
847
769
 
848
-
849
- export type Query_InternalConfigsArgs = {
850
- where?: InputMaybe<_InternalConfigWhereInput>;
851
- offset?: InputMaybe<Scalars['Int']['input']>;
852
- first?: InputMaybe<Scalars['Int']['input']>;
853
- order?: InputMaybe<Array<_InternalConfigOrder>>;
770
+ export type Query_internalConfigsArgs = {
771
+ where?: _InternalConfigWhereInput;
772
+ offset?: Scalars['Int']['input'];
773
+ first?: Scalars['Int']['input'];
774
+ order?: _InternalConfigOrder[];
854
775
  };
855
776
 
856
-
857
777
  export type QueryHelloWorldArgs = {
858
778
  name: Scalars['String']['input'];
859
779
  };
860
780
 
861
-
862
781
  export type QueryGetInvoicesArgs = {
863
782
  email: Scalars['Email']['input'];
864
783
  };
865
784
 
866
- /** User class */
867
785
  export type UserWhereInput = {
868
- id?: InputMaybe<IdWhereInput>;
869
- name?: InputMaybe<StringWhereInput>;
870
- age?: InputMaybe<IntWhereInput>;
871
- acl?: InputMaybe<UserAclObjectWhereInput>;
872
- createdAt?: InputMaybe<DateWhereInput>;
873
- updatedAt?: InputMaybe<DateWhereInput>;
874
- search?: InputMaybe<SearchWhereInput>;
875
- authentication?: InputMaybe<UserAuthenticationWhereInput>;
876
- provider?: InputMaybe<AnyWhereInput>;
877
- isOauth?: InputMaybe<BooleanWhereInput>;
878
- email?: InputMaybe<EmailWhereInput>;
879
- verifiedEmail?: InputMaybe<BooleanWhereInput>;
880
- role?: InputMaybe<RoleWhereInput>;
881
- sessions?: InputMaybe<_SessionWhereInput>;
882
- OR?: InputMaybe<Array<InputMaybe<UserWhereInput>>>;
883
- AND?: InputMaybe<Array<InputMaybe<UserWhereInput>>>;
786
+ id?: IdWhereInput;
787
+ name?: StringWhereInput;
788
+ age?: IntWhereInput;
789
+ acl?: UserACLObjectWhereInput;
790
+ createdAt?: DateWhereInput;
791
+ updatedAt?: DateWhereInput;
792
+ search?: SearchWhereInput;
793
+ authentication?: UserAuthenticationWhereInput;
794
+ provider?: AnyWhereInput;
795
+ isOauth?: BooleanWhereInput;
796
+ email?: EmailWhereInput;
797
+ verifiedEmail?: BooleanWhereInput;
798
+ role?: RoleWhereInput;
799
+ sessions?: _SessionWhereInput;
800
+ OR?: UserWhereInput[];
801
+ AND?: UserWhereInput[];
884
802
  };
885
803
 
886
804
  export type IdWhereInput = {
887
- equalTo?: InputMaybe<Scalars['ID']['input']>;
888
- notEqualTo?: InputMaybe<Scalars['ID']['input']>;
889
- in?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
890
- notIn?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
805
+ equalTo?: Scalars['ID']['input'];
806
+ notEqualTo?: Scalars['ID']['input'];
807
+ in?: Scalars['ID']['input'][];
808
+ notIn?: Scalars['ID']['input'][];
891
809
  };
892
810
 
893
811
  export type StringWhereInput = {
894
- equalTo?: InputMaybe<Scalars['String']['input']>;
895
- notEqualTo?: InputMaybe<Scalars['String']['input']>;
896
- in?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
897
- notIn?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
812
+ equalTo?: Scalars['String']['input'];
813
+ notEqualTo?: Scalars['String']['input'];
814
+ in?: Scalars['String']['input'][];
815
+ notIn?: Scalars['String']['input'][];
898
816
  };
899
817
 
900
818
  export type IntWhereInput = {
901
- equalTo?: InputMaybe<Scalars['Int']['input']>;
902
- notEqualTo?: InputMaybe<Scalars['Int']['input']>;
903
- lessThan?: InputMaybe<Scalars['Int']['input']>;
904
- lessThanOrEqualTo?: InputMaybe<Scalars['Int']['input']>;
905
- greaterThan?: InputMaybe<Scalars['Int']['input']>;
906
- greaterThanOrEqualTo?: InputMaybe<Scalars['Int']['input']>;
907
- in?: InputMaybe<Array<InputMaybe<Scalars['Int']['input']>>>;
908
- notIn?: InputMaybe<Array<InputMaybe<Scalars['Int']['input']>>>;
819
+ equalTo?: Scalars['Int']['input'];
820
+ notEqualTo?: Scalars['Int']['input'];
821
+ lessThan?: Scalars['Int']['input'];
822
+ lessThanOrEqualTo?: Scalars['Int']['input'];
823
+ greaterThan?: Scalars['Int']['input'];
824
+ greaterThanOrEqualTo?: Scalars['Int']['input'];
825
+ in?: Scalars['Int']['input'][];
826
+ notIn?: Scalars['Int']['input'][];
909
827
  };
910
828
 
911
- export type UserAclObjectWhereInput = {
912
- users?: InputMaybe<Array<InputMaybe<UserAclObjectUsersAclWhereInput>>>;
913
- roles?: InputMaybe<Array<InputMaybe<UserAclObjectRolesAclWhereInput>>>;
914
- OR?: InputMaybe<Array<InputMaybe<UserAclObjectWhereInput>>>;
915
- AND?: InputMaybe<Array<InputMaybe<UserAclObjectWhereInput>>>;
829
+ export type UserACLObjectWhereInput = {
830
+ users?: UserACLObjectUsersACLWhereInput[];
831
+ roles?: UserACLObjectRolesACLWhereInput[];
832
+ OR?: UserACLObjectWhereInput[];
833
+ AND?: UserACLObjectWhereInput[];
916
834
  };
917
835
 
918
- export type UserAclObjectUsersAclWhereInput = {
919
- userId?: InputMaybe<StringWhereInput>;
920
- read?: InputMaybe<BooleanWhereInput>;
921
- write?: InputMaybe<BooleanWhereInput>;
922
- OR?: InputMaybe<Array<InputMaybe<UserAclObjectUsersAclWhereInput>>>;
923
- AND?: InputMaybe<Array<InputMaybe<UserAclObjectUsersAclWhereInput>>>;
836
+ export type UserACLObjectUsersACLWhereInput = {
837
+ userId?: StringWhereInput;
838
+ read?: BooleanWhereInput;
839
+ write?: BooleanWhereInput;
840
+ OR?: UserACLObjectUsersACLWhereInput[];
841
+ AND?: UserACLObjectUsersACLWhereInput[];
924
842
  };
925
843
 
926
844
  export type BooleanWhereInput = {
927
- equalTo?: InputMaybe<Scalars['Boolean']['input']>;
928
- notEqualTo?: InputMaybe<Scalars['Boolean']['input']>;
929
- in?: InputMaybe<Array<InputMaybe<Scalars['Boolean']['input']>>>;
930
- notIn?: InputMaybe<Array<InputMaybe<Scalars['Boolean']['input']>>>;
845
+ equalTo?: Scalars['Boolean']['input'];
846
+ notEqualTo?: Scalars['Boolean']['input'];
847
+ in?: Scalars['Boolean']['input'][];
848
+ notIn?: Scalars['Boolean']['input'][];
931
849
  };
932
850
 
933
- export type UserAclObjectRolesAclWhereInput = {
934
- roleId?: InputMaybe<StringWhereInput>;
935
- read?: InputMaybe<BooleanWhereInput>;
936
- write?: InputMaybe<BooleanWhereInput>;
937
- OR?: InputMaybe<Array<InputMaybe<UserAclObjectRolesAclWhereInput>>>;
938
- AND?: InputMaybe<Array<InputMaybe<UserAclObjectRolesAclWhereInput>>>;
851
+ export type UserACLObjectRolesACLWhereInput = {
852
+ roleId?: StringWhereInput;
853
+ read?: BooleanWhereInput;
854
+ write?: BooleanWhereInput;
855
+ OR?: UserACLObjectRolesACLWhereInput[];
856
+ AND?: UserACLObjectRolesACLWhereInput[];
939
857
  };
940
858
 
941
859
  export type DateWhereInput = {
942
- equalTo?: InputMaybe<Scalars['Date']['input']>;
943
- notEqualTo?: InputMaybe<Scalars['Date']['input']>;
944
- in?: InputMaybe<Array<InputMaybe<Scalars['Date']['input']>>>;
945
- notIn?: InputMaybe<Array<InputMaybe<Scalars['Date']['input']>>>;
946
- lessThan?: InputMaybe<Scalars['Date']['input']>;
947
- lessThanOrEqualTo?: InputMaybe<Scalars['Date']['input']>;
948
- greaterThan?: InputMaybe<Scalars['Date']['input']>;
949
- greaterThanOrEqualTo?: InputMaybe<Scalars['Date']['input']>;
860
+ equalTo?: Scalars['Date']['input'];
861
+ notEqualTo?: Scalars['Date']['input'];
862
+ in?: Scalars['Date']['input'][];
863
+ notIn?: Scalars['Date']['input'][];
864
+ lessThan?: Scalars['Date']['input'];
865
+ lessThanOrEqualTo?: Scalars['Date']['input'];
866
+ greaterThan?: Scalars['Date']['input'];
867
+ greaterThanOrEqualTo?: Scalars['Date']['input'];
950
868
  };
951
869
 
952
870
  export type SearchWhereInput = {
953
- contains?: InputMaybe<Scalars['Search']['input']>;
871
+ contains?: Scalars['Search']['input'];
954
872
  };
955
873
 
956
874
  export type UserAuthenticationWhereInput = {
957
- emailPassword?: InputMaybe<UserAuthenticationEmailPasswordWhereInput>;
958
- google?: InputMaybe<UserAuthenticationGoogleWhereInput>;
959
- OR?: InputMaybe<Array<InputMaybe<UserAuthenticationWhereInput>>>;
960
- AND?: InputMaybe<Array<InputMaybe<UserAuthenticationWhereInput>>>;
875
+ emailPassword?: UserAuthenticationEmailPasswordWhereInput;
876
+ google?: UserAuthenticationGoogleWhereInput;
877
+ OR?: UserAuthenticationWhereInput[];
878
+ AND?: UserAuthenticationWhereInput[];
961
879
  };
962
880
 
963
881
  export type UserAuthenticationEmailPasswordWhereInput = {
964
- email?: InputMaybe<EmailWhereInput>;
965
- password?: InputMaybe<StringWhereInput>;
966
- OR?: InputMaybe<Array<InputMaybe<UserAuthenticationEmailPasswordWhereInput>>>;
967
- AND?: InputMaybe<Array<InputMaybe<UserAuthenticationEmailPasswordWhereInput>>>;
882
+ email?: EmailWhereInput;
883
+ password?: StringWhereInput;
884
+ OR?: UserAuthenticationEmailPasswordWhereInput[];
885
+ AND?: UserAuthenticationEmailPasswordWhereInput[];
968
886
  };
969
887
 
970
888
  export type EmailWhereInput = {
971
- equalTo?: InputMaybe<Scalars['Email']['input']>;
972
- notEqualTo?: InputMaybe<Scalars['Email']['input']>;
973
- in?: InputMaybe<Array<InputMaybe<Scalars['Email']['input']>>>;
974
- notIn?: InputMaybe<Array<InputMaybe<Scalars['Email']['input']>>>;
889
+ equalTo?: Scalars['Email']['input'];
890
+ notEqualTo?: Scalars['Email']['input'];
891
+ in?: Scalars['Email']['input'][];
892
+ notIn?: Scalars['Email']['input'][];
975
893
  };
976
894
 
977
895
  export type UserAuthenticationGoogleWhereInput = {
978
- email?: InputMaybe<EmailWhereInput>;
979
- verifiedEmail?: InputMaybe<BooleanWhereInput>;
980
- idToken?: InputMaybe<StringWhereInput>;
981
- OR?: InputMaybe<Array<InputMaybe<UserAuthenticationGoogleWhereInput>>>;
982
- AND?: InputMaybe<Array<InputMaybe<UserAuthenticationGoogleWhereInput>>>;
896
+ email?: EmailWhereInput;
897
+ verifiedEmail?: BooleanWhereInput;
898
+ idToken?: StringWhereInput;
899
+ OR?: UserAuthenticationGoogleWhereInput[];
900
+ AND?: UserAuthenticationGoogleWhereInput[];
983
901
  };
984
902
 
985
903
  export type AnyWhereInput = {
986
- equalTo?: InputMaybe<Scalars['Any']['input']>;
987
- notEqualTo?: InputMaybe<Scalars['Any']['input']>;
904
+ equalTo?: Scalars['Any']['input'];
905
+ notEqualTo?: Scalars['Any']['input'];
988
906
  };
989
907
 
990
908
  export type RoleWhereInput = {
991
- id?: InputMaybe<IdWhereInput>;
992
- name?: InputMaybe<StringWhereInput>;
993
- users?: InputMaybe<UserWhereInput>;
994
- acl?: InputMaybe<RoleAclObjectWhereInput>;
995
- createdAt?: InputMaybe<DateWhereInput>;
996
- updatedAt?: InputMaybe<DateWhereInput>;
997
- search?: InputMaybe<SearchWhereInput>;
998
- OR?: InputMaybe<Array<InputMaybe<RoleWhereInput>>>;
999
- AND?: InputMaybe<Array<InputMaybe<RoleWhereInput>>>;
909
+ id?: IdWhereInput;
910
+ name?: StringWhereInput;
911
+ users?: UserWhereInput;
912
+ acl?: RoleACLObjectWhereInput;
913
+ createdAt?: DateWhereInput;
914
+ updatedAt?: DateWhereInput;
915
+ search?: SearchWhereInput;
916
+ OR?: RoleWhereInput[];
917
+ AND?: RoleWhereInput[];
1000
918
  };
1001
919
 
1002
- export type RoleAclObjectWhereInput = {
1003
- users?: InputMaybe<Array<InputMaybe<RoleAclObjectUsersAclWhereInput>>>;
1004
- roles?: InputMaybe<Array<InputMaybe<RoleAclObjectRolesAclWhereInput>>>;
1005
- OR?: InputMaybe<Array<InputMaybe<RoleAclObjectWhereInput>>>;
1006
- AND?: InputMaybe<Array<InputMaybe<RoleAclObjectWhereInput>>>;
920
+ export type RoleACLObjectWhereInput = {
921
+ users?: RoleACLObjectUsersACLWhereInput[];
922
+ roles?: RoleACLObjectRolesACLWhereInput[];
923
+ OR?: RoleACLObjectWhereInput[];
924
+ AND?: RoleACLObjectWhereInput[];
1007
925
  };
1008
926
 
1009
- export type RoleAclObjectUsersAclWhereInput = {
1010
- userId?: InputMaybe<StringWhereInput>;
1011
- read?: InputMaybe<BooleanWhereInput>;
1012
- write?: InputMaybe<BooleanWhereInput>;
1013
- OR?: InputMaybe<Array<InputMaybe<RoleAclObjectUsersAclWhereInput>>>;
1014
- AND?: InputMaybe<Array<InputMaybe<RoleAclObjectUsersAclWhereInput>>>;
927
+ export type RoleACLObjectUsersACLWhereInput = {
928
+ userId?: StringWhereInput;
929
+ read?: BooleanWhereInput;
930
+ write?: BooleanWhereInput;
931
+ OR?: RoleACLObjectUsersACLWhereInput[];
932
+ AND?: RoleACLObjectUsersACLWhereInput[];
1015
933
  };
1016
934
 
1017
- export type RoleAclObjectRolesAclWhereInput = {
1018
- roleId?: InputMaybe<StringWhereInput>;
1019
- read?: InputMaybe<BooleanWhereInput>;
1020
- write?: InputMaybe<BooleanWhereInput>;
1021
- OR?: InputMaybe<Array<InputMaybe<RoleAclObjectRolesAclWhereInput>>>;
1022
- AND?: InputMaybe<Array<InputMaybe<RoleAclObjectRolesAclWhereInput>>>;
935
+ export type RoleACLObjectRolesACLWhereInput = {
936
+ roleId?: StringWhereInput;
937
+ read?: BooleanWhereInput;
938
+ write?: BooleanWhereInput;
939
+ OR?: RoleACLObjectRolesACLWhereInput[];
940
+ AND?: RoleACLObjectRolesACLWhereInput[];
1023
941
  };
1024
942
 
1025
943
  export type _SessionWhereInput = {
1026
- id?: InputMaybe<IdWhereInput>;
1027
- user?: InputMaybe<UserWhereInput>;
1028
- accessToken?: InputMaybe<StringWhereInput>;
1029
- accessTokenExpiresAt?: InputMaybe<DateWhereInput>;
1030
- refreshToken?: InputMaybe<StringWhereInput>;
1031
- refreshTokenExpiresAt?: InputMaybe<DateWhereInput>;
1032
- acl?: InputMaybe<_SessionAclObjectWhereInput>;
1033
- createdAt?: InputMaybe<DateWhereInput>;
1034
- updatedAt?: InputMaybe<DateWhereInput>;
1035
- search?: InputMaybe<SearchWhereInput>;
1036
- OR?: InputMaybe<Array<InputMaybe<_SessionWhereInput>>>;
1037
- AND?: InputMaybe<Array<InputMaybe<_SessionWhereInput>>>;
1038
- };
1039
-
1040
- export type _SessionAclObjectWhereInput = {
1041
- users?: InputMaybe<Array<InputMaybe<_SessionAclObjectUsersAclWhereInput>>>;
1042
- roles?: InputMaybe<Array<InputMaybe<_SessionAclObjectRolesAclWhereInput>>>;
1043
- OR?: InputMaybe<Array<InputMaybe<_SessionAclObjectWhereInput>>>;
1044
- AND?: InputMaybe<Array<InputMaybe<_SessionAclObjectWhereInput>>>;
1045
- };
1046
-
1047
- export type _SessionAclObjectUsersAclWhereInput = {
1048
- userId?: InputMaybe<StringWhereInput>;
1049
- read?: InputMaybe<BooleanWhereInput>;
1050
- write?: InputMaybe<BooleanWhereInput>;
1051
- OR?: InputMaybe<Array<InputMaybe<_SessionAclObjectUsersAclWhereInput>>>;
1052
- AND?: InputMaybe<Array<InputMaybe<_SessionAclObjectUsersAclWhereInput>>>;
1053
- };
1054
-
1055
- export type _SessionAclObjectRolesAclWhereInput = {
1056
- roleId?: InputMaybe<StringWhereInput>;
1057
- read?: InputMaybe<BooleanWhereInput>;
1058
- write?: InputMaybe<BooleanWhereInput>;
1059
- OR?: InputMaybe<Array<InputMaybe<_SessionAclObjectRolesAclWhereInput>>>;
1060
- AND?: InputMaybe<Array<InputMaybe<_SessionAclObjectRolesAclWhereInput>>>;
944
+ id?: IdWhereInput;
945
+ user?: UserWhereInput;
946
+ accessToken?: StringWhereInput;
947
+ accessTokenExpiresAt?: DateWhereInput;
948
+ refreshToken?: StringWhereInput;
949
+ refreshTokenExpiresAt?: DateWhereInput;
950
+ acl?: _SessionACLObjectWhereInput;
951
+ createdAt?: DateWhereInput;
952
+ updatedAt?: DateWhereInput;
953
+ search?: SearchWhereInput;
954
+ OR?: _SessionWhereInput[];
955
+ AND?: _SessionWhereInput[];
956
+ };
957
+
958
+ export type _SessionACLObjectWhereInput = {
959
+ users?: _SessionACLObjectUsersACLWhereInput[];
960
+ roles?: _SessionACLObjectRolesACLWhereInput[];
961
+ OR?: _SessionACLObjectWhereInput[];
962
+ AND?: _SessionACLObjectWhereInput[];
963
+ };
964
+
965
+ export type _SessionACLObjectUsersACLWhereInput = {
966
+ userId?: StringWhereInput;
967
+ read?: BooleanWhereInput;
968
+ write?: BooleanWhereInput;
969
+ OR?: _SessionACLObjectUsersACLWhereInput[];
970
+ AND?: _SessionACLObjectUsersACLWhereInput[];
971
+ };
972
+
973
+ export type _SessionACLObjectRolesACLWhereInput = {
974
+ roleId?: StringWhereInput;
975
+ read?: BooleanWhereInput;
976
+ write?: BooleanWhereInput;
977
+ OR?: _SessionACLObjectRolesACLWhereInput[];
978
+ AND?: _SessionACLObjectRolesACLWhereInput[];
1061
979
  };
1062
980
 
1063
981
  export enum UserOrder {
1064
- NameAsc = 'name_ASC',
1065
- NameDesc = 'name_DESC',
1066
- AgeAsc = 'age_ASC',
1067
- AgeDesc = 'age_DESC',
1068
- AclAsc = 'acl_ASC',
1069
- AclDesc = 'acl_DESC',
1070
- CreatedAtAsc = 'createdAt_ASC',
1071
- CreatedAtDesc = 'createdAt_DESC',
1072
- UpdatedAtAsc = 'updatedAt_ASC',
1073
- UpdatedAtDesc = 'updatedAt_DESC',
1074
- SearchAsc = 'search_ASC',
1075
- SearchDesc = 'search_DESC',
1076
- AuthenticationAsc = 'authentication_ASC',
1077
- AuthenticationDesc = 'authentication_DESC',
1078
- ProviderAsc = 'provider_ASC',
1079
- ProviderDesc = 'provider_DESC',
1080
- IsOauthAsc = 'isOauth_ASC',
1081
- IsOauthDesc = 'isOauth_DESC',
1082
- EmailAsc = 'email_ASC',
1083
- EmailDesc = 'email_DESC',
1084
- VerifiedEmailAsc = 'verifiedEmail_ASC',
1085
- VerifiedEmailDesc = 'verifiedEmail_DESC',
1086
- RoleAsc = 'role_ASC',
1087
- RoleDesc = 'role_DESC',
1088
- SessionsAsc = 'sessions_ASC',
1089
- SessionsDesc = 'sessions_DESC'
982
+ name_ASC = "name_ASC",
983
+ name_DESC = "name_DESC",
984
+ age_ASC = "age_ASC",
985
+ age_DESC = "age_DESC",
986
+ acl_ASC = "acl_ASC",
987
+ acl_DESC = "acl_DESC",
988
+ createdAt_ASC = "createdAt_ASC",
989
+ createdAt_DESC = "createdAt_DESC",
990
+ updatedAt_ASC = "updatedAt_ASC",
991
+ updatedAt_DESC = "updatedAt_DESC",
992
+ search_ASC = "search_ASC",
993
+ search_DESC = "search_DESC",
994
+ authentication_ASC = "authentication_ASC",
995
+ authentication_DESC = "authentication_DESC",
996
+ provider_ASC = "provider_ASC",
997
+ provider_DESC = "provider_DESC",
998
+ isOauth_ASC = "isOauth_ASC",
999
+ isOauth_DESC = "isOauth_DESC",
1000
+ email_ASC = "email_ASC",
1001
+ email_DESC = "email_DESC",
1002
+ verifiedEmail_ASC = "verifiedEmail_ASC",
1003
+ verifiedEmail_DESC = "verifiedEmail_DESC",
1004
+ role_ASC = "role_ASC",
1005
+ role_DESC = "role_DESC",
1006
+ sessions_ASC = "sessions_ASC",
1007
+ sessions_DESC = "sessions_DESC",
1090
1008
  }
1091
1009
 
1092
1010
  export type PostConnection = {
1093
- __typename?: 'PostConnection';
1094
- totalCount?: Maybe<Scalars['Int']['output']>;
1095
- edges?: Maybe<Array<Maybe<PostEdge>>>;
1011
+ totalCount?: Scalars['Int']['output'];
1012
+ edges?: PostEdge[];
1096
1013
  };
1097
1014
 
1098
1015
  export type PostEdge = {
1099
- __typename?: 'PostEdge';
1100
1016
  node: Post;
1101
1017
  };
1102
1018
 
1103
1019
  export type PostWhereInput = {
1104
- id?: InputMaybe<IdWhereInput>;
1105
- name?: InputMaybe<StringWhereInput>;
1106
- test?: InputMaybe<FileWhereInput>;
1107
- acl?: InputMaybe<PostAclObjectWhereInput>;
1108
- createdAt?: InputMaybe<DateWhereInput>;
1109
- updatedAt?: InputMaybe<DateWhereInput>;
1110
- search?: InputMaybe<SearchWhereInput>;
1111
- OR?: InputMaybe<Array<InputMaybe<PostWhereInput>>>;
1112
- AND?: InputMaybe<Array<InputMaybe<PostWhereInput>>>;
1020
+ id?: IdWhereInput;
1021
+ name?: StringWhereInput;
1022
+ test?: FileWhereInput;
1023
+ acl?: PostACLObjectWhereInput;
1024
+ createdAt?: DateWhereInput;
1025
+ updatedAt?: DateWhereInput;
1026
+ search?: SearchWhereInput;
1027
+ OR?: PostWhereInput[];
1028
+ AND?: PostWhereInput[];
1113
1029
  };
1114
1030
 
1115
1031
  export type FileWhereInput = {
1116
- equalTo?: InputMaybe<Scalars['File']['input']>;
1117
- notEqualTo?: InputMaybe<Scalars['File']['input']>;
1118
- in?: InputMaybe<Array<InputMaybe<Scalars['File']['input']>>>;
1119
- notInt?: InputMaybe<Array<InputMaybe<Scalars['File']['input']>>>;
1032
+ equalTo?: Scalars['File']['input'];
1033
+ notEqualTo?: Scalars['File']['input'];
1034
+ in?: Scalars['File']['input'][];
1035
+ notInt?: Scalars['File']['input'][];
1120
1036
  };
1121
1037
 
1122
- export type PostAclObjectWhereInput = {
1123
- users?: InputMaybe<Array<InputMaybe<PostAclObjectUsersAclWhereInput>>>;
1124
- roles?: InputMaybe<Array<InputMaybe<PostAclObjectRolesAclWhereInput>>>;
1125
- OR?: InputMaybe<Array<InputMaybe<PostAclObjectWhereInput>>>;
1126
- AND?: InputMaybe<Array<InputMaybe<PostAclObjectWhereInput>>>;
1038
+ export type PostACLObjectWhereInput = {
1039
+ users?: PostACLObjectUsersACLWhereInput[];
1040
+ roles?: PostACLObjectRolesACLWhereInput[];
1041
+ OR?: PostACLObjectWhereInput[];
1042
+ AND?: PostACLObjectWhereInput[];
1127
1043
  };
1128
1044
 
1129
- export type PostAclObjectUsersAclWhereInput = {
1130
- userId?: InputMaybe<StringWhereInput>;
1131
- read?: InputMaybe<BooleanWhereInput>;
1132
- write?: InputMaybe<BooleanWhereInput>;
1133
- OR?: InputMaybe<Array<InputMaybe<PostAclObjectUsersAclWhereInput>>>;
1134
- AND?: InputMaybe<Array<InputMaybe<PostAclObjectUsersAclWhereInput>>>;
1045
+ export type PostACLObjectUsersACLWhereInput = {
1046
+ userId?: StringWhereInput;
1047
+ read?: BooleanWhereInput;
1048
+ write?: BooleanWhereInput;
1049
+ OR?: PostACLObjectUsersACLWhereInput[];
1050
+ AND?: PostACLObjectUsersACLWhereInput[];
1135
1051
  };
1136
1052
 
1137
- export type PostAclObjectRolesAclWhereInput = {
1138
- roleId?: InputMaybe<StringWhereInput>;
1139
- read?: InputMaybe<BooleanWhereInput>;
1140
- write?: InputMaybe<BooleanWhereInput>;
1141
- OR?: InputMaybe<Array<InputMaybe<PostAclObjectRolesAclWhereInput>>>;
1142
- AND?: InputMaybe<Array<InputMaybe<PostAclObjectRolesAclWhereInput>>>;
1053
+ export type PostACLObjectRolesACLWhereInput = {
1054
+ roleId?: StringWhereInput;
1055
+ read?: BooleanWhereInput;
1056
+ write?: BooleanWhereInput;
1057
+ OR?: PostACLObjectRolesACLWhereInput[];
1058
+ AND?: PostACLObjectRolesACLWhereInput[];
1143
1059
  };
1144
1060
 
1145
1061
  export enum PostOrder {
1146
- NameAsc = 'name_ASC',
1147
- NameDesc = 'name_DESC',
1148
- TestAsc = 'test_ASC',
1149
- TestDesc = 'test_DESC',
1150
- AclAsc = 'acl_ASC',
1151
- AclDesc = 'acl_DESC',
1152
- CreatedAtAsc = 'createdAt_ASC',
1153
- CreatedAtDesc = 'createdAt_DESC',
1154
- UpdatedAtAsc = 'updatedAt_ASC',
1155
- UpdatedAtDesc = 'updatedAt_DESC',
1156
- SearchAsc = 'search_ASC',
1157
- SearchDesc = 'search_DESC'
1062
+ name_ASC = "name_ASC",
1063
+ name_DESC = "name_DESC",
1064
+ test_ASC = "test_ASC",
1065
+ test_DESC = "test_DESC",
1066
+ acl_ASC = "acl_ASC",
1067
+ acl_DESC = "acl_DESC",
1068
+ createdAt_ASC = "createdAt_ASC",
1069
+ createdAt_DESC = "createdAt_DESC",
1070
+ updatedAt_ASC = "updatedAt_ASC",
1071
+ updatedAt_DESC = "updatedAt_DESC",
1072
+ search_ASC = "search_ASC",
1073
+ search_DESC = "search_DESC",
1158
1074
  }
1159
1075
 
1160
1076
  export enum _SessionOrder {
1161
- UserAsc = 'user_ASC',
1162
- UserDesc = 'user_DESC',
1163
- AccessTokenAsc = 'accessToken_ASC',
1164
- AccessTokenDesc = 'accessToken_DESC',
1165
- AccessTokenExpiresAtAsc = 'accessTokenExpiresAt_ASC',
1166
- AccessTokenExpiresAtDesc = 'accessTokenExpiresAt_DESC',
1167
- RefreshTokenAsc = 'refreshToken_ASC',
1168
- RefreshTokenDesc = 'refreshToken_DESC',
1169
- RefreshTokenExpiresAtAsc = 'refreshTokenExpiresAt_ASC',
1170
- RefreshTokenExpiresAtDesc = 'refreshTokenExpiresAt_DESC',
1171
- AclAsc = 'acl_ASC',
1172
- AclDesc = 'acl_DESC',
1173
- CreatedAtAsc = 'createdAt_ASC',
1174
- CreatedAtDesc = 'createdAt_DESC',
1175
- UpdatedAtAsc = 'updatedAt_ASC',
1176
- UpdatedAtDesc = 'updatedAt_DESC',
1177
- SearchAsc = 'search_ASC',
1178
- SearchDesc = 'search_DESC'
1077
+ user_ASC = "user_ASC",
1078
+ user_DESC = "user_DESC",
1079
+ accessToken_ASC = "accessToken_ASC",
1080
+ accessToken_DESC = "accessToken_DESC",
1081
+ accessTokenExpiresAt_ASC = "accessTokenExpiresAt_ASC",
1082
+ accessTokenExpiresAt_DESC = "accessTokenExpiresAt_DESC",
1083
+ refreshToken_ASC = "refreshToken_ASC",
1084
+ refreshToken_DESC = "refreshToken_DESC",
1085
+ refreshTokenExpiresAt_ASC = "refreshTokenExpiresAt_ASC",
1086
+ refreshTokenExpiresAt_DESC = "refreshTokenExpiresAt_DESC",
1087
+ acl_ASC = "acl_ASC",
1088
+ acl_DESC = "acl_DESC",
1089
+ createdAt_ASC = "createdAt_ASC",
1090
+ createdAt_DESC = "createdAt_DESC",
1091
+ updatedAt_ASC = "updatedAt_ASC",
1092
+ updatedAt_DESC = "updatedAt_DESC",
1093
+ search_ASC = "search_ASC",
1094
+ search_DESC = "search_DESC",
1179
1095
  }
1180
1096
 
1181
1097
  export type RoleConnection = {
1182
- __typename?: 'RoleConnection';
1183
- totalCount?: Maybe<Scalars['Int']['output']>;
1184
- edges?: Maybe<Array<Maybe<RoleEdge>>>;
1098
+ totalCount?: Scalars['Int']['output'];
1099
+ edges?: RoleEdge[];
1185
1100
  };
1186
1101
 
1187
1102
  export type RoleEdge = {
1188
- __typename?: 'RoleEdge';
1189
1103
  node: Role;
1190
1104
  };
1191
1105
 
1192
1106
  export enum RoleOrder {
1193
- NameAsc = 'name_ASC',
1194
- NameDesc = 'name_DESC',
1195
- UsersAsc = 'users_ASC',
1196
- UsersDesc = 'users_DESC',
1197
- AclAsc = 'acl_ASC',
1198
- AclDesc = 'acl_DESC',
1199
- CreatedAtAsc = 'createdAt_ASC',
1200
- CreatedAtDesc = 'createdAt_DESC',
1201
- UpdatedAtAsc = 'updatedAt_ASC',
1202
- UpdatedAtDesc = 'updatedAt_DESC',
1203
- SearchAsc = 'search_ASC',
1204
- SearchDesc = 'search_DESC'
1107
+ name_ASC = "name_ASC",
1108
+ name_DESC = "name_DESC",
1109
+ users_ASC = "users_ASC",
1110
+ users_DESC = "users_DESC",
1111
+ acl_ASC = "acl_ASC",
1112
+ acl_DESC = "acl_DESC",
1113
+ createdAt_ASC = "createdAt_ASC",
1114
+ createdAt_DESC = "createdAt_DESC",
1115
+ updatedAt_ASC = "updatedAt_ASC",
1116
+ updatedAt_DESC = "updatedAt_DESC",
1117
+ search_ASC = "search_ASC",
1118
+ search_DESC = "search_DESC",
1205
1119
  }
1206
1120
 
1207
1121
  export type PaymentConnection = {
1208
- __typename?: 'PaymentConnection';
1209
- totalCount?: Maybe<Scalars['Int']['output']>;
1210
- edges?: Maybe<Array<Maybe<PaymentEdge>>>;
1122
+ totalCount?: Scalars['Int']['output'];
1123
+ edges?: PaymentEdge[];
1211
1124
  };
1212
1125
 
1213
1126
  export type PaymentEdge = {
1214
- __typename?: 'PaymentEdge';
1215
1127
  node: Payment;
1216
1128
  };
1217
1129
 
1218
1130
  export type PaymentWhereInput = {
1219
- id?: InputMaybe<IdWhereInput>;
1220
- user?: InputMaybe<UserWhereInput>;
1221
- amount?: InputMaybe<IntWhereInput>;
1222
- currency?: InputMaybe<AnyWhereInput>;
1223
- acl?: InputMaybe<PaymentAclObjectWhereInput>;
1224
- createdAt?: InputMaybe<DateWhereInput>;
1225
- updatedAt?: InputMaybe<DateWhereInput>;
1226
- search?: InputMaybe<SearchWhereInput>;
1227
- OR?: InputMaybe<Array<InputMaybe<PaymentWhereInput>>>;
1228
- AND?: InputMaybe<Array<InputMaybe<PaymentWhereInput>>>;
1131
+ id?: IdWhereInput;
1132
+ user?: UserWhereInput;
1133
+ amount?: IntWhereInput;
1134
+ currency?: AnyWhereInput;
1135
+ acl?: PaymentACLObjectWhereInput;
1136
+ createdAt?: DateWhereInput;
1137
+ updatedAt?: DateWhereInput;
1138
+ search?: SearchWhereInput;
1139
+ OR?: PaymentWhereInput[];
1140
+ AND?: PaymentWhereInput[];
1229
1141
  };
1230
1142
 
1231
- export type PaymentAclObjectWhereInput = {
1232
- users?: InputMaybe<Array<InputMaybe<PaymentAclObjectUsersAclWhereInput>>>;
1233
- roles?: InputMaybe<Array<InputMaybe<PaymentAclObjectRolesAclWhereInput>>>;
1234
- OR?: InputMaybe<Array<InputMaybe<PaymentAclObjectWhereInput>>>;
1235
- AND?: InputMaybe<Array<InputMaybe<PaymentAclObjectWhereInput>>>;
1143
+ export type PaymentACLObjectWhereInput = {
1144
+ users?: PaymentACLObjectUsersACLWhereInput[];
1145
+ roles?: PaymentACLObjectRolesACLWhereInput[];
1146
+ OR?: PaymentACLObjectWhereInput[];
1147
+ AND?: PaymentACLObjectWhereInput[];
1236
1148
  };
1237
1149
 
1238
- export type PaymentAclObjectUsersAclWhereInput = {
1239
- userId?: InputMaybe<StringWhereInput>;
1240
- read?: InputMaybe<BooleanWhereInput>;
1241
- write?: InputMaybe<BooleanWhereInput>;
1242
- OR?: InputMaybe<Array<InputMaybe<PaymentAclObjectUsersAclWhereInput>>>;
1243
- AND?: InputMaybe<Array<InputMaybe<PaymentAclObjectUsersAclWhereInput>>>;
1150
+ export type PaymentACLObjectUsersACLWhereInput = {
1151
+ userId?: StringWhereInput;
1152
+ read?: BooleanWhereInput;
1153
+ write?: BooleanWhereInput;
1154
+ OR?: PaymentACLObjectUsersACLWhereInput[];
1155
+ AND?: PaymentACLObjectUsersACLWhereInput[];
1244
1156
  };
1245
1157
 
1246
- export type PaymentAclObjectRolesAclWhereInput = {
1247
- roleId?: InputMaybe<StringWhereInput>;
1248
- read?: InputMaybe<BooleanWhereInput>;
1249
- write?: InputMaybe<BooleanWhereInput>;
1250
- OR?: InputMaybe<Array<InputMaybe<PaymentAclObjectRolesAclWhereInput>>>;
1251
- AND?: InputMaybe<Array<InputMaybe<PaymentAclObjectRolesAclWhereInput>>>;
1158
+ export type PaymentACLObjectRolesACLWhereInput = {
1159
+ roleId?: StringWhereInput;
1160
+ read?: BooleanWhereInput;
1161
+ write?: BooleanWhereInput;
1162
+ OR?: PaymentACLObjectRolesACLWhereInput[];
1163
+ AND?: PaymentACLObjectRolesACLWhereInput[];
1252
1164
  };
1253
1165
 
1254
1166
  export enum PaymentOrder {
1255
- UserAsc = 'user_ASC',
1256
- UserDesc = 'user_DESC',
1257
- AmountAsc = 'amount_ASC',
1258
- AmountDesc = 'amount_DESC',
1259
- CurrencyAsc = 'currency_ASC',
1260
- CurrencyDesc = 'currency_DESC',
1261
- AclAsc = 'acl_ASC',
1262
- AclDesc = 'acl_DESC',
1263
- CreatedAtAsc = 'createdAt_ASC',
1264
- CreatedAtDesc = 'createdAt_DESC',
1265
- UpdatedAtAsc = 'updatedAt_ASC',
1266
- UpdatedAtDesc = 'updatedAt_DESC',
1267
- SearchAsc = 'search_ASC',
1268
- SearchDesc = 'search_DESC'
1167
+ user_ASC = "user_ASC",
1168
+ user_DESC = "user_DESC",
1169
+ amount_ASC = "amount_ASC",
1170
+ amount_DESC = "amount_DESC",
1171
+ currency_ASC = "currency_ASC",
1172
+ currency_DESC = "currency_DESC",
1173
+ acl_ASC = "acl_ASC",
1174
+ acl_DESC = "acl_DESC",
1175
+ createdAt_ASC = "createdAt_ASC",
1176
+ createdAt_DESC = "createdAt_DESC",
1177
+ updatedAt_ASC = "updatedAt_ASC",
1178
+ updatedAt_DESC = "updatedAt_DESC",
1179
+ search_ASC = "search_ASC",
1180
+ search_DESC = "search_DESC",
1269
1181
  }
1270
1182
 
1271
1183
  export type _InternalConfigConnection = {
1272
- __typename?: '_InternalConfigConnection';
1273
- totalCount?: Maybe<Scalars['Int']['output']>;
1274
- edges?: Maybe<Array<Maybe<_InternalConfigEdge>>>;
1184
+ totalCount?: Scalars['Int']['output'];
1185
+ edges?: _InternalConfigEdge[];
1275
1186
  };
1276
1187
 
1277
1188
  export type _InternalConfigEdge = {
1278
- __typename?: '_InternalConfigEdge';
1279
1189
  node: _InternalConfig;
1280
1190
  };
1281
1191
 
1282
1192
  export type _InternalConfigWhereInput = {
1283
- id?: InputMaybe<IdWhereInput>;
1284
- configKey?: InputMaybe<StringWhereInput>;
1285
- configValue?: InputMaybe<StringWhereInput>;
1286
- description?: InputMaybe<StringWhereInput>;
1287
- acl?: InputMaybe<_InternalConfigAclObjectWhereInput>;
1288
- createdAt?: InputMaybe<DateWhereInput>;
1289
- updatedAt?: InputMaybe<DateWhereInput>;
1290
- search?: InputMaybe<SearchWhereInput>;
1291
- OR?: InputMaybe<Array<InputMaybe<_InternalConfigWhereInput>>>;
1292
- AND?: InputMaybe<Array<InputMaybe<_InternalConfigWhereInput>>>;
1193
+ id?: IdWhereInput;
1194
+ configKey?: StringWhereInput;
1195
+ configValue?: StringWhereInput;
1196
+ description?: StringWhereInput;
1197
+ acl?: _InternalConfigACLObjectWhereInput;
1198
+ createdAt?: DateWhereInput;
1199
+ updatedAt?: DateWhereInput;
1200
+ search?: SearchWhereInput;
1201
+ OR?: _InternalConfigWhereInput[];
1202
+ AND?: _InternalConfigWhereInput[];
1293
1203
  };
1294
1204
 
1295
- export type _InternalConfigAclObjectWhereInput = {
1296
- users?: InputMaybe<Array<InputMaybe<_InternalConfigAclObjectUsersAclWhereInput>>>;
1297
- roles?: InputMaybe<Array<InputMaybe<_InternalConfigAclObjectRolesAclWhereInput>>>;
1298
- OR?: InputMaybe<Array<InputMaybe<_InternalConfigAclObjectWhereInput>>>;
1299
- AND?: InputMaybe<Array<InputMaybe<_InternalConfigAclObjectWhereInput>>>;
1205
+ export type _InternalConfigACLObjectWhereInput = {
1206
+ users?: _InternalConfigACLObjectUsersACLWhereInput[];
1207
+ roles?: _InternalConfigACLObjectRolesACLWhereInput[];
1208
+ OR?: _InternalConfigACLObjectWhereInput[];
1209
+ AND?: _InternalConfigACLObjectWhereInput[];
1300
1210
  };
1301
1211
 
1302
- export type _InternalConfigAclObjectUsersAclWhereInput = {
1303
- userId?: InputMaybe<StringWhereInput>;
1304
- read?: InputMaybe<BooleanWhereInput>;
1305
- write?: InputMaybe<BooleanWhereInput>;
1306
- OR?: InputMaybe<Array<InputMaybe<_InternalConfigAclObjectUsersAclWhereInput>>>;
1307
- AND?: InputMaybe<Array<InputMaybe<_InternalConfigAclObjectUsersAclWhereInput>>>;
1212
+ export type _InternalConfigACLObjectUsersACLWhereInput = {
1213
+ userId?: StringWhereInput;
1214
+ read?: BooleanWhereInput;
1215
+ write?: BooleanWhereInput;
1216
+ OR?: _InternalConfigACLObjectUsersACLWhereInput[];
1217
+ AND?: _InternalConfigACLObjectUsersACLWhereInput[];
1308
1218
  };
1309
1219
 
1310
- export type _InternalConfigAclObjectRolesAclWhereInput = {
1311
- roleId?: InputMaybe<StringWhereInput>;
1312
- read?: InputMaybe<BooleanWhereInput>;
1313
- write?: InputMaybe<BooleanWhereInput>;
1314
- OR?: InputMaybe<Array<InputMaybe<_InternalConfigAclObjectRolesAclWhereInput>>>;
1315
- AND?: InputMaybe<Array<InputMaybe<_InternalConfigAclObjectRolesAclWhereInput>>>;
1220
+ export type _InternalConfigACLObjectRolesACLWhereInput = {
1221
+ roleId?: StringWhereInput;
1222
+ read?: BooleanWhereInput;
1223
+ write?: BooleanWhereInput;
1224
+ OR?: _InternalConfigACLObjectRolesACLWhereInput[];
1225
+ AND?: _InternalConfigACLObjectRolesACLWhereInput[];
1316
1226
  };
1317
1227
 
1318
1228
  export enum _InternalConfigOrder {
1319
- ConfigKeyAsc = 'configKey_ASC',
1320
- ConfigKeyDesc = 'configKey_DESC',
1321
- ConfigValueAsc = 'configValue_ASC',
1322
- ConfigValueDesc = 'configValue_DESC',
1323
- DescriptionAsc = 'description_ASC',
1324
- DescriptionDesc = 'description_DESC',
1325
- AclAsc = 'acl_ASC',
1326
- AclDesc = 'acl_DESC',
1327
- CreatedAtAsc = 'createdAt_ASC',
1328
- CreatedAtDesc = 'createdAt_DESC',
1329
- UpdatedAtAsc = 'updatedAt_ASC',
1330
- UpdatedAtDesc = 'updatedAt_DESC',
1331
- SearchAsc = 'search_ASC',
1332
- SearchDesc = 'search_DESC'
1229
+ configKey_ASC = "configKey_ASC",
1230
+ configKey_DESC = "configKey_DESC",
1231
+ configValue_ASC = "configValue_ASC",
1232
+ configValue_DESC = "configValue_DESC",
1233
+ description_ASC = "description_ASC",
1234
+ description_DESC = "description_DESC",
1235
+ acl_ASC = "acl_ASC",
1236
+ acl_DESC = "acl_DESC",
1237
+ createdAt_ASC = "createdAt_ASC",
1238
+ createdAt_DESC = "createdAt_DESC",
1239
+ updatedAt_ASC = "updatedAt_ASC",
1240
+ updatedAt_DESC = "updatedAt_DESC",
1241
+ search_ASC = "search_ASC",
1242
+ search_DESC = "search_DESC",
1333
1243
  }
1334
1244
 
1335
1245
  export type MeOutput = {
1336
- __typename?: 'MeOutput';
1337
- user?: Maybe<User>;
1246
+ user?: User;
1338
1247
  };
1339
1248
 
1340
1249
  export type Invoice = {
1341
- __typename?: 'Invoice';
1342
1250
  amountDue: Scalars['Int']['output'];
1343
1251
  amountPaid: Scalars['Int']['output'];
1344
1252
  currency: Currency;
@@ -1349,797 +1257,719 @@ export type Invoice = {
1349
1257
  };
1350
1258
 
1351
1259
  export type Mutation = {
1352
- __typename?: 'Mutation';
1353
- /** User class */
1354
- createUser?: Maybe<CreateUserPayload>;
1355
- /** User class */
1260
+ createUser?: CreateUserPayload;
1356
1261
  createUsers: UserConnection;
1357
- /** User class */
1358
- updateUser?: Maybe<UpdateUserPayload>;
1359
- /** User class */
1262
+ updateUser?: UpdateUserPayload;
1360
1263
  updateUsers: UserConnection;
1361
- /** User class */
1362
- deleteUser?: Maybe<DeleteUserPayload>;
1363
- /** User class */
1264
+ deleteUser?: DeleteUserPayload;
1364
1265
  deleteUsers: UserConnection;
1365
- createPost?: Maybe<CreatePostPayload>;
1266
+ createPost?: CreatePostPayload;
1366
1267
  createPosts: PostConnection;
1367
- updatePost?: Maybe<UpdatePostPayload>;
1268
+ updatePost?: UpdatePostPayload;
1368
1269
  updatePosts: PostConnection;
1369
- deletePost?: Maybe<DeletePostPayload>;
1270
+ deletePost?: DeletePostPayload;
1370
1271
  deletePosts: PostConnection;
1371
- create_Session?: Maybe<Create_SessionPayload>;
1272
+ create_Session?: Create_SessionPayload;
1372
1273
  create_Sessions: _SessionConnection;
1373
- update_Session?: Maybe<Update_SessionPayload>;
1274
+ update_Session?: Update_SessionPayload;
1374
1275
  update_Sessions: _SessionConnection;
1375
- delete_Session?: Maybe<Delete_SessionPayload>;
1276
+ delete_Session?: Delete_SessionPayload;
1376
1277
  delete_Sessions: _SessionConnection;
1377
- createRole?: Maybe<CreateRolePayload>;
1278
+ createRole?: CreateRolePayload;
1378
1279
  createRoles: RoleConnection;
1379
- updateRole?: Maybe<UpdateRolePayload>;
1280
+ updateRole?: UpdateRolePayload;
1380
1281
  updateRoles: RoleConnection;
1381
- deleteRole?: Maybe<DeleteRolePayload>;
1282
+ deleteRole?: DeleteRolePayload;
1382
1283
  deleteRoles: RoleConnection;
1383
- createPayment?: Maybe<CreatePaymentPayload>;
1284
+ createPayment?: CreatePaymentPayload;
1384
1285
  createPayments: PaymentConnection;
1385
- updatePayment?: Maybe<UpdatePaymentPayload>;
1286
+ updatePayment?: UpdatePaymentPayload;
1386
1287
  updatePayments: PaymentConnection;
1387
- deletePayment?: Maybe<DeletePaymentPayload>;
1288
+ deletePayment?: DeletePaymentPayload;
1388
1289
  deletePayments: PaymentConnection;
1389
- create_InternalConfig?: Maybe<Create_InternalConfigPayload>;
1290
+ create_InternalConfig?: Create_InternalConfigPayload;
1390
1291
  create_InternalConfigs: _InternalConfigConnection;
1391
- update_InternalConfig?: Maybe<Update_InternalConfigPayload>;
1292
+ update_InternalConfig?: Update_InternalConfigPayload;
1392
1293
  update_InternalConfigs: _InternalConfigConnection;
1393
- delete_InternalConfig?: Maybe<Delete_InternalConfigPayload>;
1294
+ delete_InternalConfig?: Delete_InternalConfigPayload;
1394
1295
  delete_InternalConfigs: _InternalConfigConnection;
1395
1296
  createMutation: Scalars['Boolean']['output'];
1396
- customMutation?: Maybe<Scalars['Int']['output']>;
1397
- secondCustomMutation?: Maybe<Scalars['Int']['output']>;
1398
- /** Mutation to reset the password of the user */
1399
- resetPassword?: Maybe<Scalars['Boolean']['output']>;
1400
- /** Send an OTP code by email to the user */
1401
- sendOtpCode?: Maybe<Scalars['Boolean']['output']>;
1402
- /** Create a payment with the payment provider. Returns the url to redirect the user to pay */
1403
- makePayment?: Maybe<Scalars['String']['output']>;
1404
- cancelSubscription?: Maybe<Scalars['Boolean']['output']>;
1405
- /** Send basic email with text and html, returns the id of the email */
1406
- sendEmail?: Maybe<Scalars['String']['output']>;
1407
- signInWith?: Maybe<SignInWithOutput>;
1408
- signUpWith?: Maybe<SignUpWithOutput>;
1409
- signOut?: Maybe<Scalars['Boolean']['output']>;
1410
- refresh?: Maybe<RefreshSessionOutput>;
1411
- verifyChallenge?: Maybe<Scalars['Boolean']['output']>;
1297
+ customMutation?: Scalars['Int']['output'];
1298
+ secondCustomMutation?: Scalars['Int']['output'];
1299
+ resetPassword?: Scalars['Boolean']['output'];
1300
+ sendOtpCode?: Scalars['Boolean']['output'];
1301
+ makePayment?: Scalars['String']['output'];
1302
+ cancelSubscription?: Scalars['Boolean']['output'];
1303
+ sendEmail?: Scalars['String']['output'];
1304
+ signInWith?: SignInWithOutput;
1305
+ signUpWith?: SignUpWithOutput;
1306
+ signOut?: Scalars['Boolean']['output'];
1307
+ refresh?: RefreshSessionOutput;
1308
+ verifyChallenge?: Scalars['Boolean']['output'];
1412
1309
  };
1413
1310
 
1414
-
1415
1311
  export type MutationCreateUserArgs = {
1416
1312
  input: CreateUserInput;
1417
1313
  };
1418
1314
 
1419
-
1420
1315
  export type MutationCreateUsersArgs = {
1421
1316
  input: CreateUsersInput;
1422
1317
  };
1423
1318
 
1424
-
1425
1319
  export type MutationUpdateUserArgs = {
1426
1320
  input: UpdateUserInput;
1427
1321
  };
1428
1322
 
1429
-
1430
1323
  export type MutationUpdateUsersArgs = {
1431
1324
  input: UpdateUsersInput;
1432
1325
  };
1433
1326
 
1434
-
1435
1327
  export type MutationDeleteUserArgs = {
1436
1328
  input: DeleteUserInput;
1437
1329
  };
1438
1330
 
1439
-
1440
1331
  export type MutationDeleteUsersArgs = {
1441
1332
  input: DeleteUsersInput;
1442
1333
  };
1443
1334
 
1444
-
1445
1335
  export type MutationCreatePostArgs = {
1446
1336
  input: CreatePostInput;
1447
1337
  };
1448
1338
 
1449
-
1450
1339
  export type MutationCreatePostsArgs = {
1451
1340
  input: CreatePostsInput;
1452
1341
  };
1453
1342
 
1454
-
1455
1343
  export type MutationUpdatePostArgs = {
1456
1344
  input: UpdatePostInput;
1457
1345
  };
1458
1346
 
1459
-
1460
1347
  export type MutationUpdatePostsArgs = {
1461
1348
  input: UpdatePostsInput;
1462
1349
  };
1463
1350
 
1464
-
1465
1351
  export type MutationDeletePostArgs = {
1466
1352
  input: DeletePostInput;
1467
1353
  };
1468
1354
 
1469
-
1470
1355
  export type MutationDeletePostsArgs = {
1471
1356
  input: DeletePostsInput;
1472
1357
  };
1473
1358
 
1474
-
1475
1359
  export type MutationCreate_SessionArgs = {
1476
1360
  input: Create_SessionInput;
1477
1361
  };
1478
1362
 
1479
-
1480
1363
  export type MutationCreate_SessionsArgs = {
1481
1364
  input: Create_SessionsInput;
1482
1365
  };
1483
1366
 
1484
-
1485
1367
  export type MutationUpdate_SessionArgs = {
1486
1368
  input: Update_SessionInput;
1487
1369
  };
1488
1370
 
1489
-
1490
1371
  export type MutationUpdate_SessionsArgs = {
1491
1372
  input: Update_SessionsInput;
1492
1373
  };
1493
1374
 
1494
-
1495
1375
  export type MutationDelete_SessionArgs = {
1496
1376
  input: Delete_SessionInput;
1497
1377
  };
1498
1378
 
1499
-
1500
1379
  export type MutationDelete_SessionsArgs = {
1501
1380
  input: Delete_SessionsInput;
1502
1381
  };
1503
1382
 
1504
-
1505
1383
  export type MutationCreateRoleArgs = {
1506
1384
  input: CreateRoleInput;
1507
1385
  };
1508
1386
 
1509
-
1510
1387
  export type MutationCreateRolesArgs = {
1511
1388
  input: CreateRolesInput;
1512
1389
  };
1513
1390
 
1514
-
1515
1391
  export type MutationUpdateRoleArgs = {
1516
1392
  input: UpdateRoleInput;
1517
1393
  };
1518
1394
 
1519
-
1520
1395
  export type MutationUpdateRolesArgs = {
1521
1396
  input: UpdateRolesInput;
1522
1397
  };
1523
1398
 
1524
-
1525
1399
  export type MutationDeleteRoleArgs = {
1526
1400
  input: DeleteRoleInput;
1527
1401
  };
1528
1402
 
1529
-
1530
1403
  export type MutationDeleteRolesArgs = {
1531
1404
  input: DeleteRolesInput;
1532
1405
  };
1533
1406
 
1534
-
1535
1407
  export type MutationCreatePaymentArgs = {
1536
1408
  input: CreatePaymentInput;
1537
1409
  };
1538
1410
 
1539
-
1540
1411
  export type MutationCreatePaymentsArgs = {
1541
1412
  input: CreatePaymentsInput;
1542
1413
  };
1543
1414
 
1544
-
1545
1415
  export type MutationUpdatePaymentArgs = {
1546
1416
  input: UpdatePaymentInput;
1547
1417
  };
1548
1418
 
1549
-
1550
1419
  export type MutationUpdatePaymentsArgs = {
1551
1420
  input: UpdatePaymentsInput;
1552
1421
  };
1553
1422
 
1554
-
1555
1423
  export type MutationDeletePaymentArgs = {
1556
1424
  input: DeletePaymentInput;
1557
1425
  };
1558
1426
 
1559
-
1560
1427
  export type MutationDeletePaymentsArgs = {
1561
1428
  input: DeletePaymentsInput;
1562
1429
  };
1563
1430
 
1564
-
1565
1431
  export type MutationCreate_InternalConfigArgs = {
1566
1432
  input: Create_InternalConfigInput;
1567
1433
  };
1568
1434
 
1569
-
1570
1435
  export type MutationCreate_InternalConfigsArgs = {
1571
1436
  input: Create_InternalConfigsInput;
1572
1437
  };
1573
1438
 
1574
-
1575
1439
  export type MutationUpdate_InternalConfigArgs = {
1576
1440
  input: Update_InternalConfigInput;
1577
1441
  };
1578
1442
 
1579
-
1580
1443
  export type MutationUpdate_InternalConfigsArgs = {
1581
1444
  input: Update_InternalConfigsInput;
1582
1445
  };
1583
1446
 
1584
-
1585
1447
  export type MutationDelete_InternalConfigArgs = {
1586
1448
  input: Delete_InternalConfigInput;
1587
1449
  };
1588
1450
 
1589
-
1590
1451
  export type MutationDelete_InternalConfigsArgs = {
1591
1452
  input: Delete_InternalConfigsInput;
1592
1453
  };
1593
1454
 
1594
-
1595
1455
  export type MutationCreateMutationArgs = {
1596
1456
  input: CreateMutationInput;
1597
1457
  };
1598
1458
 
1599
-
1600
1459
  export type MutationCustomMutationArgs = {
1601
1460
  input: CustomMutationInput;
1602
1461
  };
1603
1462
 
1604
-
1605
1463
  export type MutationSecondCustomMutationArgs = {
1606
1464
  input: SecondCustomMutationInput;
1607
1465
  };
1608
1466
 
1609
-
1610
1467
  export type MutationResetPasswordArgs = {
1611
1468
  input: ResetPasswordInput;
1612
1469
  };
1613
1470
 
1614
-
1615
1471
  export type MutationSendOtpCodeArgs = {
1616
1472
  input: SendOtpCodeInput;
1617
1473
  };
1618
1474
 
1619
-
1620
1475
  export type MutationMakePaymentArgs = {
1621
1476
  input: MakePaymentInput;
1622
1477
  };
1623
1478
 
1624
-
1625
1479
  export type MutationCancelSubscriptionArgs = {
1626
1480
  input: CancelSubscriptionInput;
1627
1481
  };
1628
1482
 
1629
-
1630
1483
  export type MutationSendEmailArgs = {
1631
1484
  input: SendEmailInput;
1632
1485
  };
1633
1486
 
1634
-
1635
1487
  export type MutationSignInWithArgs = {
1636
1488
  input: SignInWithInput;
1637
1489
  };
1638
1490
 
1639
-
1640
1491
  export type MutationSignUpWithArgs = {
1641
1492
  input: SignUpWithInput;
1642
1493
  };
1643
1494
 
1644
-
1645
1495
  export type MutationRefreshArgs = {
1646
1496
  input: RefreshInput;
1647
1497
  };
1648
1498
 
1649
-
1650
1499
  export type MutationVerifyChallengeArgs = {
1651
1500
  input: VerifyChallengeInput;
1652
1501
  };
1653
1502
 
1654
1503
  export type CreateUserPayload = {
1655
- __typename?: 'CreateUserPayload';
1656
- user?: Maybe<User>;
1657
- clientMutationId?: Maybe<Scalars['String']['output']>;
1504
+ user?: User;
1505
+ clientMutationId?: Scalars['String']['output'];
1658
1506
  };
1659
1507
 
1660
1508
  export type CreateUserInput = {
1661
- fields?: InputMaybe<UserCreateFieldsInput>;
1509
+ fields?: UserCreateFieldsInput;
1662
1510
  };
1663
1511
 
1664
1512
  export type CreateUsersInput = {
1665
- fields: Array<InputMaybe<UserCreateFieldsInput>>;
1666
- offset?: InputMaybe<Scalars['Int']['input']>;
1667
- first?: InputMaybe<Scalars['Int']['input']>;
1668
- order?: InputMaybe<Array<InputMaybe<UserOrder>>>;
1513
+ fields: UserCreateFieldsInput[];
1514
+ offset?: Scalars['Int']['input'];
1515
+ first?: Scalars['Int']['input'];
1516
+ order?: UserOrder[];
1669
1517
  };
1670
1518
 
1671
1519
  export type UpdateUserPayload = {
1672
- __typename?: 'UpdateUserPayload';
1673
- user?: Maybe<User>;
1674
- clientMutationId?: Maybe<Scalars['String']['output']>;
1520
+ user?: User;
1521
+ clientMutationId?: Scalars['String']['output'];
1675
1522
  };
1676
1523
 
1677
1524
  export type UpdateUserInput = {
1678
- id?: InputMaybe<Scalars['ID']['input']>;
1679
- fields?: InputMaybe<UserUpdateFieldsInput>;
1525
+ id?: Scalars['ID']['input'];
1526
+ fields?: UserUpdateFieldsInput;
1680
1527
  };
1681
1528
 
1682
- /** User class */
1683
1529
  export type UserUpdateFieldsInput = {
1684
- name?: InputMaybe<Scalars['String']['input']>;
1685
- age?: InputMaybe<Scalars['Int']['input']>;
1686
- acl?: InputMaybe<UserAclObjectUpdateFieldsInput>;
1687
- createdAt?: InputMaybe<Scalars['Date']['input']>;
1688
- updatedAt?: InputMaybe<Scalars['Date']['input']>;
1689
- search?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
1690
- authentication?: InputMaybe<UserAuthenticationUpdateFieldsInput>;
1691
- provider?: InputMaybe<AuthenticationProvider>;
1692
- isOauth?: InputMaybe<Scalars['Boolean']['input']>;
1693
- email?: InputMaybe<Scalars['Email']['input']>;
1694
- verifiedEmail?: InputMaybe<Scalars['Boolean']['input']>;
1695
- role?: InputMaybe<RolePointerInput>;
1696
- sessions?: InputMaybe<_SessionRelationInput>;
1530
+ name?: Scalars['String']['input'];
1531
+ age?: Scalars['Int']['input'];
1532
+ acl?: UserACLObjectUpdateFieldsInput;
1533
+ createdAt?: Scalars['Date']['input'];
1534
+ updatedAt?: Scalars['Date']['input'];
1535
+ search?: Scalars['String']['input'][];
1536
+ authentication?: UserAuthenticationUpdateFieldsInput;
1537
+ provider?: AuthenticationProvider;
1538
+ isOauth?: Scalars['Boolean']['input'];
1539
+ email?: Scalars['Email']['input'];
1540
+ verifiedEmail?: Scalars['Boolean']['input'];
1541
+ role?: RolePointerInput;
1542
+ sessions?: _SessionRelationInput;
1697
1543
  };
1698
1544
 
1699
- export type UserAclObjectUpdateFieldsInput = {
1700
- users?: InputMaybe<Array<InputMaybe<UserAclObjectUsersAclUpdateFieldsInput>>>;
1701
- roles?: InputMaybe<Array<InputMaybe<UserAclObjectRolesAclUpdateFieldsInput>>>;
1545
+ export type UserACLObjectUpdateFieldsInput = {
1546
+ users?: UserACLObjectUsersACLUpdateFieldsInput[];
1547
+ roles?: UserACLObjectRolesACLUpdateFieldsInput[];
1702
1548
  };
1703
1549
 
1704
- export type UserAclObjectUsersAclUpdateFieldsInput = {
1705
- userId?: InputMaybe<Scalars['String']['input']>;
1706
- read?: InputMaybe<Scalars['Boolean']['input']>;
1707
- write?: InputMaybe<Scalars['Boolean']['input']>;
1550
+ export type UserACLObjectUsersACLUpdateFieldsInput = {
1551
+ userId?: Scalars['String']['input'];
1552
+ read?: Scalars['Boolean']['input'];
1553
+ write?: Scalars['Boolean']['input'];
1708
1554
  };
1709
1555
 
1710
- export type UserAclObjectRolesAclUpdateFieldsInput = {
1711
- roleId?: InputMaybe<Scalars['String']['input']>;
1712
- read?: InputMaybe<Scalars['Boolean']['input']>;
1713
- write?: InputMaybe<Scalars['Boolean']['input']>;
1556
+ export type UserACLObjectRolesACLUpdateFieldsInput = {
1557
+ roleId?: Scalars['String']['input'];
1558
+ read?: Scalars['Boolean']['input'];
1559
+ write?: Scalars['Boolean']['input'];
1714
1560
  };
1715
1561
 
1716
1562
  export type UserAuthenticationUpdateFieldsInput = {
1717
- emailPassword?: InputMaybe<UserAuthenticationEmailPasswordUpdateFieldsInput>;
1718
- google?: InputMaybe<UserAuthenticationGoogleUpdateFieldsInput>;
1563
+ emailPassword?: UserAuthenticationEmailPasswordUpdateFieldsInput;
1564
+ google?: UserAuthenticationGoogleUpdateFieldsInput;
1719
1565
  };
1720
1566
 
1721
1567
  export type UserAuthenticationEmailPasswordUpdateFieldsInput = {
1722
- email?: InputMaybe<Scalars['Email']['input']>;
1723
- password?: InputMaybe<Scalars['String']['input']>;
1568
+ email?: Scalars['Email']['input'];
1569
+ password?: Scalars['String']['input'];
1724
1570
  };
1725
1571
 
1726
1572
  export type UserAuthenticationGoogleUpdateFieldsInput = {
1727
- email?: InputMaybe<Scalars['Email']['input']>;
1728
- verifiedEmail?: InputMaybe<Scalars['Boolean']['input']>;
1729
- idToken?: InputMaybe<Scalars['String']['input']>;
1573
+ email?: Scalars['Email']['input'];
1574
+ verifiedEmail?: Scalars['Boolean']['input'];
1575
+ idToken?: Scalars['String']['input'];
1730
1576
  };
1731
1577
 
1732
1578
  export type UpdateUsersInput = {
1733
- fields?: InputMaybe<UserUpdateFieldsInput>;
1734
- where?: InputMaybe<UserWhereInput>;
1735
- offset?: InputMaybe<Scalars['Int']['input']>;
1736
- first?: InputMaybe<Scalars['Int']['input']>;
1737
- order?: InputMaybe<Array<InputMaybe<UserOrder>>>;
1579
+ fields?: UserUpdateFieldsInput;
1580
+ where?: UserWhereInput;
1581
+ offset?: Scalars['Int']['input'];
1582
+ first?: Scalars['Int']['input'];
1583
+ order?: UserOrder[];
1738
1584
  };
1739
1585
 
1740
1586
  export type DeleteUserPayload = {
1741
- __typename?: 'DeleteUserPayload';
1742
- user?: Maybe<User>;
1743
- clientMutationId?: Maybe<Scalars['String']['output']>;
1587
+ user?: User;
1588
+ clientMutationId?: Scalars['String']['output'];
1744
1589
  };
1745
1590
 
1746
1591
  export type DeleteUserInput = {
1747
- id?: InputMaybe<Scalars['ID']['input']>;
1592
+ id?: Scalars['ID']['input'];
1748
1593
  };
1749
1594
 
1750
1595
  export type DeleteUsersInput = {
1751
- where?: InputMaybe<UserWhereInput>;
1752
- order?: InputMaybe<Array<InputMaybe<UserOrder>>>;
1596
+ where?: UserWhereInput;
1597
+ order?: UserOrder[];
1753
1598
  };
1754
1599
 
1755
1600
  export type CreatePostPayload = {
1756
- __typename?: 'CreatePostPayload';
1757
- post?: Maybe<Post>;
1758
- clientMutationId?: Maybe<Scalars['String']['output']>;
1601
+ post?: Post;
1602
+ clientMutationId?: Scalars['String']['output'];
1759
1603
  };
1760
1604
 
1761
1605
  export type CreatePostInput = {
1762
- fields?: InputMaybe<PostCreateFieldsInput>;
1606
+ fields?: PostCreateFieldsInput;
1763
1607
  };
1764
1608
 
1765
1609
  export type CreatePostsInput = {
1766
- fields: Array<InputMaybe<PostCreateFieldsInput>>;
1767
- offset?: InputMaybe<Scalars['Int']['input']>;
1768
- first?: InputMaybe<Scalars['Int']['input']>;
1769
- order?: InputMaybe<Array<InputMaybe<PostOrder>>>;
1610
+ fields: PostCreateFieldsInput[];
1611
+ offset?: Scalars['Int']['input'];
1612
+ first?: Scalars['Int']['input'];
1613
+ order?: PostOrder[];
1770
1614
  };
1771
1615
 
1772
1616
  export type UpdatePostPayload = {
1773
- __typename?: 'UpdatePostPayload';
1774
- post?: Maybe<Post>;
1775
- clientMutationId?: Maybe<Scalars['String']['output']>;
1617
+ post?: Post;
1618
+ clientMutationId?: Scalars['String']['output'];
1776
1619
  };
1777
1620
 
1778
1621
  export type UpdatePostInput = {
1779
- id?: InputMaybe<Scalars['ID']['input']>;
1780
- fields?: InputMaybe<PostUpdateFieldsInput>;
1622
+ id?: Scalars['ID']['input'];
1623
+ fields?: PostUpdateFieldsInput;
1781
1624
  };
1782
1625
 
1783
1626
  export type PostUpdateFieldsInput = {
1784
- name?: InputMaybe<Scalars['String']['input']>;
1785
- test?: InputMaybe<Scalars['File']['input']>;
1786
- acl?: InputMaybe<PostAclObjectUpdateFieldsInput>;
1787
- createdAt?: InputMaybe<Scalars['Date']['input']>;
1788
- updatedAt?: InputMaybe<Scalars['Date']['input']>;
1789
- search?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
1627
+ name?: Scalars['String']['input'];
1628
+ test?: Scalars['File']['input'];
1629
+ acl?: PostACLObjectUpdateFieldsInput;
1630
+ createdAt?: Scalars['Date']['input'];
1631
+ updatedAt?: Scalars['Date']['input'];
1632
+ search?: Scalars['String']['input'][];
1790
1633
  };
1791
1634
 
1792
- export type PostAclObjectUpdateFieldsInput = {
1793
- users?: InputMaybe<Array<InputMaybe<PostAclObjectUsersAclUpdateFieldsInput>>>;
1794
- roles?: InputMaybe<Array<InputMaybe<PostAclObjectRolesAclUpdateFieldsInput>>>;
1635
+ export type PostACLObjectUpdateFieldsInput = {
1636
+ users?: PostACLObjectUsersACLUpdateFieldsInput[];
1637
+ roles?: PostACLObjectRolesACLUpdateFieldsInput[];
1795
1638
  };
1796
1639
 
1797
- export type PostAclObjectUsersAclUpdateFieldsInput = {
1798
- userId?: InputMaybe<Scalars['String']['input']>;
1799
- read?: InputMaybe<Scalars['Boolean']['input']>;
1800
- write?: InputMaybe<Scalars['Boolean']['input']>;
1640
+ export type PostACLObjectUsersACLUpdateFieldsInput = {
1641
+ userId?: Scalars['String']['input'];
1642
+ read?: Scalars['Boolean']['input'];
1643
+ write?: Scalars['Boolean']['input'];
1801
1644
  };
1802
1645
 
1803
- export type PostAclObjectRolesAclUpdateFieldsInput = {
1804
- roleId?: InputMaybe<Scalars['String']['input']>;
1805
- read?: InputMaybe<Scalars['Boolean']['input']>;
1806
- write?: InputMaybe<Scalars['Boolean']['input']>;
1646
+ export type PostACLObjectRolesACLUpdateFieldsInput = {
1647
+ roleId?: Scalars['String']['input'];
1648
+ read?: Scalars['Boolean']['input'];
1649
+ write?: Scalars['Boolean']['input'];
1807
1650
  };
1808
1651
 
1809
1652
  export type UpdatePostsInput = {
1810
- fields?: InputMaybe<PostUpdateFieldsInput>;
1811
- where?: InputMaybe<PostWhereInput>;
1812
- offset?: InputMaybe<Scalars['Int']['input']>;
1813
- first?: InputMaybe<Scalars['Int']['input']>;
1814
- order?: InputMaybe<Array<InputMaybe<PostOrder>>>;
1653
+ fields?: PostUpdateFieldsInput;
1654
+ where?: PostWhereInput;
1655
+ offset?: Scalars['Int']['input'];
1656
+ first?: Scalars['Int']['input'];
1657
+ order?: PostOrder[];
1815
1658
  };
1816
1659
 
1817
1660
  export type DeletePostPayload = {
1818
- __typename?: 'DeletePostPayload';
1819
- post?: Maybe<Post>;
1820
- clientMutationId?: Maybe<Scalars['String']['output']>;
1661
+ post?: Post;
1662
+ clientMutationId?: Scalars['String']['output'];
1821
1663
  };
1822
1664
 
1823
1665
  export type DeletePostInput = {
1824
- id?: InputMaybe<Scalars['ID']['input']>;
1666
+ id?: Scalars['ID']['input'];
1825
1667
  };
1826
1668
 
1827
1669
  export type DeletePostsInput = {
1828
- where?: InputMaybe<PostWhereInput>;
1829
- order?: InputMaybe<Array<InputMaybe<PostOrder>>>;
1670
+ where?: PostWhereInput;
1671
+ order?: PostOrder[];
1830
1672
  };
1831
1673
 
1832
1674
  export type Create_SessionPayload = {
1833
- __typename?: 'Create_SessionPayload';
1834
- _session?: Maybe<_Session>;
1835
- clientMutationId?: Maybe<Scalars['String']['output']>;
1675
+ _session?: _Session;
1676
+ clientMutationId?: Scalars['String']['output'];
1836
1677
  };
1837
1678
 
1838
1679
  export type Create_SessionInput = {
1839
- fields?: InputMaybe<_SessionCreateFieldsInput>;
1680
+ fields?: _SessionCreateFieldsInput;
1840
1681
  };
1841
1682
 
1842
1683
  export type Create_SessionsInput = {
1843
- fields: Array<InputMaybe<_SessionCreateFieldsInput>>;
1844
- offset?: InputMaybe<Scalars['Int']['input']>;
1845
- first?: InputMaybe<Scalars['Int']['input']>;
1846
- order?: InputMaybe<Array<InputMaybe<_SessionOrder>>>;
1684
+ fields: _SessionCreateFieldsInput[];
1685
+ offset?: Scalars['Int']['input'];
1686
+ first?: Scalars['Int']['input'];
1687
+ order?: _SessionOrder[];
1847
1688
  };
1848
1689
 
1849
1690
  export type Update_SessionPayload = {
1850
- __typename?: 'Update_SessionPayload';
1851
- _session?: Maybe<_Session>;
1852
- clientMutationId?: Maybe<Scalars['String']['output']>;
1691
+ _session?: _Session;
1692
+ clientMutationId?: Scalars['String']['output'];
1853
1693
  };
1854
1694
 
1855
1695
  export type Update_SessionInput = {
1856
- id?: InputMaybe<Scalars['ID']['input']>;
1857
- fields?: InputMaybe<_SessionUpdateFieldsInput>;
1696
+ id?: Scalars['ID']['input'];
1697
+ fields?: _SessionUpdateFieldsInput;
1858
1698
  };
1859
1699
 
1860
1700
  export type _SessionUpdateFieldsInput = {
1861
- user?: InputMaybe<UserPointerInput>;
1862
- accessToken?: InputMaybe<Scalars['String']['input']>;
1863
- accessTokenExpiresAt?: InputMaybe<Scalars['Date']['input']>;
1864
- refreshToken?: InputMaybe<Scalars['String']['input']>;
1865
- refreshTokenExpiresAt?: InputMaybe<Scalars['Date']['input']>;
1866
- acl?: InputMaybe<_SessionAclObjectUpdateFieldsInput>;
1867
- createdAt?: InputMaybe<Scalars['Date']['input']>;
1868
- updatedAt?: InputMaybe<Scalars['Date']['input']>;
1869
- search?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
1701
+ user?: UserPointerInput;
1702
+ accessToken?: Scalars['String']['input'];
1703
+ accessTokenExpiresAt?: Scalars['Date']['input'];
1704
+ refreshToken?: Scalars['String']['input'];
1705
+ refreshTokenExpiresAt?: Scalars['Date']['input'];
1706
+ acl?: _SessionACLObjectUpdateFieldsInput;
1707
+ createdAt?: Scalars['Date']['input'];
1708
+ updatedAt?: Scalars['Date']['input'];
1709
+ search?: Scalars['String']['input'][];
1870
1710
  };
1871
1711
 
1872
- export type _SessionAclObjectUpdateFieldsInput = {
1873
- users?: InputMaybe<Array<InputMaybe<_SessionAclObjectUsersAclUpdateFieldsInput>>>;
1874
- roles?: InputMaybe<Array<InputMaybe<_SessionAclObjectRolesAclUpdateFieldsInput>>>;
1712
+ export type _SessionACLObjectUpdateFieldsInput = {
1713
+ users?: _SessionACLObjectUsersACLUpdateFieldsInput[];
1714
+ roles?: _SessionACLObjectRolesACLUpdateFieldsInput[];
1875
1715
  };
1876
1716
 
1877
- export type _SessionAclObjectUsersAclUpdateFieldsInput = {
1878
- userId?: InputMaybe<Scalars['String']['input']>;
1879
- read?: InputMaybe<Scalars['Boolean']['input']>;
1880
- write?: InputMaybe<Scalars['Boolean']['input']>;
1717
+ export type _SessionACLObjectUsersACLUpdateFieldsInput = {
1718
+ userId?: Scalars['String']['input'];
1719
+ read?: Scalars['Boolean']['input'];
1720
+ write?: Scalars['Boolean']['input'];
1881
1721
  };
1882
1722
 
1883
- export type _SessionAclObjectRolesAclUpdateFieldsInput = {
1884
- roleId?: InputMaybe<Scalars['String']['input']>;
1885
- read?: InputMaybe<Scalars['Boolean']['input']>;
1886
- write?: InputMaybe<Scalars['Boolean']['input']>;
1723
+ export type _SessionACLObjectRolesACLUpdateFieldsInput = {
1724
+ roleId?: Scalars['String']['input'];
1725
+ read?: Scalars['Boolean']['input'];
1726
+ write?: Scalars['Boolean']['input'];
1887
1727
  };
1888
1728
 
1889
1729
  export type Update_SessionsInput = {
1890
- fields?: InputMaybe<_SessionUpdateFieldsInput>;
1891
- where?: InputMaybe<_SessionWhereInput>;
1892
- offset?: InputMaybe<Scalars['Int']['input']>;
1893
- first?: InputMaybe<Scalars['Int']['input']>;
1894
- order?: InputMaybe<Array<InputMaybe<_SessionOrder>>>;
1730
+ fields?: _SessionUpdateFieldsInput;
1731
+ where?: _SessionWhereInput;
1732
+ offset?: Scalars['Int']['input'];
1733
+ first?: Scalars['Int']['input'];
1734
+ order?: _SessionOrder[];
1895
1735
  };
1896
1736
 
1897
1737
  export type Delete_SessionPayload = {
1898
- __typename?: 'Delete_SessionPayload';
1899
- _session?: Maybe<_Session>;
1900
- clientMutationId?: Maybe<Scalars['String']['output']>;
1738
+ _session?: _Session;
1739
+ clientMutationId?: Scalars['String']['output'];
1901
1740
  };
1902
1741
 
1903
1742
  export type Delete_SessionInput = {
1904
- id?: InputMaybe<Scalars['ID']['input']>;
1743
+ id?: Scalars['ID']['input'];
1905
1744
  };
1906
1745
 
1907
1746
  export type Delete_SessionsInput = {
1908
- where?: InputMaybe<_SessionWhereInput>;
1909
- order?: InputMaybe<Array<InputMaybe<_SessionOrder>>>;
1747
+ where?: _SessionWhereInput;
1748
+ order?: _SessionOrder[];
1910
1749
  };
1911
1750
 
1912
1751
  export type CreateRolePayload = {
1913
- __typename?: 'CreateRolePayload';
1914
- role?: Maybe<Role>;
1915
- clientMutationId?: Maybe<Scalars['String']['output']>;
1752
+ role?: Role;
1753
+ clientMutationId?: Scalars['String']['output'];
1916
1754
  };
1917
1755
 
1918
1756
  export type CreateRoleInput = {
1919
- fields?: InputMaybe<RoleCreateFieldsInput>;
1757
+ fields?: RoleCreateFieldsInput;
1920
1758
  };
1921
1759
 
1922
1760
  export type CreateRolesInput = {
1923
- fields: Array<InputMaybe<RoleCreateFieldsInput>>;
1924
- offset?: InputMaybe<Scalars['Int']['input']>;
1925
- first?: InputMaybe<Scalars['Int']['input']>;
1926
- order?: InputMaybe<Array<InputMaybe<RoleOrder>>>;
1761
+ fields: RoleCreateFieldsInput[];
1762
+ offset?: Scalars['Int']['input'];
1763
+ first?: Scalars['Int']['input'];
1764
+ order?: RoleOrder[];
1927
1765
  };
1928
1766
 
1929
1767
  export type UpdateRolePayload = {
1930
- __typename?: 'UpdateRolePayload';
1931
- role?: Maybe<Role>;
1932
- clientMutationId?: Maybe<Scalars['String']['output']>;
1768
+ role?: Role;
1769
+ clientMutationId?: Scalars['String']['output'];
1933
1770
  };
1934
1771
 
1935
1772
  export type UpdateRoleInput = {
1936
- id?: InputMaybe<Scalars['ID']['input']>;
1937
- fields?: InputMaybe<RoleUpdateFieldsInput>;
1773
+ id?: Scalars['ID']['input'];
1774
+ fields?: RoleUpdateFieldsInput;
1938
1775
  };
1939
1776
 
1940
1777
  export type RoleUpdateFieldsInput = {
1941
- name?: InputMaybe<Scalars['String']['input']>;
1942
- users?: InputMaybe<UserRelationInput>;
1943
- acl?: InputMaybe<RoleAclObjectUpdateFieldsInput>;
1944
- createdAt?: InputMaybe<Scalars['Date']['input']>;
1945
- updatedAt?: InputMaybe<Scalars['Date']['input']>;
1946
- search?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
1778
+ name?: Scalars['String']['input'];
1779
+ users?: UserRelationInput;
1780
+ acl?: RoleACLObjectUpdateFieldsInput;
1781
+ createdAt?: Scalars['Date']['input'];
1782
+ updatedAt?: Scalars['Date']['input'];
1783
+ search?: Scalars['String']['input'][];
1947
1784
  };
1948
1785
 
1949
- export type RoleAclObjectUpdateFieldsInput = {
1950
- users?: InputMaybe<Array<InputMaybe<RoleAclObjectUsersAclUpdateFieldsInput>>>;
1951
- roles?: InputMaybe<Array<InputMaybe<RoleAclObjectRolesAclUpdateFieldsInput>>>;
1786
+ export type RoleACLObjectUpdateFieldsInput = {
1787
+ users?: RoleACLObjectUsersACLUpdateFieldsInput[];
1788
+ roles?: RoleACLObjectRolesACLUpdateFieldsInput[];
1952
1789
  };
1953
1790
 
1954
- export type RoleAclObjectUsersAclUpdateFieldsInput = {
1955
- userId?: InputMaybe<Scalars['String']['input']>;
1956
- read?: InputMaybe<Scalars['Boolean']['input']>;
1957
- write?: InputMaybe<Scalars['Boolean']['input']>;
1791
+ export type RoleACLObjectUsersACLUpdateFieldsInput = {
1792
+ userId?: Scalars['String']['input'];
1793
+ read?: Scalars['Boolean']['input'];
1794
+ write?: Scalars['Boolean']['input'];
1958
1795
  };
1959
1796
 
1960
- export type RoleAclObjectRolesAclUpdateFieldsInput = {
1961
- roleId?: InputMaybe<Scalars['String']['input']>;
1962
- read?: InputMaybe<Scalars['Boolean']['input']>;
1963
- write?: InputMaybe<Scalars['Boolean']['input']>;
1797
+ export type RoleACLObjectRolesACLUpdateFieldsInput = {
1798
+ roleId?: Scalars['String']['input'];
1799
+ read?: Scalars['Boolean']['input'];
1800
+ write?: Scalars['Boolean']['input'];
1964
1801
  };
1965
1802
 
1966
1803
  export type UpdateRolesInput = {
1967
- fields?: InputMaybe<RoleUpdateFieldsInput>;
1968
- where?: InputMaybe<RoleWhereInput>;
1969
- offset?: InputMaybe<Scalars['Int']['input']>;
1970
- first?: InputMaybe<Scalars['Int']['input']>;
1971
- order?: InputMaybe<Array<InputMaybe<RoleOrder>>>;
1804
+ fields?: RoleUpdateFieldsInput;
1805
+ where?: RoleWhereInput;
1806
+ offset?: Scalars['Int']['input'];
1807
+ first?: Scalars['Int']['input'];
1808
+ order?: RoleOrder[];
1972
1809
  };
1973
1810
 
1974
1811
  export type DeleteRolePayload = {
1975
- __typename?: 'DeleteRolePayload';
1976
- role?: Maybe<Role>;
1977
- clientMutationId?: Maybe<Scalars['String']['output']>;
1812
+ role?: Role;
1813
+ clientMutationId?: Scalars['String']['output'];
1978
1814
  };
1979
1815
 
1980
1816
  export type DeleteRoleInput = {
1981
- id?: InputMaybe<Scalars['ID']['input']>;
1817
+ id?: Scalars['ID']['input'];
1982
1818
  };
1983
1819
 
1984
1820
  export type DeleteRolesInput = {
1985
- where?: InputMaybe<RoleWhereInput>;
1986
- order?: InputMaybe<Array<InputMaybe<RoleOrder>>>;
1821
+ where?: RoleWhereInput;
1822
+ order?: RoleOrder[];
1987
1823
  };
1988
1824
 
1989
1825
  export type CreatePaymentPayload = {
1990
- __typename?: 'CreatePaymentPayload';
1991
- payment?: Maybe<Payment>;
1992
- clientMutationId?: Maybe<Scalars['String']['output']>;
1826
+ payment?: Payment;
1827
+ clientMutationId?: Scalars['String']['output'];
1993
1828
  };
1994
1829
 
1995
1830
  export type CreatePaymentInput = {
1996
- fields?: InputMaybe<PaymentCreateFieldsInput>;
1831
+ fields?: PaymentCreateFieldsInput;
1997
1832
  };
1998
1833
 
1999
1834
  export type CreatePaymentsInput = {
2000
- fields: Array<InputMaybe<PaymentCreateFieldsInput>>;
2001
- offset?: InputMaybe<Scalars['Int']['input']>;
2002
- first?: InputMaybe<Scalars['Int']['input']>;
2003
- order?: InputMaybe<Array<InputMaybe<PaymentOrder>>>;
1835
+ fields: PaymentCreateFieldsInput[];
1836
+ offset?: Scalars['Int']['input'];
1837
+ first?: Scalars['Int']['input'];
1838
+ order?: PaymentOrder[];
2004
1839
  };
2005
1840
 
2006
1841
  export type UpdatePaymentPayload = {
2007
- __typename?: 'UpdatePaymentPayload';
2008
- payment?: Maybe<Payment>;
2009
- clientMutationId?: Maybe<Scalars['String']['output']>;
1842
+ payment?: Payment;
1843
+ clientMutationId?: Scalars['String']['output'];
2010
1844
  };
2011
1845
 
2012
1846
  export type UpdatePaymentInput = {
2013
- id?: InputMaybe<Scalars['ID']['input']>;
2014
- fields?: InputMaybe<PaymentUpdateFieldsInput>;
1847
+ id?: Scalars['ID']['input'];
1848
+ fields?: PaymentUpdateFieldsInput;
2015
1849
  };
2016
1850
 
2017
1851
  export type PaymentUpdateFieldsInput = {
2018
- user?: InputMaybe<UserPointerInput>;
2019
- amount?: InputMaybe<Scalars['Int']['input']>;
2020
- currency?: InputMaybe<Currency>;
2021
- acl?: InputMaybe<PaymentAclObjectUpdateFieldsInput>;
2022
- createdAt?: InputMaybe<Scalars['Date']['input']>;
2023
- updatedAt?: InputMaybe<Scalars['Date']['input']>;
2024
- search?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
1852
+ user?: UserPointerInput;
1853
+ amount?: Scalars['Int']['input'];
1854
+ currency?: Currency;
1855
+ acl?: PaymentACLObjectUpdateFieldsInput;
1856
+ createdAt?: Scalars['Date']['input'];
1857
+ updatedAt?: Scalars['Date']['input'];
1858
+ search?: Scalars['String']['input'][];
2025
1859
  };
2026
1860
 
2027
- export type PaymentAclObjectUpdateFieldsInput = {
2028
- users?: InputMaybe<Array<InputMaybe<PaymentAclObjectUsersAclUpdateFieldsInput>>>;
2029
- roles?: InputMaybe<Array<InputMaybe<PaymentAclObjectRolesAclUpdateFieldsInput>>>;
1861
+ export type PaymentACLObjectUpdateFieldsInput = {
1862
+ users?: PaymentACLObjectUsersACLUpdateFieldsInput[];
1863
+ roles?: PaymentACLObjectRolesACLUpdateFieldsInput[];
2030
1864
  };
2031
1865
 
2032
- export type PaymentAclObjectUsersAclUpdateFieldsInput = {
2033
- userId?: InputMaybe<Scalars['String']['input']>;
2034
- read?: InputMaybe<Scalars['Boolean']['input']>;
2035
- write?: InputMaybe<Scalars['Boolean']['input']>;
1866
+ export type PaymentACLObjectUsersACLUpdateFieldsInput = {
1867
+ userId?: Scalars['String']['input'];
1868
+ read?: Scalars['Boolean']['input'];
1869
+ write?: Scalars['Boolean']['input'];
2036
1870
  };
2037
1871
 
2038
- export type PaymentAclObjectRolesAclUpdateFieldsInput = {
2039
- roleId?: InputMaybe<Scalars['String']['input']>;
2040
- read?: InputMaybe<Scalars['Boolean']['input']>;
2041
- write?: InputMaybe<Scalars['Boolean']['input']>;
1872
+ export type PaymentACLObjectRolesACLUpdateFieldsInput = {
1873
+ roleId?: Scalars['String']['input'];
1874
+ read?: Scalars['Boolean']['input'];
1875
+ write?: Scalars['Boolean']['input'];
2042
1876
  };
2043
1877
 
2044
1878
  export type UpdatePaymentsInput = {
2045
- fields?: InputMaybe<PaymentUpdateFieldsInput>;
2046
- where?: InputMaybe<PaymentWhereInput>;
2047
- offset?: InputMaybe<Scalars['Int']['input']>;
2048
- first?: InputMaybe<Scalars['Int']['input']>;
2049
- order?: InputMaybe<Array<InputMaybe<PaymentOrder>>>;
1879
+ fields?: PaymentUpdateFieldsInput;
1880
+ where?: PaymentWhereInput;
1881
+ offset?: Scalars['Int']['input'];
1882
+ first?: Scalars['Int']['input'];
1883
+ order?: PaymentOrder[];
2050
1884
  };
2051
1885
 
2052
1886
  export type DeletePaymentPayload = {
2053
- __typename?: 'DeletePaymentPayload';
2054
- payment?: Maybe<Payment>;
2055
- clientMutationId?: Maybe<Scalars['String']['output']>;
1887
+ payment?: Payment;
1888
+ clientMutationId?: Scalars['String']['output'];
2056
1889
  };
2057
1890
 
2058
1891
  export type DeletePaymentInput = {
2059
- id?: InputMaybe<Scalars['ID']['input']>;
1892
+ id?: Scalars['ID']['input'];
2060
1893
  };
2061
1894
 
2062
1895
  export type DeletePaymentsInput = {
2063
- where?: InputMaybe<PaymentWhereInput>;
2064
- order?: InputMaybe<Array<InputMaybe<PaymentOrder>>>;
1896
+ where?: PaymentWhereInput;
1897
+ order?: PaymentOrder[];
2065
1898
  };
2066
1899
 
2067
1900
  export type Create_InternalConfigPayload = {
2068
- __typename?: 'Create_InternalConfigPayload';
2069
- _internalConfig?: Maybe<_InternalConfig>;
2070
- clientMutationId?: Maybe<Scalars['String']['output']>;
1901
+ _internalConfig?: _InternalConfig;
1902
+ clientMutationId?: Scalars['String']['output'];
2071
1903
  };
2072
1904
 
2073
1905
  export type Create_InternalConfigInput = {
2074
- fields?: InputMaybe<_InternalConfigCreateFieldsInput>;
1906
+ fields?: _InternalConfigCreateFieldsInput;
2075
1907
  };
2076
1908
 
2077
1909
  export type Create_InternalConfigsInput = {
2078
- fields: Array<InputMaybe<_InternalConfigCreateFieldsInput>>;
2079
- offset?: InputMaybe<Scalars['Int']['input']>;
2080
- first?: InputMaybe<Scalars['Int']['input']>;
2081
- order?: InputMaybe<Array<InputMaybe<_InternalConfigOrder>>>;
1910
+ fields: _InternalConfigCreateFieldsInput[];
1911
+ offset?: Scalars['Int']['input'];
1912
+ first?: Scalars['Int']['input'];
1913
+ order?: _InternalConfigOrder[];
2082
1914
  };
2083
1915
 
2084
1916
  export type Update_InternalConfigPayload = {
2085
- __typename?: 'Update_InternalConfigPayload';
2086
- _internalConfig?: Maybe<_InternalConfig>;
2087
- clientMutationId?: Maybe<Scalars['String']['output']>;
1917
+ _internalConfig?: _InternalConfig;
1918
+ clientMutationId?: Scalars['String']['output'];
2088
1919
  };
2089
1920
 
2090
1921
  export type Update_InternalConfigInput = {
2091
- id?: InputMaybe<Scalars['ID']['input']>;
2092
- fields?: InputMaybe<_InternalConfigUpdateFieldsInput>;
1922
+ id?: Scalars['ID']['input'];
1923
+ fields?: _InternalConfigUpdateFieldsInput;
2093
1924
  };
2094
1925
 
2095
1926
  export type _InternalConfigUpdateFieldsInput = {
2096
- configKey?: InputMaybe<Scalars['String']['input']>;
2097
- configValue?: InputMaybe<Scalars['String']['input']>;
2098
- description?: InputMaybe<Scalars['String']['input']>;
2099
- acl?: InputMaybe<_InternalConfigAclObjectUpdateFieldsInput>;
2100
- createdAt?: InputMaybe<Scalars['Date']['input']>;
2101
- updatedAt?: InputMaybe<Scalars['Date']['input']>;
2102
- search?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
1927
+ configKey?: Scalars['String']['input'];
1928
+ configValue?: Scalars['String']['input'];
1929
+ description?: Scalars['String']['input'];
1930
+ acl?: _InternalConfigACLObjectUpdateFieldsInput;
1931
+ createdAt?: Scalars['Date']['input'];
1932
+ updatedAt?: Scalars['Date']['input'];
1933
+ search?: Scalars['String']['input'][];
2103
1934
  };
2104
1935
 
2105
- export type _InternalConfigAclObjectUpdateFieldsInput = {
2106
- users?: InputMaybe<Array<InputMaybe<_InternalConfigAclObjectUsersAclUpdateFieldsInput>>>;
2107
- roles?: InputMaybe<Array<InputMaybe<_InternalConfigAclObjectRolesAclUpdateFieldsInput>>>;
1936
+ export type _InternalConfigACLObjectUpdateFieldsInput = {
1937
+ users?: _InternalConfigACLObjectUsersACLUpdateFieldsInput[];
1938
+ roles?: _InternalConfigACLObjectRolesACLUpdateFieldsInput[];
2108
1939
  };
2109
1940
 
2110
- export type _InternalConfigAclObjectUsersAclUpdateFieldsInput = {
2111
- userId?: InputMaybe<Scalars['String']['input']>;
2112
- read?: InputMaybe<Scalars['Boolean']['input']>;
2113
- write?: InputMaybe<Scalars['Boolean']['input']>;
1941
+ export type _InternalConfigACLObjectUsersACLUpdateFieldsInput = {
1942
+ userId?: Scalars['String']['input'];
1943
+ read?: Scalars['Boolean']['input'];
1944
+ write?: Scalars['Boolean']['input'];
2114
1945
  };
2115
1946
 
2116
- export type _InternalConfigAclObjectRolesAclUpdateFieldsInput = {
2117
- roleId?: InputMaybe<Scalars['String']['input']>;
2118
- read?: InputMaybe<Scalars['Boolean']['input']>;
2119
- write?: InputMaybe<Scalars['Boolean']['input']>;
1947
+ export type _InternalConfigACLObjectRolesACLUpdateFieldsInput = {
1948
+ roleId?: Scalars['String']['input'];
1949
+ read?: Scalars['Boolean']['input'];
1950
+ write?: Scalars['Boolean']['input'];
2120
1951
  };
2121
1952
 
2122
1953
  export type Update_InternalConfigsInput = {
2123
- fields?: InputMaybe<_InternalConfigUpdateFieldsInput>;
2124
- where?: InputMaybe<_InternalConfigWhereInput>;
2125
- offset?: InputMaybe<Scalars['Int']['input']>;
2126
- first?: InputMaybe<Scalars['Int']['input']>;
2127
- order?: InputMaybe<Array<InputMaybe<_InternalConfigOrder>>>;
1954
+ fields?: _InternalConfigUpdateFieldsInput;
1955
+ where?: _InternalConfigWhereInput;
1956
+ offset?: Scalars['Int']['input'];
1957
+ first?: Scalars['Int']['input'];
1958
+ order?: _InternalConfigOrder[];
2128
1959
  };
2129
1960
 
2130
1961
  export type Delete_InternalConfigPayload = {
2131
- __typename?: 'Delete_InternalConfigPayload';
2132
- _internalConfig?: Maybe<_InternalConfig>;
2133
- clientMutationId?: Maybe<Scalars['String']['output']>;
1962
+ _internalConfig?: _InternalConfig;
1963
+ clientMutationId?: Scalars['String']['output'];
2134
1964
  };
2135
1965
 
2136
1966
  export type Delete_InternalConfigInput = {
2137
- id?: InputMaybe<Scalars['ID']['input']>;
1967
+ id?: Scalars['ID']['input'];
2138
1968
  };
2139
1969
 
2140
1970
  export type Delete_InternalConfigsInput = {
2141
- where?: InputMaybe<_InternalConfigWhereInput>;
2142
- order?: InputMaybe<Array<InputMaybe<_InternalConfigOrder>>>;
1971
+ where?: _InternalConfigWhereInput;
1972
+ order?: _InternalConfigOrder[];
2143
1973
  };
2144
1974
 
2145
1975
  export type CreateMutationInput = {
@@ -2152,7 +1982,7 @@ export type CustomMutationInput = {
2152
1982
  };
2153
1983
 
2154
1984
  export type SecondCustomMutationInput = {
2155
- sum?: InputMaybe<SecondCustomMutationSumInput>;
1985
+ sum?: SecondCustomMutationSumInput;
2156
1986
  };
2157
1987
 
2158
1988
  export type SecondCustomMutationSumInput = {
@@ -2172,13 +2002,13 @@ export type SendOtpCodeInput = {
2172
2002
  };
2173
2003
 
2174
2004
  export type MakePaymentInput = {
2175
- customerEmail?: InputMaybe<Scalars['Email']['input']>;
2005
+ customerEmail?: Scalars['Email']['input'];
2176
2006
  paymentMode: PaymentMode;
2177
2007
  successUrl: Scalars['String']['input'];
2178
2008
  cancelUrl: Scalars['String']['input'];
2179
- products: Array<InputMaybe<MakePaymentProductInput>>;
2180
- automaticTax?: InputMaybe<Scalars['Boolean']['input']>;
2181
- recurringInterval?: InputMaybe<PaymentReccuringInterval>;
2009
+ products: MakePaymentProductInput[];
2010
+ automaticTax?: Scalars['Boolean']['input'];
2011
+ recurringInterval?: PaymentReccuringInterval;
2182
2012
  };
2183
2013
 
2184
2014
  export type MakePaymentProductInput = {
@@ -2193,28 +2023,27 @@ export type CancelSubscriptionInput = {
2193
2023
 
2194
2024
  export type SendEmailInput = {
2195
2025
  from: Scalars['String']['input'];
2196
- to: Array<Scalars['String']['input']>;
2026
+ to: Scalars['String']['input'][];
2197
2027
  subject: Scalars['String']['input'];
2198
- text?: InputMaybe<Scalars['String']['input']>;
2199
- html?: InputMaybe<Scalars['String']['input']>;
2028
+ text?: Scalars['String']['input'];
2029
+ html?: Scalars['String']['input'];
2200
2030
  };
2201
2031
 
2202
2032
  export type SignInWithOutput = {
2203
- __typename?: 'SignInWithOutput';
2204
- id?: Maybe<Scalars['String']['output']>;
2205
- accessToken?: Maybe<Scalars['String']['output']>;
2206
- refreshToken?: Maybe<Scalars['String']['output']>;
2033
+ id?: Scalars['String']['output'];
2034
+ accessToken?: Scalars['String']['output'];
2035
+ refreshToken?: Scalars['String']['output'];
2207
2036
  };
2208
2037
 
2209
2038
  export type SignInWithInput = {
2210
- authentication?: InputMaybe<SignInWithAuthenticationInput>;
2039
+ authentication?: SignInWithAuthenticationInput;
2211
2040
  };
2212
2041
 
2213
2042
  export type SignInWithAuthenticationInput = {
2214
- emailPassword?: InputMaybe<SignInWithAuthenticationEmailPasswordInput>;
2215
- google?: InputMaybe<SignInWithAuthenticationGoogleInput>;
2216
- otp?: InputMaybe<SignInWithAuthenticationOtpInput>;
2217
- secondaryFactor?: InputMaybe<SecondaryFactor>;
2043
+ emailPassword?: SignInWithAuthenticationEmailPasswordInput;
2044
+ google?: SignInWithAuthenticationGoogleInput;
2045
+ otp?: SignInWithAuthenticationOtpInput;
2046
+ secondaryFactor?: SecondaryFactor;
2218
2047
  };
2219
2048
 
2220
2049
  export type SignInWithAuthenticationEmailPasswordInput = {
@@ -2228,25 +2057,24 @@ export type SignInWithAuthenticationGoogleInput = {
2228
2057
  };
2229
2058
 
2230
2059
  export type SignInWithAuthenticationOtpInput = {
2231
- code?: InputMaybe<Scalars['String']['input']>;
2060
+ code?: Scalars['String']['input'];
2232
2061
  };
2233
2062
 
2234
2063
  export type SignUpWithOutput = {
2235
- __typename?: 'SignUpWithOutput';
2236
- id?: Maybe<Scalars['String']['output']>;
2064
+ id?: Scalars['String']['output'];
2237
2065
  accessToken: Scalars['String']['output'];
2238
2066
  refreshToken: Scalars['String']['output'];
2239
2067
  };
2240
2068
 
2241
2069
  export type SignUpWithInput = {
2242
- authentication?: InputMaybe<SignUpWithAuthenticationInput>;
2070
+ authentication?: SignUpWithAuthenticationInput;
2243
2071
  };
2244
2072
 
2245
2073
  export type SignUpWithAuthenticationInput = {
2246
- emailPassword?: InputMaybe<SignUpWithAuthenticationEmailPasswordInput>;
2247
- google?: InputMaybe<SignUpWithAuthenticationGoogleInput>;
2248
- otp?: InputMaybe<SignUpWithAuthenticationOtpInput>;
2249
- secondaryFactor?: InputMaybe<SecondaryFactor>;
2074
+ emailPassword?: SignUpWithAuthenticationEmailPasswordInput;
2075
+ google?: SignUpWithAuthenticationGoogleInput;
2076
+ otp?: SignUpWithAuthenticationOtpInput;
2077
+ secondaryFactor?: SecondaryFactor;
2250
2078
  };
2251
2079
 
2252
2080
  export type SignUpWithAuthenticationEmailPasswordInput = {
@@ -2260,11 +2088,10 @@ export type SignUpWithAuthenticationGoogleInput = {
2260
2088
  };
2261
2089
 
2262
2090
  export type SignUpWithAuthenticationOtpInput = {
2263
- code?: InputMaybe<Scalars['String']['input']>;
2091
+ code?: Scalars['String']['input'];
2264
2092
  };
2265
2093
 
2266
2094
  export type RefreshSessionOutput = {
2267
- __typename?: 'RefreshSessionOutput';
2268
2095
  accessToken: Scalars['String']['output'];
2269
2096
  refreshToken: Scalars['String']['output'];
2270
2097
  };
@@ -2275,31 +2102,18 @@ export type RefreshInput = {
2275
2102
  };
2276
2103
 
2277
2104
  export type VerifyChallengeInput = {
2278
- factor?: InputMaybe<VerifyChallengeFactorInput>;
2105
+ factor?: VerifyChallengeFactorInput;
2279
2106
  };
2280
2107
 
2281
2108
  export type VerifyChallengeFactorInput = {
2282
- otp?: InputMaybe<VerifyChallengeFactorOtpInput>;
2109
+ otp?: VerifyChallengeFactorOtpInput;
2283
2110
  };
2284
2111
 
2285
2112
  export type VerifyChallengeFactorOtpInput = {
2286
- code?: InputMaybe<Scalars['String']['input']>;
2113
+ code?: Scalars['String']['input'];
2287
2114
  };
2288
2115
 
2289
2116
 
2290
-
2291
- export type SdkFunctionWrapper = <T>(action: (requestHeaders?:Record<string, string>) => Promise<T>, operationName: string, operationType?: string, variables?: any) => Promise<T>;
2292
-
2293
-
2294
- const defaultWrapper: SdkFunctionWrapper = (action, _operationName, _operationType, _variables) => action();
2295
-
2296
- export function getSdk(client: GraphQLClient, withWrapper: SdkFunctionWrapper = defaultWrapper) {
2297
- return {
2298
-
2299
- };
2300
- }
2301
- export type Sdk = ReturnType<typeof getSdk>;
2302
-
2303
2117
  export type WabeSchemaScalars = "Phone"
2304
2118
 
2305
2119
  export type WabeSchemaEnums = "RoleEnum" | "AuthenticationProvider" | "SecondaryFactor" | "PaymentMode" | "PaymentReccuringInterval" | "Currency"