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