wabe 0.5.4 → 0.5.6

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.
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,678 +440,813 @@ 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[];
597
+ };
598
+
599
+ export type _InternalConfig = {
600
+ id: Scalars['ID']['output'];
601
+ configKey: Scalars['String']['output'];
602
+ configValue: 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'][];
608
+ };
609
+
610
+ export type _InternalConfigACLObject = {
611
+ users?: _InternalConfigACLObjectUsersACL[];
612
+ roles?: _InternalConfigACLObjectRolesACL[];
613
+ };
614
+
615
+ export type _InternalConfigACLObjectUsersACL = {
616
+ userId: Scalars['String']['output'];
617
+ read: Scalars['Boolean']['output'];
618
+ write: Scalars['Boolean']['output'];
619
+ };
620
+
621
+ export type _InternalConfigACLObjectRolesACL = {
622
+ roleId: Scalars['String']['output'];
623
+ read: Scalars['Boolean']['output'];
624
+ write: Scalars['Boolean']['output'];
625
+ };
626
+
627
+ export type _InternalConfigInput = {
628
+ configKey: Scalars['String']['input'];
629
+ configValue: 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'][];
635
+ };
636
+
637
+ export type _InternalConfigACLObjectInput = {
638
+ users?: _InternalConfigACLObjectUsersACLInput[];
639
+ roles?: _InternalConfigACLObjectRolesACLInput[];
640
+ };
641
+
642
+ export type _InternalConfigACLObjectUsersACLInput = {
643
+ userId: Scalars['String']['input'];
644
+ read: Scalars['Boolean']['input'];
645
+ write: Scalars['Boolean']['input'];
646
+ };
647
+
648
+ export type _InternalConfigACLObjectRolesACLInput = {
649
+ roleId: Scalars['String']['input'];
650
+ read: Scalars['Boolean']['input'];
651
+ write: Scalars['Boolean']['input'];
652
+ };
653
+
654
+ export type _InternalConfigPointerInput = {
655
+ unlink?: Scalars['Boolean']['input'];
656
+ link?: Scalars['ID']['input'];
657
+ createAndLink?: _InternalConfigCreateFieldsInput;
658
+ };
659
+
660
+ export type _InternalConfigCreateFieldsInput = {
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'][];
668
+ };
669
+
670
+ export type _InternalConfigACLObjectCreateFieldsInput = {
671
+ users?: _InternalConfigACLObjectUsersACLCreateFieldsInput[];
672
+ roles?: _InternalConfigACLObjectRolesACLCreateFieldsInput[];
673
+ };
674
+
675
+ export type _InternalConfigACLObjectUsersACLCreateFieldsInput = {
676
+ userId?: Scalars['String']['input'];
677
+ read?: Scalars['Boolean']['input'];
678
+ write?: Scalars['Boolean']['input'];
679
+ };
680
+
681
+ export type _InternalConfigACLObjectRolesACLCreateFieldsInput = {
682
+ roleId?: Scalars['String']['input'];
683
+ read?: Scalars['Boolean']['input'];
684
+ write?: Scalars['Boolean']['input'];
685
+ };
686
+
687
+ export type _InternalConfigRelationInput = {
688
+ add?: Scalars['ID']['input'][];
689
+ remove?: Scalars['ID']['input'][];
690
+ createAndAdd?: _InternalConfigCreateFieldsInput[];
653
691
  };
654
692
 
655
693
  export type Query = {
656
- __typename?: 'Query';
657
- /** User class */
658
- user?: Maybe<User>;
659
- /** User class */
694
+ user?: User;
660
695
  users: UserConnection;
661
- post?: Maybe<Post>;
696
+ post?: Post;
662
697
  posts: PostConnection;
663
- _session?: Maybe<_Session>;
698
+ _session?: _Session;
664
699
  _sessions: _SessionConnection;
665
- role?: Maybe<Role>;
700
+ role?: Role;
666
701
  roles: RoleConnection;
667
- payment?: Maybe<Payment>;
702
+ payment?: Payment;
668
703
  payments: PaymentConnection;
669
- /** Hello world description */
670
- helloWorld?: Maybe<Scalars['String']['output']>;
671
- me?: Maybe<MeOutput>;
672
- /** Get invoices of a customer */
673
- getInvoices: Array<Maybe<Invoice>>;
704
+ _internalConfig?: _InternalConfig;
705
+ _internalConfigs: _InternalConfigConnection;
706
+ helloWorld?: Scalars['String']['output'];
707
+ me?: MeOutput;
708
+ getInvoices: Invoice[];
674
709
  };
675
710
 
676
-
677
711
  export type QueryUserArgs = {
678
- id?: InputMaybe<Scalars['ID']['input']>;
712
+ id?: Scalars['ID']['input'];
679
713
  };
680
714
 
681
-
682
715
  export type QueryUsersArgs = {
683
- where?: InputMaybe<UserWhereInput>;
684
- offset?: InputMaybe<Scalars['Int']['input']>;
685
- first?: InputMaybe<Scalars['Int']['input']>;
686
- order?: InputMaybe<Array<UserOrder>>;
716
+ where?: UserWhereInput;
717
+ offset?: Scalars['Int']['input'];
718
+ first?: Scalars['Int']['input'];
719
+ order?: UserOrder[];
687
720
  };
688
721
 
689
-
690
722
  export type QueryPostArgs = {
691
- id?: InputMaybe<Scalars['ID']['input']>;
723
+ id?: Scalars['ID']['input'];
692
724
  };
693
725
 
694
-
695
726
  export type QueryPostsArgs = {
696
- where?: InputMaybe<PostWhereInput>;
697
- offset?: InputMaybe<Scalars['Int']['input']>;
698
- first?: InputMaybe<Scalars['Int']['input']>;
699
- order?: InputMaybe<Array<PostOrder>>;
727
+ where?: PostWhereInput;
728
+ offset?: Scalars['Int']['input'];
729
+ first?: Scalars['Int']['input'];
730
+ order?: PostOrder[];
700
731
  };
701
732
 
702
-
703
- export type Query_SessionArgs = {
704
- id?: InputMaybe<Scalars['ID']['input']>;
733
+ export type Query_sessionArgs = {
734
+ id?: Scalars['ID']['input'];
705
735
  };
706
736
 
707
-
708
- export type Query_SessionsArgs = {
709
- where?: InputMaybe<_SessionWhereInput>;
710
- offset?: InputMaybe<Scalars['Int']['input']>;
711
- first?: InputMaybe<Scalars['Int']['input']>;
712
- 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[];
713
742
  };
714
743
 
715
-
716
744
  export type QueryRoleArgs = {
717
- id?: InputMaybe<Scalars['ID']['input']>;
745
+ id?: Scalars['ID']['input'];
718
746
  };
719
747
 
720
-
721
748
  export type QueryRolesArgs = {
722
- where?: InputMaybe<RoleWhereInput>;
723
- offset?: InputMaybe<Scalars['Int']['input']>;
724
- first?: InputMaybe<Scalars['Int']['input']>;
725
- order?: InputMaybe<Array<RoleOrder>>;
749
+ where?: RoleWhereInput;
750
+ offset?: Scalars['Int']['input'];
751
+ first?: Scalars['Int']['input'];
752
+ order?: RoleOrder[];
726
753
  };
727
754
 
728
-
729
755
  export type QueryPaymentArgs = {
730
- id?: InputMaybe<Scalars['ID']['input']>;
756
+ id?: Scalars['ID']['input'];
731
757
  };
732
758
 
733
-
734
759
  export type QueryPaymentsArgs = {
735
- where?: InputMaybe<PaymentWhereInput>;
736
- offset?: InputMaybe<Scalars['Int']['input']>;
737
- first?: InputMaybe<Scalars['Int']['input']>;
738
- order?: InputMaybe<Array<PaymentOrder>>;
760
+ where?: PaymentWhereInput;
761
+ offset?: Scalars['Int']['input'];
762
+ first?: Scalars['Int']['input'];
763
+ order?: PaymentOrder[];
739
764
  };
740
765
 
766
+ export type Query_internalConfigArgs = {
767
+ id?: Scalars['ID']['input'];
768
+ };
769
+
770
+ export type Query_internalConfigsArgs = {
771
+ where?: _InternalConfigWhereInput;
772
+ offset?: Scalars['Int']['input'];
773
+ first?: Scalars['Int']['input'];
774
+ order?: _InternalConfigOrder[];
775
+ };
741
776
 
742
777
  export type QueryHelloWorldArgs = {
743
778
  name: Scalars['String']['input'];
744
779
  };
745
780
 
746
-
747
781
  export type QueryGetInvoicesArgs = {
748
782
  email: Scalars['Email']['input'];
749
783
  };
750
784
 
751
- /** User class */
752
785
  export type UserWhereInput = {
753
- id?: InputMaybe<IdWhereInput>;
754
- name?: InputMaybe<StringWhereInput>;
755
- age?: InputMaybe<IntWhereInput>;
756
- acl?: InputMaybe<UserAclObjectWhereInput>;
757
- createdAt?: InputMaybe<DateWhereInput>;
758
- updatedAt?: InputMaybe<DateWhereInput>;
759
- search?: InputMaybe<SearchWhereInput>;
760
- authentication?: InputMaybe<UserAuthenticationWhereInput>;
761
- provider?: InputMaybe<AnyWhereInput>;
762
- isOauth?: InputMaybe<BooleanWhereInput>;
763
- email?: InputMaybe<EmailWhereInput>;
764
- verifiedEmail?: InputMaybe<BooleanWhereInput>;
765
- role?: InputMaybe<RoleWhereInput>;
766
- sessions?: InputMaybe<_SessionWhereInput>;
767
- OR?: InputMaybe<Array<InputMaybe<UserWhereInput>>>;
768
- 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[];
769
802
  };
770
803
 
771
804
  export type IdWhereInput = {
772
- equalTo?: InputMaybe<Scalars['ID']['input']>;
773
- notEqualTo?: InputMaybe<Scalars['ID']['input']>;
774
- in?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
775
- 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'][];
776
809
  };
777
810
 
778
811
  export type StringWhereInput = {
779
- equalTo?: InputMaybe<Scalars['String']['input']>;
780
- notEqualTo?: InputMaybe<Scalars['String']['input']>;
781
- in?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
782
- 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'][];
783
816
  };
784
817
 
785
818
  export type IntWhereInput = {
786
- equalTo?: InputMaybe<Scalars['Int']['input']>;
787
- notEqualTo?: InputMaybe<Scalars['Int']['input']>;
788
- lessThan?: InputMaybe<Scalars['Int']['input']>;
789
- lessThanOrEqualTo?: InputMaybe<Scalars['Int']['input']>;
790
- greaterThan?: InputMaybe<Scalars['Int']['input']>;
791
- greaterThanOrEqualTo?: InputMaybe<Scalars['Int']['input']>;
792
- in?: InputMaybe<Array<InputMaybe<Scalars['Int']['input']>>>;
793
- 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'][];
794
827
  };
795
828
 
796
- export type UserAclObjectWhereInput = {
797
- users?: InputMaybe<Array<InputMaybe<UserAclObjectUsersAclWhereInput>>>;
798
- roles?: InputMaybe<Array<InputMaybe<UserAclObjectRolesAclWhereInput>>>;
799
- OR?: InputMaybe<Array<InputMaybe<UserAclObjectWhereInput>>>;
800
- AND?: InputMaybe<Array<InputMaybe<UserAclObjectWhereInput>>>;
829
+ export type UserACLObjectWhereInput = {
830
+ users?: UserACLObjectUsersACLWhereInput[];
831
+ roles?: UserACLObjectRolesACLWhereInput[];
832
+ OR?: UserACLObjectWhereInput[];
833
+ AND?: UserACLObjectWhereInput[];
801
834
  };
802
835
 
803
- export type UserAclObjectUsersAclWhereInput = {
804
- userId?: InputMaybe<StringWhereInput>;
805
- read?: InputMaybe<BooleanWhereInput>;
806
- write?: InputMaybe<BooleanWhereInput>;
807
- OR?: InputMaybe<Array<InputMaybe<UserAclObjectUsersAclWhereInput>>>;
808
- AND?: InputMaybe<Array<InputMaybe<UserAclObjectUsersAclWhereInput>>>;
836
+ export type UserACLObjectUsersACLWhereInput = {
837
+ userId?: StringWhereInput;
838
+ read?: BooleanWhereInput;
839
+ write?: BooleanWhereInput;
840
+ OR?: UserACLObjectUsersACLWhereInput[];
841
+ AND?: UserACLObjectUsersACLWhereInput[];
809
842
  };
810
843
 
811
844
  export type BooleanWhereInput = {
812
- equalTo?: InputMaybe<Scalars['Boolean']['input']>;
813
- notEqualTo?: InputMaybe<Scalars['Boolean']['input']>;
814
- in?: InputMaybe<Array<InputMaybe<Scalars['Boolean']['input']>>>;
815
- 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'][];
816
849
  };
817
850
 
818
- export type UserAclObjectRolesAclWhereInput = {
819
- roleId?: InputMaybe<StringWhereInput>;
820
- read?: InputMaybe<BooleanWhereInput>;
821
- write?: InputMaybe<BooleanWhereInput>;
822
- OR?: InputMaybe<Array<InputMaybe<UserAclObjectRolesAclWhereInput>>>;
823
- AND?: InputMaybe<Array<InputMaybe<UserAclObjectRolesAclWhereInput>>>;
851
+ export type UserACLObjectRolesACLWhereInput = {
852
+ roleId?: StringWhereInput;
853
+ read?: BooleanWhereInput;
854
+ write?: BooleanWhereInput;
855
+ OR?: UserACLObjectRolesACLWhereInput[];
856
+ AND?: UserACLObjectRolesACLWhereInput[];
824
857
  };
825
858
 
826
859
  export type DateWhereInput = {
827
- equalTo?: InputMaybe<Scalars['Date']['input']>;
828
- notEqualTo?: InputMaybe<Scalars['Date']['input']>;
829
- in?: InputMaybe<Array<InputMaybe<Scalars['Date']['input']>>>;
830
- notIn?: InputMaybe<Array<InputMaybe<Scalars['Date']['input']>>>;
831
- lessThan?: InputMaybe<Scalars['Date']['input']>;
832
- lessThanOrEqualTo?: InputMaybe<Scalars['Date']['input']>;
833
- greaterThan?: InputMaybe<Scalars['Date']['input']>;
834
- 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'];
835
868
  };
836
869
 
837
870
  export type SearchWhereInput = {
838
- contains?: InputMaybe<Scalars['Search']['input']>;
871
+ contains?: Scalars['Search']['input'];
839
872
  };
840
873
 
841
874
  export type UserAuthenticationWhereInput = {
842
- emailPassword?: InputMaybe<UserAuthenticationEmailPasswordWhereInput>;
843
- google?: InputMaybe<UserAuthenticationGoogleWhereInput>;
844
- OR?: InputMaybe<Array<InputMaybe<UserAuthenticationWhereInput>>>;
845
- AND?: InputMaybe<Array<InputMaybe<UserAuthenticationWhereInput>>>;
875
+ emailPassword?: UserAuthenticationEmailPasswordWhereInput;
876
+ google?: UserAuthenticationGoogleWhereInput;
877
+ OR?: UserAuthenticationWhereInput[];
878
+ AND?: UserAuthenticationWhereInput[];
846
879
  };
847
880
 
848
881
  export type UserAuthenticationEmailPasswordWhereInput = {
849
- email?: InputMaybe<EmailWhereInput>;
850
- password?: InputMaybe<StringWhereInput>;
851
- OR?: InputMaybe<Array<InputMaybe<UserAuthenticationEmailPasswordWhereInput>>>;
852
- AND?: InputMaybe<Array<InputMaybe<UserAuthenticationEmailPasswordWhereInput>>>;
882
+ email?: EmailWhereInput;
883
+ password?: StringWhereInput;
884
+ OR?: UserAuthenticationEmailPasswordWhereInput[];
885
+ AND?: UserAuthenticationEmailPasswordWhereInput[];
853
886
  };
854
887
 
855
888
  export type EmailWhereInput = {
856
- equalTo?: InputMaybe<Scalars['Email']['input']>;
857
- notEqualTo?: InputMaybe<Scalars['Email']['input']>;
858
- in?: InputMaybe<Array<InputMaybe<Scalars['Email']['input']>>>;
859
- 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'][];
860
893
  };
861
894
 
862
895
  export type UserAuthenticationGoogleWhereInput = {
863
- email?: InputMaybe<EmailWhereInput>;
864
- verifiedEmail?: InputMaybe<BooleanWhereInput>;
865
- idToken?: InputMaybe<StringWhereInput>;
866
- OR?: InputMaybe<Array<InputMaybe<UserAuthenticationGoogleWhereInput>>>;
867
- AND?: InputMaybe<Array<InputMaybe<UserAuthenticationGoogleWhereInput>>>;
896
+ email?: EmailWhereInput;
897
+ verifiedEmail?: BooleanWhereInput;
898
+ idToken?: StringWhereInput;
899
+ OR?: UserAuthenticationGoogleWhereInput[];
900
+ AND?: UserAuthenticationGoogleWhereInput[];
868
901
  };
869
902
 
870
903
  export type AnyWhereInput = {
871
- equalTo?: InputMaybe<Scalars['Any']['input']>;
872
- notEqualTo?: InputMaybe<Scalars['Any']['input']>;
904
+ equalTo?: Scalars['Any']['input'];
905
+ notEqualTo?: Scalars['Any']['input'];
873
906
  };
874
907
 
875
908
  export type RoleWhereInput = {
876
- id?: InputMaybe<IdWhereInput>;
877
- name?: InputMaybe<StringWhereInput>;
878
- users?: InputMaybe<UserWhereInput>;
879
- acl?: InputMaybe<RoleAclObjectWhereInput>;
880
- createdAt?: InputMaybe<DateWhereInput>;
881
- updatedAt?: InputMaybe<DateWhereInput>;
882
- search?: InputMaybe<SearchWhereInput>;
883
- OR?: InputMaybe<Array<InputMaybe<RoleWhereInput>>>;
884
- 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[];
885
918
  };
886
919
 
887
- export type RoleAclObjectWhereInput = {
888
- users?: InputMaybe<Array<InputMaybe<RoleAclObjectUsersAclWhereInput>>>;
889
- roles?: InputMaybe<Array<InputMaybe<RoleAclObjectRolesAclWhereInput>>>;
890
- OR?: InputMaybe<Array<InputMaybe<RoleAclObjectWhereInput>>>;
891
- AND?: InputMaybe<Array<InputMaybe<RoleAclObjectWhereInput>>>;
920
+ export type RoleACLObjectWhereInput = {
921
+ users?: RoleACLObjectUsersACLWhereInput[];
922
+ roles?: RoleACLObjectRolesACLWhereInput[];
923
+ OR?: RoleACLObjectWhereInput[];
924
+ AND?: RoleACLObjectWhereInput[];
892
925
  };
893
926
 
894
- export type RoleAclObjectUsersAclWhereInput = {
895
- userId?: InputMaybe<StringWhereInput>;
896
- read?: InputMaybe<BooleanWhereInput>;
897
- write?: InputMaybe<BooleanWhereInput>;
898
- OR?: InputMaybe<Array<InputMaybe<RoleAclObjectUsersAclWhereInput>>>;
899
- AND?: InputMaybe<Array<InputMaybe<RoleAclObjectUsersAclWhereInput>>>;
927
+ export type RoleACLObjectUsersACLWhereInput = {
928
+ userId?: StringWhereInput;
929
+ read?: BooleanWhereInput;
930
+ write?: BooleanWhereInput;
931
+ OR?: RoleACLObjectUsersACLWhereInput[];
932
+ AND?: RoleACLObjectUsersACLWhereInput[];
900
933
  };
901
934
 
902
- export type RoleAclObjectRolesAclWhereInput = {
903
- roleId?: InputMaybe<StringWhereInput>;
904
- read?: InputMaybe<BooleanWhereInput>;
905
- write?: InputMaybe<BooleanWhereInput>;
906
- OR?: InputMaybe<Array<InputMaybe<RoleAclObjectRolesAclWhereInput>>>;
907
- AND?: InputMaybe<Array<InputMaybe<RoleAclObjectRolesAclWhereInput>>>;
935
+ export type RoleACLObjectRolesACLWhereInput = {
936
+ roleId?: StringWhereInput;
937
+ read?: BooleanWhereInput;
938
+ write?: BooleanWhereInput;
939
+ OR?: RoleACLObjectRolesACLWhereInput[];
940
+ AND?: RoleACLObjectRolesACLWhereInput[];
908
941
  };
909
942
 
910
943
  export type _SessionWhereInput = {
911
- id?: InputMaybe<IdWhereInput>;
912
- user?: InputMaybe<UserWhereInput>;
913
- accessToken?: InputMaybe<StringWhereInput>;
914
- accessTokenExpiresAt?: InputMaybe<DateWhereInput>;
915
- refreshToken?: InputMaybe<StringWhereInput>;
916
- refreshTokenExpiresAt?: InputMaybe<DateWhereInput>;
917
- acl?: InputMaybe<_SessionAclObjectWhereInput>;
918
- createdAt?: InputMaybe<DateWhereInput>;
919
- updatedAt?: InputMaybe<DateWhereInput>;
920
- search?: InputMaybe<SearchWhereInput>;
921
- OR?: InputMaybe<Array<InputMaybe<_SessionWhereInput>>>;
922
- AND?: InputMaybe<Array<InputMaybe<_SessionWhereInput>>>;
923
- };
924
-
925
- export type _SessionAclObjectWhereInput = {
926
- users?: InputMaybe<Array<InputMaybe<_SessionAclObjectUsersAclWhereInput>>>;
927
- roles?: InputMaybe<Array<InputMaybe<_SessionAclObjectRolesAclWhereInput>>>;
928
- OR?: InputMaybe<Array<InputMaybe<_SessionAclObjectWhereInput>>>;
929
- AND?: InputMaybe<Array<InputMaybe<_SessionAclObjectWhereInput>>>;
930
- };
931
-
932
- export type _SessionAclObjectUsersAclWhereInput = {
933
- userId?: InputMaybe<StringWhereInput>;
934
- read?: InputMaybe<BooleanWhereInput>;
935
- write?: InputMaybe<BooleanWhereInput>;
936
- OR?: InputMaybe<Array<InputMaybe<_SessionAclObjectUsersAclWhereInput>>>;
937
- AND?: InputMaybe<Array<InputMaybe<_SessionAclObjectUsersAclWhereInput>>>;
938
- };
939
-
940
- export type _SessionAclObjectRolesAclWhereInput = {
941
- roleId?: InputMaybe<StringWhereInput>;
942
- read?: InputMaybe<BooleanWhereInput>;
943
- write?: InputMaybe<BooleanWhereInput>;
944
- OR?: InputMaybe<Array<InputMaybe<_SessionAclObjectRolesAclWhereInput>>>;
945
- 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[];
946
979
  };
947
980
 
948
981
  export enum UserOrder {
949
- NameAsc = 'name_ASC',
950
- NameDesc = 'name_DESC',
951
- AgeAsc = 'age_ASC',
952
- AgeDesc = 'age_DESC',
953
- AclAsc = 'acl_ASC',
954
- AclDesc = 'acl_DESC',
955
- CreatedAtAsc = 'createdAt_ASC',
956
- CreatedAtDesc = 'createdAt_DESC',
957
- UpdatedAtAsc = 'updatedAt_ASC',
958
- UpdatedAtDesc = 'updatedAt_DESC',
959
- SearchAsc = 'search_ASC',
960
- SearchDesc = 'search_DESC',
961
- AuthenticationAsc = 'authentication_ASC',
962
- AuthenticationDesc = 'authentication_DESC',
963
- ProviderAsc = 'provider_ASC',
964
- ProviderDesc = 'provider_DESC',
965
- IsOauthAsc = 'isOauth_ASC',
966
- IsOauthDesc = 'isOauth_DESC',
967
- EmailAsc = 'email_ASC',
968
- EmailDesc = 'email_DESC',
969
- VerifiedEmailAsc = 'verifiedEmail_ASC',
970
- VerifiedEmailDesc = 'verifiedEmail_DESC',
971
- RoleAsc = 'role_ASC',
972
- RoleDesc = 'role_DESC',
973
- SessionsAsc = 'sessions_ASC',
974
- 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",
975
1008
  }
976
1009
 
977
1010
  export type PostConnection = {
978
- __typename?: 'PostConnection';
979
- totalCount?: Maybe<Scalars['Int']['output']>;
980
- edges?: Maybe<Array<Maybe<PostEdge>>>;
1011
+ totalCount?: Scalars['Int']['output'];
1012
+ edges?: PostEdge[];
981
1013
  };
982
1014
 
983
1015
  export type PostEdge = {
984
- __typename?: 'PostEdge';
985
1016
  node: Post;
986
1017
  };
987
1018
 
988
1019
  export type PostWhereInput = {
989
- id?: InputMaybe<IdWhereInput>;
990
- name?: InputMaybe<StringWhereInput>;
991
- test?: InputMaybe<FileWhereInput>;
992
- acl?: InputMaybe<PostAclObjectWhereInput>;
993
- createdAt?: InputMaybe<DateWhereInput>;
994
- updatedAt?: InputMaybe<DateWhereInput>;
995
- search?: InputMaybe<SearchWhereInput>;
996
- OR?: InputMaybe<Array<InputMaybe<PostWhereInput>>>;
997
- 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[];
998
1029
  };
999
1030
 
1000
1031
  export type FileWhereInput = {
1001
- equalTo?: InputMaybe<Scalars['File']['input']>;
1002
- notEqualTo?: InputMaybe<Scalars['File']['input']>;
1003
- in?: InputMaybe<Array<InputMaybe<Scalars['File']['input']>>>;
1004
- 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'][];
1005
1036
  };
1006
1037
 
1007
- export type PostAclObjectWhereInput = {
1008
- users?: InputMaybe<Array<InputMaybe<PostAclObjectUsersAclWhereInput>>>;
1009
- roles?: InputMaybe<Array<InputMaybe<PostAclObjectRolesAclWhereInput>>>;
1010
- OR?: InputMaybe<Array<InputMaybe<PostAclObjectWhereInput>>>;
1011
- AND?: InputMaybe<Array<InputMaybe<PostAclObjectWhereInput>>>;
1038
+ export type PostACLObjectWhereInput = {
1039
+ users?: PostACLObjectUsersACLWhereInput[];
1040
+ roles?: PostACLObjectRolesACLWhereInput[];
1041
+ OR?: PostACLObjectWhereInput[];
1042
+ AND?: PostACLObjectWhereInput[];
1012
1043
  };
1013
1044
 
1014
- export type PostAclObjectUsersAclWhereInput = {
1015
- userId?: InputMaybe<StringWhereInput>;
1016
- read?: InputMaybe<BooleanWhereInput>;
1017
- write?: InputMaybe<BooleanWhereInput>;
1018
- OR?: InputMaybe<Array<InputMaybe<PostAclObjectUsersAclWhereInput>>>;
1019
- AND?: InputMaybe<Array<InputMaybe<PostAclObjectUsersAclWhereInput>>>;
1045
+ export type PostACLObjectUsersACLWhereInput = {
1046
+ userId?: StringWhereInput;
1047
+ read?: BooleanWhereInput;
1048
+ write?: BooleanWhereInput;
1049
+ OR?: PostACLObjectUsersACLWhereInput[];
1050
+ AND?: PostACLObjectUsersACLWhereInput[];
1020
1051
  };
1021
1052
 
1022
- export type PostAclObjectRolesAclWhereInput = {
1023
- roleId?: InputMaybe<StringWhereInput>;
1024
- read?: InputMaybe<BooleanWhereInput>;
1025
- write?: InputMaybe<BooleanWhereInput>;
1026
- OR?: InputMaybe<Array<InputMaybe<PostAclObjectRolesAclWhereInput>>>;
1027
- AND?: InputMaybe<Array<InputMaybe<PostAclObjectRolesAclWhereInput>>>;
1053
+ export type PostACLObjectRolesACLWhereInput = {
1054
+ roleId?: StringWhereInput;
1055
+ read?: BooleanWhereInput;
1056
+ write?: BooleanWhereInput;
1057
+ OR?: PostACLObjectRolesACLWhereInput[];
1058
+ AND?: PostACLObjectRolesACLWhereInput[];
1028
1059
  };
1029
1060
 
1030
1061
  export enum PostOrder {
1031
- NameAsc = 'name_ASC',
1032
- NameDesc = 'name_DESC',
1033
- TestAsc = 'test_ASC',
1034
- TestDesc = 'test_DESC',
1035
- AclAsc = 'acl_ASC',
1036
- AclDesc = 'acl_DESC',
1037
- CreatedAtAsc = 'createdAt_ASC',
1038
- CreatedAtDesc = 'createdAt_DESC',
1039
- UpdatedAtAsc = 'updatedAt_ASC',
1040
- UpdatedAtDesc = 'updatedAt_DESC',
1041
- SearchAsc = 'search_ASC',
1042
- 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",
1043
1074
  }
1044
1075
 
1045
1076
  export enum _SessionOrder {
1046
- UserAsc = 'user_ASC',
1047
- UserDesc = 'user_DESC',
1048
- AccessTokenAsc = 'accessToken_ASC',
1049
- AccessTokenDesc = 'accessToken_DESC',
1050
- AccessTokenExpiresAtAsc = 'accessTokenExpiresAt_ASC',
1051
- AccessTokenExpiresAtDesc = 'accessTokenExpiresAt_DESC',
1052
- RefreshTokenAsc = 'refreshToken_ASC',
1053
- RefreshTokenDesc = 'refreshToken_DESC',
1054
- RefreshTokenExpiresAtAsc = 'refreshTokenExpiresAt_ASC',
1055
- RefreshTokenExpiresAtDesc = 'refreshTokenExpiresAt_DESC',
1056
- AclAsc = 'acl_ASC',
1057
- AclDesc = 'acl_DESC',
1058
- CreatedAtAsc = 'createdAt_ASC',
1059
- CreatedAtDesc = 'createdAt_DESC',
1060
- UpdatedAtAsc = 'updatedAt_ASC',
1061
- UpdatedAtDesc = 'updatedAt_DESC',
1062
- SearchAsc = 'search_ASC',
1063
- 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",
1064
1095
  }
1065
1096
 
1066
1097
  export type RoleConnection = {
1067
- __typename?: 'RoleConnection';
1068
- totalCount?: Maybe<Scalars['Int']['output']>;
1069
- edges?: Maybe<Array<Maybe<RoleEdge>>>;
1098
+ totalCount?: Scalars['Int']['output'];
1099
+ edges?: RoleEdge[];
1070
1100
  };
1071
1101
 
1072
1102
  export type RoleEdge = {
1073
- __typename?: 'RoleEdge';
1074
1103
  node: Role;
1075
1104
  };
1076
1105
 
1077
1106
  export enum RoleOrder {
1078
- NameAsc = 'name_ASC',
1079
- NameDesc = 'name_DESC',
1080
- UsersAsc = 'users_ASC',
1081
- UsersDesc = 'users_DESC',
1082
- AclAsc = 'acl_ASC',
1083
- AclDesc = 'acl_DESC',
1084
- CreatedAtAsc = 'createdAt_ASC',
1085
- CreatedAtDesc = 'createdAt_DESC',
1086
- UpdatedAtAsc = 'updatedAt_ASC',
1087
- UpdatedAtDesc = 'updatedAt_DESC',
1088
- SearchAsc = 'search_ASC',
1089
- 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",
1090
1119
  }
1091
1120
 
1092
1121
  export type PaymentConnection = {
1093
- __typename?: 'PaymentConnection';
1094
- totalCount?: Maybe<Scalars['Int']['output']>;
1095
- edges?: Maybe<Array<Maybe<PaymentEdge>>>;
1122
+ totalCount?: Scalars['Int']['output'];
1123
+ edges?: PaymentEdge[];
1096
1124
  };
1097
1125
 
1098
1126
  export type PaymentEdge = {
1099
- __typename?: 'PaymentEdge';
1100
1127
  node: Payment;
1101
1128
  };
1102
1129
 
1103
1130
  export type PaymentWhereInput = {
1104
- id?: InputMaybe<IdWhereInput>;
1105
- user?: InputMaybe<UserWhereInput>;
1106
- amount?: InputMaybe<IntWhereInput>;
1107
- currency?: InputMaybe<AnyWhereInput>;
1108
- acl?: InputMaybe<PaymentAclObjectWhereInput>;
1109
- createdAt?: InputMaybe<DateWhereInput>;
1110
- updatedAt?: InputMaybe<DateWhereInput>;
1111
- search?: InputMaybe<SearchWhereInput>;
1112
- OR?: InputMaybe<Array<InputMaybe<PaymentWhereInput>>>;
1113
- 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[];
1114
1141
  };
1115
1142
 
1116
- export type PaymentAclObjectWhereInput = {
1117
- users?: InputMaybe<Array<InputMaybe<PaymentAclObjectUsersAclWhereInput>>>;
1118
- roles?: InputMaybe<Array<InputMaybe<PaymentAclObjectRolesAclWhereInput>>>;
1119
- OR?: InputMaybe<Array<InputMaybe<PaymentAclObjectWhereInput>>>;
1120
- AND?: InputMaybe<Array<InputMaybe<PaymentAclObjectWhereInput>>>;
1143
+ export type PaymentACLObjectWhereInput = {
1144
+ users?: PaymentACLObjectUsersACLWhereInput[];
1145
+ roles?: PaymentACLObjectRolesACLWhereInput[];
1146
+ OR?: PaymentACLObjectWhereInput[];
1147
+ AND?: PaymentACLObjectWhereInput[];
1121
1148
  };
1122
1149
 
1123
- export type PaymentAclObjectUsersAclWhereInput = {
1124
- userId?: InputMaybe<StringWhereInput>;
1125
- read?: InputMaybe<BooleanWhereInput>;
1126
- write?: InputMaybe<BooleanWhereInput>;
1127
- OR?: InputMaybe<Array<InputMaybe<PaymentAclObjectUsersAclWhereInput>>>;
1128
- AND?: InputMaybe<Array<InputMaybe<PaymentAclObjectUsersAclWhereInput>>>;
1150
+ export type PaymentACLObjectUsersACLWhereInput = {
1151
+ userId?: StringWhereInput;
1152
+ read?: BooleanWhereInput;
1153
+ write?: BooleanWhereInput;
1154
+ OR?: PaymentACLObjectUsersACLWhereInput[];
1155
+ AND?: PaymentACLObjectUsersACLWhereInput[];
1129
1156
  };
1130
1157
 
1131
- export type PaymentAclObjectRolesAclWhereInput = {
1132
- roleId?: InputMaybe<StringWhereInput>;
1133
- read?: InputMaybe<BooleanWhereInput>;
1134
- write?: InputMaybe<BooleanWhereInput>;
1135
- OR?: InputMaybe<Array<InputMaybe<PaymentAclObjectRolesAclWhereInput>>>;
1136
- AND?: InputMaybe<Array<InputMaybe<PaymentAclObjectRolesAclWhereInput>>>;
1158
+ export type PaymentACLObjectRolesACLWhereInput = {
1159
+ roleId?: StringWhereInput;
1160
+ read?: BooleanWhereInput;
1161
+ write?: BooleanWhereInput;
1162
+ OR?: PaymentACLObjectRolesACLWhereInput[];
1163
+ AND?: PaymentACLObjectRolesACLWhereInput[];
1137
1164
  };
1138
1165
 
1139
1166
  export enum PaymentOrder {
1140
- UserAsc = 'user_ASC',
1141
- UserDesc = 'user_DESC',
1142
- AmountAsc = 'amount_ASC',
1143
- AmountDesc = 'amount_DESC',
1144
- CurrencyAsc = 'currency_ASC',
1145
- CurrencyDesc = 'currency_DESC',
1146
- AclAsc = 'acl_ASC',
1147
- AclDesc = 'acl_DESC',
1148
- CreatedAtAsc = 'createdAt_ASC',
1149
- CreatedAtDesc = 'createdAt_DESC',
1150
- UpdatedAtAsc = 'updatedAt_ASC',
1151
- UpdatedAtDesc = 'updatedAt_DESC',
1152
- SearchAsc = 'search_ASC',
1153
- 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",
1181
+ }
1182
+
1183
+ export type _InternalConfigConnection = {
1184
+ totalCount?: Scalars['Int']['output'];
1185
+ edges?: _InternalConfigEdge[];
1186
+ };
1187
+
1188
+ export type _InternalConfigEdge = {
1189
+ node: _InternalConfig;
1190
+ };
1191
+
1192
+ export type _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[];
1203
+ };
1204
+
1205
+ export type _InternalConfigACLObjectWhereInput = {
1206
+ users?: _InternalConfigACLObjectUsersACLWhereInput[];
1207
+ roles?: _InternalConfigACLObjectRolesACLWhereInput[];
1208
+ OR?: _InternalConfigACLObjectWhereInput[];
1209
+ AND?: _InternalConfigACLObjectWhereInput[];
1210
+ };
1211
+
1212
+ export type _InternalConfigACLObjectUsersACLWhereInput = {
1213
+ userId?: StringWhereInput;
1214
+ read?: BooleanWhereInput;
1215
+ write?: BooleanWhereInput;
1216
+ OR?: _InternalConfigACLObjectUsersACLWhereInput[];
1217
+ AND?: _InternalConfigACLObjectUsersACLWhereInput[];
1218
+ };
1219
+
1220
+ export type _InternalConfigACLObjectRolesACLWhereInput = {
1221
+ roleId?: StringWhereInput;
1222
+ read?: BooleanWhereInput;
1223
+ write?: BooleanWhereInput;
1224
+ OR?: _InternalConfigACLObjectRolesACLWhereInput[];
1225
+ AND?: _InternalConfigACLObjectRolesACLWhereInput[];
1226
+ };
1227
+
1228
+ export enum _InternalConfigOrder {
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",
1154
1243
  }
1155
1244
 
1156
1245
  export type MeOutput = {
1157
- __typename?: 'MeOutput';
1158
- user?: Maybe<User>;
1246
+ user?: User;
1159
1247
  };
1160
1248
 
1161
1249
  export type Invoice = {
1162
- __typename?: 'Invoice';
1163
1250
  amountDue: Scalars['Int']['output'];
1164
1251
  amountPaid: Scalars['Int']['output'];
1165
1252
  currency: Currency;
@@ -1170,669 +1257,719 @@ export type Invoice = {
1170
1257
  };
1171
1258
 
1172
1259
  export type Mutation = {
1173
- __typename?: 'Mutation';
1174
- /** User class */
1175
- createUser?: Maybe<CreateUserPayload>;
1176
- /** User class */
1260
+ createUser?: CreateUserPayload;
1177
1261
  createUsers: UserConnection;
1178
- /** User class */
1179
- updateUser?: Maybe<UpdateUserPayload>;
1180
- /** User class */
1262
+ updateUser?: UpdateUserPayload;
1181
1263
  updateUsers: UserConnection;
1182
- /** User class */
1183
- deleteUser?: Maybe<DeleteUserPayload>;
1184
- /** User class */
1264
+ deleteUser?: DeleteUserPayload;
1185
1265
  deleteUsers: UserConnection;
1186
- createPost?: Maybe<CreatePostPayload>;
1266
+ createPost?: CreatePostPayload;
1187
1267
  createPosts: PostConnection;
1188
- updatePost?: Maybe<UpdatePostPayload>;
1268
+ updatePost?: UpdatePostPayload;
1189
1269
  updatePosts: PostConnection;
1190
- deletePost?: Maybe<DeletePostPayload>;
1270
+ deletePost?: DeletePostPayload;
1191
1271
  deletePosts: PostConnection;
1192
- create_Session?: Maybe<Create_SessionPayload>;
1272
+ create_Session?: Create_SessionPayload;
1193
1273
  create_Sessions: _SessionConnection;
1194
- update_Session?: Maybe<Update_SessionPayload>;
1274
+ update_Session?: Update_SessionPayload;
1195
1275
  update_Sessions: _SessionConnection;
1196
- delete_Session?: Maybe<Delete_SessionPayload>;
1276
+ delete_Session?: Delete_SessionPayload;
1197
1277
  delete_Sessions: _SessionConnection;
1198
- createRole?: Maybe<CreateRolePayload>;
1278
+ createRole?: CreateRolePayload;
1199
1279
  createRoles: RoleConnection;
1200
- updateRole?: Maybe<UpdateRolePayload>;
1280
+ updateRole?: UpdateRolePayload;
1201
1281
  updateRoles: RoleConnection;
1202
- deleteRole?: Maybe<DeleteRolePayload>;
1282
+ deleteRole?: DeleteRolePayload;
1203
1283
  deleteRoles: RoleConnection;
1204
- createPayment?: Maybe<CreatePaymentPayload>;
1284
+ createPayment?: CreatePaymentPayload;
1205
1285
  createPayments: PaymentConnection;
1206
- updatePayment?: Maybe<UpdatePaymentPayload>;
1286
+ updatePayment?: UpdatePaymentPayload;
1207
1287
  updatePayments: PaymentConnection;
1208
- deletePayment?: Maybe<DeletePaymentPayload>;
1288
+ deletePayment?: DeletePaymentPayload;
1209
1289
  deletePayments: PaymentConnection;
1290
+ create_InternalConfig?: Create_InternalConfigPayload;
1291
+ create_InternalConfigs: _InternalConfigConnection;
1292
+ update_InternalConfig?: Update_InternalConfigPayload;
1293
+ update_InternalConfigs: _InternalConfigConnection;
1294
+ delete_InternalConfig?: Delete_InternalConfigPayload;
1295
+ delete_InternalConfigs: _InternalConfigConnection;
1210
1296
  createMutation: Scalars['Boolean']['output'];
1211
- customMutation?: Maybe<Scalars['Int']['output']>;
1212
- secondCustomMutation?: Maybe<Scalars['Int']['output']>;
1213
- /** Create a payment with the payment provider. Returns the url to redirect the user to pay */
1214
- makePayment?: Maybe<Scalars['String']['output']>;
1215
- cancelSubscription?: Maybe<Scalars['Boolean']['output']>;
1216
- /** Send basic email with text and html, returns the id of the email */
1217
- sendEmail?: Maybe<Scalars['String']['output']>;
1218
- signInWith?: Maybe<SignInWithOutput>;
1219
- signUpWith?: Maybe<SignUpWithOutput>;
1220
- signOut?: Maybe<Scalars['Boolean']['output']>;
1221
- refresh?: Maybe<RefreshSessionOutput>;
1222
- 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'];
1223
1309
  };
1224
1310
 
1225
-
1226
1311
  export type MutationCreateUserArgs = {
1227
1312
  input: CreateUserInput;
1228
1313
  };
1229
1314
 
1230
-
1231
1315
  export type MutationCreateUsersArgs = {
1232
1316
  input: CreateUsersInput;
1233
1317
  };
1234
1318
 
1235
-
1236
1319
  export type MutationUpdateUserArgs = {
1237
1320
  input: UpdateUserInput;
1238
1321
  };
1239
1322
 
1240
-
1241
1323
  export type MutationUpdateUsersArgs = {
1242
1324
  input: UpdateUsersInput;
1243
1325
  };
1244
1326
 
1245
-
1246
1327
  export type MutationDeleteUserArgs = {
1247
1328
  input: DeleteUserInput;
1248
1329
  };
1249
1330
 
1250
-
1251
1331
  export type MutationDeleteUsersArgs = {
1252
1332
  input: DeleteUsersInput;
1253
1333
  };
1254
1334
 
1255
-
1256
1335
  export type MutationCreatePostArgs = {
1257
1336
  input: CreatePostInput;
1258
1337
  };
1259
1338
 
1260
-
1261
1339
  export type MutationCreatePostsArgs = {
1262
1340
  input: CreatePostsInput;
1263
1341
  };
1264
1342
 
1265
-
1266
1343
  export type MutationUpdatePostArgs = {
1267
1344
  input: UpdatePostInput;
1268
1345
  };
1269
1346
 
1270
-
1271
1347
  export type MutationUpdatePostsArgs = {
1272
1348
  input: UpdatePostsInput;
1273
1349
  };
1274
1350
 
1275
-
1276
1351
  export type MutationDeletePostArgs = {
1277
1352
  input: DeletePostInput;
1278
1353
  };
1279
1354
 
1280
-
1281
1355
  export type MutationDeletePostsArgs = {
1282
1356
  input: DeletePostsInput;
1283
1357
  };
1284
1358
 
1285
-
1286
1359
  export type MutationCreate_SessionArgs = {
1287
1360
  input: Create_SessionInput;
1288
1361
  };
1289
1362
 
1290
-
1291
1363
  export type MutationCreate_SessionsArgs = {
1292
1364
  input: Create_SessionsInput;
1293
1365
  };
1294
1366
 
1295
-
1296
1367
  export type MutationUpdate_SessionArgs = {
1297
1368
  input: Update_SessionInput;
1298
1369
  };
1299
1370
 
1300
-
1301
1371
  export type MutationUpdate_SessionsArgs = {
1302
1372
  input: Update_SessionsInput;
1303
1373
  };
1304
1374
 
1305
-
1306
1375
  export type MutationDelete_SessionArgs = {
1307
1376
  input: Delete_SessionInput;
1308
1377
  };
1309
1378
 
1310
-
1311
1379
  export type MutationDelete_SessionsArgs = {
1312
1380
  input: Delete_SessionsInput;
1313
1381
  };
1314
1382
 
1315
-
1316
1383
  export type MutationCreateRoleArgs = {
1317
1384
  input: CreateRoleInput;
1318
1385
  };
1319
1386
 
1320
-
1321
1387
  export type MutationCreateRolesArgs = {
1322
1388
  input: CreateRolesInput;
1323
1389
  };
1324
1390
 
1325
-
1326
1391
  export type MutationUpdateRoleArgs = {
1327
1392
  input: UpdateRoleInput;
1328
1393
  };
1329
1394
 
1330
-
1331
1395
  export type MutationUpdateRolesArgs = {
1332
1396
  input: UpdateRolesInput;
1333
1397
  };
1334
1398
 
1335
-
1336
1399
  export type MutationDeleteRoleArgs = {
1337
1400
  input: DeleteRoleInput;
1338
1401
  };
1339
1402
 
1340
-
1341
1403
  export type MutationDeleteRolesArgs = {
1342
1404
  input: DeleteRolesInput;
1343
1405
  };
1344
1406
 
1345
-
1346
1407
  export type MutationCreatePaymentArgs = {
1347
1408
  input: CreatePaymentInput;
1348
1409
  };
1349
1410
 
1350
-
1351
1411
  export type MutationCreatePaymentsArgs = {
1352
1412
  input: CreatePaymentsInput;
1353
1413
  };
1354
1414
 
1355
-
1356
1415
  export type MutationUpdatePaymentArgs = {
1357
1416
  input: UpdatePaymentInput;
1358
1417
  };
1359
1418
 
1360
-
1361
1419
  export type MutationUpdatePaymentsArgs = {
1362
1420
  input: UpdatePaymentsInput;
1363
1421
  };
1364
1422
 
1365
-
1366
1423
  export type MutationDeletePaymentArgs = {
1367
1424
  input: DeletePaymentInput;
1368
1425
  };
1369
1426
 
1370
-
1371
1427
  export type MutationDeletePaymentsArgs = {
1372
1428
  input: DeletePaymentsInput;
1373
1429
  };
1374
1430
 
1431
+ export type MutationCreate_InternalConfigArgs = {
1432
+ input: Create_InternalConfigInput;
1433
+ };
1434
+
1435
+ export type MutationCreate_InternalConfigsArgs = {
1436
+ input: Create_InternalConfigsInput;
1437
+ };
1438
+
1439
+ export type MutationUpdate_InternalConfigArgs = {
1440
+ input: Update_InternalConfigInput;
1441
+ };
1442
+
1443
+ export type MutationUpdate_InternalConfigsArgs = {
1444
+ input: Update_InternalConfigsInput;
1445
+ };
1446
+
1447
+ export type MutationDelete_InternalConfigArgs = {
1448
+ input: Delete_InternalConfigInput;
1449
+ };
1450
+
1451
+ export type MutationDelete_InternalConfigsArgs = {
1452
+ input: Delete_InternalConfigsInput;
1453
+ };
1375
1454
 
1376
1455
  export type MutationCreateMutationArgs = {
1377
1456
  input: CreateMutationInput;
1378
1457
  };
1379
1458
 
1380
-
1381
1459
  export type MutationCustomMutationArgs = {
1382
1460
  input: CustomMutationInput;
1383
1461
  };
1384
1462
 
1385
-
1386
1463
  export type MutationSecondCustomMutationArgs = {
1387
1464
  input: SecondCustomMutationInput;
1388
1465
  };
1389
1466
 
1467
+ export type MutationResetPasswordArgs = {
1468
+ input: ResetPasswordInput;
1469
+ };
1470
+
1471
+ export type MutationSendOtpCodeArgs = {
1472
+ input: SendOtpCodeInput;
1473
+ };
1390
1474
 
1391
1475
  export type MutationMakePaymentArgs = {
1392
1476
  input: MakePaymentInput;
1393
1477
  };
1394
1478
 
1395
-
1396
1479
  export type MutationCancelSubscriptionArgs = {
1397
1480
  input: CancelSubscriptionInput;
1398
1481
  };
1399
1482
 
1400
-
1401
1483
  export type MutationSendEmailArgs = {
1402
1484
  input: SendEmailInput;
1403
1485
  };
1404
1486
 
1405
-
1406
1487
  export type MutationSignInWithArgs = {
1407
1488
  input: SignInWithInput;
1408
1489
  };
1409
1490
 
1410
-
1411
1491
  export type MutationSignUpWithArgs = {
1412
1492
  input: SignUpWithInput;
1413
1493
  };
1414
1494
 
1415
-
1416
1495
  export type MutationRefreshArgs = {
1417
1496
  input: RefreshInput;
1418
1497
  };
1419
1498
 
1420
-
1421
1499
  export type MutationVerifyChallengeArgs = {
1422
1500
  input: VerifyChallengeInput;
1423
1501
  };
1424
1502
 
1425
1503
  export type CreateUserPayload = {
1426
- __typename?: 'CreateUserPayload';
1427
- user?: Maybe<User>;
1428
- clientMutationId?: Maybe<Scalars['String']['output']>;
1504
+ user?: User;
1505
+ clientMutationId?: Scalars['String']['output'];
1429
1506
  };
1430
1507
 
1431
1508
  export type CreateUserInput = {
1432
- fields?: InputMaybe<UserCreateFieldsInput>;
1509
+ fields?: UserCreateFieldsInput;
1433
1510
  };
1434
1511
 
1435
1512
  export type CreateUsersInput = {
1436
- fields: Array<InputMaybe<UserCreateFieldsInput>>;
1437
- offset?: InputMaybe<Scalars['Int']['input']>;
1438
- first?: InputMaybe<Scalars['Int']['input']>;
1439
- order?: InputMaybe<Array<InputMaybe<UserOrder>>>;
1513
+ fields: UserCreateFieldsInput[];
1514
+ offset?: Scalars['Int']['input'];
1515
+ first?: Scalars['Int']['input'];
1516
+ order?: UserOrder[];
1440
1517
  };
1441
1518
 
1442
1519
  export type UpdateUserPayload = {
1443
- __typename?: 'UpdateUserPayload';
1444
- user?: Maybe<User>;
1445
- clientMutationId?: Maybe<Scalars['String']['output']>;
1520
+ user?: User;
1521
+ clientMutationId?: Scalars['String']['output'];
1446
1522
  };
1447
1523
 
1448
1524
  export type UpdateUserInput = {
1449
- id?: InputMaybe<Scalars['ID']['input']>;
1450
- fields?: InputMaybe<UserUpdateFieldsInput>;
1525
+ id?: Scalars['ID']['input'];
1526
+ fields?: UserUpdateFieldsInput;
1451
1527
  };
1452
1528
 
1453
- /** User class */
1454
1529
  export type UserUpdateFieldsInput = {
1455
- name?: InputMaybe<Scalars['String']['input']>;
1456
- age?: InputMaybe<Scalars['Int']['input']>;
1457
- acl?: InputMaybe<UserAclObjectUpdateFieldsInput>;
1458
- createdAt?: InputMaybe<Scalars['Date']['input']>;
1459
- updatedAt?: InputMaybe<Scalars['Date']['input']>;
1460
- search?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
1461
- authentication?: InputMaybe<UserAuthenticationUpdateFieldsInput>;
1462
- provider?: InputMaybe<AuthenticationProvider>;
1463
- isOauth?: InputMaybe<Scalars['Boolean']['input']>;
1464
- email?: InputMaybe<Scalars['Email']['input']>;
1465
- verifiedEmail?: InputMaybe<Scalars['Boolean']['input']>;
1466
- role?: InputMaybe<RolePointerInput>;
1467
- 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;
1468
1543
  };
1469
1544
 
1470
- export type UserAclObjectUpdateFieldsInput = {
1471
- users?: InputMaybe<Array<InputMaybe<UserAclObjectUsersAclUpdateFieldsInput>>>;
1472
- roles?: InputMaybe<Array<InputMaybe<UserAclObjectRolesAclUpdateFieldsInput>>>;
1545
+ export type UserACLObjectUpdateFieldsInput = {
1546
+ users?: UserACLObjectUsersACLUpdateFieldsInput[];
1547
+ roles?: UserACLObjectRolesACLUpdateFieldsInput[];
1473
1548
  };
1474
1549
 
1475
- export type UserAclObjectUsersAclUpdateFieldsInput = {
1476
- userId?: InputMaybe<Scalars['String']['input']>;
1477
- read?: InputMaybe<Scalars['Boolean']['input']>;
1478
- write?: InputMaybe<Scalars['Boolean']['input']>;
1550
+ export type UserACLObjectUsersACLUpdateFieldsInput = {
1551
+ userId?: Scalars['String']['input'];
1552
+ read?: Scalars['Boolean']['input'];
1553
+ write?: Scalars['Boolean']['input'];
1479
1554
  };
1480
1555
 
1481
- export type UserAclObjectRolesAclUpdateFieldsInput = {
1482
- roleId?: InputMaybe<Scalars['String']['input']>;
1483
- read?: InputMaybe<Scalars['Boolean']['input']>;
1484
- write?: InputMaybe<Scalars['Boolean']['input']>;
1556
+ export type UserACLObjectRolesACLUpdateFieldsInput = {
1557
+ roleId?: Scalars['String']['input'];
1558
+ read?: Scalars['Boolean']['input'];
1559
+ write?: Scalars['Boolean']['input'];
1485
1560
  };
1486
1561
 
1487
1562
  export type UserAuthenticationUpdateFieldsInput = {
1488
- emailPassword?: InputMaybe<UserAuthenticationEmailPasswordUpdateFieldsInput>;
1489
- google?: InputMaybe<UserAuthenticationGoogleUpdateFieldsInput>;
1563
+ emailPassword?: UserAuthenticationEmailPasswordUpdateFieldsInput;
1564
+ google?: UserAuthenticationGoogleUpdateFieldsInput;
1490
1565
  };
1491
1566
 
1492
1567
  export type UserAuthenticationEmailPasswordUpdateFieldsInput = {
1493
- email?: InputMaybe<Scalars['Email']['input']>;
1494
- password?: InputMaybe<Scalars['String']['input']>;
1568
+ email?: Scalars['Email']['input'];
1569
+ password?: Scalars['String']['input'];
1495
1570
  };
1496
1571
 
1497
1572
  export type UserAuthenticationGoogleUpdateFieldsInput = {
1498
- email?: InputMaybe<Scalars['Email']['input']>;
1499
- verifiedEmail?: InputMaybe<Scalars['Boolean']['input']>;
1500
- idToken?: InputMaybe<Scalars['String']['input']>;
1573
+ email?: Scalars['Email']['input'];
1574
+ verifiedEmail?: Scalars['Boolean']['input'];
1575
+ idToken?: Scalars['String']['input'];
1501
1576
  };
1502
1577
 
1503
1578
  export type UpdateUsersInput = {
1504
- fields?: InputMaybe<UserUpdateFieldsInput>;
1505
- where?: InputMaybe<UserWhereInput>;
1506
- offset?: InputMaybe<Scalars['Int']['input']>;
1507
- first?: InputMaybe<Scalars['Int']['input']>;
1508
- order?: InputMaybe<Array<InputMaybe<UserOrder>>>;
1579
+ fields?: UserUpdateFieldsInput;
1580
+ where?: UserWhereInput;
1581
+ offset?: Scalars['Int']['input'];
1582
+ first?: Scalars['Int']['input'];
1583
+ order?: UserOrder[];
1509
1584
  };
1510
1585
 
1511
1586
  export type DeleteUserPayload = {
1512
- __typename?: 'DeleteUserPayload';
1513
- user?: Maybe<User>;
1514
- clientMutationId?: Maybe<Scalars['String']['output']>;
1587
+ user?: User;
1588
+ clientMutationId?: Scalars['String']['output'];
1515
1589
  };
1516
1590
 
1517
1591
  export type DeleteUserInput = {
1518
- id?: InputMaybe<Scalars['ID']['input']>;
1592
+ id?: Scalars['ID']['input'];
1519
1593
  };
1520
1594
 
1521
1595
  export type DeleteUsersInput = {
1522
- where?: InputMaybe<UserWhereInput>;
1523
- order?: InputMaybe<Array<InputMaybe<UserOrder>>>;
1596
+ where?: UserWhereInput;
1597
+ order?: UserOrder[];
1524
1598
  };
1525
1599
 
1526
1600
  export type CreatePostPayload = {
1527
- __typename?: 'CreatePostPayload';
1528
- post?: Maybe<Post>;
1529
- clientMutationId?: Maybe<Scalars['String']['output']>;
1601
+ post?: Post;
1602
+ clientMutationId?: Scalars['String']['output'];
1530
1603
  };
1531
1604
 
1532
1605
  export type CreatePostInput = {
1533
- fields?: InputMaybe<PostCreateFieldsInput>;
1606
+ fields?: PostCreateFieldsInput;
1534
1607
  };
1535
1608
 
1536
1609
  export type CreatePostsInput = {
1537
- fields: Array<InputMaybe<PostCreateFieldsInput>>;
1538
- offset?: InputMaybe<Scalars['Int']['input']>;
1539
- first?: InputMaybe<Scalars['Int']['input']>;
1540
- order?: InputMaybe<Array<InputMaybe<PostOrder>>>;
1610
+ fields: PostCreateFieldsInput[];
1611
+ offset?: Scalars['Int']['input'];
1612
+ first?: Scalars['Int']['input'];
1613
+ order?: PostOrder[];
1541
1614
  };
1542
1615
 
1543
1616
  export type UpdatePostPayload = {
1544
- __typename?: 'UpdatePostPayload';
1545
- post?: Maybe<Post>;
1546
- clientMutationId?: Maybe<Scalars['String']['output']>;
1617
+ post?: Post;
1618
+ clientMutationId?: Scalars['String']['output'];
1547
1619
  };
1548
1620
 
1549
1621
  export type UpdatePostInput = {
1550
- id?: InputMaybe<Scalars['ID']['input']>;
1551
- fields?: InputMaybe<PostUpdateFieldsInput>;
1622
+ id?: Scalars['ID']['input'];
1623
+ fields?: PostUpdateFieldsInput;
1552
1624
  };
1553
1625
 
1554
1626
  export type PostUpdateFieldsInput = {
1555
- name?: InputMaybe<Scalars['String']['input']>;
1556
- test?: InputMaybe<Scalars['File']['input']>;
1557
- acl?: InputMaybe<PostAclObjectUpdateFieldsInput>;
1558
- createdAt?: InputMaybe<Scalars['Date']['input']>;
1559
- updatedAt?: InputMaybe<Scalars['Date']['input']>;
1560
- 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'][];
1561
1633
  };
1562
1634
 
1563
- export type PostAclObjectUpdateFieldsInput = {
1564
- users?: InputMaybe<Array<InputMaybe<PostAclObjectUsersAclUpdateFieldsInput>>>;
1565
- roles?: InputMaybe<Array<InputMaybe<PostAclObjectRolesAclUpdateFieldsInput>>>;
1635
+ export type PostACLObjectUpdateFieldsInput = {
1636
+ users?: PostACLObjectUsersACLUpdateFieldsInput[];
1637
+ roles?: PostACLObjectRolesACLUpdateFieldsInput[];
1566
1638
  };
1567
1639
 
1568
- export type PostAclObjectUsersAclUpdateFieldsInput = {
1569
- userId?: InputMaybe<Scalars['String']['input']>;
1570
- read?: InputMaybe<Scalars['Boolean']['input']>;
1571
- write?: InputMaybe<Scalars['Boolean']['input']>;
1640
+ export type PostACLObjectUsersACLUpdateFieldsInput = {
1641
+ userId?: Scalars['String']['input'];
1642
+ read?: Scalars['Boolean']['input'];
1643
+ write?: Scalars['Boolean']['input'];
1572
1644
  };
1573
1645
 
1574
- export type PostAclObjectRolesAclUpdateFieldsInput = {
1575
- roleId?: InputMaybe<Scalars['String']['input']>;
1576
- read?: InputMaybe<Scalars['Boolean']['input']>;
1577
- write?: InputMaybe<Scalars['Boolean']['input']>;
1646
+ export type PostACLObjectRolesACLUpdateFieldsInput = {
1647
+ roleId?: Scalars['String']['input'];
1648
+ read?: Scalars['Boolean']['input'];
1649
+ write?: Scalars['Boolean']['input'];
1578
1650
  };
1579
1651
 
1580
1652
  export type UpdatePostsInput = {
1581
- fields?: InputMaybe<PostUpdateFieldsInput>;
1582
- where?: InputMaybe<PostWhereInput>;
1583
- offset?: InputMaybe<Scalars['Int']['input']>;
1584
- first?: InputMaybe<Scalars['Int']['input']>;
1585
- order?: InputMaybe<Array<InputMaybe<PostOrder>>>;
1653
+ fields?: PostUpdateFieldsInput;
1654
+ where?: PostWhereInput;
1655
+ offset?: Scalars['Int']['input'];
1656
+ first?: Scalars['Int']['input'];
1657
+ order?: PostOrder[];
1586
1658
  };
1587
1659
 
1588
1660
  export type DeletePostPayload = {
1589
- __typename?: 'DeletePostPayload';
1590
- post?: Maybe<Post>;
1591
- clientMutationId?: Maybe<Scalars['String']['output']>;
1661
+ post?: Post;
1662
+ clientMutationId?: Scalars['String']['output'];
1592
1663
  };
1593
1664
 
1594
1665
  export type DeletePostInput = {
1595
- id?: InputMaybe<Scalars['ID']['input']>;
1666
+ id?: Scalars['ID']['input'];
1596
1667
  };
1597
1668
 
1598
1669
  export type DeletePostsInput = {
1599
- where?: InputMaybe<PostWhereInput>;
1600
- order?: InputMaybe<Array<InputMaybe<PostOrder>>>;
1670
+ where?: PostWhereInput;
1671
+ order?: PostOrder[];
1601
1672
  };
1602
1673
 
1603
1674
  export type Create_SessionPayload = {
1604
- __typename?: 'Create_SessionPayload';
1605
- _session?: Maybe<_Session>;
1606
- clientMutationId?: Maybe<Scalars['String']['output']>;
1675
+ _session?: _Session;
1676
+ clientMutationId?: Scalars['String']['output'];
1607
1677
  };
1608
1678
 
1609
1679
  export type Create_SessionInput = {
1610
- fields?: InputMaybe<_SessionCreateFieldsInput>;
1680
+ fields?: _SessionCreateFieldsInput;
1611
1681
  };
1612
1682
 
1613
1683
  export type Create_SessionsInput = {
1614
- fields: Array<InputMaybe<_SessionCreateFieldsInput>>;
1615
- offset?: InputMaybe<Scalars['Int']['input']>;
1616
- first?: InputMaybe<Scalars['Int']['input']>;
1617
- order?: InputMaybe<Array<InputMaybe<_SessionOrder>>>;
1684
+ fields: _SessionCreateFieldsInput[];
1685
+ offset?: Scalars['Int']['input'];
1686
+ first?: Scalars['Int']['input'];
1687
+ order?: _SessionOrder[];
1618
1688
  };
1619
1689
 
1620
1690
  export type Update_SessionPayload = {
1621
- __typename?: 'Update_SessionPayload';
1622
- _session?: Maybe<_Session>;
1623
- clientMutationId?: Maybe<Scalars['String']['output']>;
1691
+ _session?: _Session;
1692
+ clientMutationId?: Scalars['String']['output'];
1624
1693
  };
1625
1694
 
1626
1695
  export type Update_SessionInput = {
1627
- id?: InputMaybe<Scalars['ID']['input']>;
1628
- fields?: InputMaybe<_SessionUpdateFieldsInput>;
1696
+ id?: Scalars['ID']['input'];
1697
+ fields?: _SessionUpdateFieldsInput;
1629
1698
  };
1630
1699
 
1631
1700
  export type _SessionUpdateFieldsInput = {
1632
- user?: InputMaybe<UserPointerInput>;
1633
- accessToken?: InputMaybe<Scalars['String']['input']>;
1634
- accessTokenExpiresAt?: InputMaybe<Scalars['Date']['input']>;
1635
- refreshToken?: InputMaybe<Scalars['String']['input']>;
1636
- refreshTokenExpiresAt?: InputMaybe<Scalars['Date']['input']>;
1637
- acl?: InputMaybe<_SessionAclObjectUpdateFieldsInput>;
1638
- createdAt?: InputMaybe<Scalars['Date']['input']>;
1639
- updatedAt?: InputMaybe<Scalars['Date']['input']>;
1640
- 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'][];
1641
1710
  };
1642
1711
 
1643
- export type _SessionAclObjectUpdateFieldsInput = {
1644
- users?: InputMaybe<Array<InputMaybe<_SessionAclObjectUsersAclUpdateFieldsInput>>>;
1645
- roles?: InputMaybe<Array<InputMaybe<_SessionAclObjectRolesAclUpdateFieldsInput>>>;
1712
+ export type _SessionACLObjectUpdateFieldsInput = {
1713
+ users?: _SessionACLObjectUsersACLUpdateFieldsInput[];
1714
+ roles?: _SessionACLObjectRolesACLUpdateFieldsInput[];
1646
1715
  };
1647
1716
 
1648
- export type _SessionAclObjectUsersAclUpdateFieldsInput = {
1649
- userId?: InputMaybe<Scalars['String']['input']>;
1650
- read?: InputMaybe<Scalars['Boolean']['input']>;
1651
- write?: InputMaybe<Scalars['Boolean']['input']>;
1717
+ export type _SessionACLObjectUsersACLUpdateFieldsInput = {
1718
+ userId?: Scalars['String']['input'];
1719
+ read?: Scalars['Boolean']['input'];
1720
+ write?: Scalars['Boolean']['input'];
1652
1721
  };
1653
1722
 
1654
- export type _SessionAclObjectRolesAclUpdateFieldsInput = {
1655
- roleId?: InputMaybe<Scalars['String']['input']>;
1656
- read?: InputMaybe<Scalars['Boolean']['input']>;
1657
- write?: InputMaybe<Scalars['Boolean']['input']>;
1723
+ export type _SessionACLObjectRolesACLUpdateFieldsInput = {
1724
+ roleId?: Scalars['String']['input'];
1725
+ read?: Scalars['Boolean']['input'];
1726
+ write?: Scalars['Boolean']['input'];
1658
1727
  };
1659
1728
 
1660
1729
  export type Update_SessionsInput = {
1661
- fields?: InputMaybe<_SessionUpdateFieldsInput>;
1662
- where?: InputMaybe<_SessionWhereInput>;
1663
- offset?: InputMaybe<Scalars['Int']['input']>;
1664
- first?: InputMaybe<Scalars['Int']['input']>;
1665
- order?: InputMaybe<Array<InputMaybe<_SessionOrder>>>;
1730
+ fields?: _SessionUpdateFieldsInput;
1731
+ where?: _SessionWhereInput;
1732
+ offset?: Scalars['Int']['input'];
1733
+ first?: Scalars['Int']['input'];
1734
+ order?: _SessionOrder[];
1666
1735
  };
1667
1736
 
1668
1737
  export type Delete_SessionPayload = {
1669
- __typename?: 'Delete_SessionPayload';
1670
- _session?: Maybe<_Session>;
1671
- clientMutationId?: Maybe<Scalars['String']['output']>;
1738
+ _session?: _Session;
1739
+ clientMutationId?: Scalars['String']['output'];
1672
1740
  };
1673
1741
 
1674
1742
  export type Delete_SessionInput = {
1675
- id?: InputMaybe<Scalars['ID']['input']>;
1743
+ id?: Scalars['ID']['input'];
1676
1744
  };
1677
1745
 
1678
1746
  export type Delete_SessionsInput = {
1679
- where?: InputMaybe<_SessionWhereInput>;
1680
- order?: InputMaybe<Array<InputMaybe<_SessionOrder>>>;
1747
+ where?: _SessionWhereInput;
1748
+ order?: _SessionOrder[];
1681
1749
  };
1682
1750
 
1683
1751
  export type CreateRolePayload = {
1684
- __typename?: 'CreateRolePayload';
1685
- role?: Maybe<Role>;
1686
- clientMutationId?: Maybe<Scalars['String']['output']>;
1752
+ role?: Role;
1753
+ clientMutationId?: Scalars['String']['output'];
1687
1754
  };
1688
1755
 
1689
1756
  export type CreateRoleInput = {
1690
- fields?: InputMaybe<RoleCreateFieldsInput>;
1757
+ fields?: RoleCreateFieldsInput;
1691
1758
  };
1692
1759
 
1693
1760
  export type CreateRolesInput = {
1694
- fields: Array<InputMaybe<RoleCreateFieldsInput>>;
1695
- offset?: InputMaybe<Scalars['Int']['input']>;
1696
- first?: InputMaybe<Scalars['Int']['input']>;
1697
- order?: InputMaybe<Array<InputMaybe<RoleOrder>>>;
1761
+ fields: RoleCreateFieldsInput[];
1762
+ offset?: Scalars['Int']['input'];
1763
+ first?: Scalars['Int']['input'];
1764
+ order?: RoleOrder[];
1698
1765
  };
1699
1766
 
1700
1767
  export type UpdateRolePayload = {
1701
- __typename?: 'UpdateRolePayload';
1702
- role?: Maybe<Role>;
1703
- clientMutationId?: Maybe<Scalars['String']['output']>;
1768
+ role?: Role;
1769
+ clientMutationId?: Scalars['String']['output'];
1704
1770
  };
1705
1771
 
1706
1772
  export type UpdateRoleInput = {
1707
- id?: InputMaybe<Scalars['ID']['input']>;
1708
- fields?: InputMaybe<RoleUpdateFieldsInput>;
1773
+ id?: Scalars['ID']['input'];
1774
+ fields?: RoleUpdateFieldsInput;
1709
1775
  };
1710
1776
 
1711
1777
  export type RoleUpdateFieldsInput = {
1712
- name?: InputMaybe<Scalars['String']['input']>;
1713
- users?: InputMaybe<UserRelationInput>;
1714
- acl?: InputMaybe<RoleAclObjectUpdateFieldsInput>;
1715
- createdAt?: InputMaybe<Scalars['Date']['input']>;
1716
- updatedAt?: InputMaybe<Scalars['Date']['input']>;
1717
- 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'][];
1718
1784
  };
1719
1785
 
1720
- export type RoleAclObjectUpdateFieldsInput = {
1721
- users?: InputMaybe<Array<InputMaybe<RoleAclObjectUsersAclUpdateFieldsInput>>>;
1722
- roles?: InputMaybe<Array<InputMaybe<RoleAclObjectRolesAclUpdateFieldsInput>>>;
1786
+ export type RoleACLObjectUpdateFieldsInput = {
1787
+ users?: RoleACLObjectUsersACLUpdateFieldsInput[];
1788
+ roles?: RoleACLObjectRolesACLUpdateFieldsInput[];
1723
1789
  };
1724
1790
 
1725
- export type RoleAclObjectUsersAclUpdateFieldsInput = {
1726
- userId?: InputMaybe<Scalars['String']['input']>;
1727
- read?: InputMaybe<Scalars['Boolean']['input']>;
1728
- write?: InputMaybe<Scalars['Boolean']['input']>;
1791
+ export type RoleACLObjectUsersACLUpdateFieldsInput = {
1792
+ userId?: Scalars['String']['input'];
1793
+ read?: Scalars['Boolean']['input'];
1794
+ write?: Scalars['Boolean']['input'];
1729
1795
  };
1730
1796
 
1731
- export type RoleAclObjectRolesAclUpdateFieldsInput = {
1732
- roleId?: InputMaybe<Scalars['String']['input']>;
1733
- read?: InputMaybe<Scalars['Boolean']['input']>;
1734
- write?: InputMaybe<Scalars['Boolean']['input']>;
1797
+ export type RoleACLObjectRolesACLUpdateFieldsInput = {
1798
+ roleId?: Scalars['String']['input'];
1799
+ read?: Scalars['Boolean']['input'];
1800
+ write?: Scalars['Boolean']['input'];
1735
1801
  };
1736
1802
 
1737
1803
  export type UpdateRolesInput = {
1738
- fields?: InputMaybe<RoleUpdateFieldsInput>;
1739
- where?: InputMaybe<RoleWhereInput>;
1740
- offset?: InputMaybe<Scalars['Int']['input']>;
1741
- first?: InputMaybe<Scalars['Int']['input']>;
1742
- order?: InputMaybe<Array<InputMaybe<RoleOrder>>>;
1804
+ fields?: RoleUpdateFieldsInput;
1805
+ where?: RoleWhereInput;
1806
+ offset?: Scalars['Int']['input'];
1807
+ first?: Scalars['Int']['input'];
1808
+ order?: RoleOrder[];
1743
1809
  };
1744
1810
 
1745
1811
  export type DeleteRolePayload = {
1746
- __typename?: 'DeleteRolePayload';
1747
- role?: Maybe<Role>;
1748
- clientMutationId?: Maybe<Scalars['String']['output']>;
1812
+ role?: Role;
1813
+ clientMutationId?: Scalars['String']['output'];
1749
1814
  };
1750
1815
 
1751
1816
  export type DeleteRoleInput = {
1752
- id?: InputMaybe<Scalars['ID']['input']>;
1817
+ id?: Scalars['ID']['input'];
1753
1818
  };
1754
1819
 
1755
1820
  export type DeleteRolesInput = {
1756
- where?: InputMaybe<RoleWhereInput>;
1757
- order?: InputMaybe<Array<InputMaybe<RoleOrder>>>;
1821
+ where?: RoleWhereInput;
1822
+ order?: RoleOrder[];
1758
1823
  };
1759
1824
 
1760
1825
  export type CreatePaymentPayload = {
1761
- __typename?: 'CreatePaymentPayload';
1762
- payment?: Maybe<Payment>;
1763
- clientMutationId?: Maybe<Scalars['String']['output']>;
1826
+ payment?: Payment;
1827
+ clientMutationId?: Scalars['String']['output'];
1764
1828
  };
1765
1829
 
1766
1830
  export type CreatePaymentInput = {
1767
- fields?: InputMaybe<PaymentCreateFieldsInput>;
1831
+ fields?: PaymentCreateFieldsInput;
1768
1832
  };
1769
1833
 
1770
1834
  export type CreatePaymentsInput = {
1771
- fields: Array<InputMaybe<PaymentCreateFieldsInput>>;
1772
- offset?: InputMaybe<Scalars['Int']['input']>;
1773
- first?: InputMaybe<Scalars['Int']['input']>;
1774
- order?: InputMaybe<Array<InputMaybe<PaymentOrder>>>;
1835
+ fields: PaymentCreateFieldsInput[];
1836
+ offset?: Scalars['Int']['input'];
1837
+ first?: Scalars['Int']['input'];
1838
+ order?: PaymentOrder[];
1775
1839
  };
1776
1840
 
1777
1841
  export type UpdatePaymentPayload = {
1778
- __typename?: 'UpdatePaymentPayload';
1779
- payment?: Maybe<Payment>;
1780
- clientMutationId?: Maybe<Scalars['String']['output']>;
1842
+ payment?: Payment;
1843
+ clientMutationId?: Scalars['String']['output'];
1781
1844
  };
1782
1845
 
1783
1846
  export type UpdatePaymentInput = {
1784
- id?: InputMaybe<Scalars['ID']['input']>;
1785
- fields?: InputMaybe<PaymentUpdateFieldsInput>;
1847
+ id?: Scalars['ID']['input'];
1848
+ fields?: PaymentUpdateFieldsInput;
1786
1849
  };
1787
1850
 
1788
1851
  export type PaymentUpdateFieldsInput = {
1789
- user?: InputMaybe<UserPointerInput>;
1790
- amount?: InputMaybe<Scalars['Int']['input']>;
1791
- currency?: InputMaybe<Currency>;
1792
- acl?: InputMaybe<PaymentAclObjectUpdateFieldsInput>;
1793
- createdAt?: InputMaybe<Scalars['Date']['input']>;
1794
- updatedAt?: InputMaybe<Scalars['Date']['input']>;
1795
- 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'][];
1796
1859
  };
1797
1860
 
1798
- export type PaymentAclObjectUpdateFieldsInput = {
1799
- users?: InputMaybe<Array<InputMaybe<PaymentAclObjectUsersAclUpdateFieldsInput>>>;
1800
- roles?: InputMaybe<Array<InputMaybe<PaymentAclObjectRolesAclUpdateFieldsInput>>>;
1861
+ export type PaymentACLObjectUpdateFieldsInput = {
1862
+ users?: PaymentACLObjectUsersACLUpdateFieldsInput[];
1863
+ roles?: PaymentACLObjectRolesACLUpdateFieldsInput[];
1801
1864
  };
1802
1865
 
1803
- export type PaymentAclObjectUsersAclUpdateFieldsInput = {
1804
- userId?: InputMaybe<Scalars['String']['input']>;
1805
- read?: InputMaybe<Scalars['Boolean']['input']>;
1806
- write?: InputMaybe<Scalars['Boolean']['input']>;
1866
+ export type PaymentACLObjectUsersACLUpdateFieldsInput = {
1867
+ userId?: Scalars['String']['input'];
1868
+ read?: Scalars['Boolean']['input'];
1869
+ write?: Scalars['Boolean']['input'];
1807
1870
  };
1808
1871
 
1809
- export type PaymentAclObjectRolesAclUpdateFieldsInput = {
1810
- roleId?: InputMaybe<Scalars['String']['input']>;
1811
- read?: InputMaybe<Scalars['Boolean']['input']>;
1812
- write?: InputMaybe<Scalars['Boolean']['input']>;
1872
+ export type PaymentACLObjectRolesACLUpdateFieldsInput = {
1873
+ roleId?: Scalars['String']['input'];
1874
+ read?: Scalars['Boolean']['input'];
1875
+ write?: Scalars['Boolean']['input'];
1813
1876
  };
1814
1877
 
1815
1878
  export type UpdatePaymentsInput = {
1816
- fields?: InputMaybe<PaymentUpdateFieldsInput>;
1817
- where?: InputMaybe<PaymentWhereInput>;
1818
- offset?: InputMaybe<Scalars['Int']['input']>;
1819
- first?: InputMaybe<Scalars['Int']['input']>;
1820
- order?: InputMaybe<Array<InputMaybe<PaymentOrder>>>;
1879
+ fields?: PaymentUpdateFieldsInput;
1880
+ where?: PaymentWhereInput;
1881
+ offset?: Scalars['Int']['input'];
1882
+ first?: Scalars['Int']['input'];
1883
+ order?: PaymentOrder[];
1821
1884
  };
1822
1885
 
1823
1886
  export type DeletePaymentPayload = {
1824
- __typename?: 'DeletePaymentPayload';
1825
- payment?: Maybe<Payment>;
1826
- clientMutationId?: Maybe<Scalars['String']['output']>;
1887
+ payment?: Payment;
1888
+ clientMutationId?: Scalars['String']['output'];
1827
1889
  };
1828
1890
 
1829
1891
  export type DeletePaymentInput = {
1830
- id?: InputMaybe<Scalars['ID']['input']>;
1892
+ id?: Scalars['ID']['input'];
1831
1893
  };
1832
1894
 
1833
1895
  export type DeletePaymentsInput = {
1834
- where?: InputMaybe<PaymentWhereInput>;
1835
- order?: InputMaybe<Array<InputMaybe<PaymentOrder>>>;
1896
+ where?: PaymentWhereInput;
1897
+ order?: PaymentOrder[];
1898
+ };
1899
+
1900
+ export type Create_InternalConfigPayload = {
1901
+ _internalConfig?: _InternalConfig;
1902
+ clientMutationId?: Scalars['String']['output'];
1903
+ };
1904
+
1905
+ export type Create_InternalConfigInput = {
1906
+ fields?: _InternalConfigCreateFieldsInput;
1907
+ };
1908
+
1909
+ export type Create_InternalConfigsInput = {
1910
+ fields: _InternalConfigCreateFieldsInput[];
1911
+ offset?: Scalars['Int']['input'];
1912
+ first?: Scalars['Int']['input'];
1913
+ order?: _InternalConfigOrder[];
1914
+ };
1915
+
1916
+ export type Update_InternalConfigPayload = {
1917
+ _internalConfig?: _InternalConfig;
1918
+ clientMutationId?: Scalars['String']['output'];
1919
+ };
1920
+
1921
+ export type Update_InternalConfigInput = {
1922
+ id?: Scalars['ID']['input'];
1923
+ fields?: _InternalConfigUpdateFieldsInput;
1924
+ };
1925
+
1926
+ export type _InternalConfigUpdateFieldsInput = {
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'][];
1934
+ };
1935
+
1936
+ export type _InternalConfigACLObjectUpdateFieldsInput = {
1937
+ users?: _InternalConfigACLObjectUsersACLUpdateFieldsInput[];
1938
+ roles?: _InternalConfigACLObjectRolesACLUpdateFieldsInput[];
1939
+ };
1940
+
1941
+ export type _InternalConfigACLObjectUsersACLUpdateFieldsInput = {
1942
+ userId?: Scalars['String']['input'];
1943
+ read?: Scalars['Boolean']['input'];
1944
+ write?: Scalars['Boolean']['input'];
1945
+ };
1946
+
1947
+ export type _InternalConfigACLObjectRolesACLUpdateFieldsInput = {
1948
+ roleId?: Scalars['String']['input'];
1949
+ read?: Scalars['Boolean']['input'];
1950
+ write?: Scalars['Boolean']['input'];
1951
+ };
1952
+
1953
+ export type Update_InternalConfigsInput = {
1954
+ fields?: _InternalConfigUpdateFieldsInput;
1955
+ where?: _InternalConfigWhereInput;
1956
+ offset?: Scalars['Int']['input'];
1957
+ first?: Scalars['Int']['input'];
1958
+ order?: _InternalConfigOrder[];
1959
+ };
1960
+
1961
+ export type Delete_InternalConfigPayload = {
1962
+ _internalConfig?: _InternalConfig;
1963
+ clientMutationId?: Scalars['String']['output'];
1964
+ };
1965
+
1966
+ export type Delete_InternalConfigInput = {
1967
+ id?: Scalars['ID']['input'];
1968
+ };
1969
+
1970
+ export type Delete_InternalConfigsInput = {
1971
+ where?: _InternalConfigWhereInput;
1972
+ order?: _InternalConfigOrder[];
1836
1973
  };
1837
1974
 
1838
1975
  export type CreateMutationInput = {
@@ -1845,7 +1982,7 @@ export type CustomMutationInput = {
1845
1982
  };
1846
1983
 
1847
1984
  export type SecondCustomMutationInput = {
1848
- sum?: InputMaybe<SecondCustomMutationSumInput>;
1985
+ sum?: SecondCustomMutationSumInput;
1849
1986
  };
1850
1987
 
1851
1988
  export type SecondCustomMutationSumInput = {
@@ -1853,14 +1990,25 @@ export type SecondCustomMutationSumInput = {
1853
1990
  b: Scalars['Int']['input'];
1854
1991
  };
1855
1992
 
1993
+ export type ResetPasswordInput = {
1994
+ password: Scalars['String']['input'];
1995
+ email: Scalars['Email']['input'];
1996
+ otp: Scalars['String']['input'];
1997
+ provider: AuthenticationProvider;
1998
+ };
1999
+
2000
+ export type SendOtpCodeInput = {
2001
+ email: Scalars['Email']['input'];
2002
+ };
2003
+
1856
2004
  export type MakePaymentInput = {
1857
- customerEmail?: InputMaybe<Scalars['Email']['input']>;
2005
+ customerEmail?: Scalars['Email']['input'];
1858
2006
  paymentMode: PaymentMode;
1859
2007
  successUrl: Scalars['String']['input'];
1860
2008
  cancelUrl: Scalars['String']['input'];
1861
- products: Array<InputMaybe<MakePaymentProductInput>>;
1862
- automaticTax?: InputMaybe<Scalars['Boolean']['input']>;
1863
- recurringInterval?: InputMaybe<PaymentReccuringInterval>;
2009
+ products: MakePaymentProductInput[];
2010
+ automaticTax?: Scalars['Boolean']['input'];
2011
+ recurringInterval?: PaymentReccuringInterval;
1864
2012
  };
1865
2013
 
1866
2014
  export type MakePaymentProductInput = {
@@ -1875,28 +2023,27 @@ export type CancelSubscriptionInput = {
1875
2023
 
1876
2024
  export type SendEmailInput = {
1877
2025
  from: Scalars['String']['input'];
1878
- to: Array<Scalars['String']['input']>;
2026
+ to: Scalars['String']['input'][];
1879
2027
  subject: Scalars['String']['input'];
1880
- text?: InputMaybe<Scalars['String']['input']>;
1881
- html?: InputMaybe<Scalars['String']['input']>;
2028
+ text?: Scalars['String']['input'];
2029
+ html?: Scalars['String']['input'];
1882
2030
  };
1883
2031
 
1884
2032
  export type SignInWithOutput = {
1885
- __typename?: 'SignInWithOutput';
1886
- id?: Maybe<Scalars['String']['output']>;
1887
- accessToken?: Maybe<Scalars['String']['output']>;
1888
- refreshToken?: Maybe<Scalars['String']['output']>;
2033
+ id?: Scalars['String']['output'];
2034
+ accessToken?: Scalars['String']['output'];
2035
+ refreshToken?: Scalars['String']['output'];
1889
2036
  };
1890
2037
 
1891
2038
  export type SignInWithInput = {
1892
- authentication?: InputMaybe<SignInWithAuthenticationInput>;
2039
+ authentication?: SignInWithAuthenticationInput;
1893
2040
  };
1894
2041
 
1895
2042
  export type SignInWithAuthenticationInput = {
1896
- emailPassword?: InputMaybe<SignInWithAuthenticationEmailPasswordInput>;
1897
- google?: InputMaybe<SignInWithAuthenticationGoogleInput>;
1898
- otp?: InputMaybe<SignInWithAuthenticationOtpInput>;
1899
- secondaryFactor?: InputMaybe<SecondaryFactor>;
2043
+ emailPassword?: SignInWithAuthenticationEmailPasswordInput;
2044
+ google?: SignInWithAuthenticationGoogleInput;
2045
+ otp?: SignInWithAuthenticationOtpInput;
2046
+ secondaryFactor?: SecondaryFactor;
1900
2047
  };
1901
2048
 
1902
2049
  export type SignInWithAuthenticationEmailPasswordInput = {
@@ -1910,25 +2057,24 @@ export type SignInWithAuthenticationGoogleInput = {
1910
2057
  };
1911
2058
 
1912
2059
  export type SignInWithAuthenticationOtpInput = {
1913
- code?: InputMaybe<Scalars['String']['input']>;
2060
+ code?: Scalars['String']['input'];
1914
2061
  };
1915
2062
 
1916
2063
  export type SignUpWithOutput = {
1917
- __typename?: 'SignUpWithOutput';
1918
- id?: Maybe<Scalars['String']['output']>;
2064
+ id?: Scalars['String']['output'];
1919
2065
  accessToken: Scalars['String']['output'];
1920
2066
  refreshToken: Scalars['String']['output'];
1921
2067
  };
1922
2068
 
1923
2069
  export type SignUpWithInput = {
1924
- authentication?: InputMaybe<SignUpWithAuthenticationInput>;
2070
+ authentication?: SignUpWithAuthenticationInput;
1925
2071
  };
1926
2072
 
1927
2073
  export type SignUpWithAuthenticationInput = {
1928
- emailPassword?: InputMaybe<SignUpWithAuthenticationEmailPasswordInput>;
1929
- google?: InputMaybe<SignUpWithAuthenticationGoogleInput>;
1930
- otp?: InputMaybe<SignUpWithAuthenticationOtpInput>;
1931
- secondaryFactor?: InputMaybe<SecondaryFactor>;
2074
+ emailPassword?: SignUpWithAuthenticationEmailPasswordInput;
2075
+ google?: SignUpWithAuthenticationGoogleInput;
2076
+ otp?: SignUpWithAuthenticationOtpInput;
2077
+ secondaryFactor?: SecondaryFactor;
1932
2078
  };
1933
2079
 
1934
2080
  export type SignUpWithAuthenticationEmailPasswordInput = {
@@ -1942,11 +2088,10 @@ export type SignUpWithAuthenticationGoogleInput = {
1942
2088
  };
1943
2089
 
1944
2090
  export type SignUpWithAuthenticationOtpInput = {
1945
- code?: InputMaybe<Scalars['String']['input']>;
2091
+ code?: Scalars['String']['input'];
1946
2092
  };
1947
2093
 
1948
2094
  export type RefreshSessionOutput = {
1949
- __typename?: 'RefreshSessionOutput';
1950
2095
  accessToken: Scalars['String']['output'];
1951
2096
  refreshToken: Scalars['String']['output'];
1952
2097
  };
@@ -1957,31 +2102,18 @@ export type RefreshInput = {
1957
2102
  };
1958
2103
 
1959
2104
  export type VerifyChallengeInput = {
1960
- factor?: InputMaybe<VerifyChallengeFactorInput>;
2105
+ factor?: VerifyChallengeFactorInput;
1961
2106
  };
1962
2107
 
1963
2108
  export type VerifyChallengeFactorInput = {
1964
- otp?: InputMaybe<VerifyChallengeFactorOtpInput>;
2109
+ otp?: VerifyChallengeFactorOtpInput;
1965
2110
  };
1966
2111
 
1967
2112
  export type VerifyChallengeFactorOtpInput = {
1968
- code?: InputMaybe<Scalars['String']['input']>;
2113
+ code?: Scalars['String']['input'];
1969
2114
  };
1970
2115
 
1971
2116
 
1972
-
1973
- export type SdkFunctionWrapper = <T>(action: (requestHeaders?:Record<string, string>) => Promise<T>, operationName: string, operationType?: string, variables?: any) => Promise<T>;
1974
-
1975
-
1976
- const defaultWrapper: SdkFunctionWrapper = (action, _operationName, _operationType, _variables) => action();
1977
-
1978
- export function getSdk(client: GraphQLClient, withWrapper: SdkFunctionWrapper = defaultWrapper) {
1979
- return {
1980
-
1981
- };
1982
- }
1983
- export type Sdk = ReturnType<typeof getSdk>;
1984
-
1985
2117
  export type WabeSchemaScalars = "Phone"
1986
2118
 
1987
2119
  export type WabeSchemaEnums = "RoleEnum" | "AuthenticationProvider" | "SecondaryFactor" | "PaymentMode" | "PaymentReccuringInterval" | "Currency"
@@ -1991,5 +2123,6 @@ export type WabeSchemaTypes = {
1991
2123
  Post: Post,
1992
2124
  _Session: _Session,
1993
2125
  Role: Role,
1994
- Payment: Payment
2126
+ Payment: Payment,
2127
+ _InternalConfig: _InternalConfig
1995
2128
  }