@vertikalx/vtx-backend-client 1.0.0-dev.17 → 1.0.0-dev.19
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/response-builder.d.ts +4 -0
- package/src/api/response-builder.js +63 -0
- package/src/api/response-builder.js.map +1 -0
- package/src/api/vtx-base-api.d.ts +5 -1
- package/src/api/vtx-base-api.js +229 -2
- package/src/api/vtx-base-api.js.map +1 -1
- package/src/client/runtime/createClient.d.ts +4 -10
- package/src/client/runtime/generateGraphqlOperation.d.ts +1 -1
- package/src/client/schema.d.ts +154 -2
- package/src/client/schema.graphql +75 -1
- package/src/client/schema.js +22 -1
- package/src/client/schema.js.map +1 -1
- package/src/client/types.d.ts +92 -1
- package/src/client/types.js +271 -33
- 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.d.ts
CHANGED
|
@@ -202,14 +202,35 @@ declare const _default: {
|
|
|
202
202
|
subscriber: number[];
|
|
203
203
|
__typename: number[];
|
|
204
204
|
};
|
|
205
|
+
AWSS3File: {
|
|
206
|
+
_id: number[];
|
|
207
|
+
name: number[];
|
|
208
|
+
contentType: number[];
|
|
209
|
+
size: number[];
|
|
210
|
+
useType: number[];
|
|
211
|
+
url: number[];
|
|
212
|
+
key: number[];
|
|
213
|
+
pendingDelete: number[];
|
|
214
|
+
__typename: number[];
|
|
215
|
+
};
|
|
205
216
|
HttpRequestField: {
|
|
206
217
|
key: number[];
|
|
207
218
|
value: number[];
|
|
208
219
|
__typename: number[];
|
|
209
220
|
};
|
|
210
221
|
AWSS3UploadUrl: {
|
|
211
|
-
|
|
222
|
+
uploadUrl: number[];
|
|
212
223
|
fields: number[];
|
|
224
|
+
downloadUrl: number[];
|
|
225
|
+
bucket: number[];
|
|
226
|
+
key: number[];
|
|
227
|
+
__typename: number[];
|
|
228
|
+
};
|
|
229
|
+
AWSS3CallResult: {
|
|
230
|
+
httpStatus: number[];
|
|
231
|
+
result: number[];
|
|
232
|
+
message: number[];
|
|
233
|
+
errors: number[];
|
|
213
234
|
__typename: number[];
|
|
214
235
|
};
|
|
215
236
|
BrandStatsType: {
|
|
@@ -226,6 +247,8 @@ declare const _default: {
|
|
|
226
247
|
name: number[];
|
|
227
248
|
slogan: number[];
|
|
228
249
|
description: number[];
|
|
250
|
+
logo: number[];
|
|
251
|
+
banner: number[];
|
|
229
252
|
__typename: number[];
|
|
230
253
|
};
|
|
231
254
|
Brand: {
|
|
@@ -236,6 +259,8 @@ declare const _default: {
|
|
|
236
259
|
description: number[];
|
|
237
260
|
approved: number[];
|
|
238
261
|
published: number[];
|
|
262
|
+
logo: number[];
|
|
263
|
+
banner: number[];
|
|
239
264
|
stats: number[];
|
|
240
265
|
operatorIds: number[];
|
|
241
266
|
translations: number[];
|
|
@@ -260,6 +285,11 @@ declare const _default: {
|
|
|
260
285
|
nationalityIso2: number[];
|
|
261
286
|
__typename: number[];
|
|
262
287
|
};
|
|
288
|
+
Sport: {
|
|
289
|
+
_id: number[];
|
|
290
|
+
name: number[];
|
|
291
|
+
__typename: number[];
|
|
292
|
+
};
|
|
263
293
|
Query: {
|
|
264
294
|
tenant: (number | {
|
|
265
295
|
_id: (string | number)[];
|
|
@@ -302,6 +332,10 @@ declare const _default: {
|
|
|
302
332
|
findAthleteById: (number | {
|
|
303
333
|
athleteId: (string | number)[];
|
|
304
334
|
})[];
|
|
335
|
+
sports: number[];
|
|
336
|
+
findSportById: (number | {
|
|
337
|
+
sportId: (string | number)[];
|
|
338
|
+
})[];
|
|
305
339
|
__typename: number[];
|
|
306
340
|
};
|
|
307
341
|
AWSS3GetUploadDto: {
|
|
@@ -328,12 +362,27 @@ declare const _default: {
|
|
|
328
362
|
createTenantUserTokenFromEmailAndUri: (number | {
|
|
329
363
|
requestTokenInfoDto: (string | number)[];
|
|
330
364
|
})[];
|
|
365
|
+
refreshTenantToken: (number | {
|
|
366
|
+
dto: (string | number)[];
|
|
367
|
+
})[];
|
|
331
368
|
createNonTenantedUserWithLogin: (number | {
|
|
332
369
|
user: (string | number)[];
|
|
333
370
|
})[];
|
|
334
371
|
createNonTenantUserTokenFromEmail: (number | {
|
|
335
372
|
email: (string | number)[];
|
|
336
373
|
})[];
|
|
374
|
+
refreshToken: (number | {
|
|
375
|
+
dto: (string | number)[];
|
|
376
|
+
})[];
|
|
377
|
+
deleteUploadedUseTypeFile: (number | {
|
|
378
|
+
input: (string | number)[];
|
|
379
|
+
})[];
|
|
380
|
+
deleteUploadedBucketFile: (number | {
|
|
381
|
+
input: (string | number)[];
|
|
382
|
+
})[];
|
|
383
|
+
registerS3UploadedFile: (number | {
|
|
384
|
+
input: (string | number)[];
|
|
385
|
+
})[];
|
|
337
386
|
createIndustry: (number | {
|
|
338
387
|
input: (string | number)[];
|
|
339
388
|
})[];
|
|
@@ -349,6 +398,13 @@ declare const _default: {
|
|
|
349
398
|
registerAthlete: (number | {
|
|
350
399
|
input: (string | number)[];
|
|
351
400
|
})[];
|
|
401
|
+
createSport: (number | {
|
|
402
|
+
input: (string | number)[];
|
|
403
|
+
})[];
|
|
404
|
+
updateSport: (number | {
|
|
405
|
+
sportId: (string | number)[];
|
|
406
|
+
input: (string | number)[];
|
|
407
|
+
})[];
|
|
352
408
|
__typename: number[];
|
|
353
409
|
};
|
|
354
410
|
CreateTenantInput: {
|
|
@@ -373,11 +429,34 @@ declare const _default: {
|
|
|
373
429
|
tenant_uri: number[];
|
|
374
430
|
__typename: number[];
|
|
375
431
|
};
|
|
432
|
+
RefreshTokenInput: {
|
|
433
|
+
refreshToken: number[];
|
|
434
|
+
__typename: number[];
|
|
435
|
+
};
|
|
376
436
|
CreateActiveUserInput: {
|
|
377
437
|
loginEmail: number[];
|
|
378
438
|
password: number[];
|
|
379
439
|
__typename: number[];
|
|
380
440
|
};
|
|
441
|
+
AWSS3DeleteUseTypeFileDto: {
|
|
442
|
+
name: number[];
|
|
443
|
+
useType: number[];
|
|
444
|
+
__typename: number[];
|
|
445
|
+
};
|
|
446
|
+
AWSS3DeleteBucketFileDto: {
|
|
447
|
+
key: number[];
|
|
448
|
+
bucket: number[];
|
|
449
|
+
credentialsId: number[];
|
|
450
|
+
__typename: number[];
|
|
451
|
+
};
|
|
452
|
+
AWSS3UploadedFileDto: {
|
|
453
|
+
key: number[];
|
|
454
|
+
useType: number[];
|
|
455
|
+
contentType: number[];
|
|
456
|
+
originalFileName: number[];
|
|
457
|
+
fileSize: number[];
|
|
458
|
+
__typename: number[];
|
|
459
|
+
};
|
|
381
460
|
CreateIndustryDto: {
|
|
382
461
|
name: number[];
|
|
383
462
|
__typename: number[];
|
|
@@ -387,6 +466,8 @@ declare const _default: {
|
|
|
387
466
|
description: number[];
|
|
388
467
|
slogan: number[];
|
|
389
468
|
website: number[];
|
|
469
|
+
logo: number[];
|
|
470
|
+
banner: number[];
|
|
390
471
|
translations: number[];
|
|
391
472
|
__typename: number[];
|
|
392
473
|
};
|
|
@@ -396,6 +477,8 @@ declare const _default: {
|
|
|
396
477
|
name: number[];
|
|
397
478
|
description: number[];
|
|
398
479
|
slogan: number[];
|
|
480
|
+
logo: number[];
|
|
481
|
+
banner: number[];
|
|
399
482
|
__typename: number[];
|
|
400
483
|
};
|
|
401
484
|
RegisterSponsorInput: {
|
|
@@ -430,6 +513,14 @@ declare const _default: {
|
|
|
430
513
|
mainSport: number[];
|
|
431
514
|
__typename: number[];
|
|
432
515
|
};
|
|
516
|
+
CreateSportDto: {
|
|
517
|
+
name: number[];
|
|
518
|
+
__typename: number[];
|
|
519
|
+
};
|
|
520
|
+
UpdateSportDto: {
|
|
521
|
+
name: number[];
|
|
522
|
+
__typename: number[];
|
|
523
|
+
};
|
|
433
524
|
};
|
|
434
525
|
};
|
|
435
526
|
export default _default;
|
package/src/client/types.js
CHANGED
|
@@ -519,6 +519,35 @@ exports.default = {
|
|
|
519
519
|
1
|
|
520
520
|
]
|
|
521
521
|
},
|
|
522
|
+
"AWSS3File": {
|
|
523
|
+
"_id": [
|
|
524
|
+
1
|
|
525
|
+
],
|
|
526
|
+
"name": [
|
|
527
|
+
1
|
|
528
|
+
],
|
|
529
|
+
"contentType": [
|
|
530
|
+
1
|
|
531
|
+
],
|
|
532
|
+
"size": [
|
|
533
|
+
16
|
|
534
|
+
],
|
|
535
|
+
"useType": [
|
|
536
|
+
1
|
|
537
|
+
],
|
|
538
|
+
"url": [
|
|
539
|
+
1
|
|
540
|
+
],
|
|
541
|
+
"key": [
|
|
542
|
+
1
|
|
543
|
+
],
|
|
544
|
+
"pendingDelete": [
|
|
545
|
+
2
|
|
546
|
+
],
|
|
547
|
+
"__typename": [
|
|
548
|
+
1
|
|
549
|
+
]
|
|
550
|
+
},
|
|
522
551
|
"HttpRequestField": {
|
|
523
552
|
"key": [
|
|
524
553
|
1
|
|
@@ -531,11 +560,37 @@ exports.default = {
|
|
|
531
560
|
]
|
|
532
561
|
},
|
|
533
562
|
"AWSS3UploadUrl": {
|
|
534
|
-
"
|
|
563
|
+
"uploadUrl": [
|
|
535
564
|
1
|
|
536
565
|
],
|
|
537
566
|
"fields": [
|
|
538
|
-
|
|
567
|
+
26
|
|
568
|
+
],
|
|
569
|
+
"downloadUrl": [
|
|
570
|
+
1
|
|
571
|
+
],
|
|
572
|
+
"bucket": [
|
|
573
|
+
1
|
|
574
|
+
],
|
|
575
|
+
"key": [
|
|
576
|
+
1
|
|
577
|
+
],
|
|
578
|
+
"__typename": [
|
|
579
|
+
1
|
|
580
|
+
]
|
|
581
|
+
},
|
|
582
|
+
"AWSS3CallResult": {
|
|
583
|
+
"httpStatus": [
|
|
584
|
+
16
|
|
585
|
+
],
|
|
586
|
+
"result": [
|
|
587
|
+
1
|
|
588
|
+
],
|
|
589
|
+
"message": [
|
|
590
|
+
1
|
|
591
|
+
],
|
|
592
|
+
"errors": [
|
|
593
|
+
1
|
|
539
594
|
],
|
|
540
595
|
"__typename": [
|
|
541
596
|
1
|
|
@@ -577,6 +632,12 @@ exports.default = {
|
|
|
577
632
|
"description": [
|
|
578
633
|
1
|
|
579
634
|
],
|
|
635
|
+
"logo": [
|
|
636
|
+
25
|
|
637
|
+
],
|
|
638
|
+
"banner": [
|
|
639
|
+
25
|
|
640
|
+
],
|
|
580
641
|
"__typename": [
|
|
581
642
|
1
|
|
582
643
|
]
|
|
@@ -603,14 +664,20 @@ exports.default = {
|
|
|
603
664
|
"published": [
|
|
604
665
|
2
|
|
605
666
|
],
|
|
667
|
+
"logo": [
|
|
668
|
+
25
|
|
669
|
+
],
|
|
670
|
+
"banner": [
|
|
671
|
+
25
|
|
672
|
+
],
|
|
606
673
|
"stats": [
|
|
607
|
-
|
|
674
|
+
29
|
|
608
675
|
],
|
|
609
676
|
"operatorIds": [
|
|
610
677
|
1
|
|
611
678
|
],
|
|
612
679
|
"translations": [
|
|
613
|
-
|
|
680
|
+
30
|
|
614
681
|
],
|
|
615
682
|
"__typename": [
|
|
616
683
|
1
|
|
@@ -661,6 +728,17 @@ exports.default = {
|
|
|
661
728
|
1
|
|
662
729
|
]
|
|
663
730
|
},
|
|
731
|
+
"Sport": {
|
|
732
|
+
"_id": [
|
|
733
|
+
1
|
|
734
|
+
],
|
|
735
|
+
"name": [
|
|
736
|
+
1
|
|
737
|
+
],
|
|
738
|
+
"__typename": [
|
|
739
|
+
1
|
|
740
|
+
]
|
|
741
|
+
},
|
|
664
742
|
"Query": {
|
|
665
743
|
"tenant": [
|
|
666
744
|
8,
|
|
@@ -714,19 +792,19 @@ exports.default = {
|
|
|
714
792
|
}
|
|
715
793
|
],
|
|
716
794
|
"getUploadUrl": [
|
|
717
|
-
|
|
795
|
+
27,
|
|
718
796
|
{
|
|
719
797
|
"input": [
|
|
720
|
-
|
|
798
|
+
37,
|
|
721
799
|
"AWSS3GetUploadDto!"
|
|
722
800
|
]
|
|
723
801
|
}
|
|
724
802
|
],
|
|
725
803
|
"industries": [
|
|
726
|
-
|
|
804
|
+
33
|
|
727
805
|
],
|
|
728
806
|
"findIndustryById": [
|
|
729
|
-
|
|
807
|
+
33,
|
|
730
808
|
{
|
|
731
809
|
"industryId": [
|
|
732
810
|
1,
|
|
@@ -735,10 +813,10 @@ exports.default = {
|
|
|
735
813
|
}
|
|
736
814
|
],
|
|
737
815
|
"brands": [
|
|
738
|
-
|
|
816
|
+
31
|
|
739
817
|
],
|
|
740
818
|
"getBrandByName": [
|
|
741
|
-
|
|
819
|
+
31,
|
|
742
820
|
{
|
|
743
821
|
"name": [
|
|
744
822
|
1,
|
|
@@ -751,7 +829,7 @@ exports.default = {
|
|
|
751
829
|
}
|
|
752
830
|
],
|
|
753
831
|
"getBrandTranslation": [
|
|
754
|
-
|
|
832
|
+
30,
|
|
755
833
|
{
|
|
756
834
|
"brandId": [
|
|
757
835
|
1,
|
|
@@ -764,7 +842,7 @@ exports.default = {
|
|
|
764
842
|
}
|
|
765
843
|
],
|
|
766
844
|
"existsValidSponsorForEmail": [
|
|
767
|
-
|
|
845
|
+
32,
|
|
768
846
|
{
|
|
769
847
|
"loginEmail": [
|
|
770
848
|
1,
|
|
@@ -773,13 +851,13 @@ exports.default = {
|
|
|
773
851
|
}
|
|
774
852
|
],
|
|
775
853
|
"sponsors": [
|
|
776
|
-
|
|
854
|
+
32
|
|
777
855
|
],
|
|
778
856
|
"athlete": [
|
|
779
|
-
|
|
857
|
+
34
|
|
780
858
|
],
|
|
781
859
|
"findAthleteById": [
|
|
782
|
-
|
|
860
|
+
34,
|
|
783
861
|
{
|
|
784
862
|
"athleteId": [
|
|
785
863
|
1,
|
|
@@ -787,6 +865,18 @@ exports.default = {
|
|
|
787
865
|
]
|
|
788
866
|
}
|
|
789
867
|
],
|
|
868
|
+
"sports": [
|
|
869
|
+
35
|
|
870
|
+
],
|
|
871
|
+
"findSportById": [
|
|
872
|
+
35,
|
|
873
|
+
{
|
|
874
|
+
"sportId": [
|
|
875
|
+
1,
|
|
876
|
+
"String!"
|
|
877
|
+
]
|
|
878
|
+
}
|
|
879
|
+
],
|
|
790
880
|
"__typename": [
|
|
791
881
|
1
|
|
792
882
|
]
|
|
@@ -807,7 +897,7 @@ exports.default = {
|
|
|
807
897
|
8,
|
|
808
898
|
{
|
|
809
899
|
"tenant": [
|
|
810
|
-
|
|
900
|
+
39,
|
|
811
901
|
"CreateTenantInput!"
|
|
812
902
|
]
|
|
813
903
|
}
|
|
@@ -816,7 +906,7 @@ exports.default = {
|
|
|
816
906
|
0,
|
|
817
907
|
{
|
|
818
908
|
"newKeyInfo": [
|
|
819
|
-
|
|
909
|
+
40,
|
|
820
910
|
"CreateApiKeyInput!"
|
|
821
911
|
]
|
|
822
912
|
}
|
|
@@ -825,7 +915,7 @@ exports.default = {
|
|
|
825
915
|
3,
|
|
826
916
|
{
|
|
827
917
|
"newKeyInfo": [
|
|
828
|
-
|
|
918
|
+
40,
|
|
829
919
|
"CreateApiKeyInput!"
|
|
830
920
|
]
|
|
831
921
|
}
|
|
@@ -834,7 +924,7 @@ exports.default = {
|
|
|
834
924
|
10,
|
|
835
925
|
{
|
|
836
926
|
"tenant": [
|
|
837
|
-
|
|
927
|
+
39,
|
|
838
928
|
"CreateTenantInput!"
|
|
839
929
|
]
|
|
840
930
|
}
|
|
@@ -843,7 +933,7 @@ exports.default = {
|
|
|
843
933
|
11,
|
|
844
934
|
{
|
|
845
935
|
"requestTokenDto": [
|
|
846
|
-
|
|
936
|
+
41,
|
|
847
937
|
"CreateTenantUserTokenDto!"
|
|
848
938
|
]
|
|
849
939
|
}
|
|
@@ -852,16 +942,25 @@ exports.default = {
|
|
|
852
942
|
11,
|
|
853
943
|
{
|
|
854
944
|
"requestTokenInfoDto": [
|
|
855
|
-
|
|
945
|
+
42,
|
|
856
946
|
"CreateTenantUserTokenFromEmailAndUriDto!"
|
|
857
947
|
]
|
|
858
948
|
}
|
|
859
949
|
],
|
|
950
|
+
"refreshTenantToken": [
|
|
951
|
+
4,
|
|
952
|
+
{
|
|
953
|
+
"dto": [
|
|
954
|
+
43,
|
|
955
|
+
"RefreshTokenInput!"
|
|
956
|
+
]
|
|
957
|
+
}
|
|
958
|
+
],
|
|
860
959
|
"createNonTenantedUserWithLogin": [
|
|
861
960
|
7,
|
|
862
961
|
{
|
|
863
962
|
"user": [
|
|
864
|
-
|
|
963
|
+
44,
|
|
865
964
|
"CreateActiveUserInput!"
|
|
866
965
|
]
|
|
867
966
|
}
|
|
@@ -875,51 +974,109 @@ exports.default = {
|
|
|
875
974
|
]
|
|
876
975
|
}
|
|
877
976
|
],
|
|
977
|
+
"refreshToken": [
|
|
978
|
+
4,
|
|
979
|
+
{
|
|
980
|
+
"dto": [
|
|
981
|
+
43,
|
|
982
|
+
"RefreshTokenInput!"
|
|
983
|
+
]
|
|
984
|
+
}
|
|
985
|
+
],
|
|
986
|
+
"deleteUploadedUseTypeFile": [
|
|
987
|
+
28,
|
|
988
|
+
{
|
|
989
|
+
"input": [
|
|
990
|
+
45,
|
|
991
|
+
"AWSS3DeleteUseTypeFileDto!"
|
|
992
|
+
]
|
|
993
|
+
}
|
|
994
|
+
],
|
|
995
|
+
"deleteUploadedBucketFile": [
|
|
996
|
+
28,
|
|
997
|
+
{
|
|
998
|
+
"input": [
|
|
999
|
+
46,
|
|
1000
|
+
"AWSS3DeleteBucketFileDto!"
|
|
1001
|
+
]
|
|
1002
|
+
}
|
|
1003
|
+
],
|
|
1004
|
+
"registerS3UploadedFile": [
|
|
1005
|
+
25,
|
|
1006
|
+
{
|
|
1007
|
+
"input": [
|
|
1008
|
+
47,
|
|
1009
|
+
"AWSS3UploadedFileDto!"
|
|
1010
|
+
]
|
|
1011
|
+
}
|
|
1012
|
+
],
|
|
878
1013
|
"createIndustry": [
|
|
879
|
-
|
|
1014
|
+
33,
|
|
880
1015
|
{
|
|
881
1016
|
"input": [
|
|
882
|
-
|
|
1017
|
+
48,
|
|
883
1018
|
"CreateIndustryDto!"
|
|
884
1019
|
]
|
|
885
1020
|
}
|
|
886
1021
|
],
|
|
887
1022
|
"createBrand": [
|
|
888
|
-
|
|
1023
|
+
31,
|
|
889
1024
|
{
|
|
890
1025
|
"input": [
|
|
891
|
-
|
|
1026
|
+
49,
|
|
892
1027
|
"CreateBrandDto!"
|
|
893
1028
|
]
|
|
894
1029
|
}
|
|
895
1030
|
],
|
|
896
1031
|
"registerSponsor": [
|
|
897
|
-
|
|
1032
|
+
32,
|
|
898
1033
|
{
|
|
899
1034
|
"input": [
|
|
900
|
-
|
|
1035
|
+
51,
|
|
901
1036
|
"RegisterSponsorInput!"
|
|
902
1037
|
]
|
|
903
1038
|
}
|
|
904
1039
|
],
|
|
905
1040
|
"createSponsor": [
|
|
906
|
-
|
|
1041
|
+
32,
|
|
907
1042
|
{
|
|
908
1043
|
"input": [
|
|
909
|
-
|
|
1044
|
+
52,
|
|
910
1045
|
"CreateSponsorDto!"
|
|
911
1046
|
]
|
|
912
1047
|
}
|
|
913
1048
|
],
|
|
914
1049
|
"registerAthlete": [
|
|
915
|
-
|
|
1050
|
+
34,
|
|
916
1051
|
{
|
|
917
1052
|
"input": [
|
|
918
|
-
|
|
1053
|
+
53,
|
|
919
1054
|
"RegisterAthleteDto!"
|
|
920
1055
|
]
|
|
921
1056
|
}
|
|
922
1057
|
],
|
|
1058
|
+
"createSport": [
|
|
1059
|
+
35,
|
|
1060
|
+
{
|
|
1061
|
+
"input": [
|
|
1062
|
+
54,
|
|
1063
|
+
"CreateSportDto!"
|
|
1064
|
+
]
|
|
1065
|
+
}
|
|
1066
|
+
],
|
|
1067
|
+
"updateSport": [
|
|
1068
|
+
35,
|
|
1069
|
+
{
|
|
1070
|
+
"sportId": [
|
|
1071
|
+
1,
|
|
1072
|
+
"String!"
|
|
1073
|
+
],
|
|
1074
|
+
"input": [
|
|
1075
|
+
55,
|
|
1076
|
+
"UpdateSportDto!"
|
|
1077
|
+
]
|
|
1078
|
+
}
|
|
1079
|
+
],
|
|
923
1080
|
"__typename": [
|
|
924
1081
|
1
|
|
925
1082
|
]
|
|
@@ -974,6 +1131,14 @@ exports.default = {
|
|
|
974
1131
|
1
|
|
975
1132
|
]
|
|
976
1133
|
},
|
|
1134
|
+
"RefreshTokenInput": {
|
|
1135
|
+
"refreshToken": [
|
|
1136
|
+
1
|
|
1137
|
+
],
|
|
1138
|
+
"__typename": [
|
|
1139
|
+
1
|
|
1140
|
+
]
|
|
1141
|
+
},
|
|
977
1142
|
"CreateActiveUserInput": {
|
|
978
1143
|
"loginEmail": [
|
|
979
1144
|
1
|
|
@@ -985,6 +1150,51 @@ exports.default = {
|
|
|
985
1150
|
1
|
|
986
1151
|
]
|
|
987
1152
|
},
|
|
1153
|
+
"AWSS3DeleteUseTypeFileDto": {
|
|
1154
|
+
"name": [
|
|
1155
|
+
1
|
|
1156
|
+
],
|
|
1157
|
+
"useType": [
|
|
1158
|
+
1
|
|
1159
|
+
],
|
|
1160
|
+
"__typename": [
|
|
1161
|
+
1
|
|
1162
|
+
]
|
|
1163
|
+
},
|
|
1164
|
+
"AWSS3DeleteBucketFileDto": {
|
|
1165
|
+
"key": [
|
|
1166
|
+
1
|
|
1167
|
+
],
|
|
1168
|
+
"bucket": [
|
|
1169
|
+
1
|
|
1170
|
+
],
|
|
1171
|
+
"credentialsId": [
|
|
1172
|
+
1
|
|
1173
|
+
],
|
|
1174
|
+
"__typename": [
|
|
1175
|
+
1
|
|
1176
|
+
]
|
|
1177
|
+
},
|
|
1178
|
+
"AWSS3UploadedFileDto": {
|
|
1179
|
+
"key": [
|
|
1180
|
+
1
|
|
1181
|
+
],
|
|
1182
|
+
"useType": [
|
|
1183
|
+
1
|
|
1184
|
+
],
|
|
1185
|
+
"contentType": [
|
|
1186
|
+
1
|
|
1187
|
+
],
|
|
1188
|
+
"originalFileName": [
|
|
1189
|
+
1
|
|
1190
|
+
],
|
|
1191
|
+
"fileSize": [
|
|
1192
|
+
16
|
|
1193
|
+
],
|
|
1194
|
+
"__typename": [
|
|
1195
|
+
1
|
|
1196
|
+
]
|
|
1197
|
+
},
|
|
988
1198
|
"CreateIndustryDto": {
|
|
989
1199
|
"name": [
|
|
990
1200
|
1
|
|
@@ -1006,8 +1216,14 @@ exports.default = {
|
|
|
1006
1216
|
"website": [
|
|
1007
1217
|
1
|
|
1008
1218
|
],
|
|
1219
|
+
"logo": [
|
|
1220
|
+
47
|
|
1221
|
+
],
|
|
1222
|
+
"banner": [
|
|
1223
|
+
47
|
|
1224
|
+
],
|
|
1009
1225
|
"translations": [
|
|
1010
|
-
|
|
1226
|
+
50
|
|
1011
1227
|
],
|
|
1012
1228
|
"__typename": [
|
|
1013
1229
|
1
|
|
@@ -1029,6 +1245,12 @@ exports.default = {
|
|
|
1029
1245
|
"slogan": [
|
|
1030
1246
|
1
|
|
1031
1247
|
],
|
|
1248
|
+
"logo": [
|
|
1249
|
+
47
|
|
1250
|
+
],
|
|
1251
|
+
"banner": [
|
|
1252
|
+
47
|
|
1253
|
+
],
|
|
1032
1254
|
"__typename": [
|
|
1033
1255
|
1
|
|
1034
1256
|
]
|
|
@@ -1116,6 +1338,22 @@ exports.default = {
|
|
|
1116
1338
|
"__typename": [
|
|
1117
1339
|
1
|
|
1118
1340
|
]
|
|
1341
|
+
},
|
|
1342
|
+
"CreateSportDto": {
|
|
1343
|
+
"name": [
|
|
1344
|
+
1
|
|
1345
|
+
],
|
|
1346
|
+
"__typename": [
|
|
1347
|
+
1
|
|
1348
|
+
]
|
|
1349
|
+
},
|
|
1350
|
+
"UpdateSportDto": {
|
|
1351
|
+
"name": [
|
|
1352
|
+
1
|
|
1353
|
+
],
|
|
1354
|
+
"__typename": [
|
|
1355
|
+
1
|
|
1356
|
+
]
|
|
1119
1357
|
}
|
|
1120
1358
|
}
|
|
1121
1359
|
};
|