@vertikalx/vtx-backend-client 1.0.0-dev-daniel.229 → 1.0.0-dev-carlos.7

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,1728 +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
- vtxComissionPct: Float!
708
- }
709
-
710
- type StripeCapabilityType {
711
- acss_debit_payments: String
712
- affirm_payments: String
713
- afterpay_clearpay_payments: String
714
- alma_payments: String
715
- amazon_pay_payments: String
716
- au_becs_debit_payments: String
717
- bacs_debit_payments: String
718
- bancontact_payments: String
719
- bank_transfer_payments: String
720
- blik_payments: String
721
- boleto_payments: String
722
- card_issuing: String
723
- card_payments: String
724
- cartes_bancaires_payments: String
725
- cashapp_payments: String
726
- eps_payments: String
727
- fpx_payments: String
728
- gb_bank_transfer_payments: String
729
- giropay_payments: String
730
- grabpay_payments: String
731
- ideal_payments: String
732
- india_international_payments: String
733
- jcb_payments: String
734
- jp_bank_transfer_payments: String
735
- kakao_pay_payments: String
736
- klarna_payments: String
737
- konbini_payments: String
738
- kr_card_payments: String
739
- legacy_payments: String
740
- link_payments: String
741
- mobilepay_payments: String
742
- multibanco_payments: String
743
- mx_bank_transfer_payments: String
744
- naver_pay_payments: String
745
- oxxo_payments: String
746
- p24_payments: String
747
- pay_by_bank_payments: String
748
- payco_payments: String
749
- paynow_payments: String
750
- promptpay_payments: String
751
- revolut_pay_payments: String
752
- samsung_pay_payments: String
753
- sepa_bank_transfer_payments: String
754
- sepa_debit_payments: String
755
- sofort_payments: String
756
- swish_payments: String
757
- tax_reporting_us_1099_k: String
758
- tax_reporting_us_1099_misc: String
759
- transfers: String
760
- treasury: String
761
- twint_payments: String
762
- us_bank_account_ach_payments: String
763
- us_bank_transfer_payments: String
764
- zip_payments: String
765
- }
766
-
767
- type StripeRequirementAlternativeType {
768
- alternative_fields_due: [String!]!
769
- original_fields_due: [String!]!
770
- }
771
-
772
- type StripeFutureRequirementAlternativeType {
773
- alternative_fields_due: [String!]!
774
- original_fields_due: [String!]!
775
- }
776
-
777
- type StripeErrorType {
778
- code: String!
779
- reason: String!
780
- requirement: String!
781
- }
782
-
783
- type StripeRequirementType {
784
- alternatives: [StripeRequirementAlternativeType!]
785
- current_deadline: DateTime
786
- currently_due: [String!]
787
- disabled_reason: String
788
- errors: [StripeErrorType!]
789
- eventually_due: [String!]
790
- past_due: [String!]
791
- pending_verification: [String!]
792
- }
793
-
794
- type StripeFutureRequirementType {
795
- alternatives: [StripeFutureRequirementAlternativeType!]
796
- current_deadline: DateTime
797
- currently_due: [String!]
798
- disabled_reason: String
799
- errors: [StripeErrorType!]
800
- eventually_due: [String!]
801
- past_due: [String!]
802
- pending_verification: [String!]
803
- }
804
-
805
- type StripeAccount {
806
- id: String!
807
- object: String!
808
- business_type: String
809
- country: String!
810
- email: String
811
- capabilities: StripeCapabilityType
812
- requirements: StripeRequirementType
813
- future_requirements: StripeFutureRequirementType
814
- type: String!
815
- charges_enabled: Boolean!
816
- payouts_enabled: Boolean!
817
- created: DateTime
818
- default_currency: String
819
- }
820
-
821
- type StripeAccountReference {
822
- _id: String!
823
- stripeAccountId: String!
824
- account: StripeAccount
825
- }
826
-
827
- type PhotoAlbum {
828
- _id: String!
829
- photo: AWSS3File
830
- }
831
-
832
- type Album {
833
- _id: String!
834
- label: String!
835
- description: String
836
- photos: [PhotoAlbum!]
837
- }
838
-
839
- type AthleteReference {
840
- _id: String!
841
- firstName: String!
842
- lastName: String!
843
- screenName: String
844
- dob: DateTime
845
- lgbt: Boolean
846
- competitionGender: String
847
- country: Country
848
- location: WorldLocation
849
- trainer: String
850
- trainerUrl: String
851
- followStats: FollowStats
852
- mainSport: Sport!
853
- mainSportLevel: SportLevel!
854
- scores: VtxScores!
855
- rankings: AthleteRankings
856
- totalUpcomingCompetitions: Float
857
- totalPastCompetitions: Float
858
- profilePicture: AWSS3File
859
- cardPicture: AWSS3File
860
- bannerPicture: AWSS3File
861
- aboutMe: String
862
- preferences: AthletePreferences!
863
- }
864
-
865
- type Athlete {
866
- _id: String!
867
- firstName: String!
868
- lastName: String!
869
- screenName: String
870
- dob: DateTime
871
- lgbt: Boolean
872
- competitionGender: String
873
- country: Country
874
- location: WorldLocation
875
- trainer: String
876
- trainerUrl: String
877
- followStats: FollowStats
878
- mainSport: Sport!
879
- mainSportLevel: SportLevel!
880
- scores: VtxScores!
881
- rankings: AthleteRankings
882
- totalUpcomingCompetitions: Float
883
- totalPastCompetitions: Float
884
- profilePicture: AWSS3File
885
- cardPicture: AWSS3File
886
- bannerPicture: AWSS3File
887
- aboutMe: String
888
- preferences: AthletePreferences!
889
- allSports: [Sport!]
890
- teams: [Team!]
891
- sponsorBrands: [Brand!]
892
- competitions: [AthleteCompetition!]
893
- affiliations: [AthleteMembership!]
894
- newsLinks: [NewsLink!]
895
- channels: [Channel!]
896
- currentCampaign: FundRaisingCampaign
897
- fundingCampaigns: [FundRaisingCampaign!]
898
- stripeAccountReference: StripeAccountReference
899
- albums: [Album!]
900
- }
901
-
902
- type SponsorAthleteInvitation {
903
- _id: String!
904
- name: String
905
- email: String!
906
- dateSent: DateTime!
907
- sponsor: Sponsor!
908
- magicLink: MagicLink!
909
- brand: Brand
910
- status: String!
911
- }
912
-
913
- type StravaToken {
914
- token_type: String!
915
- expires_at: String!
916
- refresh_token: String!
917
- access_token: String!
918
- }
919
-
920
- type StripeSession {
921
- account: String!
922
- client_secret: String!
923
- expires_at: Float!
924
- livemode: Boolean!
925
- }
926
-
927
- type StripeCheckoutSession {
928
- client_secret: String!
929
- expires_at: Float!
930
- livemode: Boolean!
931
- }
932
-
933
- type EditValueResponse {
934
- field: String!
935
- oldValue: String
936
- newValue: String
937
- changed: Boolean!
938
- }
939
-
940
- type ErrorType {
941
- code: Float!
942
- message: String!
943
- }
944
-
945
- type DeleteSingleValueResponse {
946
- idToDelete: String!
947
- deleted: Boolean!
948
- failureReason: ErrorType
949
- }
950
-
951
- type SortOrder {
952
- sortField: String!
953
- order: String!
954
- }
955
-
956
- type CursorPaginationResponse {
957
- sort: SortOrder
958
- initialCursorId: String
959
- nextCursorId: String
960
- initialCursorValue: String
961
- nextCursorValue: String
962
- limit: Float!
963
- retrieved: Float!
964
- isLastPage: Boolean!
965
- }
966
-
967
- type AthleteQueryResponse {
968
- athletes: [Athlete!]!
969
- cursor: CursorPaginationResponse!
970
- }
971
-
972
- type EditPictureResponse {
973
- field: String!
974
- oldValue: AWSS3File
975
- newValue: AWSS3File
976
- changed: Boolean!
977
- }
978
-
979
- type AddValuesResponse {
980
- added: [String!]!
981
- failedToAdd: [String!]
982
- failureReason: [ErrorType!]
983
- result: String!
984
- }
985
-
986
- type StripeObject {
987
- type: String!
988
- json: JSONObject!
989
- }
990
-
991
- """
992
- The `JSONObject` scalar type represents JSON objects as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf).
993
- """
994
- scalar JSONObject
995
-
996
- type UserImages {
997
- profilePictureUrl: String
998
- cardPictureUrl: String
999
- bannerPictureUrl: String
1000
- }
1001
-
1002
- type DeleteValuesResponse {
1003
- deleted: [String!]!
1004
- failedToDelete: [String!]!
1005
- failureReason: [ErrorType!]!
1006
- result: String!
1007
- }
1008
-
1009
- input CreateDatabaseFileDto {
1010
- identifier: String!
1011
- version: String! = "1.0.0"
1012
- contentType: String!
1013
- }
1014
-
1015
- input CreateTextDatabaseFileDto {
1016
- identifier: String!
1017
- version: String! = "1.0.0"
1018
- contentType: String!
1019
- content: String! = ""
1020
- }
1021
-
1022
- input UpdateDatabaseFileDto {
1023
- _id: String!
1024
- identifier: String
1025
- version: String
1026
- contentType: String
1027
- }
1028
-
1029
- input UpdateTextDatabaseFileDto {
1030
- _id: String!
1031
- identifier: String
1032
- version: String
1033
- contentType: String
1034
- content: String
1035
- }
1036
-
1037
- input CloneDatabaseFileDto {
1038
- _id: String!
1039
- version: String
1040
- }
1041
-
1042
- input FindDatabaseFilesDto {
1043
- _id: String
1044
- identifier: String
1045
- version: String
1046
- }
1047
-
1048
- input GetDatabaseFileDto {
1049
- identifier: String!
1050
- version: String!
1051
- }
1052
-
1053
- input CreateVerificationCodeDto {
1054
- type: String
1055
- recipient: String
1056
- expiresTime: Float = 10
1057
- expiresUnit: String = "MINUTES"
1058
- data: String
1059
- }
1060
-
1061
- input VerifyCodeDto {
1062
- codeId: String!
1063
- enteredCodeValue: String!
1064
- type: String
1065
- }
1066
-
1067
- input AthleteInvitationDto {
1068
- email: String!
1069
- name: String
1070
- sender: String
1071
- brandId: String
1072
- }
1073
-
1074
- input InviteAthletesDto {
1075
- language: String = "en"
1076
- invitations: [AthleteInvitationDto!]!
1077
- }
1078
-
1079
- input CompetitionResultDto {
1080
- resultType: String!
1081
- position: Float
1082
- score: String
1083
- finishTimeMS: Float
1084
- resultWebLink: String
1085
- }
1086
-
1087
- input SetCompetitionResultDto {
1088
- resultType: String!
1089
- position: Float
1090
- score: String
1091
- finishTimeMS: Float
1092
- resultWebLink: String
1093
- competitionId: String!
1094
- }
1095
-
1096
- input CreateAthleteCompetitionDto {
1097
- event: String!
1098
- date: DateTime!
1099
- eventWebsite: String
1100
- competitionNumber: String
1101
- result: CompetitionResultDto
1102
- cityId: String
1103
- }
1104
-
1105
- input CreateAthleteCompetitionForDto {
1106
- event: String!
1107
- date: DateTime!
1108
- eventWebsite: String
1109
- competitionNumber: String
1110
- result: CompetitionResultDto
1111
- cityId: String
1112
- loginEmail: String!
1113
- }
1114
-
1115
- input CursorPositionDto {
1116
- cursorId: String!
1117
- cursorFieldValue: String!
1118
- }
1119
-
1120
- input SortCriteriaDto {
1121
- sortField: String!
1122
- order: String! = "ASC"
1123
- }
1124
-
1125
- input CursorPaginationDto {
1126
- sortCriteria: SortCriteriaDto
1127
- limit: Float = 25
1128
- cursorPosition: CursorPositionDto
1129
- }
1130
-
1131
- input DeleteSingleValueDto {
1132
- idToDelete: String!
1133
- }
1134
-
1135
- input FundCampaignFilterDto {
1136
- campaignTitle: String
1137
- status: String
1138
- minCompletion: Float
1139
- maxCompletion: Float
1140
- minFundsRequired: Float
1141
- maxFundsRequired: Float
1142
- minEndingDate: DateTime
1143
- maxEndingDate: DateTime
1144
- competitions: [String!]
1145
- cities: [String!]
1146
- states: [String!]
1147
- countries: [String!]
1148
- }
1149
-
1150
- input AthleteFilterDto {
1151
- name: String
1152
- cities: [String!]
1153
- states: [String!]
1154
- countries: [String!]
1155
- teams: [String!]
1156
- currentCampaign: FundCampaignFilterDto
1157
- sports: [String!]
1158
- sportLevels: [String!]
1159
- mainSportOnly: Boolean = true
1160
- gender: String
1161
- minAge: Float
1162
- maxAge: Float
1163
- minDob: DateTime
1164
- maxDob: DateTime
1165
- minVTXScore: Float
1166
- maxVTXScore: Float
1167
- minSocialScore: Float
1168
- maxSocialScore: Float
1169
- minTrainingScore: Float
1170
- maxTrainingScore: Float
1171
- minPerformanceScore: Float
1172
- maxPerformanceScore: Float
1173
- }
1174
-
1175
- input AthleteQueryDto {
1176
- cursor: CursorPaginationDto
1177
- filters: AthleteFilterDto
1178
- }
1179
-
1180
- input EditPictureDto {
1181
- field: String!
1182
- newPicture: AWSS3UploadedFileDto
1183
- }
1184
-
1185
- input AWSS3UploadedFileDto {
1186
- key: String!
1187
- useType: String!
1188
- contentType: String!
1189
- originalFileName: String
1190
- fileSize: Float
1191
- }
1192
-
1193
- input UploadAlbumsPicturesDto {
1194
- label: String!
1195
- description: String
1196
- pictures: [AWSS3UploadedFileDto!]
1197
- }
1198
-
1199
- input QualificationDto {
1200
- type: String!
1201
- }
1202
-
1203
- input AgeQualificationDto {
1204
- type: String!
1205
- value: Float!
1206
- operator: String!
1207
- }
1208
-
1209
- input GenderQualificationDto {
1210
- type: String!
1211
- operator: String!
1212
- values: [String!]!
1213
- }
1214
-
1215
- input NationalityQualificationDto {
1216
- type: String!
1217
- operator: String!
1218
- countries: [String!]!
1219
- }
1220
-
1221
- input ScoreQualificationDto {
1222
- type: String!
1223
- scoreType: String!
1224
- operator: String!
1225
- value: Float!
1226
- }
1227
-
1228
- input LocationQualificationDto {
1229
- type: String!
1230
- operator: String!
1231
- countries: [String!]!
1232
- states: [String!]!
1233
- cities: [String!]!
1234
- }
1235
-
1236
- input DistanceQualificationDto {
1237
- type: String!
1238
- maxDistance: Float!
1239
- latitude: Float
1240
- longitude: Float
1241
- cityId: String
1242
- }
1243
-
1244
- input SportsQualificationDto {
1245
- type: String!
1246
- sports: [String!]!
1247
- operator: String!
1248
- }
1249
-
1250
- input SportsLevelQualificationDto {
1251
- type: String!
1252
- operator: String!
1253
- level: String!
1254
- }
1255
-
1256
- input RegisterUserDto {
1257
- email: String!
1258
- password: String!
1259
- inviteCode: String
1260
- }
1261
-
1262
- input DeleteValuesDto {
1263
- idsToDelete: [String!]!
1264
- allOrNone: Boolean = true
1265
- }
1266
-
1267
- input BudgetItemDto {
1268
- quantity: Float!
1269
- concept: String!
1270
- itemCost: Float!
1271
- }
1272
-
1273
- input CreateBudgetItemDto {
1274
- quantity: Float!
1275
- concept: String!
1276
- itemCost: Float!
1277
- budgetId: String!
1278
- }
1279
-
1280
- input CreateBudgetDto {
1281
- initialFunds: Float = 0
1282
- items: [BudgetItemDto!]
1283
- }
1284
-
1285
- input CreateCompetitionBudgetDto {
1286
- initialFunds: Float = 0
1287
- items: [BudgetItemDto!]
1288
- athleteCompetitionId: String!
1289
- }
1290
-
1291
- input CreateFundingCampaignDto {
1292
- budgetMode: String!
1293
- title: String!
1294
- motivation: String!
1295
- website: String
1296
- fundsRequired: Float!
1297
- initialFundsObtained: Float! = 0
1298
- cityId: String
1299
- endingDate: DateTime!
1300
- budget: CreateBudgetDto
1301
- competitionBudgets: [CreateCompetitionBudgetDto!]
1302
- competitionIds: [String!]
1303
- }
1304
-
1305
- input CreateFundingCampaignForDto {
1306
- budgetMode: String!
1307
- title: String!
1308
- motivation: String!
1309
- website: String
1310
- fundsRequired: Float!
1311
- initialFundsObtained: Float! = 0
1312
- cityId: String
1313
- endingDate: DateTime!
1314
- budget: CreateBudgetDto
1315
- competitionBudgets: [CreateCompetitionBudgetDto!]
1316
- competitionIds: [String!]
1317
- loginEmail: String!
1318
- }
1319
-
1320
- input SetFundingStatusDto {
1321
- fundingCampaignId: String!
1322
- newStatus: String!
1323
- }
1324
-
1325
- input CreateMembershipOrganizationDto {
1326
- shortName: String!
1327
- acronym: String
1328
- fullName: String!
1329
- website: String
1330
- logo: AWSS3UploadedFileDto
1331
- countryId: String
1332
- sportId: String
1333
- }
1334
-
1335
- input CreateAthleteMembershipDto {
1336
- organizationId: String!
1337
- membershipNumber: String
1338
- membershipType: String
1339
- issueDate: DateTime
1340
- expirationDate: DateTime
1341
- }
1342
-
1343
- input DonationCheckoutDto {
1344
- fundingCampaignId: String!
1345
- donationAmount: Float!
1346
- mode: String! = "private"
1347
- fromName: String
1348
- fromEmail: String
1349
- fromPhone: String
1350
- message: String
1351
- }
1352
-
1353
- input StripeQueryDto {
1354
- operation: String!
1355
- id: String!
1356
- params: String
1357
- }
1358
-
1359
- type Query {
1360
- findTenantById(_id: String!): Tenant!
1361
- findTenantByEmail(email: String!, domainId: String!): Tenant!
1362
- getTenants: [Tenant!]!
1363
- isTenantUriAvailable(tenant_uri: String!): UriAvailableType!
1364
- findUserById(_id: String!): User!
1365
- findUserByEmail(email: String!): User!
1366
- validateUserCredentials(username: String!, password: String!): User!
1367
- getUploadUrl(input: AWSS3GetUploadDto!): AWSS3UploadUrl!
1368
- industries: [Industry!]!
1369
- findIndustryById(industryId: String!): Industry!
1370
- brands: [Brand!]!
1371
- getBrandByName(name: String!, translations: Boolean!): Brand!
1372
- getBrandTranslation(brandId: String!, language: String!): BrandTranslation!
1373
- existsValidSponsorForEmail(loginEmail: String!): Sponsor!
1374
- sponsors: [Sponsor!]!
1375
- findSponsorAthleteInvitation(input: FindSponsorAthleteInvitationDto!): SponsorAthleteInvitation!
1376
- getAthletes: [Athlete!]!
1377
- queryAthleteFundingCampaigns(input: AthleteQueryDto!): AthleteQueryResponse!
1378
- searchAthletes(searchString: String!): [Athlete!]!
1379
- findAthleteById(athleteId: String!): Athlete!
1380
- findAthleteForUser(loginEmail: String!): Athlete!
1381
- getRecommendedAthletes(loginEmail: String!): [Athlete!]!
1382
- getSponsorAthletesForTenant: [Athlete!]!
1383
- getAthleteCompetitions(input: GetAthleteCompetitionsDto!): [AthleteCompetition!]!
1384
- getAthleteMemberships(athleteId: String!): [AthleteMembership!]!
1385
- findAthletebyIdpublic(athleteId: String!): Athlete!
1386
- getAthleteAlbums: Album!
1387
- getAthleteAlbumId(input: String!): Album!
1388
- queryAthleteWithFilter(input: AthleteQueryDto!): AthleteQueryResponse!
1389
- getSports: [Sport!]!
1390
- findSportById(sportId: String!): Sport!
1391
- getSportLevels: [SportLevel!]!
1392
- getPublicSponsorships: [Sponsorship!]!
1393
- getTenantSponsorships: [Sponsorship!]!
1394
- getCountries: [Country!]!
1395
- getCountryStates(countryId: String!): [State!]!
1396
- getStateCities(stateId: String!): [City!]!
1397
- findCitiesStartingWith(text: String!): [City!]!
1398
- findCityById(cityId: String!): City!
1399
- findVtxUser(input: FindVtxUserDto!): User!
1400
- validateUserCredentialsVtx(username: String!, password: String!): User!
1401
- getUserImagesFromEmail(loginEmail: String!): UserImages!
1402
- getStravaLoginUrl: String!
1403
- getSportsEvents(input: GetSportEventsDto!): [SportsEvent!]!
1404
- getMembershipOrganizations: [MembershipOrganizationReference!]!
1405
- stripeQuery(input: StripeQueryDto!): StripeObject!
1406
- getDatabaseTextFile(input: GetDatabaseFileDto!): TextDatabaseFile!
1407
- }
1408
-
1409
- input AWSS3GetUploadDto {
1410
- useType: String!
1411
- name: String
1412
- }
1413
-
1414
- input FindSponsorAthleteInvitationDto {
1415
- code: String!
1416
- type: String
1417
- }
1418
-
1419
- input GetAthleteCompetitionsDto {
1420
- athleteId: String!
1421
- fromInclusive: DateTime
1422
- toExclusive: DateTime
1423
- }
1424
-
1425
- input FindVtxUserDto {
1426
- loginEmail: String!
1427
- }
1428
-
1429
- input GetSportEventsDto {
1430
- matchString: String
1431
- }
1432
-
1433
- type Mutation {
1434
- registerNewDomainTenant(tenant: CreateTenantInput!): Tenant!
1435
- registerNewDomainTenantWithLogin(tenant: CreateTenantInput!): TenantWithUserLogin!
1436
- createUserAndLogin(user: CreateActiveUserInput!): UserWithToken!
1437
- loginUserFromEmail(email: String!, loginMethod: String!): UserToken!
1438
- loginUserFromCredentials(username: String!, password: String!): UserWithToken!
1439
- registerUserToDomainFromEmail(input: RegisterUserToDomainFromEmailInput!): User!
1440
- refreshToken(dto: RefreshTokenInput!): UserToken!
1441
- deleteUploadedUseTypeFile(input: AWSS3DeleteUseTypeFileDto!): AWSS3CallResult!
1442
- deleteUploadedBucketFile(input: AWSS3DeleteBucketFileDto!): AWSS3CallResult!
1443
- registerS3UploadedFile(input: AWSS3UploadedFileDto!): AWSS3File!
1444
- createIndustry(input: CreateIndustryDto!): Industry!
1445
- createBrand(input: CreateBrandDto!): Brand!
1446
- registerSponsor(input: RegisterSponsorInput!): Sponsor!
1447
- createSponsor(input: CreateSponsorDto!): Sponsor!
1448
- sendAthleteInvitations(input: InviteAthletesDto!): [SponsorAthleteInvitation!]!
1449
- registerAthlete(input: RegisterAthleteDto!): Athlete!
1450
- editProfileValue(input: EditValueDto!): EditValueResponse!
1451
- editPicture(input: EditPictureDto!): EditPictureResponse!
1452
- AddAlbumPictures(input: UploadAlbumsPicturesDto!): AddValuesResponse!
1453
- DeletePictureBuket(input: AWSS3DeleteUseTypeFileDto!): DeleteSingleValueResponse!
1454
- addAthleteCompetition(input: CreateAthleteCompetitionDto!): AthleteCompetition!
1455
- deleteAthleteCompetition(input: DeleteSingleValueDto!): DeleteSingleValueResponse!
1456
- createAthleteAlbum(input: UploadAlbumsPicturesDto!): Album!
1457
- deleteAthleteAlbum(input: DeleteSingleValueDto!): DeleteSingleValueResponse!
1458
- createSport(input: CreateSportDto!): Sport!
1459
- updateSport(input: UpdateSportDto!): Sport!
1460
- createSportLevel(input: CreateSportLevelDto!): SportLevel!
1461
- createSponsorship(input: CreateSponsorshipDto!): Sponsorship!
1462
- createCountry(input: CreateCountryDto!): Country!
1463
- createState(input: CreateStateDto!): State!
1464
- createCity(input: CreateCityDto!): City!
1465
- preRegisterAthleteUser(input: RegisterUserDto!): VerificationCode!
1466
- confirmAthleteUserRegistrationAndLogin(input: VerifyCodeDto!): UserWithToken!
1467
- confirmAthleteUserRegistration(input: VerifyCodeDto!): User!
1468
- registerAthleteUser(input: RegisterUserDto!): User!
1469
- registerSponsorUser(input: RegisterUserDto!): User!
1470
- loginUserFromCredentialsVtx(username: String!, password: String!): UserWithToken!
1471
- handleStravaCallback(data: RegisterStravaDto!): StravaToken!
1472
- refreshStravaToken(input: String!): StravaToken!
1473
- createSportsEvent(input: CreateSportEventDto!): SportsEvent!
1474
- setFundingStatus(input: SetFundingStatusDto!): FundRaisingCampaign!
1475
- createFundingCampaign(input: CreateFundingCampaignDto!): FundRaisingCampaign!
1476
- createMembershipOrganization(input: CreateMembershipOrganizationDto!): MembershipOrganizationReference!
1477
- createAthleteMembershipAffilation(input: CreateAthleteMembershipDto!): AthleteMembership!
1478
- deleteAthleteMembershipAffilation(input: DeleteSingleValueDto!): DeleteSingleValueResponse!
1479
- createStripeAccount(input: CreateStripeAccountDto!): StripeAccountReference!
1480
- createAthleteStripeSession: StripeSession!
1481
- createStripeCheckoutSession(input: DonationCheckoutDto!): StripeCheckoutSession!
1482
- }
1483
-
1484
- input CreateTenantInput {
1485
- name: String!
1486
- email: String!
1487
- tenant_uri: String!
1488
- domain: String!
1489
- }
1490
-
1491
- input CreateActiveUserInput {
1492
- loginEmail: String!
1493
- password: String
1494
- loginMethod: String
1495
- }
1496
-
1497
- input RegisterUserToDomainFromEmailInput {
1498
- email: String!
1499
- domainId: String!
1500
- tenantId: String
1501
- createUserIfNotExist: Boolean = false
1502
- }
1503
-
1504
- input RefreshTokenInput {
1505
- refreshToken: String!
1506
- }
1507
-
1508
- input AWSS3DeleteUseTypeFileDto {
1509
- name: String!
1510
- useType: String!
1511
- }
1512
-
1513
- input AWSS3DeleteBucketFileDto {
1514
- key: String!
1515
- bucket: String!
1516
- credentialsId: String
1517
- }
1518
-
1519
- input CreateIndustryDto {
1520
- name: String!
1521
- }
1522
-
1523
- input CreateBrandDto {
1524
- name: String!
1525
- description: String
1526
- slogan: String
1527
- website: String
1528
- logo: AWSS3UploadedFileDto
1529
- banner: AWSS3UploadedFileDto
1530
- translations: [BrandTranslationDto!]
1531
- }
1532
-
1533
- input BrandTranslationDto {
1534
- brandId: String!
1535
- language: String!
1536
- name: String
1537
- description: String
1538
- slogan: String
1539
- logo: AWSS3UploadedFileDto
1540
- banner: AWSS3UploadedFileDto
1541
- }
1542
-
1543
- input RegisterSponsorInput {
1544
- name: String!
1545
- phone: String
1546
- hasWhatsapp: Boolean! = false
1547
- companyName: String
1548
- companyEmail: String!
1549
- industryId: String!
1550
- companySize: String!
1551
- operatorType: String!
1552
- numberOfAthletes: String!
1553
- brands: [String!]!
1554
- }
1555
-
1556
- input CreateSponsorDto {
1557
- name: String!
1558
- description: String
1559
- }
1560
-
1561
- input RegisterAthleteDto {
1562
- email: String!
1563
- firstName: String!
1564
- lastName: String!
1565
- screenName: String
1566
- nationality: String!
1567
- cityId: String!
1568
- locLatitude: Float
1569
- locLongitude: Float
1570
- dateOfBirth: DateTime!
1571
- lgbt: Boolean = false
1572
- trainer: String
1573
- trainerUrl: String
1574
- aboutMe: String
1575
- team: String
1576
- gender: String!
1577
- mainSport: String!
1578
- mainSportLevel: String!
1579
- profilePicture: AWSS3UploadedFileDto
1580
- cardPicture: AWSS3UploadedFileDto
1581
- }
1582
-
1583
- input EditValueDto {
1584
- field: String!
1585
- newValue: String
1586
- }
1587
-
1588
- input CreateSportDto {
1589
- _id: String!
1590
- name: String!
1591
- resultType: String = "POSITION"
1592
- }
1593
-
1594
- input UpdateSportDto {
1595
- _id: String!
1596
- name: String!
1597
- }
1598
-
1599
- input CreateSportLevelDto {
1600
- _id: String!
1601
- label: String!
1602
- index: Float!
1603
- translations: [CreateSportLevelTranslationDto!]
1604
- }
1605
-
1606
- input CreateSportLevelTranslationDto {
1607
- language: String!
1608
- label: String!
1609
- }
1610
-
1611
- input CreateSponsorshipDto {
1612
- title: String!
1613
- brandId: String!
1614
- description: String
1615
- cashValue: Float = 0
1616
- otherValue: Float = 0
1617
- banner: AWSS3UploadedFileDto
1618
- criteria: AthleteCriteriaDto
1619
- deadline: DateTime
1620
- startDate: DateTime
1621
- duration: DurationDto!
1622
- sponsorshipItems: [SponsorshipItemDto!]
1623
- commitments: [SponsorshipCommitmentDto!]
1624
- terms: String
1625
- published: Boolean = true
1626
- isPrivate: Boolean = false
1627
- translations: [SponsorshipTranslationDto!]
1628
- }
1629
-
1630
- input AthleteCriteriaDto {
1631
- _id: String!
1632
- label: String
1633
- qualificationsBag: QualificationsBagDto
1634
- }
1635
-
1636
- input QualificationsBagDto {
1637
- ageQualifications: [AgeQualificationDto!]
1638
- genderQualifications: [GenderQualificationDto!]
1639
- scoreQualifications: [ScoreQualificationDto!]
1640
- locationQualifications: [LocationQualificationDto!]
1641
- nationalityQualifications: [NationalityQualificationDto!]
1642
- distanceQualifications: [DistanceQualificationDto!]
1643
- sportsQualifications: [SportsQualificationDto!]
1644
- levelQualifications: [SportsLevelQualificationDto!]
1645
- }
1646
-
1647
- input DurationDto {
1648
- length: Float! = 1
1649
- unit: String! = "YEARS"
1650
- }
1651
-
1652
- input SponsorshipItemDto {
1653
- _id: String!
1654
- quantity: Float! = 1
1655
- title: String!
1656
- value: Float! = 0
1657
- }
1658
-
1659
- input SponsorshipCommitmentDto {
1660
- _id: String!
1661
- title: String!
1662
- details: String
1663
- hashTags: [String!]
1664
- media: String!
1665
- actionType: String!
1666
- frequency: Float = 1
1667
- periodicity: String!
1668
- }
1669
-
1670
- input SponsorshipTranslationDto {
1671
- sponsorshipId: String!
1672
- language: String!
1673
- title: String
1674
- description: String
1675
- banner: AWSS3UploadedFileDto
1676
- terms: String
1677
- }
1678
-
1679
- input CreateCountryDto {
1680
- _id: String!
1681
- name: String!
1682
- }
1683
-
1684
- input CreateStateDto {
1685
- _id: String!
1686
- name: String!
1687
- countryId: String!
1688
- }
1689
-
1690
- input CreateCityDto {
1691
- _id: String!
1692
- cityName: String!
1693
- cityNameLocalized: String!
1694
- lat: Float!
1695
- lng: Float!
1696
- stateId: String!
1697
- timezone: String!
1698
- city_alt: String
1699
- iso3: String
1700
- admin_type: String
1701
- capital: String
1702
- density: Float
1703
- population: Float
1704
- population_proper: Float
1705
- ranking: Float
1706
- same_name: String
1707
- }
1708
-
1709
- input RegisterStravaDto {
1710
- idAthlete: String!
1711
- code: String!
1712
- }
1713
-
1714
- input CreateSportEventDto {
1715
- name: String!
1716
- cityId: String
1717
- sportId: String
1718
- startDate: DateTime!
1719
- endDate: DateTime
1720
- website: String
1721
- banner: AWSS3UploadedFileDto
1722
- }
1723
-
1724
- input CreateStripeAccountDto {
1725
- countryId: String!
1726
- acceptedTermsId: String!
1727
- acceptedPrivacyId: String!
1728
- }