@vertikalx/vtx-backend-client 1.0.0-dev.21 → 1.0.0-dev.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/client/schema.d.ts +346 -12
- package/src/client/schema.graphql +194 -3
- package/src/client/schema.js +102 -11
- package/src/client/schema.js.map +1 -1
- package/src/client/types.d.ts +198 -3
- package/src/client/types.js +515 -38
- package/src/client/types.js.map +1 -1
- package/tsconfig.lib.tsbuildinfo +1 -1
package/src/client/types.js
CHANGED
|
@@ -666,27 +666,235 @@ exports.default = {
|
|
|
666
666
|
1
|
|
667
667
|
]
|
|
668
668
|
},
|
|
669
|
-
"
|
|
669
|
+
"CountryReference": {
|
|
670
670
|
"_id": [
|
|
671
671
|
1
|
|
672
672
|
],
|
|
673
673
|
"name": [
|
|
674
674
|
1
|
|
675
675
|
],
|
|
676
|
-
"
|
|
676
|
+
"__typename": [
|
|
677
|
+
1
|
|
678
|
+
]
|
|
679
|
+
},
|
|
680
|
+
"StateReference": {
|
|
681
|
+
"_id": [
|
|
677
682
|
1
|
|
678
683
|
],
|
|
684
|
+
"name": [
|
|
685
|
+
1
|
|
686
|
+
],
|
|
687
|
+
"country": [
|
|
688
|
+
31
|
|
689
|
+
],
|
|
679
690
|
"__typename": [
|
|
680
691
|
1
|
|
681
692
|
]
|
|
682
693
|
},
|
|
683
|
-
"
|
|
694
|
+
"CityReference": {
|
|
684
695
|
"_id": [
|
|
685
696
|
1
|
|
686
697
|
],
|
|
687
698
|
"name": [
|
|
688
699
|
1
|
|
689
700
|
],
|
|
701
|
+
"state": [
|
|
702
|
+
32
|
|
703
|
+
],
|
|
704
|
+
"__typename": [
|
|
705
|
+
1
|
|
706
|
+
]
|
|
707
|
+
},
|
|
708
|
+
"Qualification": {
|
|
709
|
+
"type": [
|
|
710
|
+
1
|
|
711
|
+
],
|
|
712
|
+
"__typename": [
|
|
713
|
+
1
|
|
714
|
+
]
|
|
715
|
+
},
|
|
716
|
+
"ScoreQualification": {
|
|
717
|
+
"type": [
|
|
718
|
+
1
|
|
719
|
+
],
|
|
720
|
+
"scoreType": [
|
|
721
|
+
1
|
|
722
|
+
],
|
|
723
|
+
"operator": [
|
|
724
|
+
1
|
|
725
|
+
],
|
|
726
|
+
"value": [
|
|
727
|
+
15
|
|
728
|
+
],
|
|
729
|
+
"__typename": [
|
|
730
|
+
1
|
|
731
|
+
]
|
|
732
|
+
},
|
|
733
|
+
"LocationQualification": {
|
|
734
|
+
"type": [
|
|
735
|
+
1
|
|
736
|
+
],
|
|
737
|
+
"operator": [
|
|
738
|
+
1
|
|
739
|
+
],
|
|
740
|
+
"countries": [
|
|
741
|
+
31
|
|
742
|
+
],
|
|
743
|
+
"states": [
|
|
744
|
+
32
|
|
745
|
+
],
|
|
746
|
+
"cities": [
|
|
747
|
+
33
|
|
748
|
+
],
|
|
749
|
+
"__typename": [
|
|
750
|
+
1
|
|
751
|
+
]
|
|
752
|
+
},
|
|
753
|
+
"DistanceQualification": {
|
|
754
|
+
"type": [
|
|
755
|
+
1
|
|
756
|
+
],
|
|
757
|
+
"maxDistance": [
|
|
758
|
+
15
|
|
759
|
+
],
|
|
760
|
+
"latitude": [
|
|
761
|
+
15
|
|
762
|
+
],
|
|
763
|
+
"longitude": [
|
|
764
|
+
15
|
|
765
|
+
],
|
|
766
|
+
"cityId": [
|
|
767
|
+
1
|
|
768
|
+
],
|
|
769
|
+
"__typename": [
|
|
770
|
+
1
|
|
771
|
+
]
|
|
772
|
+
},
|
|
773
|
+
"SportsQualification": {
|
|
774
|
+
"type": [
|
|
775
|
+
1
|
|
776
|
+
],
|
|
777
|
+
"sports": [
|
|
778
|
+
1
|
|
779
|
+
],
|
|
780
|
+
"operator": [
|
|
781
|
+
1
|
|
782
|
+
],
|
|
783
|
+
"__typename": [
|
|
784
|
+
1
|
|
785
|
+
]
|
|
786
|
+
},
|
|
787
|
+
"SportsLevelQualification": {
|
|
788
|
+
"type": [
|
|
789
|
+
1
|
|
790
|
+
],
|
|
791
|
+
"operator": [
|
|
792
|
+
1
|
|
793
|
+
],
|
|
794
|
+
"level": [
|
|
795
|
+
1
|
|
796
|
+
],
|
|
797
|
+
"__typename": [
|
|
798
|
+
1
|
|
799
|
+
]
|
|
800
|
+
},
|
|
801
|
+
"AthleteCriteria": {
|
|
802
|
+
"_id": [
|
|
803
|
+
1
|
|
804
|
+
],
|
|
805
|
+
"label": [
|
|
806
|
+
1
|
|
807
|
+
],
|
|
808
|
+
"qualifications": [
|
|
809
|
+
34
|
|
810
|
+
],
|
|
811
|
+
"__typename": [
|
|
812
|
+
1
|
|
813
|
+
]
|
|
814
|
+
},
|
|
815
|
+
"SponsorshipStats": {
|
|
816
|
+
"totalApplications": [
|
|
817
|
+
15
|
|
818
|
+
],
|
|
819
|
+
"newApplications": [
|
|
820
|
+
15
|
|
821
|
+
],
|
|
822
|
+
"discardedApplications": [
|
|
823
|
+
15
|
|
824
|
+
],
|
|
825
|
+
"selectedApplications": [
|
|
826
|
+
15
|
|
827
|
+
],
|
|
828
|
+
"approvedApplications": [
|
|
829
|
+
15
|
|
830
|
+
],
|
|
831
|
+
"grantedSponsorships": [
|
|
832
|
+
15
|
|
833
|
+
],
|
|
834
|
+
"remainingSponsorships": [
|
|
835
|
+
15
|
|
836
|
+
],
|
|
837
|
+
"__typename": [
|
|
838
|
+
1
|
|
839
|
+
]
|
|
840
|
+
},
|
|
841
|
+
"SponsorshipTranslation": {
|
|
842
|
+
"_id": [
|
|
843
|
+
1
|
|
844
|
+
],
|
|
845
|
+
"sponsorshipId": [
|
|
846
|
+
1
|
|
847
|
+
],
|
|
848
|
+
"language": [
|
|
849
|
+
1
|
|
850
|
+
],
|
|
851
|
+
"title": [
|
|
852
|
+
1
|
|
853
|
+
],
|
|
854
|
+
"description": [
|
|
855
|
+
1
|
|
856
|
+
],
|
|
857
|
+
"terms": [
|
|
858
|
+
1
|
|
859
|
+
],
|
|
860
|
+
"banner": [
|
|
861
|
+
24
|
|
862
|
+
],
|
|
863
|
+
"__typename": [
|
|
864
|
+
1
|
|
865
|
+
]
|
|
866
|
+
},
|
|
867
|
+
"Sponsorship": {
|
|
868
|
+
"_id": [
|
|
869
|
+
1
|
|
870
|
+
],
|
|
871
|
+
"title": [
|
|
872
|
+
1
|
|
873
|
+
],
|
|
874
|
+
"description": [
|
|
875
|
+
1
|
|
876
|
+
],
|
|
877
|
+
"terms": [
|
|
878
|
+
1
|
|
879
|
+
],
|
|
880
|
+
"banner": [
|
|
881
|
+
24
|
|
882
|
+
],
|
|
883
|
+
"stats": [
|
|
884
|
+
41
|
|
885
|
+
],
|
|
886
|
+
"translations": [
|
|
887
|
+
42
|
|
888
|
+
],
|
|
889
|
+
"approved": [
|
|
890
|
+
2
|
|
891
|
+
],
|
|
892
|
+
"published": [
|
|
893
|
+
2
|
|
894
|
+
],
|
|
895
|
+
"criteria": [
|
|
896
|
+
40
|
|
897
|
+
],
|
|
690
898
|
"__typename": [
|
|
691
899
|
1
|
|
692
900
|
]
|
|
@@ -711,6 +919,31 @@ exports.default = {
|
|
|
711
919
|
1
|
|
712
920
|
]
|
|
713
921
|
},
|
|
922
|
+
"Industry": {
|
|
923
|
+
"_id": [
|
|
924
|
+
1
|
|
925
|
+
],
|
|
926
|
+
"name": [
|
|
927
|
+
1
|
|
928
|
+
],
|
|
929
|
+
"__typename": [
|
|
930
|
+
1
|
|
931
|
+
]
|
|
932
|
+
},
|
|
933
|
+
"Sponsor": {
|
|
934
|
+
"_id": [
|
|
935
|
+
1
|
|
936
|
+
],
|
|
937
|
+
"name": [
|
|
938
|
+
1
|
|
939
|
+
],
|
|
940
|
+
"description": [
|
|
941
|
+
1
|
|
942
|
+
],
|
|
943
|
+
"__typename": [
|
|
944
|
+
1
|
|
945
|
+
]
|
|
946
|
+
},
|
|
714
947
|
"Sport": {
|
|
715
948
|
"_id": [
|
|
716
949
|
1
|
|
@@ -722,6 +955,130 @@ exports.default = {
|
|
|
722
955
|
1
|
|
723
956
|
]
|
|
724
957
|
},
|
|
958
|
+
"ScoreQualificationDto": {
|
|
959
|
+
"type": [
|
|
960
|
+
1
|
|
961
|
+
],
|
|
962
|
+
"scoreType": [
|
|
963
|
+
1
|
|
964
|
+
],
|
|
965
|
+
"operator": [
|
|
966
|
+
1
|
|
967
|
+
],
|
|
968
|
+
"value": [
|
|
969
|
+
15
|
|
970
|
+
],
|
|
971
|
+
"__typename": [
|
|
972
|
+
1
|
|
973
|
+
]
|
|
974
|
+
},
|
|
975
|
+
"LocationQualificationDto": {
|
|
976
|
+
"type": [
|
|
977
|
+
1
|
|
978
|
+
],
|
|
979
|
+
"operator": [
|
|
980
|
+
1
|
|
981
|
+
],
|
|
982
|
+
"countries": [
|
|
983
|
+
50
|
|
984
|
+
],
|
|
985
|
+
"states": [
|
|
986
|
+
51
|
|
987
|
+
],
|
|
988
|
+
"cities": [
|
|
989
|
+
52
|
|
990
|
+
],
|
|
991
|
+
"__typename": [
|
|
992
|
+
1
|
|
993
|
+
]
|
|
994
|
+
},
|
|
995
|
+
"CountryReferenceDto": {
|
|
996
|
+
"_id": [
|
|
997
|
+
1
|
|
998
|
+
],
|
|
999
|
+
"name": [
|
|
1000
|
+
1
|
|
1001
|
+
],
|
|
1002
|
+
"__typename": [
|
|
1003
|
+
1
|
|
1004
|
+
]
|
|
1005
|
+
},
|
|
1006
|
+
"StateReferenceDto": {
|
|
1007
|
+
"_id": [
|
|
1008
|
+
1
|
|
1009
|
+
],
|
|
1010
|
+
"name": [
|
|
1011
|
+
1
|
|
1012
|
+
],
|
|
1013
|
+
"country": [
|
|
1014
|
+
50
|
|
1015
|
+
],
|
|
1016
|
+
"__typename": [
|
|
1017
|
+
1
|
|
1018
|
+
]
|
|
1019
|
+
},
|
|
1020
|
+
"CityReferenceDto": {
|
|
1021
|
+
"_id": [
|
|
1022
|
+
1
|
|
1023
|
+
],
|
|
1024
|
+
"name": [
|
|
1025
|
+
1
|
|
1026
|
+
],
|
|
1027
|
+
"state": [
|
|
1028
|
+
51
|
|
1029
|
+
],
|
|
1030
|
+
"__typename": [
|
|
1031
|
+
1
|
|
1032
|
+
]
|
|
1033
|
+
},
|
|
1034
|
+
"DistanceQualificationDto": {
|
|
1035
|
+
"type": [
|
|
1036
|
+
1
|
|
1037
|
+
],
|
|
1038
|
+
"maxDistance": [
|
|
1039
|
+
15
|
|
1040
|
+
],
|
|
1041
|
+
"latitude": [
|
|
1042
|
+
15
|
|
1043
|
+
],
|
|
1044
|
+
"longitude": [
|
|
1045
|
+
15
|
|
1046
|
+
],
|
|
1047
|
+
"cityId": [
|
|
1048
|
+
1
|
|
1049
|
+
],
|
|
1050
|
+
"__typename": [
|
|
1051
|
+
1
|
|
1052
|
+
]
|
|
1053
|
+
},
|
|
1054
|
+
"SportsQualificationDto": {
|
|
1055
|
+
"type": [
|
|
1056
|
+
1
|
|
1057
|
+
],
|
|
1058
|
+
"sports": [
|
|
1059
|
+
1
|
|
1060
|
+
],
|
|
1061
|
+
"operator": [
|
|
1062
|
+
1
|
|
1063
|
+
],
|
|
1064
|
+
"__typename": [
|
|
1065
|
+
1
|
|
1066
|
+
]
|
|
1067
|
+
},
|
|
1068
|
+
"SportsLevelQualificationDto": {
|
|
1069
|
+
"type": [
|
|
1070
|
+
1
|
|
1071
|
+
],
|
|
1072
|
+
"operator": [
|
|
1073
|
+
1
|
|
1074
|
+
],
|
|
1075
|
+
"level": [
|
|
1076
|
+
1
|
|
1077
|
+
],
|
|
1078
|
+
"__typename": [
|
|
1079
|
+
1
|
|
1080
|
+
]
|
|
1081
|
+
},
|
|
725
1082
|
"Query": {
|
|
726
1083
|
"findTenantById": [
|
|
727
1084
|
5,
|
|
@@ -779,16 +1136,16 @@ exports.default = {
|
|
|
779
1136
|
26,
|
|
780
1137
|
{
|
|
781
1138
|
"input": [
|
|
782
|
-
|
|
1139
|
+
57,
|
|
783
1140
|
"AWSS3GetUploadDto!"
|
|
784
1141
|
]
|
|
785
1142
|
}
|
|
786
1143
|
],
|
|
787
1144
|
"industries": [
|
|
788
|
-
|
|
1145
|
+
45
|
|
789
1146
|
],
|
|
790
1147
|
"findIndustryById": [
|
|
791
|
-
|
|
1148
|
+
45,
|
|
792
1149
|
{
|
|
793
1150
|
"industryId": [
|
|
794
1151
|
1,
|
|
@@ -826,7 +1183,7 @@ exports.default = {
|
|
|
826
1183
|
}
|
|
827
1184
|
],
|
|
828
1185
|
"existsValidSponsorForEmail": [
|
|
829
|
-
|
|
1186
|
+
46,
|
|
830
1187
|
{
|
|
831
1188
|
"loginEmail": [
|
|
832
1189
|
1,
|
|
@@ -835,13 +1192,13 @@ exports.default = {
|
|
|
835
1192
|
}
|
|
836
1193
|
],
|
|
837
1194
|
"sponsors": [
|
|
838
|
-
|
|
1195
|
+
46
|
|
839
1196
|
],
|
|
840
1197
|
"athlete": [
|
|
841
|
-
|
|
1198
|
+
44
|
|
842
1199
|
],
|
|
843
1200
|
"findAthleteById": [
|
|
844
|
-
|
|
1201
|
+
44,
|
|
845
1202
|
{
|
|
846
1203
|
"athleteId": [
|
|
847
1204
|
1,
|
|
@@ -850,10 +1207,10 @@ exports.default = {
|
|
|
850
1207
|
}
|
|
851
1208
|
],
|
|
852
1209
|
"sports": [
|
|
853
|
-
|
|
1210
|
+
47
|
|
854
1211
|
],
|
|
855
1212
|
"findSportById": [
|
|
856
|
-
|
|
1213
|
+
47,
|
|
857
1214
|
{
|
|
858
1215
|
"sportId": [
|
|
859
1216
|
1,
|
|
@@ -861,6 +1218,15 @@ exports.default = {
|
|
|
861
1218
|
]
|
|
862
1219
|
}
|
|
863
1220
|
],
|
|
1221
|
+
"getSponsorships": [
|
|
1222
|
+
43,
|
|
1223
|
+
{
|
|
1224
|
+
"sponsorId": [
|
|
1225
|
+
1,
|
|
1226
|
+
"String!"
|
|
1227
|
+
]
|
|
1228
|
+
}
|
|
1229
|
+
],
|
|
864
1230
|
"__typename": [
|
|
865
1231
|
1
|
|
866
1232
|
]
|
|
@@ -881,7 +1247,7 @@ exports.default = {
|
|
|
881
1247
|
5,
|
|
882
1248
|
{
|
|
883
1249
|
"tenant": [
|
|
884
|
-
|
|
1250
|
+
59,
|
|
885
1251
|
"CreateTenantInput!"
|
|
886
1252
|
]
|
|
887
1253
|
}
|
|
@@ -890,7 +1256,7 @@ exports.default = {
|
|
|
890
1256
|
9,
|
|
891
1257
|
{
|
|
892
1258
|
"tenant": [
|
|
893
|
-
|
|
1259
|
+
59,
|
|
894
1260
|
"CreateTenantInput!"
|
|
895
1261
|
]
|
|
896
1262
|
}
|
|
@@ -899,7 +1265,7 @@ exports.default = {
|
|
|
899
1265
|
3,
|
|
900
1266
|
{
|
|
901
1267
|
"user": [
|
|
902
|
-
|
|
1268
|
+
60,
|
|
903
1269
|
"CreateActiveUserInput!"
|
|
904
1270
|
]
|
|
905
1271
|
}
|
|
@@ -917,7 +1283,7 @@ exports.default = {
|
|
|
917
1283
|
0,
|
|
918
1284
|
{
|
|
919
1285
|
"input": [
|
|
920
|
-
|
|
1286
|
+
61,
|
|
921
1287
|
"RegisterUserToDomainFromEmailInput!"
|
|
922
1288
|
]
|
|
923
1289
|
}
|
|
@@ -926,7 +1292,7 @@ exports.default = {
|
|
|
926
1292
|
8,
|
|
927
1293
|
{
|
|
928
1294
|
"dto": [
|
|
929
|
-
|
|
1295
|
+
62,
|
|
930
1296
|
"RefreshTokenInput!"
|
|
931
1297
|
]
|
|
932
1298
|
}
|
|
@@ -935,7 +1301,7 @@ exports.default = {
|
|
|
935
1301
|
27,
|
|
936
1302
|
{
|
|
937
1303
|
"input": [
|
|
938
|
-
|
|
1304
|
+
63,
|
|
939
1305
|
"AWSS3DeleteUseTypeFileDto!"
|
|
940
1306
|
]
|
|
941
1307
|
}
|
|
@@ -944,7 +1310,7 @@ exports.default = {
|
|
|
944
1310
|
27,
|
|
945
1311
|
{
|
|
946
1312
|
"input": [
|
|
947
|
-
|
|
1313
|
+
64,
|
|
948
1314
|
"AWSS3DeleteBucketFileDto!"
|
|
949
1315
|
]
|
|
950
1316
|
}
|
|
@@ -953,16 +1319,16 @@ exports.default = {
|
|
|
953
1319
|
24,
|
|
954
1320
|
{
|
|
955
1321
|
"input": [
|
|
956
|
-
|
|
1322
|
+
65,
|
|
957
1323
|
"AWSS3UploadedFileDto!"
|
|
958
1324
|
]
|
|
959
1325
|
}
|
|
960
1326
|
],
|
|
961
1327
|
"createIndustry": [
|
|
962
|
-
|
|
1328
|
+
45,
|
|
963
1329
|
{
|
|
964
1330
|
"input": [
|
|
965
|
-
|
|
1331
|
+
66,
|
|
966
1332
|
"CreateIndustryDto!"
|
|
967
1333
|
]
|
|
968
1334
|
}
|
|
@@ -971,60 +1337,69 @@ exports.default = {
|
|
|
971
1337
|
30,
|
|
972
1338
|
{
|
|
973
1339
|
"input": [
|
|
974
|
-
|
|
1340
|
+
67,
|
|
975
1341
|
"CreateBrandDto!"
|
|
976
1342
|
]
|
|
977
1343
|
}
|
|
978
1344
|
],
|
|
979
1345
|
"registerSponsor": [
|
|
980
|
-
|
|
1346
|
+
46,
|
|
981
1347
|
{
|
|
982
1348
|
"input": [
|
|
983
|
-
|
|
1349
|
+
69,
|
|
984
1350
|
"RegisterSponsorInput!"
|
|
985
1351
|
]
|
|
986
1352
|
}
|
|
987
1353
|
],
|
|
988
1354
|
"createSponsor": [
|
|
989
|
-
|
|
1355
|
+
46,
|
|
990
1356
|
{
|
|
991
1357
|
"input": [
|
|
992
|
-
|
|
1358
|
+
70,
|
|
993
1359
|
"CreateSponsorDto!"
|
|
994
1360
|
]
|
|
995
1361
|
}
|
|
996
1362
|
],
|
|
997
1363
|
"registerAthlete": [
|
|
998
|
-
|
|
1364
|
+
44,
|
|
999
1365
|
{
|
|
1000
1366
|
"input": [
|
|
1001
|
-
|
|
1367
|
+
71,
|
|
1002
1368
|
"RegisterAthleteDto!"
|
|
1003
1369
|
]
|
|
1004
1370
|
}
|
|
1005
1371
|
],
|
|
1006
1372
|
"createSport": [
|
|
1007
|
-
|
|
1373
|
+
47,
|
|
1008
1374
|
{
|
|
1009
1375
|
"input": [
|
|
1010
|
-
|
|
1376
|
+
72,
|
|
1011
1377
|
"CreateSportDto!"
|
|
1012
1378
|
]
|
|
1013
1379
|
}
|
|
1014
1380
|
],
|
|
1015
1381
|
"updateSport": [
|
|
1016
|
-
|
|
1382
|
+
47,
|
|
1017
1383
|
{
|
|
1018
1384
|
"sportId": [
|
|
1019
1385
|
1,
|
|
1020
1386
|
"String!"
|
|
1021
1387
|
],
|
|
1022
1388
|
"input": [
|
|
1023
|
-
|
|
1389
|
+
73,
|
|
1024
1390
|
"UpdateSportDto!"
|
|
1025
1391
|
]
|
|
1026
1392
|
}
|
|
1027
1393
|
],
|
|
1394
|
+
"createSponsorwhip": [
|
|
1395
|
+
43,
|
|
1396
|
+
{
|
|
1397
|
+
"input": [
|
|
1398
|
+
74,
|
|
1399
|
+
"CreateSponsorshipDto!"
|
|
1400
|
+
]
|
|
1401
|
+
}
|
|
1402
|
+
],
|
|
1028
1403
|
"__typename": [
|
|
1029
1404
|
1
|
|
1030
1405
|
]
|
|
@@ -1149,13 +1524,13 @@ exports.default = {
|
|
|
1149
1524
|
1
|
|
1150
1525
|
],
|
|
1151
1526
|
"logo": [
|
|
1152
|
-
|
|
1527
|
+
65
|
|
1153
1528
|
],
|
|
1154
1529
|
"banner": [
|
|
1155
|
-
|
|
1530
|
+
65
|
|
1156
1531
|
],
|
|
1157
1532
|
"translations": [
|
|
1158
|
-
|
|
1533
|
+
68
|
|
1159
1534
|
],
|
|
1160
1535
|
"__typename": [
|
|
1161
1536
|
1
|
|
@@ -1178,10 +1553,10 @@ exports.default = {
|
|
|
1178
1553
|
1
|
|
1179
1554
|
],
|
|
1180
1555
|
"logo": [
|
|
1181
|
-
|
|
1556
|
+
65
|
|
1182
1557
|
],
|
|
1183
1558
|
"banner": [
|
|
1184
|
-
|
|
1559
|
+
65
|
|
1185
1560
|
],
|
|
1186
1561
|
"__typename": [
|
|
1187
1562
|
1
|
|
@@ -1286,6 +1661,108 @@ exports.default = {
|
|
|
1286
1661
|
"__typename": [
|
|
1287
1662
|
1
|
|
1288
1663
|
]
|
|
1664
|
+
},
|
|
1665
|
+
"CreateSponsorshipDto": {
|
|
1666
|
+
"title": [
|
|
1667
|
+
1
|
|
1668
|
+
],
|
|
1669
|
+
"brandId": [
|
|
1670
|
+
1
|
|
1671
|
+
],
|
|
1672
|
+
"description": [
|
|
1673
|
+
1
|
|
1674
|
+
],
|
|
1675
|
+
"cashValue": [
|
|
1676
|
+
15
|
|
1677
|
+
],
|
|
1678
|
+
"otherValue": [
|
|
1679
|
+
15
|
|
1680
|
+
],
|
|
1681
|
+
"banner": [
|
|
1682
|
+
65
|
|
1683
|
+
],
|
|
1684
|
+
"criteria": [
|
|
1685
|
+
75
|
|
1686
|
+
],
|
|
1687
|
+
"sponsorshipItems": [
|
|
1688
|
+
77
|
|
1689
|
+
],
|
|
1690
|
+
"commitments": [
|
|
1691
|
+
78
|
|
1692
|
+
],
|
|
1693
|
+
"terms": [
|
|
1694
|
+
1
|
|
1695
|
+
],
|
|
1696
|
+
"published": [
|
|
1697
|
+
2
|
|
1698
|
+
],
|
|
1699
|
+
"translations": [
|
|
1700
|
+
79
|
|
1701
|
+
],
|
|
1702
|
+
"__typename": [
|
|
1703
|
+
1
|
|
1704
|
+
]
|
|
1705
|
+
},
|
|
1706
|
+
"AthleteCriteriaDto": {
|
|
1707
|
+
"_id": [
|
|
1708
|
+
1
|
|
1709
|
+
],
|
|
1710
|
+
"label": [
|
|
1711
|
+
1
|
|
1712
|
+
],
|
|
1713
|
+
"qualifications": [
|
|
1714
|
+
76
|
|
1715
|
+
],
|
|
1716
|
+
"__typename": [
|
|
1717
|
+
1
|
|
1718
|
+
]
|
|
1719
|
+
},
|
|
1720
|
+
"QualificationDto": {
|
|
1721
|
+
"type": [
|
|
1722
|
+
1
|
|
1723
|
+
],
|
|
1724
|
+
"__typename": [
|
|
1725
|
+
1
|
|
1726
|
+
]
|
|
1727
|
+
},
|
|
1728
|
+
"SponsorshipItemDto": {
|
|
1729
|
+
"_id": [
|
|
1730
|
+
1
|
|
1731
|
+
],
|
|
1732
|
+
"name": [
|
|
1733
|
+
1
|
|
1734
|
+
],
|
|
1735
|
+
"__typename": [
|
|
1736
|
+
1
|
|
1737
|
+
]
|
|
1738
|
+
},
|
|
1739
|
+
"SponsorshipCommitmentDto": {
|
|
1740
|
+
"_id": [
|
|
1741
|
+
1
|
|
1742
|
+
],
|
|
1743
|
+
"name": [
|
|
1744
|
+
1
|
|
1745
|
+
],
|
|
1746
|
+
"__typename": [
|
|
1747
|
+
1
|
|
1748
|
+
]
|
|
1749
|
+
},
|
|
1750
|
+
"SponsorshipTranslationDto": {
|
|
1751
|
+
"title": [
|
|
1752
|
+
1
|
|
1753
|
+
],
|
|
1754
|
+
"description": [
|
|
1755
|
+
1
|
|
1756
|
+
],
|
|
1757
|
+
"banner": [
|
|
1758
|
+
65
|
|
1759
|
+
],
|
|
1760
|
+
"terms": [
|
|
1761
|
+
1
|
|
1762
|
+
],
|
|
1763
|
+
"__typename": [
|
|
1764
|
+
1
|
|
1765
|
+
]
|
|
1289
1766
|
}
|
|
1290
1767
|
}
|
|
1291
1768
|
};
|