@vertikalx/vtx-backend-client 1.0.0-dev-daniel.232 → 1.0.0-dev-daniel.233

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,1730 +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
- nacionalities: [String!]
1156
- teams: [String!]
1157
- currentCampaign: FundCampaignFilterDto
1158
- sports: [String!]
1159
- sportLevels: [String!]
1160
- mainSportOnly: Boolean = true
1161
- gender: String
1162
- minAge: Float
1163
- maxAge: Float
1164
- minDob: DateTime
1165
- maxDob: DateTime
1166
- minVTXScore: Float
1167
- maxVTXScore: Float
1168
- minSocialScore: Float
1169
- maxSocialScore: Float
1170
- minTrainingScore: Float
1171
- maxTrainingScore: Float
1172
- minPerformanceScore: Float
1173
- maxPerformanceScore: Float
1174
- }
1175
-
1176
- input AthleteQueryDto {
1177
- cursor: CursorPaginationDto
1178
- filters: AthleteFilterDto
1179
- }
1180
-
1181
- input EditPictureDto {
1182
- field: String!
1183
- newPicture: AWSS3UploadedFileDto
1184
- }
1185
-
1186
- input AWSS3UploadedFileDto {
1187
- key: String!
1188
- useType: String!
1189
- contentType: String!
1190
- originalFileName: String
1191
- fileSize: Float
1192
- }
1193
-
1194
- input UploadAlbumsPicturesDto {
1195
- label: String!
1196
- description: String
1197
- pictures: [AWSS3UploadedFileDto!]
1198
- }
1199
-
1200
- input QualificationDto {
1201
- type: String!
1202
- }
1203
-
1204
- input AgeQualificationDto {
1205
- type: String!
1206
- value: Float!
1207
- operator: String!
1208
- }
1209
-
1210
- input GenderQualificationDto {
1211
- type: String!
1212
- operator: String!
1213
- values: [String!]!
1214
- }
1215
-
1216
- input NationalityQualificationDto {
1217
- type: String!
1218
- operator: String!
1219
- countries: [String!]!
1220
- }
1221
-
1222
- input ScoreQualificationDto {
1223
- type: String!
1224
- scoreType: String!
1225
- operator: String!
1226
- value: Float!
1227
- }
1228
-
1229
- input LocationQualificationDto {
1230
- type: String!
1231
- operator: String!
1232
- countries: [String!]!
1233
- states: [String!]!
1234
- cities: [String!]!
1235
- }
1236
-
1237
- input DistanceQualificationDto {
1238
- type: String!
1239
- maxDistance: Float!
1240
- latitude: Float
1241
- longitude: Float
1242
- cityId: String
1243
- }
1244
-
1245
- input SportsQualificationDto {
1246
- type: String!
1247
- sports: [String!]!
1248
- operator: String!
1249
- }
1250
-
1251
- input SportsLevelQualificationDto {
1252
- type: String!
1253
- operator: String!
1254
- level: String!
1255
- }
1256
-
1257
- input RegisterUserDto {
1258
- email: String!
1259
- password: String!
1260
- inviteCode: String
1261
- }
1262
-
1263
- input DeleteValuesDto {
1264
- idsToDelete: [String!]!
1265
- allOrNone: Boolean = true
1266
- }
1267
-
1268
- input BudgetItemDto {
1269
- quantity: Float!
1270
- concept: String!
1271
- itemCost: Float!
1272
- }
1273
-
1274
- input CreateBudgetItemDto {
1275
- quantity: Float!
1276
- concept: String!
1277
- itemCost: Float!
1278
- budgetId: String!
1279
- }
1280
-
1281
- input CreateBudgetDto {
1282
- initialFunds: Float = 0
1283
- items: [BudgetItemDto!]
1284
- }
1285
-
1286
- input CreateCompetitionBudgetDto {
1287
- initialFunds: Float = 0
1288
- items: [BudgetItemDto!]
1289
- athleteCompetitionId: String!
1290
- }
1291
-
1292
- input CreateFundingCampaignDto {
1293
- budgetMode: String!
1294
- title: String!
1295
- motivation: String!
1296
- website: String
1297
- fundsRequired: Float!
1298
- initialFundsObtained: Float! = 0
1299
- cityId: String
1300
- endingDate: DateTime!
1301
- budget: CreateBudgetDto
1302
- competitionBudgets: [CreateCompetitionBudgetDto!]
1303
- competitionIds: [String!]
1304
- }
1305
-
1306
- input CreateFundingCampaignForDto {
1307
- budgetMode: String!
1308
- title: String!
1309
- motivation: String!
1310
- website: String
1311
- fundsRequired: Float!
1312
- initialFundsObtained: Float! = 0
1313
- cityId: String
1314
- endingDate: DateTime!
1315
- budget: CreateBudgetDto
1316
- competitionBudgets: [CreateCompetitionBudgetDto!]
1317
- competitionIds: [String!]
1318
- loginEmail: String!
1319
- }
1320
-
1321
- input SetFundingStatusDto {
1322
- fundingCampaignId: String!
1323
- newStatus: String!
1324
- }
1325
-
1326
- input CreateMembershipOrganizationDto {
1327
- shortName: String!
1328
- acronym: String
1329
- fullName: String!
1330
- website: String
1331
- logo: AWSS3UploadedFileDto
1332
- countryId: String
1333
- sportId: String
1334
- }
1335
-
1336
- input CreateAthleteMembershipDto {
1337
- organizationId: String!
1338
- membershipNumber: String
1339
- membershipType: String
1340
- issueDate: DateTime
1341
- expirationDate: DateTime
1342
- }
1343
-
1344
- input DonationCheckoutDto {
1345
- fundingCampaignId: String!
1346
- donationAmount: Float!
1347
- mode: String! = "private"
1348
- fromName: String
1349
- fromEmail: String
1350
- fromPhone: String
1351
- message: String
1352
- }
1353
-
1354
- input StripeQueryDto {
1355
- operation: String!
1356
- id: String!
1357
- params: String
1358
- }
1359
-
1360
- type Query {
1361
- findTenantById(_id: String!): Tenant!
1362
- findTenantByEmail(email: String!, domainId: String!): Tenant!
1363
- getTenants: [Tenant!]!
1364
- isTenantUriAvailable(tenant_uri: String!): UriAvailableType!
1365
- findUserById(_id: String!): User!
1366
- findUserByEmail(email: String!): User!
1367
- validateUserCredentials(username: String!, password: String!): User!
1368
- getUploadUrl(input: AWSS3GetUploadDto!): AWSS3UploadUrl!
1369
- industries: [Industry!]!
1370
- findIndustryById(industryId: String!): Industry!
1371
- brands: [Brand!]!
1372
- getBrandByName(name: String!, translations: Boolean!): Brand!
1373
- getBrandTranslation(brandId: String!, language: String!): BrandTranslation!
1374
- existsValidSponsorForEmail(loginEmail: String!): Sponsor!
1375
- sponsors: [Sponsor!]!
1376
- findSponsorAthleteInvitation(input: FindSponsorAthleteInvitationDto!): SponsorAthleteInvitation!
1377
- getAthletes: [Athlete!]!
1378
- queryAthleteFundingCampaigns(input: AthleteQueryDto!): AthleteQueryResponse!
1379
- searchAthletes(searchString: String!): [Athlete!]!
1380
- findAthleteById(athleteId: String!): Athlete!
1381
- findAthleteForUser(loginEmail: String!): Athlete!
1382
- getRecommendedAthletes(loginEmail: String!): [Athlete!]!
1383
- getSponsorAthletesForTenant: [Athlete!]!
1384
- getAthleteCompetitions(input: GetAthleteCompetitionsDto!): [AthleteCompetition!]!
1385
- getAthleteMemberships(athleteId: String!): [AthleteMembership!]!
1386
- findAthletebyIdpublic(athleteId: String!): Athlete!
1387
- getAthleteAlbums: Album!
1388
- getAthleteAlbumId(input: String!): Album!
1389
- queryAthleteWithFilter(input: AthleteQueryDto!): AthleteQueryResponse!
1390
- getSports: [Sport!]!
1391
- findSportById(sportId: String!): Sport!
1392
- getSportLevels: [SportLevel!]!
1393
- getPublicSponsorships: [Sponsorship!]!
1394
- getTenantSponsorships: [Sponsorship!]!
1395
- getCountries: [Country!]!
1396
- getCountryStates(countryId: String!): [State!]!
1397
- getStates: [State!]!
1398
- getStateCities(stateId: String!): [City!]!
1399
- findCitiesStartingWith(text: String!): [City!]!
1400
- findCityById(cityId: String!): City!
1401
- findVtxUser(input: FindVtxUserDto!): User!
1402
- validateUserCredentialsVtx(username: String!, password: String!): User!
1403
- getUserImagesFromEmail(loginEmail: String!): UserImages!
1404
- getStravaLoginUrl: String!
1405
- getSportsEvents(input: GetSportEventsDto!): [SportsEvent!]!
1406
- getMembershipOrganizations: [MembershipOrganizationReference!]!
1407
- stripeQuery(input: StripeQueryDto!): StripeObject!
1408
- getDatabaseTextFile(input: GetDatabaseFileDto!): TextDatabaseFile!
1409
- }
1410
-
1411
- input AWSS3GetUploadDto {
1412
- useType: String!
1413
- name: String
1414
- }
1415
-
1416
- input FindSponsorAthleteInvitationDto {
1417
- code: String!
1418
- type: String
1419
- }
1420
-
1421
- input GetAthleteCompetitionsDto {
1422
- athleteId: String!
1423
- fromInclusive: DateTime
1424
- toExclusive: DateTime
1425
- }
1426
-
1427
- input FindVtxUserDto {
1428
- loginEmail: String!
1429
- }
1430
-
1431
- input GetSportEventsDto {
1432
- matchString: String
1433
- }
1434
-
1435
- type Mutation {
1436
- registerNewDomainTenant(tenant: CreateTenantInput!): Tenant!
1437
- registerNewDomainTenantWithLogin(tenant: CreateTenantInput!): TenantWithUserLogin!
1438
- createUserAndLogin(user: CreateActiveUserInput!): UserWithToken!
1439
- loginUserFromEmail(email: String!, loginMethod: String!): UserToken!
1440
- loginUserFromCredentials(username: String!, password: String!): UserWithToken!
1441
- registerUserToDomainFromEmail(input: RegisterUserToDomainFromEmailInput!): User!
1442
- refreshToken(dto: RefreshTokenInput!): UserToken!
1443
- deleteUploadedUseTypeFile(input: AWSS3DeleteUseTypeFileDto!): AWSS3CallResult!
1444
- deleteUploadedBucketFile(input: AWSS3DeleteBucketFileDto!): AWSS3CallResult!
1445
- registerS3UploadedFile(input: AWSS3UploadedFileDto!): AWSS3File!
1446
- createIndustry(input: CreateIndustryDto!): Industry!
1447
- createBrand(input: CreateBrandDto!): Brand!
1448
- registerSponsor(input: RegisterSponsorInput!): Sponsor!
1449
- createSponsor(input: CreateSponsorDto!): Sponsor!
1450
- sendAthleteInvitations(input: InviteAthletesDto!): [SponsorAthleteInvitation!]!
1451
- registerAthlete(input: RegisterAthleteDto!): Athlete!
1452
- editProfileValue(input: EditValueDto!): EditValueResponse!
1453
- editPicture(input: EditPictureDto!): EditPictureResponse!
1454
- AddAlbumPictures(input: UploadAlbumsPicturesDto!): AddValuesResponse!
1455
- DeletePictureBuket(input: AWSS3DeleteUseTypeFileDto!): DeleteSingleValueResponse!
1456
- addAthleteCompetition(input: CreateAthleteCompetitionDto!): AthleteCompetition!
1457
- deleteAthleteCompetition(input: DeleteSingleValueDto!): DeleteSingleValueResponse!
1458
- createAthleteAlbum(input: UploadAlbumsPicturesDto!): Album!
1459
- deleteAthleteAlbum(input: DeleteSingleValueDto!): DeleteSingleValueResponse!
1460
- createSport(input: CreateSportDto!): Sport!
1461
- updateSport(input: UpdateSportDto!): Sport!
1462
- createSportLevel(input: CreateSportLevelDto!): SportLevel!
1463
- createSponsorship(input: CreateSponsorshipDto!): Sponsorship!
1464
- createCountry(input: CreateCountryDto!): Country!
1465
- createState(input: CreateStateDto!): State!
1466
- createCity(input: CreateCityDto!): City!
1467
- preRegisterAthleteUser(input: RegisterUserDto!): VerificationCode!
1468
- confirmAthleteUserRegistrationAndLogin(input: VerifyCodeDto!): UserWithToken!
1469
- confirmAthleteUserRegistration(input: VerifyCodeDto!): User!
1470
- registerAthleteUser(input: RegisterUserDto!): User!
1471
- registerSponsorUser(input: RegisterUserDto!): User!
1472
- loginUserFromCredentialsVtx(username: String!, password: String!): UserWithToken!
1473
- handleStravaCallback(data: RegisterStravaDto!): StravaToken!
1474
- refreshStravaToken(input: String!): StravaToken!
1475
- createSportsEvent(input: CreateSportEventDto!): SportsEvent!
1476
- setFundingStatus(input: SetFundingStatusDto!): FundRaisingCampaign!
1477
- createFundingCampaign(input: CreateFundingCampaignDto!): FundRaisingCampaign!
1478
- createMembershipOrganization(input: CreateMembershipOrganizationDto!): MembershipOrganizationReference!
1479
- createAthleteMembershipAffilation(input: CreateAthleteMembershipDto!): AthleteMembership!
1480
- deleteAthleteMembershipAffilation(input: DeleteSingleValueDto!): DeleteSingleValueResponse!
1481
- createStripeAccount(input: CreateStripeAccountDto!): StripeAccountReference!
1482
- createAthleteStripeSession: StripeSession!
1483
- createStripeCheckoutSession(input: DonationCheckoutDto!): StripeCheckoutSession!
1484
- }
1485
-
1486
- input CreateTenantInput {
1487
- name: String!
1488
- email: String!
1489
- tenant_uri: String!
1490
- domain: String!
1491
- }
1492
-
1493
- input CreateActiveUserInput {
1494
- loginEmail: String!
1495
- password: String
1496
- loginMethod: String
1497
- }
1498
-
1499
- input RegisterUserToDomainFromEmailInput {
1500
- email: String!
1501
- domainId: String!
1502
- tenantId: String
1503
- createUserIfNotExist: Boolean = false
1504
- }
1505
-
1506
- input RefreshTokenInput {
1507
- refreshToken: String!
1508
- }
1509
-
1510
- input AWSS3DeleteUseTypeFileDto {
1511
- name: String!
1512
- useType: String!
1513
- }
1514
-
1515
- input AWSS3DeleteBucketFileDto {
1516
- key: String!
1517
- bucket: String!
1518
- credentialsId: String
1519
- }
1520
-
1521
- input CreateIndustryDto {
1522
- name: String!
1523
- }
1524
-
1525
- input CreateBrandDto {
1526
- name: String!
1527
- description: String
1528
- slogan: String
1529
- website: String
1530
- logo: AWSS3UploadedFileDto
1531
- banner: AWSS3UploadedFileDto
1532
- translations: [BrandTranslationDto!]
1533
- }
1534
-
1535
- input BrandTranslationDto {
1536
- brandId: String!
1537
- language: String!
1538
- name: String
1539
- description: String
1540
- slogan: String
1541
- logo: AWSS3UploadedFileDto
1542
- banner: AWSS3UploadedFileDto
1543
- }
1544
-
1545
- input RegisterSponsorInput {
1546
- name: String!
1547
- phone: String
1548
- hasWhatsapp: Boolean! = false
1549
- companyName: String
1550
- companyEmail: String!
1551
- industryId: String!
1552
- companySize: String!
1553
- operatorType: String!
1554
- numberOfAthletes: String!
1555
- brands: [String!]!
1556
- }
1557
-
1558
- input CreateSponsorDto {
1559
- name: String!
1560
- description: String
1561
- }
1562
-
1563
- input RegisterAthleteDto {
1564
- email: String!
1565
- firstName: String!
1566
- lastName: String!
1567
- screenName: String
1568
- nationality: String!
1569
- cityId: String!
1570
- locLatitude: Float
1571
- locLongitude: Float
1572
- dateOfBirth: DateTime!
1573
- lgbt: Boolean = false
1574
- trainer: String
1575
- trainerUrl: String
1576
- aboutMe: String
1577
- team: String
1578
- gender: String!
1579
- mainSport: String!
1580
- mainSportLevel: String!
1581
- profilePicture: AWSS3UploadedFileDto
1582
- cardPicture: AWSS3UploadedFileDto
1583
- }
1584
-
1585
- input EditValueDto {
1586
- field: String!
1587
- newValue: String
1588
- }
1589
-
1590
- input CreateSportDto {
1591
- _id: String!
1592
- name: String!
1593
- resultType: String = "POSITION"
1594
- }
1595
-
1596
- input UpdateSportDto {
1597
- _id: String!
1598
- name: String!
1599
- }
1600
-
1601
- input CreateSportLevelDto {
1602
- _id: String!
1603
- label: String!
1604
- index: Float!
1605
- translations: [CreateSportLevelTranslationDto!]
1606
- }
1607
-
1608
- input CreateSportLevelTranslationDto {
1609
- language: String!
1610
- label: String!
1611
- }
1612
-
1613
- input CreateSponsorshipDto {
1614
- title: String!
1615
- brandId: String!
1616
- description: String
1617
- cashValue: Float = 0
1618
- otherValue: Float = 0
1619
- banner: AWSS3UploadedFileDto
1620
- criteria: AthleteCriteriaDto
1621
- deadline: DateTime
1622
- startDate: DateTime
1623
- duration: DurationDto!
1624
- sponsorshipItems: [SponsorshipItemDto!]
1625
- commitments: [SponsorshipCommitmentDto!]
1626
- terms: String
1627
- published: Boolean = true
1628
- isPrivate: Boolean = false
1629
- translations: [SponsorshipTranslationDto!]
1630
- }
1631
-
1632
- input AthleteCriteriaDto {
1633
- _id: String!
1634
- label: String
1635
- qualificationsBag: QualificationsBagDto
1636
- }
1637
-
1638
- input QualificationsBagDto {
1639
- ageQualifications: [AgeQualificationDto!]
1640
- genderQualifications: [GenderQualificationDto!]
1641
- scoreQualifications: [ScoreQualificationDto!]
1642
- locationQualifications: [LocationQualificationDto!]
1643
- nationalityQualifications: [NationalityQualificationDto!]
1644
- distanceQualifications: [DistanceQualificationDto!]
1645
- sportsQualifications: [SportsQualificationDto!]
1646
- levelQualifications: [SportsLevelQualificationDto!]
1647
- }
1648
-
1649
- input DurationDto {
1650
- length: Float! = 1
1651
- unit: String! = "YEARS"
1652
- }
1653
-
1654
- input SponsorshipItemDto {
1655
- _id: String!
1656
- quantity: Float! = 1
1657
- title: String!
1658
- value: Float! = 0
1659
- }
1660
-
1661
- input SponsorshipCommitmentDto {
1662
- _id: String!
1663
- title: String!
1664
- details: String
1665
- hashTags: [String!]
1666
- media: String!
1667
- actionType: String!
1668
- frequency: Float = 1
1669
- periodicity: String!
1670
- }
1671
-
1672
- input SponsorshipTranslationDto {
1673
- sponsorshipId: String!
1674
- language: String!
1675
- title: String
1676
- description: String
1677
- banner: AWSS3UploadedFileDto
1678
- terms: String
1679
- }
1680
-
1681
- input CreateCountryDto {
1682
- _id: String!
1683
- name: String!
1684
- }
1685
-
1686
- input CreateStateDto {
1687
- _id: String!
1688
- name: String!
1689
- countryId: String!
1690
- }
1691
-
1692
- input CreateCityDto {
1693
- _id: String!
1694
- cityName: String!
1695
- cityNameLocalized: String!
1696
- lat: Float!
1697
- lng: Float!
1698
- stateId: String!
1699
- timezone: String!
1700
- city_alt: String
1701
- iso3: String
1702
- admin_type: String
1703
- capital: String
1704
- density: Float
1705
- population: Float
1706
- population_proper: Float
1707
- ranking: Float
1708
- same_name: String
1709
- }
1710
-
1711
- input RegisterStravaDto {
1712
- idAthlete: String!
1713
- code: String!
1714
- }
1715
-
1716
- input CreateSportEventDto {
1717
- name: String!
1718
- cityId: String
1719
- sportId: String
1720
- startDate: DateTime!
1721
- endDate: DateTime
1722
- website: String
1723
- banner: AWSS3UploadedFileDto
1724
- }
1725
-
1726
- input CreateStripeAccountDto {
1727
- countryId: String!
1728
- acceptedTermsId: String!
1729
- acceptedPrivacyId: String!
1730
- }