@vertikalx/vtx-backend-client 1.0.0-dev-daniel.171 → 1.0.0-dev-daniel.173
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/vtx-base-api.d.ts +2 -1
- package/src/api/vtx-base-api.js +124 -2
- package/src/api/vtx-base-api.js.map +1 -1
- package/src/client/schema.d.ts +93 -40
- package/src/client/schema.graphql +72 -18
- package/src/client/schema.js +8 -8
- package/src/client/schema.js.map +1 -1
- package/src/client/types.d.ts +74 -18
- package/src/client/types.js +240 -96
- package/src/client/types.js.map +1 -1
- package/tsconfig.lib.tsbuildinfo +1 -1
package/src/client/types.js
CHANGED
|
@@ -1518,13 +1518,10 @@ exports.default = {
|
|
|
1518
1518
|
"_id": [
|
|
1519
1519
|
1
|
|
1520
1520
|
],
|
|
1521
|
-
"totalRequired": [
|
|
1522
|
-
17
|
|
1523
|
-
],
|
|
1524
1521
|
"initialFunds": [
|
|
1525
1522
|
17
|
|
1526
1523
|
],
|
|
1527
|
-
"
|
|
1524
|
+
"totalRequired": [
|
|
1528
1525
|
17
|
|
1529
1526
|
],
|
|
1530
1527
|
"items": [
|
|
@@ -1550,7 +1547,7 @@ exports.default = {
|
|
|
1550
1547
|
"result": [
|
|
1551
1548
|
69
|
|
1552
1549
|
],
|
|
1553
|
-
"
|
|
1550
|
+
"fundRaisingCampaignIds": [
|
|
1554
1551
|
1
|
|
1555
1552
|
],
|
|
1556
1553
|
"budget": [
|
|
@@ -1945,6 +1942,50 @@ exports.default = {
|
|
|
1945
1942
|
1
|
|
1946
1943
|
]
|
|
1947
1944
|
},
|
|
1945
|
+
"FundRaisingCampaign": {
|
|
1946
|
+
"_id": [
|
|
1947
|
+
1
|
|
1948
|
+
],
|
|
1949
|
+
"budgetMode": [
|
|
1950
|
+
1
|
|
1951
|
+
],
|
|
1952
|
+
"status": [
|
|
1953
|
+
1
|
|
1954
|
+
],
|
|
1955
|
+
"title": [
|
|
1956
|
+
1
|
|
1957
|
+
],
|
|
1958
|
+
"motivation": [
|
|
1959
|
+
1
|
|
1960
|
+
],
|
|
1961
|
+
"website": [
|
|
1962
|
+
1
|
|
1963
|
+
],
|
|
1964
|
+
"fundsRequired": [
|
|
1965
|
+
17
|
|
1966
|
+
],
|
|
1967
|
+
"initialFundsObtained": [
|
|
1968
|
+
17
|
|
1969
|
+
],
|
|
1970
|
+
"fundsObtained": [
|
|
1971
|
+
17
|
|
1972
|
+
],
|
|
1973
|
+
"location": [
|
|
1974
|
+
73
|
|
1975
|
+
],
|
|
1976
|
+
"endingDate": [
|
|
1977
|
+
14
|
|
1978
|
+
],
|
|
1979
|
+
"budget": [
|
|
1980
|
+
71
|
|
1981
|
+
],
|
|
1982
|
+
"competitions": [
|
|
1983
|
+
72
|
|
1984
|
+
],
|
|
1985
|
+
"__typename": [
|
|
1986
|
+
1
|
|
1987
|
+
]
|
|
1988
|
+
},
|
|
1948
1989
|
"EditValueResponse": {
|
|
1949
1990
|
"field": [
|
|
1950
1991
|
1
|
|
@@ -1981,7 +2022,7 @@ exports.default = {
|
|
|
1981
2022
|
2
|
|
1982
2023
|
],
|
|
1983
2024
|
"failureReason": [
|
|
1984
|
-
|
|
2025
|
+
86
|
|
1985
2026
|
],
|
|
1986
2027
|
"__typename": [
|
|
1987
2028
|
1
|
|
@@ -2001,47 +2042,6 @@ exports.default = {
|
|
|
2001
2042
|
1
|
|
2002
2043
|
]
|
|
2003
2044
|
},
|
|
2004
|
-
"FundRaisingCampaign": {
|
|
2005
|
-
"_id": [
|
|
2006
|
-
1
|
|
2007
|
-
],
|
|
2008
|
-
"title": [
|
|
2009
|
-
1
|
|
2010
|
-
],
|
|
2011
|
-
"motivation": [
|
|
2012
|
-
1
|
|
2013
|
-
],
|
|
2014
|
-
"website": [
|
|
2015
|
-
1
|
|
2016
|
-
],
|
|
2017
|
-
"fundsRequired": [
|
|
2018
|
-
17
|
|
2019
|
-
],
|
|
2020
|
-
"initialFundsObtained": [
|
|
2021
|
-
17
|
|
2022
|
-
],
|
|
2023
|
-
"fundsObtained": [
|
|
2024
|
-
17
|
|
2025
|
-
],
|
|
2026
|
-
"location": [
|
|
2027
|
-
73
|
|
2028
|
-
],
|
|
2029
|
-
"endingDate": [
|
|
2030
|
-
14
|
|
2031
|
-
],
|
|
2032
|
-
"status": [
|
|
2033
|
-
1
|
|
2034
|
-
],
|
|
2035
|
-
"budget": [
|
|
2036
|
-
71
|
|
2037
|
-
],
|
|
2038
|
-
"competitions": [
|
|
2039
|
-
72
|
|
2040
|
-
],
|
|
2041
|
-
"__typename": [
|
|
2042
|
-
1
|
|
2043
|
-
]
|
|
2044
|
-
},
|
|
2045
2045
|
"DeleteValuesResponse": {
|
|
2046
2046
|
"deleted": [
|
|
2047
2047
|
1
|
|
@@ -2050,7 +2050,7 @@ exports.default = {
|
|
|
2050
2050
|
1
|
|
2051
2051
|
],
|
|
2052
2052
|
"failureReason": [
|
|
2053
|
-
|
|
2053
|
+
86
|
|
2054
2054
|
],
|
|
2055
2055
|
"result": [
|
|
2056
2056
|
1
|
|
@@ -2381,6 +2381,141 @@ exports.default = {
|
|
|
2381
2381
|
1
|
|
2382
2382
|
]
|
|
2383
2383
|
},
|
|
2384
|
+
"BudgetItemDto": {
|
|
2385
|
+
"quantity": [
|
|
2386
|
+
17
|
|
2387
|
+
],
|
|
2388
|
+
"concept": [
|
|
2389
|
+
1
|
|
2390
|
+
],
|
|
2391
|
+
"itemCost": [
|
|
2392
|
+
17
|
|
2393
|
+
],
|
|
2394
|
+
"__typename": [
|
|
2395
|
+
1
|
|
2396
|
+
]
|
|
2397
|
+
},
|
|
2398
|
+
"CreateBudgetItemDto": {
|
|
2399
|
+
"quantity": [
|
|
2400
|
+
17
|
|
2401
|
+
],
|
|
2402
|
+
"concept": [
|
|
2403
|
+
1
|
|
2404
|
+
],
|
|
2405
|
+
"itemCost": [
|
|
2406
|
+
17
|
|
2407
|
+
],
|
|
2408
|
+
"budgetId": [
|
|
2409
|
+
1
|
|
2410
|
+
],
|
|
2411
|
+
"__typename": [
|
|
2412
|
+
1
|
|
2413
|
+
]
|
|
2414
|
+
},
|
|
2415
|
+
"CreateBudgetDto": {
|
|
2416
|
+
"initialFunds": [
|
|
2417
|
+
17
|
|
2418
|
+
],
|
|
2419
|
+
"items": [
|
|
2420
|
+
110
|
|
2421
|
+
],
|
|
2422
|
+
"__typename": [
|
|
2423
|
+
1
|
|
2424
|
+
]
|
|
2425
|
+
},
|
|
2426
|
+
"CreateCompetitionBudgetDto": {
|
|
2427
|
+
"initialFunds": [
|
|
2428
|
+
17
|
|
2429
|
+
],
|
|
2430
|
+
"items": [
|
|
2431
|
+
110
|
|
2432
|
+
],
|
|
2433
|
+
"athleteCompetitionId": [
|
|
2434
|
+
1
|
|
2435
|
+
],
|
|
2436
|
+
"__typename": [
|
|
2437
|
+
1
|
|
2438
|
+
]
|
|
2439
|
+
},
|
|
2440
|
+
"CreateFundingCampaignDto": {
|
|
2441
|
+
"budgetMode": [
|
|
2442
|
+
1
|
|
2443
|
+
],
|
|
2444
|
+
"title": [
|
|
2445
|
+
1
|
|
2446
|
+
],
|
|
2447
|
+
"motivation": [
|
|
2448
|
+
1
|
|
2449
|
+
],
|
|
2450
|
+
"website": [
|
|
2451
|
+
1
|
|
2452
|
+
],
|
|
2453
|
+
"fundsRequired": [
|
|
2454
|
+
17
|
|
2455
|
+
],
|
|
2456
|
+
"initialFundsObtained": [
|
|
2457
|
+
17
|
|
2458
|
+
],
|
|
2459
|
+
"cityId": [
|
|
2460
|
+
1
|
|
2461
|
+
],
|
|
2462
|
+
"endingDate": [
|
|
2463
|
+
14
|
|
2464
|
+
],
|
|
2465
|
+
"budget": [
|
|
2466
|
+
112
|
|
2467
|
+
],
|
|
2468
|
+
"competitionBudgets": [
|
|
2469
|
+
113
|
|
2470
|
+
],
|
|
2471
|
+
"competitionIds": [
|
|
2472
|
+
1
|
|
2473
|
+
],
|
|
2474
|
+
"__typename": [
|
|
2475
|
+
1
|
|
2476
|
+
]
|
|
2477
|
+
},
|
|
2478
|
+
"CreateFundingCampaignForDto": {
|
|
2479
|
+
"budgetMode": [
|
|
2480
|
+
1
|
|
2481
|
+
],
|
|
2482
|
+
"title": [
|
|
2483
|
+
1
|
|
2484
|
+
],
|
|
2485
|
+
"motivation": [
|
|
2486
|
+
1
|
|
2487
|
+
],
|
|
2488
|
+
"website": [
|
|
2489
|
+
1
|
|
2490
|
+
],
|
|
2491
|
+
"fundsRequired": [
|
|
2492
|
+
17
|
|
2493
|
+
],
|
|
2494
|
+
"initialFundsObtained": [
|
|
2495
|
+
17
|
|
2496
|
+
],
|
|
2497
|
+
"cityId": [
|
|
2498
|
+
1
|
|
2499
|
+
],
|
|
2500
|
+
"endingDate": [
|
|
2501
|
+
14
|
|
2502
|
+
],
|
|
2503
|
+
"budget": [
|
|
2504
|
+
112
|
|
2505
|
+
],
|
|
2506
|
+
"competitionBudgets": [
|
|
2507
|
+
113
|
|
2508
|
+
],
|
|
2509
|
+
"competitionIds": [
|
|
2510
|
+
1
|
|
2511
|
+
],
|
|
2512
|
+
"loginEmail": [
|
|
2513
|
+
1
|
|
2514
|
+
],
|
|
2515
|
+
"__typename": [
|
|
2516
|
+
1
|
|
2517
|
+
]
|
|
2518
|
+
},
|
|
2384
2519
|
"Query": {
|
|
2385
2520
|
"findTenantById": [
|
|
2386
2521
|
5,
|
|
@@ -2451,7 +2586,7 @@ exports.default = {
|
|
|
2451
2586
|
31,
|
|
2452
2587
|
{
|
|
2453
2588
|
"input": [
|
|
2454
|
-
|
|
2589
|
+
117,
|
|
2455
2590
|
"AWSS3GetUploadDto!"
|
|
2456
2591
|
]
|
|
2457
2592
|
}
|
|
@@ -2513,7 +2648,7 @@ exports.default = {
|
|
|
2513
2648
|
82,
|
|
2514
2649
|
{
|
|
2515
2650
|
"input": [
|
|
2516
|
-
|
|
2651
|
+
118,
|
|
2517
2652
|
"FindSponsorAthleteInvitationDto!"
|
|
2518
2653
|
]
|
|
2519
2654
|
}
|
|
@@ -2564,7 +2699,7 @@ exports.default = {
|
|
|
2564
2699
|
72,
|
|
2565
2700
|
{
|
|
2566
2701
|
"input": [
|
|
2567
|
-
|
|
2702
|
+
119,
|
|
2568
2703
|
"GetAthleteCompetitionsDto!"
|
|
2569
2704
|
]
|
|
2570
2705
|
}
|
|
@@ -2642,7 +2777,7 @@ exports.default = {
|
|
|
2642
2777
|
0,
|
|
2643
2778
|
{
|
|
2644
2779
|
"input": [
|
|
2645
|
-
|
|
2780
|
+
120,
|
|
2646
2781
|
"FindVtxUserDto!"
|
|
2647
2782
|
]
|
|
2648
2783
|
}
|
|
@@ -2661,7 +2796,7 @@ exports.default = {
|
|
|
2661
2796
|
}
|
|
2662
2797
|
],
|
|
2663
2798
|
"getUserImagesFromEmail": [
|
|
2664
|
-
|
|
2799
|
+
88,
|
|
2665
2800
|
{
|
|
2666
2801
|
"loginEmail": [
|
|
2667
2802
|
1,
|
|
@@ -2676,7 +2811,7 @@ exports.default = {
|
|
|
2676
2811
|
68,
|
|
2677
2812
|
{
|
|
2678
2813
|
"input": [
|
|
2679
|
-
|
|
2814
|
+
121,
|
|
2680
2815
|
"GetSportEventsDto!"
|
|
2681
2816
|
]
|
|
2682
2817
|
}
|
|
@@ -2742,7 +2877,7 @@ exports.default = {
|
|
|
2742
2877
|
5,
|
|
2743
2878
|
{
|
|
2744
2879
|
"tenant": [
|
|
2745
|
-
|
|
2880
|
+
123,
|
|
2746
2881
|
"CreateTenantInput!"
|
|
2747
2882
|
]
|
|
2748
2883
|
}
|
|
@@ -2751,7 +2886,7 @@ exports.default = {
|
|
|
2751
2886
|
11,
|
|
2752
2887
|
{
|
|
2753
2888
|
"tenant": [
|
|
2754
|
-
|
|
2889
|
+
123,
|
|
2755
2890
|
"CreateTenantInput!"
|
|
2756
2891
|
]
|
|
2757
2892
|
}
|
|
@@ -2760,7 +2895,7 @@ exports.default = {
|
|
|
2760
2895
|
3,
|
|
2761
2896
|
{
|
|
2762
2897
|
"user": [
|
|
2763
|
-
|
|
2898
|
+
124,
|
|
2764
2899
|
"CreateActiveUserInput!"
|
|
2765
2900
|
]
|
|
2766
2901
|
}
|
|
@@ -2795,7 +2930,7 @@ exports.default = {
|
|
|
2795
2930
|
0,
|
|
2796
2931
|
{
|
|
2797
2932
|
"input": [
|
|
2798
|
-
|
|
2933
|
+
125,
|
|
2799
2934
|
"RegisterUserToDomainFromEmailInput!"
|
|
2800
2935
|
]
|
|
2801
2936
|
}
|
|
@@ -2804,7 +2939,7 @@ exports.default = {
|
|
|
2804
2939
|
8,
|
|
2805
2940
|
{
|
|
2806
2941
|
"dto": [
|
|
2807
|
-
|
|
2942
|
+
126,
|
|
2808
2943
|
"RefreshTokenInput!"
|
|
2809
2944
|
]
|
|
2810
2945
|
}
|
|
@@ -2813,7 +2948,7 @@ exports.default = {
|
|
|
2813
2948
|
32,
|
|
2814
2949
|
{
|
|
2815
2950
|
"input": [
|
|
2816
|
-
|
|
2951
|
+
127,
|
|
2817
2952
|
"AWSS3DeleteUseTypeFileDto!"
|
|
2818
2953
|
]
|
|
2819
2954
|
}
|
|
@@ -2822,7 +2957,7 @@ exports.default = {
|
|
|
2822
2957
|
32,
|
|
2823
2958
|
{
|
|
2824
2959
|
"input": [
|
|
2825
|
-
|
|
2960
|
+
128,
|
|
2826
2961
|
"AWSS3DeleteBucketFileDto!"
|
|
2827
2962
|
]
|
|
2828
2963
|
}
|
|
@@ -2831,7 +2966,7 @@ exports.default = {
|
|
|
2831
2966
|
26,
|
|
2832
2967
|
{
|
|
2833
2968
|
"input": [
|
|
2834
|
-
|
|
2969
|
+
129,
|
|
2835
2970
|
"AWSS3UploadedFileDto!"
|
|
2836
2971
|
]
|
|
2837
2972
|
}
|
|
@@ -2840,7 +2975,7 @@ exports.default = {
|
|
|
2840
2975
|
50,
|
|
2841
2976
|
{
|
|
2842
2977
|
"input": [
|
|
2843
|
-
|
|
2978
|
+
130,
|
|
2844
2979
|
"CreateIndustryDto!"
|
|
2845
2980
|
]
|
|
2846
2981
|
}
|
|
@@ -2849,7 +2984,7 @@ exports.default = {
|
|
|
2849
2984
|
36,
|
|
2850
2985
|
{
|
|
2851
2986
|
"input": [
|
|
2852
|
-
|
|
2987
|
+
131,
|
|
2853
2988
|
"CreateBrandDto!"
|
|
2854
2989
|
]
|
|
2855
2990
|
}
|
|
@@ -2858,7 +2993,7 @@ exports.default = {
|
|
|
2858
2993
|
53,
|
|
2859
2994
|
{
|
|
2860
2995
|
"input": [
|
|
2861
|
-
|
|
2996
|
+
133,
|
|
2862
2997
|
"RegisterSponsorInput!"
|
|
2863
2998
|
]
|
|
2864
2999
|
}
|
|
@@ -2867,7 +3002,7 @@ exports.default = {
|
|
|
2867
3002
|
53,
|
|
2868
3003
|
{
|
|
2869
3004
|
"input": [
|
|
2870
|
-
|
|
3005
|
+
134,
|
|
2871
3006
|
"CreateSponsorDto!"
|
|
2872
3007
|
]
|
|
2873
3008
|
}
|
|
@@ -2885,16 +3020,16 @@ exports.default = {
|
|
|
2885
3020
|
81,
|
|
2886
3021
|
{
|
|
2887
3022
|
"input": [
|
|
2888
|
-
|
|
3023
|
+
135,
|
|
2889
3024
|
"RegisterAthleteDto!"
|
|
2890
3025
|
]
|
|
2891
3026
|
}
|
|
2892
3027
|
],
|
|
2893
3028
|
"editProfileValue": [
|
|
2894
|
-
|
|
3029
|
+
85,
|
|
2895
3030
|
{
|
|
2896
3031
|
"input": [
|
|
2897
|
-
|
|
3032
|
+
136,
|
|
2898
3033
|
"EditValueDto!"
|
|
2899
3034
|
]
|
|
2900
3035
|
}
|
|
@@ -2909,7 +3044,7 @@ exports.default = {
|
|
|
2909
3044
|
}
|
|
2910
3045
|
],
|
|
2911
3046
|
"deleteAthleteCompetition": [
|
|
2912
|
-
|
|
3047
|
+
87,
|
|
2913
3048
|
{
|
|
2914
3049
|
"input": [
|
|
2915
3050
|
98,
|
|
@@ -2921,7 +3056,7 @@ exports.default = {
|
|
|
2921
3056
|
61,
|
|
2922
3057
|
{
|
|
2923
3058
|
"input": [
|
|
2924
|
-
|
|
3059
|
+
137,
|
|
2925
3060
|
"CreateSportDto!"
|
|
2926
3061
|
]
|
|
2927
3062
|
}
|
|
@@ -2930,7 +3065,7 @@ exports.default = {
|
|
|
2930
3065
|
61,
|
|
2931
3066
|
{
|
|
2932
3067
|
"input": [
|
|
2933
|
-
|
|
3068
|
+
138,
|
|
2934
3069
|
"UpdateSportDto!"
|
|
2935
3070
|
]
|
|
2936
3071
|
}
|
|
@@ -2939,7 +3074,7 @@ exports.default = {
|
|
|
2939
3074
|
64,
|
|
2940
3075
|
{
|
|
2941
3076
|
"input": [
|
|
2942
|
-
|
|
3077
|
+
139,
|
|
2943
3078
|
"CreateSportLevelDto!"
|
|
2944
3079
|
]
|
|
2945
3080
|
}
|
|
@@ -2948,7 +3083,7 @@ exports.default = {
|
|
|
2948
3083
|
59,
|
|
2949
3084
|
{
|
|
2950
3085
|
"input": [
|
|
2951
|
-
|
|
3086
|
+
141,
|
|
2952
3087
|
"CreateSponsorshipDto!"
|
|
2953
3088
|
]
|
|
2954
3089
|
}
|
|
@@ -2957,7 +3092,7 @@ exports.default = {
|
|
|
2957
3092
|
39,
|
|
2958
3093
|
{
|
|
2959
3094
|
"input": [
|
|
2960
|
-
|
|
3095
|
+
148,
|
|
2961
3096
|
"CreateCountryDto!"
|
|
2962
3097
|
]
|
|
2963
3098
|
}
|
|
@@ -2966,7 +3101,7 @@ exports.default = {
|
|
|
2966
3101
|
38,
|
|
2967
3102
|
{
|
|
2968
3103
|
"input": [
|
|
2969
|
-
|
|
3104
|
+
149,
|
|
2970
3105
|
"CreateStateDto!"
|
|
2971
3106
|
]
|
|
2972
3107
|
}
|
|
@@ -2975,7 +3110,7 @@ exports.default = {
|
|
|
2975
3110
|
37,
|
|
2976
3111
|
{
|
|
2977
3112
|
"input": [
|
|
2978
|
-
|
|
3113
|
+
150,
|
|
2979
3114
|
"CreateCityDto!"
|
|
2980
3115
|
]
|
|
2981
3116
|
}
|
|
@@ -3042,7 +3177,7 @@ exports.default = {
|
|
|
3042
3177
|
83,
|
|
3043
3178
|
{
|
|
3044
3179
|
"data": [
|
|
3045
|
-
|
|
3180
|
+
151,
|
|
3046
3181
|
"RegisterStravaDto!"
|
|
3047
3182
|
]
|
|
3048
3183
|
}
|
|
@@ -3060,11 +3195,20 @@ exports.default = {
|
|
|
3060
3195
|
68,
|
|
3061
3196
|
{
|
|
3062
3197
|
"input": [
|
|
3063
|
-
|
|
3198
|
+
152,
|
|
3064
3199
|
"CreateSportEventDto!"
|
|
3065
3200
|
]
|
|
3066
3201
|
}
|
|
3067
3202
|
],
|
|
3203
|
+
"createFundingCampaaign": [
|
|
3204
|
+
84,
|
|
3205
|
+
{
|
|
3206
|
+
"input": [
|
|
3207
|
+
114,
|
|
3208
|
+
"CreateFundingCampaignDto!"
|
|
3209
|
+
]
|
|
3210
|
+
}
|
|
3211
|
+
],
|
|
3068
3212
|
"__typename": [
|
|
3069
3213
|
1
|
|
3070
3214
|
]
|
|
@@ -3192,13 +3336,13 @@ exports.default = {
|
|
|
3192
3336
|
1
|
|
3193
3337
|
],
|
|
3194
3338
|
"logo": [
|
|
3195
|
-
|
|
3339
|
+
129
|
|
3196
3340
|
],
|
|
3197
3341
|
"banner": [
|
|
3198
|
-
|
|
3342
|
+
129
|
|
3199
3343
|
],
|
|
3200
3344
|
"translations": [
|
|
3201
|
-
|
|
3345
|
+
132
|
|
3202
3346
|
],
|
|
3203
3347
|
"__typename": [
|
|
3204
3348
|
1
|
|
@@ -3221,10 +3365,10 @@ exports.default = {
|
|
|
3221
3365
|
1
|
|
3222
3366
|
],
|
|
3223
3367
|
"logo": [
|
|
3224
|
-
|
|
3368
|
+
129
|
|
3225
3369
|
],
|
|
3226
3370
|
"banner": [
|
|
3227
|
-
|
|
3371
|
+
129
|
|
3228
3372
|
],
|
|
3229
3373
|
"__typename": [
|
|
3230
3374
|
1
|
|
@@ -3329,10 +3473,10 @@ exports.default = {
|
|
|
3329
3473
|
1
|
|
3330
3474
|
],
|
|
3331
3475
|
"profilePicture": [
|
|
3332
|
-
|
|
3476
|
+
129
|
|
3333
3477
|
],
|
|
3334
3478
|
"cardPicture": [
|
|
3335
|
-
|
|
3479
|
+
129
|
|
3336
3480
|
],
|
|
3337
3481
|
"__typename": [
|
|
3338
3482
|
1
|
|
@@ -3382,7 +3526,7 @@ exports.default = {
|
|
|
3382
3526
|
17
|
|
3383
3527
|
],
|
|
3384
3528
|
"translations": [
|
|
3385
|
-
|
|
3529
|
+
140
|
|
3386
3530
|
],
|
|
3387
3531
|
"__typename": [
|
|
3388
3532
|
1
|
|
@@ -3416,10 +3560,10 @@ exports.default = {
|
|
|
3416
3560
|
17
|
|
3417
3561
|
],
|
|
3418
3562
|
"banner": [
|
|
3419
|
-
|
|
3563
|
+
129
|
|
3420
3564
|
],
|
|
3421
3565
|
"criteria": [
|
|
3422
|
-
|
|
3566
|
+
142
|
|
3423
3567
|
],
|
|
3424
3568
|
"deadline": [
|
|
3425
3569
|
14
|
|
@@ -3428,13 +3572,13 @@ exports.default = {
|
|
|
3428
3572
|
14
|
|
3429
3573
|
],
|
|
3430
3574
|
"duration": [
|
|
3431
|
-
|
|
3575
|
+
144
|
|
3432
3576
|
],
|
|
3433
3577
|
"sponsorshipItems": [
|
|
3434
|
-
|
|
3578
|
+
145
|
|
3435
3579
|
],
|
|
3436
3580
|
"commitments": [
|
|
3437
|
-
|
|
3581
|
+
146
|
|
3438
3582
|
],
|
|
3439
3583
|
"terms": [
|
|
3440
3584
|
1
|
|
@@ -3446,7 +3590,7 @@ exports.default = {
|
|
|
3446
3590
|
2
|
|
3447
3591
|
],
|
|
3448
3592
|
"translations": [
|
|
3449
|
-
|
|
3593
|
+
147
|
|
3450
3594
|
],
|
|
3451
3595
|
"__typename": [
|
|
3452
3596
|
1
|
|
@@ -3460,7 +3604,7 @@ exports.default = {
|
|
|
3460
3604
|
1
|
|
3461
3605
|
],
|
|
3462
3606
|
"qualificationsBag": [
|
|
3463
|
-
|
|
3607
|
+
143
|
|
3464
3608
|
],
|
|
3465
3609
|
"__typename": [
|
|
3466
3610
|
1
|
|
@@ -3566,7 +3710,7 @@ exports.default = {
|
|
|
3566
3710
|
1
|
|
3567
3711
|
],
|
|
3568
3712
|
"banner": [
|
|
3569
|
-
|
|
3713
|
+
129
|
|
3570
3714
|
],
|
|
3571
3715
|
"terms": [
|
|
3572
3716
|
1
|
|
@@ -3681,7 +3825,7 @@ exports.default = {
|
|
|
3681
3825
|
1
|
|
3682
3826
|
],
|
|
3683
3827
|
"banner": [
|
|
3684
|
-
|
|
3828
|
+
129
|
|
3685
3829
|
],
|
|
3686
3830
|
"__typename": [
|
|
3687
3831
|
1
|