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