@vertikalx/vtx-backend-client 1.0.0-dev.43 → 1.0.0-dev.45
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/api/backend-response.d.ts +7 -1
- package/src/api/response-builder.js +80 -10
- package/src/api/response-builder.js.map +1 -1
- package/src/api/types.d.ts +2 -0
- package/src/api/types.js +3 -0
- package/src/api/types.js.map +1 -0
- package/src/api/vtx-base-api.d.ts +20 -2
- package/src/api/vtx-base-api.js +1932 -329
- package/src/api/vtx-base-api.js.map +1 -1
- package/src/client/schema.d.ts +276 -18
- package/src/client/schema.graphql +128 -11
- package/src/client/schema.js +44 -9
- package/src/client/schema.js.map +1 -1
- package/src/client/types.d.ts +168 -9
- package/src/client/types.js +556 -126
- package/src/client/types.js.map +1 -1
- package/src/index.d.ts +1 -0
- package/src/index.js +1 -0
- package/src/index.js.map +1 -1
- package/tsconfig.lib.tsbuildinfo +1 -1
package/src/client/types.js
CHANGED
|
@@ -21,6 +21,9 @@ exports.default = {
|
|
|
21
21
|
"domains": [
|
|
22
22
|
7
|
|
23
23
|
],
|
|
24
|
+
"loginMethods": [
|
|
25
|
+
1
|
|
26
|
+
],
|
|
24
27
|
"__typename": [
|
|
25
28
|
1
|
|
26
29
|
]
|
|
@@ -40,6 +43,9 @@ exports.default = {
|
|
|
40
43
|
"domains": [
|
|
41
44
|
7
|
|
42
45
|
],
|
|
46
|
+
"loginMethods": [
|
|
47
|
+
1
|
|
48
|
+
],
|
|
43
49
|
"token": [
|
|
44
50
|
8
|
|
45
51
|
],
|
|
@@ -568,6 +574,69 @@ exports.default = {
|
|
|
568
574
|
1
|
|
569
575
|
]
|
|
570
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
|
+
},
|
|
571
640
|
"HttpRequestField": {
|
|
572
641
|
"key": [
|
|
573
642
|
1
|
|
@@ -584,7 +653,7 @@ exports.default = {
|
|
|
584
653
|
1
|
|
585
654
|
],
|
|
586
655
|
"fields": [
|
|
587
|
-
|
|
656
|
+
30
|
|
588
657
|
],
|
|
589
658
|
"downloadUrl": [
|
|
590
659
|
1
|
|
@@ -616,6 +685,20 @@ exports.default = {
|
|
|
616
685
|
1
|
|
617
686
|
]
|
|
618
687
|
},
|
|
688
|
+
"CodeVerificationResponse": {
|
|
689
|
+
"result": [
|
|
690
|
+
1
|
|
691
|
+
],
|
|
692
|
+
"code": [
|
|
693
|
+
28
|
|
694
|
+
],
|
|
695
|
+
"error": [
|
|
696
|
+
29
|
|
697
|
+
],
|
|
698
|
+
"__typename": [
|
|
699
|
+
1
|
|
700
|
+
]
|
|
701
|
+
},
|
|
619
702
|
"BrandStats": {
|
|
620
703
|
"campaigns": [
|
|
621
704
|
17
|
|
@@ -691,13 +774,13 @@ exports.default = {
|
|
|
691
774
|
26
|
|
692
775
|
],
|
|
693
776
|
"stats": [
|
|
694
|
-
|
|
777
|
+
34
|
|
695
778
|
],
|
|
696
779
|
"operatorIds": [
|
|
697
780
|
1
|
|
698
781
|
],
|
|
699
782
|
"translations": [
|
|
700
|
-
|
|
783
|
+
35
|
|
701
784
|
],
|
|
702
785
|
"__typename": [
|
|
703
786
|
1
|
|
@@ -714,7 +797,7 @@ exports.default = {
|
|
|
714
797
|
1
|
|
715
798
|
],
|
|
716
799
|
"state": [
|
|
717
|
-
|
|
800
|
+
38
|
|
718
801
|
],
|
|
719
802
|
"latitude": [
|
|
720
803
|
17
|
|
@@ -737,10 +820,10 @@ exports.default = {
|
|
|
737
820
|
1
|
|
738
821
|
],
|
|
739
822
|
"country": [
|
|
740
|
-
|
|
823
|
+
39
|
|
741
824
|
],
|
|
742
825
|
"cities": [
|
|
743
|
-
|
|
826
|
+
37
|
|
744
827
|
],
|
|
745
828
|
"__typename": [
|
|
746
829
|
1
|
|
@@ -754,15 +837,7 @@ exports.default = {
|
|
|
754
837
|
1
|
|
755
838
|
],
|
|
756
839
|
"states": [
|
|
757
|
-
|
|
758
|
-
],
|
|
759
|
-
"__typename": [
|
|
760
|
-
1
|
|
761
|
-
]
|
|
762
|
-
},
|
|
763
|
-
"Qualification": {
|
|
764
|
-
"type": [
|
|
765
|
-
1
|
|
840
|
+
38
|
|
766
841
|
],
|
|
767
842
|
"__typename": [
|
|
768
843
|
1
|
|
@@ -821,13 +896,13 @@ exports.default = {
|
|
|
821
896
|
1
|
|
822
897
|
],
|
|
823
898
|
"countries": [
|
|
824
|
-
|
|
899
|
+
39
|
|
825
900
|
],
|
|
826
901
|
"states": [
|
|
827
|
-
|
|
902
|
+
38
|
|
828
903
|
],
|
|
829
904
|
"cities": [
|
|
830
|
-
|
|
905
|
+
37
|
|
831
906
|
],
|
|
832
907
|
"__typename": [
|
|
833
908
|
1
|
|
@@ -841,7 +916,7 @@ exports.default = {
|
|
|
841
916
|
1
|
|
842
917
|
],
|
|
843
918
|
"countries": [
|
|
844
|
-
|
|
919
|
+
39
|
|
845
920
|
],
|
|
846
921
|
"__typename": [
|
|
847
922
|
1
|
|
@@ -903,7 +978,36 @@ exports.default = {
|
|
|
903
978
|
1
|
|
904
979
|
],
|
|
905
980
|
"qualifications": [
|
|
906
|
-
|
|
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
|
|
907
1011
|
],
|
|
908
1012
|
"__typename": [
|
|
909
1013
|
1
|
|
@@ -966,13 +1070,13 @@ exports.default = {
|
|
|
966
1070
|
26
|
|
967
1071
|
],
|
|
968
1072
|
"stats": [
|
|
969
|
-
|
|
1073
|
+
34
|
|
970
1074
|
],
|
|
971
1075
|
"operatorIds": [
|
|
972
1076
|
1
|
|
973
1077
|
],
|
|
974
1078
|
"translations": [
|
|
975
|
-
|
|
1079
|
+
35
|
|
976
1080
|
],
|
|
977
1081
|
"sponsorBrandId": [
|
|
978
1082
|
1
|
|
@@ -1001,16 +1105,16 @@ exports.default = {
|
|
|
1001
1105
|
5
|
|
1002
1106
|
],
|
|
1003
1107
|
"industry": [
|
|
1004
|
-
|
|
1108
|
+
50
|
|
1005
1109
|
],
|
|
1006
1110
|
"stats": [
|
|
1007
|
-
|
|
1111
|
+
51
|
|
1008
1112
|
],
|
|
1009
1113
|
"brands": [
|
|
1010
|
-
|
|
1114
|
+
52
|
|
1011
1115
|
],
|
|
1012
1116
|
"sponsorships": [
|
|
1013
|
-
|
|
1117
|
+
59
|
|
1014
1118
|
],
|
|
1015
1119
|
"approved": [
|
|
1016
1120
|
2
|
|
@@ -1154,13 +1258,13 @@ exports.default = {
|
|
|
1154
1258
|
17
|
|
1155
1259
|
],
|
|
1156
1260
|
"brand": [
|
|
1157
|
-
|
|
1261
|
+
36
|
|
1158
1262
|
],
|
|
1159
1263
|
"banner": [
|
|
1160
1264
|
26
|
|
1161
1265
|
],
|
|
1162
1266
|
"criteria": [
|
|
1163
|
-
|
|
1267
|
+
48
|
|
1164
1268
|
],
|
|
1165
1269
|
"deadline": [
|
|
1166
1270
|
14
|
|
@@ -1169,22 +1273,22 @@ exports.default = {
|
|
|
1169
1273
|
14
|
|
1170
1274
|
],
|
|
1171
1275
|
"duration": [
|
|
1172
|
-
|
|
1276
|
+
56
|
|
1173
1277
|
],
|
|
1174
1278
|
"sponsor": [
|
|
1175
|
-
|
|
1279
|
+
53
|
|
1176
1280
|
],
|
|
1177
1281
|
"sponsorshipItems": [
|
|
1178
|
-
|
|
1282
|
+
54
|
|
1179
1283
|
],
|
|
1180
1284
|
"commitments": [
|
|
1181
|
-
|
|
1285
|
+
55
|
|
1182
1286
|
],
|
|
1183
1287
|
"terms": [
|
|
1184
1288
|
1
|
|
1185
1289
|
],
|
|
1186
1290
|
"stats": [
|
|
1187
|
-
|
|
1291
|
+
57
|
|
1188
1292
|
],
|
|
1189
1293
|
"isPrivate": [
|
|
1190
1294
|
2
|
|
@@ -1196,7 +1300,7 @@ exports.default = {
|
|
|
1196
1300
|
2
|
|
1197
1301
|
],
|
|
1198
1302
|
"translations": [
|
|
1199
|
-
|
|
1303
|
+
58
|
|
1200
1304
|
],
|
|
1201
1305
|
"__typename": [
|
|
1202
1306
|
1
|
|
@@ -1272,7 +1376,7 @@ exports.default = {
|
|
|
1272
1376
|
17
|
|
1273
1377
|
],
|
|
1274
1378
|
"translations": [
|
|
1275
|
-
|
|
1379
|
+
63
|
|
1276
1380
|
],
|
|
1277
1381
|
"__typename": [
|
|
1278
1382
|
1
|
|
@@ -1300,16 +1404,16 @@ exports.default = {
|
|
|
1300
1404
|
},
|
|
1301
1405
|
"AthleteRankings": {
|
|
1302
1406
|
"worldRanking": [
|
|
1303
|
-
|
|
1407
|
+
65
|
|
1304
1408
|
],
|
|
1305
1409
|
"countryRanking": [
|
|
1306
|
-
|
|
1410
|
+
65
|
|
1307
1411
|
],
|
|
1308
1412
|
"stateRanking": [
|
|
1309
|
-
|
|
1413
|
+
65
|
|
1310
1414
|
],
|
|
1311
1415
|
"cityRanking": [
|
|
1312
|
-
|
|
1416
|
+
65
|
|
1313
1417
|
],
|
|
1314
1418
|
"__typename": [
|
|
1315
1419
|
1
|
|
@@ -1326,7 +1430,7 @@ exports.default = {
|
|
|
1326
1430
|
1
|
|
1327
1431
|
],
|
|
1328
1432
|
"sports": [
|
|
1329
|
-
|
|
1433
|
+
61
|
|
1330
1434
|
],
|
|
1331
1435
|
"approved": [
|
|
1332
1436
|
2
|
|
@@ -1395,7 +1499,7 @@ exports.default = {
|
|
|
1395
1499
|
1
|
|
1396
1500
|
],
|
|
1397
1501
|
"event": [
|
|
1398
|
-
|
|
1502
|
+
68
|
|
1399
1503
|
],
|
|
1400
1504
|
"eventName": [
|
|
1401
1505
|
1
|
|
@@ -1404,7 +1508,7 @@ exports.default = {
|
|
|
1404
1508
|
14
|
|
1405
1509
|
],
|
|
1406
1510
|
"result": [
|
|
1407
|
-
|
|
1511
|
+
69
|
|
1408
1512
|
],
|
|
1409
1513
|
"__typename": [
|
|
1410
1514
|
1
|
|
@@ -1439,7 +1543,7 @@ exports.default = {
|
|
|
1439
1543
|
17
|
|
1440
1544
|
],
|
|
1441
1545
|
"city": [
|
|
1442
|
-
|
|
1546
|
+
37
|
|
1443
1547
|
],
|
|
1444
1548
|
"__typename": [
|
|
1445
1549
|
1
|
|
@@ -1468,10 +1572,10 @@ exports.default = {
|
|
|
1468
1572
|
1
|
|
1469
1573
|
],
|
|
1470
1574
|
"country": [
|
|
1471
|
-
|
|
1575
|
+
39
|
|
1472
1576
|
],
|
|
1473
1577
|
"location": [
|
|
1474
|
-
|
|
1578
|
+
71
|
|
1475
1579
|
],
|
|
1476
1580
|
"trainer": [
|
|
1477
1581
|
1
|
|
@@ -1480,31 +1584,31 @@ exports.default = {
|
|
|
1480
1584
|
1
|
|
1481
1585
|
],
|
|
1482
1586
|
"followStats": [
|
|
1483
|
-
|
|
1587
|
+
60
|
|
1484
1588
|
],
|
|
1485
1589
|
"mainSport": [
|
|
1486
|
-
|
|
1590
|
+
61
|
|
1487
1591
|
],
|
|
1488
1592
|
"mainSportLevel": [
|
|
1489
|
-
|
|
1593
|
+
64
|
|
1490
1594
|
],
|
|
1491
1595
|
"scores": [
|
|
1492
|
-
|
|
1596
|
+
62
|
|
1493
1597
|
],
|
|
1494
1598
|
"rankings": [
|
|
1495
|
-
|
|
1599
|
+
66
|
|
1496
1600
|
],
|
|
1497
1601
|
"allSports": [
|
|
1498
|
-
|
|
1602
|
+
61
|
|
1499
1603
|
],
|
|
1500
1604
|
"teams": [
|
|
1501
|
-
|
|
1605
|
+
67
|
|
1502
1606
|
],
|
|
1503
1607
|
"sponsorBrands": [
|
|
1504
|
-
|
|
1608
|
+
36
|
|
1505
1609
|
],
|
|
1506
1610
|
"competitions": [
|
|
1507
|
-
|
|
1611
|
+
70
|
|
1508
1612
|
],
|
|
1509
1613
|
"totalUpcomingCompetitions": [
|
|
1510
1614
|
17
|
|
@@ -1512,6 +1616,111 @@ exports.default = {
|
|
|
1512
1616
|
"totalPastCompetitions": [
|
|
1513
1617
|
17
|
|
1514
1618
|
],
|
|
1619
|
+
"profilePicture": [
|
|
1620
|
+
26
|
|
1621
|
+
],
|
|
1622
|
+
"cardPicture": [
|
|
1623
|
+
26
|
|
1624
|
+
],
|
|
1625
|
+
"__typename": [
|
|
1626
|
+
1
|
|
1627
|
+
]
|
|
1628
|
+
},
|
|
1629
|
+
"SponsorAthleteInvitation": {
|
|
1630
|
+
"_id": [
|
|
1631
|
+
1
|
|
1632
|
+
],
|
|
1633
|
+
"name": [
|
|
1634
|
+
1
|
|
1635
|
+
],
|
|
1636
|
+
"email": [
|
|
1637
|
+
1
|
|
1638
|
+
],
|
|
1639
|
+
"dateSent": [
|
|
1640
|
+
14
|
|
1641
|
+
],
|
|
1642
|
+
"sponsor": [
|
|
1643
|
+
53
|
|
1644
|
+
],
|
|
1645
|
+
"magicLink": [
|
|
1646
|
+
27
|
|
1647
|
+
],
|
|
1648
|
+
"brand": [
|
|
1649
|
+
36
|
|
1650
|
+
],
|
|
1651
|
+
"status": [
|
|
1652
|
+
1
|
|
1653
|
+
],
|
|
1654
|
+
"__typename": [
|
|
1655
|
+
1
|
|
1656
|
+
]
|
|
1657
|
+
},
|
|
1658
|
+
"CreateVerificationCodeDto": {
|
|
1659
|
+
"type": [
|
|
1660
|
+
1
|
|
1661
|
+
],
|
|
1662
|
+
"recipient": [
|
|
1663
|
+
1
|
|
1664
|
+
],
|
|
1665
|
+
"expiresTime": [
|
|
1666
|
+
17
|
|
1667
|
+
],
|
|
1668
|
+
"expiresUnit": [
|
|
1669
|
+
1
|
|
1670
|
+
],
|
|
1671
|
+
"data": [
|
|
1672
|
+
1
|
|
1673
|
+
],
|
|
1674
|
+
"__typename": [
|
|
1675
|
+
1
|
|
1676
|
+
]
|
|
1677
|
+
},
|
|
1678
|
+
"VerifyCodeDto": {
|
|
1679
|
+
"codeId": [
|
|
1680
|
+
1
|
|
1681
|
+
],
|
|
1682
|
+
"enteredCodeValue": [
|
|
1683
|
+
1
|
|
1684
|
+
],
|
|
1685
|
+
"type": [
|
|
1686
|
+
1
|
|
1687
|
+
],
|
|
1688
|
+
"__typename": [
|
|
1689
|
+
1
|
|
1690
|
+
]
|
|
1691
|
+
},
|
|
1692
|
+
"AthleteInvitationDto": {
|
|
1693
|
+
"email": [
|
|
1694
|
+
1
|
|
1695
|
+
],
|
|
1696
|
+
"name": [
|
|
1697
|
+
1
|
|
1698
|
+
],
|
|
1699
|
+
"sender": [
|
|
1700
|
+
1
|
|
1701
|
+
],
|
|
1702
|
+
"brandId": [
|
|
1703
|
+
1
|
|
1704
|
+
],
|
|
1705
|
+
"__typename": [
|
|
1706
|
+
1
|
|
1707
|
+
]
|
|
1708
|
+
},
|
|
1709
|
+
"InviteAthletesDto": {
|
|
1710
|
+
"language": [
|
|
1711
|
+
1
|
|
1712
|
+
],
|
|
1713
|
+
"invitations": [
|
|
1714
|
+
76
|
|
1715
|
+
],
|
|
1716
|
+
"__typename": [
|
|
1717
|
+
1
|
|
1718
|
+
]
|
|
1719
|
+
},
|
|
1720
|
+
"QualificationDto": {
|
|
1721
|
+
"type": [
|
|
1722
|
+
1
|
|
1723
|
+
],
|
|
1515
1724
|
"__typename": [
|
|
1516
1725
|
1
|
|
1517
1726
|
]
|
|
@@ -1643,6 +1852,20 @@ exports.default = {
|
|
|
1643
1852
|
1
|
|
1644
1853
|
]
|
|
1645
1854
|
},
|
|
1855
|
+
"RegisterUserDto": {
|
|
1856
|
+
"email": [
|
|
1857
|
+
1
|
|
1858
|
+
],
|
|
1859
|
+
"password": [
|
|
1860
|
+
1
|
|
1861
|
+
],
|
|
1862
|
+
"inviteCode": [
|
|
1863
|
+
1
|
|
1864
|
+
],
|
|
1865
|
+
"__typename": [
|
|
1866
|
+
1
|
|
1867
|
+
]
|
|
1868
|
+
},
|
|
1646
1869
|
"Query": {
|
|
1647
1870
|
"findTenantById": [
|
|
1648
1871
|
5,
|
|
@@ -1696,20 +1919,33 @@ exports.default = {
|
|
|
1696
1919
|
]
|
|
1697
1920
|
}
|
|
1698
1921
|
],
|
|
1922
|
+
"validateUserCredentials": [
|
|
1923
|
+
0,
|
|
1924
|
+
{
|
|
1925
|
+
"username": [
|
|
1926
|
+
1,
|
|
1927
|
+
"String!"
|
|
1928
|
+
],
|
|
1929
|
+
"password": [
|
|
1930
|
+
1,
|
|
1931
|
+
"String!"
|
|
1932
|
+
]
|
|
1933
|
+
}
|
|
1934
|
+
],
|
|
1699
1935
|
"getUploadUrl": [
|
|
1700
|
-
|
|
1936
|
+
31,
|
|
1701
1937
|
{
|
|
1702
1938
|
"input": [
|
|
1703
|
-
|
|
1939
|
+
89,
|
|
1704
1940
|
"AWSS3GetUploadDto!"
|
|
1705
1941
|
]
|
|
1706
1942
|
}
|
|
1707
1943
|
],
|
|
1708
1944
|
"industries": [
|
|
1709
|
-
|
|
1945
|
+
50
|
|
1710
1946
|
],
|
|
1711
1947
|
"findIndustryById": [
|
|
1712
|
-
|
|
1948
|
+
50,
|
|
1713
1949
|
{
|
|
1714
1950
|
"industryId": [
|
|
1715
1951
|
1,
|
|
@@ -1718,10 +1954,10 @@ exports.default = {
|
|
|
1718
1954
|
}
|
|
1719
1955
|
],
|
|
1720
1956
|
"brands": [
|
|
1721
|
-
|
|
1957
|
+
36
|
|
1722
1958
|
],
|
|
1723
1959
|
"getBrandByName": [
|
|
1724
|
-
|
|
1960
|
+
36,
|
|
1725
1961
|
{
|
|
1726
1962
|
"name": [
|
|
1727
1963
|
1,
|
|
@@ -1734,7 +1970,7 @@ exports.default = {
|
|
|
1734
1970
|
}
|
|
1735
1971
|
],
|
|
1736
1972
|
"getBrandTranslation": [
|
|
1737
|
-
|
|
1973
|
+
35,
|
|
1738
1974
|
{
|
|
1739
1975
|
"brandId": [
|
|
1740
1976
|
1,
|
|
@@ -1747,7 +1983,7 @@ exports.default = {
|
|
|
1747
1983
|
}
|
|
1748
1984
|
],
|
|
1749
1985
|
"existsValidSponsorForEmail": [
|
|
1750
|
-
|
|
1986
|
+
53,
|
|
1751
1987
|
{
|
|
1752
1988
|
"loginEmail": [
|
|
1753
1989
|
1,
|
|
@@ -1756,13 +1992,22 @@ exports.default = {
|
|
|
1756
1992
|
}
|
|
1757
1993
|
],
|
|
1758
1994
|
"sponsors": [
|
|
1759
|
-
|
|
1995
|
+
53
|
|
1996
|
+
],
|
|
1997
|
+
"findSponsorAthleteInvitation": [
|
|
1998
|
+
73,
|
|
1999
|
+
{
|
|
2000
|
+
"input": [
|
|
2001
|
+
90,
|
|
2002
|
+
"FindSponsorAthleteInvitationDto!"
|
|
2003
|
+
]
|
|
2004
|
+
}
|
|
1760
2005
|
],
|
|
1761
2006
|
"getAthletes": [
|
|
1762
|
-
|
|
2007
|
+
72
|
|
1763
2008
|
],
|
|
1764
2009
|
"findAthleteById": [
|
|
1765
|
-
|
|
2010
|
+
72,
|
|
1766
2011
|
{
|
|
1767
2012
|
"athleteId": [
|
|
1768
2013
|
1,
|
|
@@ -1770,11 +2015,32 @@ exports.default = {
|
|
|
1770
2015
|
]
|
|
1771
2016
|
}
|
|
1772
2017
|
],
|
|
2018
|
+
"findAthleteForUser": [
|
|
2019
|
+
72,
|
|
2020
|
+
{
|
|
2021
|
+
"loginEmail": [
|
|
2022
|
+
1,
|
|
2023
|
+
"String!"
|
|
2024
|
+
]
|
|
2025
|
+
}
|
|
2026
|
+
],
|
|
2027
|
+
"getRecommendedAthletes": [
|
|
2028
|
+
72,
|
|
2029
|
+
{
|
|
2030
|
+
"loginEmail": [
|
|
2031
|
+
1,
|
|
2032
|
+
"String!"
|
|
2033
|
+
]
|
|
2034
|
+
}
|
|
2035
|
+
],
|
|
2036
|
+
"getSponsorAthletesForTenant": [
|
|
2037
|
+
72
|
|
2038
|
+
],
|
|
1773
2039
|
"getSports": [
|
|
1774
|
-
|
|
2040
|
+
61
|
|
1775
2041
|
],
|
|
1776
2042
|
"findSportById": [
|
|
1777
|
-
|
|
2043
|
+
61,
|
|
1778
2044
|
{
|
|
1779
2045
|
"sportId": [
|
|
1780
2046
|
1,
|
|
@@ -1783,19 +2049,19 @@ exports.default = {
|
|
|
1783
2049
|
}
|
|
1784
2050
|
],
|
|
1785
2051
|
"getSportLevels": [
|
|
1786
|
-
|
|
2052
|
+
64
|
|
1787
2053
|
],
|
|
1788
2054
|
"getPublicSponsorships": [
|
|
1789
|
-
|
|
2055
|
+
59
|
|
1790
2056
|
],
|
|
1791
2057
|
"getTenantSponsorships": [
|
|
1792
|
-
|
|
2058
|
+
59
|
|
1793
2059
|
],
|
|
1794
2060
|
"getCountries": [
|
|
1795
|
-
|
|
2061
|
+
39
|
|
1796
2062
|
],
|
|
1797
2063
|
"getCountryStates": [
|
|
1798
|
-
|
|
2064
|
+
38,
|
|
1799
2065
|
{
|
|
1800
2066
|
"countryId": [
|
|
1801
2067
|
1,
|
|
@@ -1804,7 +2070,7 @@ exports.default = {
|
|
|
1804
2070
|
}
|
|
1805
2071
|
],
|
|
1806
2072
|
"getStateCities": [
|
|
1807
|
-
|
|
2073
|
+
37,
|
|
1808
2074
|
{
|
|
1809
2075
|
"stateId": [
|
|
1810
2076
|
1,
|
|
@@ -1813,7 +2079,7 @@ exports.default = {
|
|
|
1813
2079
|
}
|
|
1814
2080
|
],
|
|
1815
2081
|
"findCitiesStartingWith": [
|
|
1816
|
-
|
|
2082
|
+
37,
|
|
1817
2083
|
{
|
|
1818
2084
|
"text": [
|
|
1819
2085
|
1,
|
|
@@ -1821,6 +2087,37 @@ exports.default = {
|
|
|
1821
2087
|
]
|
|
1822
2088
|
}
|
|
1823
2089
|
],
|
|
2090
|
+
"findCityById": [
|
|
2091
|
+
37,
|
|
2092
|
+
{
|
|
2093
|
+
"cityId": [
|
|
2094
|
+
1,
|
|
2095
|
+
"String!"
|
|
2096
|
+
]
|
|
2097
|
+
}
|
|
2098
|
+
],
|
|
2099
|
+
"findVtxUser": [
|
|
2100
|
+
0,
|
|
2101
|
+
{
|
|
2102
|
+
"input": [
|
|
2103
|
+
91,
|
|
2104
|
+
"FindVtxUserDto!"
|
|
2105
|
+
]
|
|
2106
|
+
}
|
|
2107
|
+
],
|
|
2108
|
+
"validateUserCredentialsVtx": [
|
|
2109
|
+
0,
|
|
2110
|
+
{
|
|
2111
|
+
"username": [
|
|
2112
|
+
1,
|
|
2113
|
+
"String!"
|
|
2114
|
+
],
|
|
2115
|
+
"password": [
|
|
2116
|
+
1,
|
|
2117
|
+
"String!"
|
|
2118
|
+
]
|
|
2119
|
+
}
|
|
2120
|
+
],
|
|
1824
2121
|
"__typename": [
|
|
1825
2122
|
1
|
|
1826
2123
|
]
|
|
@@ -1836,12 +2133,31 @@ exports.default = {
|
|
|
1836
2133
|
1
|
|
1837
2134
|
]
|
|
1838
2135
|
},
|
|
2136
|
+
"FindSponsorAthleteInvitationDto": {
|
|
2137
|
+
"code": [
|
|
2138
|
+
1
|
|
2139
|
+
],
|
|
2140
|
+
"type": [
|
|
2141
|
+
1
|
|
2142
|
+
],
|
|
2143
|
+
"__typename": [
|
|
2144
|
+
1
|
|
2145
|
+
]
|
|
2146
|
+
},
|
|
2147
|
+
"FindVtxUserDto": {
|
|
2148
|
+
"loginEmail": [
|
|
2149
|
+
1
|
|
2150
|
+
],
|
|
2151
|
+
"__typename": [
|
|
2152
|
+
1
|
|
2153
|
+
]
|
|
2154
|
+
},
|
|
1839
2155
|
"Mutation": {
|
|
1840
2156
|
"registerNewDomainTenant": [
|
|
1841
2157
|
5,
|
|
1842
2158
|
{
|
|
1843
2159
|
"tenant": [
|
|
1844
|
-
|
|
2160
|
+
93,
|
|
1845
2161
|
"CreateTenantInput!"
|
|
1846
2162
|
]
|
|
1847
2163
|
}
|
|
@@ -1850,7 +2166,7 @@ exports.default = {
|
|
|
1850
2166
|
11,
|
|
1851
2167
|
{
|
|
1852
2168
|
"tenant": [
|
|
1853
|
-
|
|
2169
|
+
93,
|
|
1854
2170
|
"CreateTenantInput!"
|
|
1855
2171
|
]
|
|
1856
2172
|
}
|
|
@@ -1859,7 +2175,7 @@ exports.default = {
|
|
|
1859
2175
|
3,
|
|
1860
2176
|
{
|
|
1861
2177
|
"user": [
|
|
1862
|
-
|
|
2178
|
+
94,
|
|
1863
2179
|
"CreateActiveUserInput!"
|
|
1864
2180
|
]
|
|
1865
2181
|
}
|
|
@@ -1870,6 +2186,23 @@ exports.default = {
|
|
|
1870
2186
|
"email": [
|
|
1871
2187
|
1,
|
|
1872
2188
|
"String!"
|
|
2189
|
+
],
|
|
2190
|
+
"loginMethod": [
|
|
2191
|
+
1,
|
|
2192
|
+
"String!"
|
|
2193
|
+
]
|
|
2194
|
+
}
|
|
2195
|
+
],
|
|
2196
|
+
"loginUserFromCredentials": [
|
|
2197
|
+
3,
|
|
2198
|
+
{
|
|
2199
|
+
"username": [
|
|
2200
|
+
1,
|
|
2201
|
+
"String!"
|
|
2202
|
+
],
|
|
2203
|
+
"password": [
|
|
2204
|
+
1,
|
|
2205
|
+
"String!"
|
|
1873
2206
|
]
|
|
1874
2207
|
}
|
|
1875
2208
|
],
|
|
@@ -1877,7 +2210,7 @@ exports.default = {
|
|
|
1877
2210
|
0,
|
|
1878
2211
|
{
|
|
1879
2212
|
"input": [
|
|
1880
|
-
|
|
2213
|
+
95,
|
|
1881
2214
|
"RegisterUserToDomainFromEmailInput!"
|
|
1882
2215
|
]
|
|
1883
2216
|
}
|
|
@@ -1886,25 +2219,25 @@ exports.default = {
|
|
|
1886
2219
|
8,
|
|
1887
2220
|
{
|
|
1888
2221
|
"dto": [
|
|
1889
|
-
|
|
2222
|
+
96,
|
|
1890
2223
|
"RefreshTokenInput!"
|
|
1891
2224
|
]
|
|
1892
2225
|
}
|
|
1893
2226
|
],
|
|
1894
2227
|
"deleteUploadedUseTypeFile": [
|
|
1895
|
-
|
|
2228
|
+
32,
|
|
1896
2229
|
{
|
|
1897
2230
|
"input": [
|
|
1898
|
-
|
|
2231
|
+
97,
|
|
1899
2232
|
"AWSS3DeleteUseTypeFileDto!"
|
|
1900
2233
|
]
|
|
1901
2234
|
}
|
|
1902
2235
|
],
|
|
1903
2236
|
"deleteUploadedBucketFile": [
|
|
1904
|
-
|
|
2237
|
+
32,
|
|
1905
2238
|
{
|
|
1906
2239
|
"input": [
|
|
1907
|
-
|
|
2240
|
+
98,
|
|
1908
2241
|
"AWSS3DeleteBucketFileDto!"
|
|
1909
2242
|
]
|
|
1910
2243
|
}
|
|
@@ -1913,119 +2246,177 @@ exports.default = {
|
|
|
1913
2246
|
26,
|
|
1914
2247
|
{
|
|
1915
2248
|
"input": [
|
|
1916
|
-
|
|
2249
|
+
99,
|
|
1917
2250
|
"AWSS3UploadedFileDto!"
|
|
1918
2251
|
]
|
|
1919
2252
|
}
|
|
1920
2253
|
],
|
|
1921
2254
|
"createIndustry": [
|
|
1922
|
-
|
|
2255
|
+
50,
|
|
1923
2256
|
{
|
|
1924
2257
|
"input": [
|
|
1925
|
-
|
|
2258
|
+
100,
|
|
1926
2259
|
"CreateIndustryDto!"
|
|
1927
2260
|
]
|
|
1928
2261
|
}
|
|
1929
2262
|
],
|
|
1930
2263
|
"createBrand": [
|
|
1931
|
-
|
|
2264
|
+
36,
|
|
1932
2265
|
{
|
|
1933
2266
|
"input": [
|
|
1934
|
-
|
|
2267
|
+
101,
|
|
1935
2268
|
"CreateBrandDto!"
|
|
1936
2269
|
]
|
|
1937
2270
|
}
|
|
1938
2271
|
],
|
|
1939
2272
|
"registerSponsor": [
|
|
1940
|
-
|
|
2273
|
+
53,
|
|
1941
2274
|
{
|
|
1942
2275
|
"input": [
|
|
1943
|
-
|
|
2276
|
+
103,
|
|
1944
2277
|
"RegisterSponsorInput!"
|
|
1945
2278
|
]
|
|
1946
2279
|
}
|
|
1947
2280
|
],
|
|
1948
2281
|
"createSponsor": [
|
|
1949
|
-
|
|
2282
|
+
53,
|
|
1950
2283
|
{
|
|
1951
2284
|
"input": [
|
|
1952
|
-
|
|
2285
|
+
104,
|
|
1953
2286
|
"CreateSponsorDto!"
|
|
1954
2287
|
]
|
|
1955
2288
|
}
|
|
1956
2289
|
],
|
|
2290
|
+
"sendAthleteInvitations": [
|
|
2291
|
+
73,
|
|
2292
|
+
{
|
|
2293
|
+
"input": [
|
|
2294
|
+
77,
|
|
2295
|
+
"InviteAthletesDto!"
|
|
2296
|
+
]
|
|
2297
|
+
}
|
|
2298
|
+
],
|
|
1957
2299
|
"registerAthlete": [
|
|
1958
|
-
|
|
2300
|
+
72,
|
|
1959
2301
|
{
|
|
1960
2302
|
"input": [
|
|
1961
|
-
|
|
2303
|
+
105,
|
|
1962
2304
|
"RegisterAthleteDto!"
|
|
1963
2305
|
]
|
|
1964
2306
|
}
|
|
1965
2307
|
],
|
|
1966
2308
|
"createSport": [
|
|
1967
|
-
|
|
2309
|
+
61,
|
|
1968
2310
|
{
|
|
1969
2311
|
"input": [
|
|
1970
|
-
|
|
2312
|
+
106,
|
|
1971
2313
|
"CreateSportDto!"
|
|
1972
2314
|
]
|
|
1973
2315
|
}
|
|
1974
2316
|
],
|
|
1975
2317
|
"updateSport": [
|
|
1976
|
-
|
|
2318
|
+
61,
|
|
1977
2319
|
{
|
|
1978
2320
|
"input": [
|
|
1979
|
-
|
|
2321
|
+
107,
|
|
1980
2322
|
"UpdateSportDto!"
|
|
1981
2323
|
]
|
|
1982
2324
|
}
|
|
1983
2325
|
],
|
|
1984
2326
|
"createSportLevel": [
|
|
1985
|
-
|
|
2327
|
+
64,
|
|
1986
2328
|
{
|
|
1987
2329
|
"input": [
|
|
1988
|
-
|
|
2330
|
+
108,
|
|
1989
2331
|
"CreateSportLevelDto!"
|
|
1990
2332
|
]
|
|
1991
2333
|
}
|
|
1992
2334
|
],
|
|
1993
2335
|
"createSponsorship": [
|
|
1994
|
-
|
|
2336
|
+
59,
|
|
1995
2337
|
{
|
|
1996
2338
|
"input": [
|
|
1997
|
-
|
|
2339
|
+
110,
|
|
1998
2340
|
"CreateSponsorshipDto!"
|
|
1999
2341
|
]
|
|
2000
2342
|
}
|
|
2001
2343
|
],
|
|
2002
2344
|
"createCountry": [
|
|
2003
|
-
|
|
2345
|
+
39,
|
|
2004
2346
|
{
|
|
2005
2347
|
"input": [
|
|
2006
|
-
|
|
2348
|
+
117,
|
|
2007
2349
|
"CreateCountryDto!"
|
|
2008
2350
|
]
|
|
2009
2351
|
}
|
|
2010
2352
|
],
|
|
2011
2353
|
"createState": [
|
|
2012
|
-
|
|
2354
|
+
38,
|
|
2013
2355
|
{
|
|
2014
2356
|
"input": [
|
|
2015
|
-
|
|
2357
|
+
118,
|
|
2016
2358
|
"CreateStateDto!"
|
|
2017
2359
|
]
|
|
2018
2360
|
}
|
|
2019
2361
|
],
|
|
2020
2362
|
"createCity": [
|
|
2021
|
-
|
|
2363
|
+
37,
|
|
2022
2364
|
{
|
|
2023
2365
|
"input": [
|
|
2024
|
-
|
|
2366
|
+
119,
|
|
2025
2367
|
"CreateCityDto!"
|
|
2026
2368
|
]
|
|
2027
2369
|
}
|
|
2028
2370
|
],
|
|
2371
|
+
"preRegisterAthleteUser": [
|
|
2372
|
+
28,
|
|
2373
|
+
{
|
|
2374
|
+
"input": [
|
|
2375
|
+
87,
|
|
2376
|
+
"RegisterUserDto!"
|
|
2377
|
+
]
|
|
2378
|
+
}
|
|
2379
|
+
],
|
|
2380
|
+
"confirmAthleteUserRegistrationAndLogin": [
|
|
2381
|
+
3,
|
|
2382
|
+
{
|
|
2383
|
+
"input": [
|
|
2384
|
+
75,
|
|
2385
|
+
"VerifyCodeDto!"
|
|
2386
|
+
]
|
|
2387
|
+
}
|
|
2388
|
+
],
|
|
2389
|
+
"confirmAthleteUserRegistration": [
|
|
2390
|
+
0,
|
|
2391
|
+
{
|
|
2392
|
+
"input": [
|
|
2393
|
+
75,
|
|
2394
|
+
"VerifyCodeDto!"
|
|
2395
|
+
]
|
|
2396
|
+
}
|
|
2397
|
+
],
|
|
2398
|
+
"registerAthleteUser": [
|
|
2399
|
+
0,
|
|
2400
|
+
{
|
|
2401
|
+
"input": [
|
|
2402
|
+
87,
|
|
2403
|
+
"RegisterUserDto!"
|
|
2404
|
+
]
|
|
2405
|
+
}
|
|
2406
|
+
],
|
|
2407
|
+
"loginUserFromCredentialsVtx": [
|
|
2408
|
+
3,
|
|
2409
|
+
{
|
|
2410
|
+
"username": [
|
|
2411
|
+
1,
|
|
2412
|
+
"String!"
|
|
2413
|
+
],
|
|
2414
|
+
"password": [
|
|
2415
|
+
1,
|
|
2416
|
+
"String!"
|
|
2417
|
+
]
|
|
2418
|
+
}
|
|
2419
|
+
],
|
|
2029
2420
|
"__typename": [
|
|
2030
2421
|
1
|
|
2031
2422
|
]
|
|
@@ -2054,6 +2445,9 @@ exports.default = {
|
|
|
2054
2445
|
"password": [
|
|
2055
2446
|
1
|
|
2056
2447
|
],
|
|
2448
|
+
"loginMethod": [
|
|
2449
|
+
1
|
|
2450
|
+
],
|
|
2057
2451
|
"__typename": [
|
|
2058
2452
|
1
|
|
2059
2453
|
]
|
|
@@ -2150,13 +2544,13 @@ exports.default = {
|
|
|
2150
2544
|
1
|
|
2151
2545
|
],
|
|
2152
2546
|
"logo": [
|
|
2153
|
-
|
|
2547
|
+
99
|
|
2154
2548
|
],
|
|
2155
2549
|
"banner": [
|
|
2156
|
-
|
|
2550
|
+
99
|
|
2157
2551
|
],
|
|
2158
2552
|
"translations": [
|
|
2159
|
-
|
|
2553
|
+
102
|
|
2160
2554
|
],
|
|
2161
2555
|
"__typename": [
|
|
2162
2556
|
1
|
|
@@ -2179,10 +2573,10 @@ exports.default = {
|
|
|
2179
2573
|
1
|
|
2180
2574
|
],
|
|
2181
2575
|
"logo": [
|
|
2182
|
-
|
|
2576
|
+
99
|
|
2183
2577
|
],
|
|
2184
2578
|
"banner": [
|
|
2185
|
-
|
|
2579
|
+
99
|
|
2186
2580
|
],
|
|
2187
2581
|
"__typename": [
|
|
2188
2582
|
1
|
|
@@ -2262,6 +2656,15 @@ exports.default = {
|
|
|
2262
2656
|
"dateOfBirth": [
|
|
2263
2657
|
14
|
|
2264
2658
|
],
|
|
2659
|
+
"lgbt": [
|
|
2660
|
+
2
|
|
2661
|
+
],
|
|
2662
|
+
"trainer": [
|
|
2663
|
+
1
|
|
2664
|
+
],
|
|
2665
|
+
"trainerUrl": [
|
|
2666
|
+
1
|
|
2667
|
+
],
|
|
2265
2668
|
"team": [
|
|
2266
2669
|
1
|
|
2267
2670
|
],
|
|
@@ -2274,6 +2677,12 @@ exports.default = {
|
|
|
2274
2677
|
"mainSportLevel": [
|
|
2275
2678
|
1
|
|
2276
2679
|
],
|
|
2680
|
+
"profilePicture": [
|
|
2681
|
+
99
|
|
2682
|
+
],
|
|
2683
|
+
"cardPicture": [
|
|
2684
|
+
99
|
|
2685
|
+
],
|
|
2277
2686
|
"__typename": [
|
|
2278
2687
|
1
|
|
2279
2688
|
]
|
|
@@ -2308,7 +2717,7 @@ exports.default = {
|
|
|
2308
2717
|
17
|
|
2309
2718
|
],
|
|
2310
2719
|
"translations": [
|
|
2311
|
-
|
|
2720
|
+
109
|
|
2312
2721
|
],
|
|
2313
2722
|
"__typename": [
|
|
2314
2723
|
1
|
|
@@ -2342,10 +2751,10 @@ exports.default = {
|
|
|
2342
2751
|
17
|
|
2343
2752
|
],
|
|
2344
2753
|
"banner": [
|
|
2345
|
-
|
|
2754
|
+
99
|
|
2346
2755
|
],
|
|
2347
2756
|
"criteria": [
|
|
2348
|
-
|
|
2757
|
+
111
|
|
2349
2758
|
],
|
|
2350
2759
|
"deadline": [
|
|
2351
2760
|
14
|
|
@@ -2354,13 +2763,13 @@ exports.default = {
|
|
|
2354
2763
|
14
|
|
2355
2764
|
],
|
|
2356
2765
|
"duration": [
|
|
2357
|
-
|
|
2766
|
+
113
|
|
2358
2767
|
],
|
|
2359
2768
|
"sponsorshipItems": [
|
|
2360
|
-
|
|
2769
|
+
114
|
|
2361
2770
|
],
|
|
2362
2771
|
"commitments": [
|
|
2363
|
-
|
|
2772
|
+
115
|
|
2364
2773
|
],
|
|
2365
2774
|
"terms": [
|
|
2366
2775
|
1
|
|
@@ -2372,7 +2781,7 @@ exports.default = {
|
|
|
2372
2781
|
2
|
|
2373
2782
|
],
|
|
2374
2783
|
"translations": [
|
|
2375
|
-
|
|
2784
|
+
116
|
|
2376
2785
|
],
|
|
2377
2786
|
"__typename": [
|
|
2378
2787
|
1
|
|
@@ -2385,16 +2794,37 @@ exports.default = {
|
|
|
2385
2794
|
"label": [
|
|
2386
2795
|
1
|
|
2387
2796
|
],
|
|
2388
|
-
"
|
|
2389
|
-
|
|
2797
|
+
"qualificationsBag": [
|
|
2798
|
+
112
|
|
2390
2799
|
],
|
|
2391
2800
|
"__typename": [
|
|
2392
2801
|
1
|
|
2393
2802
|
]
|
|
2394
2803
|
},
|
|
2395
|
-
"
|
|
2396
|
-
"
|
|
2397
|
-
|
|
2804
|
+
"QualificationsBagDto": {
|
|
2805
|
+
"ageQualifications": [
|
|
2806
|
+
79
|
|
2807
|
+
],
|
|
2808
|
+
"genderQualifications": [
|
|
2809
|
+
80
|
|
2810
|
+
],
|
|
2811
|
+
"scoreQualifications": [
|
|
2812
|
+
82
|
|
2813
|
+
],
|
|
2814
|
+
"locationQualifications": [
|
|
2815
|
+
83
|
|
2816
|
+
],
|
|
2817
|
+
"nationalityQualifications": [
|
|
2818
|
+
81
|
|
2819
|
+
],
|
|
2820
|
+
"distanceQualifications": [
|
|
2821
|
+
84
|
|
2822
|
+
],
|
|
2823
|
+
"sportsQualifications": [
|
|
2824
|
+
85
|
|
2825
|
+
],
|
|
2826
|
+
"levelQualifications": [
|
|
2827
|
+
86
|
|
2398
2828
|
],
|
|
2399
2829
|
"__typename": [
|
|
2400
2830
|
1
|
|
@@ -2471,7 +2901,7 @@ exports.default = {
|
|
|
2471
2901
|
1
|
|
2472
2902
|
],
|
|
2473
2903
|
"banner": [
|
|
2474
|
-
|
|
2904
|
+
99
|
|
2475
2905
|
],
|
|
2476
2906
|
"terms": [
|
|
2477
2907
|
1
|