@vertikalx/vtx-backend-client 1.0.0-dev.13 → 1.0.0-dev.15
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/package.json +1 -1
- package/src/client/runtime/createClient.d.ts +10 -4
- package/src/client/runtime/generateGraphqlOperation.d.ts +1 -1
- package/src/client/schema.d.ts +302 -1
- package/src/client/schema.graphql +135 -6
- package/src/client/schema.js +78 -1
- package/src/client/schema.js.map +1 -1
- package/src/client/types.d.ts +131 -2
- package/src/client/types.js +374 -31
- package/src/client/types.js.map +1 -1
- package/tsconfig.lib.tsbuildinfo +1 -1
package/src/client/types.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ declare const _default: {
|
|
|
4
4
|
ApiKey: {
|
|
5
5
|
_id: number[];
|
|
6
6
|
keyName: number[];
|
|
7
|
+
keyType: number[];
|
|
7
8
|
readAccess: number[];
|
|
8
9
|
writeAccess: number[];
|
|
9
10
|
__typename: number[];
|
|
@@ -13,6 +14,7 @@ declare const _default: {
|
|
|
13
14
|
ApiKeyWithValue: {
|
|
14
15
|
_id: number[];
|
|
15
16
|
keyName: number[];
|
|
17
|
+
keyType: number[];
|
|
16
18
|
readAccess: number[];
|
|
17
19
|
writeAccess: number[];
|
|
18
20
|
actualKey: number[];
|
|
@@ -72,6 +74,134 @@ declare const _default: {
|
|
|
72
74
|
loginEmail: number[];
|
|
73
75
|
__typename: number[];
|
|
74
76
|
};
|
|
77
|
+
Agreement: {
|
|
78
|
+
_id: number[];
|
|
79
|
+
kind: number[];
|
|
80
|
+
domain: number[];
|
|
81
|
+
isActiveAgreement: number[];
|
|
82
|
+
version: number[];
|
|
83
|
+
publishedDate: number[];
|
|
84
|
+
unPublishedDate: number[];
|
|
85
|
+
locked: number[];
|
|
86
|
+
name: number[];
|
|
87
|
+
description: number[];
|
|
88
|
+
content: number[];
|
|
89
|
+
createdDate: number[];
|
|
90
|
+
updatedDate: number[];
|
|
91
|
+
__typename: number[];
|
|
92
|
+
};
|
|
93
|
+
DateTime: {};
|
|
94
|
+
BillEntity: {
|
|
95
|
+
name: number[];
|
|
96
|
+
taxId: number[];
|
|
97
|
+
line1: number[];
|
|
98
|
+
line2: number[];
|
|
99
|
+
line3: number[];
|
|
100
|
+
city: number[];
|
|
101
|
+
state: number[];
|
|
102
|
+
country: number[];
|
|
103
|
+
zip: number[];
|
|
104
|
+
__typename: number[];
|
|
105
|
+
};
|
|
106
|
+
InvoiceItem: {
|
|
107
|
+
_id: number[];
|
|
108
|
+
unitPrice: number[];
|
|
109
|
+
unitTax: number[];
|
|
110
|
+
quantity: number[];
|
|
111
|
+
unit: number[];
|
|
112
|
+
itemPrice: number[];
|
|
113
|
+
itemTotal: number[];
|
|
114
|
+
__typename: number[];
|
|
115
|
+
};
|
|
116
|
+
Float: {};
|
|
117
|
+
Payment: {
|
|
118
|
+
_id: number[];
|
|
119
|
+
amount: number[];
|
|
120
|
+
currency: number[];
|
|
121
|
+
datePaid: number[];
|
|
122
|
+
paymentComment: number[];
|
|
123
|
+
transactionId: number[];
|
|
124
|
+
processorType: number[];
|
|
125
|
+
processorReference: number[];
|
|
126
|
+
paidItemReference: number[];
|
|
127
|
+
payeeReference: number[];
|
|
128
|
+
payorReference: number[];
|
|
129
|
+
paymentMethodType: number[];
|
|
130
|
+
paymentMethodReference: number[];
|
|
131
|
+
__typename: number[];
|
|
132
|
+
};
|
|
133
|
+
PlaFeature: {
|
|
134
|
+
_id: number[];
|
|
135
|
+
title: number[];
|
|
136
|
+
description: number[];
|
|
137
|
+
quantity: number[];
|
|
138
|
+
quantityUnit: number[];
|
|
139
|
+
__typename: number[];
|
|
140
|
+
};
|
|
141
|
+
Plan: {
|
|
142
|
+
_id: number[];
|
|
143
|
+
name: number[];
|
|
144
|
+
description: number[];
|
|
145
|
+
prices: number[];
|
|
146
|
+
features: number[];
|
|
147
|
+
isPublic: number[];
|
|
148
|
+
active: number[];
|
|
149
|
+
startOfferingDate: number[];
|
|
150
|
+
endOfferingDate: number[];
|
|
151
|
+
termsAndConditions: number[];
|
|
152
|
+
__typename: number[];
|
|
153
|
+
};
|
|
154
|
+
PlanPrice: {
|
|
155
|
+
_id: number[];
|
|
156
|
+
currency: number[];
|
|
157
|
+
price: number[];
|
|
158
|
+
taxMode: number[];
|
|
159
|
+
period: number[];
|
|
160
|
+
customDays: number[];
|
|
161
|
+
plan: number[];
|
|
162
|
+
__typename: number[];
|
|
163
|
+
};
|
|
164
|
+
Invoice: {
|
|
165
|
+
_id: number[];
|
|
166
|
+
invoiceDate: number[];
|
|
167
|
+
billedEntity: number[];
|
|
168
|
+
dueDate: number[];
|
|
169
|
+
billAmount: number[];
|
|
170
|
+
tax: number[];
|
|
171
|
+
total: number[];
|
|
172
|
+
currency: number[];
|
|
173
|
+
items: number[];
|
|
174
|
+
payment: number[];
|
|
175
|
+
__typename: number[];
|
|
176
|
+
};
|
|
177
|
+
SubscriptionInvoice: {
|
|
178
|
+
_id: number[];
|
|
179
|
+
invoice: number[];
|
|
180
|
+
billedPlan: number[];
|
|
181
|
+
subscriber: number[];
|
|
182
|
+
__typename: number[];
|
|
183
|
+
};
|
|
184
|
+
PlanSubscription: {
|
|
185
|
+
_id: number[];
|
|
186
|
+
currentPlan: number[];
|
|
187
|
+
billPrice: number[];
|
|
188
|
+
billCurrency: number[];
|
|
189
|
+
billPriceComment: number[];
|
|
190
|
+
lastBillDate: number[];
|
|
191
|
+
endAccessDate: number[];
|
|
192
|
+
autoRenew: number[];
|
|
193
|
+
autoRenewPlan: number[];
|
|
194
|
+
autoRenewDate: number[];
|
|
195
|
+
payments: number[];
|
|
196
|
+
invoices: number[];
|
|
197
|
+
__typename: number[];
|
|
198
|
+
};
|
|
199
|
+
SubscriptionPayment: {
|
|
200
|
+
_id: number[];
|
|
201
|
+
payment: number[];
|
|
202
|
+
subscriber: number[];
|
|
203
|
+
__typename: number[];
|
|
204
|
+
};
|
|
75
205
|
Brand: {
|
|
76
206
|
_id: number[];
|
|
77
207
|
name: number[];
|
|
@@ -182,6 +312,7 @@ declare const _default: {
|
|
|
182
312
|
};
|
|
183
313
|
CreateApiKeyInput: {
|
|
184
314
|
keyName: number[];
|
|
315
|
+
keyType: number[];
|
|
185
316
|
readAccess: number[];
|
|
186
317
|
writeAccess: number[];
|
|
187
318
|
__typename: number[];
|
|
@@ -241,8 +372,6 @@ declare const _default: {
|
|
|
241
372
|
mainSport: number[];
|
|
242
373
|
__typename: number[];
|
|
243
374
|
};
|
|
244
|
-
Float: {};
|
|
245
|
-
DateTime: {};
|
|
246
375
|
};
|
|
247
376
|
};
|
|
248
377
|
export default _default;
|
package/src/client/types.js
CHANGED
|
@@ -4,8 +4,8 @@ exports.default = {
|
|
|
4
4
|
"scalars": [
|
|
5
5
|
1,
|
|
6
6
|
2,
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
13,
|
|
8
|
+
16
|
|
9
9
|
],
|
|
10
10
|
"types": {
|
|
11
11
|
"ApiKey": {
|
|
@@ -15,6 +15,9 @@ exports.default = {
|
|
|
15
15
|
"keyName": [
|
|
16
16
|
1
|
|
17
17
|
],
|
|
18
|
+
"keyType": [
|
|
19
|
+
1
|
|
20
|
+
],
|
|
18
21
|
"readAccess": [
|
|
19
22
|
2
|
|
20
23
|
],
|
|
@@ -34,6 +37,9 @@ exports.default = {
|
|
|
34
37
|
"keyName": [
|
|
35
38
|
1
|
|
36
39
|
],
|
|
40
|
+
"keyType": [
|
|
41
|
+
1
|
|
42
|
+
],
|
|
37
43
|
"readAccess": [
|
|
38
44
|
2
|
|
39
45
|
],
|
|
@@ -177,6 +183,342 @@ exports.default = {
|
|
|
177
183
|
1
|
|
178
184
|
]
|
|
179
185
|
},
|
|
186
|
+
"Agreement": {
|
|
187
|
+
"_id": [
|
|
188
|
+
1
|
|
189
|
+
],
|
|
190
|
+
"kind": [
|
|
191
|
+
1
|
|
192
|
+
],
|
|
193
|
+
"domain": [
|
|
194
|
+
1
|
|
195
|
+
],
|
|
196
|
+
"isActiveAgreement": [
|
|
197
|
+
2
|
|
198
|
+
],
|
|
199
|
+
"version": [
|
|
200
|
+
1
|
|
201
|
+
],
|
|
202
|
+
"publishedDate": [
|
|
203
|
+
13
|
|
204
|
+
],
|
|
205
|
+
"unPublishedDate": [
|
|
206
|
+
13
|
|
207
|
+
],
|
|
208
|
+
"locked": [
|
|
209
|
+
2
|
|
210
|
+
],
|
|
211
|
+
"name": [
|
|
212
|
+
1
|
|
213
|
+
],
|
|
214
|
+
"description": [
|
|
215
|
+
1
|
|
216
|
+
],
|
|
217
|
+
"content": [
|
|
218
|
+
1
|
|
219
|
+
],
|
|
220
|
+
"createdDate": [
|
|
221
|
+
13
|
|
222
|
+
],
|
|
223
|
+
"updatedDate": [
|
|
224
|
+
13
|
|
225
|
+
],
|
|
226
|
+
"__typename": [
|
|
227
|
+
1
|
|
228
|
+
]
|
|
229
|
+
},
|
|
230
|
+
"DateTime": {},
|
|
231
|
+
"BillEntity": {
|
|
232
|
+
"name": [
|
|
233
|
+
1
|
|
234
|
+
],
|
|
235
|
+
"taxId": [
|
|
236
|
+
1
|
|
237
|
+
],
|
|
238
|
+
"line1": [
|
|
239
|
+
1
|
|
240
|
+
],
|
|
241
|
+
"line2": [
|
|
242
|
+
1
|
|
243
|
+
],
|
|
244
|
+
"line3": [
|
|
245
|
+
1
|
|
246
|
+
],
|
|
247
|
+
"city": [
|
|
248
|
+
1
|
|
249
|
+
],
|
|
250
|
+
"state": [
|
|
251
|
+
1
|
|
252
|
+
],
|
|
253
|
+
"country": [
|
|
254
|
+
1
|
|
255
|
+
],
|
|
256
|
+
"zip": [
|
|
257
|
+
1
|
|
258
|
+
],
|
|
259
|
+
"__typename": [
|
|
260
|
+
1
|
|
261
|
+
]
|
|
262
|
+
},
|
|
263
|
+
"InvoiceItem": {
|
|
264
|
+
"_id": [
|
|
265
|
+
1
|
|
266
|
+
],
|
|
267
|
+
"unitPrice": [
|
|
268
|
+
16
|
|
269
|
+
],
|
|
270
|
+
"unitTax": [
|
|
271
|
+
16
|
|
272
|
+
],
|
|
273
|
+
"quantity": [
|
|
274
|
+
16
|
|
275
|
+
],
|
|
276
|
+
"unit": [
|
|
277
|
+
1
|
|
278
|
+
],
|
|
279
|
+
"itemPrice": [
|
|
280
|
+
16
|
|
281
|
+
],
|
|
282
|
+
"itemTotal": [
|
|
283
|
+
16
|
|
284
|
+
],
|
|
285
|
+
"__typename": [
|
|
286
|
+
1
|
|
287
|
+
]
|
|
288
|
+
},
|
|
289
|
+
"Float": {},
|
|
290
|
+
"Payment": {
|
|
291
|
+
"_id": [
|
|
292
|
+
1
|
|
293
|
+
],
|
|
294
|
+
"amount": [
|
|
295
|
+
16
|
|
296
|
+
],
|
|
297
|
+
"currency": [
|
|
298
|
+
1
|
|
299
|
+
],
|
|
300
|
+
"datePaid": [
|
|
301
|
+
13
|
|
302
|
+
],
|
|
303
|
+
"paymentComment": [
|
|
304
|
+
1
|
|
305
|
+
],
|
|
306
|
+
"transactionId": [
|
|
307
|
+
1
|
|
308
|
+
],
|
|
309
|
+
"processorType": [
|
|
310
|
+
1
|
|
311
|
+
],
|
|
312
|
+
"processorReference": [
|
|
313
|
+
1
|
|
314
|
+
],
|
|
315
|
+
"paidItemReference": [
|
|
316
|
+
1
|
|
317
|
+
],
|
|
318
|
+
"payeeReference": [
|
|
319
|
+
1
|
|
320
|
+
],
|
|
321
|
+
"payorReference": [
|
|
322
|
+
1
|
|
323
|
+
],
|
|
324
|
+
"paymentMethodType": [
|
|
325
|
+
1
|
|
326
|
+
],
|
|
327
|
+
"paymentMethodReference": [
|
|
328
|
+
1
|
|
329
|
+
],
|
|
330
|
+
"__typename": [
|
|
331
|
+
1
|
|
332
|
+
]
|
|
333
|
+
},
|
|
334
|
+
"PlaFeature": {
|
|
335
|
+
"_id": [
|
|
336
|
+
1
|
|
337
|
+
],
|
|
338
|
+
"title": [
|
|
339
|
+
1
|
|
340
|
+
],
|
|
341
|
+
"description": [
|
|
342
|
+
1
|
|
343
|
+
],
|
|
344
|
+
"quantity": [
|
|
345
|
+
16
|
|
346
|
+
],
|
|
347
|
+
"quantityUnit": [
|
|
348
|
+
1
|
|
349
|
+
],
|
|
350
|
+
"__typename": [
|
|
351
|
+
1
|
|
352
|
+
]
|
|
353
|
+
},
|
|
354
|
+
"Plan": {
|
|
355
|
+
"_id": [
|
|
356
|
+
1
|
|
357
|
+
],
|
|
358
|
+
"name": [
|
|
359
|
+
1
|
|
360
|
+
],
|
|
361
|
+
"description": [
|
|
362
|
+
1
|
|
363
|
+
],
|
|
364
|
+
"prices": [
|
|
365
|
+
20
|
|
366
|
+
],
|
|
367
|
+
"features": [
|
|
368
|
+
18
|
|
369
|
+
],
|
|
370
|
+
"isPublic": [
|
|
371
|
+
2
|
|
372
|
+
],
|
|
373
|
+
"active": [
|
|
374
|
+
2
|
|
375
|
+
],
|
|
376
|
+
"startOfferingDate": [
|
|
377
|
+
13
|
|
378
|
+
],
|
|
379
|
+
"endOfferingDate": [
|
|
380
|
+
13
|
|
381
|
+
],
|
|
382
|
+
"termsAndConditions": [
|
|
383
|
+
1
|
|
384
|
+
],
|
|
385
|
+
"__typename": [
|
|
386
|
+
1
|
|
387
|
+
]
|
|
388
|
+
},
|
|
389
|
+
"PlanPrice": {
|
|
390
|
+
"_id": [
|
|
391
|
+
1
|
|
392
|
+
],
|
|
393
|
+
"currency": [
|
|
394
|
+
1
|
|
395
|
+
],
|
|
396
|
+
"price": [
|
|
397
|
+
16
|
|
398
|
+
],
|
|
399
|
+
"taxMode": [
|
|
400
|
+
1
|
|
401
|
+
],
|
|
402
|
+
"period": [
|
|
403
|
+
1
|
|
404
|
+
],
|
|
405
|
+
"customDays": [
|
|
406
|
+
16
|
|
407
|
+
],
|
|
408
|
+
"plan": [
|
|
409
|
+
19
|
|
410
|
+
],
|
|
411
|
+
"__typename": [
|
|
412
|
+
1
|
|
413
|
+
]
|
|
414
|
+
},
|
|
415
|
+
"Invoice": {
|
|
416
|
+
"_id": [
|
|
417
|
+
1
|
|
418
|
+
],
|
|
419
|
+
"invoiceDate": [
|
|
420
|
+
13
|
|
421
|
+
],
|
|
422
|
+
"billedEntity": [
|
|
423
|
+
14
|
|
424
|
+
],
|
|
425
|
+
"dueDate": [
|
|
426
|
+
13
|
|
427
|
+
],
|
|
428
|
+
"billAmount": [
|
|
429
|
+
16
|
|
430
|
+
],
|
|
431
|
+
"tax": [
|
|
432
|
+
16
|
|
433
|
+
],
|
|
434
|
+
"total": [
|
|
435
|
+
16
|
|
436
|
+
],
|
|
437
|
+
"currency": [
|
|
438
|
+
1
|
|
439
|
+
],
|
|
440
|
+
"items": [
|
|
441
|
+
15
|
|
442
|
+
],
|
|
443
|
+
"payment": [
|
|
444
|
+
17
|
|
445
|
+
],
|
|
446
|
+
"__typename": [
|
|
447
|
+
1
|
|
448
|
+
]
|
|
449
|
+
},
|
|
450
|
+
"SubscriptionInvoice": {
|
|
451
|
+
"_id": [
|
|
452
|
+
1
|
|
453
|
+
],
|
|
454
|
+
"invoice": [
|
|
455
|
+
21
|
|
456
|
+
],
|
|
457
|
+
"billedPlan": [
|
|
458
|
+
20
|
|
459
|
+
],
|
|
460
|
+
"subscriber": [
|
|
461
|
+
23
|
|
462
|
+
],
|
|
463
|
+
"__typename": [
|
|
464
|
+
1
|
|
465
|
+
]
|
|
466
|
+
},
|
|
467
|
+
"PlanSubscription": {
|
|
468
|
+
"_id": [
|
|
469
|
+
1
|
|
470
|
+
],
|
|
471
|
+
"currentPlan": [
|
|
472
|
+
20
|
|
473
|
+
],
|
|
474
|
+
"billPrice": [
|
|
475
|
+
16
|
|
476
|
+
],
|
|
477
|
+
"billCurrency": [
|
|
478
|
+
1
|
|
479
|
+
],
|
|
480
|
+
"billPriceComment": [
|
|
481
|
+
1
|
|
482
|
+
],
|
|
483
|
+
"lastBillDate": [
|
|
484
|
+
13
|
|
485
|
+
],
|
|
486
|
+
"endAccessDate": [
|
|
487
|
+
13
|
|
488
|
+
],
|
|
489
|
+
"autoRenew": [
|
|
490
|
+
2
|
|
491
|
+
],
|
|
492
|
+
"autoRenewPlan": [
|
|
493
|
+
20
|
|
494
|
+
],
|
|
495
|
+
"autoRenewDate": [
|
|
496
|
+
13
|
|
497
|
+
],
|
|
498
|
+
"payments": [
|
|
499
|
+
24
|
|
500
|
+
],
|
|
501
|
+
"invoices": [
|
|
502
|
+
22
|
|
503
|
+
],
|
|
504
|
+
"__typename": [
|
|
505
|
+
1
|
|
506
|
+
]
|
|
507
|
+
},
|
|
508
|
+
"SubscriptionPayment": {
|
|
509
|
+
"_id": [
|
|
510
|
+
1
|
|
511
|
+
],
|
|
512
|
+
"payment": [
|
|
513
|
+
17
|
|
514
|
+
],
|
|
515
|
+
"subscriber": [
|
|
516
|
+
23
|
|
517
|
+
],
|
|
518
|
+
"__typename": [
|
|
519
|
+
1
|
|
520
|
+
]
|
|
521
|
+
},
|
|
180
522
|
"Brand": {
|
|
181
523
|
"_id": [
|
|
182
524
|
1
|
|
@@ -295,10 +637,10 @@ exports.default = {
|
|
|
295
637
|
}
|
|
296
638
|
],
|
|
297
639
|
"industries": [
|
|
298
|
-
|
|
640
|
+
27
|
|
299
641
|
],
|
|
300
642
|
"findIndustryById": [
|
|
301
|
-
|
|
643
|
+
27,
|
|
302
644
|
{
|
|
303
645
|
"industryId": [
|
|
304
646
|
1,
|
|
@@ -307,10 +649,10 @@ exports.default = {
|
|
|
307
649
|
}
|
|
308
650
|
],
|
|
309
651
|
"brands": [
|
|
310
|
-
|
|
652
|
+
25
|
|
311
653
|
],
|
|
312
654
|
"existsValidSponsorForEmail": [
|
|
313
|
-
|
|
655
|
+
26,
|
|
314
656
|
{
|
|
315
657
|
"loginEmail": [
|
|
316
658
|
1,
|
|
@@ -319,13 +661,13 @@ exports.default = {
|
|
|
319
661
|
}
|
|
320
662
|
],
|
|
321
663
|
"sponsors": [
|
|
322
|
-
|
|
664
|
+
26
|
|
323
665
|
],
|
|
324
666
|
"athlete": [
|
|
325
|
-
|
|
667
|
+
28
|
|
326
668
|
],
|
|
327
669
|
"findAthleteById": [
|
|
328
|
-
|
|
670
|
+
28,
|
|
329
671
|
{
|
|
330
672
|
"athleteId": [
|
|
331
673
|
1,
|
|
@@ -342,7 +684,7 @@ exports.default = {
|
|
|
342
684
|
8,
|
|
343
685
|
{
|
|
344
686
|
"tenant": [
|
|
345
|
-
|
|
687
|
+
31,
|
|
346
688
|
"CreateTenantInput!"
|
|
347
689
|
]
|
|
348
690
|
}
|
|
@@ -351,7 +693,7 @@ exports.default = {
|
|
|
351
693
|
0,
|
|
352
694
|
{
|
|
353
695
|
"newKeyInfo": [
|
|
354
|
-
|
|
696
|
+
32,
|
|
355
697
|
"CreateApiKeyInput!"
|
|
356
698
|
]
|
|
357
699
|
}
|
|
@@ -360,7 +702,7 @@ exports.default = {
|
|
|
360
702
|
3,
|
|
361
703
|
{
|
|
362
704
|
"newKeyInfo": [
|
|
363
|
-
|
|
705
|
+
32,
|
|
364
706
|
"CreateApiKeyInput!"
|
|
365
707
|
]
|
|
366
708
|
}
|
|
@@ -369,7 +711,7 @@ exports.default = {
|
|
|
369
711
|
10,
|
|
370
712
|
{
|
|
371
713
|
"tenant": [
|
|
372
|
-
|
|
714
|
+
31,
|
|
373
715
|
"CreateTenantInput!"
|
|
374
716
|
]
|
|
375
717
|
}
|
|
@@ -378,7 +720,7 @@ exports.default = {
|
|
|
378
720
|
11,
|
|
379
721
|
{
|
|
380
722
|
"requestTokenDto": [
|
|
381
|
-
|
|
723
|
+
33,
|
|
382
724
|
"CreateTenantUserTokenDto!"
|
|
383
725
|
]
|
|
384
726
|
}
|
|
@@ -387,7 +729,7 @@ exports.default = {
|
|
|
387
729
|
11,
|
|
388
730
|
{
|
|
389
731
|
"requestTokenInfoDto": [
|
|
390
|
-
|
|
732
|
+
34,
|
|
391
733
|
"CreateTenantUserTokenFromEmailAndUriDto!"
|
|
392
734
|
]
|
|
393
735
|
}
|
|
@@ -396,7 +738,7 @@ exports.default = {
|
|
|
396
738
|
7,
|
|
397
739
|
{
|
|
398
740
|
"user": [
|
|
399
|
-
|
|
741
|
+
35,
|
|
400
742
|
"CreateActiveUserInput!"
|
|
401
743
|
]
|
|
402
744
|
}
|
|
@@ -411,46 +753,46 @@ exports.default = {
|
|
|
411
753
|
}
|
|
412
754
|
],
|
|
413
755
|
"createIndustry": [
|
|
414
|
-
|
|
756
|
+
27,
|
|
415
757
|
{
|
|
416
758
|
"input": [
|
|
417
|
-
|
|
759
|
+
36,
|
|
418
760
|
"CreateIndustryDto!"
|
|
419
761
|
]
|
|
420
762
|
}
|
|
421
763
|
],
|
|
422
764
|
"createBrand": [
|
|
423
|
-
|
|
765
|
+
25,
|
|
424
766
|
{
|
|
425
767
|
"input": [
|
|
426
|
-
|
|
768
|
+
37,
|
|
427
769
|
"CreateBrandDto!"
|
|
428
770
|
]
|
|
429
771
|
}
|
|
430
772
|
],
|
|
431
773
|
"registerSponsor": [
|
|
432
|
-
|
|
774
|
+
26,
|
|
433
775
|
{
|
|
434
776
|
"input": [
|
|
435
|
-
|
|
777
|
+
38,
|
|
436
778
|
"RegisterSponsorInput!"
|
|
437
779
|
]
|
|
438
780
|
}
|
|
439
781
|
],
|
|
440
782
|
"createSponsor": [
|
|
441
|
-
|
|
783
|
+
26,
|
|
442
784
|
{
|
|
443
785
|
"input": [
|
|
444
|
-
|
|
786
|
+
39,
|
|
445
787
|
"CreateSponsorDto!"
|
|
446
788
|
]
|
|
447
789
|
}
|
|
448
790
|
],
|
|
449
791
|
"registerAthlete": [
|
|
450
|
-
|
|
792
|
+
28,
|
|
451
793
|
{
|
|
452
794
|
"input": [
|
|
453
|
-
|
|
795
|
+
40,
|
|
454
796
|
"RegisterAthleteDto!"
|
|
455
797
|
]
|
|
456
798
|
}
|
|
@@ -477,6 +819,9 @@ exports.default = {
|
|
|
477
819
|
"keyName": [
|
|
478
820
|
1
|
|
479
821
|
],
|
|
822
|
+
"keyType": [
|
|
823
|
+
1
|
|
824
|
+
],
|
|
480
825
|
"readAccess": [
|
|
481
826
|
2
|
|
482
827
|
],
|
|
@@ -602,10 +947,10 @@ exports.default = {
|
|
|
602
947
|
1
|
|
603
948
|
],
|
|
604
949
|
"dateOfBirth": [
|
|
605
|
-
|
|
950
|
+
13
|
|
606
951
|
],
|
|
607
952
|
"competitionLevel": [
|
|
608
|
-
|
|
953
|
+
16
|
|
609
954
|
],
|
|
610
955
|
"team": [
|
|
611
956
|
1
|
|
@@ -619,9 +964,7 @@ exports.default = {
|
|
|
619
964
|
"__typename": [
|
|
620
965
|
1
|
|
621
966
|
]
|
|
622
|
-
}
|
|
623
|
-
"Float": {},
|
|
624
|
-
"DateTime": {}
|
|
967
|
+
}
|
|
625
968
|
}
|
|
626
969
|
};
|
|
627
970
|
//# sourceMappingURL=types.js.map
|