@vertikalx/vtx-backend-client 1.0.0-dev.4 → 1.0.0-dev.41

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 (98) hide show
  1. package/package.json +3 -2
  2. package/src/api/api-call-headers.d.ts +16 -0
  3. package/src/api/api-call-headers.js +20 -0
  4. package/src/api/api-call-headers.js.map +1 -0
  5. package/src/api/backend-response.d.ts +4 -0
  6. package/src/api/backend-response.js +3 -0
  7. package/src/api/backend-response.js.map +1 -0
  8. package/src/api/domains.d.ts +3 -0
  9. package/src/api/domains.js +7 -0
  10. package/src/api/domains.js.map +1 -0
  11. package/src/api/response-builder.d.ts +4 -0
  12. package/src/api/response-builder.js +63 -0
  13. package/src/api/response-builder.js.map +1 -0
  14. package/src/api/vtx-apikey-api.d.ts +6 -0
  15. package/src/api/vtx-apikey-api.js +19 -0
  16. package/src/api/vtx-apikey-api.js.map +1 -0
  17. package/src/api/vtx-base-api.d.ts +26 -0
  18. package/src/api/vtx-base-api.js +897 -0
  19. package/src/api/vtx-base-api.js.map +1 -0
  20. package/src/api/vtx-mobile-api.d.ts +6 -0
  21. package/src/api/vtx-mobile-api.js +27 -0
  22. package/src/api/vtx-mobile-api.js.map +1 -0
  23. package/src/api/vtx-web-browser-api.d.ts +7 -0
  24. package/src/api/vtx-web-browser-api.js +36 -0
  25. package/src/api/vtx-web-browser-api.js.map +1 -0
  26. package/src/api/vtx-web-server-api.d.ts +7 -0
  27. package/src/api/vtx-web-server-api.js +33 -0
  28. package/src/api/vtx-web-server-api.js.map +1 -0
  29. package/src/client/index.js.map +1 -0
  30. package/src/client/runtime/batcher.js.map +1 -0
  31. package/{runtime → src/client/runtime}/createClient.d.ts +4 -10
  32. package/src/client/runtime/createClient.js.map +1 -0
  33. package/src/client/runtime/error.js.map +1 -0
  34. package/src/client/runtime/fetcher.js.map +1 -0
  35. package/{runtime → src/client/runtime}/generateGraphqlOperation.d.ts +1 -1
  36. package/src/client/runtime/generateGraphqlOperation.js.map +1 -0
  37. package/src/client/runtime/index.js.map +1 -0
  38. package/src/client/runtime/linkTypeMap.js.map +1 -0
  39. package/src/client/runtime/typeSelection.js.map +1 -0
  40. package/src/client/runtime/types.js.map +1 -0
  41. package/src/client/schema.d.ts +1884 -0
  42. package/src/client/schema.graphql +893 -0
  43. package/src/client/schema.js +453 -0
  44. package/src/client/schema.js.map +1 -0
  45. package/src/client/types.d.ts +974 -0
  46. package/src/client/types.js +2512 -0
  47. package/src/client/types.js.map +1 -0
  48. package/src/index.d.ts +10 -0
  49. package/src/index.js +27 -0
  50. package/src/index.js.map +1 -0
  51. package/tsconfig.lib.tsbuildinfo +1 -1
  52. package/index.js.map +0 -1
  53. package/index.ts +0 -65
  54. package/runtime/batcher.js.map +0 -1
  55. package/runtime/batcher.ts +0 -275
  56. package/runtime/createClient.js.map +0 -1
  57. package/runtime/createClient.ts +0 -68
  58. package/runtime/error.js.map +0 -1
  59. package/runtime/error.ts +0 -29
  60. package/runtime/fetcher.js.map +0 -1
  61. package/runtime/fetcher.ts +0 -97
  62. package/runtime/generateGraphqlOperation.js.map +0 -1
  63. package/runtime/generateGraphqlOperation.ts +0 -225
  64. package/runtime/index.js.map +0 -1
  65. package/runtime/index.ts +0 -13
  66. package/runtime/linkTypeMap.js.map +0 -1
  67. package/runtime/linkTypeMap.ts +0 -156
  68. package/runtime/typeSelection.js.map +0 -1
  69. package/runtime/typeSelection.ts +0 -95
  70. package/runtime/types.js.map +0 -1
  71. package/runtime/types.ts +0 -69
  72. package/schema.d.ts +0 -406
  73. package/schema.graphql +0 -162
  74. package/schema.js +0 -109
  75. package/schema.js.map +0 -1
  76. package/schema.ts +0 -420
  77. package/types.d.ts +0 -207
  78. package/types.js +0 -518
  79. package/types.js.map +0 -1
  80. package/types.ts +0 -515
  81. /package/{index.d.ts → src/client/index.d.ts} +0 -0
  82. /package/{index.js → src/client/index.js} +0 -0
  83. /package/{runtime → src/client/runtime}/batcher.d.ts +0 -0
  84. /package/{runtime → src/client/runtime}/batcher.js +0 -0
  85. /package/{runtime → src/client/runtime}/createClient.js +0 -0
  86. /package/{runtime → src/client/runtime}/error.d.ts +0 -0
  87. /package/{runtime → src/client/runtime}/error.js +0 -0
  88. /package/{runtime → src/client/runtime}/fetcher.d.ts +0 -0
  89. /package/{runtime → src/client/runtime}/fetcher.js +0 -0
  90. /package/{runtime → src/client/runtime}/generateGraphqlOperation.js +0 -0
  91. /package/{runtime → src/client/runtime}/index.d.ts +0 -0
  92. /package/{runtime → src/client/runtime}/index.js +0 -0
  93. /package/{runtime → src/client/runtime}/linkTypeMap.d.ts +0 -0
  94. /package/{runtime → src/client/runtime}/linkTypeMap.js +0 -0
  95. /package/{runtime → src/client/runtime}/typeSelection.d.ts +0 -0
  96. /package/{runtime → src/client/runtime}/typeSelection.js +0 -0
  97. /package/{runtime → src/client/runtime}/types.d.ts +0 -0
  98. /package/{runtime → src/client/runtime}/types.js +0 -0
@@ -0,0 +1,2512 @@
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
+ "__typename": [
25
+ 1
26
+ ]
27
+ },
28
+ "String": {},
29
+ "Boolean": {},
30
+ "UserWithToken": {
31
+ "_id": [
32
+ 1
33
+ ],
34
+ "loginEmail": [
35
+ 1
36
+ ],
37
+ "suspended": [
38
+ 2
39
+ ],
40
+ "domains": [
41
+ 7
42
+ ],
43
+ "token": [
44
+ 8
45
+ ],
46
+ "__typename": [
47
+ 1
48
+ ]
49
+ },
50
+ "BaseTenant": {
51
+ "_id": [
52
+ 1
53
+ ],
54
+ "name": [
55
+ 1
56
+ ],
57
+ "tenant_uri": [
58
+ 1
59
+ ],
60
+ "domain": [
61
+ 6
62
+ ],
63
+ "__typename": [
64
+ 1
65
+ ]
66
+ },
67
+ "Tenant": {
68
+ "_id": [
69
+ 1
70
+ ],
71
+ "name": [
72
+ 1
73
+ ],
74
+ "tenant_uri": [
75
+ 1
76
+ ],
77
+ "domain": [
78
+ 6
79
+ ],
80
+ "email": [
81
+ 1
82
+ ],
83
+ "owner": [
84
+ 0
85
+ ],
86
+ "__typename": [
87
+ 1
88
+ ]
89
+ },
90
+ "Domain": {
91
+ "_id": [
92
+ 1
93
+ ],
94
+ "name": [
95
+ 1
96
+ ],
97
+ "description": [
98
+ 1
99
+ ],
100
+ "__typename": [
101
+ 1
102
+ ]
103
+ },
104
+ "DomainCredential": {
105
+ "_id": [
106
+ 1
107
+ ],
108
+ "name": [
109
+ 1
110
+ ],
111
+ "description": [
112
+ 1
113
+ ],
114
+ "tenant": [
115
+ 4
116
+ ],
117
+ "__typename": [
118
+ 1
119
+ ]
120
+ },
121
+ "UserToken": {
122
+ "actualToken": [
123
+ 1
124
+ ],
125
+ "refreshToken": [
126
+ 1
127
+ ],
128
+ "__typename": [
129
+ 1
130
+ ]
131
+ },
132
+ "DecodedToken": {
133
+ "tokenId": [
134
+ 1
135
+ ],
136
+ "systemId": [
137
+ 1
138
+ ],
139
+ "userId": [
140
+ 1
141
+ ],
142
+ "email": [
143
+ 1
144
+ ],
145
+ "refreshTokenId": [
146
+ 1
147
+ ],
148
+ "domains": [
149
+ 7
150
+ ],
151
+ "__typename": [
152
+ 1
153
+ ]
154
+ },
155
+ "DecodedRefreshToken": {
156
+ "userId": [
157
+ 1
158
+ ],
159
+ "email": [
160
+ 1
161
+ ],
162
+ "originalTokenId": [
163
+ 1
164
+ ],
165
+ "__typename": [
166
+ 1
167
+ ]
168
+ },
169
+ "TenantWithUserLogin": {
170
+ "_id": [
171
+ 1
172
+ ],
173
+ "name": [
174
+ 1
175
+ ],
176
+ "tenant_uri": [
177
+ 1
178
+ ],
179
+ "domain": [
180
+ 6
181
+ ],
182
+ "email": [
183
+ 1
184
+ ],
185
+ "owner": [
186
+ 0
187
+ ],
188
+ "user": [
189
+ 3
190
+ ],
191
+ "__typename": [
192
+ 1
193
+ ]
194
+ },
195
+ "UriAvailableType": {
196
+ "available": [
197
+ 2
198
+ ],
199
+ "valid": [
200
+ 2
201
+ ],
202
+ "__typename": [
203
+ 1
204
+ ]
205
+ },
206
+ "Agreement": {
207
+ "_id": [
208
+ 1
209
+ ],
210
+ "kind": [
211
+ 1
212
+ ],
213
+ "domain": [
214
+ 1
215
+ ],
216
+ "isActiveAgreement": [
217
+ 2
218
+ ],
219
+ "version": [
220
+ 1
221
+ ],
222
+ "publishedDate": [
223
+ 14
224
+ ],
225
+ "unPublishedDate": [
226
+ 14
227
+ ],
228
+ "locked": [
229
+ 2
230
+ ],
231
+ "name": [
232
+ 1
233
+ ],
234
+ "description": [
235
+ 1
236
+ ],
237
+ "content": [
238
+ 1
239
+ ],
240
+ "createdDate": [
241
+ 14
242
+ ],
243
+ "updatedDate": [
244
+ 14
245
+ ],
246
+ "__typename": [
247
+ 1
248
+ ]
249
+ },
250
+ "DateTime": {},
251
+ "BillEntity": {
252
+ "name": [
253
+ 1
254
+ ],
255
+ "taxId": [
256
+ 1
257
+ ],
258
+ "line1": [
259
+ 1
260
+ ],
261
+ "line2": [
262
+ 1
263
+ ],
264
+ "line3": [
265
+ 1
266
+ ],
267
+ "city": [
268
+ 1
269
+ ],
270
+ "state": [
271
+ 1
272
+ ],
273
+ "country": [
274
+ 1
275
+ ],
276
+ "zip": [
277
+ 1
278
+ ],
279
+ "__typename": [
280
+ 1
281
+ ]
282
+ },
283
+ "InvoiceItem": {
284
+ "_id": [
285
+ 1
286
+ ],
287
+ "unitPrice": [
288
+ 17
289
+ ],
290
+ "unitTax": [
291
+ 17
292
+ ],
293
+ "quantity": [
294
+ 17
295
+ ],
296
+ "unit": [
297
+ 1
298
+ ],
299
+ "itemPrice": [
300
+ 17
301
+ ],
302
+ "itemTotal": [
303
+ 17
304
+ ],
305
+ "__typename": [
306
+ 1
307
+ ]
308
+ },
309
+ "Float": {},
310
+ "Payment": {
311
+ "_id": [
312
+ 1
313
+ ],
314
+ "amount": [
315
+ 17
316
+ ],
317
+ "currency": [
318
+ 1
319
+ ],
320
+ "datePaid": [
321
+ 14
322
+ ],
323
+ "paymentComment": [
324
+ 1
325
+ ],
326
+ "transactionId": [
327
+ 1
328
+ ],
329
+ "processorType": [
330
+ 1
331
+ ],
332
+ "processorReference": [
333
+ 1
334
+ ],
335
+ "paidItemReference": [
336
+ 1
337
+ ],
338
+ "payeeReference": [
339
+ 1
340
+ ],
341
+ "payorReference": [
342
+ 1
343
+ ],
344
+ "paymentMethodType": [
345
+ 1
346
+ ],
347
+ "paymentMethodReference": [
348
+ 1
349
+ ],
350
+ "__typename": [
351
+ 1
352
+ ]
353
+ },
354
+ "PlaFeature": {
355
+ "_id": [
356
+ 1
357
+ ],
358
+ "title": [
359
+ 1
360
+ ],
361
+ "description": [
362
+ 1
363
+ ],
364
+ "quantity": [
365
+ 17
366
+ ],
367
+ "quantityUnit": [
368
+ 1
369
+ ],
370
+ "__typename": [
371
+ 1
372
+ ]
373
+ },
374
+ "Plan": {
375
+ "_id": [
376
+ 1
377
+ ],
378
+ "name": [
379
+ 1
380
+ ],
381
+ "description": [
382
+ 1
383
+ ],
384
+ "prices": [
385
+ 21
386
+ ],
387
+ "features": [
388
+ 19
389
+ ],
390
+ "isPublic": [
391
+ 2
392
+ ],
393
+ "active": [
394
+ 2
395
+ ],
396
+ "startOfferingDate": [
397
+ 14
398
+ ],
399
+ "endOfferingDate": [
400
+ 14
401
+ ],
402
+ "termsAndConditions": [
403
+ 1
404
+ ],
405
+ "__typename": [
406
+ 1
407
+ ]
408
+ },
409
+ "PlanPrice": {
410
+ "_id": [
411
+ 1
412
+ ],
413
+ "currency": [
414
+ 1
415
+ ],
416
+ "price": [
417
+ 17
418
+ ],
419
+ "taxMode": [
420
+ 1
421
+ ],
422
+ "period": [
423
+ 1
424
+ ],
425
+ "customDays": [
426
+ 17
427
+ ],
428
+ "plan": [
429
+ 20
430
+ ],
431
+ "__typename": [
432
+ 1
433
+ ]
434
+ },
435
+ "Invoice": {
436
+ "_id": [
437
+ 1
438
+ ],
439
+ "invoiceDate": [
440
+ 14
441
+ ],
442
+ "billedEntity": [
443
+ 15
444
+ ],
445
+ "dueDate": [
446
+ 14
447
+ ],
448
+ "billAmount": [
449
+ 17
450
+ ],
451
+ "tax": [
452
+ 17
453
+ ],
454
+ "total": [
455
+ 17
456
+ ],
457
+ "currency": [
458
+ 1
459
+ ],
460
+ "items": [
461
+ 16
462
+ ],
463
+ "payment": [
464
+ 18
465
+ ],
466
+ "__typename": [
467
+ 1
468
+ ]
469
+ },
470
+ "SubscriptionInvoice": {
471
+ "_id": [
472
+ 1
473
+ ],
474
+ "invoice": [
475
+ 22
476
+ ],
477
+ "billedPlan": [
478
+ 21
479
+ ],
480
+ "subscriber": [
481
+ 24
482
+ ],
483
+ "__typename": [
484
+ 1
485
+ ]
486
+ },
487
+ "PlanSubscription": {
488
+ "_id": [
489
+ 1
490
+ ],
491
+ "currentPlan": [
492
+ 21
493
+ ],
494
+ "billPrice": [
495
+ 17
496
+ ],
497
+ "billCurrency": [
498
+ 1
499
+ ],
500
+ "billPriceComment": [
501
+ 1
502
+ ],
503
+ "lastBillDate": [
504
+ 14
505
+ ],
506
+ "endAccessDate": [
507
+ 14
508
+ ],
509
+ "autoRenew": [
510
+ 2
511
+ ],
512
+ "autoRenewPlan": [
513
+ 21
514
+ ],
515
+ "autoRenewDate": [
516
+ 14
517
+ ],
518
+ "payments": [
519
+ 25
520
+ ],
521
+ "invoices": [
522
+ 23
523
+ ],
524
+ "__typename": [
525
+ 1
526
+ ]
527
+ },
528
+ "SubscriptionPayment": {
529
+ "_id": [
530
+ 1
531
+ ],
532
+ "payment": [
533
+ 18
534
+ ],
535
+ "subscriber": [
536
+ 24
537
+ ],
538
+ "__typename": [
539
+ 1
540
+ ]
541
+ },
542
+ "AWSS3File": {
543
+ "_id": [
544
+ 1
545
+ ],
546
+ "name": [
547
+ 1
548
+ ],
549
+ "contentType": [
550
+ 1
551
+ ],
552
+ "size": [
553
+ 17
554
+ ],
555
+ "useType": [
556
+ 1
557
+ ],
558
+ "url": [
559
+ 1
560
+ ],
561
+ "key": [
562
+ 1
563
+ ],
564
+ "pendingDelete": [
565
+ 2
566
+ ],
567
+ "__typename": [
568
+ 1
569
+ ]
570
+ },
571
+ "HttpRequestField": {
572
+ "key": [
573
+ 1
574
+ ],
575
+ "value": [
576
+ 1
577
+ ],
578
+ "__typename": [
579
+ 1
580
+ ]
581
+ },
582
+ "AWSS3UploadUrl": {
583
+ "uploadUrl": [
584
+ 1
585
+ ],
586
+ "fields": [
587
+ 27
588
+ ],
589
+ "downloadUrl": [
590
+ 1
591
+ ],
592
+ "bucket": [
593
+ 1
594
+ ],
595
+ "key": [
596
+ 1
597
+ ],
598
+ "__typename": [
599
+ 1
600
+ ]
601
+ },
602
+ "AWSS3CallResult": {
603
+ "httpStatus": [
604
+ 17
605
+ ],
606
+ "result": [
607
+ 1
608
+ ],
609
+ "message": [
610
+ 1
611
+ ],
612
+ "errors": [
613
+ 1
614
+ ],
615
+ "__typename": [
616
+ 1
617
+ ]
618
+ },
619
+ "BrandStats": {
620
+ "campaigns": [
621
+ 17
622
+ ],
623
+ "sponsorships": [
624
+ 17
625
+ ],
626
+ "sports": [
627
+ 17
628
+ ],
629
+ "athletes": [
630
+ 17
631
+ ],
632
+ "__typename": [
633
+ 1
634
+ ]
635
+ },
636
+ "BrandTranslation": {
637
+ "_id": [
638
+ 1
639
+ ],
640
+ "brandId": [
641
+ 1
642
+ ],
643
+ "language": [
644
+ 1
645
+ ],
646
+ "name": [
647
+ 1
648
+ ],
649
+ "slogan": [
650
+ 1
651
+ ],
652
+ "description": [
653
+ 1
654
+ ],
655
+ "logo": [
656
+ 26
657
+ ],
658
+ "banner": [
659
+ 26
660
+ ],
661
+ "__typename": [
662
+ 1
663
+ ]
664
+ },
665
+ "Brand": {
666
+ "_id": [
667
+ 1
668
+ ],
669
+ "name": [
670
+ 1
671
+ ],
672
+ "slogan": [
673
+ 1
674
+ ],
675
+ "website": [
676
+ 1
677
+ ],
678
+ "description": [
679
+ 1
680
+ ],
681
+ "approved": [
682
+ 2
683
+ ],
684
+ "published": [
685
+ 2
686
+ ],
687
+ "logo": [
688
+ 26
689
+ ],
690
+ "banner": [
691
+ 26
692
+ ],
693
+ "stats": [
694
+ 30
695
+ ],
696
+ "operatorIds": [
697
+ 1
698
+ ],
699
+ "translations": [
700
+ 31
701
+ ],
702
+ "__typename": [
703
+ 1
704
+ ]
705
+ },
706
+ "City": {
707
+ "_id": [
708
+ 1
709
+ ],
710
+ "name": [
711
+ 1
712
+ ],
713
+ "localizedName": [
714
+ 1
715
+ ],
716
+ "state": [
717
+ 34
718
+ ],
719
+ "latitude": [
720
+ 17
721
+ ],
722
+ "longitude": [
723
+ 17
724
+ ],
725
+ "timezone": [
726
+ 1
727
+ ],
728
+ "__typename": [
729
+ 1
730
+ ]
731
+ },
732
+ "State": {
733
+ "_id": [
734
+ 1
735
+ ],
736
+ "name": [
737
+ 1
738
+ ],
739
+ "country": [
740
+ 35
741
+ ],
742
+ "cities": [
743
+ 33
744
+ ],
745
+ "__typename": [
746
+ 1
747
+ ]
748
+ },
749
+ "Country": {
750
+ "_id": [
751
+ 1
752
+ ],
753
+ "name": [
754
+ 1
755
+ ],
756
+ "states": [
757
+ 34
758
+ ],
759
+ "__typename": [
760
+ 1
761
+ ]
762
+ },
763
+ "Qualification": {
764
+ "type": [
765
+ 1
766
+ ],
767
+ "__typename": [
768
+ 1
769
+ ]
770
+ },
771
+ "ScoreQualification": {
772
+ "type": [
773
+ 1
774
+ ],
775
+ "scoreType": [
776
+ 1
777
+ ],
778
+ "operator": [
779
+ 1
780
+ ],
781
+ "value": [
782
+ 17
783
+ ],
784
+ "__typename": [
785
+ 1
786
+ ]
787
+ },
788
+ "LocationQualification": {
789
+ "type": [
790
+ 1
791
+ ],
792
+ "operator": [
793
+ 1
794
+ ],
795
+ "countries": [
796
+ 35
797
+ ],
798
+ "states": [
799
+ 34
800
+ ],
801
+ "cities": [
802
+ 33
803
+ ],
804
+ "__typename": [
805
+ 1
806
+ ]
807
+ },
808
+ "DistanceQualification": {
809
+ "type": [
810
+ 1
811
+ ],
812
+ "maxDistance": [
813
+ 17
814
+ ],
815
+ "latitude": [
816
+ 17
817
+ ],
818
+ "longitude": [
819
+ 17
820
+ ],
821
+ "cityId": [
822
+ 1
823
+ ],
824
+ "__typename": [
825
+ 1
826
+ ]
827
+ },
828
+ "SportsQualification": {
829
+ "type": [
830
+ 1
831
+ ],
832
+ "sports": [
833
+ 1
834
+ ],
835
+ "operator": [
836
+ 1
837
+ ],
838
+ "__typename": [
839
+ 1
840
+ ]
841
+ },
842
+ "SportsLevelQualification": {
843
+ "type": [
844
+ 1
845
+ ],
846
+ "operator": [
847
+ 1
848
+ ],
849
+ "level": [
850
+ 1
851
+ ],
852
+ "__typename": [
853
+ 1
854
+ ]
855
+ },
856
+ "AthleteCriteria": {
857
+ "_id": [
858
+ 1
859
+ ],
860
+ "label": [
861
+ 1
862
+ ],
863
+ "qualifications": [
864
+ 36
865
+ ],
866
+ "__typename": [
867
+ 1
868
+ ]
869
+ },
870
+ "Industry": {
871
+ "_id": [
872
+ 1
873
+ ],
874
+ "name": [
875
+ 1
876
+ ],
877
+ "__typename": [
878
+ 1
879
+ ]
880
+ },
881
+ "SponsorStats": {
882
+ "sponsoredAthletes": [
883
+ 17
884
+ ],
885
+ "totalBrands": [
886
+ 17
887
+ ],
888
+ "activeCampaigns": [
889
+ 17
890
+ ],
891
+ "activeSponsorships": [
892
+ 17
893
+ ],
894
+ "__typename": [
895
+ 1
896
+ ]
897
+ },
898
+ "SponsorBrand": {
899
+ "_id": [
900
+ 1
901
+ ],
902
+ "name": [
903
+ 1
904
+ ],
905
+ "slogan": [
906
+ 1
907
+ ],
908
+ "website": [
909
+ 1
910
+ ],
911
+ "description": [
912
+ 1
913
+ ],
914
+ "approved": [
915
+ 2
916
+ ],
917
+ "published": [
918
+ 2
919
+ ],
920
+ "logo": [
921
+ 26
922
+ ],
923
+ "banner": [
924
+ 26
925
+ ],
926
+ "stats": [
927
+ 30
928
+ ],
929
+ "operatorIds": [
930
+ 1
931
+ ],
932
+ "translations": [
933
+ 31
934
+ ],
935
+ "sponsorBrandId": [
936
+ 1
937
+ ],
938
+ "authorizedUse": [
939
+ 2
940
+ ],
941
+ "isAuthorizer": [
942
+ 2
943
+ ],
944
+ "__typename": [
945
+ 1
946
+ ]
947
+ },
948
+ "Sponsor": {
949
+ "_id": [
950
+ 1
951
+ ],
952
+ "name": [
953
+ 1
954
+ ],
955
+ "description": [
956
+ 1
957
+ ],
958
+ "tenant": [
959
+ 5
960
+ ],
961
+ "industry": [
962
+ 43
963
+ ],
964
+ "stats": [
965
+ 44
966
+ ],
967
+ "brands": [
968
+ 45
969
+ ],
970
+ "sponsorships": [
971
+ 52
972
+ ],
973
+ "approved": [
974
+ 2
975
+ ],
976
+ "__typename": [
977
+ 1
978
+ ]
979
+ },
980
+ "SponsorshipItem": {
981
+ "_id": [
982
+ 1
983
+ ],
984
+ "quantity": [
985
+ 17
986
+ ],
987
+ "title": [
988
+ 1
989
+ ],
990
+ "value": [
991
+ 17
992
+ ],
993
+ "type": [
994
+ 1
995
+ ],
996
+ "__typename": [
997
+ 1
998
+ ]
999
+ },
1000
+ "SponsorshipCommitment": {
1001
+ "_id": [
1002
+ 1
1003
+ ],
1004
+ "title": [
1005
+ 1
1006
+ ],
1007
+ "details": [
1008
+ 1
1009
+ ],
1010
+ "hashTags": [
1011
+ 1
1012
+ ],
1013
+ "media": [
1014
+ 1
1015
+ ],
1016
+ "actionType": [
1017
+ 1
1018
+ ],
1019
+ "frequency": [
1020
+ 17
1021
+ ],
1022
+ "periodicity": [
1023
+ 1
1024
+ ],
1025
+ "autoMeasurable": [
1026
+ 2
1027
+ ],
1028
+ "__typename": [
1029
+ 1
1030
+ ]
1031
+ },
1032
+ "Duration": {
1033
+ "length": [
1034
+ 17
1035
+ ],
1036
+ "unit": [
1037
+ 1
1038
+ ],
1039
+ "__typename": [
1040
+ 1
1041
+ ]
1042
+ },
1043
+ "SponsorshipStats": {
1044
+ "totalSponsorships": [
1045
+ 17
1046
+ ],
1047
+ "totalApplications": [
1048
+ 17
1049
+ ],
1050
+ "newApplications": [
1051
+ 17
1052
+ ],
1053
+ "discardedApplications": [
1054
+ 17
1055
+ ],
1056
+ "selectedApplications": [
1057
+ 17
1058
+ ],
1059
+ "approvedApplications": [
1060
+ 17
1061
+ ],
1062
+ "grantedSponsorships": [
1063
+ 17
1064
+ ],
1065
+ "remainingSponsorships": [
1066
+ 17
1067
+ ],
1068
+ "__typename": [
1069
+ 1
1070
+ ]
1071
+ },
1072
+ "SponsorshipTranslation": {
1073
+ "_id": [
1074
+ 1
1075
+ ],
1076
+ "sponsorshipId": [
1077
+ 1
1078
+ ],
1079
+ "language": [
1080
+ 1
1081
+ ],
1082
+ "title": [
1083
+ 1
1084
+ ],
1085
+ "description": [
1086
+ 1
1087
+ ],
1088
+ "terms": [
1089
+ 1
1090
+ ],
1091
+ "banner": [
1092
+ 26
1093
+ ],
1094
+ "__typename": [
1095
+ 1
1096
+ ]
1097
+ },
1098
+ "Sponsorship": {
1099
+ "_id": [
1100
+ 1
1101
+ ],
1102
+ "title": [
1103
+ 1
1104
+ ],
1105
+ "description": [
1106
+ 1
1107
+ ],
1108
+ "cashValue": [
1109
+ 17
1110
+ ],
1111
+ "otherValue": [
1112
+ 17
1113
+ ],
1114
+ "brand": [
1115
+ 32
1116
+ ],
1117
+ "banner": [
1118
+ 26
1119
+ ],
1120
+ "criteria": [
1121
+ 42
1122
+ ],
1123
+ "deadline": [
1124
+ 14
1125
+ ],
1126
+ "startDate": [
1127
+ 14
1128
+ ],
1129
+ "duration": [
1130
+ 49
1131
+ ],
1132
+ "sponsor": [
1133
+ 46
1134
+ ],
1135
+ "sponsorshipItems": [
1136
+ 47
1137
+ ],
1138
+ "commitments": [
1139
+ 48
1140
+ ],
1141
+ "terms": [
1142
+ 1
1143
+ ],
1144
+ "stats": [
1145
+ 50
1146
+ ],
1147
+ "isPrivate": [
1148
+ 2
1149
+ ],
1150
+ "approved": [
1151
+ 2
1152
+ ],
1153
+ "published": [
1154
+ 2
1155
+ ],
1156
+ "translations": [
1157
+ 51
1158
+ ],
1159
+ "__typename": [
1160
+ 1
1161
+ ]
1162
+ },
1163
+ "FollowStats": {
1164
+ "followers": [
1165
+ 17
1166
+ ],
1167
+ "followed": [
1168
+ 17
1169
+ ],
1170
+ "raves": [
1171
+ 17
1172
+ ],
1173
+ "favorites": [
1174
+ 17
1175
+ ],
1176
+ "__typename": [
1177
+ 1
1178
+ ]
1179
+ },
1180
+ "Sport": {
1181
+ "_id": [
1182
+ 1
1183
+ ],
1184
+ "name": [
1185
+ 1
1186
+ ],
1187
+ "__typename": [
1188
+ 1
1189
+ ]
1190
+ },
1191
+ "VtxScores": {
1192
+ "vtxScore": [
1193
+ 17
1194
+ ],
1195
+ "socialScore": [
1196
+ 17
1197
+ ],
1198
+ "trainingScore": [
1199
+ 17
1200
+ ],
1201
+ "competitionScore": [
1202
+ 17
1203
+ ],
1204
+ "__typename": [
1205
+ 1
1206
+ ]
1207
+ },
1208
+ "SportLevelTranslation": {
1209
+ "_id": [
1210
+ 1
1211
+ ],
1212
+ "language": [
1213
+ 1
1214
+ ],
1215
+ "label": [
1216
+ 1
1217
+ ],
1218
+ "__typename": [
1219
+ 1
1220
+ ]
1221
+ },
1222
+ "SportLevel": {
1223
+ "_id": [
1224
+ 1
1225
+ ],
1226
+ "label": [
1227
+ 1
1228
+ ],
1229
+ "index": [
1230
+ 17
1231
+ ],
1232
+ "translations": [
1233
+ 56
1234
+ ],
1235
+ "__typename": [
1236
+ 1
1237
+ ]
1238
+ },
1239
+ "Ranking": {
1240
+ "scope": [
1241
+ 1
1242
+ ],
1243
+ "scopeId": [
1244
+ 1
1245
+ ],
1246
+ "scopeName": [
1247
+ 1
1248
+ ],
1249
+ "position": [
1250
+ 17
1251
+ ],
1252
+ "total": [
1253
+ 17
1254
+ ],
1255
+ "__typename": [
1256
+ 1
1257
+ ]
1258
+ },
1259
+ "AthleteRankings": {
1260
+ "worldRanking": [
1261
+ 58
1262
+ ],
1263
+ "countryRanking": [
1264
+ 58
1265
+ ],
1266
+ "stateRanking": [
1267
+ 58
1268
+ ],
1269
+ "cityRanking": [
1270
+ 58
1271
+ ],
1272
+ "__typename": [
1273
+ 1
1274
+ ]
1275
+ },
1276
+ "Team": {
1277
+ "_id": [
1278
+ 1
1279
+ ],
1280
+ "name": [
1281
+ 1
1282
+ ],
1283
+ "description": [
1284
+ 1
1285
+ ],
1286
+ "sports": [
1287
+ 54
1288
+ ],
1289
+ "approved": [
1290
+ 2
1291
+ ],
1292
+ "logo": [
1293
+ 26
1294
+ ],
1295
+ "banner": [
1296
+ 26
1297
+ ],
1298
+ "__typename": [
1299
+ 1
1300
+ ]
1301
+ },
1302
+ "SportsEvent": {
1303
+ "_id": [
1304
+ 1
1305
+ ],
1306
+ "name": [
1307
+ 1
1308
+ ],
1309
+ "eventWebSite": [
1310
+ 1
1311
+ ],
1312
+ "startDate": [
1313
+ 14
1314
+ ],
1315
+ "endDate": [
1316
+ 14
1317
+ ],
1318
+ "verified": [
1319
+ 2
1320
+ ],
1321
+ "banner": [
1322
+ 26
1323
+ ],
1324
+ "__typename": [
1325
+ 1
1326
+ ]
1327
+ },
1328
+ "AthleteCompetitionResult": {
1329
+ "_id": [
1330
+ 1
1331
+ ],
1332
+ "type": [
1333
+ 1
1334
+ ],
1335
+ "position": [
1336
+ 17
1337
+ ],
1338
+ "score": [
1339
+ 1
1340
+ ],
1341
+ "timems": [
1342
+ 17
1343
+ ],
1344
+ "resultWebLink": [
1345
+ 1
1346
+ ],
1347
+ "__typename": [
1348
+ 1
1349
+ ]
1350
+ },
1351
+ "AthleteCompetition": {
1352
+ "_id": [
1353
+ 1
1354
+ ],
1355
+ "event": [
1356
+ 61
1357
+ ],
1358
+ "eventName": [
1359
+ 1
1360
+ ],
1361
+ "date": [
1362
+ 14
1363
+ ],
1364
+ "result": [
1365
+ 62
1366
+ ],
1367
+ "__typename": [
1368
+ 1
1369
+ ]
1370
+ },
1371
+ "WorldLocation": {
1372
+ "_id": [
1373
+ 1
1374
+ ],
1375
+ "userProvidedLatitude": [
1376
+ 17
1377
+ ],
1378
+ "userProvidedLongitude": [
1379
+ 17
1380
+ ],
1381
+ "cityNameGeocode": [
1382
+ 1
1383
+ ],
1384
+ "stateNameGeocode": [
1385
+ 1
1386
+ ],
1387
+ "countryIso2CodeGeocode": [
1388
+ 1
1389
+ ],
1390
+ "timeZoneGeocode": [
1391
+ 1
1392
+ ],
1393
+ "latitudeGeocode": [
1394
+ 17
1395
+ ],
1396
+ "longitudeGeocode": [
1397
+ 17
1398
+ ],
1399
+ "city": [
1400
+ 33
1401
+ ],
1402
+ "__typename": [
1403
+ 1
1404
+ ]
1405
+ },
1406
+ "Athlete": {
1407
+ "_id": [
1408
+ 1
1409
+ ],
1410
+ "firstName": [
1411
+ 1
1412
+ ],
1413
+ "lastName": [
1414
+ 1
1415
+ ],
1416
+ "screenName": [
1417
+ 1
1418
+ ],
1419
+ "dob": [
1420
+ 14
1421
+ ],
1422
+ "lgbt": [
1423
+ 2
1424
+ ],
1425
+ "competitionGender": [
1426
+ 1
1427
+ ],
1428
+ "country": [
1429
+ 35
1430
+ ],
1431
+ "location": [
1432
+ 64
1433
+ ],
1434
+ "trainer": [
1435
+ 1
1436
+ ],
1437
+ "trainerUrl": [
1438
+ 1
1439
+ ],
1440
+ "followStats": [
1441
+ 53
1442
+ ],
1443
+ "mainSport": [
1444
+ 54
1445
+ ],
1446
+ "mainSportLevel": [
1447
+ 57
1448
+ ],
1449
+ "scores": [
1450
+ 55
1451
+ ],
1452
+ "rankings": [
1453
+ 59
1454
+ ],
1455
+ "allSports": [
1456
+ 54
1457
+ ],
1458
+ "teams": [
1459
+ 60
1460
+ ],
1461
+ "sponsorBrands": [
1462
+ 32
1463
+ ],
1464
+ "competitions": [
1465
+ 63
1466
+ ],
1467
+ "totalUpcomingCompetitions": [
1468
+ 17
1469
+ ],
1470
+ "totalPastCompetitions": [
1471
+ 17
1472
+ ],
1473
+ "__typename": [
1474
+ 1
1475
+ ]
1476
+ },
1477
+ "ScoreQualificationDto": {
1478
+ "type": [
1479
+ 1
1480
+ ],
1481
+ "scoreType": [
1482
+ 1
1483
+ ],
1484
+ "operator": [
1485
+ 1
1486
+ ],
1487
+ "value": [
1488
+ 17
1489
+ ],
1490
+ "__typename": [
1491
+ 1
1492
+ ]
1493
+ },
1494
+ "LocationQualificationDto": {
1495
+ "type": [
1496
+ 1
1497
+ ],
1498
+ "operator": [
1499
+ 1
1500
+ ],
1501
+ "countries": [
1502
+ 68
1503
+ ],
1504
+ "states": [
1505
+ 69
1506
+ ],
1507
+ "cities": [
1508
+ 70
1509
+ ],
1510
+ "__typename": [
1511
+ 1
1512
+ ]
1513
+ },
1514
+ "CountryReferenceDto": {
1515
+ "_id": [
1516
+ 1
1517
+ ],
1518
+ "name": [
1519
+ 1
1520
+ ],
1521
+ "__typename": [
1522
+ 1
1523
+ ]
1524
+ },
1525
+ "StateReferenceDto": {
1526
+ "_id": [
1527
+ 1
1528
+ ],
1529
+ "name": [
1530
+ 1
1531
+ ],
1532
+ "country": [
1533
+ 68
1534
+ ],
1535
+ "__typename": [
1536
+ 1
1537
+ ]
1538
+ },
1539
+ "CityReferenceDto": {
1540
+ "_id": [
1541
+ 1
1542
+ ],
1543
+ "name": [
1544
+ 1
1545
+ ],
1546
+ "state": [
1547
+ 69
1548
+ ],
1549
+ "__typename": [
1550
+ 1
1551
+ ]
1552
+ },
1553
+ "DistanceQualificationDto": {
1554
+ "type": [
1555
+ 1
1556
+ ],
1557
+ "maxDistance": [
1558
+ 17
1559
+ ],
1560
+ "latitude": [
1561
+ 17
1562
+ ],
1563
+ "longitude": [
1564
+ 17
1565
+ ],
1566
+ "cityId": [
1567
+ 1
1568
+ ],
1569
+ "__typename": [
1570
+ 1
1571
+ ]
1572
+ },
1573
+ "SportsQualificationDto": {
1574
+ "type": [
1575
+ 1
1576
+ ],
1577
+ "sports": [
1578
+ 1
1579
+ ],
1580
+ "operator": [
1581
+ 1
1582
+ ],
1583
+ "__typename": [
1584
+ 1
1585
+ ]
1586
+ },
1587
+ "SportsLevelQualificationDto": {
1588
+ "type": [
1589
+ 1
1590
+ ],
1591
+ "operator": [
1592
+ 1
1593
+ ],
1594
+ "level": [
1595
+ 1
1596
+ ],
1597
+ "__typename": [
1598
+ 1
1599
+ ]
1600
+ },
1601
+ "Query": {
1602
+ "findTenantById": [
1603
+ 5,
1604
+ {
1605
+ "_id": [
1606
+ 1,
1607
+ "String!"
1608
+ ]
1609
+ }
1610
+ ],
1611
+ "findTenantByEmail": [
1612
+ 5,
1613
+ {
1614
+ "email": [
1615
+ 1,
1616
+ "String!"
1617
+ ],
1618
+ "domainId": [
1619
+ 1,
1620
+ "String!"
1621
+ ]
1622
+ }
1623
+ ],
1624
+ "getTenants": [
1625
+ 5
1626
+ ],
1627
+ "isTenantUriAvailable": [
1628
+ 12,
1629
+ {
1630
+ "tenant_uri": [
1631
+ 1,
1632
+ "String!"
1633
+ ]
1634
+ }
1635
+ ],
1636
+ "findUserById": [
1637
+ 0,
1638
+ {
1639
+ "_id": [
1640
+ 1,
1641
+ "String!"
1642
+ ]
1643
+ }
1644
+ ],
1645
+ "findUserByEmail": [
1646
+ 0,
1647
+ {
1648
+ "email": [
1649
+ 1,
1650
+ "String!"
1651
+ ]
1652
+ }
1653
+ ],
1654
+ "getUploadUrl": [
1655
+ 28,
1656
+ {
1657
+ "input": [
1658
+ 75,
1659
+ "AWSS3GetUploadDto!"
1660
+ ]
1661
+ }
1662
+ ],
1663
+ "industries": [
1664
+ 43
1665
+ ],
1666
+ "findIndustryById": [
1667
+ 43,
1668
+ {
1669
+ "industryId": [
1670
+ 1,
1671
+ "String!"
1672
+ ]
1673
+ }
1674
+ ],
1675
+ "brands": [
1676
+ 32
1677
+ ],
1678
+ "getBrandByName": [
1679
+ 32,
1680
+ {
1681
+ "name": [
1682
+ 1,
1683
+ "String!"
1684
+ ],
1685
+ "translations": [
1686
+ 2,
1687
+ "Boolean!"
1688
+ ]
1689
+ }
1690
+ ],
1691
+ "getBrandTranslation": [
1692
+ 31,
1693
+ {
1694
+ "brandId": [
1695
+ 1,
1696
+ "String!"
1697
+ ],
1698
+ "language": [
1699
+ 1,
1700
+ "String!"
1701
+ ]
1702
+ }
1703
+ ],
1704
+ "existsValidSponsorForEmail": [
1705
+ 46,
1706
+ {
1707
+ "loginEmail": [
1708
+ 1,
1709
+ "String!"
1710
+ ]
1711
+ }
1712
+ ],
1713
+ "sponsors": [
1714
+ 46
1715
+ ],
1716
+ "getAthletes": [
1717
+ 65
1718
+ ],
1719
+ "findAthleteById": [
1720
+ 65,
1721
+ {
1722
+ "athleteId": [
1723
+ 1,
1724
+ "String!"
1725
+ ]
1726
+ }
1727
+ ],
1728
+ "getSports": [
1729
+ 54
1730
+ ],
1731
+ "findSportById": [
1732
+ 54,
1733
+ {
1734
+ "sportId": [
1735
+ 1,
1736
+ "String!"
1737
+ ]
1738
+ }
1739
+ ],
1740
+ "getSportLevels": [
1741
+ 57
1742
+ ],
1743
+ "getPublicSponsorships": [
1744
+ 52
1745
+ ],
1746
+ "getTenantSponsorships": [
1747
+ 52
1748
+ ],
1749
+ "getCountries": [
1750
+ 35
1751
+ ],
1752
+ "getCountryStates": [
1753
+ 34,
1754
+ {
1755
+ "countryId": [
1756
+ 1,
1757
+ "String!"
1758
+ ]
1759
+ }
1760
+ ],
1761
+ "getStateCities": [
1762
+ 33,
1763
+ {
1764
+ "stateId": [
1765
+ 1,
1766
+ "String!"
1767
+ ]
1768
+ }
1769
+ ],
1770
+ "findCitiesStartingWith": [
1771
+ 33,
1772
+ {
1773
+ "text": [
1774
+ 1,
1775
+ "String!"
1776
+ ]
1777
+ }
1778
+ ],
1779
+ "__typename": [
1780
+ 1
1781
+ ]
1782
+ },
1783
+ "AWSS3GetUploadDto": {
1784
+ "useType": [
1785
+ 1
1786
+ ],
1787
+ "name": [
1788
+ 1
1789
+ ],
1790
+ "__typename": [
1791
+ 1
1792
+ ]
1793
+ },
1794
+ "Mutation": {
1795
+ "registerNewDomainTenant": [
1796
+ 5,
1797
+ {
1798
+ "tenant": [
1799
+ 77,
1800
+ "CreateTenantInput!"
1801
+ ]
1802
+ }
1803
+ ],
1804
+ "registerNewDomainTenantWithLogin": [
1805
+ 11,
1806
+ {
1807
+ "tenant": [
1808
+ 77,
1809
+ "CreateTenantInput!"
1810
+ ]
1811
+ }
1812
+ ],
1813
+ "createUserAndLogin": [
1814
+ 3,
1815
+ {
1816
+ "user": [
1817
+ 78,
1818
+ "CreateActiveUserInput!"
1819
+ ]
1820
+ }
1821
+ ],
1822
+ "loginUserFromEmail": [
1823
+ 8,
1824
+ {
1825
+ "email": [
1826
+ 1,
1827
+ "String!"
1828
+ ]
1829
+ }
1830
+ ],
1831
+ "registerUserToDomainFromEmail": [
1832
+ 0,
1833
+ {
1834
+ "input": [
1835
+ 79,
1836
+ "RegisterUserToDomainFromEmailInput!"
1837
+ ]
1838
+ }
1839
+ ],
1840
+ "refreshToken": [
1841
+ 8,
1842
+ {
1843
+ "dto": [
1844
+ 80,
1845
+ "RefreshTokenInput!"
1846
+ ]
1847
+ }
1848
+ ],
1849
+ "deleteUploadedUseTypeFile": [
1850
+ 29,
1851
+ {
1852
+ "input": [
1853
+ 81,
1854
+ "AWSS3DeleteUseTypeFileDto!"
1855
+ ]
1856
+ }
1857
+ ],
1858
+ "deleteUploadedBucketFile": [
1859
+ 29,
1860
+ {
1861
+ "input": [
1862
+ 82,
1863
+ "AWSS3DeleteBucketFileDto!"
1864
+ ]
1865
+ }
1866
+ ],
1867
+ "registerS3UploadedFile": [
1868
+ 26,
1869
+ {
1870
+ "input": [
1871
+ 83,
1872
+ "AWSS3UploadedFileDto!"
1873
+ ]
1874
+ }
1875
+ ],
1876
+ "createIndustry": [
1877
+ 43,
1878
+ {
1879
+ "input": [
1880
+ 84,
1881
+ "CreateIndustryDto!"
1882
+ ]
1883
+ }
1884
+ ],
1885
+ "createBrand": [
1886
+ 32,
1887
+ {
1888
+ "input": [
1889
+ 85,
1890
+ "CreateBrandDto!"
1891
+ ]
1892
+ }
1893
+ ],
1894
+ "registerSponsor": [
1895
+ 46,
1896
+ {
1897
+ "input": [
1898
+ 87,
1899
+ "RegisterSponsorInput!"
1900
+ ]
1901
+ }
1902
+ ],
1903
+ "createSponsor": [
1904
+ 46,
1905
+ {
1906
+ "input": [
1907
+ 88,
1908
+ "CreateSponsorDto!"
1909
+ ]
1910
+ }
1911
+ ],
1912
+ "registerAthlete": [
1913
+ 65,
1914
+ {
1915
+ "input": [
1916
+ 89,
1917
+ "RegisterAthleteDto!"
1918
+ ]
1919
+ }
1920
+ ],
1921
+ "createSport": [
1922
+ 54,
1923
+ {
1924
+ "input": [
1925
+ 90,
1926
+ "CreateSportDto!"
1927
+ ]
1928
+ }
1929
+ ],
1930
+ "updateSport": [
1931
+ 54,
1932
+ {
1933
+ "input": [
1934
+ 91,
1935
+ "UpdateSportDto!"
1936
+ ]
1937
+ }
1938
+ ],
1939
+ "createSportLevel": [
1940
+ 57,
1941
+ {
1942
+ "input": [
1943
+ 92,
1944
+ "CreateSportLevelDto!"
1945
+ ]
1946
+ }
1947
+ ],
1948
+ "createSponsorwhip": [
1949
+ 52,
1950
+ {
1951
+ "input": [
1952
+ 94,
1953
+ "CreateSponsorshipDto!"
1954
+ ]
1955
+ }
1956
+ ],
1957
+ "createCountry": [
1958
+ 35,
1959
+ {
1960
+ "input": [
1961
+ 101,
1962
+ "CreateCountryDto!"
1963
+ ]
1964
+ }
1965
+ ],
1966
+ "createState": [
1967
+ 34,
1968
+ {
1969
+ "input": [
1970
+ 102,
1971
+ "CreateStateDto!"
1972
+ ]
1973
+ }
1974
+ ],
1975
+ "createCity": [
1976
+ 33,
1977
+ {
1978
+ "input": [
1979
+ 103,
1980
+ "CreateCityDto!"
1981
+ ]
1982
+ }
1983
+ ],
1984
+ "__typename": [
1985
+ 1
1986
+ ]
1987
+ },
1988
+ "CreateTenantInput": {
1989
+ "name": [
1990
+ 1
1991
+ ],
1992
+ "email": [
1993
+ 1
1994
+ ],
1995
+ "tenant_uri": [
1996
+ 1
1997
+ ],
1998
+ "domain": [
1999
+ 1
2000
+ ],
2001
+ "__typename": [
2002
+ 1
2003
+ ]
2004
+ },
2005
+ "CreateActiveUserInput": {
2006
+ "loginEmail": [
2007
+ 1
2008
+ ],
2009
+ "password": [
2010
+ 1
2011
+ ],
2012
+ "__typename": [
2013
+ 1
2014
+ ]
2015
+ },
2016
+ "RegisterUserToDomainFromEmailInput": {
2017
+ "email": [
2018
+ 1
2019
+ ],
2020
+ "domainId": [
2021
+ 1
2022
+ ],
2023
+ "tenantId": [
2024
+ 1
2025
+ ],
2026
+ "createUserIfNotExist": [
2027
+ 2
2028
+ ],
2029
+ "__typename": [
2030
+ 1
2031
+ ]
2032
+ },
2033
+ "RefreshTokenInput": {
2034
+ "refreshToken": [
2035
+ 1
2036
+ ],
2037
+ "__typename": [
2038
+ 1
2039
+ ]
2040
+ },
2041
+ "AWSS3DeleteUseTypeFileDto": {
2042
+ "name": [
2043
+ 1
2044
+ ],
2045
+ "useType": [
2046
+ 1
2047
+ ],
2048
+ "__typename": [
2049
+ 1
2050
+ ]
2051
+ },
2052
+ "AWSS3DeleteBucketFileDto": {
2053
+ "key": [
2054
+ 1
2055
+ ],
2056
+ "bucket": [
2057
+ 1
2058
+ ],
2059
+ "credentialsId": [
2060
+ 1
2061
+ ],
2062
+ "__typename": [
2063
+ 1
2064
+ ]
2065
+ },
2066
+ "AWSS3UploadedFileDto": {
2067
+ "key": [
2068
+ 1
2069
+ ],
2070
+ "useType": [
2071
+ 1
2072
+ ],
2073
+ "contentType": [
2074
+ 1
2075
+ ],
2076
+ "originalFileName": [
2077
+ 1
2078
+ ],
2079
+ "fileSize": [
2080
+ 17
2081
+ ],
2082
+ "__typename": [
2083
+ 1
2084
+ ]
2085
+ },
2086
+ "CreateIndustryDto": {
2087
+ "name": [
2088
+ 1
2089
+ ],
2090
+ "__typename": [
2091
+ 1
2092
+ ]
2093
+ },
2094
+ "CreateBrandDto": {
2095
+ "name": [
2096
+ 1
2097
+ ],
2098
+ "description": [
2099
+ 1
2100
+ ],
2101
+ "slogan": [
2102
+ 1
2103
+ ],
2104
+ "website": [
2105
+ 1
2106
+ ],
2107
+ "logo": [
2108
+ 83
2109
+ ],
2110
+ "banner": [
2111
+ 83
2112
+ ],
2113
+ "translations": [
2114
+ 86
2115
+ ],
2116
+ "__typename": [
2117
+ 1
2118
+ ]
2119
+ },
2120
+ "BrandTranslationDto": {
2121
+ "brandId": [
2122
+ 1
2123
+ ],
2124
+ "language": [
2125
+ 1
2126
+ ],
2127
+ "name": [
2128
+ 1
2129
+ ],
2130
+ "description": [
2131
+ 1
2132
+ ],
2133
+ "slogan": [
2134
+ 1
2135
+ ],
2136
+ "logo": [
2137
+ 83
2138
+ ],
2139
+ "banner": [
2140
+ 83
2141
+ ],
2142
+ "__typename": [
2143
+ 1
2144
+ ]
2145
+ },
2146
+ "RegisterSponsorInput": {
2147
+ "name": [
2148
+ 1
2149
+ ],
2150
+ "phone": [
2151
+ 1
2152
+ ],
2153
+ "hasWhatsapp": [
2154
+ 2
2155
+ ],
2156
+ "companyName": [
2157
+ 1
2158
+ ],
2159
+ "companyEmail": [
2160
+ 1
2161
+ ],
2162
+ "industryId": [
2163
+ 1
2164
+ ],
2165
+ "companySize": [
2166
+ 1
2167
+ ],
2168
+ "operatorType": [
2169
+ 1
2170
+ ],
2171
+ "numberOfAthletes": [
2172
+ 1
2173
+ ],
2174
+ "brands": [
2175
+ 1
2176
+ ],
2177
+ "__typename": [
2178
+ 1
2179
+ ]
2180
+ },
2181
+ "CreateSponsorDto": {
2182
+ "name": [
2183
+ 1
2184
+ ],
2185
+ "description": [
2186
+ 1
2187
+ ],
2188
+ "__typename": [
2189
+ 1
2190
+ ]
2191
+ },
2192
+ "RegisterAthleteDto": {
2193
+ "email": [
2194
+ 1
2195
+ ],
2196
+ "firstName": [
2197
+ 1
2198
+ ],
2199
+ "lastName": [
2200
+ 1
2201
+ ],
2202
+ "screenName": [
2203
+ 1
2204
+ ],
2205
+ "nationality": [
2206
+ 1
2207
+ ],
2208
+ "cityId": [
2209
+ 1
2210
+ ],
2211
+ "locLatitude": [
2212
+ 17
2213
+ ],
2214
+ "locLongitude": [
2215
+ 17
2216
+ ],
2217
+ "dateOfBirth": [
2218
+ 14
2219
+ ],
2220
+ "team": [
2221
+ 1
2222
+ ],
2223
+ "gender": [
2224
+ 1
2225
+ ],
2226
+ "mainSport": [
2227
+ 1
2228
+ ],
2229
+ "mainSportLevel": [
2230
+ 1
2231
+ ],
2232
+ "__typename": [
2233
+ 1
2234
+ ]
2235
+ },
2236
+ "CreateSportDto": {
2237
+ "name": [
2238
+ 1
2239
+ ],
2240
+ "__typename": [
2241
+ 1
2242
+ ]
2243
+ },
2244
+ "UpdateSportDto": {
2245
+ "_id": [
2246
+ 1
2247
+ ],
2248
+ "name": [
2249
+ 1
2250
+ ],
2251
+ "__typename": [
2252
+ 1
2253
+ ]
2254
+ },
2255
+ "CreateSportLevelDto": {
2256
+ "_id": [
2257
+ 1
2258
+ ],
2259
+ "label": [
2260
+ 1
2261
+ ],
2262
+ "index": [
2263
+ 17
2264
+ ],
2265
+ "translations": [
2266
+ 93
2267
+ ],
2268
+ "__typename": [
2269
+ 1
2270
+ ]
2271
+ },
2272
+ "CreateSportLevelTranslationDto": {
2273
+ "language": [
2274
+ 1
2275
+ ],
2276
+ "label": [
2277
+ 1
2278
+ ],
2279
+ "__typename": [
2280
+ 1
2281
+ ]
2282
+ },
2283
+ "CreateSponsorshipDto": {
2284
+ "title": [
2285
+ 1
2286
+ ],
2287
+ "brandId": [
2288
+ 1
2289
+ ],
2290
+ "description": [
2291
+ 1
2292
+ ],
2293
+ "cashValue": [
2294
+ 17
2295
+ ],
2296
+ "otherValue": [
2297
+ 17
2298
+ ],
2299
+ "banner": [
2300
+ 83
2301
+ ],
2302
+ "criteria": [
2303
+ 95
2304
+ ],
2305
+ "deadline": [
2306
+ 14
2307
+ ],
2308
+ "startDate": [
2309
+ 14
2310
+ ],
2311
+ "duration": [
2312
+ 97
2313
+ ],
2314
+ "sponsorshipItems": [
2315
+ 98
2316
+ ],
2317
+ "commitments": [
2318
+ 99
2319
+ ],
2320
+ "terms": [
2321
+ 1
2322
+ ],
2323
+ "published": [
2324
+ 2
2325
+ ],
2326
+ "isPrivate": [
2327
+ 2
2328
+ ],
2329
+ "translations": [
2330
+ 100
2331
+ ],
2332
+ "__typename": [
2333
+ 1
2334
+ ]
2335
+ },
2336
+ "AthleteCriteriaDto": {
2337
+ "_id": [
2338
+ 1
2339
+ ],
2340
+ "label": [
2341
+ 1
2342
+ ],
2343
+ "qualifications": [
2344
+ 96
2345
+ ],
2346
+ "__typename": [
2347
+ 1
2348
+ ]
2349
+ },
2350
+ "QualificationDto": {
2351
+ "type": [
2352
+ 1
2353
+ ],
2354
+ "__typename": [
2355
+ 1
2356
+ ]
2357
+ },
2358
+ "DurationDto": {
2359
+ "length": [
2360
+ 17
2361
+ ],
2362
+ "unit": [
2363
+ 1
2364
+ ],
2365
+ "__typename": [
2366
+ 1
2367
+ ]
2368
+ },
2369
+ "SponsorshipItemDto": {
2370
+ "_id": [
2371
+ 1
2372
+ ],
2373
+ "quantity": [
2374
+ 17
2375
+ ],
2376
+ "title": [
2377
+ 1
2378
+ ],
2379
+ "value": [
2380
+ 17
2381
+ ],
2382
+ "__typename": [
2383
+ 1
2384
+ ]
2385
+ },
2386
+ "SponsorshipCommitmentDto": {
2387
+ "_id": [
2388
+ 1
2389
+ ],
2390
+ "title": [
2391
+ 1
2392
+ ],
2393
+ "details": [
2394
+ 1
2395
+ ],
2396
+ "hashTags": [
2397
+ 1
2398
+ ],
2399
+ "media": [
2400
+ 1
2401
+ ],
2402
+ "actionType": [
2403
+ 1
2404
+ ],
2405
+ "frequency": [
2406
+ 17
2407
+ ],
2408
+ "periodicity": [
2409
+ 1
2410
+ ],
2411
+ "__typename": [
2412
+ 1
2413
+ ]
2414
+ },
2415
+ "SponsorshipTranslationDto": {
2416
+ "title": [
2417
+ 1
2418
+ ],
2419
+ "description": [
2420
+ 1
2421
+ ],
2422
+ "banner": [
2423
+ 83
2424
+ ],
2425
+ "terms": [
2426
+ 1
2427
+ ],
2428
+ "__typename": [
2429
+ 1
2430
+ ]
2431
+ },
2432
+ "CreateCountryDto": {
2433
+ "_id": [
2434
+ 1
2435
+ ],
2436
+ "name": [
2437
+ 1
2438
+ ],
2439
+ "__typename": [
2440
+ 1
2441
+ ]
2442
+ },
2443
+ "CreateStateDto": {
2444
+ "_id": [
2445
+ 1
2446
+ ],
2447
+ "name": [
2448
+ 1
2449
+ ],
2450
+ "countryId": [
2451
+ 1
2452
+ ],
2453
+ "__typename": [
2454
+ 1
2455
+ ]
2456
+ },
2457
+ "CreateCityDto": {
2458
+ "_id": [
2459
+ 1
2460
+ ],
2461
+ "cityName": [
2462
+ 1
2463
+ ],
2464
+ "cityNameLocalized": [
2465
+ 1
2466
+ ],
2467
+ "lat": [
2468
+ 17
2469
+ ],
2470
+ "lng": [
2471
+ 17
2472
+ ],
2473
+ "stateId": [
2474
+ 1
2475
+ ],
2476
+ "timezone": [
2477
+ 1
2478
+ ],
2479
+ "city_alt": [
2480
+ 1
2481
+ ],
2482
+ "iso3": [
2483
+ 1
2484
+ ],
2485
+ "admin_type": [
2486
+ 1
2487
+ ],
2488
+ "capital": [
2489
+ 1
2490
+ ],
2491
+ "density": [
2492
+ 17
2493
+ ],
2494
+ "population": [
2495
+ 17
2496
+ ],
2497
+ "population_proper": [
2498
+ 17
2499
+ ],
2500
+ "ranking": [
2501
+ 17
2502
+ ],
2503
+ "same_name": [
2504
+ 1
2505
+ ],
2506
+ "__typename": [
2507
+ 1
2508
+ ]
2509
+ }
2510
+ }
2511
+ };
2512
+ //# sourceMappingURL=types.js.map