@vertikalx/vtx-backend-client 1.0.0-dev-daniel.219 → 1.0.0-dev-geo.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (100) hide show
  1. package/libs/vtx-backend-client/package.json +16 -0
  2. package/libs/vtx-backend-client/src/api/api-call-headers.d.ts +16 -0
  3. package/libs/vtx-backend-client/src/api/api-call-headers.js +20 -0
  4. package/libs/vtx-backend-client/src/api/api-call-headers.js.map +1 -0
  5. package/libs/vtx-backend-client/src/api/backend-response.d.ts +10 -0
  6. package/libs/vtx-backend-client/src/api/backend-response.js +3 -0
  7. package/libs/vtx-backend-client/src/api/backend-response.js.map +1 -0
  8. package/libs/vtx-backend-client/src/api/domains.d.ts +3 -0
  9. package/libs/vtx-backend-client/src/api/domains.js +7 -0
  10. package/libs/vtx-backend-client/src/api/domains.js.map +1 -0
  11. package/libs/vtx-backend-client/src/api/response-builder.d.ts +4 -0
  12. package/libs/vtx-backend-client/src/api/response-builder.js +123 -0
  13. package/libs/vtx-backend-client/src/api/response-builder.js.map +1 -0
  14. package/libs/vtx-backend-client/src/api/types.d.ts +2 -0
  15. package/libs/vtx-backend-client/src/api/types.js +3 -0
  16. package/libs/vtx-backend-client/src/api/types.js.map +1 -0
  17. package/libs/vtx-backend-client/src/api/vtx-apikey-api.d.ts +6 -0
  18. package/libs/vtx-backend-client/src/api/vtx-apikey-api.js +19 -0
  19. package/libs/vtx-backend-client/src/api/vtx-apikey-api.js.map +1 -0
  20. package/libs/vtx-backend-client/src/api/vtx-base-api.d.ts +75 -0
  21. package/libs/vtx-backend-client/src/api/vtx-base-api.js +5193 -0
  22. package/libs/vtx-backend-client/src/api/vtx-base-api.js.map +1 -0
  23. package/libs/vtx-backend-client/src/api/vtx-mobile-api.d.ts +6 -0
  24. package/libs/vtx-backend-client/src/api/vtx-mobile-api.js +27 -0
  25. package/libs/vtx-backend-client/src/api/vtx-mobile-api.js.map +1 -0
  26. package/libs/vtx-backend-client/src/api/vtx-web-browser-api.d.ts +7 -0
  27. package/libs/vtx-backend-client/src/api/vtx-web-browser-api.js +36 -0
  28. package/libs/vtx-backend-client/src/api/vtx-web-browser-api.js.map +1 -0
  29. package/libs/vtx-backend-client/src/api/vtx-web-server-api.d.ts +7 -0
  30. package/libs/vtx-backend-client/src/api/vtx-web-server-api.js +33 -0
  31. package/libs/vtx-backend-client/src/api/vtx-web-server-api.js.map +1 -0
  32. package/libs/vtx-backend-client/src/client/index.d.ts +25 -0
  33. package/libs/vtx-backend-client/src/client/index.js +44 -0
  34. package/libs/vtx-backend-client/src/client/index.js.map +1 -0
  35. package/libs/vtx-backend-client/src/client/runtime/batcher.d.ts +36 -0
  36. package/libs/vtx-backend-client/src/client/runtime/batcher.js +123 -0
  37. package/libs/vtx-backend-client/src/client/runtime/batcher.js.map +1 -0
  38. package/libs/vtx-backend-client/src/client/runtime/createClient.d.ts +17 -0
  39. package/libs/vtx-backend-client/src/client/runtime/createClient.js +28 -0
  40. package/libs/vtx-backend-client/src/client/runtime/createClient.js.map +1 -0
  41. package/libs/vtx-backend-client/src/client/runtime/error.d.ts +15 -0
  42. package/libs/vtx-backend-client/src/client/runtime/error.js +19 -0
  43. package/libs/vtx-backend-client/src/client/runtime/error.js.map +1 -0
  44. package/libs/vtx-backend-client/src/client/runtime/fetcher.d.ts +10 -0
  45. package/libs/vtx-backend-client/src/client/runtime/fetcher.js +68 -0
  46. package/libs/vtx-backend-client/src/client/runtime/fetcher.js.map +1 -0
  47. package/libs/vtx-backend-client/src/client/runtime/generateGraphqlOperation.d.ts +30 -0
  48. package/libs/vtx-backend-client/src/client/runtime/generateGraphqlOperation.js +134 -0
  49. package/libs/vtx-backend-client/src/client/runtime/generateGraphqlOperation.js.map +1 -0
  50. package/libs/vtx-backend-client/src/client/runtime/index.d.ts +11 -0
  51. package/libs/vtx-backend-client/src/client/runtime/index.js +17 -0
  52. package/libs/vtx-backend-client/src/client/runtime/index.js.map +1 -0
  53. package/libs/vtx-backend-client/src/client/runtime/linkTypeMap.d.ts +9 -0
  54. package/libs/vtx-backend-client/src/client/runtime/linkTypeMap.js +95 -0
  55. package/libs/vtx-backend-client/src/client/runtime/linkTypeMap.js.map +1 -0
  56. package/libs/vtx-backend-client/src/client/runtime/typeSelection.d.ts +28 -0
  57. package/libs/vtx-backend-client/src/client/runtime/typeSelection.js +3 -0
  58. package/libs/vtx-backend-client/src/client/runtime/typeSelection.js.map +1 -0
  59. package/libs/vtx-backend-client/src/client/runtime/types.d.ts +55 -0
  60. package/libs/vtx-backend-client/src/client/runtime/types.js +3 -0
  61. package/libs/vtx-backend-client/src/client/runtime/types.js.map +1 -0
  62. package/libs/vtx-backend-client/src/client/schema.d.ts +2988 -0
  63. package/libs/vtx-backend-client/src/client/schema.js +656 -0
  64. package/libs/vtx-backend-client/src/client/schema.js.map +1 -0
  65. package/libs/vtx-backend-client/src/client/types.d.ts +1632 -0
  66. package/libs/vtx-backend-client/src/client/types.js +4235 -0
  67. package/libs/vtx-backend-client/src/client/types.js.map +1 -0
  68. package/libs/vtx-backend-client/src/index.d.ts +11 -0
  69. package/libs/vtx-backend-client/src/index.js +28 -0
  70. package/libs/vtx-backend-client/src/index.js.map +1 -0
  71. package/package.json +1 -1
  72. package/src/api/dto/edit-picture.dto.d.ts +5 -0
  73. package/src/api/dto/edit-picture.dto.js +31 -0
  74. package/src/api/dto/edit-picture.dto.js.map +1 -0
  75. package/src/api/response-builder.js +3 -2
  76. package/src/api/response-builder.js.map +1 -1
  77. package/src/api/types/add-values-response.type.d.ts +7 -0
  78. package/src/api/types/add-values-response.type.js +42 -0
  79. package/src/api/types/add-values-response.type.js.map +1 -0
  80. package/src/api/types/delete-single-value-response.type.d.ts +6 -0
  81. package/src/api/types/delete-single-value-response.type.js +36 -0
  82. package/src/api/types/delete-single-value-response.type.js.map +1 -0
  83. package/src/api/types/edit-picture-response.type.d.ts +7 -0
  84. package/src/api/types/edit-picture-response.type.js +39 -0
  85. package/src/api/types/edit-picture-response.type.js.map +1 -0
  86. package/src/api/types/error.type.d.ts +4 -0
  87. package/src/api/types/error.type.js +28 -0
  88. package/src/api/types/error.type.js.map +1 -0
  89. package/src/api/vtx-base-api.d.ts +8 -7
  90. package/src/api/vtx-base-api.js +446 -309
  91. package/src/api/vtx-base-api.js.map +1 -1
  92. package/src/client/runtime/generateGraphqlOperation.d.ts +1 -1
  93. package/src/client/schema.d.ts +35 -441
  94. package/src/client/schema.graphql +33 -237
  95. package/src/client/schema.js +7 -92
  96. package/src/client/schema.js.map +1 -1
  97. package/src/client/types.d.ts +19 -234
  98. package/src/client/types.js +354 -914
  99. package/src/client/types.js.map +1 -1
  100. package/tsconfig.lib.tsbuildinfo +1 -1
@@ -0,0 +1,4235 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.default = {
4
+ "scalars": [
5
+ 1,
6
+ 2,
7
+ 14,
8
+ 17
9
+ ],
10
+ "types": {
11
+ "User": {
12
+ "_id": [
13
+ 1
14
+ ],
15
+ "loginEmail": [
16
+ 1
17
+ ],
18
+ "suspended": [
19
+ 2
20
+ ],
21
+ "domains": [
22
+ 7
23
+ ],
24
+ "loginMethods": [
25
+ 1
26
+ ],
27
+ "__typename": [
28
+ 1
29
+ ]
30
+ },
31
+ "String": {},
32
+ "Boolean": {},
33
+ "UserWithToken": {
34
+ "_id": [
35
+ 1
36
+ ],
37
+ "loginEmail": [
38
+ 1
39
+ ],
40
+ "suspended": [
41
+ 2
42
+ ],
43
+ "domains": [
44
+ 7
45
+ ],
46
+ "loginMethods": [
47
+ 1
48
+ ],
49
+ "token": [
50
+ 8
51
+ ],
52
+ "__typename": [
53
+ 1
54
+ ]
55
+ },
56
+ "BaseTenant": {
57
+ "_id": [
58
+ 1
59
+ ],
60
+ "name": [
61
+ 1
62
+ ],
63
+ "tenant_uri": [
64
+ 1
65
+ ],
66
+ "domain": [
67
+ 6
68
+ ],
69
+ "__typename": [
70
+ 1
71
+ ]
72
+ },
73
+ "Tenant": {
74
+ "_id": [
75
+ 1
76
+ ],
77
+ "name": [
78
+ 1
79
+ ],
80
+ "tenant_uri": [
81
+ 1
82
+ ],
83
+ "domain": [
84
+ 6
85
+ ],
86
+ "email": [
87
+ 1
88
+ ],
89
+ "owner": [
90
+ 0
91
+ ],
92
+ "__typename": [
93
+ 1
94
+ ]
95
+ },
96
+ "Domain": {
97
+ "_id": [
98
+ 1
99
+ ],
100
+ "name": [
101
+ 1
102
+ ],
103
+ "description": [
104
+ 1
105
+ ],
106
+ "__typename": [
107
+ 1
108
+ ]
109
+ },
110
+ "DomainCredential": {
111
+ "_id": [
112
+ 1
113
+ ],
114
+ "name": [
115
+ 1
116
+ ],
117
+ "description": [
118
+ 1
119
+ ],
120
+ "tenant": [
121
+ 4
122
+ ],
123
+ "__typename": [
124
+ 1
125
+ ]
126
+ },
127
+ "UserToken": {
128
+ "actualToken": [
129
+ 1
130
+ ],
131
+ "refreshToken": [
132
+ 1
133
+ ],
134
+ "__typename": [
135
+ 1
136
+ ]
137
+ },
138
+ "DecodedToken": {
139
+ "tokenId": [
140
+ 1
141
+ ],
142
+ "systemId": [
143
+ 1
144
+ ],
145
+ "userId": [
146
+ 1
147
+ ],
148
+ "email": [
149
+ 1
150
+ ],
151
+ "refreshTokenId": [
152
+ 1
153
+ ],
154
+ "domains": [
155
+ 7
156
+ ],
157
+ "__typename": [
158
+ 1
159
+ ]
160
+ },
161
+ "DecodedRefreshToken": {
162
+ "userId": [
163
+ 1
164
+ ],
165
+ "email": [
166
+ 1
167
+ ],
168
+ "originalTokenId": [
169
+ 1
170
+ ],
171
+ "__typename": [
172
+ 1
173
+ ]
174
+ },
175
+ "TenantWithUserLogin": {
176
+ "_id": [
177
+ 1
178
+ ],
179
+ "name": [
180
+ 1
181
+ ],
182
+ "tenant_uri": [
183
+ 1
184
+ ],
185
+ "domain": [
186
+ 6
187
+ ],
188
+ "email": [
189
+ 1
190
+ ],
191
+ "owner": [
192
+ 0
193
+ ],
194
+ "user": [
195
+ 3
196
+ ],
197
+ "__typename": [
198
+ 1
199
+ ]
200
+ },
201
+ "UriAvailableType": {
202
+ "available": [
203
+ 2
204
+ ],
205
+ "valid": [
206
+ 2
207
+ ],
208
+ "__typename": [
209
+ 1
210
+ ]
211
+ },
212
+ "Agreement": {
213
+ "_id": [
214
+ 1
215
+ ],
216
+ "kind": [
217
+ 1
218
+ ],
219
+ "domain": [
220
+ 1
221
+ ],
222
+ "isActiveAgreement": [
223
+ 2
224
+ ],
225
+ "version": [
226
+ 1
227
+ ],
228
+ "publishedDate": [
229
+ 14
230
+ ],
231
+ "unPublishedDate": [
232
+ 14
233
+ ],
234
+ "locked": [
235
+ 2
236
+ ],
237
+ "name": [
238
+ 1
239
+ ],
240
+ "description": [
241
+ 1
242
+ ],
243
+ "content": [
244
+ 1
245
+ ],
246
+ "createdDate": [
247
+ 14
248
+ ],
249
+ "updatedDate": [
250
+ 14
251
+ ],
252
+ "__typename": [
253
+ 1
254
+ ]
255
+ },
256
+ "DateTime": {},
257
+ "BillEntity": {
258
+ "name": [
259
+ 1
260
+ ],
261
+ "taxId": [
262
+ 1
263
+ ],
264
+ "line1": [
265
+ 1
266
+ ],
267
+ "line2": [
268
+ 1
269
+ ],
270
+ "line3": [
271
+ 1
272
+ ],
273
+ "city": [
274
+ 1
275
+ ],
276
+ "state": [
277
+ 1
278
+ ],
279
+ "country": [
280
+ 1
281
+ ],
282
+ "zip": [
283
+ 1
284
+ ],
285
+ "__typename": [
286
+ 1
287
+ ]
288
+ },
289
+ "InvoiceItem": {
290
+ "_id": [
291
+ 1
292
+ ],
293
+ "unitPrice": [
294
+ 17
295
+ ],
296
+ "unitTax": [
297
+ 17
298
+ ],
299
+ "quantity": [
300
+ 17
301
+ ],
302
+ "unit": [
303
+ 1
304
+ ],
305
+ "itemPrice": [
306
+ 17
307
+ ],
308
+ "itemTotal": [
309
+ 17
310
+ ],
311
+ "__typename": [
312
+ 1
313
+ ]
314
+ },
315
+ "Float": {},
316
+ "Payment": {
317
+ "_id": [
318
+ 1
319
+ ],
320
+ "amount": [
321
+ 17
322
+ ],
323
+ "currency": [
324
+ 1
325
+ ],
326
+ "datePaid": [
327
+ 14
328
+ ],
329
+ "paymentComment": [
330
+ 1
331
+ ],
332
+ "transactionId": [
333
+ 1
334
+ ],
335
+ "processorType": [
336
+ 1
337
+ ],
338
+ "processorReference": [
339
+ 1
340
+ ],
341
+ "paidItemReference": [
342
+ 1
343
+ ],
344
+ "payeeReference": [
345
+ 1
346
+ ],
347
+ "payorReference": [
348
+ 1
349
+ ],
350
+ "paymentMethodType": [
351
+ 1
352
+ ],
353
+ "paymentMethodReference": [
354
+ 1
355
+ ],
356
+ "__typename": [
357
+ 1
358
+ ]
359
+ },
360
+ "PlaFeature": {
361
+ "_id": [
362
+ 1
363
+ ],
364
+ "title": [
365
+ 1
366
+ ],
367
+ "description": [
368
+ 1
369
+ ],
370
+ "quantity": [
371
+ 17
372
+ ],
373
+ "quantityUnit": [
374
+ 1
375
+ ],
376
+ "__typename": [
377
+ 1
378
+ ]
379
+ },
380
+ "Plan": {
381
+ "_id": [
382
+ 1
383
+ ],
384
+ "name": [
385
+ 1
386
+ ],
387
+ "description": [
388
+ 1
389
+ ],
390
+ "prices": [
391
+ 21
392
+ ],
393
+ "features": [
394
+ 19
395
+ ],
396
+ "isPublic": [
397
+ 2
398
+ ],
399
+ "active": [
400
+ 2
401
+ ],
402
+ "startOfferingDate": [
403
+ 14
404
+ ],
405
+ "endOfferingDate": [
406
+ 14
407
+ ],
408
+ "termsAndConditions": [
409
+ 1
410
+ ],
411
+ "__typename": [
412
+ 1
413
+ ]
414
+ },
415
+ "PlanPrice": {
416
+ "_id": [
417
+ 1
418
+ ],
419
+ "currency": [
420
+ 1
421
+ ],
422
+ "price": [
423
+ 17
424
+ ],
425
+ "taxMode": [
426
+ 1
427
+ ],
428
+ "period": [
429
+ 1
430
+ ],
431
+ "customDays": [
432
+ 17
433
+ ],
434
+ "plan": [
435
+ 20
436
+ ],
437
+ "__typename": [
438
+ 1
439
+ ]
440
+ },
441
+ "Invoice": {
442
+ "_id": [
443
+ 1
444
+ ],
445
+ "invoiceDate": [
446
+ 14
447
+ ],
448
+ "billedEntity": [
449
+ 15
450
+ ],
451
+ "dueDate": [
452
+ 14
453
+ ],
454
+ "billAmount": [
455
+ 17
456
+ ],
457
+ "tax": [
458
+ 17
459
+ ],
460
+ "total": [
461
+ 17
462
+ ],
463
+ "currency": [
464
+ 1
465
+ ],
466
+ "items": [
467
+ 16
468
+ ],
469
+ "payment": [
470
+ 18
471
+ ],
472
+ "__typename": [
473
+ 1
474
+ ]
475
+ },
476
+ "SubscriptionInvoice": {
477
+ "_id": [
478
+ 1
479
+ ],
480
+ "invoice": [
481
+ 22
482
+ ],
483
+ "billedPlan": [
484
+ 21
485
+ ],
486
+ "subscriber": [
487
+ 24
488
+ ],
489
+ "__typename": [
490
+ 1
491
+ ]
492
+ },
493
+ "PlanSubscription": {
494
+ "_id": [
495
+ 1
496
+ ],
497
+ "currentPlan": [
498
+ 21
499
+ ],
500
+ "billPrice": [
501
+ 17
502
+ ],
503
+ "billCurrency": [
504
+ 1
505
+ ],
506
+ "billPriceComment": [
507
+ 1
508
+ ],
509
+ "lastBillDate": [
510
+ 14
511
+ ],
512
+ "endAccessDate": [
513
+ 14
514
+ ],
515
+ "autoRenew": [
516
+ 2
517
+ ],
518
+ "autoRenewPlan": [
519
+ 21
520
+ ],
521
+ "autoRenewDate": [
522
+ 14
523
+ ],
524
+ "payments": [
525
+ 25
526
+ ],
527
+ "invoices": [
528
+ 23
529
+ ],
530
+ "__typename": [
531
+ 1
532
+ ]
533
+ },
534
+ "SubscriptionPayment": {
535
+ "_id": [
536
+ 1
537
+ ],
538
+ "payment": [
539
+ 18
540
+ ],
541
+ "subscriber": [
542
+ 24
543
+ ],
544
+ "__typename": [
545
+ 1
546
+ ]
547
+ },
548
+ "AWSS3File": {
549
+ "_id": [
550
+ 1
551
+ ],
552
+ "name": [
553
+ 1
554
+ ],
555
+ "contentType": [
556
+ 1
557
+ ],
558
+ "size": [
559
+ 17
560
+ ],
561
+ "useType": [
562
+ 1
563
+ ],
564
+ "url": [
565
+ 1
566
+ ],
567
+ "key": [
568
+ 1
569
+ ],
570
+ "pendingDelete": [
571
+ 2
572
+ ],
573
+ "__typename": [
574
+ 1
575
+ ]
576
+ },
577
+ "MagicLink": {
578
+ "_id": [
579
+ 1
580
+ ],
581
+ "code": [
582
+ 1
583
+ ],
584
+ "type": [
585
+ 1
586
+ ],
587
+ "url": [
588
+ 1
589
+ ],
590
+ "expires": [
591
+ 14
592
+ ],
593
+ "data": [
594
+ 1
595
+ ],
596
+ "isExpired": [
597
+ 2
598
+ ],
599
+ "__typename": [
600
+ 1
601
+ ]
602
+ },
603
+ "VerificationCode": {
604
+ "_id": [
605
+ 1
606
+ ],
607
+ "type": [
608
+ 1
609
+ ],
610
+ "recipient": [
611
+ 1
612
+ ],
613
+ "expires": [
614
+ 14
615
+ ],
616
+ "data": [
617
+ 1
618
+ ],
619
+ "isExpired": [
620
+ 2
621
+ ],
622
+ "createdDate": [
623
+ 14
624
+ ],
625
+ "__typename": [
626
+ 1
627
+ ]
628
+ },
629
+ "ErrorInfo": {
630
+ "errorCode": [
631
+ 17
632
+ ],
633
+ "errorMessage": [
634
+ 1
635
+ ],
636
+ "__typename": [
637
+ 1
638
+ ]
639
+ },
640
+ "HttpRequestField": {
641
+ "key": [
642
+ 1
643
+ ],
644
+ "value": [
645
+ 1
646
+ ],
647
+ "__typename": [
648
+ 1
649
+ ]
650
+ },
651
+ "AWSS3UploadUrl": {
652
+ "uploadUrl": [
653
+ 1
654
+ ],
655
+ "fields": [
656
+ 30
657
+ ],
658
+ "downloadUrl": [
659
+ 1
660
+ ],
661
+ "bucket": [
662
+ 1
663
+ ],
664
+ "key": [
665
+ 1
666
+ ],
667
+ "__typename": [
668
+ 1
669
+ ]
670
+ },
671
+ "AWSS3CallResult": {
672
+ "httpStatus": [
673
+ 17
674
+ ],
675
+ "result": [
676
+ 1
677
+ ],
678
+ "message": [
679
+ 1
680
+ ],
681
+ "errors": [
682
+ 1
683
+ ],
684
+ "__typename": [
685
+ 1
686
+ ]
687
+ },
688
+ "CodeVerificationResponse": {
689
+ "result": [
690
+ 1
691
+ ],
692
+ "code": [
693
+ 28
694
+ ],
695
+ "error": [
696
+ 29
697
+ ],
698
+ "__typename": [
699
+ 1
700
+ ]
701
+ },
702
+ "BrandStats": {
703
+ "campaigns": [
704
+ 17
705
+ ],
706
+ "sponsorships": [
707
+ 17
708
+ ],
709
+ "sports": [
710
+ 17
711
+ ],
712
+ "athletes": [
713
+ 17
714
+ ],
715
+ "__typename": [
716
+ 1
717
+ ]
718
+ },
719
+ "BrandTranslation": {
720
+ "_id": [
721
+ 1
722
+ ],
723
+ "brandId": [
724
+ 1
725
+ ],
726
+ "language": [
727
+ 1
728
+ ],
729
+ "name": [
730
+ 1
731
+ ],
732
+ "slogan": [
733
+ 1
734
+ ],
735
+ "description": [
736
+ 1
737
+ ],
738
+ "logo": [
739
+ 26
740
+ ],
741
+ "banner": [
742
+ 26
743
+ ],
744
+ "__typename": [
745
+ 1
746
+ ]
747
+ },
748
+ "Brand": {
749
+ "_id": [
750
+ 1
751
+ ],
752
+ "name": [
753
+ 1
754
+ ],
755
+ "slogan": [
756
+ 1
757
+ ],
758
+ "website": [
759
+ 1
760
+ ],
761
+ "description": [
762
+ 1
763
+ ],
764
+ "approved": [
765
+ 2
766
+ ],
767
+ "published": [
768
+ 2
769
+ ],
770
+ "logo": [
771
+ 26
772
+ ],
773
+ "banner": [
774
+ 26
775
+ ],
776
+ "stats": [
777
+ 34
778
+ ],
779
+ "operatorIds": [
780
+ 1
781
+ ],
782
+ "translations": [
783
+ 35
784
+ ],
785
+ "__typename": [
786
+ 1
787
+ ]
788
+ },
789
+ "City": {
790
+ "_id": [
791
+ 1
792
+ ],
793
+ "name": [
794
+ 1
795
+ ],
796
+ "localizedName": [
797
+ 1
798
+ ],
799
+ "state": [
800
+ 38
801
+ ],
802
+ "latitude": [
803
+ 17
804
+ ],
805
+ "longitude": [
806
+ 17
807
+ ],
808
+ "timezone": [
809
+ 1
810
+ ],
811
+ "__typename": [
812
+ 1
813
+ ]
814
+ },
815
+ "State": {
816
+ "_id": [
817
+ 1
818
+ ],
819
+ "name": [
820
+ 1
821
+ ],
822
+ "country": [
823
+ 39
824
+ ],
825
+ "cities": [
826
+ 37
827
+ ],
828
+ "__typename": [
829
+ 1
830
+ ]
831
+ },
832
+ "Country": {
833
+ "_id": [
834
+ 1
835
+ ],
836
+ "name": [
837
+ 1
838
+ ],
839
+ "states": [
840
+ 38
841
+ ],
842
+ "__typename": [
843
+ 1
844
+ ]
845
+ },
846
+ "AgeQualification": {
847
+ "type": [
848
+ 1
849
+ ],
850
+ "value": [
851
+ 17
852
+ ],
853
+ "operator": [
854
+ 1
855
+ ],
856
+ "__typename": [
857
+ 1
858
+ ]
859
+ },
860
+ "GenderQualification": {
861
+ "type": [
862
+ 1
863
+ ],
864
+ "operator": [
865
+ 1
866
+ ],
867
+ "values": [
868
+ 1
869
+ ],
870
+ "__typename": [
871
+ 1
872
+ ]
873
+ },
874
+ "ScoreQualification": {
875
+ "type": [
876
+ 1
877
+ ],
878
+ "scoreType": [
879
+ 1
880
+ ],
881
+ "operator": [
882
+ 1
883
+ ],
884
+ "value": [
885
+ 17
886
+ ],
887
+ "__typename": [
888
+ 1
889
+ ]
890
+ },
891
+ "LocationQualification": {
892
+ "type": [
893
+ 1
894
+ ],
895
+ "operator": [
896
+ 1
897
+ ],
898
+ "countries": [
899
+ 39
900
+ ],
901
+ "states": [
902
+ 38
903
+ ],
904
+ "cities": [
905
+ 37
906
+ ],
907
+ "__typename": [
908
+ 1
909
+ ]
910
+ },
911
+ "NationalityQualification": {
912
+ "type": [
913
+ 1
914
+ ],
915
+ "operator": [
916
+ 1
917
+ ],
918
+ "countries": [
919
+ 39
920
+ ],
921
+ "__typename": [
922
+ 1
923
+ ]
924
+ },
925
+ "DistanceQualification": {
926
+ "type": [
927
+ 1
928
+ ],
929
+ "maxDistance": [
930
+ 17
931
+ ],
932
+ "latitude": [
933
+ 17
934
+ ],
935
+ "longitude": [
936
+ 17
937
+ ],
938
+ "cityId": [
939
+ 1
940
+ ],
941
+ "__typename": [
942
+ 1
943
+ ]
944
+ },
945
+ "SportsQualification": {
946
+ "type": [
947
+ 1
948
+ ],
949
+ "sports": [
950
+ 1
951
+ ],
952
+ "operator": [
953
+ 1
954
+ ],
955
+ "__typename": [
956
+ 1
957
+ ]
958
+ },
959
+ "SportsLevelQualification": {
960
+ "type": [
961
+ 1
962
+ ],
963
+ "operator": [
964
+ 1
965
+ ],
966
+ "level": [
967
+ 1
968
+ ],
969
+ "__typename": [
970
+ 1
971
+ ]
972
+ },
973
+ "AthleteCriteria": {
974
+ "_id": [
975
+ 1
976
+ ],
977
+ "label": [
978
+ 1
979
+ ],
980
+ "qualifications": [
981
+ 49
982
+ ],
983
+ "__typename": [
984
+ 1
985
+ ]
986
+ },
987
+ "QualificationTypeUnion": {
988
+ "on_AgeQualification": [
989
+ 40
990
+ ],
991
+ "on_GenderQualification": [
992
+ 41
993
+ ],
994
+ "on_ScoreQualification": [
995
+ 42
996
+ ],
997
+ "on_LocationQualification": [
998
+ 43
999
+ ],
1000
+ "on_NationalityQualification": [
1001
+ 44
1002
+ ],
1003
+ "on_DistanceQualification": [
1004
+ 45
1005
+ ],
1006
+ "on_SportsQualification": [
1007
+ 46
1008
+ ],
1009
+ "on_SportsLevelQualification": [
1010
+ 47
1011
+ ],
1012
+ "__typename": [
1013
+ 1
1014
+ ]
1015
+ },
1016
+ "Industry": {
1017
+ "_id": [
1018
+ 1
1019
+ ],
1020
+ "name": [
1021
+ 1
1022
+ ],
1023
+ "__typename": [
1024
+ 1
1025
+ ]
1026
+ },
1027
+ "SponsorStats": {
1028
+ "sponsoredAthletes": [
1029
+ 17
1030
+ ],
1031
+ "totalBrands": [
1032
+ 17
1033
+ ],
1034
+ "activeCampaigns": [
1035
+ 17
1036
+ ],
1037
+ "activeSponsorships": [
1038
+ 17
1039
+ ],
1040
+ "__typename": [
1041
+ 1
1042
+ ]
1043
+ },
1044
+ "SponsorBrand": {
1045
+ "_id": [
1046
+ 1
1047
+ ],
1048
+ "name": [
1049
+ 1
1050
+ ],
1051
+ "slogan": [
1052
+ 1
1053
+ ],
1054
+ "website": [
1055
+ 1
1056
+ ],
1057
+ "description": [
1058
+ 1
1059
+ ],
1060
+ "approved": [
1061
+ 2
1062
+ ],
1063
+ "published": [
1064
+ 2
1065
+ ],
1066
+ "logo": [
1067
+ 26
1068
+ ],
1069
+ "banner": [
1070
+ 26
1071
+ ],
1072
+ "stats": [
1073
+ 34
1074
+ ],
1075
+ "operatorIds": [
1076
+ 1
1077
+ ],
1078
+ "translations": [
1079
+ 35
1080
+ ],
1081
+ "sponsorBrandId": [
1082
+ 1
1083
+ ],
1084
+ "authorizedUse": [
1085
+ 2
1086
+ ],
1087
+ "isAuthorizer": [
1088
+ 2
1089
+ ],
1090
+ "__typename": [
1091
+ 1
1092
+ ]
1093
+ },
1094
+ "Sponsor": {
1095
+ "_id": [
1096
+ 1
1097
+ ],
1098
+ "name": [
1099
+ 1
1100
+ ],
1101
+ "description": [
1102
+ 1
1103
+ ],
1104
+ "tenant": [
1105
+ 5
1106
+ ],
1107
+ "industry": [
1108
+ 50
1109
+ ],
1110
+ "stats": [
1111
+ 51
1112
+ ],
1113
+ "brands": [
1114
+ 52
1115
+ ],
1116
+ "sponsorships": [
1117
+ 59
1118
+ ],
1119
+ "approved": [
1120
+ 2
1121
+ ],
1122
+ "__typename": [
1123
+ 1
1124
+ ]
1125
+ },
1126
+ "SponsorshipItem": {
1127
+ "_id": [
1128
+ 1
1129
+ ],
1130
+ "quantity": [
1131
+ 17
1132
+ ],
1133
+ "title": [
1134
+ 1
1135
+ ],
1136
+ "value": [
1137
+ 17
1138
+ ],
1139
+ "type": [
1140
+ 1
1141
+ ],
1142
+ "__typename": [
1143
+ 1
1144
+ ]
1145
+ },
1146
+ "SponsorshipCommitment": {
1147
+ "_id": [
1148
+ 1
1149
+ ],
1150
+ "title": [
1151
+ 1
1152
+ ],
1153
+ "details": [
1154
+ 1
1155
+ ],
1156
+ "hashTags": [
1157
+ 1
1158
+ ],
1159
+ "media": [
1160
+ 1
1161
+ ],
1162
+ "actionType": [
1163
+ 1
1164
+ ],
1165
+ "frequency": [
1166
+ 17
1167
+ ],
1168
+ "periodicity": [
1169
+ 1
1170
+ ],
1171
+ "autoMeasurable": [
1172
+ 2
1173
+ ],
1174
+ "__typename": [
1175
+ 1
1176
+ ]
1177
+ },
1178
+ "Duration": {
1179
+ "length": [
1180
+ 17
1181
+ ],
1182
+ "unit": [
1183
+ 1
1184
+ ],
1185
+ "__typename": [
1186
+ 1
1187
+ ]
1188
+ },
1189
+ "SponsorshipStats": {
1190
+ "totalSponsorships": [
1191
+ 17
1192
+ ],
1193
+ "totalApplications": [
1194
+ 17
1195
+ ],
1196
+ "newApplications": [
1197
+ 17
1198
+ ],
1199
+ "discardedApplications": [
1200
+ 17
1201
+ ],
1202
+ "selectedApplications": [
1203
+ 17
1204
+ ],
1205
+ "approvedApplications": [
1206
+ 17
1207
+ ],
1208
+ "grantedSponsorships": [
1209
+ 17
1210
+ ],
1211
+ "remainingSponsorships": [
1212
+ 17
1213
+ ],
1214
+ "__typename": [
1215
+ 1
1216
+ ]
1217
+ },
1218
+ "SponsorshipTranslation": {
1219
+ "_id": [
1220
+ 1
1221
+ ],
1222
+ "sponsorshipId": [
1223
+ 1
1224
+ ],
1225
+ "language": [
1226
+ 1
1227
+ ],
1228
+ "title": [
1229
+ 1
1230
+ ],
1231
+ "description": [
1232
+ 1
1233
+ ],
1234
+ "terms": [
1235
+ 1
1236
+ ],
1237
+ "banner": [
1238
+ 26
1239
+ ],
1240
+ "__typename": [
1241
+ 1
1242
+ ]
1243
+ },
1244
+ "Sponsorship": {
1245
+ "_id": [
1246
+ 1
1247
+ ],
1248
+ "title": [
1249
+ 1
1250
+ ],
1251
+ "description": [
1252
+ 1
1253
+ ],
1254
+ "cashValue": [
1255
+ 17
1256
+ ],
1257
+ "otherValue": [
1258
+ 17
1259
+ ],
1260
+ "brand": [
1261
+ 36
1262
+ ],
1263
+ "banner": [
1264
+ 26
1265
+ ],
1266
+ "criteria": [
1267
+ 48
1268
+ ],
1269
+ "deadline": [
1270
+ 14
1271
+ ],
1272
+ "startDate": [
1273
+ 14
1274
+ ],
1275
+ "duration": [
1276
+ 56
1277
+ ],
1278
+ "sponsor": [
1279
+ 53
1280
+ ],
1281
+ "sponsorshipItems": [
1282
+ 54
1283
+ ],
1284
+ "commitments": [
1285
+ 55
1286
+ ],
1287
+ "terms": [
1288
+ 1
1289
+ ],
1290
+ "stats": [
1291
+ 57
1292
+ ],
1293
+ "isPrivate": [
1294
+ 2
1295
+ ],
1296
+ "approved": [
1297
+ 2
1298
+ ],
1299
+ "published": [
1300
+ 2
1301
+ ],
1302
+ "translations": [
1303
+ 58
1304
+ ],
1305
+ "__typename": [
1306
+ 1
1307
+ ]
1308
+ },
1309
+ "FollowStats": {
1310
+ "followers": [
1311
+ 17
1312
+ ],
1313
+ "followed": [
1314
+ 17
1315
+ ],
1316
+ "raves": [
1317
+ 17
1318
+ ],
1319
+ "favorites": [
1320
+ 17
1321
+ ],
1322
+ "__typename": [
1323
+ 1
1324
+ ]
1325
+ },
1326
+ "Sport": {
1327
+ "_id": [
1328
+ 1
1329
+ ],
1330
+ "name": [
1331
+ 1
1332
+ ],
1333
+ "__typename": [
1334
+ 1
1335
+ ]
1336
+ },
1337
+ "VtxScores": {
1338
+ "vtxScore": [
1339
+ 17
1340
+ ],
1341
+ "socialScore": [
1342
+ 17
1343
+ ],
1344
+ "trainingScore": [
1345
+ 17
1346
+ ],
1347
+ "competitionScore": [
1348
+ 17
1349
+ ],
1350
+ "__typename": [
1351
+ 1
1352
+ ]
1353
+ },
1354
+ "SportLevelTranslation": {
1355
+ "_id": [
1356
+ 1
1357
+ ],
1358
+ "language": [
1359
+ 1
1360
+ ],
1361
+ "label": [
1362
+ 1
1363
+ ],
1364
+ "__typename": [
1365
+ 1
1366
+ ]
1367
+ },
1368
+ "SportLevel": {
1369
+ "_id": [
1370
+ 1
1371
+ ],
1372
+ "label": [
1373
+ 1
1374
+ ],
1375
+ "index": [
1376
+ 17
1377
+ ],
1378
+ "translations": [
1379
+ 63
1380
+ ],
1381
+ "__typename": [
1382
+ 1
1383
+ ]
1384
+ },
1385
+ "Ranking": {
1386
+ "scope": [
1387
+ 1
1388
+ ],
1389
+ "scopeId": [
1390
+ 1
1391
+ ],
1392
+ "scopeName": [
1393
+ 1
1394
+ ],
1395
+ "position": [
1396
+ 17
1397
+ ],
1398
+ "total": [
1399
+ 17
1400
+ ],
1401
+ "__typename": [
1402
+ 1
1403
+ ]
1404
+ },
1405
+ "AthleteRankings": {
1406
+ "worldRanking": [
1407
+ 65
1408
+ ],
1409
+ "countryRanking": [
1410
+ 65
1411
+ ],
1412
+ "stateRanking": [
1413
+ 65
1414
+ ],
1415
+ "cityRanking": [
1416
+ 65
1417
+ ],
1418
+ "__typename": [
1419
+ 1
1420
+ ]
1421
+ },
1422
+ "Team": {
1423
+ "_id": [
1424
+ 1
1425
+ ],
1426
+ "name": [
1427
+ 1
1428
+ ],
1429
+ "description": [
1430
+ 1
1431
+ ],
1432
+ "sports": [
1433
+ 61
1434
+ ],
1435
+ "approved": [
1436
+ 2
1437
+ ],
1438
+ "logo": [
1439
+ 26
1440
+ ],
1441
+ "banner": [
1442
+ 26
1443
+ ],
1444
+ "__typename": [
1445
+ 1
1446
+ ]
1447
+ },
1448
+ "WorldLocation": {
1449
+ "_id": [
1450
+ 1
1451
+ ],
1452
+ "userProvidedLatitude": [
1453
+ 17
1454
+ ],
1455
+ "userProvidedLongitude": [
1456
+ 17
1457
+ ],
1458
+ "cityNameGeocode": [
1459
+ 1
1460
+ ],
1461
+ "stateNameGeocode": [
1462
+ 1
1463
+ ],
1464
+ "countryIso2CodeGeocode": [
1465
+ 1
1466
+ ],
1467
+ "timeZoneGeocode": [
1468
+ 1
1469
+ ],
1470
+ "latitudeGeocode": [
1471
+ 17
1472
+ ],
1473
+ "longitudeGeocode": [
1474
+ 17
1475
+ ],
1476
+ "city": [
1477
+ 37
1478
+ ],
1479
+ "__typename": [
1480
+ 1
1481
+ ]
1482
+ },
1483
+ "SportsEvent": {
1484
+ "_id": [
1485
+ 1
1486
+ ],
1487
+ "name": [
1488
+ 1
1489
+ ],
1490
+ "mainSport": [
1491
+ 61
1492
+ ],
1493
+ "eventWebSite": [
1494
+ 1
1495
+ ],
1496
+ "startDate": [
1497
+ 14
1498
+ ],
1499
+ "endDate": [
1500
+ 14
1501
+ ],
1502
+ "verified": [
1503
+ 2
1504
+ ],
1505
+ "banner": [
1506
+ 26
1507
+ ],
1508
+ "location": [
1509
+ 68
1510
+ ],
1511
+ "__typename": [
1512
+ 1
1513
+ ]
1514
+ },
1515
+ "AthleteCompetitionResult": {
1516
+ "_id": [
1517
+ 1
1518
+ ],
1519
+ "resultType": [
1520
+ 1
1521
+ ],
1522
+ "position": [
1523
+ 17
1524
+ ],
1525
+ "score": [
1526
+ 1
1527
+ ],
1528
+ "finishTimeMS": [
1529
+ 17
1530
+ ],
1531
+ "resultWebLink": [
1532
+ 1
1533
+ ],
1534
+ "__typename": [
1535
+ 1
1536
+ ]
1537
+ },
1538
+ "BudgetItem": {
1539
+ "_id": [
1540
+ 1
1541
+ ],
1542
+ "quantity": [
1543
+ 17
1544
+ ],
1545
+ "concept": [
1546
+ 1
1547
+ ],
1548
+ "itemCost": [
1549
+ 17
1550
+ ],
1551
+ "__typename": [
1552
+ 1
1553
+ ]
1554
+ },
1555
+ "Budget": {
1556
+ "_id": [
1557
+ 1
1558
+ ],
1559
+ "initialFunds": [
1560
+ 17
1561
+ ],
1562
+ "totalRequired": [
1563
+ 17
1564
+ ],
1565
+ "items": [
1566
+ 71
1567
+ ],
1568
+ "__typename": [
1569
+ 1
1570
+ ]
1571
+ },
1572
+ "AthleteCompetition": {
1573
+ "_id": [
1574
+ 1
1575
+ ],
1576
+ "event": [
1577
+ 69
1578
+ ],
1579
+ "participationDate": [
1580
+ 14
1581
+ ],
1582
+ "competitionNumber": [
1583
+ 1
1584
+ ],
1585
+ "result": [
1586
+ 70
1587
+ ],
1588
+ "fundRaisingCampaignIds": [
1589
+ 1
1590
+ ],
1591
+ "budget": [
1592
+ 72
1593
+ ],
1594
+ "__typename": [
1595
+ 1
1596
+ ]
1597
+ },
1598
+ "MembershipOrganizationReference": {
1599
+ "_id": [
1600
+ 1
1601
+ ],
1602
+ "shortName": [
1603
+ 1
1604
+ ],
1605
+ "acronym": [
1606
+ 1
1607
+ ],
1608
+ "fullName": [
1609
+ 1
1610
+ ],
1611
+ "website": [
1612
+ 1
1613
+ ],
1614
+ "verified": [
1615
+ 2
1616
+ ],
1617
+ "logo": [
1618
+ 26
1619
+ ],
1620
+ "country": [
1621
+ 39
1622
+ ],
1623
+ "sport": [
1624
+ 61
1625
+ ],
1626
+ "__typename": [
1627
+ 1
1628
+ ]
1629
+ },
1630
+ "MembershipOrganization": {
1631
+ "_id": [
1632
+ 1
1633
+ ],
1634
+ "shortName": [
1635
+ 1
1636
+ ],
1637
+ "acronym": [
1638
+ 1
1639
+ ],
1640
+ "fullName": [
1641
+ 1
1642
+ ],
1643
+ "website": [
1644
+ 1
1645
+ ],
1646
+ "verified": [
1647
+ 2
1648
+ ],
1649
+ "logo": [
1650
+ 26
1651
+ ],
1652
+ "country": [
1653
+ 39
1654
+ ],
1655
+ "sport": [
1656
+ 61
1657
+ ],
1658
+ "memberships": [
1659
+ 76
1660
+ ],
1661
+ "__typename": [
1662
+ 1
1663
+ ]
1664
+ },
1665
+ "AthleteMembership": {
1666
+ "_id": [
1667
+ 1
1668
+ ],
1669
+ "organization": [
1670
+ 74
1671
+ ],
1672
+ "athlete": [
1673
+ 81
1674
+ ],
1675
+ "membershipNumber": [
1676
+ 1
1677
+ ],
1678
+ "membershipType": [
1679
+ 1
1680
+ ],
1681
+ "issueDate": [
1682
+ 14
1683
+ ],
1684
+ "expirationDate": [
1685
+ 14
1686
+ ],
1687
+ "__typename": [
1688
+ 1
1689
+ ]
1690
+ },
1691
+ "NewsLink": {
1692
+ "_id": [
1693
+ 1
1694
+ ],
1695
+ "title": [
1696
+ 1
1697
+ ],
1698
+ "url": [
1699
+ 1
1700
+ ],
1701
+ "abstract": [
1702
+ 1
1703
+ ],
1704
+ "__typename": [
1705
+ 1
1706
+ ]
1707
+ },
1708
+ "Channel": {
1709
+ "_id": [
1710
+ 1
1711
+ ],
1712
+ "type": [
1713
+ 1
1714
+ ],
1715
+ "handle": [
1716
+ 1
1717
+ ],
1718
+ "url": [
1719
+ 1
1720
+ ],
1721
+ "linked": [
1722
+ 2
1723
+ ],
1724
+ "__typename": [
1725
+ 1
1726
+ ]
1727
+ },
1728
+ "AthletePreferences": {
1729
+ "_id": [
1730
+ 1
1731
+ ],
1732
+ "showProfileHelper": [
1733
+ 2
1734
+ ],
1735
+ "__typename": [
1736
+ 1
1737
+ ]
1738
+ },
1739
+ "FundRaisingCampaign": {
1740
+ "_id": [
1741
+ 1
1742
+ ],
1743
+ "athlete": [
1744
+ 81
1745
+ ],
1746
+ "budgetMode": [
1747
+ 1
1748
+ ],
1749
+ "status": [
1750
+ 1
1751
+ ],
1752
+ "title": [
1753
+ 1
1754
+ ],
1755
+ "motivation": [
1756
+ 1
1757
+ ],
1758
+ "website": [
1759
+ 1
1760
+ ],
1761
+ "fundsRequired": [
1762
+ 17
1763
+ ],
1764
+ "initialFundsObtained": [
1765
+ 17
1766
+ ],
1767
+ "fundsObtained": [
1768
+ 17
1769
+ ],
1770
+ "location": [
1771
+ 68
1772
+ ],
1773
+ "endingDate": [
1774
+ 14
1775
+ ],
1776
+ "budget": [
1777
+ 72
1778
+ ],
1779
+ "competitions": [
1780
+ 73
1781
+ ],
1782
+ "__typename": [
1783
+ 1
1784
+ ]
1785
+ },
1786
+ "AthleteReference": {
1787
+ "_id": [
1788
+ 1
1789
+ ],
1790
+ "firstName": [
1791
+ 1
1792
+ ],
1793
+ "lastName": [
1794
+ 1
1795
+ ],
1796
+ "screenName": [
1797
+ 1
1798
+ ],
1799
+ "dob": [
1800
+ 14
1801
+ ],
1802
+ "lgbt": [
1803
+ 2
1804
+ ],
1805
+ "competitionGender": [
1806
+ 1
1807
+ ],
1808
+ "country": [
1809
+ 39
1810
+ ],
1811
+ "location": [
1812
+ 68
1813
+ ],
1814
+ "trainer": [
1815
+ 1
1816
+ ],
1817
+ "trainerUrl": [
1818
+ 1
1819
+ ],
1820
+ "followStats": [
1821
+ 60
1822
+ ],
1823
+ "mainSport": [
1824
+ 61
1825
+ ],
1826
+ "mainSportLevel": [
1827
+ 64
1828
+ ],
1829
+ "scores": [
1830
+ 62
1831
+ ],
1832
+ "rankings": [
1833
+ 66
1834
+ ],
1835
+ "totalUpcomingCompetitions": [
1836
+ 17
1837
+ ],
1838
+ "totalPastCompetitions": [
1839
+ 17
1840
+ ],
1841
+ "profilePicture": [
1842
+ 26
1843
+ ],
1844
+ "cardPicture": [
1845
+ 26
1846
+ ],
1847
+ "aboutMe": [
1848
+ 1
1849
+ ],
1850
+ "preferences": [
1851
+ 79
1852
+ ],
1853
+ "__typename": [
1854
+ 1
1855
+ ]
1856
+ },
1857
+ "Athlete": {
1858
+ "_id": [
1859
+ 1
1860
+ ],
1861
+ "firstName": [
1862
+ 1
1863
+ ],
1864
+ "lastName": [
1865
+ 1
1866
+ ],
1867
+ "screenName": [
1868
+ 1
1869
+ ],
1870
+ "dob": [
1871
+ 14
1872
+ ],
1873
+ "lgbt": [
1874
+ 2
1875
+ ],
1876
+ "competitionGender": [
1877
+ 1
1878
+ ],
1879
+ "country": [
1880
+ 39
1881
+ ],
1882
+ "location": [
1883
+ 68
1884
+ ],
1885
+ "trainer": [
1886
+ 1
1887
+ ],
1888
+ "trainerUrl": [
1889
+ 1
1890
+ ],
1891
+ "followStats": [
1892
+ 60
1893
+ ],
1894
+ "mainSport": [
1895
+ 61
1896
+ ],
1897
+ "mainSportLevel": [
1898
+ 64
1899
+ ],
1900
+ "scores": [
1901
+ 62
1902
+ ],
1903
+ "rankings": [
1904
+ 66
1905
+ ],
1906
+ "totalUpcomingCompetitions": [
1907
+ 17
1908
+ ],
1909
+ "totalPastCompetitions": [
1910
+ 17
1911
+ ],
1912
+ "profilePicture": [
1913
+ 26
1914
+ ],
1915
+ "cardPicture": [
1916
+ 26
1917
+ ],
1918
+ "aboutMe": [
1919
+ 1
1920
+ ],
1921
+ "preferences": [
1922
+ 79
1923
+ ],
1924
+ "allSports": [
1925
+ 61
1926
+ ],
1927
+ "teams": [
1928
+ 67
1929
+ ],
1930
+ "sponsorBrands": [
1931
+ 36
1932
+ ],
1933
+ "competitions": [
1934
+ 73
1935
+ ],
1936
+ "affiliations": [
1937
+ 76
1938
+ ],
1939
+ "newsLinks": [
1940
+ 77
1941
+ ],
1942
+ "channels": [
1943
+ 78
1944
+ ],
1945
+ "currentCampaign": [
1946
+ 80
1947
+ ],
1948
+ "fundingCampaigns": [
1949
+ 80
1950
+ ],
1951
+ "__typename": [
1952
+ 1
1953
+ ]
1954
+ },
1955
+ "SponsorAthleteInvitation": {
1956
+ "_id": [
1957
+ 1
1958
+ ],
1959
+ "name": [
1960
+ 1
1961
+ ],
1962
+ "email": [
1963
+ 1
1964
+ ],
1965
+ "dateSent": [
1966
+ 14
1967
+ ],
1968
+ "sponsor": [
1969
+ 53
1970
+ ],
1971
+ "magicLink": [
1972
+ 27
1973
+ ],
1974
+ "brand": [
1975
+ 36
1976
+ ],
1977
+ "status": [
1978
+ 1
1979
+ ],
1980
+ "__typename": [
1981
+ 1
1982
+ ]
1983
+ },
1984
+ "StravaToken": {
1985
+ "token_type": [
1986
+ 1
1987
+ ],
1988
+ "expires_at": [
1989
+ 1
1990
+ ],
1991
+ "refresh_token": [
1992
+ 1
1993
+ ],
1994
+ "access_token": [
1995
+ 1
1996
+ ],
1997
+ "__typename": [
1998
+ 1
1999
+ ]
2000
+ },
2001
+ "EditValueResponse": {
2002
+ "field": [
2003
+ 1
2004
+ ],
2005
+ "oldValue": [
2006
+ 1
2007
+ ],
2008
+ "newValue": [
2009
+ 1
2010
+ ],
2011
+ "changed": [
2012
+ 2
2013
+ ],
2014
+ "__typename": [
2015
+ 1
2016
+ ]
2017
+ },
2018
+ "ErrorType": {
2019
+ "code": [
2020
+ 17
2021
+ ],
2022
+ "message": [
2023
+ 1
2024
+ ],
2025
+ "__typename": [
2026
+ 1
2027
+ ]
2028
+ },
2029
+ "DeleteSingleValueResponse": {
2030
+ "idToDelete": [
2031
+ 1
2032
+ ],
2033
+ "deleted": [
2034
+ 2
2035
+ ],
2036
+ "failureReason": [
2037
+ 86
2038
+ ],
2039
+ "__typename": [
2040
+ 1
2041
+ ]
2042
+ },
2043
+ "SortOrder": {
2044
+ "sortField": [
2045
+ 1
2046
+ ],
2047
+ "order": [
2048
+ 1
2049
+ ],
2050
+ "__typename": [
2051
+ 1
2052
+ ]
2053
+ },
2054
+ "CursorPaginationResponse": {
2055
+ "sort": [
2056
+ 88
2057
+ ],
2058
+ "initialCursorId": [
2059
+ 1
2060
+ ],
2061
+ "nextCursorId": [
2062
+ 1
2063
+ ],
2064
+ "initialCursorValue": [
2065
+ 1
2066
+ ],
2067
+ "nextCursorValue": [
2068
+ 1
2069
+ ],
2070
+ "limit": [
2071
+ 17
2072
+ ],
2073
+ "retrieved": [
2074
+ 17
2075
+ ],
2076
+ "isLastPage": [
2077
+ 2
2078
+ ],
2079
+ "__typename": [
2080
+ 1
2081
+ ]
2082
+ },
2083
+ "AthleteQueryResponse": {
2084
+ "athletes": [
2085
+ 82
2086
+ ],
2087
+ "cursor": [
2088
+ 89
2089
+ ],
2090
+ "__typename": [
2091
+ 1
2092
+ ]
2093
+ },
2094
+ "EditPictureResponse": {
2095
+ "field": [
2096
+ 1
2097
+ ],
2098
+ "oldValue": [
2099
+ 26
2100
+ ],
2101
+ "newValue": [
2102
+ 26
2103
+ ],
2104
+ "changed": [
2105
+ 2
2106
+ ],
2107
+ "__typename": [
2108
+ 1
2109
+ ]
2110
+ },
2111
+ "AddValuesResponse": {
2112
+ "added": [
2113
+ 1
2114
+ ],
2115
+ "failedToAdd": [
2116
+ 1
2117
+ ],
2118
+ "failureReason": [
2119
+ 86
2120
+ ],
2121
+ "result": [
2122
+ 1
2123
+ ],
2124
+ "__typename": [
2125
+ 1
2126
+ ]
2127
+ },
2128
+ "UserImages": {
2129
+ "profilePictureUrl": [
2130
+ 1
2131
+ ],
2132
+ "cardPictureUrl": [
2133
+ 1
2134
+ ],
2135
+ "bannerPictureUrl": [
2136
+ 1
2137
+ ],
2138
+ "__typename": [
2139
+ 1
2140
+ ]
2141
+ },
2142
+ "DeleteValuesResponse": {
2143
+ "deleted": [
2144
+ 1
2145
+ ],
2146
+ "failedToDelete": [
2147
+ 1
2148
+ ],
2149
+ "failureReason": [
2150
+ 86
2151
+ ],
2152
+ "result": [
2153
+ 1
2154
+ ],
2155
+ "__typename": [
2156
+ 1
2157
+ ]
2158
+ },
2159
+ "CreateVerificationCodeDto": {
2160
+ "type": [
2161
+ 1
2162
+ ],
2163
+ "recipient": [
2164
+ 1
2165
+ ],
2166
+ "expiresTime": [
2167
+ 17
2168
+ ],
2169
+ "expiresUnit": [
2170
+ 1
2171
+ ],
2172
+ "data": [
2173
+ 1
2174
+ ],
2175
+ "__typename": [
2176
+ 1
2177
+ ]
2178
+ },
2179
+ "VerifyCodeDto": {
2180
+ "codeId": [
2181
+ 1
2182
+ ],
2183
+ "enteredCodeValue": [
2184
+ 1
2185
+ ],
2186
+ "type": [
2187
+ 1
2188
+ ],
2189
+ "__typename": [
2190
+ 1
2191
+ ]
2192
+ },
2193
+ "AthleteInvitationDto": {
2194
+ "email": [
2195
+ 1
2196
+ ],
2197
+ "name": [
2198
+ 1
2199
+ ],
2200
+ "sender": [
2201
+ 1
2202
+ ],
2203
+ "brandId": [
2204
+ 1
2205
+ ],
2206
+ "__typename": [
2207
+ 1
2208
+ ]
2209
+ },
2210
+ "InviteAthletesDto": {
2211
+ "language": [
2212
+ 1
2213
+ ],
2214
+ "invitations": [
2215
+ 97
2216
+ ],
2217
+ "__typename": [
2218
+ 1
2219
+ ]
2220
+ },
2221
+ "CompetitionResultDto": {
2222
+ "resultType": [
2223
+ 1
2224
+ ],
2225
+ "position": [
2226
+ 17
2227
+ ],
2228
+ "score": [
2229
+ 1
2230
+ ],
2231
+ "finishTimeMS": [
2232
+ 17
2233
+ ],
2234
+ "resultWebLink": [
2235
+ 1
2236
+ ],
2237
+ "__typename": [
2238
+ 1
2239
+ ]
2240
+ },
2241
+ "SetCompetitionResultDto": {
2242
+ "resultType": [
2243
+ 1
2244
+ ],
2245
+ "position": [
2246
+ 17
2247
+ ],
2248
+ "score": [
2249
+ 1
2250
+ ],
2251
+ "finishTimeMS": [
2252
+ 17
2253
+ ],
2254
+ "resultWebLink": [
2255
+ 1
2256
+ ],
2257
+ "competitionId": [
2258
+ 1
2259
+ ],
2260
+ "__typename": [
2261
+ 1
2262
+ ]
2263
+ },
2264
+ "CreateAthleteCompetitionDto": {
2265
+ "event": [
2266
+ 1
2267
+ ],
2268
+ "date": [
2269
+ 14
2270
+ ],
2271
+ "eventWebsite": [
2272
+ 1
2273
+ ],
2274
+ "competitionNumber": [
2275
+ 1
2276
+ ],
2277
+ "result": [
2278
+ 99
2279
+ ],
2280
+ "cityId": [
2281
+ 1
2282
+ ],
2283
+ "__typename": [
2284
+ 1
2285
+ ]
2286
+ },
2287
+ "CreateAthleteCompetitionForDto": {
2288
+ "event": [
2289
+ 1
2290
+ ],
2291
+ "date": [
2292
+ 14
2293
+ ],
2294
+ "eventWebsite": [
2295
+ 1
2296
+ ],
2297
+ "competitionNumber": [
2298
+ 1
2299
+ ],
2300
+ "result": [
2301
+ 99
2302
+ ],
2303
+ "cityId": [
2304
+ 1
2305
+ ],
2306
+ "loginEmail": [
2307
+ 1
2308
+ ],
2309
+ "__typename": [
2310
+ 1
2311
+ ]
2312
+ },
2313
+ "CursorPositionDto": {
2314
+ "cursorId": [
2315
+ 1
2316
+ ],
2317
+ "cursorFieldValue": [
2318
+ 1
2319
+ ],
2320
+ "__typename": [
2321
+ 1
2322
+ ]
2323
+ },
2324
+ "SortCriteriaDto": {
2325
+ "sortField": [
2326
+ 1
2327
+ ],
2328
+ "order": [
2329
+ 1
2330
+ ],
2331
+ "__typename": [
2332
+ 1
2333
+ ]
2334
+ },
2335
+ "CursorPaginationDto": {
2336
+ "sortCriteria": [
2337
+ 104
2338
+ ],
2339
+ "limit": [
2340
+ 17
2341
+ ],
2342
+ "cursorPosition": [
2343
+ 103
2344
+ ],
2345
+ "__typename": [
2346
+ 1
2347
+ ]
2348
+ },
2349
+ "DeleteSingleValueDto": {
2350
+ "idToDelete": [
2351
+ 1
2352
+ ],
2353
+ "__typename": [
2354
+ 1
2355
+ ]
2356
+ },
2357
+ "FundCampaignFilterDto": {
2358
+ "campaignTitle": [
2359
+ 1
2360
+ ],
2361
+ "status": [
2362
+ 1
2363
+ ],
2364
+ "minCompletion": [
2365
+ 17
2366
+ ],
2367
+ "maxCompletion": [
2368
+ 17
2369
+ ],
2370
+ "minFundsRequired": [
2371
+ 17
2372
+ ],
2373
+ "maxFundsRequired": [
2374
+ 17
2375
+ ],
2376
+ "minEndingDate": [
2377
+ 14
2378
+ ],
2379
+ "maxEndingDate": [
2380
+ 14
2381
+ ],
2382
+ "competitions": [
2383
+ 1
2384
+ ],
2385
+ "cities": [
2386
+ 1
2387
+ ],
2388
+ "states": [
2389
+ 1
2390
+ ],
2391
+ "countries": [
2392
+ 1
2393
+ ],
2394
+ "__typename": [
2395
+ 1
2396
+ ]
2397
+ },
2398
+ "AthleteFilterDto": {
2399
+ "name": [
2400
+ 1
2401
+ ],
2402
+ "cities": [
2403
+ 1
2404
+ ],
2405
+ "states": [
2406
+ 1
2407
+ ],
2408
+ "countries": [
2409
+ 1
2410
+ ],
2411
+ "teams": [
2412
+ 1
2413
+ ],
2414
+ "currentCampaign": [
2415
+ 107
2416
+ ],
2417
+ "sports": [
2418
+ 1
2419
+ ],
2420
+ "mainSportOnly": [
2421
+ 2
2422
+ ],
2423
+ "gender": [
2424
+ 1
2425
+ ],
2426
+ "minAge": [
2427
+ 17
2428
+ ],
2429
+ "maxAge": [
2430
+ 17
2431
+ ],
2432
+ "minDob": [
2433
+ 14
2434
+ ],
2435
+ "maxDob": [
2436
+ 14
2437
+ ],
2438
+ "minVTXScore": [
2439
+ 17
2440
+ ],
2441
+ "maxVTXScore": [
2442
+ 17
2443
+ ],
2444
+ "minSocialScore": [
2445
+ 17
2446
+ ],
2447
+ "maxSocialScore": [
2448
+ 17
2449
+ ],
2450
+ "minTrainingScore": [
2451
+ 17
2452
+ ],
2453
+ "maxTrainingScore": [
2454
+ 17
2455
+ ],
2456
+ "minPerformanceScore": [
2457
+ 17
2458
+ ],
2459
+ "maxPerformanceScore": [
2460
+ 17
2461
+ ],
2462
+ "__typename": [
2463
+ 1
2464
+ ]
2465
+ },
2466
+ "AthleteQueryDto": {
2467
+ "cursor": [
2468
+ 105
2469
+ ],
2470
+ "filters": [
2471
+ 108
2472
+ ],
2473
+ "__typename": [
2474
+ 1
2475
+ ]
2476
+ },
2477
+ "UploadAlbumsPicturesDto": {
2478
+ "label": [
2479
+ 1
2480
+ ],
2481
+ "pictures": [
2482
+ 111
2483
+ ],
2484
+ "__typename": [
2485
+ 1
2486
+ ]
2487
+ },
2488
+ "AWSS3UploadedFileDto": {
2489
+ "key": [
2490
+ 1
2491
+ ],
2492
+ "useType": [
2493
+ 1
2494
+ ],
2495
+ "contentType": [
2496
+ 1
2497
+ ],
2498
+ "originalFileName": [
2499
+ 1
2500
+ ],
2501
+ "fileSize": [
2502
+ 17
2503
+ ],
2504
+ "__typename": [
2505
+ 1
2506
+ ]
2507
+ },
2508
+ "QualificationDto": {
2509
+ "type": [
2510
+ 1
2511
+ ],
2512
+ "__typename": [
2513
+ 1
2514
+ ]
2515
+ },
2516
+ "AgeQualificationDto": {
2517
+ "type": [
2518
+ 1
2519
+ ],
2520
+ "value": [
2521
+ 17
2522
+ ],
2523
+ "operator": [
2524
+ 1
2525
+ ],
2526
+ "__typename": [
2527
+ 1
2528
+ ]
2529
+ },
2530
+ "GenderQualificationDto": {
2531
+ "type": [
2532
+ 1
2533
+ ],
2534
+ "operator": [
2535
+ 1
2536
+ ],
2537
+ "values": [
2538
+ 1
2539
+ ],
2540
+ "__typename": [
2541
+ 1
2542
+ ]
2543
+ },
2544
+ "NationalityQualificationDto": {
2545
+ "type": [
2546
+ 1
2547
+ ],
2548
+ "operator": [
2549
+ 1
2550
+ ],
2551
+ "countries": [
2552
+ 1
2553
+ ],
2554
+ "__typename": [
2555
+ 1
2556
+ ]
2557
+ },
2558
+ "ScoreQualificationDto": {
2559
+ "type": [
2560
+ 1
2561
+ ],
2562
+ "scoreType": [
2563
+ 1
2564
+ ],
2565
+ "operator": [
2566
+ 1
2567
+ ],
2568
+ "value": [
2569
+ 17
2570
+ ],
2571
+ "__typename": [
2572
+ 1
2573
+ ]
2574
+ },
2575
+ "LocationQualificationDto": {
2576
+ "type": [
2577
+ 1
2578
+ ],
2579
+ "operator": [
2580
+ 1
2581
+ ],
2582
+ "countries": [
2583
+ 1
2584
+ ],
2585
+ "states": [
2586
+ 1
2587
+ ],
2588
+ "cities": [
2589
+ 1
2590
+ ],
2591
+ "__typename": [
2592
+ 1
2593
+ ]
2594
+ },
2595
+ "DistanceQualificationDto": {
2596
+ "type": [
2597
+ 1
2598
+ ],
2599
+ "maxDistance": [
2600
+ 17
2601
+ ],
2602
+ "latitude": [
2603
+ 17
2604
+ ],
2605
+ "longitude": [
2606
+ 17
2607
+ ],
2608
+ "cityId": [
2609
+ 1
2610
+ ],
2611
+ "__typename": [
2612
+ 1
2613
+ ]
2614
+ },
2615
+ "SportsQualificationDto": {
2616
+ "type": [
2617
+ 1
2618
+ ],
2619
+ "sports": [
2620
+ 1
2621
+ ],
2622
+ "operator": [
2623
+ 1
2624
+ ],
2625
+ "__typename": [
2626
+ 1
2627
+ ]
2628
+ },
2629
+ "SportsLevelQualificationDto": {
2630
+ "type": [
2631
+ 1
2632
+ ],
2633
+ "operator": [
2634
+ 1
2635
+ ],
2636
+ "level": [
2637
+ 1
2638
+ ],
2639
+ "__typename": [
2640
+ 1
2641
+ ]
2642
+ },
2643
+ "RegisterUserDto": {
2644
+ "email": [
2645
+ 1
2646
+ ],
2647
+ "password": [
2648
+ 1
2649
+ ],
2650
+ "inviteCode": [
2651
+ 1
2652
+ ],
2653
+ "__typename": [
2654
+ 1
2655
+ ]
2656
+ },
2657
+ "DeleteValuesDto": {
2658
+ "idsToDelete": [
2659
+ 1
2660
+ ],
2661
+ "allOrNone": [
2662
+ 2
2663
+ ],
2664
+ "__typename": [
2665
+ 1
2666
+ ]
2667
+ },
2668
+ "BudgetItemDto": {
2669
+ "quantity": [
2670
+ 17
2671
+ ],
2672
+ "concept": [
2673
+ 1
2674
+ ],
2675
+ "itemCost": [
2676
+ 17
2677
+ ],
2678
+ "__typename": [
2679
+ 1
2680
+ ]
2681
+ },
2682
+ "CreateBudgetItemDto": {
2683
+ "quantity": [
2684
+ 17
2685
+ ],
2686
+ "concept": [
2687
+ 1
2688
+ ],
2689
+ "itemCost": [
2690
+ 17
2691
+ ],
2692
+ "budgetId": [
2693
+ 1
2694
+ ],
2695
+ "__typename": [
2696
+ 1
2697
+ ]
2698
+ },
2699
+ "CreateBudgetDto": {
2700
+ "initialFunds": [
2701
+ 17
2702
+ ],
2703
+ "items": [
2704
+ 123
2705
+ ],
2706
+ "__typename": [
2707
+ 1
2708
+ ]
2709
+ },
2710
+ "CreateCompetitionBudgetDto": {
2711
+ "initialFunds": [
2712
+ 17
2713
+ ],
2714
+ "items": [
2715
+ 123
2716
+ ],
2717
+ "athleteCompetitionId": [
2718
+ 1
2719
+ ],
2720
+ "__typename": [
2721
+ 1
2722
+ ]
2723
+ },
2724
+ "CreateFundingCampaignDto": {
2725
+ "budgetMode": [
2726
+ 1
2727
+ ],
2728
+ "title": [
2729
+ 1
2730
+ ],
2731
+ "motivation": [
2732
+ 1
2733
+ ],
2734
+ "website": [
2735
+ 1
2736
+ ],
2737
+ "fundsRequired": [
2738
+ 17
2739
+ ],
2740
+ "initialFundsObtained": [
2741
+ 17
2742
+ ],
2743
+ "cityId": [
2744
+ 1
2745
+ ],
2746
+ "endingDate": [
2747
+ 14
2748
+ ],
2749
+ "budget": [
2750
+ 125
2751
+ ],
2752
+ "competitionBudgets": [
2753
+ 126
2754
+ ],
2755
+ "competitionIds": [
2756
+ 1
2757
+ ],
2758
+ "__typename": [
2759
+ 1
2760
+ ]
2761
+ },
2762
+ "CreateFundingCampaignForDto": {
2763
+ "budgetMode": [
2764
+ 1
2765
+ ],
2766
+ "title": [
2767
+ 1
2768
+ ],
2769
+ "motivation": [
2770
+ 1
2771
+ ],
2772
+ "website": [
2773
+ 1
2774
+ ],
2775
+ "fundsRequired": [
2776
+ 17
2777
+ ],
2778
+ "initialFundsObtained": [
2779
+ 17
2780
+ ],
2781
+ "cityId": [
2782
+ 1
2783
+ ],
2784
+ "endingDate": [
2785
+ 14
2786
+ ],
2787
+ "budget": [
2788
+ 125
2789
+ ],
2790
+ "competitionBudgets": [
2791
+ 126
2792
+ ],
2793
+ "competitionIds": [
2794
+ 1
2795
+ ],
2796
+ "loginEmail": [
2797
+ 1
2798
+ ],
2799
+ "__typename": [
2800
+ 1
2801
+ ]
2802
+ },
2803
+ "CreateMembershipOrganizationDto": {
2804
+ "shortName": [
2805
+ 1
2806
+ ],
2807
+ "acronym": [
2808
+ 1
2809
+ ],
2810
+ "fullName": [
2811
+ 1
2812
+ ],
2813
+ "website": [
2814
+ 1
2815
+ ],
2816
+ "logo": [
2817
+ 111
2818
+ ],
2819
+ "countryId": [
2820
+ 1
2821
+ ],
2822
+ "sportId": [
2823
+ 1
2824
+ ],
2825
+ "__typename": [
2826
+ 1
2827
+ ]
2828
+ },
2829
+ "CreateAthleteMembershipDto": {
2830
+ "organizationId": [
2831
+ 1
2832
+ ],
2833
+ "membershipNumber": [
2834
+ 1
2835
+ ],
2836
+ "membershipType": [
2837
+ 1
2838
+ ],
2839
+ "issueDate": [
2840
+ 14
2841
+ ],
2842
+ "expirationDate": [
2843
+ 14
2844
+ ],
2845
+ "__typename": [
2846
+ 1
2847
+ ]
2848
+ },
2849
+ "Query": {
2850
+ "findTenantById": [
2851
+ 5,
2852
+ {
2853
+ "_id": [
2854
+ 1,
2855
+ "String!"
2856
+ ]
2857
+ }
2858
+ ],
2859
+ "findTenantByEmail": [
2860
+ 5,
2861
+ {
2862
+ "email": [
2863
+ 1,
2864
+ "String!"
2865
+ ],
2866
+ "domainId": [
2867
+ 1,
2868
+ "String!"
2869
+ ]
2870
+ }
2871
+ ],
2872
+ "getTenants": [
2873
+ 5
2874
+ ],
2875
+ "isTenantUriAvailable": [
2876
+ 12,
2877
+ {
2878
+ "tenant_uri": [
2879
+ 1,
2880
+ "String!"
2881
+ ]
2882
+ }
2883
+ ],
2884
+ "findUserById": [
2885
+ 0,
2886
+ {
2887
+ "_id": [
2888
+ 1,
2889
+ "String!"
2890
+ ]
2891
+ }
2892
+ ],
2893
+ "findUserByEmail": [
2894
+ 0,
2895
+ {
2896
+ "email": [
2897
+ 1,
2898
+ "String!"
2899
+ ]
2900
+ }
2901
+ ],
2902
+ "validateUserCredentials": [
2903
+ 0,
2904
+ {
2905
+ "username": [
2906
+ 1,
2907
+ "String!"
2908
+ ],
2909
+ "password": [
2910
+ 1,
2911
+ "String!"
2912
+ ]
2913
+ }
2914
+ ],
2915
+ "getUploadUrl": [
2916
+ 31,
2917
+ {
2918
+ "input": [
2919
+ 132,
2920
+ "AWSS3GetUploadDto!"
2921
+ ]
2922
+ }
2923
+ ],
2924
+ "industries": [
2925
+ 50
2926
+ ],
2927
+ "findIndustryById": [
2928
+ 50,
2929
+ {
2930
+ "industryId": [
2931
+ 1,
2932
+ "String!"
2933
+ ]
2934
+ }
2935
+ ],
2936
+ "brands": [
2937
+ 36
2938
+ ],
2939
+ "getBrandByName": [
2940
+ 36,
2941
+ {
2942
+ "name": [
2943
+ 1,
2944
+ "String!"
2945
+ ],
2946
+ "translations": [
2947
+ 2,
2948
+ "Boolean!"
2949
+ ]
2950
+ }
2951
+ ],
2952
+ "getBrandTranslation": [
2953
+ 35,
2954
+ {
2955
+ "brandId": [
2956
+ 1,
2957
+ "String!"
2958
+ ],
2959
+ "language": [
2960
+ 1,
2961
+ "String!"
2962
+ ]
2963
+ }
2964
+ ],
2965
+ "existsValidSponsorForEmail": [
2966
+ 53,
2967
+ {
2968
+ "loginEmail": [
2969
+ 1,
2970
+ "String!"
2971
+ ]
2972
+ }
2973
+ ],
2974
+ "sponsors": [
2975
+ 53
2976
+ ],
2977
+ "findSponsorAthleteInvitation": [
2978
+ 83,
2979
+ {
2980
+ "input": [
2981
+ 133,
2982
+ "FindSponsorAthleteInvitationDto!"
2983
+ ]
2984
+ }
2985
+ ],
2986
+ "getAthletes": [
2987
+ 82
2988
+ ],
2989
+ "queryAthleteFundingCampaigns": [
2990
+ 90,
2991
+ {
2992
+ "input": [
2993
+ 109,
2994
+ "AthleteQueryDto!"
2995
+ ]
2996
+ }
2997
+ ],
2998
+ "searchAthletes": [
2999
+ 82,
3000
+ {
3001
+ "searchString": [
3002
+ 1,
3003
+ "String!"
3004
+ ]
3005
+ }
3006
+ ],
3007
+ "findAthleteById": [
3008
+ 82,
3009
+ {
3010
+ "athleteId": [
3011
+ 1,
3012
+ "String!"
3013
+ ]
3014
+ }
3015
+ ],
3016
+ "findAthleteForUser": [
3017
+ 82,
3018
+ {
3019
+ "loginEmail": [
3020
+ 1,
3021
+ "String!"
3022
+ ]
3023
+ }
3024
+ ],
3025
+ "getRecommendedAthletes": [
3026
+ 82,
3027
+ {
3028
+ "loginEmail": [
3029
+ 1,
3030
+ "String!"
3031
+ ]
3032
+ }
3033
+ ],
3034
+ "getSponsorAthletesForTenant": [
3035
+ 82
3036
+ ],
3037
+ "getAthleteCompetitions": [
3038
+ 73,
3039
+ {
3040
+ "input": [
3041
+ 134,
3042
+ "GetAthleteCompetitionsDto!"
3043
+ ]
3044
+ }
3045
+ ],
3046
+ "getAthleteMemberships": [
3047
+ 76,
3048
+ {
3049
+ "athleteId": [
3050
+ 1,
3051
+ "String!"
3052
+ ]
3053
+ }
3054
+ ],
3055
+ "findAthletebyIdpublic": [
3056
+ 82,
3057
+ {
3058
+ "athleteId": [
3059
+ 1,
3060
+ "String!"
3061
+ ]
3062
+ }
3063
+ ],
3064
+ "getSports": [
3065
+ 61
3066
+ ],
3067
+ "findSportById": [
3068
+ 61,
3069
+ {
3070
+ "sportId": [
3071
+ 1,
3072
+ "String!"
3073
+ ]
3074
+ }
3075
+ ],
3076
+ "getSportLevels": [
3077
+ 64
3078
+ ],
3079
+ "getPublicSponsorships": [
3080
+ 59
3081
+ ],
3082
+ "getTenantSponsorships": [
3083
+ 59
3084
+ ],
3085
+ "getCountries": [
3086
+ 39
3087
+ ],
3088
+ "getCountryStates": [
3089
+ 38,
3090
+ {
3091
+ "countryId": [
3092
+ 1,
3093
+ "String!"
3094
+ ]
3095
+ }
3096
+ ],
3097
+ "getStateCities": [
3098
+ 37,
3099
+ {
3100
+ "stateId": [
3101
+ 1,
3102
+ "String!"
3103
+ ]
3104
+ }
3105
+ ],
3106
+ "findCitiesStartingWith": [
3107
+ 37,
3108
+ {
3109
+ "text": [
3110
+ 1,
3111
+ "String!"
3112
+ ]
3113
+ }
3114
+ ],
3115
+ "findCityById": [
3116
+ 37,
3117
+ {
3118
+ "cityId": [
3119
+ 1,
3120
+ "String!"
3121
+ ]
3122
+ }
3123
+ ],
3124
+ "findVtxUser": [
3125
+ 0,
3126
+ {
3127
+ "input": [
3128
+ 135,
3129
+ "FindVtxUserDto!"
3130
+ ]
3131
+ }
3132
+ ],
3133
+ "validateUserCredentialsVtx": [
3134
+ 0,
3135
+ {
3136
+ "username": [
3137
+ 1,
3138
+ "String!"
3139
+ ],
3140
+ "password": [
3141
+ 1,
3142
+ "String!"
3143
+ ]
3144
+ }
3145
+ ],
3146
+ "getUserImagesFromEmail": [
3147
+ 93,
3148
+ {
3149
+ "loginEmail": [
3150
+ 1,
3151
+ "String!"
3152
+ ]
3153
+ }
3154
+ ],
3155
+ "getStravaLoginUrl": [
3156
+ 1
3157
+ ],
3158
+ "getSportsEvents": [
3159
+ 69,
3160
+ {
3161
+ "input": [
3162
+ 136,
3163
+ "GetSportEventsDto!"
3164
+ ]
3165
+ }
3166
+ ],
3167
+ "getMembershipOrganizations": [
3168
+ 74
3169
+ ],
3170
+ "__typename": [
3171
+ 1
3172
+ ]
3173
+ },
3174
+ "AWSS3GetUploadDto": {
3175
+ "useType": [
3176
+ 1
3177
+ ],
3178
+ "name": [
3179
+ 1
3180
+ ],
3181
+ "__typename": [
3182
+ 1
3183
+ ]
3184
+ },
3185
+ "FindSponsorAthleteInvitationDto": {
3186
+ "code": [
3187
+ 1
3188
+ ],
3189
+ "type": [
3190
+ 1
3191
+ ],
3192
+ "__typename": [
3193
+ 1
3194
+ ]
3195
+ },
3196
+ "GetAthleteCompetitionsDto": {
3197
+ "athleteId": [
3198
+ 1
3199
+ ],
3200
+ "fromInclusive": [
3201
+ 14
3202
+ ],
3203
+ "toExclusive": [
3204
+ 14
3205
+ ],
3206
+ "__typename": [
3207
+ 1
3208
+ ]
3209
+ },
3210
+ "FindVtxUserDto": {
3211
+ "loginEmail": [
3212
+ 1
3213
+ ],
3214
+ "__typename": [
3215
+ 1
3216
+ ]
3217
+ },
3218
+ "GetSportEventsDto": {
3219
+ "matchString": [
3220
+ 1
3221
+ ],
3222
+ "__typename": [
3223
+ 1
3224
+ ]
3225
+ },
3226
+ "Mutation": {
3227
+ "registerNewDomainTenant": [
3228
+ 5,
3229
+ {
3230
+ "tenant": [
3231
+ 138,
3232
+ "CreateTenantInput!"
3233
+ ]
3234
+ }
3235
+ ],
3236
+ "registerNewDomainTenantWithLogin": [
3237
+ 11,
3238
+ {
3239
+ "tenant": [
3240
+ 138,
3241
+ "CreateTenantInput!"
3242
+ ]
3243
+ }
3244
+ ],
3245
+ "createUserAndLogin": [
3246
+ 3,
3247
+ {
3248
+ "user": [
3249
+ 139,
3250
+ "CreateActiveUserInput!"
3251
+ ]
3252
+ }
3253
+ ],
3254
+ "loginUserFromEmail": [
3255
+ 8,
3256
+ {
3257
+ "email": [
3258
+ 1,
3259
+ "String!"
3260
+ ],
3261
+ "loginMethod": [
3262
+ 1,
3263
+ "String!"
3264
+ ]
3265
+ }
3266
+ ],
3267
+ "loginUserFromCredentials": [
3268
+ 3,
3269
+ {
3270
+ "username": [
3271
+ 1,
3272
+ "String!"
3273
+ ],
3274
+ "password": [
3275
+ 1,
3276
+ "String!"
3277
+ ]
3278
+ }
3279
+ ],
3280
+ "registerUserToDomainFromEmail": [
3281
+ 0,
3282
+ {
3283
+ "input": [
3284
+ 140,
3285
+ "RegisterUserToDomainFromEmailInput!"
3286
+ ]
3287
+ }
3288
+ ],
3289
+ "refreshToken": [
3290
+ 8,
3291
+ {
3292
+ "dto": [
3293
+ 141,
3294
+ "RefreshTokenInput!"
3295
+ ]
3296
+ }
3297
+ ],
3298
+ "deleteUploadedUseTypeFile": [
3299
+ 32,
3300
+ {
3301
+ "input": [
3302
+ 142,
3303
+ "AWSS3DeleteUseTypeFileDto!"
3304
+ ]
3305
+ }
3306
+ ],
3307
+ "deleteUploadedBucketFile": [
3308
+ 32,
3309
+ {
3310
+ "input": [
3311
+ 143,
3312
+ "AWSS3DeleteBucketFileDto!"
3313
+ ]
3314
+ }
3315
+ ],
3316
+ "registerS3UploadedFile": [
3317
+ 26,
3318
+ {
3319
+ "input": [
3320
+ 111,
3321
+ "AWSS3UploadedFileDto!"
3322
+ ]
3323
+ }
3324
+ ],
3325
+ "createIndustry": [
3326
+ 50,
3327
+ {
3328
+ "input": [
3329
+ 144,
3330
+ "CreateIndustryDto!"
3331
+ ]
3332
+ }
3333
+ ],
3334
+ "createBrand": [
3335
+ 36,
3336
+ {
3337
+ "input": [
3338
+ 145,
3339
+ "CreateBrandDto!"
3340
+ ]
3341
+ }
3342
+ ],
3343
+ "registerSponsor": [
3344
+ 53,
3345
+ {
3346
+ "input": [
3347
+ 147,
3348
+ "RegisterSponsorInput!"
3349
+ ]
3350
+ }
3351
+ ],
3352
+ "createSponsor": [
3353
+ 53,
3354
+ {
3355
+ "input": [
3356
+ 148,
3357
+ "CreateSponsorDto!"
3358
+ ]
3359
+ }
3360
+ ],
3361
+ "sendAthleteInvitations": [
3362
+ 83,
3363
+ {
3364
+ "input": [
3365
+ 98,
3366
+ "InviteAthletesDto!"
3367
+ ]
3368
+ }
3369
+ ],
3370
+ "registerAthlete": [
3371
+ 82,
3372
+ {
3373
+ "input": [
3374
+ 149,
3375
+ "RegisterAthleteDto!"
3376
+ ]
3377
+ }
3378
+ ],
3379
+ "editProfileValue": [
3380
+ 85,
3381
+ {
3382
+ "input": [
3383
+ 150,
3384
+ "EditValueDto!"
3385
+ ]
3386
+ }
3387
+ ],
3388
+ "editPicture": [
3389
+ 91,
3390
+ {
3391
+ "input": [
3392
+ 151,
3393
+ "EditPictureDto!"
3394
+ ]
3395
+ }
3396
+ ],
3397
+ "AddAlbumPictures": [
3398
+ 92,
3399
+ {
3400
+ "input": [
3401
+ 110,
3402
+ "UploadAlbumsPicturesDto!"
3403
+ ]
3404
+ }
3405
+ ],
3406
+ "DeletePictureBuket": [
3407
+ 87,
3408
+ {
3409
+ "input": [
3410
+ 143,
3411
+ "AWSS3DeleteBucketFileDto!"
3412
+ ]
3413
+ }
3414
+ ],
3415
+ "addAthleteCompetition": [
3416
+ 73,
3417
+ {
3418
+ "input": [
3419
+ 101,
3420
+ "CreateAthleteCompetitionDto!"
3421
+ ]
3422
+ }
3423
+ ],
3424
+ "deleteAthleteCompetition": [
3425
+ 87,
3426
+ {
3427
+ "input": [
3428
+ 106,
3429
+ "DeleteSingleValueDto!"
3430
+ ]
3431
+ }
3432
+ ],
3433
+ "createSport": [
3434
+ 61,
3435
+ {
3436
+ "input": [
3437
+ 152,
3438
+ "CreateSportDto!"
3439
+ ]
3440
+ }
3441
+ ],
3442
+ "updateSport": [
3443
+ 61,
3444
+ {
3445
+ "input": [
3446
+ 153,
3447
+ "UpdateSportDto!"
3448
+ ]
3449
+ }
3450
+ ],
3451
+ "createSportLevel": [
3452
+ 64,
3453
+ {
3454
+ "input": [
3455
+ 154,
3456
+ "CreateSportLevelDto!"
3457
+ ]
3458
+ }
3459
+ ],
3460
+ "createSponsorship": [
3461
+ 59,
3462
+ {
3463
+ "input": [
3464
+ 156,
3465
+ "CreateSponsorshipDto!"
3466
+ ]
3467
+ }
3468
+ ],
3469
+ "createCountry": [
3470
+ 39,
3471
+ {
3472
+ "input": [
3473
+ 163,
3474
+ "CreateCountryDto!"
3475
+ ]
3476
+ }
3477
+ ],
3478
+ "createState": [
3479
+ 38,
3480
+ {
3481
+ "input": [
3482
+ 164,
3483
+ "CreateStateDto!"
3484
+ ]
3485
+ }
3486
+ ],
3487
+ "createCity": [
3488
+ 37,
3489
+ {
3490
+ "input": [
3491
+ 165,
3492
+ "CreateCityDto!"
3493
+ ]
3494
+ }
3495
+ ],
3496
+ "preRegisterAthleteUser": [
3497
+ 28,
3498
+ {
3499
+ "input": [
3500
+ 121,
3501
+ "RegisterUserDto!"
3502
+ ]
3503
+ }
3504
+ ],
3505
+ "confirmAthleteUserRegistrationAndLogin": [
3506
+ 3,
3507
+ {
3508
+ "input": [
3509
+ 96,
3510
+ "VerifyCodeDto!"
3511
+ ]
3512
+ }
3513
+ ],
3514
+ "confirmAthleteUserRegistration": [
3515
+ 0,
3516
+ {
3517
+ "input": [
3518
+ 96,
3519
+ "VerifyCodeDto!"
3520
+ ]
3521
+ }
3522
+ ],
3523
+ "registerAthleteUser": [
3524
+ 0,
3525
+ {
3526
+ "input": [
3527
+ 121,
3528
+ "RegisterUserDto!"
3529
+ ]
3530
+ }
3531
+ ],
3532
+ "registerSponsorUser": [
3533
+ 0,
3534
+ {
3535
+ "input": [
3536
+ 121,
3537
+ "RegisterUserDto!"
3538
+ ]
3539
+ }
3540
+ ],
3541
+ "loginUserFromCredentialsVtx": [
3542
+ 3,
3543
+ {
3544
+ "username": [
3545
+ 1,
3546
+ "String!"
3547
+ ],
3548
+ "password": [
3549
+ 1,
3550
+ "String!"
3551
+ ]
3552
+ }
3553
+ ],
3554
+ "handleStravaCallback": [
3555
+ 84,
3556
+ {
3557
+ "data": [
3558
+ 166,
3559
+ "RegisterStravaDto!"
3560
+ ]
3561
+ }
3562
+ ],
3563
+ "refreshStravaToken": [
3564
+ 84,
3565
+ {
3566
+ "input": [
3567
+ 1,
3568
+ "String!"
3569
+ ]
3570
+ }
3571
+ ],
3572
+ "createSportsEvent": [
3573
+ 69,
3574
+ {
3575
+ "input": [
3576
+ 167,
3577
+ "CreateSportEventDto!"
3578
+ ]
3579
+ }
3580
+ ],
3581
+ "createFundingCampaign": [
3582
+ 80,
3583
+ {
3584
+ "input": [
3585
+ 127,
3586
+ "CreateFundingCampaignDto!"
3587
+ ]
3588
+ }
3589
+ ],
3590
+ "createMembershipOrganization": [
3591
+ 74,
3592
+ {
3593
+ "input": [
3594
+ 129,
3595
+ "CreateMembershipOrganizationDto!"
3596
+ ]
3597
+ }
3598
+ ],
3599
+ "createAthleteMembershipAffilation": [
3600
+ 76,
3601
+ {
3602
+ "input": [
3603
+ 130,
3604
+ "CreateAthleteMembershipDto!"
3605
+ ]
3606
+ }
3607
+ ],
3608
+ "deleteAthleteMembershipAffilation": [
3609
+ 87,
3610
+ {
3611
+ "input": [
3612
+ 106,
3613
+ "DeleteSingleValueDto!"
3614
+ ]
3615
+ }
3616
+ ],
3617
+ "__typename": [
3618
+ 1
3619
+ ]
3620
+ },
3621
+ "CreateTenantInput": {
3622
+ "name": [
3623
+ 1
3624
+ ],
3625
+ "email": [
3626
+ 1
3627
+ ],
3628
+ "tenant_uri": [
3629
+ 1
3630
+ ],
3631
+ "domain": [
3632
+ 1
3633
+ ],
3634
+ "__typename": [
3635
+ 1
3636
+ ]
3637
+ },
3638
+ "CreateActiveUserInput": {
3639
+ "loginEmail": [
3640
+ 1
3641
+ ],
3642
+ "password": [
3643
+ 1
3644
+ ],
3645
+ "loginMethod": [
3646
+ 1
3647
+ ],
3648
+ "__typename": [
3649
+ 1
3650
+ ]
3651
+ },
3652
+ "RegisterUserToDomainFromEmailInput": {
3653
+ "email": [
3654
+ 1
3655
+ ],
3656
+ "domainId": [
3657
+ 1
3658
+ ],
3659
+ "tenantId": [
3660
+ 1
3661
+ ],
3662
+ "createUserIfNotExist": [
3663
+ 2
3664
+ ],
3665
+ "__typename": [
3666
+ 1
3667
+ ]
3668
+ },
3669
+ "RefreshTokenInput": {
3670
+ "refreshToken": [
3671
+ 1
3672
+ ],
3673
+ "__typename": [
3674
+ 1
3675
+ ]
3676
+ },
3677
+ "AWSS3DeleteUseTypeFileDto": {
3678
+ "name": [
3679
+ 1
3680
+ ],
3681
+ "useType": [
3682
+ 1
3683
+ ],
3684
+ "__typename": [
3685
+ 1
3686
+ ]
3687
+ },
3688
+ "AWSS3DeleteBucketFileDto": {
3689
+ "key": [
3690
+ 1
3691
+ ],
3692
+ "bucket": [
3693
+ 1
3694
+ ],
3695
+ "credentialsId": [
3696
+ 1
3697
+ ],
3698
+ "__typename": [
3699
+ 1
3700
+ ]
3701
+ },
3702
+ "CreateIndustryDto": {
3703
+ "name": [
3704
+ 1
3705
+ ],
3706
+ "__typename": [
3707
+ 1
3708
+ ]
3709
+ },
3710
+ "CreateBrandDto": {
3711
+ "name": [
3712
+ 1
3713
+ ],
3714
+ "description": [
3715
+ 1
3716
+ ],
3717
+ "slogan": [
3718
+ 1
3719
+ ],
3720
+ "website": [
3721
+ 1
3722
+ ],
3723
+ "logo": [
3724
+ 111
3725
+ ],
3726
+ "banner": [
3727
+ 111
3728
+ ],
3729
+ "translations": [
3730
+ 146
3731
+ ],
3732
+ "__typename": [
3733
+ 1
3734
+ ]
3735
+ },
3736
+ "BrandTranslationDto": {
3737
+ "brandId": [
3738
+ 1
3739
+ ],
3740
+ "language": [
3741
+ 1
3742
+ ],
3743
+ "name": [
3744
+ 1
3745
+ ],
3746
+ "description": [
3747
+ 1
3748
+ ],
3749
+ "slogan": [
3750
+ 1
3751
+ ],
3752
+ "logo": [
3753
+ 111
3754
+ ],
3755
+ "banner": [
3756
+ 111
3757
+ ],
3758
+ "__typename": [
3759
+ 1
3760
+ ]
3761
+ },
3762
+ "RegisterSponsorInput": {
3763
+ "name": [
3764
+ 1
3765
+ ],
3766
+ "phone": [
3767
+ 1
3768
+ ],
3769
+ "hasWhatsapp": [
3770
+ 2
3771
+ ],
3772
+ "companyName": [
3773
+ 1
3774
+ ],
3775
+ "companyEmail": [
3776
+ 1
3777
+ ],
3778
+ "industryId": [
3779
+ 1
3780
+ ],
3781
+ "companySize": [
3782
+ 1
3783
+ ],
3784
+ "operatorType": [
3785
+ 1
3786
+ ],
3787
+ "numberOfAthletes": [
3788
+ 1
3789
+ ],
3790
+ "brands": [
3791
+ 1
3792
+ ],
3793
+ "__typename": [
3794
+ 1
3795
+ ]
3796
+ },
3797
+ "CreateSponsorDto": {
3798
+ "name": [
3799
+ 1
3800
+ ],
3801
+ "description": [
3802
+ 1
3803
+ ],
3804
+ "__typename": [
3805
+ 1
3806
+ ]
3807
+ },
3808
+ "RegisterAthleteDto": {
3809
+ "email": [
3810
+ 1
3811
+ ],
3812
+ "firstName": [
3813
+ 1
3814
+ ],
3815
+ "lastName": [
3816
+ 1
3817
+ ],
3818
+ "screenName": [
3819
+ 1
3820
+ ],
3821
+ "nationality": [
3822
+ 1
3823
+ ],
3824
+ "cityId": [
3825
+ 1
3826
+ ],
3827
+ "locLatitude": [
3828
+ 17
3829
+ ],
3830
+ "locLongitude": [
3831
+ 17
3832
+ ],
3833
+ "dateOfBirth": [
3834
+ 14
3835
+ ],
3836
+ "lgbt": [
3837
+ 2
3838
+ ],
3839
+ "trainer": [
3840
+ 1
3841
+ ],
3842
+ "trainerUrl": [
3843
+ 1
3844
+ ],
3845
+ "aboutMe": [
3846
+ 1
3847
+ ],
3848
+ "team": [
3849
+ 1
3850
+ ],
3851
+ "gender": [
3852
+ 1
3853
+ ],
3854
+ "mainSport": [
3855
+ 1
3856
+ ],
3857
+ "mainSportLevel": [
3858
+ 1
3859
+ ],
3860
+ "profilePicture": [
3861
+ 111
3862
+ ],
3863
+ "cardPicture": [
3864
+ 111
3865
+ ],
3866
+ "__typename": [
3867
+ 1
3868
+ ]
3869
+ },
3870
+ "EditValueDto": {
3871
+ "field": [
3872
+ 1
3873
+ ],
3874
+ "newValue": [
3875
+ 1
3876
+ ],
3877
+ "__typename": [
3878
+ 1
3879
+ ]
3880
+ },
3881
+ "EditPictureDto": {
3882
+ "field": [
3883
+ 1
3884
+ ],
3885
+ "newPicture": [
3886
+ 111
3887
+ ],
3888
+ "__typename": [
3889
+ 1
3890
+ ]
3891
+ },
3892
+ "CreateSportDto": {
3893
+ "name": [
3894
+ 1
3895
+ ],
3896
+ "resultType": [
3897
+ 1
3898
+ ],
3899
+ "__typename": [
3900
+ 1
3901
+ ]
3902
+ },
3903
+ "UpdateSportDto": {
3904
+ "_id": [
3905
+ 1
3906
+ ],
3907
+ "name": [
3908
+ 1
3909
+ ],
3910
+ "__typename": [
3911
+ 1
3912
+ ]
3913
+ },
3914
+ "CreateSportLevelDto": {
3915
+ "_id": [
3916
+ 1
3917
+ ],
3918
+ "label": [
3919
+ 1
3920
+ ],
3921
+ "index": [
3922
+ 17
3923
+ ],
3924
+ "translations": [
3925
+ 155
3926
+ ],
3927
+ "__typename": [
3928
+ 1
3929
+ ]
3930
+ },
3931
+ "CreateSportLevelTranslationDto": {
3932
+ "language": [
3933
+ 1
3934
+ ],
3935
+ "label": [
3936
+ 1
3937
+ ],
3938
+ "__typename": [
3939
+ 1
3940
+ ]
3941
+ },
3942
+ "CreateSponsorshipDto": {
3943
+ "title": [
3944
+ 1
3945
+ ],
3946
+ "brandId": [
3947
+ 1
3948
+ ],
3949
+ "description": [
3950
+ 1
3951
+ ],
3952
+ "cashValue": [
3953
+ 17
3954
+ ],
3955
+ "otherValue": [
3956
+ 17
3957
+ ],
3958
+ "banner": [
3959
+ 111
3960
+ ],
3961
+ "criteria": [
3962
+ 157
3963
+ ],
3964
+ "deadline": [
3965
+ 14
3966
+ ],
3967
+ "startDate": [
3968
+ 14
3969
+ ],
3970
+ "duration": [
3971
+ 159
3972
+ ],
3973
+ "sponsorshipItems": [
3974
+ 160
3975
+ ],
3976
+ "commitments": [
3977
+ 161
3978
+ ],
3979
+ "terms": [
3980
+ 1
3981
+ ],
3982
+ "published": [
3983
+ 2
3984
+ ],
3985
+ "isPrivate": [
3986
+ 2
3987
+ ],
3988
+ "translations": [
3989
+ 162
3990
+ ],
3991
+ "__typename": [
3992
+ 1
3993
+ ]
3994
+ },
3995
+ "AthleteCriteriaDto": {
3996
+ "_id": [
3997
+ 1
3998
+ ],
3999
+ "label": [
4000
+ 1
4001
+ ],
4002
+ "qualificationsBag": [
4003
+ 158
4004
+ ],
4005
+ "__typename": [
4006
+ 1
4007
+ ]
4008
+ },
4009
+ "QualificationsBagDto": {
4010
+ "ageQualifications": [
4011
+ 113
4012
+ ],
4013
+ "genderQualifications": [
4014
+ 114
4015
+ ],
4016
+ "scoreQualifications": [
4017
+ 116
4018
+ ],
4019
+ "locationQualifications": [
4020
+ 117
4021
+ ],
4022
+ "nationalityQualifications": [
4023
+ 115
4024
+ ],
4025
+ "distanceQualifications": [
4026
+ 118
4027
+ ],
4028
+ "sportsQualifications": [
4029
+ 119
4030
+ ],
4031
+ "levelQualifications": [
4032
+ 120
4033
+ ],
4034
+ "__typename": [
4035
+ 1
4036
+ ]
4037
+ },
4038
+ "DurationDto": {
4039
+ "length": [
4040
+ 17
4041
+ ],
4042
+ "unit": [
4043
+ 1
4044
+ ],
4045
+ "__typename": [
4046
+ 1
4047
+ ]
4048
+ },
4049
+ "SponsorshipItemDto": {
4050
+ "_id": [
4051
+ 1
4052
+ ],
4053
+ "quantity": [
4054
+ 17
4055
+ ],
4056
+ "title": [
4057
+ 1
4058
+ ],
4059
+ "value": [
4060
+ 17
4061
+ ],
4062
+ "__typename": [
4063
+ 1
4064
+ ]
4065
+ },
4066
+ "SponsorshipCommitmentDto": {
4067
+ "_id": [
4068
+ 1
4069
+ ],
4070
+ "title": [
4071
+ 1
4072
+ ],
4073
+ "details": [
4074
+ 1
4075
+ ],
4076
+ "hashTags": [
4077
+ 1
4078
+ ],
4079
+ "media": [
4080
+ 1
4081
+ ],
4082
+ "actionType": [
4083
+ 1
4084
+ ],
4085
+ "frequency": [
4086
+ 17
4087
+ ],
4088
+ "periodicity": [
4089
+ 1
4090
+ ],
4091
+ "__typename": [
4092
+ 1
4093
+ ]
4094
+ },
4095
+ "SponsorshipTranslationDto": {
4096
+ "sponsorshipId": [
4097
+ 1
4098
+ ],
4099
+ "language": [
4100
+ 1
4101
+ ],
4102
+ "title": [
4103
+ 1
4104
+ ],
4105
+ "description": [
4106
+ 1
4107
+ ],
4108
+ "banner": [
4109
+ 111
4110
+ ],
4111
+ "terms": [
4112
+ 1
4113
+ ],
4114
+ "__typename": [
4115
+ 1
4116
+ ]
4117
+ },
4118
+ "CreateCountryDto": {
4119
+ "_id": [
4120
+ 1
4121
+ ],
4122
+ "name": [
4123
+ 1
4124
+ ],
4125
+ "__typename": [
4126
+ 1
4127
+ ]
4128
+ },
4129
+ "CreateStateDto": {
4130
+ "_id": [
4131
+ 1
4132
+ ],
4133
+ "name": [
4134
+ 1
4135
+ ],
4136
+ "countryId": [
4137
+ 1
4138
+ ],
4139
+ "__typename": [
4140
+ 1
4141
+ ]
4142
+ },
4143
+ "CreateCityDto": {
4144
+ "_id": [
4145
+ 1
4146
+ ],
4147
+ "cityName": [
4148
+ 1
4149
+ ],
4150
+ "cityNameLocalized": [
4151
+ 1
4152
+ ],
4153
+ "lat": [
4154
+ 17
4155
+ ],
4156
+ "lng": [
4157
+ 17
4158
+ ],
4159
+ "stateId": [
4160
+ 1
4161
+ ],
4162
+ "timezone": [
4163
+ 1
4164
+ ],
4165
+ "city_alt": [
4166
+ 1
4167
+ ],
4168
+ "iso3": [
4169
+ 1
4170
+ ],
4171
+ "admin_type": [
4172
+ 1
4173
+ ],
4174
+ "capital": [
4175
+ 1
4176
+ ],
4177
+ "density": [
4178
+ 17
4179
+ ],
4180
+ "population": [
4181
+ 17
4182
+ ],
4183
+ "population_proper": [
4184
+ 17
4185
+ ],
4186
+ "ranking": [
4187
+ 17
4188
+ ],
4189
+ "same_name": [
4190
+ 1
4191
+ ],
4192
+ "__typename": [
4193
+ 1
4194
+ ]
4195
+ },
4196
+ "RegisterStravaDto": {
4197
+ "idAthlete": [
4198
+ 1
4199
+ ],
4200
+ "code": [
4201
+ 1
4202
+ ],
4203
+ "__typename": [
4204
+ 1
4205
+ ]
4206
+ },
4207
+ "CreateSportEventDto": {
4208
+ "name": [
4209
+ 1
4210
+ ],
4211
+ "cityId": [
4212
+ 1
4213
+ ],
4214
+ "sportId": [
4215
+ 1
4216
+ ],
4217
+ "startDate": [
4218
+ 14
4219
+ ],
4220
+ "endDate": [
4221
+ 14
4222
+ ],
4223
+ "website": [
4224
+ 1
4225
+ ],
4226
+ "banner": [
4227
+ 111
4228
+ ],
4229
+ "__typename": [
4230
+ 1
4231
+ ]
4232
+ }
4233
+ }
4234
+ };
4235
+ //# sourceMappingURL=types.js.map