@vertikalx/vtx-backend-client 1.0.0-dev.82 → 1.0.0-dev.83

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 (111) hide show
  1. package/libs/vtx-backend-client/package.json +16 -0
  2. package/libs/vtx-backend-client/src/api/api-call-headers.js.map +1 -0
  3. package/libs/vtx-backend-client/src/api/backend-response.js.map +1 -0
  4. package/libs/vtx-backend-client/src/api/domains.js.map +1 -0
  5. package/libs/vtx-backend-client/src/api/response-builder.js.map +1 -0
  6. package/libs/vtx-backend-client/src/api/types.js.map +1 -0
  7. package/libs/vtx-backend-client/src/api/vtx-apikey-api.js.map +1 -0
  8. package/{src → libs/vtx-backend-client/src}/api/vtx-base-api.d.ts +15 -1
  9. package/{src → libs/vtx-backend-client/src}/api/vtx-base-api.js +1057 -0
  10. package/libs/vtx-backend-client/src/api/vtx-base-api.js.map +1 -0
  11. package/libs/vtx-backend-client/src/api/vtx-mobile-api.js.map +1 -0
  12. package/libs/vtx-backend-client/src/api/vtx-web-browser-api.js.map +1 -0
  13. package/libs/vtx-backend-client/src/api/vtx-web-server-api.js.map +1 -0
  14. package/libs/vtx-backend-client/src/client/index.js.map +1 -0
  15. package/libs/vtx-backend-client/src/client/runtime/batcher.js.map +1 -0
  16. package/libs/vtx-backend-client/src/client/runtime/createClient.js.map +1 -0
  17. package/libs/vtx-backend-client/src/client/runtime/error.js.map +1 -0
  18. package/libs/vtx-backend-client/src/client/runtime/fetcher.js.map +1 -0
  19. package/libs/vtx-backend-client/src/client/runtime/generateGraphqlOperation.js.map +1 -0
  20. package/libs/vtx-backend-client/src/client/runtime/index.js.map +1 -0
  21. package/libs/vtx-backend-client/src/client/runtime/linkTypeMap.js.map +1 -0
  22. package/libs/vtx-backend-client/src/client/runtime/typeSelection.js.map +1 -0
  23. package/libs/vtx-backend-client/src/client/runtime/types.js.map +1 -0
  24. package/{src → libs/vtx-backend-client/src}/client/schema.d.ts +531 -8
  25. package/{src → libs/vtx-backend-client/src}/client/schema.js +108 -2
  26. package/libs/vtx-backend-client/src/client/schema.js.map +1 -0
  27. package/{src → libs/vtx-backend-client/src}/client/types.d.ts +288 -9
  28. package/{src → libs/vtx-backend-client/src}/client/types.js +1035 -311
  29. package/libs/vtx-backend-client/src/client/types.js.map +1 -0
  30. package/libs/vtx-backend-client/src/index.js.map +1 -0
  31. package/package.json +1 -1
  32. package/src/api/dto/edit-picture.dto.d.ts +5 -0
  33. package/src/api/dto/edit-picture.dto.js +31 -0
  34. package/src/api/dto/edit-picture.dto.js.map +1 -0
  35. package/src/api/types/add-values-response.type.d.ts +7 -0
  36. package/src/api/types/add-values-response.type.js +42 -0
  37. package/src/api/types/add-values-response.type.js.map +1 -0
  38. package/src/api/types/delete-single-value-response.type.d.ts +6 -0
  39. package/src/api/types/delete-single-value-response.type.js +36 -0
  40. package/src/api/types/delete-single-value-response.type.js.map +1 -0
  41. package/src/api/types/edit-picture-response.type.d.ts +7 -0
  42. package/src/api/types/edit-picture-response.type.js +39 -0
  43. package/src/api/types/edit-picture-response.type.js.map +1 -0
  44. package/src/api/types/error.type.d.ts +4 -0
  45. package/src/api/types/error.type.js +28 -0
  46. package/src/api/types/error.type.js.map +1 -0
  47. package/src/client/schema.graphql +274 -9
  48. package/tsconfig.lib.tsbuildinfo +1 -1
  49. package/src/api/api-call-headers.js.map +0 -1
  50. package/src/api/backend-response.js.map +0 -1
  51. package/src/api/domains.js.map +0 -1
  52. package/src/api/response-builder.js.map +0 -1
  53. package/src/api/types.js.map +0 -1
  54. package/src/api/vtx-apikey-api.js.map +0 -1
  55. package/src/api/vtx-base-api.js.map +0 -1
  56. package/src/api/vtx-mobile-api.js.map +0 -1
  57. package/src/api/vtx-web-browser-api.js.map +0 -1
  58. package/src/api/vtx-web-server-api.js.map +0 -1
  59. package/src/client/index.js.map +0 -1
  60. package/src/client/runtime/batcher.js.map +0 -1
  61. package/src/client/runtime/createClient.js.map +0 -1
  62. package/src/client/runtime/error.js.map +0 -1
  63. package/src/client/runtime/fetcher.js.map +0 -1
  64. package/src/client/runtime/generateGraphqlOperation.js.map +0 -1
  65. package/src/client/runtime/index.js.map +0 -1
  66. package/src/client/runtime/linkTypeMap.js.map +0 -1
  67. package/src/client/runtime/typeSelection.js.map +0 -1
  68. package/src/client/runtime/types.js.map +0 -1
  69. package/src/client/schema.js.map +0 -1
  70. package/src/client/types.js.map +0 -1
  71. package/src/index.js.map +0 -1
  72. /package/{src → libs/vtx-backend-client/src}/api/api-call-headers.d.ts +0 -0
  73. /package/{src → libs/vtx-backend-client/src}/api/api-call-headers.js +0 -0
  74. /package/{src → libs/vtx-backend-client/src}/api/backend-response.d.ts +0 -0
  75. /package/{src → libs/vtx-backend-client/src}/api/backend-response.js +0 -0
  76. /package/{src → libs/vtx-backend-client/src}/api/domains.d.ts +0 -0
  77. /package/{src → libs/vtx-backend-client/src}/api/domains.js +0 -0
  78. /package/{src → libs/vtx-backend-client/src}/api/response-builder.d.ts +0 -0
  79. /package/{src → libs/vtx-backend-client/src}/api/response-builder.js +0 -0
  80. /package/{src → libs/vtx-backend-client/src}/api/types.d.ts +0 -0
  81. /package/{src → libs/vtx-backend-client/src}/api/types.js +0 -0
  82. /package/{src → libs/vtx-backend-client/src}/api/vtx-apikey-api.d.ts +0 -0
  83. /package/{src → libs/vtx-backend-client/src}/api/vtx-apikey-api.js +0 -0
  84. /package/{src → libs/vtx-backend-client/src}/api/vtx-mobile-api.d.ts +0 -0
  85. /package/{src → libs/vtx-backend-client/src}/api/vtx-mobile-api.js +0 -0
  86. /package/{src → libs/vtx-backend-client/src}/api/vtx-web-browser-api.d.ts +0 -0
  87. /package/{src → libs/vtx-backend-client/src}/api/vtx-web-browser-api.js +0 -0
  88. /package/{src → libs/vtx-backend-client/src}/api/vtx-web-server-api.d.ts +0 -0
  89. /package/{src → libs/vtx-backend-client/src}/api/vtx-web-server-api.js +0 -0
  90. /package/{src → libs/vtx-backend-client/src}/client/index.d.ts +0 -0
  91. /package/{src → libs/vtx-backend-client/src}/client/index.js +0 -0
  92. /package/{src → libs/vtx-backend-client/src}/client/runtime/batcher.d.ts +0 -0
  93. /package/{src → libs/vtx-backend-client/src}/client/runtime/batcher.js +0 -0
  94. /package/{src → libs/vtx-backend-client/src}/client/runtime/createClient.d.ts +0 -0
  95. /package/{src → libs/vtx-backend-client/src}/client/runtime/createClient.js +0 -0
  96. /package/{src → libs/vtx-backend-client/src}/client/runtime/error.d.ts +0 -0
  97. /package/{src → libs/vtx-backend-client/src}/client/runtime/error.js +0 -0
  98. /package/{src → libs/vtx-backend-client/src}/client/runtime/fetcher.d.ts +0 -0
  99. /package/{src → libs/vtx-backend-client/src}/client/runtime/fetcher.js +0 -0
  100. /package/{src → libs/vtx-backend-client/src}/client/runtime/generateGraphqlOperation.d.ts +0 -0
  101. /package/{src → libs/vtx-backend-client/src}/client/runtime/generateGraphqlOperation.js +0 -0
  102. /package/{src → libs/vtx-backend-client/src}/client/runtime/index.d.ts +0 -0
  103. /package/{src → libs/vtx-backend-client/src}/client/runtime/index.js +0 -0
  104. /package/{src → libs/vtx-backend-client/src}/client/runtime/linkTypeMap.d.ts +0 -0
  105. /package/{src → libs/vtx-backend-client/src}/client/runtime/linkTypeMap.js +0 -0
  106. /package/{src → libs/vtx-backend-client/src}/client/runtime/typeSelection.d.ts +0 -0
  107. /package/{src → libs/vtx-backend-client/src}/client/runtime/typeSelection.js +0 -0
  108. /package/{src → libs/vtx-backend-client/src}/client/runtime/types.d.ts +0 -0
  109. /package/{src → libs/vtx-backend-client/src}/client/runtime/types.js +0 -0
  110. /package/{src → libs/vtx-backend-client/src}/index.d.ts +0 -0
  111. /package/{src → libs/vtx-backend-client/src}/index.js +0 -0
@@ -5,7 +5,8 @@ exports.default = {
5
5
  1,
6
6
  2,
7
7
  14,
8
- 17
8
+ 17,
9
+ 106
9
10
  ],
10
11
  "types": {
11
12
  "User": {
@@ -685,6 +686,55 @@ exports.default = {
685
686
  1
686
687
  ]
687
688
  },
689
+ "DatabaseFile": {
690
+ "_id": [
691
+ 1
692
+ ],
693
+ "identifier": [
694
+ 1
695
+ ],
696
+ "version": [
697
+ 1
698
+ ],
699
+ "contentType": [
700
+ 1
701
+ ],
702
+ "updated": [
703
+ 14
704
+ ],
705
+ "created": [
706
+ 14
707
+ ],
708
+ "__typename": [
709
+ 1
710
+ ]
711
+ },
712
+ "TextDatabaseFile": {
713
+ "_id": [
714
+ 1
715
+ ],
716
+ "identifier": [
717
+ 1
718
+ ],
719
+ "version": [
720
+ 1
721
+ ],
722
+ "contentType": [
723
+ 1
724
+ ],
725
+ "updated": [
726
+ 14
727
+ ],
728
+ "created": [
729
+ 14
730
+ ],
731
+ "content": [
732
+ 1
733
+ ],
734
+ "__typename": [
735
+ 1
736
+ ]
737
+ },
688
738
  "CodeVerificationResponse": {
689
739
  "result": [
690
740
  1
@@ -774,13 +824,13 @@ exports.default = {
774
824
  26
775
825
  ],
776
826
  "stats": [
777
- 34
827
+ 36
778
828
  ],
779
829
  "operatorIds": [
780
830
  1
781
831
  ],
782
832
  "translations": [
783
- 35
833
+ 37
784
834
  ],
785
835
  "__typename": [
786
836
  1
@@ -797,7 +847,7 @@ exports.default = {
797
847
  1
798
848
  ],
799
849
  "state": [
800
- 38
850
+ 40
801
851
  ],
802
852
  "latitude": [
803
853
  17
@@ -820,10 +870,10 @@ exports.default = {
820
870
  1
821
871
  ],
822
872
  "country": [
823
- 39
873
+ 41
824
874
  ],
825
875
  "cities": [
826
- 37
876
+ 39
827
877
  ],
828
878
  "__typename": [
829
879
  1
@@ -837,7 +887,7 @@ exports.default = {
837
887
  1
838
888
  ],
839
889
  "states": [
840
- 38
890
+ 40
841
891
  ],
842
892
  "__typename": [
843
893
  1
@@ -896,13 +946,13 @@ exports.default = {
896
946
  1
897
947
  ],
898
948
  "countries": [
899
- 39
949
+ 41
900
950
  ],
901
951
  "states": [
902
- 38
952
+ 40
903
953
  ],
904
954
  "cities": [
905
- 37
955
+ 39
906
956
  ],
907
957
  "__typename": [
908
958
  1
@@ -916,7 +966,7 @@ exports.default = {
916
966
  1
917
967
  ],
918
968
  "countries": [
919
- 39
969
+ 41
920
970
  ],
921
971
  "__typename": [
922
972
  1
@@ -978,7 +1028,7 @@ exports.default = {
978
1028
  1
979
1029
  ],
980
1030
  "qualifications": [
981
- 49
1031
+ 51
982
1032
  ],
983
1033
  "__typename": [
984
1034
  1
@@ -986,28 +1036,28 @@ exports.default = {
986
1036
  },
987
1037
  "QualificationTypeUnion": {
988
1038
  "on_AgeQualification": [
989
- 40
1039
+ 42
990
1040
  ],
991
1041
  "on_GenderQualification": [
992
- 41
1042
+ 43
993
1043
  ],
994
1044
  "on_ScoreQualification": [
995
- 42
1045
+ 44
996
1046
  ],
997
1047
  "on_LocationQualification": [
998
- 43
1048
+ 45
999
1049
  ],
1000
1050
  "on_NationalityQualification": [
1001
- 44
1051
+ 46
1002
1052
  ],
1003
1053
  "on_DistanceQualification": [
1004
- 45
1054
+ 47
1005
1055
  ],
1006
1056
  "on_SportsQualification": [
1007
- 46
1057
+ 48
1008
1058
  ],
1009
1059
  "on_SportsLevelQualification": [
1010
- 47
1060
+ 49
1011
1061
  ],
1012
1062
  "__typename": [
1013
1063
  1
@@ -1070,13 +1120,13 @@ exports.default = {
1070
1120
  26
1071
1121
  ],
1072
1122
  "stats": [
1073
- 34
1123
+ 36
1074
1124
  ],
1075
1125
  "operatorIds": [
1076
1126
  1
1077
1127
  ],
1078
1128
  "translations": [
1079
- 35
1129
+ 37
1080
1130
  ],
1081
1131
  "sponsorBrandId": [
1082
1132
  1
@@ -1105,16 +1155,16 @@ exports.default = {
1105
1155
  5
1106
1156
  ],
1107
1157
  "industry": [
1108
- 50
1158
+ 52
1109
1159
  ],
1110
1160
  "stats": [
1111
- 51
1161
+ 53
1112
1162
  ],
1113
1163
  "brands": [
1114
- 52
1164
+ 54
1115
1165
  ],
1116
1166
  "sponsorships": [
1117
- 59
1167
+ 61
1118
1168
  ],
1119
1169
  "approved": [
1120
1170
  2
@@ -1258,13 +1308,13 @@ exports.default = {
1258
1308
  17
1259
1309
  ],
1260
1310
  "brand": [
1261
- 36
1311
+ 38
1262
1312
  ],
1263
1313
  "banner": [
1264
1314
  26
1265
1315
  ],
1266
1316
  "criteria": [
1267
- 48
1317
+ 50
1268
1318
  ],
1269
1319
  "deadline": [
1270
1320
  14
@@ -1273,22 +1323,22 @@ exports.default = {
1273
1323
  14
1274
1324
  ],
1275
1325
  "duration": [
1276
- 56
1326
+ 58
1277
1327
  ],
1278
1328
  "sponsor": [
1279
- 53
1329
+ 55
1280
1330
  ],
1281
1331
  "sponsorshipItems": [
1282
- 54
1332
+ 56
1283
1333
  ],
1284
1334
  "commitments": [
1285
- 55
1335
+ 57
1286
1336
  ],
1287
1337
  "terms": [
1288
1338
  1
1289
1339
  ],
1290
1340
  "stats": [
1291
- 57
1341
+ 59
1292
1342
  ],
1293
1343
  "isPrivate": [
1294
1344
  2
@@ -1300,7 +1350,7 @@ exports.default = {
1300
1350
  2
1301
1351
  ],
1302
1352
  "translations": [
1303
- 58
1353
+ 60
1304
1354
  ],
1305
1355
  "__typename": [
1306
1356
  1
@@ -1376,7 +1426,7 @@ exports.default = {
1376
1426
  17
1377
1427
  ],
1378
1428
  "translations": [
1379
- 63
1429
+ 65
1380
1430
  ],
1381
1431
  "__typename": [
1382
1432
  1
@@ -1404,16 +1454,16 @@ exports.default = {
1404
1454
  },
1405
1455
  "AthleteRankings": {
1406
1456
  "worldRanking": [
1407
- 65
1457
+ 67
1408
1458
  ],
1409
1459
  "countryRanking": [
1410
- 65
1460
+ 67
1411
1461
  ],
1412
1462
  "stateRanking": [
1413
- 65
1463
+ 67
1414
1464
  ],
1415
1465
  "cityRanking": [
1416
- 65
1466
+ 67
1417
1467
  ],
1418
1468
  "__typename": [
1419
1469
  1
@@ -1430,7 +1480,7 @@ exports.default = {
1430
1480
  1
1431
1481
  ],
1432
1482
  "sports": [
1433
- 61
1483
+ 63
1434
1484
  ],
1435
1485
  "approved": [
1436
1486
  2
@@ -1474,7 +1524,7 @@ exports.default = {
1474
1524
  17
1475
1525
  ],
1476
1526
  "city": [
1477
- 37
1527
+ 39
1478
1528
  ],
1479
1529
  "__typename": [
1480
1530
  1
@@ -1488,7 +1538,7 @@ exports.default = {
1488
1538
  1
1489
1539
  ],
1490
1540
  "mainSport": [
1491
- 61
1541
+ 63
1492
1542
  ],
1493
1543
  "eventWebSite": [
1494
1544
  1
@@ -1506,7 +1556,7 @@ exports.default = {
1506
1556
  26
1507
1557
  ],
1508
1558
  "location": [
1509
- 68
1559
+ 70
1510
1560
  ],
1511
1561
  "__typename": [
1512
1562
  1
@@ -1563,7 +1613,7 @@ exports.default = {
1563
1613
  17
1564
1614
  ],
1565
1615
  "items": [
1566
- 71
1616
+ 73
1567
1617
  ],
1568
1618
  "__typename": [
1569
1619
  1
@@ -1574,7 +1624,7 @@ exports.default = {
1574
1624
  1
1575
1625
  ],
1576
1626
  "event": [
1577
- 69
1627
+ 71
1578
1628
  ],
1579
1629
  "participationDate": [
1580
1630
  14
@@ -1583,13 +1633,13 @@ exports.default = {
1583
1633
  1
1584
1634
  ],
1585
1635
  "result": [
1586
- 70
1636
+ 72
1587
1637
  ],
1588
1638
  "fundRaisingCampaignIds": [
1589
1639
  1
1590
1640
  ],
1591
1641
  "budget": [
1592
- 72
1642
+ 74
1593
1643
  ],
1594
1644
  "__typename": [
1595
1645
  1
@@ -1618,10 +1668,10 @@ exports.default = {
1618
1668
  26
1619
1669
  ],
1620
1670
  "country": [
1621
- 39
1671
+ 41
1622
1672
  ],
1623
1673
  "sport": [
1624
- 61
1674
+ 63
1625
1675
  ],
1626
1676
  "__typename": [
1627
1677
  1
@@ -1650,13 +1700,13 @@ exports.default = {
1650
1700
  26
1651
1701
  ],
1652
1702
  "country": [
1653
- 39
1703
+ 41
1654
1704
  ],
1655
1705
  "sport": [
1656
- 61
1706
+ 63
1657
1707
  ],
1658
1708
  "memberships": [
1659
- 76
1709
+ 78
1660
1710
  ],
1661
1711
  "__typename": [
1662
1712
  1
@@ -1667,10 +1717,10 @@ exports.default = {
1667
1717
  1
1668
1718
  ],
1669
1719
  "organization": [
1670
- 74
1720
+ 76
1671
1721
  ],
1672
1722
  "athlete": [
1673
- 81
1723
+ 91
1674
1724
  ],
1675
1725
  "membershipNumber": [
1676
1726
  1
@@ -1741,7 +1791,7 @@ exports.default = {
1741
1791
  1
1742
1792
  ],
1743
1793
  "athlete": [
1744
- 81
1794
+ 91
1745
1795
  ],
1746
1796
  "budgetMode": [
1747
1797
  1
@@ -1768,185 +1818,507 @@ exports.default = {
1768
1818
  17
1769
1819
  ],
1770
1820
  "location": [
1771
- 68
1821
+ 70
1772
1822
  ],
1773
1823
  "endingDate": [
1774
1824
  14
1775
1825
  ],
1776
1826
  "budget": [
1777
- 72
1827
+ 74
1778
1828
  ],
1779
1829
  "competitions": [
1780
- 73
1830
+ 75
1781
1831
  ],
1782
1832
  "__typename": [
1783
1833
  1
1784
1834
  ]
1785
1835
  },
1786
- "AthleteReference": {
1787
- "_id": [
1836
+ "StripeCapabilityType": {
1837
+ "acss_debit_payments": [
1788
1838
  1
1789
1839
  ],
1790
- "firstName": [
1840
+ "affirm_payments": [
1791
1841
  1
1792
1842
  ],
1793
- "lastName": [
1843
+ "afterpay_clearpay_payments": [
1794
1844
  1
1795
1845
  ],
1796
- "screenName": [
1846
+ "alma_payments": [
1797
1847
  1
1798
1848
  ],
1799
- "dob": [
1800
- 14
1849
+ "amazon_pay_payments": [
1850
+ 1
1801
1851
  ],
1802
- "lgbt": [
1803
- 2
1852
+ "au_becs_debit_payments": [
1853
+ 1
1804
1854
  ],
1805
- "competitionGender": [
1855
+ "bacs_debit_payments": [
1806
1856
  1
1807
1857
  ],
1808
- "country": [
1809
- 39
1858
+ "bancontact_payments": [
1859
+ 1
1810
1860
  ],
1811
- "location": [
1812
- 68
1861
+ "bank_transfer_payments": [
1862
+ 1
1813
1863
  ],
1814
- "trainer": [
1864
+ "blik_payments": [
1815
1865
  1
1816
1866
  ],
1817
- "trainerUrl": [
1867
+ "boleto_payments": [
1818
1868
  1
1819
1869
  ],
1820
- "followStats": [
1821
- 60
1870
+ "card_issuing": [
1871
+ 1
1822
1872
  ],
1823
- "mainSport": [
1824
- 61
1873
+ "card_payments": [
1874
+ 1
1825
1875
  ],
1826
- "mainSportLevel": [
1827
- 64
1876
+ "cartes_bancaires_payments": [
1877
+ 1
1828
1878
  ],
1829
- "scores": [
1830
- 62
1879
+ "cashapp_payments": [
1880
+ 1
1831
1881
  ],
1832
- "rankings": [
1833
- 66
1882
+ "eps_payments": [
1883
+ 1
1834
1884
  ],
1835
- "totalUpcomingCompetitions": [
1836
- 17
1885
+ "fpx_payments": [
1886
+ 1
1837
1887
  ],
1838
- "totalPastCompetitions": [
1839
- 17
1888
+ "gb_bank_transfer_payments": [
1889
+ 1
1840
1890
  ],
1841
- "profilePicture": [
1842
- 26
1891
+ "giropay_payments": [
1892
+ 1
1843
1893
  ],
1844
- "cardPicture": [
1845
- 26
1894
+ "grabpay_payments": [
1895
+ 1
1846
1896
  ],
1847
- "aboutMe": [
1897
+ "ideal_payments": [
1848
1898
  1
1849
1899
  ],
1850
- "preferences": [
1851
- 79
1900
+ "india_international_payments": [
1901
+ 1
1852
1902
  ],
1853
- "__typename": [
1903
+ "jcb_payments": [
1854
1904
  1
1855
- ]
1856
- },
1857
- "Athlete": {
1858
- "_id": [
1905
+ ],
1906
+ "jp_bank_transfer_payments": [
1859
1907
  1
1860
1908
  ],
1861
- "firstName": [
1909
+ "kakao_pay_payments": [
1862
1910
  1
1863
1911
  ],
1864
- "lastName": [
1912
+ "klarna_payments": [
1865
1913
  1
1866
1914
  ],
1867
- "screenName": [
1915
+ "konbini_payments": [
1868
1916
  1
1869
1917
  ],
1870
- "dob": [
1871
- 14
1918
+ "kr_card_payments": [
1919
+ 1
1872
1920
  ],
1873
- "lgbt": [
1874
- 2
1921
+ "legacy_payments": [
1922
+ 1
1875
1923
  ],
1876
- "competitionGender": [
1924
+ "link_payments": [
1877
1925
  1
1878
1926
  ],
1879
- "country": [
1880
- 39
1927
+ "mobilepay_payments": [
1928
+ 1
1881
1929
  ],
1882
- "location": [
1883
- 68
1930
+ "multibanco_payments": [
1931
+ 1
1884
1932
  ],
1885
- "trainer": [
1933
+ "mx_bank_transfer_payments": [
1886
1934
  1
1887
1935
  ],
1888
- "trainerUrl": [
1936
+ "naver_pay_payments": [
1889
1937
  1
1890
1938
  ],
1891
- "followStats": [
1892
- 60
1939
+ "oxxo_payments": [
1940
+ 1
1893
1941
  ],
1894
- "mainSport": [
1895
- 61
1942
+ "p24_payments": [
1943
+ 1
1896
1944
  ],
1897
- "mainSportLevel": [
1898
- 64
1945
+ "pay_by_bank_payments": [
1946
+ 1
1899
1947
  ],
1900
- "scores": [
1901
- 62
1948
+ "payco_payments": [
1949
+ 1
1902
1950
  ],
1903
- "rankings": [
1904
- 66
1951
+ "paynow_payments": [
1952
+ 1
1905
1953
  ],
1906
- "totalUpcomingCompetitions": [
1907
- 17
1954
+ "promptpay_payments": [
1955
+ 1
1908
1956
  ],
1909
- "totalPastCompetitions": [
1910
- 17
1957
+ "revolut_pay_payments": [
1958
+ 1
1911
1959
  ],
1912
- "profilePicture": [
1913
- 26
1960
+ "samsung_pay_payments": [
1961
+ 1
1914
1962
  ],
1915
- "cardPicture": [
1916
- 26
1963
+ "sepa_bank_transfer_payments": [
1964
+ 1
1917
1965
  ],
1918
- "aboutMe": [
1966
+ "sepa_debit_payments": [
1919
1967
  1
1920
1968
  ],
1921
- "preferences": [
1922
- 79
1969
+ "sofort_payments": [
1970
+ 1
1923
1971
  ],
1924
- "allSports": [
1925
- 61
1972
+ "swish_payments": [
1973
+ 1
1974
+ ],
1975
+ "tax_reporting_us_1099_k": [
1976
+ 1
1977
+ ],
1978
+ "tax_reporting_us_1099_misc": [
1979
+ 1
1980
+ ],
1981
+ "transfers": [
1982
+ 1
1983
+ ],
1984
+ "treasury": [
1985
+ 1
1986
+ ],
1987
+ "twint_payments": [
1988
+ 1
1989
+ ],
1990
+ "us_bank_account_ach_payments": [
1991
+ 1
1992
+ ],
1993
+ "us_bank_transfer_payments": [
1994
+ 1
1995
+ ],
1996
+ "zip_payments": [
1997
+ 1
1998
+ ],
1999
+ "__typename": [
2000
+ 1
2001
+ ]
2002
+ },
2003
+ "StripeRequirementAlternativeType": {
2004
+ "alternative_fields_due": [
2005
+ 1
2006
+ ],
2007
+ "original_fields_due": [
2008
+ 1
2009
+ ],
2010
+ "__typename": [
2011
+ 1
2012
+ ]
2013
+ },
2014
+ "StripeFutureRequirementAlternativeType": {
2015
+ "alternative_fields_due": [
2016
+ 1
2017
+ ],
2018
+ "original_fields_due": [
2019
+ 1
2020
+ ],
2021
+ "__typename": [
2022
+ 1
2023
+ ]
2024
+ },
2025
+ "StripeErrorType": {
2026
+ "code": [
2027
+ 1
2028
+ ],
2029
+ "reason": [
2030
+ 1
2031
+ ],
2032
+ "requirement": [
2033
+ 1
2034
+ ],
2035
+ "__typename": [
2036
+ 1
2037
+ ]
2038
+ },
2039
+ "StripeRequirementType": {
2040
+ "alternatives": [
2041
+ 84
2042
+ ],
2043
+ "current_deadline": [
2044
+ 14
2045
+ ],
2046
+ "currently_due": [
2047
+ 1
2048
+ ],
2049
+ "disabled_reason": [
2050
+ 1
2051
+ ],
2052
+ "errors": [
2053
+ 86
2054
+ ],
2055
+ "eventually_due": [
2056
+ 1
2057
+ ],
2058
+ "past_due": [
2059
+ 1
2060
+ ],
2061
+ "pending_verification": [
2062
+ 1
2063
+ ],
2064
+ "__typename": [
2065
+ 1
2066
+ ]
2067
+ },
2068
+ "StripeFutureRequirementType": {
2069
+ "alternatives": [
2070
+ 85
2071
+ ],
2072
+ "current_deadline": [
2073
+ 14
2074
+ ],
2075
+ "currently_due": [
2076
+ 1
2077
+ ],
2078
+ "disabled_reason": [
2079
+ 1
2080
+ ],
2081
+ "errors": [
2082
+ 86
2083
+ ],
2084
+ "eventually_due": [
2085
+ 1
2086
+ ],
2087
+ "past_due": [
2088
+ 1
2089
+ ],
2090
+ "pending_verification": [
2091
+ 1
2092
+ ],
2093
+ "__typename": [
2094
+ 1
2095
+ ]
2096
+ },
2097
+ "StripeAccount": {
2098
+ "id": [
2099
+ 1
2100
+ ],
2101
+ "object": [
2102
+ 1
2103
+ ],
2104
+ "business_type": [
2105
+ 1
2106
+ ],
2107
+ "country": [
2108
+ 1
2109
+ ],
2110
+ "email": [
2111
+ 1
2112
+ ],
2113
+ "capabilities": [
2114
+ 83
2115
+ ],
2116
+ "requirements": [
2117
+ 87
2118
+ ],
2119
+ "future_requirements": [
2120
+ 88
2121
+ ],
2122
+ "type": [
2123
+ 1
2124
+ ],
2125
+ "charges_enabled": [
2126
+ 2
2127
+ ],
2128
+ "payouts_enabled": [
2129
+ 2
2130
+ ],
2131
+ "created": [
2132
+ 14
2133
+ ],
2134
+ "default_currency": [
2135
+ 1
2136
+ ],
2137
+ "__typename": [
2138
+ 1
2139
+ ]
2140
+ },
2141
+ "StripeAccountReference": {
2142
+ "_id": [
2143
+ 1
2144
+ ],
2145
+ "stripeAccountId": [
2146
+ 1
2147
+ ],
2148
+ "account": [
2149
+ 89
2150
+ ],
2151
+ "__typename": [
2152
+ 1
2153
+ ]
2154
+ },
2155
+ "AthleteReference": {
2156
+ "_id": [
2157
+ 1
2158
+ ],
2159
+ "firstName": [
2160
+ 1
2161
+ ],
2162
+ "lastName": [
2163
+ 1
2164
+ ],
2165
+ "screenName": [
2166
+ 1
2167
+ ],
2168
+ "dob": [
2169
+ 14
2170
+ ],
2171
+ "lgbt": [
2172
+ 2
2173
+ ],
2174
+ "competitionGender": [
2175
+ 1
2176
+ ],
2177
+ "country": [
2178
+ 41
2179
+ ],
2180
+ "location": [
2181
+ 70
2182
+ ],
2183
+ "trainer": [
2184
+ 1
2185
+ ],
2186
+ "trainerUrl": [
2187
+ 1
2188
+ ],
2189
+ "followStats": [
2190
+ 62
2191
+ ],
2192
+ "mainSport": [
2193
+ 63
2194
+ ],
2195
+ "mainSportLevel": [
2196
+ 66
2197
+ ],
2198
+ "scores": [
2199
+ 64
2200
+ ],
2201
+ "rankings": [
2202
+ 68
2203
+ ],
2204
+ "totalUpcomingCompetitions": [
2205
+ 17
2206
+ ],
2207
+ "totalPastCompetitions": [
2208
+ 17
2209
+ ],
2210
+ "profilePicture": [
2211
+ 26
2212
+ ],
2213
+ "cardPicture": [
2214
+ 26
2215
+ ],
2216
+ "aboutMe": [
2217
+ 1
2218
+ ],
2219
+ "preferences": [
2220
+ 81
2221
+ ],
2222
+ "__typename": [
2223
+ 1
2224
+ ]
2225
+ },
2226
+ "Athlete": {
2227
+ "_id": [
2228
+ 1
2229
+ ],
2230
+ "firstName": [
2231
+ 1
2232
+ ],
2233
+ "lastName": [
2234
+ 1
2235
+ ],
2236
+ "screenName": [
2237
+ 1
2238
+ ],
2239
+ "dob": [
2240
+ 14
2241
+ ],
2242
+ "lgbt": [
2243
+ 2
2244
+ ],
2245
+ "competitionGender": [
2246
+ 1
2247
+ ],
2248
+ "country": [
2249
+ 41
2250
+ ],
2251
+ "location": [
2252
+ 70
2253
+ ],
2254
+ "trainer": [
2255
+ 1
2256
+ ],
2257
+ "trainerUrl": [
2258
+ 1
2259
+ ],
2260
+ "followStats": [
2261
+ 62
2262
+ ],
2263
+ "mainSport": [
2264
+ 63
2265
+ ],
2266
+ "mainSportLevel": [
2267
+ 66
2268
+ ],
2269
+ "scores": [
2270
+ 64
2271
+ ],
2272
+ "rankings": [
2273
+ 68
2274
+ ],
2275
+ "totalUpcomingCompetitions": [
2276
+ 17
2277
+ ],
2278
+ "totalPastCompetitions": [
2279
+ 17
2280
+ ],
2281
+ "profilePicture": [
2282
+ 26
2283
+ ],
2284
+ "cardPicture": [
2285
+ 26
2286
+ ],
2287
+ "aboutMe": [
2288
+ 1
2289
+ ],
2290
+ "preferences": [
2291
+ 81
2292
+ ],
2293
+ "allSports": [
2294
+ 63
1926
2295
  ],
1927
2296
  "teams": [
1928
- 67
2297
+ 69
1929
2298
  ],
1930
2299
  "sponsorBrands": [
1931
- 36
2300
+ 38
1932
2301
  ],
1933
2302
  "competitions": [
1934
- 73
2303
+ 75
1935
2304
  ],
1936
2305
  "affiliations": [
1937
- 76
2306
+ 78
1938
2307
  ],
1939
2308
  "newsLinks": [
1940
- 77
2309
+ 79
1941
2310
  ],
1942
2311
  "channels": [
1943
- 78
2312
+ 80
1944
2313
  ],
1945
2314
  "currentCampaign": [
1946
- 80
2315
+ 82
1947
2316
  ],
1948
2317
  "fundingCampaigns": [
1949
- 80
2318
+ 82
2319
+ ],
2320
+ "stripeAccountReference": [
2321
+ 90
1950
2322
  ],
1951
2323
  "__typename": [
1952
2324
  1
@@ -1966,13 +2338,13 @@ exports.default = {
1966
2338
  14
1967
2339
  ],
1968
2340
  "sponsor": [
1969
- 53
2341
+ 55
1970
2342
  ],
1971
2343
  "magicLink": [
1972
2344
  27
1973
2345
  ],
1974
2346
  "brand": [
1975
- 36
2347
+ 38
1976
2348
  ],
1977
2349
  "status": [
1978
2350
  1
@@ -1998,6 +2370,37 @@ exports.default = {
1998
2370
  1
1999
2371
  ]
2000
2372
  },
2373
+ "StripeSession": {
2374
+ "account": [
2375
+ 1
2376
+ ],
2377
+ "client_secret": [
2378
+ 1
2379
+ ],
2380
+ "expires_at": [
2381
+ 17
2382
+ ],
2383
+ "livemode": [
2384
+ 2
2385
+ ],
2386
+ "__typename": [
2387
+ 1
2388
+ ]
2389
+ },
2390
+ "StripeCheckoutSession": {
2391
+ "client_secret": [
2392
+ 1
2393
+ ],
2394
+ "expires_at": [
2395
+ 17
2396
+ ],
2397
+ "livemode": [
2398
+ 2
2399
+ ],
2400
+ "__typename": [
2401
+ 1
2402
+ ]
2403
+ },
2001
2404
  "EditValueResponse": {
2002
2405
  "field": [
2003
2406
  1
@@ -2034,7 +2437,7 @@ exports.default = {
2034
2437
  2
2035
2438
  ],
2036
2439
  "failureReason": [
2037
- 86
2440
+ 98
2038
2441
  ],
2039
2442
  "__typename": [
2040
2443
  1
@@ -2053,7 +2456,7 @@ exports.default = {
2053
2456
  },
2054
2457
  "CursorPaginationResponse": {
2055
2458
  "sort": [
2056
- 88
2459
+ 100
2057
2460
  ],
2058
2461
  "initialCursorId": [
2059
2462
  1
@@ -2082,15 +2485,61 @@ exports.default = {
2082
2485
  },
2083
2486
  "AthleteQueryResponse": {
2084
2487
  "athletes": [
2085
- 82
2488
+ 92
2086
2489
  ],
2087
2490
  "cursor": [
2088
- 89
2491
+ 101
2492
+ ],
2493
+ "__typename": [
2494
+ 1
2495
+ ]
2496
+ },
2497
+ "EditPictureResponse": {
2498
+ "field": [
2499
+ 1
2500
+ ],
2501
+ "oldValue": [
2502
+ 26
2503
+ ],
2504
+ "newValue": [
2505
+ 26
2506
+ ],
2507
+ "changed": [
2508
+ 2
2089
2509
  ],
2090
2510
  "__typename": [
2091
2511
  1
2092
2512
  ]
2093
2513
  },
2514
+ "AddValuesResponse": {
2515
+ "added": [
2516
+ 1
2517
+ ],
2518
+ "failedToAdd": [
2519
+ 1
2520
+ ],
2521
+ "failureReason": [
2522
+ 98
2523
+ ],
2524
+ "result": [
2525
+ 1
2526
+ ],
2527
+ "__typename": [
2528
+ 1
2529
+ ]
2530
+ },
2531
+ "StripeObject": {
2532
+ "type": [
2533
+ 1
2534
+ ],
2535
+ "json": [
2536
+ 106
2537
+ ],
2538
+ "__typename": [
2539
+ 1
2540
+ ]
2541
+ },
2542
+ "JSONObject": {},
2094
2543
  "UserImages": {
2095
2544
  "profilePictureUrl": [
2096
2545
  1
@@ -2105,17 +2554,121 @@ exports.default = {
2105
2554
  1
2106
2555
  ]
2107
2556
  },
2108
- "DeleteValuesResponse": {
2109
- "deleted": [
2110
- 1
2111
- ],
2112
- "failedToDelete": [
2557
+ "DeleteValuesResponse": {
2558
+ "deleted": [
2559
+ 1
2560
+ ],
2561
+ "failedToDelete": [
2562
+ 1
2563
+ ],
2564
+ "failureReason": [
2565
+ 98
2566
+ ],
2567
+ "result": [
2568
+ 1
2569
+ ],
2570
+ "__typename": [
2571
+ 1
2572
+ ]
2573
+ },
2574
+ "CreateDatabaseFileDto": {
2575
+ "identifier": [
2576
+ 1
2577
+ ],
2578
+ "version": [
2579
+ 1
2580
+ ],
2581
+ "contentType": [
2582
+ 1
2583
+ ],
2584
+ "__typename": [
2585
+ 1
2586
+ ]
2587
+ },
2588
+ "CreateTextDatabaseFileDto": {
2589
+ "identifier": [
2590
+ 1
2591
+ ],
2592
+ "version": [
2593
+ 1
2594
+ ],
2595
+ "contentType": [
2596
+ 1
2597
+ ],
2598
+ "content": [
2599
+ 1
2600
+ ],
2601
+ "__typename": [
2602
+ 1
2603
+ ]
2604
+ },
2605
+ "UpdateDatabaseFileDto": {
2606
+ "_id": [
2607
+ 1
2608
+ ],
2609
+ "identifier": [
2610
+ 1
2611
+ ],
2612
+ "version": [
2613
+ 1
2614
+ ],
2615
+ "contentType": [
2616
+ 1
2617
+ ],
2618
+ "__typename": [
2619
+ 1
2620
+ ]
2621
+ },
2622
+ "UpdateTextDatabaseFileDto": {
2623
+ "_id": [
2624
+ 1
2625
+ ],
2626
+ "identifier": [
2627
+ 1
2628
+ ],
2629
+ "version": [
2630
+ 1
2631
+ ],
2632
+ "contentType": [
2633
+ 1
2634
+ ],
2635
+ "content": [
2636
+ 1
2637
+ ],
2638
+ "__typename": [
2639
+ 1
2640
+ ]
2641
+ },
2642
+ "CloneDatabaseFileDto": {
2643
+ "_id": [
2644
+ 1
2645
+ ],
2646
+ "version": [
2647
+ 1
2648
+ ],
2649
+ "__typename": [
2650
+ 1
2651
+ ]
2652
+ },
2653
+ "FindDatabaseFilesDto": {
2654
+ "_id": [
2655
+ 1
2656
+ ],
2657
+ "identifier": [
2658
+ 1
2659
+ ],
2660
+ "version": [
2661
+ 1
2662
+ ],
2663
+ "__typename": [
2664
+ 1
2665
+ ]
2666
+ },
2667
+ "GetDatabaseFileDto": {
2668
+ "identifier": [
2113
2669
  1
2114
2670
  ],
2115
- "failureReason": [
2116
- 86
2117
- ],
2118
- "result": [
2671
+ "version": [
2119
2672
  1
2120
2673
  ],
2121
2674
  "__typename": [
@@ -2178,7 +2731,7 @@ exports.default = {
2178
2731
  1
2179
2732
  ],
2180
2733
  "invitations": [
2181
- 95
2734
+ 118
2182
2735
  ],
2183
2736
  "__typename": [
2184
2737
  1
@@ -2241,7 +2794,7 @@ exports.default = {
2241
2794
  1
2242
2795
  ],
2243
2796
  "result": [
2244
- 97
2797
+ 120
2245
2798
  ],
2246
2799
  "cityId": [
2247
2800
  1
@@ -2264,7 +2817,7 @@ exports.default = {
2264
2817
  1
2265
2818
  ],
2266
2819
  "result": [
2267
- 97
2820
+ 120
2268
2821
  ],
2269
2822
  "cityId": [
2270
2823
  1
@@ -2300,13 +2853,13 @@ exports.default = {
2300
2853
  },
2301
2854
  "CursorPaginationDto": {
2302
2855
  "sortCriteria": [
2303
- 102
2856
+ 125
2304
2857
  ],
2305
2858
  "limit": [
2306
2859
  17
2307
2860
  ],
2308
2861
  "cursorPosition": [
2309
- 101
2862
+ 124
2310
2863
  ],
2311
2864
  "__typename": [
2312
2865
  1
@@ -2378,7 +2931,7 @@ exports.default = {
2378
2931
  1
2379
2932
  ],
2380
2933
  "currentCampaign": [
2381
- 105
2934
+ 128
2382
2935
  ],
2383
2936
  "sports": [
2384
2937
  1
@@ -2431,10 +2984,44 @@ exports.default = {
2431
2984
  },
2432
2985
  "AthleteQueryDto": {
2433
2986
  "cursor": [
2434
- 103
2987
+ 126
2435
2988
  ],
2436
2989
  "filters": [
2437
- 106
2990
+ 129
2991
+ ],
2992
+ "__typename": [
2993
+ 1
2994
+ ]
2995
+ },
2996
+ "UploadAlbumsPicturesDto": {
2997
+ "label": [
2998
+ 1
2999
+ ],
3000
+ "description": [
3001
+ 1
3002
+ ],
3003
+ "pictures": [
3004
+ 132
3005
+ ],
3006
+ "__typename": [
3007
+ 1
3008
+ ]
3009
+ },
3010
+ "AWSS3UploadedFileDto": {
3011
+ "key": [
3012
+ 1
3013
+ ],
3014
+ "useType": [
3015
+ 1
3016
+ ],
3017
+ "contentType": [
3018
+ 1
3019
+ ],
3020
+ "originalFileName": [
3021
+ 1
3022
+ ],
3023
+ "fileSize": [
3024
+ 17
2438
3025
  ],
2439
3026
  "__typename": [
2440
3027
  1
@@ -2636,7 +3223,7 @@ exports.default = {
2636
3223
  17
2637
3224
  ],
2638
3225
  "items": [
2639
- 119
3226
+ 144
2640
3227
  ],
2641
3228
  "__typename": [
2642
3229
  1
@@ -2647,7 +3234,7 @@ exports.default = {
2647
3234
  17
2648
3235
  ],
2649
3236
  "items": [
2650
- 119
3237
+ 144
2651
3238
  ],
2652
3239
  "athleteCompetitionId": [
2653
3240
  1
@@ -2682,10 +3269,10 @@ exports.default = {
2682
3269
  14
2683
3270
  ],
2684
3271
  "budget": [
2685
- 121
3272
+ 146
2686
3273
  ],
2687
3274
  "competitionBudgets": [
2688
- 122
3275
+ 147
2689
3276
  ],
2690
3277
  "competitionIds": [
2691
3278
  1
@@ -2720,10 +3307,10 @@ exports.default = {
2720
3307
  14
2721
3308
  ],
2722
3309
  "budget": [
2723
- 121
3310
+ 146
2724
3311
  ],
2725
3312
  "competitionBudgets": [
2726
- 122
3313
+ 147
2727
3314
  ],
2728
3315
  "competitionIds": [
2729
3316
  1
@@ -2735,6 +3322,17 @@ exports.default = {
2735
3322
  1
2736
3323
  ]
2737
3324
  },
3325
+ "SetFundingStatusDto": {
3326
+ "fundingCampaignId": [
3327
+ 1
3328
+ ],
3329
+ "newStatus": [
3330
+ 1
3331
+ ],
3332
+ "__typename": [
3333
+ 1
3334
+ ]
3335
+ },
2738
3336
  "CreateMembershipOrganizationDto": {
2739
3337
  "shortName": [
2740
3338
  1
@@ -2749,7 +3347,7 @@ exports.default = {
2749
3347
  1
2750
3348
  ],
2751
3349
  "logo": [
2752
- 126
3350
+ 132
2753
3351
  ],
2754
3352
  "countryId": [
2755
3353
  1
@@ -2761,44 +3359,61 @@ exports.default = {
2761
3359
  1
2762
3360
  ]
2763
3361
  },
2764
- "AWSS3UploadedFileDto": {
2765
- "key": [
3362
+ "CreateAthleteMembershipDto": {
3363
+ "organizationId": [
2766
3364
  1
2767
3365
  ],
2768
- "useType": [
3366
+ "membershipNumber": [
2769
3367
  1
2770
3368
  ],
2771
- "contentType": [
3369
+ "membershipType": [
2772
3370
  1
2773
3371
  ],
2774
- "originalFileName": [
2775
- 1
3372
+ "issueDate": [
3373
+ 14
2776
3374
  ],
2777
- "fileSize": [
2778
- 17
3375
+ "expirationDate": [
3376
+ 14
2779
3377
  ],
2780
3378
  "__typename": [
2781
3379
  1
2782
3380
  ]
2783
3381
  },
2784
- "CreateAthleteMembershipDto": {
2785
- "organizationId": [
3382
+ "DonationCheckoutDto": {
3383
+ "fundingCampaignId": [
2786
3384
  1
2787
3385
  ],
2788
- "athleteId": [
3386
+ "donationAmount": [
3387
+ 17
3388
+ ],
3389
+ "mode": [
2789
3390
  1
2790
3391
  ],
2791
- "membershipNumber": [
3392
+ "fromName": [
2792
3393
  1
2793
3394
  ],
2794
- "membershipType": [
3395
+ "fromEmail": [
2795
3396
  1
2796
3397
  ],
2797
- "issueDate": [
2798
- 14
3398
+ "fromPhone": [
3399
+ 1
2799
3400
  ],
2800
- "expirationDate": [
2801
- 14
3401
+ "message": [
3402
+ 1
3403
+ ],
3404
+ "__typename": [
3405
+ 1
3406
+ ]
3407
+ },
3408
+ "StripeQueryDto": {
3409
+ "operation": [
3410
+ 1
3411
+ ],
3412
+ "id": [
3413
+ 1
3414
+ ],
3415
+ "params": [
3416
+ 1
2802
3417
  ],
2803
3418
  "__typename": [
2804
3419
  1
@@ -2874,16 +3489,16 @@ exports.default = {
2874
3489
  31,
2875
3490
  {
2876
3491
  "input": [
2877
- 129,
3492
+ 156,
2878
3493
  "AWSS3GetUploadDto!"
2879
3494
  ]
2880
3495
  }
2881
3496
  ],
2882
3497
  "industries": [
2883
- 50
3498
+ 52
2884
3499
  ],
2885
3500
  "findIndustryById": [
2886
- 50,
3501
+ 52,
2887
3502
  {
2888
3503
  "industryId": [
2889
3504
  1,
@@ -2892,10 +3507,10 @@ exports.default = {
2892
3507
  }
2893
3508
  ],
2894
3509
  "brands": [
2895
- 36
3510
+ 38
2896
3511
  ],
2897
3512
  "getBrandByName": [
2898
- 36,
3513
+ 38,
2899
3514
  {
2900
3515
  "name": [
2901
3516
  1,
@@ -2908,7 +3523,7 @@ exports.default = {
2908
3523
  }
2909
3524
  ],
2910
3525
  "getBrandTranslation": [
2911
- 35,
3526
+ 37,
2912
3527
  {
2913
3528
  "brandId": [
2914
3529
  1,
@@ -2921,7 +3536,7 @@ exports.default = {
2921
3536
  }
2922
3537
  ],
2923
3538
  "existsValidSponsorForEmail": [
2924
- 53,
3539
+ 55,
2925
3540
  {
2926
3541
  "loginEmail": [
2927
3542
  1,
@@ -2930,31 +3545,31 @@ exports.default = {
2930
3545
  }
2931
3546
  ],
2932
3547
  "sponsors": [
2933
- 53
3548
+ 55
2934
3549
  ],
2935
3550
  "findSponsorAthleteInvitation": [
2936
- 83,
3551
+ 93,
2937
3552
  {
2938
3553
  "input": [
2939
- 130,
3554
+ 157,
2940
3555
  "FindSponsorAthleteInvitationDto!"
2941
3556
  ]
2942
3557
  }
2943
3558
  ],
2944
3559
  "getAthletes": [
2945
- 82
3560
+ 92
2946
3561
  ],
2947
3562
  "queryAthleteFundingCampaigns": [
2948
- 90,
3563
+ 102,
2949
3564
  {
2950
3565
  "input": [
2951
- 107,
3566
+ 130,
2952
3567
  "AthleteQueryDto!"
2953
3568
  ]
2954
3569
  }
2955
3570
  ],
2956
3571
  "searchAthletes": [
2957
- 82,
3572
+ 92,
2958
3573
  {
2959
3574
  "searchString": [
2960
3575
  1,
@@ -2963,7 +3578,7 @@ exports.default = {
2963
3578
  }
2964
3579
  ],
2965
3580
  "findAthleteById": [
2966
- 82,
3581
+ 92,
2967
3582
  {
2968
3583
  "athleteId": [
2969
3584
  1,
@@ -2972,7 +3587,7 @@ exports.default = {
2972
3587
  }
2973
3588
  ],
2974
3589
  "findAthleteForUser": [
2975
- 82,
3590
+ 92,
2976
3591
  {
2977
3592
  "loginEmail": [
2978
3593
  1,
@@ -2981,7 +3596,7 @@ exports.default = {
2981
3596
  }
2982
3597
  ],
2983
3598
  "getRecommendedAthletes": [
2984
- 82,
3599
+ 92,
2985
3600
  {
2986
3601
  "loginEmail": [
2987
3602
  1,
@@ -2990,19 +3605,28 @@ exports.default = {
2990
3605
  }
2991
3606
  ],
2992
3607
  "getSponsorAthletesForTenant": [
2993
- 82
3608
+ 92
2994
3609
  ],
2995
3610
  "getAthleteCompetitions": [
2996
- 73,
3611
+ 75,
2997
3612
  {
2998
3613
  "input": [
2999
- 131,
3614
+ 158,
3000
3615
  "GetAthleteCompetitionsDto!"
3001
3616
  ]
3002
3617
  }
3003
3618
  ],
3004
3619
  "getAthleteMemberships": [
3005
- 76,
3620
+ 78,
3621
+ {
3622
+ "athleteId": [
3623
+ 1,
3624
+ "String!"
3625
+ ]
3626
+ }
3627
+ ],
3628
+ "findAthletebyIdpublic": [
3629
+ 92,
3006
3630
  {
3007
3631
  "athleteId": [
3008
3632
  1,
@@ -3011,10 +3635,10 @@ exports.default = {
3011
3635
  }
3012
3636
  ],
3013
3637
  "getSports": [
3014
- 61
3638
+ 63
3015
3639
  ],
3016
3640
  "findSportById": [
3017
- 61,
3641
+ 63,
3018
3642
  {
3019
3643
  "sportId": [
3020
3644
  1,
@@ -3023,19 +3647,19 @@ exports.default = {
3023
3647
  }
3024
3648
  ],
3025
3649
  "getSportLevels": [
3026
- 64
3650
+ 66
3027
3651
  ],
3028
3652
  "getPublicSponsorships": [
3029
- 59
3653
+ 61
3030
3654
  ],
3031
3655
  "getTenantSponsorships": [
3032
- 59
3656
+ 61
3033
3657
  ],
3034
3658
  "getCountries": [
3035
- 39
3659
+ 41
3036
3660
  ],
3037
3661
  "getCountryStates": [
3038
- 38,
3662
+ 40,
3039
3663
  {
3040
3664
  "countryId": [
3041
3665
  1,
@@ -3044,7 +3668,7 @@ exports.default = {
3044
3668
  }
3045
3669
  ],
3046
3670
  "getStateCities": [
3047
- 37,
3671
+ 39,
3048
3672
  {
3049
3673
  "stateId": [
3050
3674
  1,
@@ -3053,7 +3677,7 @@ exports.default = {
3053
3677
  }
3054
3678
  ],
3055
3679
  "findCitiesStartingWith": [
3056
- 37,
3680
+ 39,
3057
3681
  {
3058
3682
  "text": [
3059
3683
  1,
@@ -3062,7 +3686,7 @@ exports.default = {
3062
3686
  }
3063
3687
  ],
3064
3688
  "findCityById": [
3065
- 37,
3689
+ 39,
3066
3690
  {
3067
3691
  "cityId": [
3068
3692
  1,
@@ -3074,7 +3698,7 @@ exports.default = {
3074
3698
  0,
3075
3699
  {
3076
3700
  "input": [
3077
- 132,
3701
+ 159,
3078
3702
  "FindVtxUserDto!"
3079
3703
  ]
3080
3704
  }
@@ -3093,7 +3717,7 @@ exports.default = {
3093
3717
  }
3094
3718
  ],
3095
3719
  "getUserImagesFromEmail": [
3096
- 91,
3720
+ 107,
3097
3721
  {
3098
3722
  "loginEmail": [
3099
3723
  1,
@@ -3105,16 +3729,34 @@ exports.default = {
3105
3729
  1
3106
3730
  ],
3107
3731
  "getSportsEvents": [
3108
- 69,
3732
+ 71,
3109
3733
  {
3110
3734
  "input": [
3111
- 133,
3735
+ 160,
3112
3736
  "GetSportEventsDto!"
3113
3737
  ]
3114
3738
  }
3115
3739
  ],
3116
3740
  "getMembershipOrganizations": [
3117
- 74
3741
+ 76
3742
+ ],
3743
+ "stripeQuery": [
3744
+ 105,
3745
+ {
3746
+ "input": [
3747
+ 154,
3748
+ "StripeQueryDto!"
3749
+ ]
3750
+ }
3751
+ ],
3752
+ "getDatabaseTextFile": [
3753
+ 34,
3754
+ {
3755
+ "input": [
3756
+ 115,
3757
+ "GetDatabaseFileDto!"
3758
+ ]
3759
+ }
3118
3760
  ],
3119
3761
  "__typename": [
3120
3762
  1
@@ -3177,7 +3819,7 @@ exports.default = {
3177
3819
  5,
3178
3820
  {
3179
3821
  "tenant": [
3180
- 135,
3822
+ 162,
3181
3823
  "CreateTenantInput!"
3182
3824
  ]
3183
3825
  }
@@ -3186,7 +3828,7 @@ exports.default = {
3186
3828
  11,
3187
3829
  {
3188
3830
  "tenant": [
3189
- 135,
3831
+ 162,
3190
3832
  "CreateTenantInput!"
3191
3833
  ]
3192
3834
  }
@@ -3195,7 +3837,7 @@ exports.default = {
3195
3837
  3,
3196
3838
  {
3197
3839
  "user": [
3198
- 136,
3840
+ 163,
3199
3841
  "CreateActiveUserInput!"
3200
3842
  ]
3201
3843
  }
@@ -3230,7 +3872,7 @@ exports.default = {
3230
3872
  0,
3231
3873
  {
3232
3874
  "input": [
3233
- 137,
3875
+ 164,
3234
3876
  "RegisterUserToDomainFromEmailInput!"
3235
3877
  ]
3236
3878
  }
@@ -3239,7 +3881,7 @@ exports.default = {
3239
3881
  8,
3240
3882
  {
3241
3883
  "dto": [
3242
- 138,
3884
+ 165,
3243
3885
  "RefreshTokenInput!"
3244
3886
  ]
3245
3887
  }
@@ -3248,7 +3890,7 @@ exports.default = {
3248
3890
  32,
3249
3891
  {
3250
3892
  "input": [
3251
- 139,
3893
+ 166,
3252
3894
  "AWSS3DeleteUseTypeFileDto!"
3253
3895
  ]
3254
3896
  }
@@ -3257,7 +3899,7 @@ exports.default = {
3257
3899
  32,
3258
3900
  {
3259
3901
  "input": [
3260
- 140,
3902
+ 167,
3261
3903
  "AWSS3DeleteBucketFileDto!"
3262
3904
  ]
3263
3905
  }
@@ -3266,151 +3908,178 @@ exports.default = {
3266
3908
  26,
3267
3909
  {
3268
3910
  "input": [
3269
- 126,
3911
+ 132,
3270
3912
  "AWSS3UploadedFileDto!"
3271
3913
  ]
3272
3914
  }
3273
3915
  ],
3274
3916
  "createIndustry": [
3275
- 50,
3917
+ 52,
3276
3918
  {
3277
3919
  "input": [
3278
- 141,
3920
+ 168,
3279
3921
  "CreateIndustryDto!"
3280
3922
  ]
3281
3923
  }
3282
3924
  ],
3283
3925
  "createBrand": [
3284
- 36,
3926
+ 38,
3285
3927
  {
3286
3928
  "input": [
3287
- 142,
3929
+ 169,
3288
3930
  "CreateBrandDto!"
3289
3931
  ]
3290
3932
  }
3291
3933
  ],
3292
3934
  "registerSponsor": [
3293
- 53,
3935
+ 55,
3294
3936
  {
3295
3937
  "input": [
3296
- 144,
3938
+ 171,
3297
3939
  "RegisterSponsorInput!"
3298
3940
  ]
3299
3941
  }
3300
3942
  ],
3301
3943
  "createSponsor": [
3302
- 53,
3944
+ 55,
3303
3945
  {
3304
3946
  "input": [
3305
- 145,
3947
+ 172,
3306
3948
  "CreateSponsorDto!"
3307
3949
  ]
3308
3950
  }
3309
3951
  ],
3310
3952
  "sendAthleteInvitations": [
3311
- 83,
3953
+ 93,
3312
3954
  {
3313
3955
  "input": [
3314
- 96,
3956
+ 119,
3315
3957
  "InviteAthletesDto!"
3316
3958
  ]
3317
3959
  }
3318
3960
  ],
3319
3961
  "registerAthlete": [
3320
- 82,
3962
+ 92,
3321
3963
  {
3322
3964
  "input": [
3323
- 146,
3965
+ 173,
3324
3966
  "RegisterAthleteDto!"
3325
3967
  ]
3326
3968
  }
3327
3969
  ],
3328
3970
  "editProfileValue": [
3329
- 85,
3971
+ 97,
3330
3972
  {
3331
3973
  "input": [
3332
- 147,
3974
+ 174,
3333
3975
  "EditValueDto!"
3334
3976
  ]
3335
3977
  }
3336
3978
  ],
3979
+ "editPicture": [
3980
+ 103,
3981
+ {
3982
+ "input": [
3983
+ 175,
3984
+ "EditPictureDto!"
3985
+ ]
3986
+ }
3987
+ ],
3988
+ "AddAlbumPictures": [
3989
+ 104,
3990
+ {
3991
+ "input": [
3992
+ 131,
3993
+ "UploadAlbumsPicturesDto!"
3994
+ ]
3995
+ }
3996
+ ],
3997
+ "DeletePictureBuket": [
3998
+ 99,
3999
+ {
4000
+ "input": [
4001
+ 166,
4002
+ "AWSS3DeleteUseTypeFileDto!"
4003
+ ]
4004
+ }
4005
+ ],
3337
4006
  "addAthleteCompetition": [
3338
- 73,
4007
+ 75,
3339
4008
  {
3340
4009
  "input": [
3341
- 99,
4010
+ 122,
3342
4011
  "CreateAthleteCompetitionDto!"
3343
4012
  ]
3344
4013
  }
3345
4014
  ],
3346
4015
  "deleteAthleteCompetition": [
3347
- 87,
4016
+ 99,
3348
4017
  {
3349
4018
  "input": [
3350
- 104,
4019
+ 127,
3351
4020
  "DeleteSingleValueDto!"
3352
4021
  ]
3353
4022
  }
3354
4023
  ],
3355
4024
  "createSport": [
3356
- 61,
4025
+ 63,
3357
4026
  {
3358
4027
  "input": [
3359
- 148,
4028
+ 176,
3360
4029
  "CreateSportDto!"
3361
4030
  ]
3362
4031
  }
3363
4032
  ],
3364
4033
  "updateSport": [
3365
- 61,
4034
+ 63,
3366
4035
  {
3367
4036
  "input": [
3368
- 149,
4037
+ 177,
3369
4038
  "UpdateSportDto!"
3370
4039
  ]
3371
4040
  }
3372
4041
  ],
3373
4042
  "createSportLevel": [
3374
- 64,
4043
+ 66,
3375
4044
  {
3376
4045
  "input": [
3377
- 150,
4046
+ 178,
3378
4047
  "CreateSportLevelDto!"
3379
4048
  ]
3380
4049
  }
3381
4050
  ],
3382
4051
  "createSponsorship": [
3383
- 59,
4052
+ 61,
3384
4053
  {
3385
4054
  "input": [
3386
- 152,
4055
+ 180,
3387
4056
  "CreateSponsorshipDto!"
3388
4057
  ]
3389
4058
  }
3390
4059
  ],
3391
4060
  "createCountry": [
3392
- 39,
4061
+ 41,
3393
4062
  {
3394
4063
  "input": [
3395
- 159,
4064
+ 187,
3396
4065
  "CreateCountryDto!"
3397
4066
  ]
3398
4067
  }
3399
4068
  ],
3400
4069
  "createState": [
3401
- 38,
4070
+ 40,
3402
4071
  {
3403
4072
  "input": [
3404
- 160,
4073
+ 188,
3405
4074
  "CreateStateDto!"
3406
4075
  ]
3407
4076
  }
3408
4077
  ],
3409
4078
  "createCity": [
3410
- 37,
4079
+ 39,
3411
4080
  {
3412
4081
  "input": [
3413
- 161,
4082
+ 189,
3414
4083
  "CreateCityDto!"
3415
4084
  ]
3416
4085
  }
@@ -3419,7 +4088,7 @@ exports.default = {
3419
4088
  28,
3420
4089
  {
3421
4090
  "input": [
3422
- 117,
4091
+ 142,
3423
4092
  "RegisterUserDto!"
3424
4093
  ]
3425
4094
  }
@@ -3428,7 +4097,7 @@ exports.default = {
3428
4097
  3,
3429
4098
  {
3430
4099
  "input": [
3431
- 94,
4100
+ 117,
3432
4101
  "VerifyCodeDto!"
3433
4102
  ]
3434
4103
  }
@@ -3437,7 +4106,7 @@ exports.default = {
3437
4106
  0,
3438
4107
  {
3439
4108
  "input": [
3440
- 94,
4109
+ 117,
3441
4110
  "VerifyCodeDto!"
3442
4111
  ]
3443
4112
  }
@@ -3446,7 +4115,7 @@ exports.default = {
3446
4115
  0,
3447
4116
  {
3448
4117
  "input": [
3449
- 117,
4118
+ 142,
3450
4119
  "RegisterUserDto!"
3451
4120
  ]
3452
4121
  }
@@ -3455,7 +4124,7 @@ exports.default = {
3455
4124
  0,
3456
4125
  {
3457
4126
  "input": [
3458
- 117,
4127
+ 142,
3459
4128
  "RegisterUserDto!"
3460
4129
  ]
3461
4130
  }
@@ -3474,16 +4143,16 @@ exports.default = {
3474
4143
  }
3475
4144
  ],
3476
4145
  "handleStravaCallback": [
3477
- 84,
4146
+ 94,
3478
4147
  {
3479
4148
  "data": [
3480
- 162,
4149
+ 190,
3481
4150
  "RegisterStravaDto!"
3482
4151
  ]
3483
4152
  }
3484
4153
  ],
3485
4154
  "refreshStravaToken": [
3486
- 84,
4155
+ 94,
3487
4156
  {
3488
4157
  "input": [
3489
4158
  1,
@@ -3492,50 +4161,80 @@ exports.default = {
3492
4161
  }
3493
4162
  ],
3494
4163
  "createSportsEvent": [
3495
- 69,
4164
+ 71,
3496
4165
  {
3497
4166
  "input": [
3498
- 163,
4167
+ 191,
3499
4168
  "CreateSportEventDto!"
3500
4169
  ]
3501
4170
  }
3502
4171
  ],
4172
+ "setFundingStatus": [
4173
+ 82,
4174
+ {
4175
+ "input": [
4176
+ 150,
4177
+ "SetFundingStatusDto!"
4178
+ ]
4179
+ }
4180
+ ],
3503
4181
  "createFundingCampaign": [
3504
- 80,
4182
+ 82,
3505
4183
  {
3506
4184
  "input": [
3507
- 123,
4185
+ 148,
3508
4186
  "CreateFundingCampaignDto!"
3509
4187
  ]
3510
4188
  }
3511
4189
  ],
3512
4190
  "createMembershipOrganization": [
3513
- 74,
4191
+ 76,
3514
4192
  {
3515
4193
  "input": [
3516
- 125,
4194
+ 151,
3517
4195
  "CreateMembershipOrganizationDto!"
3518
4196
  ]
3519
4197
  }
3520
4198
  ],
3521
4199
  "createAthleteMembershipAffilation": [
3522
- 76,
4200
+ 78,
3523
4201
  {
3524
4202
  "input": [
3525
- 127,
4203
+ 152,
3526
4204
  "CreateAthleteMembershipDto!"
3527
4205
  ]
3528
4206
  }
3529
4207
  ],
3530
4208
  "deleteAthleteMembershipAffilation": [
3531
- 87,
4209
+ 99,
3532
4210
  {
3533
4211
  "input": [
3534
- 104,
4212
+ 127,
3535
4213
  "DeleteSingleValueDto!"
3536
4214
  ]
3537
4215
  }
3538
4216
  ],
4217
+ "createStripeAccount": [
4218
+ 90,
4219
+ {
4220
+ "input": [
4221
+ 192,
4222
+ "CreateStripeAccountDto!"
4223
+ ]
4224
+ }
4225
+ ],
4226
+ "createAthleteStripeSession": [
4227
+ 95
4228
+ ],
4229
+ "createStripeCheckoutSession": [
4230
+ 96,
4231
+ {
4232
+ "input": [
4233
+ 153,
4234
+ "DonationCheckoutDto!"
4235
+ ]
4236
+ }
4237
+ ],
3539
4238
  "__typename": [
3540
4239
  1
3541
4240
  ]
@@ -3643,13 +4342,13 @@ exports.default = {
3643
4342
  1
3644
4343
  ],
3645
4344
  "logo": [
3646
- 126
4345
+ 132
3647
4346
  ],
3648
4347
  "banner": [
3649
- 126
4348
+ 132
3650
4349
  ],
3651
4350
  "translations": [
3652
- 143
4351
+ 170
3653
4352
  ],
3654
4353
  "__typename": [
3655
4354
  1
@@ -3672,10 +4371,10 @@ exports.default = {
3672
4371
  1
3673
4372
  ],
3674
4373
  "logo": [
3675
- 126
4374
+ 132
3676
4375
  ],
3677
4376
  "banner": [
3678
- 126
4377
+ 132
3679
4378
  ],
3680
4379
  "__typename": [
3681
4380
  1
@@ -3780,10 +4479,10 @@ exports.default = {
3780
4479
  1
3781
4480
  ],
3782
4481
  "profilePicture": [
3783
- 126
4482
+ 132
3784
4483
  ],
3785
4484
  "cardPicture": [
3786
- 126
4485
+ 132
3787
4486
  ],
3788
4487
  "__typename": [
3789
4488
  1
@@ -3800,6 +4499,17 @@ exports.default = {
3800
4499
  1
3801
4500
  ]
3802
4501
  },
4502
+ "EditPictureDto": {
4503
+ "field": [
4504
+ 1
4505
+ ],
4506
+ "newPicture": [
4507
+ 132
4508
+ ],
4509
+ "__typename": [
4510
+ 1
4511
+ ]
4512
+ },
3803
4513
  "CreateSportDto": {
3804
4514
  "name": [
3805
4515
  1
@@ -3833,7 +4543,7 @@ exports.default = {
3833
4543
  17
3834
4544
  ],
3835
4545
  "translations": [
3836
- 151
4546
+ 179
3837
4547
  ],
3838
4548
  "__typename": [
3839
4549
  1
@@ -3867,10 +4577,10 @@ exports.default = {
3867
4577
  17
3868
4578
  ],
3869
4579
  "banner": [
3870
- 126
4580
+ 132
3871
4581
  ],
3872
4582
  "criteria": [
3873
- 153
4583
+ 181
3874
4584
  ],
3875
4585
  "deadline": [
3876
4586
  14
@@ -3879,13 +4589,13 @@ exports.default = {
3879
4589
  14
3880
4590
  ],
3881
4591
  "duration": [
3882
- 155
4592
+ 183
3883
4593
  ],
3884
4594
  "sponsorshipItems": [
3885
- 156
4595
+ 184
3886
4596
  ],
3887
4597
  "commitments": [
3888
- 157
4598
+ 185
3889
4599
  ],
3890
4600
  "terms": [
3891
4601
  1
@@ -3897,7 +4607,7 @@ exports.default = {
3897
4607
  2
3898
4608
  ],
3899
4609
  "translations": [
3900
- 158
4610
+ 186
3901
4611
  ],
3902
4612
  "__typename": [
3903
4613
  1
@@ -3911,7 +4621,7 @@ exports.default = {
3911
4621
  1
3912
4622
  ],
3913
4623
  "qualificationsBag": [
3914
- 154
4624
+ 182
3915
4625
  ],
3916
4626
  "__typename": [
3917
4627
  1
@@ -3919,28 +4629,28 @@ exports.default = {
3919
4629
  },
3920
4630
  "QualificationsBagDto": {
3921
4631
  "ageQualifications": [
3922
- 109
4632
+ 134
3923
4633
  ],
3924
4634
  "genderQualifications": [
3925
- 110
4635
+ 135
3926
4636
  ],
3927
4637
  "scoreQualifications": [
3928
- 112
4638
+ 137
3929
4639
  ],
3930
4640
  "locationQualifications": [
3931
- 113
4641
+ 138
3932
4642
  ],
3933
4643
  "nationalityQualifications": [
3934
- 111
4644
+ 136
3935
4645
  ],
3936
4646
  "distanceQualifications": [
3937
- 114
4647
+ 139
3938
4648
  ],
3939
4649
  "sportsQualifications": [
3940
- 115
4650
+ 140
3941
4651
  ],
3942
4652
  "levelQualifications": [
3943
- 116
4653
+ 141
3944
4654
  ],
3945
4655
  "__typename": [
3946
4656
  1
@@ -4017,7 +4727,7 @@ exports.default = {
4017
4727
  1
4018
4728
  ],
4019
4729
  "banner": [
4020
- 126
4730
+ 132
4021
4731
  ],
4022
4732
  "terms": [
4023
4733
  1
@@ -4135,7 +4845,21 @@ exports.default = {
4135
4845
  1
4136
4846
  ],
4137
4847
  "banner": [
4138
- 126
4848
+ 132
4849
+ ],
4850
+ "__typename": [
4851
+ 1
4852
+ ]
4853
+ },
4854
+ "CreateStripeAccountDto": {
4855
+ "countryId": [
4856
+ 1
4857
+ ],
4858
+ "acceptedTermsId": [
4859
+ 1
4860
+ ],
4861
+ "acceptedPrivacyId": [
4862
+ 1
4139
4863
  ],
4140
4864
  "__typename": [
4141
4865
  1