@vertikalx/vtx-backend-client 1.0.0-dev.85 → 1.0.0-dev.87

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.
@@ -1,1726 +0,0 @@
1
- type User {
2
- _id: String!
3
- loginEmail: String!
4
- suspended: Boolean!
5
- domains: [DomainCredential!]
6
- loginMethods: [String!]
7
- }
8
-
9
- type UserWithToken {
10
- _id: String!
11
- loginEmail: String!
12
- suspended: Boolean!
13
- domains: [DomainCredential!]
14
- loginMethods: [String!]
15
- token: UserToken!
16
- }
17
-
18
- type BaseTenant {
19
- _id: String!
20
- name: String!
21
- tenant_uri: String!
22
- domain: Domain!
23
- }
24
-
25
- type Tenant {
26
- _id: String!
27
- name: String!
28
- tenant_uri: String!
29
- domain: Domain!
30
- email: String!
31
- owner: User
32
- }
33
-
34
- type Domain {
35
- _id: String!
36
- name: String!
37
- description: String
38
- }
39
-
40
- type DomainCredential {
41
- _id: String!
42
- name: String!
43
- description: String
44
- tenant: BaseTenant
45
- }
46
-
47
- type UserToken {
48
- actualToken: String!
49
- refreshToken: String!
50
- }
51
-
52
- type DecodedToken {
53
- tokenId: String!
54
- systemId: String!
55
- userId: String!
56
- email: String!
57
- refreshTokenId: String!
58
- domains: [DomainCredential!]!
59
- }
60
-
61
- type DecodedRefreshToken {
62
- userId: String!
63
- email: String!
64
- originalTokenId: String!
65
- }
66
-
67
- type TenantWithUserLogin {
68
- _id: String!
69
- name: String!
70
- tenant_uri: String!
71
- domain: Domain!
72
- email: String!
73
- owner: User
74
- user: UserWithToken!
75
- }
76
-
77
- type UriAvailableType {
78
- available: Boolean!
79
- valid: Boolean!
80
- }
81
-
82
- type Agreement {
83
- _id: String!
84
- kind: String!
85
- domain: String!
86
- isActiveAgreement: Boolean!
87
- version: String!
88
- publishedDate: DateTime
89
- unPublishedDate: DateTime
90
- locked: Boolean!
91
- name: String!
92
- description: String
93
- content: String
94
- createdDate: DateTime!
95
- updatedDate: DateTime!
96
- }
97
-
98
- """
99
- A date-time string at UTC, such as 2019-12-03T09:54:33Z, compliant with the date-time format.
100
- """
101
- scalar DateTime
102
-
103
- type BillEntity {
104
- name: String!
105
- taxId: String
106
- line1: String
107
- line2: String
108
- line3: String
109
- city: String
110
- state: String
111
- country: String
112
- zip: String
113
- }
114
-
115
- type InvoiceItem {
116
- _id: String!
117
- unitPrice: Float!
118
- unitTax: Float!
119
- quantity: Float!
120
- unit: String!
121
- itemPrice: Float!
122
- itemTotal: Float!
123
- }
124
-
125
- type Payment {
126
- _id: String!
127
- amount: Float!
128
- currency: String!
129
- datePaid: DateTime!
130
- paymentComment: String
131
- transactionId: String
132
- processorType: String
133
- processorReference: String
134
- paidItemReference: String
135
- payeeReference: String
136
- payorReference: String
137
- paymentMethodType: String
138
- paymentMethodReference: String
139
- }
140
-
141
- type PlaFeature {
142
- _id: String!
143
- title: String!
144
- description: String
145
- quantity: Float
146
- quantityUnit: String
147
- }
148
-
149
- type Plan {
150
- _id: String!
151
- name: String
152
- description: String
153
- prices: [PlanPrice!]!
154
- features: [PlaFeature!]!
155
- isPublic: Boolean!
156
- active: Boolean!
157
- startOfferingDate: DateTime
158
- endOfferingDate: DateTime
159
- termsAndConditions: String
160
- }
161
-
162
- type PlanPrice {
163
- _id: String!
164
- currency: String!
165
- price: Float!
166
- taxMode: String!
167
- period: String!
168
- customDays: Float
169
- plan: Plan
170
- }
171
-
172
- type Invoice {
173
- _id: String!
174
- invoiceDate: DateTime!
175
- billedEntity: BillEntity!
176
- dueDate: DateTime!
177
- billAmount: Float!
178
- tax: Float!
179
- total: Float!
180
- currency: String!
181
- items: [InvoiceItem!]
182
- payment: Payment
183
- }
184
-
185
- type SubscriptionInvoice {
186
- _id: String!
187
- invoice: Invoice!
188
- billedPlan: PlanPrice!
189
- subscriber: PlanSubscription!
190
- }
191
-
192
- type PlanSubscription {
193
- _id: String!
194
- currentPlan: PlanPrice!
195
- billPrice: Float!
196
- billCurrency: String!
197
- billPriceComment: String
198
- lastBillDate: DateTime!
199
- endAccessDate: DateTime!
200
- autoRenew: Boolean!
201
- autoRenewPlan: PlanPrice
202
- autoRenewDate: DateTime!
203
- payments: [SubscriptionPayment!]!
204
- invoices: [SubscriptionInvoice!]!
205
- }
206
-
207
- type SubscriptionPayment {
208
- _id: String!
209
- payment: Payment!
210
- subscriber: PlanSubscription!
211
- }
212
-
213
- type AWSS3File {
214
- _id: String!
215
- name: String
216
- contentType: String
217
- size: Float
218
- useType: String
219
- url: String!
220
- key: String!
221
- pendingDelete: Boolean!
222
- }
223
-
224
- type MagicLink {
225
- _id: String!
226
- code: String!
227
- type: String!
228
- url: String!
229
- expires: DateTime
230
- data: String
231
- isExpired: Boolean!
232
- }
233
-
234
- type VerificationCode {
235
- _id: String!
236
- type: String
237
- recipient: String
238
- expires: DateTime
239
- data: String
240
- isExpired: Boolean!
241
- createdDate: DateTime!
242
- }
243
-
244
- type ErrorInfo {
245
- errorCode: Float!
246
- errorMessage: String!
247
- }
248
-
249
- type HttpRequestField {
250
- key: String!
251
- value: String!
252
- }
253
-
254
- type AWSS3UploadUrl {
255
- uploadUrl: String!
256
- fields: [HttpRequestField!]!
257
- downloadUrl: String!
258
- bucket: String!
259
- key: String!
260
- }
261
-
262
- type AWSS3CallResult {
263
- httpStatus: Float!
264
- result: String!
265
- message: String!
266
- errors: [String!]
267
- }
268
-
269
- type DatabaseFile {
270
- _id: String!
271
- identifier: String!
272
- version: String!
273
- contentType: String!
274
- updated: DateTime!
275
- created: DateTime!
276
- }
277
-
278
- type TextDatabaseFile {
279
- _id: String!
280
- identifier: String!
281
- version: String!
282
- contentType: String!
283
- updated: DateTime!
284
- created: DateTime!
285
- content: String!
286
- }
287
-
288
- type CodeVerificationResponse {
289
- result: String!
290
- code: VerificationCode
291
- error: ErrorInfo
292
- }
293
-
294
- type BrandStats {
295
- campaigns: Float
296
- sponsorships: Float
297
- sports: Float
298
- athletes: Float
299
- }
300
-
301
- type BrandTranslation {
302
- _id: String!
303
- brandId: String!
304
- language: String!
305
- name: String
306
- slogan: String
307
- description: String
308
- logo: AWSS3File
309
- banner: AWSS3File
310
- }
311
-
312
- type Brand {
313
- _id: String!
314
- name: String!
315
- slogan: String
316
- website: String
317
- description: String
318
- approved: Boolean!
319
- published: Boolean!
320
- logo: AWSS3File
321
- banner: AWSS3File
322
- stats: BrandStats
323
- operatorIds: [String!]
324
- translations: [BrandTranslation!]
325
- }
326
-
327
- type City {
328
- _id: String!
329
- name: String!
330
- localizedName: String!
331
- state: State
332
- latitude: Float
333
- longitude: Float
334
- timezone: String
335
- }
336
-
337
- type State {
338
- _id: String!
339
- name: String!
340
- country: Country
341
- cities: [City!]
342
- }
343
-
344
- type Country {
345
- _id: String!
346
- name: String!
347
- states: [State!]
348
- }
349
-
350
- type AgeQualification {
351
- type: String!
352
- value: Float!
353
- operator: String!
354
- }
355
-
356
- type GenderQualification {
357
- type: String!
358
- operator: String!
359
- values: [String!]!
360
- }
361
-
362
- type ScoreQualification {
363
- type: String!
364
- scoreType: String!
365
- operator: String!
366
- value: Float!
367
- }
368
-
369
- type LocationQualification {
370
- type: String!
371
- operator: String!
372
- countries: [Country!]!
373
- states: [State!]!
374
- cities: [City!]!
375
- }
376
-
377
- type NationalityQualification {
378
- type: String!
379
- operator: String!
380
- countries: [Country!]!
381
- }
382
-
383
- type DistanceQualification {
384
- type: String!
385
- maxDistance: Float!
386
- latitude: Float
387
- longitude: Float
388
- cityId: String
389
- }
390
-
391
- type SportsQualification {
392
- type: String!
393
- sports: [String!]!
394
- operator: String!
395
- }
396
-
397
- type SportsLevelQualification {
398
- type: String!
399
- operator: String!
400
- level: String!
401
- }
402
-
403
- type AthleteCriteria {
404
- _id: String!
405
- label: String
406
- qualifications: [QualificationTypeUnion!]
407
- }
408
-
409
- union QualificationTypeUnion = AgeQualification | GenderQualification | ScoreQualification | LocationQualification | NationalityQualification | DistanceQualification | SportsQualification | SportsLevelQualification
410
-
411
- type Industry {
412
- _id: String!
413
- name: String!
414
- }
415
-
416
- type SponsorStats {
417
- sponsoredAthletes: Float!
418
- totalBrands: Float!
419
- activeCampaigns: Float!
420
- activeSponsorships: Float!
421
- }
422
-
423
- type SponsorBrand {
424
- _id: String!
425
- name: String!
426
- slogan: String
427
- website: String
428
- description: String
429
- approved: Boolean!
430
- published: Boolean!
431
- logo: AWSS3File
432
- banner: AWSS3File
433
- stats: BrandStats
434
- operatorIds: [String!]
435
- translations: [BrandTranslation!]
436
- sponsorBrandId: String!
437
- authorizedUse: Boolean!
438
- isAuthorizer: Boolean!
439
- }
440
-
441
- type Sponsor {
442
- _id: String!
443
- name: String!
444
- description: String!
445
- tenant: Tenant!
446
- industry: Industry
447
- stats: SponsorStats
448
- brands: [SponsorBrand!]
449
- sponsorships: [Sponsorship!]
450
- approved: Boolean!
451
- }
452
-
453
- type SponsorshipItem {
454
- _id: String!
455
- quantity: Float!
456
- title: String!
457
- value: Float!
458
- type: String!
459
- }
460
-
461
- type SponsorshipCommitment {
462
- _id: String!
463
- title: String!
464
- details: String
465
- hashTags: String!
466
- media: String!
467
- actionType: String!
468
- frequency: Float
469
- periodicity: String!
470
- autoMeasurable: Boolean!
471
- }
472
-
473
- type Duration {
474
- length: Float!
475
- unit: String!
476
- }
477
-
478
- type SponsorshipStats {
479
- totalSponsorships: Float
480
- totalApplications: Float
481
- newApplications: Float
482
- discardedApplications: Float
483
- selectedApplications: Float
484
- approvedApplications: Float
485
- grantedSponsorships: Float
486
- remainingSponsorships: Float
487
- }
488
-
489
- type SponsorshipTranslation {
490
- _id: String!
491
- sponsorshipId: String!
492
- language: String!
493
- title: String
494
- description: String
495
- terms: String
496
- banner: AWSS3File
497
- }
498
-
499
- type Sponsorship {
500
- _id: String!
501
- title: String!
502
- description: String
503
- cashValue: Float!
504
- otherValue: Float!
505
- brand: Brand
506
- banner: AWSS3File
507
- criteria: AthleteCriteria
508
- deadline: DateTime
509
- startDate: DateTime
510
- duration: Duration!
511
- sponsor: Sponsor
512
- sponsorshipItems: [SponsorshipItem!]
513
- commitments: [SponsorshipCommitment!]
514
- terms: String
515
- stats: SponsorshipStats
516
- isPrivate: Boolean!
517
- approved: Boolean!
518
- published: Boolean!
519
- translations: [SponsorshipTranslation!]
520
- }
521
-
522
- type FollowStats {
523
- followers: Float!
524
- followed: Float!
525
- raves: Float!
526
- favorites: Float!
527
- }
528
-
529
- type Sport {
530
- _id: String!
531
- name: String!
532
- }
533
-
534
- type VtxScores {
535
- vtxScore: Float!
536
- socialScore: Float!
537
- trainingScore: Float!
538
- competitionScore: Float!
539
- }
540
-
541
- type SportLevelTranslation {
542
- _id: String!
543
- language: String!
544
- label: String!
545
- }
546
-
547
- type SportLevel {
548
- _id: String!
549
- label: String!
550
- index: Float!
551
- translations: [SportLevelTranslation!]
552
- }
553
-
554
- type Ranking {
555
- scope: String!
556
- scopeId: String!
557
- scopeName: String!
558
- position: Float!
559
- total: Float!
560
- }
561
-
562
- type AthleteRankings {
563
- worldRanking: Ranking
564
- countryRanking: Ranking
565
- stateRanking: Ranking
566
- cityRanking: Ranking
567
- }
568
-
569
- type Team {
570
- _id: String!
571
- name: String!
572
- description: String
573
- sports: [Sport!]
574
- approved: Boolean
575
- logo: AWSS3File
576
- banner: AWSS3File
577
- }
578
-
579
- type WorldLocation {
580
- _id: String!
581
- userProvidedLatitude: Float
582
- userProvidedLongitude: Float
583
- cityNameGeocode: String
584
- stateNameGeocode: String
585
- countryIso2CodeGeocode: String
586
- timeZoneGeocode: String
587
- latitudeGeocode: Float
588
- longitudeGeocode: Float
589
- city: City
590
- }
591
-
592
- type SportsEvent {
593
- _id: String!
594
- name: String!
595
- mainSport: Sport
596
- eventWebSite: String
597
- startDate: DateTime!
598
- endDate: DateTime
599
- verified: Boolean!
600
- banner: AWSS3File
601
- location: WorldLocation
602
- }
603
-
604
- type AthleteCompetitionResult {
605
- _id: String!
606
- resultType: String!
607
- position: Float
608
- score: String
609
- finishTimeMS: Float
610
- resultWebLink: String
611
- }
612
-
613
- type BudgetItem {
614
- _id: String!
615
- quantity: Float!
616
- concept: String!
617
- itemCost: Float!
618
- }
619
-
620
- type Budget {
621
- _id: String!
622
- initialFunds: Float!
623
- totalRequired: Float!
624
- items: [BudgetItem!]
625
- }
626
-
627
- type AthleteCompetition {
628
- _id: String!
629
- event: SportsEvent!
630
- participationDate: DateTime
631
- competitionNumber: String
632
- result: AthleteCompetitionResult
633
- fundRaisingCampaignIds: [String!]
634
- budget: Budget
635
- }
636
-
637
- type MembershipOrganizationReference {
638
- _id: String!
639
- shortName: String
640
- acronym: String
641
- fullName: String!
642
- website: String
643
- verified: Boolean!
644
- logo: AWSS3File
645
- country: Country
646
- sport: Sport
647
- }
648
-
649
- type MembershipOrganization {
650
- _id: String!
651
- shortName: String
652
- acronym: String
653
- fullName: String!
654
- website: String
655
- verified: Boolean!
656
- logo: AWSS3File
657
- country: Country
658
- sport: Sport
659
- memberships: [AthleteMembership!]
660
- }
661
-
662
- type AthleteMembership {
663
- _id: String!
664
- organization: MembershipOrganizationReference!
665
- athlete: AthleteReference!
666
- membershipNumber: String
667
- membershipType: String
668
- issueDate: DateTime
669
- expirationDate: DateTime
670
- }
671
-
672
- type NewsLink {
673
- _id: String!
674
- title: String!
675
- url: String!
676
- abstract: String
677
- }
678
-
679
- type Channel {
680
- _id: String!
681
- type: String!
682
- handle: String
683
- url: String!
684
- linked: Boolean!
685
- }
686
-
687
- type AthletePreferences {
688
- _id: String!
689
- showProfileHelper: Boolean!
690
- }
691
-
692
- type FundRaisingCampaign {
693
- _id: String!
694
- athlete: AthleteReference!
695
- budgetMode: String!
696
- status: String!
697
- title: String!
698
- motivation: String
699
- website: String
700
- fundsRequired: Float!
701
- initialFundsObtained: Float!
702
- fundsObtained: Float!
703
- location: WorldLocation
704
- endingDate: DateTime!
705
- budget: Budget
706
- competitions: [AthleteCompetition!]
707
- }
708
-
709
- type StripeCapabilityType {
710
- acss_debit_payments: String
711
- affirm_payments: String
712
- afterpay_clearpay_payments: String
713
- alma_payments: String
714
- amazon_pay_payments: String
715
- au_becs_debit_payments: String
716
- bacs_debit_payments: String
717
- bancontact_payments: String
718
- bank_transfer_payments: String
719
- blik_payments: String
720
- boleto_payments: String
721
- card_issuing: String
722
- card_payments: String
723
- cartes_bancaires_payments: String
724
- cashapp_payments: String
725
- eps_payments: String
726
- fpx_payments: String
727
- gb_bank_transfer_payments: String
728
- giropay_payments: String
729
- grabpay_payments: String
730
- ideal_payments: String
731
- india_international_payments: String
732
- jcb_payments: String
733
- jp_bank_transfer_payments: String
734
- kakao_pay_payments: String
735
- klarna_payments: String
736
- konbini_payments: String
737
- kr_card_payments: String
738
- legacy_payments: String
739
- link_payments: String
740
- mobilepay_payments: String
741
- multibanco_payments: String
742
- mx_bank_transfer_payments: String
743
- naver_pay_payments: String
744
- oxxo_payments: String
745
- p24_payments: String
746
- pay_by_bank_payments: String
747
- payco_payments: String
748
- paynow_payments: String
749
- promptpay_payments: String
750
- revolut_pay_payments: String
751
- samsung_pay_payments: String
752
- sepa_bank_transfer_payments: String
753
- sepa_debit_payments: String
754
- sofort_payments: String
755
- swish_payments: String
756
- tax_reporting_us_1099_k: String
757
- tax_reporting_us_1099_misc: String
758
- transfers: String
759
- treasury: String
760
- twint_payments: String
761
- us_bank_account_ach_payments: String
762
- us_bank_transfer_payments: String
763
- zip_payments: String
764
- }
765
-
766
- type StripeRequirementAlternativeType {
767
- alternative_fields_due: [String!]!
768
- original_fields_due: [String!]!
769
- }
770
-
771
- type StripeFutureRequirementAlternativeType {
772
- alternative_fields_due: [String!]!
773
- original_fields_due: [String!]!
774
- }
775
-
776
- type StripeErrorType {
777
- code: String!
778
- reason: String!
779
- requirement: String!
780
- }
781
-
782
- type StripeRequirementType {
783
- alternatives: [StripeRequirementAlternativeType!]
784
- current_deadline: DateTime
785
- currently_due: [String!]
786
- disabled_reason: String
787
- errors: [StripeErrorType!]
788
- eventually_due: [String!]
789
- past_due: [String!]
790
- pending_verification: [String!]
791
- }
792
-
793
- type StripeFutureRequirementType {
794
- alternatives: [StripeFutureRequirementAlternativeType!]
795
- current_deadline: DateTime
796
- currently_due: [String!]
797
- disabled_reason: String
798
- errors: [StripeErrorType!]
799
- eventually_due: [String!]
800
- past_due: [String!]
801
- pending_verification: [String!]
802
- }
803
-
804
- type StripeAccount {
805
- id: String!
806
- object: String!
807
- business_type: String
808
- country: String!
809
- email: String
810
- capabilities: StripeCapabilityType
811
- requirements: StripeRequirementType
812
- future_requirements: StripeFutureRequirementType
813
- type: String!
814
- charges_enabled: Boolean!
815
- payouts_enabled: Boolean!
816
- created: DateTime
817
- default_currency: String
818
- }
819
-
820
- type StripeAccountReference {
821
- _id: String!
822
- stripeAccountId: String!
823
- account: StripeAccount
824
- }
825
-
826
- type PhotoAlbum {
827
- _id: String!
828
- photo: AWSS3File
829
- }
830
-
831
- type Album {
832
- _id: String!
833
- label: String!
834
- description: String
835
- photos: [PhotoAlbum!]
836
- }
837
-
838
- type AthleteReference {
839
- _id: String!
840
- firstName: String!
841
- lastName: String!
842
- screenName: String
843
- dob: DateTime
844
- lgbt: Boolean
845
- competitionGender: String
846
- country: Country
847
- location: WorldLocation
848
- trainer: String
849
- trainerUrl: String
850
- followStats: FollowStats
851
- mainSport: Sport!
852
- mainSportLevel: SportLevel!
853
- scores: VtxScores!
854
- rankings: AthleteRankings
855
- totalUpcomingCompetitions: Float
856
- totalPastCompetitions: Float
857
- profilePicture: AWSS3File
858
- cardPicture: AWSS3File
859
- bannerPicture: AWSS3File
860
- aboutMe: String
861
- preferences: AthletePreferences!
862
- }
863
-
864
- type Athlete {
865
- _id: String!
866
- firstName: String!
867
- lastName: String!
868
- screenName: String
869
- dob: DateTime
870
- lgbt: Boolean
871
- competitionGender: String
872
- country: Country
873
- location: WorldLocation
874
- trainer: String
875
- trainerUrl: String
876
- followStats: FollowStats
877
- mainSport: Sport!
878
- mainSportLevel: SportLevel!
879
- scores: VtxScores!
880
- rankings: AthleteRankings
881
- totalUpcomingCompetitions: Float
882
- totalPastCompetitions: Float
883
- profilePicture: AWSS3File
884
- cardPicture: AWSS3File
885
- bannerPicture: AWSS3File
886
- aboutMe: String
887
- preferences: AthletePreferences!
888
- allSports: [Sport!]
889
- teams: [Team!]
890
- sponsorBrands: [Brand!]
891
- competitions: [AthleteCompetition!]
892
- affiliations: [AthleteMembership!]
893
- newsLinks: [NewsLink!]
894
- channels: [Channel!]
895
- currentCampaign: FundRaisingCampaign
896
- fundingCampaigns: [FundRaisingCampaign!]
897
- stripeAccountReference: StripeAccountReference
898
- albums: [Album!]
899
- }
900
-
901
- type SponsorAthleteInvitation {
902
- _id: String!
903
- name: String
904
- email: String!
905
- dateSent: DateTime!
906
- sponsor: Sponsor!
907
- magicLink: MagicLink!
908
- brand: Brand
909
- status: String!
910
- }
911
-
912
- type StravaToken {
913
- token_type: String!
914
- expires_at: String!
915
- refresh_token: String!
916
- access_token: String!
917
- }
918
-
919
- type StripeSession {
920
- account: String!
921
- client_secret: String!
922
- expires_at: Float!
923
- livemode: Boolean!
924
- }
925
-
926
- type StripeCheckoutSession {
927
- client_secret: String!
928
- expires_at: Float!
929
- livemode: Boolean!
930
- }
931
-
932
- type EditValueResponse {
933
- field: String!
934
- oldValue: String
935
- newValue: String
936
- changed: Boolean!
937
- }
938
-
939
- type ErrorType {
940
- code: Float!
941
- message: String!
942
- }
943
-
944
- type DeleteSingleValueResponse {
945
- idToDelete: String!
946
- deleted: Boolean!
947
- failureReason: ErrorType
948
- }
949
-
950
- type SortOrder {
951
- sortField: String!
952
- order: String!
953
- }
954
-
955
- type CursorPaginationResponse {
956
- sort: SortOrder
957
- initialCursorId: String
958
- nextCursorId: String
959
- initialCursorValue: String
960
- nextCursorValue: String
961
- limit: Float!
962
- retrieved: Float!
963
- isLastPage: Boolean!
964
- }
965
-
966
- type AthleteQueryResponse {
967
- athletes: [Athlete!]!
968
- cursor: CursorPaginationResponse!
969
- }
970
-
971
- type EditPictureResponse {
972
- field: String!
973
- oldValue: AWSS3File
974
- newValue: AWSS3File
975
- changed: Boolean!
976
- }
977
-
978
- type AddValuesResponse {
979
- added: [String!]!
980
- failedToAdd: [String!]
981
- failureReason: [ErrorType!]
982
- result: String!
983
- }
984
-
985
- type StripeObject {
986
- type: String!
987
- json: JSONObject!
988
- }
989
-
990
- """
991
- The `JSONObject` scalar type represents JSON objects as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf).
992
- """
993
- scalar JSONObject
994
-
995
- type UserImages {
996
- profilePictureUrl: String
997
- cardPictureUrl: String
998
- bannerPictureUrl: String
999
- }
1000
-
1001
- type DeleteValuesResponse {
1002
- deleted: [String!]!
1003
- failedToDelete: [String!]!
1004
- failureReason: [ErrorType!]!
1005
- result: String!
1006
- }
1007
-
1008
- input CreateDatabaseFileDto {
1009
- identifier: String!
1010
- version: String! = "1.0.0"
1011
- contentType: String!
1012
- }
1013
-
1014
- input CreateTextDatabaseFileDto {
1015
- identifier: String!
1016
- version: String! = "1.0.0"
1017
- contentType: String!
1018
- content: String! = ""
1019
- }
1020
-
1021
- input UpdateDatabaseFileDto {
1022
- _id: String!
1023
- identifier: String
1024
- version: String
1025
- contentType: String
1026
- }
1027
-
1028
- input UpdateTextDatabaseFileDto {
1029
- _id: String!
1030
- identifier: String
1031
- version: String
1032
- contentType: String
1033
- content: String
1034
- }
1035
-
1036
- input CloneDatabaseFileDto {
1037
- _id: String!
1038
- version: String
1039
- }
1040
-
1041
- input FindDatabaseFilesDto {
1042
- _id: String
1043
- identifier: String
1044
- version: String
1045
- }
1046
-
1047
- input GetDatabaseFileDto {
1048
- identifier: String!
1049
- version: String!
1050
- }
1051
-
1052
- input CreateVerificationCodeDto {
1053
- type: String
1054
- recipient: String
1055
- expiresTime: Float = 10
1056
- expiresUnit: String = "MINUTES"
1057
- data: String
1058
- }
1059
-
1060
- input VerifyCodeDto {
1061
- codeId: String!
1062
- enteredCodeValue: String!
1063
- type: String
1064
- }
1065
-
1066
- input AthleteInvitationDto {
1067
- email: String!
1068
- name: String
1069
- sender: String
1070
- brandId: String
1071
- }
1072
-
1073
- input InviteAthletesDto {
1074
- language: String = "en"
1075
- invitations: [AthleteInvitationDto!]!
1076
- }
1077
-
1078
- input CompetitionResultDto {
1079
- resultType: String!
1080
- position: Float
1081
- score: String
1082
- finishTimeMS: Float
1083
- resultWebLink: String
1084
- }
1085
-
1086
- input SetCompetitionResultDto {
1087
- resultType: String!
1088
- position: Float
1089
- score: String
1090
- finishTimeMS: Float
1091
- resultWebLink: String
1092
- competitionId: String!
1093
- }
1094
-
1095
- input CreateAthleteCompetitionDto {
1096
- event: String!
1097
- date: DateTime!
1098
- eventWebsite: String
1099
- competitionNumber: String
1100
- result: CompetitionResultDto
1101
- cityId: String
1102
- }
1103
-
1104
- input CreateAthleteCompetitionForDto {
1105
- event: String!
1106
- date: DateTime!
1107
- eventWebsite: String
1108
- competitionNumber: String
1109
- result: CompetitionResultDto
1110
- cityId: String
1111
- loginEmail: String!
1112
- }
1113
-
1114
- input CursorPositionDto {
1115
- cursorId: String!
1116
- cursorFieldValue: String!
1117
- }
1118
-
1119
- input SortCriteriaDto {
1120
- sortField: String!
1121
- order: String! = "ASC"
1122
- }
1123
-
1124
- input CursorPaginationDto {
1125
- sortCriteria: SortCriteriaDto
1126
- limit: Float = 25
1127
- cursorPosition: CursorPositionDto
1128
- }
1129
-
1130
- input DeleteSingleValueDto {
1131
- idToDelete: String!
1132
- }
1133
-
1134
- input FundCampaignFilterDto {
1135
- campaignTitle: String
1136
- status: String
1137
- minCompletion: Float
1138
- maxCompletion: Float
1139
- minFundsRequired: Float
1140
- maxFundsRequired: Float
1141
- minEndingDate: DateTime
1142
- maxEndingDate: DateTime
1143
- competitions: [String!]
1144
- cities: [String!]
1145
- states: [String!]
1146
- countries: [String!]
1147
- }
1148
-
1149
- input AthleteFilterDto {
1150
- name: String
1151
- cities: [String!]
1152
- states: [String!]
1153
- countries: [String!]
1154
- teams: [String!]
1155
- currentCampaign: FundCampaignFilterDto
1156
- sports: [String!]
1157
- sportLevels: [String!]
1158
- mainSportOnly: Boolean = true
1159
- gender: String
1160
- minAge: Float
1161
- maxAge: Float
1162
- minDob: DateTime
1163
- maxDob: DateTime
1164
- minVTXScore: Float
1165
- maxVTXScore: Float
1166
- minSocialScore: Float
1167
- maxSocialScore: Float
1168
- minTrainingScore: Float
1169
- maxTrainingScore: Float
1170
- minPerformanceScore: Float
1171
- maxPerformanceScore: Float
1172
- }
1173
-
1174
- input AthleteQueryDto {
1175
- cursor: CursorPaginationDto
1176
- filters: AthleteFilterDto
1177
- }
1178
-
1179
- input EditPictureDto {
1180
- field: String!
1181
- newPicture: AWSS3UploadedFileDto
1182
- }
1183
-
1184
- input AWSS3UploadedFileDto {
1185
- key: String!
1186
- useType: String!
1187
- contentType: String!
1188
- originalFileName: String
1189
- fileSize: Float
1190
- }
1191
-
1192
- input UploadAlbumsPicturesDto {
1193
- label: String!
1194
- description: String
1195
- pictures: [AWSS3UploadedFileDto!]
1196
- }
1197
-
1198
- input QualificationDto {
1199
- type: String!
1200
- }
1201
-
1202
- input AgeQualificationDto {
1203
- type: String!
1204
- value: Float!
1205
- operator: String!
1206
- }
1207
-
1208
- input GenderQualificationDto {
1209
- type: String!
1210
- operator: String!
1211
- values: [String!]!
1212
- }
1213
-
1214
- input NationalityQualificationDto {
1215
- type: String!
1216
- operator: String!
1217
- countries: [String!]!
1218
- }
1219
-
1220
- input ScoreQualificationDto {
1221
- type: String!
1222
- scoreType: String!
1223
- operator: String!
1224
- value: Float!
1225
- }
1226
-
1227
- input LocationQualificationDto {
1228
- type: String!
1229
- operator: String!
1230
- countries: [String!]!
1231
- states: [String!]!
1232
- cities: [String!]!
1233
- }
1234
-
1235
- input DistanceQualificationDto {
1236
- type: String!
1237
- maxDistance: Float!
1238
- latitude: Float
1239
- longitude: Float
1240
- cityId: String
1241
- }
1242
-
1243
- input SportsQualificationDto {
1244
- type: String!
1245
- sports: [String!]!
1246
- operator: String!
1247
- }
1248
-
1249
- input SportsLevelQualificationDto {
1250
- type: String!
1251
- operator: String!
1252
- level: String!
1253
- }
1254
-
1255
- input RegisterUserDto {
1256
- email: String!
1257
- password: String!
1258
- inviteCode: String
1259
- }
1260
-
1261
- input DeleteValuesDto {
1262
- idsToDelete: [String!]!
1263
- allOrNone: Boolean = true
1264
- }
1265
-
1266
- input BudgetItemDto {
1267
- quantity: Float!
1268
- concept: String!
1269
- itemCost: Float!
1270
- }
1271
-
1272
- input CreateBudgetItemDto {
1273
- quantity: Float!
1274
- concept: String!
1275
- itemCost: Float!
1276
- budgetId: String!
1277
- }
1278
-
1279
- input CreateBudgetDto {
1280
- initialFunds: Float = 0
1281
- items: [BudgetItemDto!]
1282
- }
1283
-
1284
- input CreateCompetitionBudgetDto {
1285
- initialFunds: Float = 0
1286
- items: [BudgetItemDto!]
1287
- athleteCompetitionId: String!
1288
- }
1289
-
1290
- input CreateFundingCampaignDto {
1291
- budgetMode: String!
1292
- title: String!
1293
- motivation: String!
1294
- website: String
1295
- fundsRequired: Float!
1296
- initialFundsObtained: Float! = 0
1297
- cityId: String
1298
- endingDate: DateTime!
1299
- budget: CreateBudgetDto
1300
- competitionBudgets: [CreateCompetitionBudgetDto!]
1301
- competitionIds: [String!]
1302
- }
1303
-
1304
- input CreateFundingCampaignForDto {
1305
- budgetMode: String!
1306
- title: String!
1307
- motivation: String!
1308
- website: String
1309
- fundsRequired: Float!
1310
- initialFundsObtained: Float! = 0
1311
- cityId: String
1312
- endingDate: DateTime!
1313
- budget: CreateBudgetDto
1314
- competitionBudgets: [CreateCompetitionBudgetDto!]
1315
- competitionIds: [String!]
1316
- loginEmail: String!
1317
- }
1318
-
1319
- input SetFundingStatusDto {
1320
- fundingCampaignId: String!
1321
- newStatus: String!
1322
- }
1323
-
1324
- input CreateMembershipOrganizationDto {
1325
- shortName: String!
1326
- acronym: String
1327
- fullName: String!
1328
- website: String
1329
- logo: AWSS3UploadedFileDto
1330
- countryId: String
1331
- sportId: String
1332
- }
1333
-
1334
- input CreateAthleteMembershipDto {
1335
- organizationId: String!
1336
- membershipNumber: String
1337
- membershipType: String
1338
- issueDate: DateTime
1339
- expirationDate: DateTime
1340
- }
1341
-
1342
- input DonationCheckoutDto {
1343
- fundingCampaignId: String!
1344
- donationAmount: Float!
1345
- mode: String! = "private"
1346
- fromName: String
1347
- fromEmail: String
1348
- fromPhone: String
1349
- message: String
1350
- }
1351
-
1352
- input StripeQueryDto {
1353
- operation: String!
1354
- id: String!
1355
- params: String
1356
- }
1357
-
1358
- type Query {
1359
- findTenantById(_id: String!): Tenant!
1360
- findTenantByEmail(email: String!, domainId: String!): Tenant!
1361
- getTenants: [Tenant!]!
1362
- isTenantUriAvailable(tenant_uri: String!): UriAvailableType!
1363
- findUserById(_id: String!): User!
1364
- findUserByEmail(email: String!): User!
1365
- validateUserCredentials(username: String!, password: String!): User!
1366
- getUploadUrl(input: AWSS3GetUploadDto!): AWSS3UploadUrl!
1367
- industries: [Industry!]!
1368
- findIndustryById(industryId: String!): Industry!
1369
- brands: [Brand!]!
1370
- getBrandByName(name: String!, translations: Boolean!): Brand!
1371
- getBrandTranslation(brandId: String!, language: String!): BrandTranslation!
1372
- existsValidSponsorForEmail(loginEmail: String!): Sponsor!
1373
- sponsors: [Sponsor!]!
1374
- findSponsorAthleteInvitation(input: FindSponsorAthleteInvitationDto!): SponsorAthleteInvitation!
1375
- getAthletes: [Athlete!]!
1376
- queryAthleteFundingCampaigns(input: AthleteQueryDto!): AthleteQueryResponse!
1377
- searchAthletes(searchString: String!): [Athlete!]!
1378
- findAthleteById(athleteId: String!): Athlete!
1379
- findAthleteForUser(loginEmail: String!): Athlete!
1380
- getRecommendedAthletes(loginEmail: String!): [Athlete!]!
1381
- getSponsorAthletesForTenant: [Athlete!]!
1382
- getAthleteCompetitions(input: GetAthleteCompetitionsDto!): [AthleteCompetition!]!
1383
- getAthleteMemberships(athleteId: String!): [AthleteMembership!]!
1384
- findAthletebyIdpublic(athleteId: String!): Athlete!
1385
- getAthleteAlbums: Album!
1386
- getAthleteAlbumId(input: String!): Album!
1387
- queryAthleteWithFilter(input: AthleteQueryDto!): AthleteQueryResponse!
1388
- getSports: [Sport!]!
1389
- findSportById(sportId: String!): Sport!
1390
- getSportLevels: [SportLevel!]!
1391
- getPublicSponsorships: [Sponsorship!]!
1392
- getTenantSponsorships: [Sponsorship!]!
1393
- getCountries: [Country!]!
1394
- getCountryStates(countryId: String!): [State!]!
1395
- getStateCities(stateId: String!): [City!]!
1396
- findCitiesStartingWith(text: String!): [City!]!
1397
- findCityById(cityId: String!): City!
1398
- findVtxUser(input: FindVtxUserDto!): User!
1399
- validateUserCredentialsVtx(username: String!, password: String!): User!
1400
- getUserImagesFromEmail(loginEmail: String!): UserImages!
1401
- getStravaLoginUrl: String!
1402
- getSportsEvents(input: GetSportEventsDto!): [SportsEvent!]!
1403
- getMembershipOrganizations: [MembershipOrganizationReference!]!
1404
- stripeQuery(input: StripeQueryDto!): StripeObject!
1405
- getDatabaseTextFile(input: GetDatabaseFileDto!): TextDatabaseFile!
1406
- }
1407
-
1408
- input AWSS3GetUploadDto {
1409
- useType: String!
1410
- name: String
1411
- }
1412
-
1413
- input FindSponsorAthleteInvitationDto {
1414
- code: String!
1415
- type: String
1416
- }
1417
-
1418
- input GetAthleteCompetitionsDto {
1419
- athleteId: String!
1420
- fromInclusive: DateTime
1421
- toExclusive: DateTime
1422
- }
1423
-
1424
- input FindVtxUserDto {
1425
- loginEmail: String!
1426
- }
1427
-
1428
- input GetSportEventsDto {
1429
- matchString: String
1430
- }
1431
-
1432
- type Mutation {
1433
- registerNewDomainTenant(tenant: CreateTenantInput!): Tenant!
1434
- registerNewDomainTenantWithLogin(tenant: CreateTenantInput!): TenantWithUserLogin!
1435
- createUserAndLogin(user: CreateActiveUserInput!): UserWithToken!
1436
- loginUserFromEmail(email: String!, loginMethod: String!): UserToken!
1437
- loginUserFromCredentials(username: String!, password: String!): UserWithToken!
1438
- registerUserToDomainFromEmail(input: RegisterUserToDomainFromEmailInput!): User!
1439
- refreshToken(dto: RefreshTokenInput!): UserToken!
1440
- deleteUploadedUseTypeFile(input: AWSS3DeleteUseTypeFileDto!): AWSS3CallResult!
1441
- deleteUploadedBucketFile(input: AWSS3DeleteBucketFileDto!): AWSS3CallResult!
1442
- registerS3UploadedFile(input: AWSS3UploadedFileDto!): AWSS3File!
1443
- createIndustry(input: CreateIndustryDto!): Industry!
1444
- createBrand(input: CreateBrandDto!): Brand!
1445
- registerSponsor(input: RegisterSponsorInput!): Sponsor!
1446
- createSponsor(input: CreateSponsorDto!): Sponsor!
1447
- sendAthleteInvitations(input: InviteAthletesDto!): [SponsorAthleteInvitation!]!
1448
- registerAthlete(input: RegisterAthleteDto!): Athlete!
1449
- editProfileValue(input: EditValueDto!): EditValueResponse!
1450
- editPicture(input: EditPictureDto!): EditPictureResponse!
1451
- AddAlbumPictures(input: UploadAlbumsPicturesDto!): AddValuesResponse!
1452
- DeletePictureBuket(input: AWSS3DeleteUseTypeFileDto!): DeleteSingleValueResponse!
1453
- addAthleteCompetition(input: CreateAthleteCompetitionDto!): AthleteCompetition!
1454
- deleteAthleteCompetition(input: DeleteSingleValueDto!): DeleteSingleValueResponse!
1455
- createAthleteAlbum(input: UploadAlbumsPicturesDto!): Album!
1456
- deleteAthleteAlbum(input: DeleteSingleValueDto!): DeleteSingleValueResponse!
1457
- createSport(input: CreateSportDto!): Sport!
1458
- updateSport(input: UpdateSportDto!): Sport!
1459
- createSportLevel(input: CreateSportLevelDto!): SportLevel!
1460
- createSponsorship(input: CreateSponsorshipDto!): Sponsorship!
1461
- createCountry(input: CreateCountryDto!): Country!
1462
- createState(input: CreateStateDto!): State!
1463
- createCity(input: CreateCityDto!): City!
1464
- preRegisterAthleteUser(input: RegisterUserDto!): VerificationCode!
1465
- confirmAthleteUserRegistrationAndLogin(input: VerifyCodeDto!): UserWithToken!
1466
- confirmAthleteUserRegistration(input: VerifyCodeDto!): User!
1467
- registerAthleteUser(input: RegisterUserDto!): User!
1468
- registerSponsorUser(input: RegisterUserDto!): User!
1469
- loginUserFromCredentialsVtx(username: String!, password: String!): UserWithToken!
1470
- handleStravaCallback(data: RegisterStravaDto!): StravaToken!
1471
- refreshStravaToken(input: String!): StravaToken!
1472
- createSportsEvent(input: CreateSportEventDto!): SportsEvent!
1473
- setFundingStatus(input: SetFundingStatusDto!): FundRaisingCampaign!
1474
- createFundingCampaign(input: CreateFundingCampaignDto!): FundRaisingCampaign!
1475
- createMembershipOrganization(input: CreateMembershipOrganizationDto!): MembershipOrganizationReference!
1476
- createAthleteMembershipAffilation(input: CreateAthleteMembershipDto!): AthleteMembership!
1477
- deleteAthleteMembershipAffilation(input: DeleteSingleValueDto!): DeleteSingleValueResponse!
1478
- createStripeAccount(input: CreateStripeAccountDto!): StripeAccountReference!
1479
- createAthleteStripeSession: StripeSession!
1480
- createStripeCheckoutSession(input: DonationCheckoutDto!): StripeCheckoutSession!
1481
- }
1482
-
1483
- input CreateTenantInput {
1484
- name: String!
1485
- email: String!
1486
- tenant_uri: String!
1487
- domain: String!
1488
- }
1489
-
1490
- input CreateActiveUserInput {
1491
- loginEmail: String!
1492
- password: String
1493
- loginMethod: String
1494
- }
1495
-
1496
- input RegisterUserToDomainFromEmailInput {
1497
- email: String!
1498
- domainId: String!
1499
- tenantId: String
1500
- createUserIfNotExist: Boolean = false
1501
- }
1502
-
1503
- input RefreshTokenInput {
1504
- refreshToken: String!
1505
- }
1506
-
1507
- input AWSS3DeleteUseTypeFileDto {
1508
- name: String!
1509
- useType: String!
1510
- }
1511
-
1512
- input AWSS3DeleteBucketFileDto {
1513
- key: String!
1514
- bucket: String!
1515
- credentialsId: String
1516
- }
1517
-
1518
- input CreateIndustryDto {
1519
- name: String!
1520
- }
1521
-
1522
- input CreateBrandDto {
1523
- name: String!
1524
- description: String
1525
- slogan: String
1526
- website: String
1527
- logo: AWSS3UploadedFileDto
1528
- banner: AWSS3UploadedFileDto
1529
- translations: [BrandTranslationDto!]
1530
- }
1531
-
1532
- input BrandTranslationDto {
1533
- brandId: String!
1534
- language: String!
1535
- name: String
1536
- description: String
1537
- slogan: String
1538
- logo: AWSS3UploadedFileDto
1539
- banner: AWSS3UploadedFileDto
1540
- }
1541
-
1542
- input RegisterSponsorInput {
1543
- name: String!
1544
- phone: String
1545
- hasWhatsapp: Boolean! = false
1546
- companyName: String
1547
- companyEmail: String!
1548
- industryId: String!
1549
- companySize: String!
1550
- operatorType: String!
1551
- numberOfAthletes: String!
1552
- brands: [String!]!
1553
- }
1554
-
1555
- input CreateSponsorDto {
1556
- name: String!
1557
- description: String
1558
- }
1559
-
1560
- input RegisterAthleteDto {
1561
- email: String!
1562
- firstName: String!
1563
- lastName: String!
1564
- screenName: String
1565
- nationality: String!
1566
- cityId: String!
1567
- locLatitude: Float
1568
- locLongitude: Float
1569
- dateOfBirth: DateTime!
1570
- lgbt: Boolean = false
1571
- trainer: String
1572
- trainerUrl: String
1573
- aboutMe: String
1574
- team: String
1575
- gender: String!
1576
- mainSport: String!
1577
- mainSportLevel: String!
1578
- profilePicture: AWSS3UploadedFileDto
1579
- cardPicture: AWSS3UploadedFileDto
1580
- }
1581
-
1582
- input EditValueDto {
1583
- field: String!
1584
- newValue: String
1585
- }
1586
-
1587
- input CreateSportDto {
1588
- name: String!
1589
- resultType: String = "POSITION"
1590
- }
1591
-
1592
- input UpdateSportDto {
1593
- _id: String!
1594
- name: String!
1595
- }
1596
-
1597
- input CreateSportLevelDto {
1598
- _id: String!
1599
- label: String!
1600
- index: Float!
1601
- translations: [CreateSportLevelTranslationDto!]
1602
- }
1603
-
1604
- input CreateSportLevelTranslationDto {
1605
- language: String!
1606
- label: String!
1607
- }
1608
-
1609
- input CreateSponsorshipDto {
1610
- title: String!
1611
- brandId: String!
1612
- description: String
1613
- cashValue: Float = 0
1614
- otherValue: Float = 0
1615
- banner: AWSS3UploadedFileDto
1616
- criteria: AthleteCriteriaDto
1617
- deadline: DateTime
1618
- startDate: DateTime
1619
- duration: DurationDto!
1620
- sponsorshipItems: [SponsorshipItemDto!]
1621
- commitments: [SponsorshipCommitmentDto!]
1622
- terms: String
1623
- published: Boolean = true
1624
- isPrivate: Boolean = false
1625
- translations: [SponsorshipTranslationDto!]
1626
- }
1627
-
1628
- input AthleteCriteriaDto {
1629
- _id: String!
1630
- label: String
1631
- qualificationsBag: QualificationsBagDto
1632
- }
1633
-
1634
- input QualificationsBagDto {
1635
- ageQualifications: [AgeQualificationDto!]
1636
- genderQualifications: [GenderQualificationDto!]
1637
- scoreQualifications: [ScoreQualificationDto!]
1638
- locationQualifications: [LocationQualificationDto!]
1639
- nationalityQualifications: [NationalityQualificationDto!]
1640
- distanceQualifications: [DistanceQualificationDto!]
1641
- sportsQualifications: [SportsQualificationDto!]
1642
- levelQualifications: [SportsLevelQualificationDto!]
1643
- }
1644
-
1645
- input DurationDto {
1646
- length: Float! = 1
1647
- unit: String! = "YEARS"
1648
- }
1649
-
1650
- input SponsorshipItemDto {
1651
- _id: String!
1652
- quantity: Float! = 1
1653
- title: String!
1654
- value: Float! = 0
1655
- }
1656
-
1657
- input SponsorshipCommitmentDto {
1658
- _id: String!
1659
- title: String!
1660
- details: String
1661
- hashTags: [String!]
1662
- media: String!
1663
- actionType: String!
1664
- frequency: Float = 1
1665
- periodicity: String!
1666
- }
1667
-
1668
- input SponsorshipTranslationDto {
1669
- sponsorshipId: String!
1670
- language: String!
1671
- title: String
1672
- description: String
1673
- banner: AWSS3UploadedFileDto
1674
- terms: String
1675
- }
1676
-
1677
- input CreateCountryDto {
1678
- _id: String!
1679
- name: String!
1680
- }
1681
-
1682
- input CreateStateDto {
1683
- _id: String!
1684
- name: String!
1685
- countryId: String!
1686
- }
1687
-
1688
- input CreateCityDto {
1689
- _id: String!
1690
- cityName: String!
1691
- cityNameLocalized: String!
1692
- lat: Float!
1693
- lng: Float!
1694
- stateId: String!
1695
- timezone: String!
1696
- city_alt: String
1697
- iso3: String
1698
- admin_type: String
1699
- capital: String
1700
- density: Float
1701
- population: Float
1702
- population_proper: Float
1703
- ranking: Float
1704
- same_name: String
1705
- }
1706
-
1707
- input RegisterStravaDto {
1708
- idAthlete: String!
1709
- code: String!
1710
- }
1711
-
1712
- input CreateSportEventDto {
1713
- name: String!
1714
- cityId: String
1715
- sportId: String
1716
- startDate: DateTime!
1717
- endDate: DateTime
1718
- website: String
1719
- banner: AWSS3UploadedFileDto
1720
- }
1721
-
1722
- input CreateStripeAccountDto {
1723
- countryId: String!
1724
- acceptedTermsId: String!
1725
- acceptedPrivacyId: String!
1726
- }