@vertikalx/vtx-backend-client 3.0.0-dev.3 → 3.0.0-dev.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +0 -0
- package/package.json +1 -1
- package/src/api/vtx-base-api.d.ts +117 -2
- package/src/api/vtx-base-api.js +2799 -16
- package/src/api/vtx-base-api.js.map +1 -1
- package/src/client/schema.d.ts +2405 -559
- package/src/client/schema.js +495 -81
- package/src/client/schema.js.map +1 -1
- package/src/client/types.d.ts +1327 -383
- package/src/client/types.js +4839 -2338
- package/src/client/types.js.map +1 -1
- package/tsconfig.lib.tsbuildinfo +1 -1
package/src/client/schema.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ export type Scalars = {
|
|
|
3
3
|
Boolean: boolean;
|
|
4
4
|
DateTime: any;
|
|
5
5
|
Float: number;
|
|
6
|
+
Int: number;
|
|
6
7
|
ID: string;
|
|
7
8
|
JSONObject: any;
|
|
8
9
|
};
|
|
@@ -311,108 +312,17 @@ export interface CodeVerificationResponse {
|
|
|
311
312
|
error: (ErrorInfo | null);
|
|
312
313
|
__typename: 'CodeVerificationResponse';
|
|
313
314
|
}
|
|
314
|
-
export interface
|
|
315
|
-
campaigns: (Scalars['Float'] | null);
|
|
316
|
-
sponsorships: (Scalars['Float'] | null);
|
|
317
|
-
sports: (Scalars['Float'] | null);
|
|
318
|
-
athletes: (Scalars['Float'] | null);
|
|
319
|
-
__typename: 'BrandStats';
|
|
320
|
-
}
|
|
321
|
-
export interface BrandTranslation {
|
|
322
|
-
_id: Scalars['String'];
|
|
323
|
-
brandId: Scalars['String'];
|
|
324
|
-
language: Scalars['String'];
|
|
325
|
-
name: (Scalars['String'] | null);
|
|
326
|
-
slogan: (Scalars['String'] | null);
|
|
327
|
-
description: (Scalars['String'] | null);
|
|
328
|
-
logo: (AWSS3File | null);
|
|
329
|
-
banner: (AWSS3File | null);
|
|
330
|
-
__typename: 'BrandTranslation';
|
|
331
|
-
}
|
|
332
|
-
export interface Brand {
|
|
315
|
+
export interface Industry {
|
|
333
316
|
_id: Scalars['String'];
|
|
334
317
|
name: Scalars['String'];
|
|
335
|
-
|
|
336
|
-
website: (Scalars['String'] | null);
|
|
337
|
-
description: (Scalars['String'] | null);
|
|
338
|
-
approved: Scalars['Boolean'];
|
|
339
|
-
published: Scalars['Boolean'];
|
|
340
|
-
logo: (AWSS3File | null);
|
|
341
|
-
banner: (AWSS3File | null);
|
|
342
|
-
stats: (BrandStats | null);
|
|
343
|
-
operatorIds: (Scalars['String'][] | null);
|
|
344
|
-
translations: (BrandTranslation[] | null);
|
|
345
|
-
__typename: 'Brand';
|
|
346
|
-
}
|
|
347
|
-
export interface StravaTpiRideDto {
|
|
348
|
-
distanceKm: Scalars['Float'];
|
|
349
|
-
distanceKmLast: Scalars['Float'];
|
|
350
|
-
elapsedTimeMin: Scalars['Float'];
|
|
351
|
-
elapsedTimeMinLast: Scalars['Float'];
|
|
352
|
-
averageSpeedKmh: Scalars['Float'];
|
|
353
|
-
averageSpeedKmhLast: Scalars['Float'];
|
|
354
|
-
maxSpeedKmh: Scalars['Float'];
|
|
355
|
-
maxSpeedKmhLast: Scalars['Float'];
|
|
356
|
-
averageHeartRateBpm: Scalars['Float'];
|
|
357
|
-
averageHeartRateBpmLast: Scalars['Float'];
|
|
358
|
-
maxHeartRateBpm: Scalars['Float'];
|
|
359
|
-
maxHeartRateBpmLast: Scalars['Float'];
|
|
360
|
-
averageCadenceStm: Scalars['Float'];
|
|
361
|
-
averageCadenceStmLast: Scalars['Float'];
|
|
362
|
-
lastDate: (Scalars['DateTime'] | null);
|
|
363
|
-
country: (Scalars['String'] | null);
|
|
364
|
-
state: (Scalars['String'] | null);
|
|
365
|
-
city: (Scalars['String'] | null);
|
|
366
|
-
tpi: Scalars['Float'];
|
|
367
|
-
__typename: 'StravaTpiRideDto';
|
|
368
|
-
}
|
|
369
|
-
export interface StravaTpiRunDto {
|
|
370
|
-
distanceKm: Scalars['Float'];
|
|
371
|
-
distanceKmLast: Scalars['Float'];
|
|
372
|
-
elapsedTimeMin: Scalars['Float'];
|
|
373
|
-
elapsedTimeMinLast: Scalars['Float'];
|
|
374
|
-
averageSpeedKmh: Scalars['Float'];
|
|
375
|
-
averageSpeedKmhLast: Scalars['Float'];
|
|
376
|
-
maxSpeedKmh: Scalars['Float'];
|
|
377
|
-
maxSpeedKmhLast: Scalars['Float'];
|
|
378
|
-
averageHeartRateBpm: Scalars['Float'];
|
|
379
|
-
averageHeartRateBpmLast: Scalars['Float'];
|
|
380
|
-
maxHeartRateBpm: Scalars['Float'];
|
|
381
|
-
maxHeartRateBpmLast: Scalars['Float'];
|
|
382
|
-
averageCadenceStm: Scalars['Float'];
|
|
383
|
-
averageCadenceStmLast: Scalars['Float'];
|
|
384
|
-
elevHigh: Scalars['Float'];
|
|
385
|
-
elevHighLast: Scalars['Float'];
|
|
386
|
-
elevLow: Scalars['Float'];
|
|
387
|
-
elevLowLast: Scalars['Float'];
|
|
388
|
-
lastDate: (Scalars['DateTime'] | null);
|
|
389
|
-
country: (Scalars['String'] | null);
|
|
390
|
-
state: (Scalars['String'] | null);
|
|
391
|
-
city: (Scalars['String'] | null);
|
|
392
|
-
tpi: Scalars['Float'];
|
|
393
|
-
__typename: 'StravaTpiRunDto';
|
|
318
|
+
__typename: 'Industry';
|
|
394
319
|
}
|
|
395
|
-
export interface
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
averageSpeedKmhLast: Scalars['Float'];
|
|
402
|
-
maxSpeedKmh: Scalars['Float'];
|
|
403
|
-
maxSpeedKmhLast: Scalars['Float'];
|
|
404
|
-
averageHeartRateBpm: Scalars['Float'];
|
|
405
|
-
averageHeartRateBpmLast: Scalars['Float'];
|
|
406
|
-
maxHeartRateBpm: Scalars['Float'];
|
|
407
|
-
maxHeartRateBpmLast: Scalars['Float'];
|
|
408
|
-
averageCadenceStm: Scalars['Float'];
|
|
409
|
-
averageCadenceStmLast: Scalars['Float'];
|
|
410
|
-
lastDate: (Scalars['DateTime'] | null);
|
|
411
|
-
country: (Scalars['String'] | null);
|
|
412
|
-
state: (Scalars['String'] | null);
|
|
413
|
-
city: (Scalars['String'] | null);
|
|
414
|
-
tpi: Scalars['Float'];
|
|
415
|
-
__typename: 'StravaTpiSwimDto';
|
|
320
|
+
export interface SponsorStats {
|
|
321
|
+
sponsoredAthletes: Scalars['Float'];
|
|
322
|
+
totalBrands: Scalars['Float'];
|
|
323
|
+
activeCampaigns: Scalars['Float'];
|
|
324
|
+
activeSponsorships: Scalars['Float'];
|
|
325
|
+
__typename: 'SponsorStats';
|
|
416
326
|
}
|
|
417
327
|
export interface City {
|
|
418
328
|
_id: Scalars['String'];
|
|
@@ -494,53 +404,14 @@ export interface AthleteCriteria {
|
|
|
494
404
|
_id: Scalars['String'];
|
|
495
405
|
label: (Scalars['String'] | null);
|
|
496
406
|
qualifications: (QualificationTypeUnion[] | null);
|
|
407
|
+
minAge: (Scalars['Int'] | null);
|
|
408
|
+
maxAge: (Scalars['Int'] | null);
|
|
409
|
+
allowedGenders: (Scalars['String'][] | null);
|
|
497
410
|
__typename: 'AthleteCriteria';
|
|
498
411
|
}
|
|
499
412
|
export type QualificationTypeUnion = (AgeQualification | GenderQualification | ScoreQualification | LocationQualification | NationalityQualification | DistanceQualification | SportsQualification | SportsLevelQualification) & {
|
|
500
413
|
__isUnion?: true;
|
|
501
414
|
};
|
|
502
|
-
export interface Industry {
|
|
503
|
-
_id: Scalars['String'];
|
|
504
|
-
name: Scalars['String'];
|
|
505
|
-
__typename: 'Industry';
|
|
506
|
-
}
|
|
507
|
-
export interface SponsorStats {
|
|
508
|
-
sponsoredAthletes: Scalars['Float'];
|
|
509
|
-
totalBrands: Scalars['Float'];
|
|
510
|
-
activeCampaigns: Scalars['Float'];
|
|
511
|
-
activeSponsorships: Scalars['Float'];
|
|
512
|
-
__typename: 'SponsorStats';
|
|
513
|
-
}
|
|
514
|
-
export interface SponsorBrand {
|
|
515
|
-
_id: Scalars['String'];
|
|
516
|
-
name: Scalars['String'];
|
|
517
|
-
slogan: (Scalars['String'] | null);
|
|
518
|
-
website: (Scalars['String'] | null);
|
|
519
|
-
description: (Scalars['String'] | null);
|
|
520
|
-
approved: Scalars['Boolean'];
|
|
521
|
-
published: Scalars['Boolean'];
|
|
522
|
-
logo: (AWSS3File | null);
|
|
523
|
-
banner: (AWSS3File | null);
|
|
524
|
-
stats: (BrandStats | null);
|
|
525
|
-
operatorIds: (Scalars['String'][] | null);
|
|
526
|
-
translations: (BrandTranslation[] | null);
|
|
527
|
-
sponsorBrandId: Scalars['String'];
|
|
528
|
-
authorizedUse: Scalars['Boolean'];
|
|
529
|
-
isAuthorizer: Scalars['Boolean'];
|
|
530
|
-
__typename: 'SponsorBrand';
|
|
531
|
-
}
|
|
532
|
-
export interface Sponsor {
|
|
533
|
-
_id: Scalars['String'];
|
|
534
|
-
name: Scalars['String'];
|
|
535
|
-
description: Scalars['String'];
|
|
536
|
-
tenant: Tenant;
|
|
537
|
-
industry: (Industry | null);
|
|
538
|
-
stats: (SponsorStats | null);
|
|
539
|
-
brands: (SponsorBrand[] | null);
|
|
540
|
-
sponsorships: (Sponsorship[] | null);
|
|
541
|
-
approved: Scalars['Boolean'];
|
|
542
|
-
__typename: 'Sponsor';
|
|
543
|
-
}
|
|
544
415
|
export interface SponsorshipItem {
|
|
545
416
|
_id: Scalars['String'];
|
|
546
417
|
quantity: Scalars['Float'];
|
|
@@ -610,95 +481,221 @@ export interface Sponsorship {
|
|
|
610
481
|
translations: (SponsorshipTranslation[] | null);
|
|
611
482
|
__typename: 'Sponsorship';
|
|
612
483
|
}
|
|
613
|
-
export interface
|
|
614
|
-
followers: Scalars['Float'];
|
|
615
|
-
followed: Scalars['Float'];
|
|
616
|
-
raves: Scalars['Float'];
|
|
617
|
-
favorites: Scalars['Float'];
|
|
618
|
-
__typename: 'FollowStats';
|
|
619
|
-
}
|
|
620
|
-
export interface Sport {
|
|
484
|
+
export interface Sponsor {
|
|
621
485
|
_id: Scalars['String'];
|
|
622
486
|
name: Scalars['String'];
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
__typename: 'VtxScores';
|
|
632
|
-
}
|
|
633
|
-
export interface SportLevelTranslation {
|
|
634
|
-
_id: Scalars['String'];
|
|
635
|
-
language: Scalars['String'];
|
|
636
|
-
label: Scalars['String'];
|
|
637
|
-
__typename: 'SportLevelTranslation';
|
|
487
|
+
description: (Scalars['String'] | null);
|
|
488
|
+
tenant: (Tenant | null);
|
|
489
|
+
industry: (Industry | null);
|
|
490
|
+
stats: (SponsorStats | null);
|
|
491
|
+
brands: (SponsorBrand[] | null);
|
|
492
|
+
sponsorships: (Sponsorship[] | null);
|
|
493
|
+
approved: Scalars['Boolean'];
|
|
494
|
+
__typename: 'Sponsor';
|
|
638
495
|
}
|
|
639
|
-
export interface
|
|
496
|
+
export interface SponsorBrand {
|
|
640
497
|
_id: Scalars['String'];
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
__typename: '
|
|
645
|
-
}
|
|
646
|
-
export interface Ranking {
|
|
647
|
-
scope: Scalars['String'];
|
|
648
|
-
scopeId: Scalars['String'];
|
|
649
|
-
scopeName: Scalars['String'];
|
|
650
|
-
position: Scalars['Float'];
|
|
651
|
-
total: Scalars['Float'];
|
|
652
|
-
__typename: 'Ranking';
|
|
498
|
+
sponsor: (Sponsor | null);
|
|
499
|
+
authorizedUse: Scalars['Boolean'];
|
|
500
|
+
isAuthorizer: Scalars['Boolean'];
|
|
501
|
+
__typename: 'SponsorBrand';
|
|
653
502
|
}
|
|
654
|
-
export interface
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
__typename: '
|
|
503
|
+
export interface BrandStats {
|
|
504
|
+
campaigns: (Scalars['Float'] | null);
|
|
505
|
+
sponsorships: (Scalars['Float'] | null);
|
|
506
|
+
sports: (Scalars['Float'] | null);
|
|
507
|
+
athletes: (Scalars['Float'] | null);
|
|
508
|
+
__typename: 'BrandStats';
|
|
660
509
|
}
|
|
661
|
-
export interface
|
|
510
|
+
export interface BrandTranslation {
|
|
662
511
|
_id: Scalars['String'];
|
|
663
|
-
|
|
512
|
+
brandId: Scalars['String'];
|
|
513
|
+
language: Scalars['String'];
|
|
514
|
+
name: (Scalars['String'] | null);
|
|
515
|
+
slogan: (Scalars['String'] | null);
|
|
664
516
|
description: (Scalars['String'] | null);
|
|
665
|
-
sports: (Sport[] | null);
|
|
666
|
-
approved: (Scalars['Boolean'] | null);
|
|
667
517
|
logo: (AWSS3File | null);
|
|
668
518
|
banner: (AWSS3File | null);
|
|
669
|
-
__typename: '
|
|
670
|
-
}
|
|
671
|
-
export interface WorldLocation {
|
|
672
|
-
_id: Scalars['String'];
|
|
673
|
-
userProvidedLatitude: (Scalars['Float'] | null);
|
|
674
|
-
userProvidedLongitude: (Scalars['Float'] | null);
|
|
675
|
-
cityNameGeocode: (Scalars['String'] | null);
|
|
676
|
-
stateNameGeocode: (Scalars['String'] | null);
|
|
677
|
-
countryIso2CodeGeocode: (Scalars['String'] | null);
|
|
678
|
-
timeZoneGeocode: (Scalars['String'] | null);
|
|
679
|
-
latitudeGeocode: (Scalars['Float'] | null);
|
|
680
|
-
longitudeGeocode: (Scalars['Float'] | null);
|
|
681
|
-
city: (City | null);
|
|
682
|
-
__typename: 'WorldLocation';
|
|
519
|
+
__typename: 'BrandTranslation';
|
|
683
520
|
}
|
|
684
|
-
export interface
|
|
521
|
+
export interface Brand {
|
|
685
522
|
_id: Scalars['String'];
|
|
686
523
|
name: Scalars['String'];
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
524
|
+
slogan: (Scalars['String'] | null);
|
|
525
|
+
website: (Scalars['String'] | null);
|
|
526
|
+
affiliateLink: (Scalars['String'] | null);
|
|
527
|
+
description: (Scalars['String'] | null);
|
|
528
|
+
approved: Scalars['Boolean'];
|
|
529
|
+
published: Scalars['Boolean'];
|
|
530
|
+
logo: (AWSS3File | null);
|
|
692
531
|
banner: (AWSS3File | null);
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
532
|
+
stats: (BrandStats | null);
|
|
533
|
+
operatorIds: (Scalars['String'][] | null);
|
|
534
|
+
translations: (BrandTranslation[] | null);
|
|
535
|
+
sponsors: (SponsorBrand[] | null);
|
|
536
|
+
__typename: 'Brand';
|
|
697
537
|
}
|
|
698
|
-
export interface
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
538
|
+
export interface StravaTpiRideDto {
|
|
539
|
+
distanceKm: Scalars['Float'];
|
|
540
|
+
distanceKmLast: Scalars['Float'];
|
|
541
|
+
elapsedTimeMin: Scalars['Float'];
|
|
542
|
+
elapsedTimeMinLast: Scalars['Float'];
|
|
543
|
+
averageSpeedKmh: Scalars['Float'];
|
|
544
|
+
averageSpeedKmhLast: Scalars['Float'];
|
|
545
|
+
maxSpeedKmh: Scalars['Float'];
|
|
546
|
+
maxSpeedKmhLast: Scalars['Float'];
|
|
547
|
+
averageHeartRateBpm: Scalars['Float'];
|
|
548
|
+
averageHeartRateBpmLast: Scalars['Float'];
|
|
549
|
+
maxHeartRateBpm: Scalars['Float'];
|
|
550
|
+
maxHeartRateBpmLast: Scalars['Float'];
|
|
551
|
+
averageCadenceStm: Scalars['Float'];
|
|
552
|
+
averageCadenceStmLast: Scalars['Float'];
|
|
553
|
+
lastDate: (Scalars['DateTime'] | null);
|
|
554
|
+
country: (Scalars['String'] | null);
|
|
555
|
+
state: (Scalars['String'] | null);
|
|
556
|
+
city: (Scalars['String'] | null);
|
|
557
|
+
tpi: Scalars['Float'];
|
|
558
|
+
__typename: 'StravaTpiRideDto';
|
|
559
|
+
}
|
|
560
|
+
export interface StravaTpiRunDto {
|
|
561
|
+
distanceKm: Scalars['Float'];
|
|
562
|
+
distanceKmLast: Scalars['Float'];
|
|
563
|
+
elapsedTimeMin: Scalars['Float'];
|
|
564
|
+
elapsedTimeMinLast: Scalars['Float'];
|
|
565
|
+
averageSpeedKmh: Scalars['Float'];
|
|
566
|
+
averageSpeedKmhLast: Scalars['Float'];
|
|
567
|
+
maxSpeedKmh: Scalars['Float'];
|
|
568
|
+
maxSpeedKmhLast: Scalars['Float'];
|
|
569
|
+
averageHeartRateBpm: Scalars['Float'];
|
|
570
|
+
averageHeartRateBpmLast: Scalars['Float'];
|
|
571
|
+
maxHeartRateBpm: Scalars['Float'];
|
|
572
|
+
maxHeartRateBpmLast: Scalars['Float'];
|
|
573
|
+
averageCadenceStm: Scalars['Float'];
|
|
574
|
+
averageCadenceStmLast: Scalars['Float'];
|
|
575
|
+
elevHigh: Scalars['Float'];
|
|
576
|
+
elevHighLast: Scalars['Float'];
|
|
577
|
+
elevLow: Scalars['Float'];
|
|
578
|
+
elevLowLast: Scalars['Float'];
|
|
579
|
+
lastDate: (Scalars['DateTime'] | null);
|
|
580
|
+
country: (Scalars['String'] | null);
|
|
581
|
+
state: (Scalars['String'] | null);
|
|
582
|
+
city: (Scalars['String'] | null);
|
|
583
|
+
tpi: Scalars['Float'];
|
|
584
|
+
__typename: 'StravaTpiRunDto';
|
|
585
|
+
}
|
|
586
|
+
export interface StravaTpiSwimDto {
|
|
587
|
+
distanceKm: Scalars['Float'];
|
|
588
|
+
distanceKmLast: Scalars['Float'];
|
|
589
|
+
elapsedTimeMin: Scalars['Float'];
|
|
590
|
+
elapsedTimeMinLast: Scalars['Float'];
|
|
591
|
+
averageSpeedKmh: Scalars['Float'];
|
|
592
|
+
averageSpeedKmhLast: Scalars['Float'];
|
|
593
|
+
maxSpeedKmh: Scalars['Float'];
|
|
594
|
+
maxSpeedKmhLast: Scalars['Float'];
|
|
595
|
+
averageHeartRateBpm: Scalars['Float'];
|
|
596
|
+
averageHeartRateBpmLast: Scalars['Float'];
|
|
597
|
+
maxHeartRateBpm: Scalars['Float'];
|
|
598
|
+
maxHeartRateBpmLast: Scalars['Float'];
|
|
599
|
+
averageCadenceStm: Scalars['Float'];
|
|
600
|
+
averageCadenceStmLast: Scalars['Float'];
|
|
601
|
+
lastDate: (Scalars['DateTime'] | null);
|
|
602
|
+
country: (Scalars['String'] | null);
|
|
603
|
+
state: (Scalars['String'] | null);
|
|
604
|
+
city: (Scalars['String'] | null);
|
|
605
|
+
tpi: Scalars['Float'];
|
|
606
|
+
__typename: 'StravaTpiSwimDto';
|
|
607
|
+
}
|
|
608
|
+
export interface FollowStats {
|
|
609
|
+
followers: Scalars['Float'];
|
|
610
|
+
followed: Scalars['Float'];
|
|
611
|
+
raves: Scalars['Float'];
|
|
612
|
+
favorites: Scalars['Float'];
|
|
613
|
+
__typename: 'FollowStats';
|
|
614
|
+
}
|
|
615
|
+
export interface Sport {
|
|
616
|
+
_id: Scalars['String'];
|
|
617
|
+
name: Scalars['String'];
|
|
618
|
+
resultType: Scalars['String'];
|
|
619
|
+
verified: (Scalars['Boolean'] | null);
|
|
620
|
+
priority: (Scalars['Float'] | null);
|
|
621
|
+
__typename: 'Sport';
|
|
622
|
+
}
|
|
623
|
+
export interface VtxScores {
|
|
624
|
+
vtxScore: Scalars['Float'];
|
|
625
|
+
socialScore: Scalars['Float'];
|
|
626
|
+
trainingScore: Scalars['Float'];
|
|
627
|
+
competitionScore: Scalars['Float'];
|
|
628
|
+
__typename: 'VtxScores';
|
|
629
|
+
}
|
|
630
|
+
export interface SportLevelTranslation {
|
|
631
|
+
_id: Scalars['String'];
|
|
632
|
+
language: Scalars['String'];
|
|
633
|
+
label: Scalars['String'];
|
|
634
|
+
__typename: 'SportLevelTranslation';
|
|
635
|
+
}
|
|
636
|
+
export interface SportLevel {
|
|
637
|
+
_id: Scalars['String'];
|
|
638
|
+
label: Scalars['String'];
|
|
639
|
+
index: Scalars['Float'];
|
|
640
|
+
translations: (SportLevelTranslation[] | null);
|
|
641
|
+
__typename: 'SportLevel';
|
|
642
|
+
}
|
|
643
|
+
export interface Ranking {
|
|
644
|
+
scope: Scalars['String'];
|
|
645
|
+
scopeId: Scalars['String'];
|
|
646
|
+
scopeName: Scalars['String'];
|
|
647
|
+
position: Scalars['Float'];
|
|
648
|
+
total: Scalars['Float'];
|
|
649
|
+
__typename: 'Ranking';
|
|
650
|
+
}
|
|
651
|
+
export interface AthleteRankings {
|
|
652
|
+
worldRanking: (Ranking | null);
|
|
653
|
+
countryRanking: (Ranking | null);
|
|
654
|
+
stateRanking: (Ranking | null);
|
|
655
|
+
cityRanking: (Ranking | null);
|
|
656
|
+
__typename: 'AthleteRankings';
|
|
657
|
+
}
|
|
658
|
+
export interface Team {
|
|
659
|
+
_id: Scalars['String'];
|
|
660
|
+
name: Scalars['String'];
|
|
661
|
+
description: (Scalars['String'] | null);
|
|
662
|
+
sports: (Sport[] | null);
|
|
663
|
+
approved: (Scalars['Boolean'] | null);
|
|
664
|
+
logo: (AWSS3File | null);
|
|
665
|
+
banner: (AWSS3File | null);
|
|
666
|
+
__typename: 'Team';
|
|
667
|
+
}
|
|
668
|
+
export interface WorldLocation {
|
|
669
|
+
_id: Scalars['String'];
|
|
670
|
+
userProvidedLatitude: (Scalars['Float'] | null);
|
|
671
|
+
userProvidedLongitude: (Scalars['Float'] | null);
|
|
672
|
+
cityNameGeocode: (Scalars['String'] | null);
|
|
673
|
+
stateNameGeocode: (Scalars['String'] | null);
|
|
674
|
+
countryIso2CodeGeocode: (Scalars['String'] | null);
|
|
675
|
+
timeZoneGeocode: (Scalars['String'] | null);
|
|
676
|
+
latitudeGeocode: (Scalars['Float'] | null);
|
|
677
|
+
longitudeGeocode: (Scalars['Float'] | null);
|
|
678
|
+
city: (City | null);
|
|
679
|
+
__typename: 'WorldLocation';
|
|
680
|
+
}
|
|
681
|
+
export interface SportsEvent {
|
|
682
|
+
_id: Scalars['String'];
|
|
683
|
+
name: Scalars['String'];
|
|
684
|
+
mainSport: (Sport | null);
|
|
685
|
+
eventWebSite: (Scalars['String'] | null);
|
|
686
|
+
startDate: Scalars['DateTime'];
|
|
687
|
+
endDate: (Scalars['DateTime'] | null);
|
|
688
|
+
verified: Scalars['Boolean'];
|
|
689
|
+
banner: (AWSS3File | null);
|
|
690
|
+
location: (WorldLocation | null);
|
|
691
|
+
eventLevel: (Scalars['String'] | null);
|
|
692
|
+
registeredAthletesCount: (Scalars['Float'] | null);
|
|
693
|
+
__typename: 'SportsEvent';
|
|
694
|
+
}
|
|
695
|
+
export interface AthleteCompetitionResult {
|
|
696
|
+
_id: Scalars['String'];
|
|
697
|
+
resultType: Scalars['String'];
|
|
698
|
+
position: (Scalars['Float'] | null);
|
|
702
699
|
totalParticipants: (Scalars['Float'] | null);
|
|
703
700
|
score: (Scalars['String'] | null);
|
|
704
701
|
finishTimeMS: (Scalars['Float'] | null);
|
|
@@ -710,6 +707,7 @@ export interface AthleteCompetitionResult {
|
|
|
710
707
|
categoryPosition: (Scalars['Float'] | null);
|
|
711
708
|
categoryParticipants: (Scalars['Float'] | null);
|
|
712
709
|
categoryName: (Scalars['String'] | null);
|
|
710
|
+
pointsEarned: (Scalars['Float'] | null);
|
|
713
711
|
__typename: 'AthleteCompetitionResult';
|
|
714
712
|
}
|
|
715
713
|
export interface BudgetItem {
|
|
@@ -953,13 +951,13 @@ export interface StripeAccountReference {
|
|
|
953
951
|
account: (StripeAccount | null);
|
|
954
952
|
__typename: 'StripeAccountReference';
|
|
955
953
|
}
|
|
956
|
-
export interface
|
|
954
|
+
export interface HistoricalScore {
|
|
957
955
|
_id: Scalars['String'];
|
|
958
956
|
scoreType: Scalars['String'];
|
|
959
957
|
score: Scalars['Float'];
|
|
960
958
|
date: Scalars['DateTime'];
|
|
961
959
|
athleteId: Scalars['String'];
|
|
962
|
-
__typename: '
|
|
960
|
+
__typename: 'HistoricalScore';
|
|
963
961
|
}
|
|
964
962
|
export interface AthleteReference {
|
|
965
963
|
_id: Scalars['String'];
|
|
@@ -986,6 +984,7 @@ export interface AthleteReference {
|
|
|
986
984
|
aboutMe: (Scalars['String'] | null);
|
|
987
985
|
biography: (Scalars['String'] | null);
|
|
988
986
|
preferences: AthletePreferences;
|
|
987
|
+
suspended: Scalars['Boolean'];
|
|
989
988
|
__typename: 'AthleteReference';
|
|
990
989
|
}
|
|
991
990
|
export interface Athlete {
|
|
@@ -1013,6 +1012,7 @@ export interface Athlete {
|
|
|
1013
1012
|
aboutMe: (Scalars['String'] | null);
|
|
1014
1013
|
biography: (Scalars['String'] | null);
|
|
1015
1014
|
preferences: AthletePreferences;
|
|
1015
|
+
suspended: Scalars['Boolean'];
|
|
1016
1016
|
allSports: (Sport[] | null);
|
|
1017
1017
|
teams: (Team[] | null);
|
|
1018
1018
|
sponsorBrands: (Brand[] | null);
|
|
@@ -1024,7 +1024,7 @@ export interface Athlete {
|
|
|
1024
1024
|
fundingCampaigns: (FundRaisingCampaign[] | null);
|
|
1025
1025
|
stripeAccountReference: (StripeAccountReference | null);
|
|
1026
1026
|
albums: (Album[] | null);
|
|
1027
|
-
historicalScores: (
|
|
1027
|
+
historicalScores: (HistoricalScore[] | null);
|
|
1028
1028
|
signedAgreements: (SignedAgreement[] | null);
|
|
1029
1029
|
__typename: 'Athlete';
|
|
1030
1030
|
}
|
|
@@ -1067,13 +1067,6 @@ export interface SponsorAthleteInvitation {
|
|
|
1067
1067
|
status: Scalars['String'];
|
|
1068
1068
|
__typename: 'SponsorAthleteInvitation';
|
|
1069
1069
|
}
|
|
1070
|
-
export interface StravaToken {
|
|
1071
|
-
token_type: Scalars['String'];
|
|
1072
|
-
expires_at: Scalars['String'];
|
|
1073
|
-
refresh_token: Scalars['String'];
|
|
1074
|
-
access_token: Scalars['String'];
|
|
1075
|
-
__typename: 'StravaToken';
|
|
1076
|
-
}
|
|
1077
1070
|
export interface StripeSession {
|
|
1078
1071
|
account: Scalars['String'];
|
|
1079
1072
|
client_secret: Scalars['String'];
|
|
@@ -1082,6 +1075,8 @@ export interface StripeSession {
|
|
|
1082
1075
|
__typename: 'StripeSession';
|
|
1083
1076
|
}
|
|
1084
1077
|
export interface StripeCheckoutSession {
|
|
1078
|
+
id: Scalars['String'];
|
|
1079
|
+
vtxCheckoutSessionId: Scalars['String'];
|
|
1085
1080
|
client_secret: Scalars['String'];
|
|
1086
1081
|
expires_at: Scalars['Float'];
|
|
1087
1082
|
livemode: Scalars['Boolean'];
|
|
@@ -1275,11 +1270,13 @@ export interface Donation {
|
|
|
1275
1270
|
checkoutSessionId: Scalars['String'];
|
|
1276
1271
|
fundingCheckoutSessionDataId: Scalars['String'];
|
|
1277
1272
|
donationMode: Scalars['String'];
|
|
1273
|
+
donorName: Scalars['String'];
|
|
1274
|
+
donorEmail: (Scalars['String'] | null);
|
|
1278
1275
|
completed: Scalars['Boolean'];
|
|
1279
1276
|
confirmed: Scalars['Boolean'];
|
|
1280
1277
|
donationAmount: Scalars['Float'];
|
|
1281
1278
|
completedDate: (Scalars['DateTime'] | null);
|
|
1282
|
-
createdDate: Scalars['DateTime'];
|
|
1279
|
+
createdDate: (Scalars['DateTime'] | null);
|
|
1283
1280
|
athleteId: Scalars['String'];
|
|
1284
1281
|
athleteName: Scalars['String'];
|
|
1285
1282
|
message: (Scalars['String'] | null);
|
|
@@ -1295,6 +1292,195 @@ export interface Member {
|
|
|
1295
1292
|
donations: Donation[];
|
|
1296
1293
|
__typename: 'Member';
|
|
1297
1294
|
}
|
|
1295
|
+
export interface AdminUserView {
|
|
1296
|
+
_id: Scalars['String'];
|
|
1297
|
+
loginEmail: Scalars['String'];
|
|
1298
|
+
firstName: Scalars['String'];
|
|
1299
|
+
lastName: Scalars['String'];
|
|
1300
|
+
screenName: Scalars['String'];
|
|
1301
|
+
domains: (DomainCredential[] | null);
|
|
1302
|
+
athlete: (Athlete | null);
|
|
1303
|
+
member: (Member | null);
|
|
1304
|
+
suspended: Scalars['Boolean'];
|
|
1305
|
+
__typename: 'AdminUserView';
|
|
1306
|
+
}
|
|
1307
|
+
export interface AdminTransactionFundingDetails {
|
|
1308
|
+
paidToVtx: (Scalars['Float'] | null);
|
|
1309
|
+
paidToAthlete: (Scalars['Float'] | null);
|
|
1310
|
+
athleteId: Scalars['String'];
|
|
1311
|
+
athleteName: Scalars['String'];
|
|
1312
|
+
fromName: (Scalars['String'] | null);
|
|
1313
|
+
fromPhone: (Scalars['String'] | null);
|
|
1314
|
+
message: (Scalars['String'] | null);
|
|
1315
|
+
mode: (Scalars['String'] | null);
|
|
1316
|
+
__typename: 'AdminTransactionFundingDetails';
|
|
1317
|
+
}
|
|
1318
|
+
export interface AdminTransactionView {
|
|
1319
|
+
_id: Scalars['ID'];
|
|
1320
|
+
createdDate: Scalars['DateTime'];
|
|
1321
|
+
stripeSessionId: Scalars['String'];
|
|
1322
|
+
concept: (Scalars['String'] | null);
|
|
1323
|
+
donationAmount: Scalars['Float'];
|
|
1324
|
+
fromEmail: (Scalars['String'] | null);
|
|
1325
|
+
type: Scalars['String'];
|
|
1326
|
+
confirmed: Scalars['Boolean'];
|
|
1327
|
+
completed: Scalars['Boolean'];
|
|
1328
|
+
completedDate: (Scalars['DateTime'] | null);
|
|
1329
|
+
stripeAccountId: Scalars['String'];
|
|
1330
|
+
fundingDetails: (AdminTransactionFundingDetails | null);
|
|
1331
|
+
__typename: 'AdminTransactionView';
|
|
1332
|
+
}
|
|
1333
|
+
export interface Offer {
|
|
1334
|
+
_id: Scalars['String'];
|
|
1335
|
+
name: (Scalars['String'] | null);
|
|
1336
|
+
label: Scalars['String'];
|
|
1337
|
+
decription: (Scalars['String'] | null);
|
|
1338
|
+
offerImage: (AWSS3File | null);
|
|
1339
|
+
type: Scalars['String'];
|
|
1340
|
+
status: Scalars['String'];
|
|
1341
|
+
discountType: Scalars['String'];
|
|
1342
|
+
discountTypeData: Scalars['String'];
|
|
1343
|
+
conditions: (Scalars['String'][] | null);
|
|
1344
|
+
brand: Brand;
|
|
1345
|
+
sponsor: Sponsor;
|
|
1346
|
+
criteria: (AthleteCriteria | null);
|
|
1347
|
+
dateStart: (Scalars['DateTime'] | null);
|
|
1348
|
+
dateEnd: (Scalars['DateTime'] | null);
|
|
1349
|
+
dateCreated: Scalars['DateTime'];
|
|
1350
|
+
totalCodes: Scalars['Int'];
|
|
1351
|
+
availableCodes: Scalars['Int'];
|
|
1352
|
+
availableCountries: (Country[] | null);
|
|
1353
|
+
disclaimer: (Scalars['String'] | null);
|
|
1354
|
+
genericCode: (Scalars['String'] | null);
|
|
1355
|
+
featured: Scalars['Boolean'];
|
|
1356
|
+
__typename: 'Offer';
|
|
1357
|
+
}
|
|
1358
|
+
export interface Promotion {
|
|
1359
|
+
_id: Scalars['String'];
|
|
1360
|
+
name: (Scalars['String'] | null);
|
|
1361
|
+
label: Scalars['String'];
|
|
1362
|
+
decription: (Scalars['String'] | null);
|
|
1363
|
+
offerImage: (AWSS3File | null);
|
|
1364
|
+
type: Scalars['String'];
|
|
1365
|
+
status: Scalars['String'];
|
|
1366
|
+
discountType: Scalars['String'];
|
|
1367
|
+
discountTypeData: Scalars['String'];
|
|
1368
|
+
conditions: (Scalars['String'][] | null);
|
|
1369
|
+
brand: Brand;
|
|
1370
|
+
sponsor: Sponsor;
|
|
1371
|
+
criteria: (AthleteCriteria | null);
|
|
1372
|
+
dateStart: (Scalars['DateTime'] | null);
|
|
1373
|
+
dateEnd: (Scalars['DateTime'] | null);
|
|
1374
|
+
dateCreated: Scalars['DateTime'];
|
|
1375
|
+
totalCodes: Scalars['Int'];
|
|
1376
|
+
availableCodes: Scalars['Int'];
|
|
1377
|
+
availableCountries: (Country[] | null);
|
|
1378
|
+
disclaimer: (Scalars['String'] | null);
|
|
1379
|
+
genericCode: Scalars['String'];
|
|
1380
|
+
featured: Scalars['Boolean'];
|
|
1381
|
+
__typename: 'Promotion';
|
|
1382
|
+
}
|
|
1383
|
+
export interface CouponCode {
|
|
1384
|
+
_id: Scalars['String'];
|
|
1385
|
+
couponId: Scalars['String'];
|
|
1386
|
+
code: Scalars['String'];
|
|
1387
|
+
expires: (Scalars['DateTime'] | null);
|
|
1388
|
+
dateCreated: Scalars['DateTime'];
|
|
1389
|
+
__typename: 'CouponCode';
|
|
1390
|
+
}
|
|
1391
|
+
export interface Coupon {
|
|
1392
|
+
_id: Scalars['String'];
|
|
1393
|
+
name: (Scalars['String'] | null);
|
|
1394
|
+
label: Scalars['String'];
|
|
1395
|
+
decription: (Scalars['String'] | null);
|
|
1396
|
+
offerImage: (AWSS3File | null);
|
|
1397
|
+
type: Scalars['String'];
|
|
1398
|
+
status: Scalars['String'];
|
|
1399
|
+
discountType: Scalars['String'];
|
|
1400
|
+
discountTypeData: Scalars['String'];
|
|
1401
|
+
conditions: (Scalars['String'][] | null);
|
|
1402
|
+
brand: Brand;
|
|
1403
|
+
sponsor: Sponsor;
|
|
1404
|
+
criteria: (AthleteCriteria | null);
|
|
1405
|
+
dateStart: (Scalars['DateTime'] | null);
|
|
1406
|
+
dateEnd: (Scalars['DateTime'] | null);
|
|
1407
|
+
dateCreated: Scalars['DateTime'];
|
|
1408
|
+
totalCodes: Scalars['Int'];
|
|
1409
|
+
availableCodes: Scalars['Int'];
|
|
1410
|
+
availableCountries: (Country[] | null);
|
|
1411
|
+
disclaimer: (Scalars['String'] | null);
|
|
1412
|
+
genericCode: (Scalars['String'] | null);
|
|
1413
|
+
featured: Scalars['Boolean'];
|
|
1414
|
+
couponCodes: (CouponCode[] | null);
|
|
1415
|
+
__typename: 'Coupon';
|
|
1416
|
+
}
|
|
1417
|
+
export interface OfferClaim {
|
|
1418
|
+
_id: Scalars['String'];
|
|
1419
|
+
offer: Offer;
|
|
1420
|
+
athlete: Athlete;
|
|
1421
|
+
claimedAt: Scalars['DateTime'];
|
|
1422
|
+
code: (Scalars['String'] | null);
|
|
1423
|
+
__typename: 'OfferClaim';
|
|
1424
|
+
}
|
|
1425
|
+
export interface EligibilityResult {
|
|
1426
|
+
status: EligibilityStatus;
|
|
1427
|
+
failedCriteria: Scalars['String'][];
|
|
1428
|
+
missingFields: Scalars['String'][];
|
|
1429
|
+
messages: Scalars['String'][];
|
|
1430
|
+
__typename: 'EligibilityResult';
|
|
1431
|
+
}
|
|
1432
|
+
export type EligibilityStatus = 'ELIGIBLE' | 'NOT_ELIGIBLE' | 'UNKNOWN';
|
|
1433
|
+
export interface EnhancedPaginationInfoType {
|
|
1434
|
+
currentPage: Scalars['Int'];
|
|
1435
|
+
totalPages: Scalars['Int'];
|
|
1436
|
+
totalItems: Scalars['Int'];
|
|
1437
|
+
itemsPerPage: Scalars['Int'];
|
|
1438
|
+
hasNextPage: Scalars['Boolean'];
|
|
1439
|
+
hasPreviousPage: Scalars['Boolean'];
|
|
1440
|
+
startIndex: Scalars['Int'];
|
|
1441
|
+
endIndex: Scalars['Int'];
|
|
1442
|
+
__typename: 'EnhancedPaginationInfoType';
|
|
1443
|
+
}
|
|
1444
|
+
export interface OfferWithEligibility {
|
|
1445
|
+
_id: Scalars['String'];
|
|
1446
|
+
name: (Scalars['String'] | null);
|
|
1447
|
+
label: Scalars['String'];
|
|
1448
|
+
decription: (Scalars['String'] | null);
|
|
1449
|
+
offerImage: (AWSS3File | null);
|
|
1450
|
+
type: Scalars['String'];
|
|
1451
|
+
status: Scalars['String'];
|
|
1452
|
+
discountType: Scalars['String'];
|
|
1453
|
+
discountTypeData: Scalars['String'];
|
|
1454
|
+
conditions: (Scalars['String'][] | null);
|
|
1455
|
+
brand: Brand;
|
|
1456
|
+
sponsor: Sponsor;
|
|
1457
|
+
criteria: (AthleteCriteria | null);
|
|
1458
|
+
dateStart: (Scalars['DateTime'] | null);
|
|
1459
|
+
dateEnd: (Scalars['DateTime'] | null);
|
|
1460
|
+
dateCreated: Scalars['DateTime'];
|
|
1461
|
+
totalCodes: Scalars['Int'];
|
|
1462
|
+
availableCodes: Scalars['Int'];
|
|
1463
|
+
availableCountries: (Country[] | null);
|
|
1464
|
+
disclaimer: (Scalars['String'] | null);
|
|
1465
|
+
featured: Scalars['Boolean'];
|
|
1466
|
+
eligibility: EligibilityResult;
|
|
1467
|
+
__typename: 'OfferWithEligibility';
|
|
1468
|
+
}
|
|
1469
|
+
export interface PaginatedOffersWithEligibility {
|
|
1470
|
+
items: OfferWithEligibility[];
|
|
1471
|
+
pagination: EnhancedPaginationInfoType;
|
|
1472
|
+
__typename: 'PaginatedOffersWithEligibility';
|
|
1473
|
+
}
|
|
1474
|
+
export interface PaginatedBrands {
|
|
1475
|
+
items: Brand[];
|
|
1476
|
+
pagination: EnhancedPaginationInfoType;
|
|
1477
|
+
__typename: 'PaginatedBrands';
|
|
1478
|
+
}
|
|
1479
|
+
export interface PaginatedSponsors {
|
|
1480
|
+
items: Sponsor[];
|
|
1481
|
+
pagination: EnhancedPaginationInfoType;
|
|
1482
|
+
__typename: 'PaginatedSponsors';
|
|
1483
|
+
}
|
|
1298
1484
|
export interface EditValueResponse {
|
|
1299
1485
|
field: Scalars['String'];
|
|
1300
1486
|
oldValue: (Scalars['String'] | null);
|
|
@@ -1308,6 +1494,29 @@ export interface DeleteSingleValueResponse {
|
|
|
1308
1494
|
failureReason: (ErrorType | null);
|
|
1309
1495
|
__typename: 'DeleteSingleValueResponse';
|
|
1310
1496
|
}
|
|
1497
|
+
export interface ScoreRefreshDetail {
|
|
1498
|
+
status: ForceScoreRefreshStatus;
|
|
1499
|
+
message: (Scalars['String'] | null);
|
|
1500
|
+
__typename: 'ScoreRefreshDetail';
|
|
1501
|
+
}
|
|
1502
|
+
export type ForceScoreRefreshStatus = 'success' | 'failed' | 'skipped';
|
|
1503
|
+
export interface ForceScoreRefreshResult {
|
|
1504
|
+
athleteId: Scalars['String'];
|
|
1505
|
+
athleteName: (Scalars['String'] | null);
|
|
1506
|
+
status: ForceScoreRefreshStatus;
|
|
1507
|
+
message: (Scalars['String'] | null);
|
|
1508
|
+
tpi: (ScoreRefreshDetail | null);
|
|
1509
|
+
spi: (ScoreRefreshDetail | null);
|
|
1510
|
+
api: (ScoreRefreshDetail | null);
|
|
1511
|
+
__typename: 'ForceScoreRefreshResult';
|
|
1512
|
+
}
|
|
1513
|
+
export interface ForceScoreRefreshResponse {
|
|
1514
|
+
results: ForceScoreRefreshResult[];
|
|
1515
|
+
successCount: Scalars['Float'];
|
|
1516
|
+
failureCount: Scalars['Float'];
|
|
1517
|
+
skippedCount: Scalars['Float'];
|
|
1518
|
+
__typename: 'ForceScoreRefreshResponse';
|
|
1519
|
+
}
|
|
1311
1520
|
export interface SortOrder {
|
|
1312
1521
|
sortField: Scalars['String'];
|
|
1313
1522
|
order: Scalars['String'];
|
|
@@ -1357,11 +1566,44 @@ export interface CompetitionDeleteVerificationResponse {
|
|
|
1357
1566
|
reasons: CompetitionDeleteVerificationReason[];
|
|
1358
1567
|
__typename: 'CompetitionDeleteVerificationResponse';
|
|
1359
1568
|
}
|
|
1569
|
+
export interface HistoricalScoresPeriod {
|
|
1570
|
+
athleteId: Scalars['String'];
|
|
1571
|
+
athleteFirstName: Scalars['String'];
|
|
1572
|
+
athleteLastName: Scalars['String'];
|
|
1573
|
+
screenName: Scalars['String'];
|
|
1574
|
+
minTimestampInclusive: Scalars['DateTime'];
|
|
1575
|
+
maxTimestampExclusive: Scalars['DateTime'];
|
|
1576
|
+
vtxScores: (HistoricalScore[] | null);
|
|
1577
|
+
tpiScores: (HistoricalScore[] | null);
|
|
1578
|
+
spiScores: (HistoricalScore[] | null);
|
|
1579
|
+
apiScores: (HistoricalScore[] | null);
|
|
1580
|
+
__typename: 'HistoricalScoresPeriod';
|
|
1581
|
+
}
|
|
1360
1582
|
export interface StripeObject {
|
|
1361
1583
|
type: Scalars['String'];
|
|
1362
1584
|
json: Scalars['JSONObject'];
|
|
1363
1585
|
__typename: 'StripeObject';
|
|
1364
1586
|
}
|
|
1587
|
+
export interface ScoreRefreshCapability {
|
|
1588
|
+
athleteId: Scalars['String'];
|
|
1589
|
+
athleteName: (Scalars['String'] | null);
|
|
1590
|
+
canRefreshTpi: Scalars['Boolean'];
|
|
1591
|
+
canRefreshSpi: Scalars['Boolean'];
|
|
1592
|
+
canRefreshApi: Scalars['Boolean'];
|
|
1593
|
+
tpiReason: (Scalars['String'] | null);
|
|
1594
|
+
spiReason: (Scalars['String'] | null);
|
|
1595
|
+
apiReason: (Scalars['String'] | null);
|
|
1596
|
+
__typename: 'ScoreRefreshCapability';
|
|
1597
|
+
}
|
|
1598
|
+
export interface CheckScoreRefreshCapabilityResponse {
|
|
1599
|
+
capabilities: ScoreRefreshCapability[];
|
|
1600
|
+
__typename: 'CheckScoreRefreshCapabilityResponse';
|
|
1601
|
+
}
|
|
1602
|
+
export interface PaginatedSports {
|
|
1603
|
+
items: Sport[];
|
|
1604
|
+
pagination: EnhancedPaginationInfoType;
|
|
1605
|
+
__typename: 'PaginatedSports';
|
|
1606
|
+
}
|
|
1365
1607
|
export interface UserImages {
|
|
1366
1608
|
profilePictureUrl: (Scalars['String'] | null);
|
|
1367
1609
|
cardPictureUrl: (Scalars['String'] | null);
|
|
@@ -1375,6 +1617,60 @@ export interface ValidatedToken {
|
|
|
1375
1617
|
refreshExpiresAt: Scalars['Float'];
|
|
1376
1618
|
__typename: 'ValidatedToken';
|
|
1377
1619
|
}
|
|
1620
|
+
export interface DeleteVtxUserResponse {
|
|
1621
|
+
success: Scalars['Boolean'];
|
|
1622
|
+
deletedUserId: (Scalars['String'] | null);
|
|
1623
|
+
deletedUserEmail: (Scalars['String'] | null);
|
|
1624
|
+
deletedUserType: (Scalars['String'] | null);
|
|
1625
|
+
servicesDeleted: (Scalars['String'][] | null);
|
|
1626
|
+
cognitoDeleted: (Scalars['Boolean'] | null);
|
|
1627
|
+
dbDeleted: (Scalars['Boolean'] | null);
|
|
1628
|
+
errorMessage: (Scalars['String'] | null);
|
|
1629
|
+
__typename: 'DeleteVtxUserResponse';
|
|
1630
|
+
}
|
|
1631
|
+
export interface PaginatedUsers {
|
|
1632
|
+
items: AdminUserView[];
|
|
1633
|
+
pagination: EnhancedPaginationInfoType;
|
|
1634
|
+
__typename: 'PaginatedUsers';
|
|
1635
|
+
}
|
|
1636
|
+
export interface TransactionDetails {
|
|
1637
|
+
stripeCheckoutSessionId: Scalars['String'];
|
|
1638
|
+
vtxCheckoutSessionId: Scalars['String'];
|
|
1639
|
+
checkoutSessionType: Scalars['String'];
|
|
1640
|
+
transactionType: Scalars['String'];
|
|
1641
|
+
confirmed: Scalars['Boolean'];
|
|
1642
|
+
completed: Scalars['Boolean'];
|
|
1643
|
+
currency: Scalars['String'];
|
|
1644
|
+
createdDate: Scalars['DateTime'];
|
|
1645
|
+
email: (Scalars['String'] | null);
|
|
1646
|
+
name: (Scalars['String'] | null);
|
|
1647
|
+
phone: (Scalars['String'] | null);
|
|
1648
|
+
payment_status: (Scalars['String'] | null);
|
|
1649
|
+
status: (Scalars['String'] | null);
|
|
1650
|
+
amount_subtotal: (Scalars['Float'] | null);
|
|
1651
|
+
amount_total: (Scalars['Float'] | null);
|
|
1652
|
+
completedDate: (Scalars['DateTime'] | null);
|
|
1653
|
+
athleteDonationReceipt: (Receipt | null);
|
|
1654
|
+
__typename: 'TransactionDetails';
|
|
1655
|
+
}
|
|
1656
|
+
export interface PaginatedEvents {
|
|
1657
|
+
items: SportsEvent[];
|
|
1658
|
+
pagination: EnhancedPaginationInfoType;
|
|
1659
|
+
__typename: 'PaginatedEvents';
|
|
1660
|
+
}
|
|
1661
|
+
export interface CurrencyAmountType {
|
|
1662
|
+
amount: Scalars['Float'];
|
|
1663
|
+
currency: Scalars['String'];
|
|
1664
|
+
__typename: 'CurrencyAmountType';
|
|
1665
|
+
}
|
|
1666
|
+
export interface StripeBalance {
|
|
1667
|
+
availableUSD: Scalars['Float'];
|
|
1668
|
+
pendingUSD: Scalars['Float'];
|
|
1669
|
+
currency: Scalars['String'];
|
|
1670
|
+
availableBalances: CurrencyAmountType[];
|
|
1671
|
+
pendingBalances: CurrencyAmountType[];
|
|
1672
|
+
__typename: 'StripeBalance';
|
|
1673
|
+
}
|
|
1378
1674
|
export interface StripeTransfer {
|
|
1379
1675
|
_id: Scalars['ID'];
|
|
1380
1676
|
stripeId: (Scalars['String'] | null);
|
|
@@ -1397,9 +1693,239 @@ export interface UserDomain {
|
|
|
1397
1693
|
user: (User | null);
|
|
1398
1694
|
__typename: 'UserDomain';
|
|
1399
1695
|
}
|
|
1400
|
-
export
|
|
1401
|
-
|
|
1402
|
-
|
|
1696
|
+
export interface PaginatedTransactions {
|
|
1697
|
+
items: AdminTransactionView[];
|
|
1698
|
+
pagination: EnhancedPaginationInfoType;
|
|
1699
|
+
__typename: 'PaginatedTransactions';
|
|
1700
|
+
}
|
|
1701
|
+
export interface PaginatedOffers {
|
|
1702
|
+
items: Offer[];
|
|
1703
|
+
pagination: EnhancedPaginationInfoType;
|
|
1704
|
+
__typename: 'PaginatedOffers';
|
|
1705
|
+
}
|
|
1706
|
+
export interface UploadResult {
|
|
1707
|
+
addedCodes: Scalars['Int'];
|
|
1708
|
+
duplicateCodes: Scalars['Int'];
|
|
1709
|
+
invalidRows: Scalars['String'][];
|
|
1710
|
+
__typename: 'UploadResult';
|
|
1711
|
+
}
|
|
1712
|
+
export interface OfferAvailability {
|
|
1713
|
+
available: Scalars['Boolean'];
|
|
1714
|
+
reason: (Scalars['String'] | null);
|
|
1715
|
+
__typename: 'OfferAvailability';
|
|
1716
|
+
}
|
|
1717
|
+
export interface LeaderboardEntry {
|
|
1718
|
+
rank: Scalars['Int'];
|
|
1719
|
+
rankChange: (Scalars['Int'] | null);
|
|
1720
|
+
athleteId: Scalars['String'];
|
|
1721
|
+
screenName: (Scalars['String'] | null);
|
|
1722
|
+
firstName: (Scalars['String'] | null);
|
|
1723
|
+
lastName: (Scalars['String'] | null);
|
|
1724
|
+
profilePicture: (Scalars['String'] | null);
|
|
1725
|
+
score: Scalars['Float'];
|
|
1726
|
+
countryCode: (Scalars['String'] | null);
|
|
1727
|
+
cityName: (Scalars['String'] | null);
|
|
1728
|
+
countryRank: (Scalars['Int'] | null);
|
|
1729
|
+
sportId: (Scalars['String'] | null);
|
|
1730
|
+
vtxScore: (Scalars['Float'] | null);
|
|
1731
|
+
trainingScore: (Scalars['Float'] | null);
|
|
1732
|
+
socialScore: (Scalars['Float'] | null);
|
|
1733
|
+
competitionScore: (Scalars['Float'] | null);
|
|
1734
|
+
mainSport: (Scalars['String'] | null);
|
|
1735
|
+
mainSportLevel: (Scalars['String'] | null);
|
|
1736
|
+
__typename: 'LeaderboardEntry';
|
|
1737
|
+
}
|
|
1738
|
+
export interface LeaderboardPagination {
|
|
1739
|
+
page: Scalars['Int'];
|
|
1740
|
+
limit: Scalars['Int'];
|
|
1741
|
+
total: Scalars['Int'];
|
|
1742
|
+
totalPages: Scalars['Int'];
|
|
1743
|
+
__typename: 'LeaderboardPagination';
|
|
1744
|
+
}
|
|
1745
|
+
export interface LeaderboardFilters {
|
|
1746
|
+
scoreType: Scalars['String'];
|
|
1747
|
+
sportId: (Scalars['String'] | null);
|
|
1748
|
+
countryCode: (Scalars['String'] | null);
|
|
1749
|
+
__typename: 'LeaderboardFilters';
|
|
1750
|
+
}
|
|
1751
|
+
export interface LeaderboardResponse {
|
|
1752
|
+
entries: LeaderboardEntry[];
|
|
1753
|
+
pagination: LeaderboardPagination;
|
|
1754
|
+
filters: LeaderboardFilters;
|
|
1755
|
+
__typename: 'LeaderboardResponse';
|
|
1756
|
+
}
|
|
1757
|
+
export interface UserRank {
|
|
1758
|
+
globalRank: Scalars['Int'];
|
|
1759
|
+
countryRank: (Scalars['Int'] | null);
|
|
1760
|
+
score: Scalars['Float'];
|
|
1761
|
+
scoreType: Scalars['String'];
|
|
1762
|
+
__typename: 'UserRank';
|
|
1763
|
+
}
|
|
1764
|
+
export interface DashboardSummary {
|
|
1765
|
+
vtxScore: Scalars['Float'];
|
|
1766
|
+
socialScore: Scalars['Float'];
|
|
1767
|
+
trainingScore: Scalars['Float'];
|
|
1768
|
+
competitionScore: Scalars['Float'];
|
|
1769
|
+
lastUpdated: Scalars['DateTime'];
|
|
1770
|
+
__typename: 'DashboardSummary';
|
|
1771
|
+
}
|
|
1772
|
+
export interface ScoreHistoryEntry {
|
|
1773
|
+
date: Scalars['DateTime'];
|
|
1774
|
+
vtxScore: (Scalars['Float'] | null);
|
|
1775
|
+
socialScore: (Scalars['Float'] | null);
|
|
1776
|
+
trainingScore: (Scalars['Float'] | null);
|
|
1777
|
+
competitionScore: (Scalars['Float'] | null);
|
|
1778
|
+
__typename: 'ScoreHistoryEntry';
|
|
1779
|
+
}
|
|
1780
|
+
export interface RankHistoryEntry {
|
|
1781
|
+
date: Scalars['DateTime'];
|
|
1782
|
+
globalRank: (Scalars['Int'] | null);
|
|
1783
|
+
countryRank: (Scalars['Int'] | null);
|
|
1784
|
+
__typename: 'RankHistoryEntry';
|
|
1785
|
+
}
|
|
1786
|
+
export interface RankContext {
|
|
1787
|
+
globalRank: (Scalars['Int'] | null);
|
|
1788
|
+
countryRank: (Scalars['Int'] | null);
|
|
1789
|
+
rankChange: (Scalars['Int'] | null);
|
|
1790
|
+
percentile: (Scalars['String'] | null);
|
|
1791
|
+
gapToNext: (Scalars['Float'] | null);
|
|
1792
|
+
gapFromPrevious: (Scalars['Float'] | null);
|
|
1793
|
+
totalAthletes: (Scalars['Int'] | null);
|
|
1794
|
+
__typename: 'RankContext';
|
|
1795
|
+
}
|
|
1796
|
+
export interface ActivityEntry {
|
|
1797
|
+
id: Scalars['String'];
|
|
1798
|
+
date: Scalars['DateTime'];
|
|
1799
|
+
type: Scalars['String'];
|
|
1800
|
+
metrics: (Scalars['JSONObject'] | null);
|
|
1801
|
+
pointsEarned: Scalars['Float'];
|
|
1802
|
+
counted: Scalars['Boolean'];
|
|
1803
|
+
notCountedReason: (Scalars['String'] | null);
|
|
1804
|
+
prMetrics: (Scalars['String'][] | null);
|
|
1805
|
+
__typename: 'ActivityEntry';
|
|
1806
|
+
}
|
|
1807
|
+
export interface ActivitiesResponse {
|
|
1808
|
+
items: ActivityEntry[];
|
|
1809
|
+
total: Scalars['Int'];
|
|
1810
|
+
hasMore: Scalars['Boolean'];
|
|
1811
|
+
__typename: 'ActivitiesResponse';
|
|
1812
|
+
}
|
|
1813
|
+
export interface MetricComparison {
|
|
1814
|
+
name: Scalars['String'];
|
|
1815
|
+
value: (Scalars['Float'] | null);
|
|
1816
|
+
unit: (Scalars['String'] | null);
|
|
1817
|
+
athleteAverage: (Scalars['Float'] | null);
|
|
1818
|
+
athleteMax: (Scalars['Float'] | null);
|
|
1819
|
+
comparisonPercent: (Scalars['Float'] | null);
|
|
1820
|
+
__typename: 'MetricComparison';
|
|
1821
|
+
}
|
|
1822
|
+
export interface ScoreInfo {
|
|
1823
|
+
earned: Scalars['Float'];
|
|
1824
|
+
maxPossible: Scalars['Float'];
|
|
1825
|
+
componentAverage: (Scalars['Float'] | null);
|
|
1826
|
+
__typename: 'ScoreInfo';
|
|
1827
|
+
}
|
|
1828
|
+
export interface ActivityDetail {
|
|
1829
|
+
id: Scalars['String'];
|
|
1830
|
+
date: Scalars['DateTime'];
|
|
1831
|
+
type: Scalars['String'];
|
|
1832
|
+
category: Scalars['String'];
|
|
1833
|
+
metrics: MetricComparison[];
|
|
1834
|
+
scoreInfo: ScoreInfo;
|
|
1835
|
+
prMetrics: (Scalars['String'][] | null);
|
|
1836
|
+
caption: (Scalars['String'] | null);
|
|
1837
|
+
__typename: 'ActivityDetail';
|
|
1838
|
+
}
|
|
1839
|
+
export interface TopMetric {
|
|
1840
|
+
name: Scalars['String'];
|
|
1841
|
+
status: Scalars['String'];
|
|
1842
|
+
__typename: 'TopMetric';
|
|
1843
|
+
}
|
|
1844
|
+
export interface ComponentSummary {
|
|
1845
|
+
name: Scalars['String'];
|
|
1846
|
+
score: Scalars['Float'];
|
|
1847
|
+
maxScore: Scalars['Float'];
|
|
1848
|
+
trend: (Scalars['Float'] | null);
|
|
1849
|
+
trendPeriod: Scalars['String'];
|
|
1850
|
+
activityCount: Scalars['Int'];
|
|
1851
|
+
avgScorePerActivity: (Scalars['Float'] | null);
|
|
1852
|
+
topMetrics: TopMetric[];
|
|
1853
|
+
newMaxActivityIds: (Scalars['String'][] | null);
|
|
1854
|
+
__typename: 'ComponentSummary';
|
|
1855
|
+
}
|
|
1856
|
+
export interface ActivityDateEntry {
|
|
1857
|
+
date: Scalars['DateTime'];
|
|
1858
|
+
category: ActivityCategory;
|
|
1859
|
+
count: Scalars['Int'];
|
|
1860
|
+
types: Scalars['String'][];
|
|
1861
|
+
__typename: 'ActivityDateEntry';
|
|
1862
|
+
}
|
|
1863
|
+
export type ActivityCategory = 'TRAINING' | 'SOCIAL' | 'COMPETITION';
|
|
1864
|
+
export interface ActivityDatesResponse {
|
|
1865
|
+
dates: ActivityDateEntry[];
|
|
1866
|
+
__typename: 'ActivityDatesResponse';
|
|
1867
|
+
}
|
|
1868
|
+
export interface SocialAggregateType {
|
|
1869
|
+
_id: Scalars['ID'];
|
|
1870
|
+
athleteId: Scalars['String'];
|
|
1871
|
+
platform: Platform;
|
|
1872
|
+
contentType: (ContentType | null);
|
|
1873
|
+
periodType: PeriodType;
|
|
1874
|
+
periodLabel: Scalars['String'];
|
|
1875
|
+
periodStart: Scalars['DateTime'];
|
|
1876
|
+
periodEnd: Scalars['DateTime'];
|
|
1877
|
+
totalLikes: Scalars['Int'];
|
|
1878
|
+
totalComments: Scalars['Int'];
|
|
1879
|
+
totalShares: Scalars['Int'];
|
|
1880
|
+
totalSaves: Scalars['Int'];
|
|
1881
|
+
totalReach: Scalars['Int'];
|
|
1882
|
+
totalViews: Scalars['Int'];
|
|
1883
|
+
totalImpressions: Scalars['Int'];
|
|
1884
|
+
postCount: Scalars['Int'];
|
|
1885
|
+
followerCount: Scalars['Int'];
|
|
1886
|
+
avgEngagementRate: Scalars['Float'];
|
|
1887
|
+
avgPostEngagement: Scalars['Float'];
|
|
1888
|
+
__typename: 'SocialAggregateType';
|
|
1889
|
+
}
|
|
1890
|
+
export type Platform = 'INSTAGRAM' | 'TIKTOK' | 'YOUTUBE';
|
|
1891
|
+
export type ContentType = 'POST' | 'REEL' | 'LIVE' | 'SHORT' | 'VIDEO';
|
|
1892
|
+
export type PeriodType = 'DAILY' | 'WEEKLY';
|
|
1893
|
+
export interface PostMetricType {
|
|
1894
|
+
id: Scalars['ID'];
|
|
1895
|
+
postId: Scalars['String'];
|
|
1896
|
+
permalink: (Scalars['String'] | null);
|
|
1897
|
+
thumbnailUrl: (Scalars['String'] | null);
|
|
1898
|
+
contentType: (ContentType | null);
|
|
1899
|
+
caption: (Scalars['String'] | null);
|
|
1900
|
+
postedAt: Scalars['DateTime'];
|
|
1901
|
+
likes: Scalars['Int'];
|
|
1902
|
+
comments: Scalars['Int'];
|
|
1903
|
+
shares: Scalars['Int'];
|
|
1904
|
+
saves: Scalars['Int'];
|
|
1905
|
+
reach: (Scalars['Int'] | null);
|
|
1906
|
+
vsAvgPercent: Scalars['Float'];
|
|
1907
|
+
__typename: 'PostMetricType';
|
|
1908
|
+
}
|
|
1909
|
+
export interface AveragesType {
|
|
1910
|
+
likes: Scalars['Float'];
|
|
1911
|
+
comments: Scalars['Float'];
|
|
1912
|
+
reach: (Scalars['Float'] | null);
|
|
1913
|
+
engagementRate: Scalars['Float'];
|
|
1914
|
+
__typename: 'AveragesType';
|
|
1915
|
+
}
|
|
1916
|
+
export interface PostComparisonResultType {
|
|
1917
|
+
posts: PostMetricType[];
|
|
1918
|
+
averages: AveragesType;
|
|
1919
|
+
total: Scalars['Int'];
|
|
1920
|
+
hasMore: Scalars['Boolean'];
|
|
1921
|
+
__typename: 'PostComparisonResultType';
|
|
1922
|
+
}
|
|
1923
|
+
export type TimeRange = 'SEVEN_DAYS' | 'THIRTY_DAYS' | 'NINETY_DAYS' | 'ONE_YEAR' | 'ALL_TIME';
|
|
1924
|
+
export type DonationMode = 'PUBLIC' | 'PRIVATE' | 'ANONYMOUS';
|
|
1925
|
+
export type OfferClaimStatus = 'ACTIVE' | 'EXPIRED' | 'ALL';
|
|
1926
|
+
export type PostSortOption = 'RECENT' | 'TOP' | 'UNDERPERFORMING';
|
|
1927
|
+
export interface Query {
|
|
1928
|
+
findTenantById: Tenant;
|
|
1403
1929
|
findTenantByEmail: Tenant;
|
|
1404
1930
|
getTenants: Tenant[];
|
|
1405
1931
|
isTenantUriAvailable: UriAvailableType;
|
|
@@ -1410,10 +1936,12 @@ export interface Query {
|
|
|
1410
1936
|
industries: Industry[];
|
|
1411
1937
|
findIndustryById: Industry;
|
|
1412
1938
|
brands: Brand[];
|
|
1939
|
+
getBrandsPaginated: PaginatedBrands;
|
|
1413
1940
|
getBrandByName: Brand;
|
|
1414
1941
|
getBrandTranslation: BrandTranslation;
|
|
1415
1942
|
existsValidSponsorForEmail: Sponsor;
|
|
1416
1943
|
sponsors: Sponsor[];
|
|
1944
|
+
getSponsorsPaginated: PaginatedSponsors;
|
|
1417
1945
|
findSponsorAthleteInvitation: SponsorAthleteInvitation;
|
|
1418
1946
|
verifyAthleteCompetitionLinkedForDelete: CompetitionDeleteVerificationResponse;
|
|
1419
1947
|
getAthletes: Athlete[];
|
|
@@ -1432,10 +1960,14 @@ export interface Query {
|
|
|
1432
1960
|
queryAthleteWithFilter: AthleteQueryResponse;
|
|
1433
1961
|
getPublicAthleteAlbums: Album[];
|
|
1434
1962
|
screenNameAvailability: ExistValueResponse;
|
|
1435
|
-
|
|
1436
|
-
|
|
1963
|
+
checkScoreRefreshCapabilities: CheckScoreRefreshCapabilityResponse;
|
|
1964
|
+
getAthleteHistoricalScoresPeriod: HistoricalScoresPeriod;
|
|
1965
|
+
getAthleteHistoricalScores: HistoricalScore[];
|
|
1966
|
+
getMyHistoricalScoresPeriod: HistoricalScoresPeriod;
|
|
1967
|
+
getMyHistoricalScores: HistoricalScore[];
|
|
1437
1968
|
getAthleteCampaigns: FundRaisingCampaign[];
|
|
1438
1969
|
getSports: Sport[];
|
|
1970
|
+
getSportsPaginated: PaginatedSports;
|
|
1439
1971
|
findSportById: Sport;
|
|
1440
1972
|
getSportLevels: SportLevel[];
|
|
1441
1973
|
getPublicSponsorships: Sponsorship[];
|
|
@@ -1451,10 +1983,16 @@ export interface Query {
|
|
|
1451
1983
|
getUserImagesFromEmail: UserImages;
|
|
1452
1984
|
getResetVerificationCode: VerificationCode;
|
|
1453
1985
|
verifyCode: CodeVerificationResponse;
|
|
1986
|
+
isUserSuspended: Scalars['Boolean'];
|
|
1987
|
+
getAllUsers: AdminUserView[];
|
|
1988
|
+
getUsersPaginated: PaginatedUsers;
|
|
1454
1989
|
getStravaLoginUrl: Scalars['String'];
|
|
1455
1990
|
getSportsEvents: SportsEvent[];
|
|
1991
|
+
getSportsEventsPaginated: PaginatedEvents;
|
|
1456
1992
|
getBudgetsByAthlete: BudgetData;
|
|
1457
|
-
getDonationsByAthlete: Receipt;
|
|
1993
|
+
getDonationsByAthlete: Receipt[];
|
|
1994
|
+
getDonationsToAthlete: Donation[];
|
|
1995
|
+
getDonationsToMe: Donation[];
|
|
1458
1996
|
getBudgetConcepts: BudgetConcept[];
|
|
1459
1997
|
getBudgetItemUnits: BudgetItemUnit[];
|
|
1460
1998
|
getMembershipOrganizations: MembershipOrganizationReference[];
|
|
@@ -1462,11 +2000,36 @@ export interface Query {
|
|
|
1462
2000
|
getAthleteInstagramIntegration: AthleteIntegrationReference;
|
|
1463
2001
|
getAthleteIntegrations: AthleteIntegrationReference;
|
|
1464
2002
|
stripeQuery: StripeObject;
|
|
2003
|
+
getStripeBalance: StripeBalance;
|
|
1465
2004
|
getDatabaseTextFile: TextDatabaseFile;
|
|
2005
|
+
getS3UploadUrl: AWSS3UploadUrl;
|
|
1466
2006
|
getReceipt: Receipt;
|
|
1467
2007
|
getReceiptUrl: ReceiptUrl;
|
|
2008
|
+
getTransactionDetails: TransactionDetails;
|
|
1468
2009
|
findMemberForUser: Member;
|
|
1469
2010
|
getDonationsByMember: Donation[];
|
|
2011
|
+
getDonationsByUser: Donation[];
|
|
2012
|
+
getAllTransactions: AdminTransactionView[];
|
|
2013
|
+
getTransactionsPaginated: PaginatedTransactions;
|
|
2014
|
+
offers: Offer[];
|
|
2015
|
+
getOffersPaginated: PaginatedOffers;
|
|
2016
|
+
offersForAthlete: Offer[];
|
|
2017
|
+
offer: Offer;
|
|
2018
|
+
myOfferClaims: OfferClaim[];
|
|
2019
|
+
offerAvailability: OfferAvailability;
|
|
2020
|
+
offersWithEligibility: PaginatedOffersWithEligibility;
|
|
2021
|
+
getLeaderboard: LeaderboardResponse;
|
|
2022
|
+
getUserRank: UserRank;
|
|
2023
|
+
athleteDashboard: DashboardSummary;
|
|
2024
|
+
athleteScoreHistory: ScoreHistoryEntry[];
|
|
2025
|
+
athleteRankHistory: RankHistoryEntry[];
|
|
2026
|
+
athleteRankContext: RankContext;
|
|
2027
|
+
athleteActivities: ActivitiesResponse;
|
|
2028
|
+
athleteActivityDetail: ActivityDetail;
|
|
2029
|
+
athleteComponentSummary: ComponentSummary;
|
|
2030
|
+
athleteActivityDates: ActivityDatesResponse;
|
|
2031
|
+
socialAggregates: SocialAggregateType[];
|
|
2032
|
+
postsWithComparison: PostComparisonResultType;
|
|
1470
2033
|
__typename: 'Query';
|
|
1471
2034
|
}
|
|
1472
2035
|
export interface Mutation {
|
|
@@ -1483,9 +2046,15 @@ export interface Mutation {
|
|
|
1483
2046
|
registerS3UploadedFile: AWSS3File;
|
|
1484
2047
|
createIndustry: Industry;
|
|
1485
2048
|
createBrand: Brand;
|
|
2049
|
+
updateBrand: Brand;
|
|
2050
|
+
deleteBrand: Scalars['Boolean'];
|
|
2051
|
+
linkBrandToSponsor: Brand;
|
|
2052
|
+
unlinkBrandFromSponsor: Brand;
|
|
1486
2053
|
registerSponsor: Sponsor;
|
|
1487
2054
|
createSponsor: Sponsor;
|
|
1488
2055
|
sendAthleteInvitations: SponsorAthleteInvitation[];
|
|
2056
|
+
updateSponsor: Sponsor;
|
|
2057
|
+
deleteSponsor: Scalars['Boolean'];
|
|
1489
2058
|
forceDeleteAthleteCompetition: DeleteSingleValueResponse;
|
|
1490
2059
|
registerAthlete: Athlete;
|
|
1491
2060
|
editProfileValue: EditValueResponse;
|
|
@@ -1500,6 +2069,8 @@ export interface Mutation {
|
|
|
1500
2069
|
deleteAthletePhotos: DeleteValuesResponse;
|
|
1501
2070
|
saveAthleteCompetitionResult: AthleteCompetitionResult;
|
|
1502
2071
|
updateAthleteScores: Athlete;
|
|
2072
|
+
updateAthleteCompetitionScores: Athlete;
|
|
2073
|
+
forceRefreshAthleteScores: ForceScoreRefreshResponse;
|
|
1503
2074
|
setCurrentCampaign: FundRaisingCampaign;
|
|
1504
2075
|
createSport: Sport;
|
|
1505
2076
|
updateSport: Sport;
|
|
@@ -1518,9 +2089,12 @@ export interface Mutation {
|
|
|
1518
2089
|
createResetPasswordCode: EditValueResponse;
|
|
1519
2090
|
resetUserPassword: EditValueResponse;
|
|
1520
2091
|
validateToken: ValidatedToken;
|
|
1521
|
-
|
|
1522
|
-
|
|
2092
|
+
updateUserSuspendedStatus: EditValueResponse;
|
|
2093
|
+
deleteMyAccount: DeleteVtxUserResponse;
|
|
2094
|
+
deleteVtxUser: DeleteVtxUserResponse;
|
|
1523
2095
|
createSportsEvent: SportsEvent;
|
|
2096
|
+
updateSportsEvent: SportsEvent;
|
|
2097
|
+
deleteSportsEvent: EditValueResponse;
|
|
1524
2098
|
mergeSportsEvents: MergeEventsResponse;
|
|
1525
2099
|
setFundingStatus: FundRaisingCampaign;
|
|
1526
2100
|
createFundingCampaign: FundRaisingCampaign;
|
|
@@ -1536,12 +2110,23 @@ export interface Mutation {
|
|
|
1536
2110
|
createAthleteMembershipAffilation: AthleteMembership;
|
|
1537
2111
|
deleteAthleteMembershipAffilation: DeleteSingleValueResponse;
|
|
1538
2112
|
updateAthleteIntegration: Scalars['Boolean'];
|
|
2113
|
+
unlinkInstagram: Scalars['Boolean'];
|
|
1539
2114
|
createStripeAccount: StripeAccountReference;
|
|
1540
2115
|
createAthleteStripeSession: StripeSession;
|
|
1541
2116
|
createStripeCheckoutSession: StripeCheckoutSession;
|
|
1542
2117
|
createStripeLoginLink: Scalars['String'];
|
|
1543
2118
|
createStripeAccountLink: Scalars['String'];
|
|
1544
2119
|
registerMember: Member;
|
|
2120
|
+
createOffer: Offer;
|
|
2121
|
+
updateOffer: Offer;
|
|
2122
|
+
deleteOffer: Scalars['Boolean'];
|
|
2123
|
+
setOfferStatus: Offer;
|
|
2124
|
+
activateOffer: Offer;
|
|
2125
|
+
deactivateOffer: Offer;
|
|
2126
|
+
claimOffer: OfferClaim;
|
|
2127
|
+
removeOfferClaim: Scalars['Boolean'];
|
|
2128
|
+
uploadCouponCodes: UploadResult;
|
|
2129
|
+
rebuildLeaderboardCache: Scalars['Boolean'];
|
|
1545
2130
|
__typename: 'Mutation';
|
|
1546
2131
|
}
|
|
1547
2132
|
export interface UserGenqlSelection {
|
|
@@ -1882,112 +2467,17 @@ export interface CodeVerificationResponseGenqlSelection {
|
|
|
1882
2467
|
__typename?: boolean | number;
|
|
1883
2468
|
__scalar?: boolean | number;
|
|
1884
2469
|
}
|
|
1885
|
-
export interface
|
|
1886
|
-
campaigns?: boolean | number;
|
|
1887
|
-
sponsorships?: boolean | number;
|
|
1888
|
-
sports?: boolean | number;
|
|
1889
|
-
athletes?: boolean | number;
|
|
1890
|
-
__typename?: boolean | number;
|
|
1891
|
-
__scalar?: boolean | number;
|
|
1892
|
-
}
|
|
1893
|
-
export interface BrandTranslationGenqlSelection {
|
|
1894
|
-
_id?: boolean | number;
|
|
1895
|
-
brandId?: boolean | number;
|
|
1896
|
-
language?: boolean | number;
|
|
1897
|
-
name?: boolean | number;
|
|
1898
|
-
slogan?: boolean | number;
|
|
1899
|
-
description?: boolean | number;
|
|
1900
|
-
logo?: AWSS3FileGenqlSelection;
|
|
1901
|
-
banner?: AWSS3FileGenqlSelection;
|
|
1902
|
-
__typename?: boolean | number;
|
|
1903
|
-
__scalar?: boolean | number;
|
|
1904
|
-
}
|
|
1905
|
-
export interface BrandGenqlSelection {
|
|
2470
|
+
export interface IndustryGenqlSelection {
|
|
1906
2471
|
_id?: boolean | number;
|
|
1907
2472
|
name?: boolean | number;
|
|
1908
|
-
slogan?: boolean | number;
|
|
1909
|
-
website?: boolean | number;
|
|
1910
|
-
description?: boolean | number;
|
|
1911
|
-
approved?: boolean | number;
|
|
1912
|
-
published?: boolean | number;
|
|
1913
|
-
logo?: AWSS3FileGenqlSelection;
|
|
1914
|
-
banner?: AWSS3FileGenqlSelection;
|
|
1915
|
-
stats?: BrandStatsGenqlSelection;
|
|
1916
|
-
operatorIds?: boolean | number;
|
|
1917
|
-
translations?: BrandTranslationGenqlSelection;
|
|
1918
|
-
__typename?: boolean | number;
|
|
1919
|
-
__scalar?: boolean | number;
|
|
1920
|
-
}
|
|
1921
|
-
export interface StravaTpiRideDtoGenqlSelection {
|
|
1922
|
-
distanceKm?: boolean | number;
|
|
1923
|
-
distanceKmLast?: boolean | number;
|
|
1924
|
-
elapsedTimeMin?: boolean | number;
|
|
1925
|
-
elapsedTimeMinLast?: boolean | number;
|
|
1926
|
-
averageSpeedKmh?: boolean | number;
|
|
1927
|
-
averageSpeedKmhLast?: boolean | number;
|
|
1928
|
-
maxSpeedKmh?: boolean | number;
|
|
1929
|
-
maxSpeedKmhLast?: boolean | number;
|
|
1930
|
-
averageHeartRateBpm?: boolean | number;
|
|
1931
|
-
averageHeartRateBpmLast?: boolean | number;
|
|
1932
|
-
maxHeartRateBpm?: boolean | number;
|
|
1933
|
-
maxHeartRateBpmLast?: boolean | number;
|
|
1934
|
-
averageCadenceStm?: boolean | number;
|
|
1935
|
-
averageCadenceStmLast?: boolean | number;
|
|
1936
|
-
lastDate?: boolean | number;
|
|
1937
|
-
country?: boolean | number;
|
|
1938
|
-
state?: boolean | number;
|
|
1939
|
-
city?: boolean | number;
|
|
1940
|
-
tpi?: boolean | number;
|
|
1941
|
-
__typename?: boolean | number;
|
|
1942
|
-
__scalar?: boolean | number;
|
|
1943
|
-
}
|
|
1944
|
-
export interface StravaTpiRunDtoGenqlSelection {
|
|
1945
|
-
distanceKm?: boolean | number;
|
|
1946
|
-
distanceKmLast?: boolean | number;
|
|
1947
|
-
elapsedTimeMin?: boolean | number;
|
|
1948
|
-
elapsedTimeMinLast?: boolean | number;
|
|
1949
|
-
averageSpeedKmh?: boolean | number;
|
|
1950
|
-
averageSpeedKmhLast?: boolean | number;
|
|
1951
|
-
maxSpeedKmh?: boolean | number;
|
|
1952
|
-
maxSpeedKmhLast?: boolean | number;
|
|
1953
|
-
averageHeartRateBpm?: boolean | number;
|
|
1954
|
-
averageHeartRateBpmLast?: boolean | number;
|
|
1955
|
-
maxHeartRateBpm?: boolean | number;
|
|
1956
|
-
maxHeartRateBpmLast?: boolean | number;
|
|
1957
|
-
averageCadenceStm?: boolean | number;
|
|
1958
|
-
averageCadenceStmLast?: boolean | number;
|
|
1959
|
-
elevHigh?: boolean | number;
|
|
1960
|
-
elevHighLast?: boolean | number;
|
|
1961
|
-
elevLow?: boolean | number;
|
|
1962
|
-
elevLowLast?: boolean | number;
|
|
1963
|
-
lastDate?: boolean | number;
|
|
1964
|
-
country?: boolean | number;
|
|
1965
|
-
state?: boolean | number;
|
|
1966
|
-
city?: boolean | number;
|
|
1967
|
-
tpi?: boolean | number;
|
|
1968
2473
|
__typename?: boolean | number;
|
|
1969
2474
|
__scalar?: boolean | number;
|
|
1970
2475
|
}
|
|
1971
|
-
export interface
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
averageSpeedKmh?: boolean | number;
|
|
1977
|
-
averageSpeedKmhLast?: boolean | number;
|
|
1978
|
-
maxSpeedKmh?: boolean | number;
|
|
1979
|
-
maxSpeedKmhLast?: boolean | number;
|
|
1980
|
-
averageHeartRateBpm?: boolean | number;
|
|
1981
|
-
averageHeartRateBpmLast?: boolean | number;
|
|
1982
|
-
maxHeartRateBpm?: boolean | number;
|
|
1983
|
-
maxHeartRateBpmLast?: boolean | number;
|
|
1984
|
-
averageCadenceStm?: boolean | number;
|
|
1985
|
-
averageCadenceStmLast?: boolean | number;
|
|
1986
|
-
lastDate?: boolean | number;
|
|
1987
|
-
country?: boolean | number;
|
|
1988
|
-
state?: boolean | number;
|
|
1989
|
-
city?: boolean | number;
|
|
1990
|
-
tpi?: boolean | number;
|
|
2476
|
+
export interface SponsorStatsGenqlSelection {
|
|
2477
|
+
sponsoredAthletes?: boolean | number;
|
|
2478
|
+
totalBrands?: boolean | number;
|
|
2479
|
+
activeCampaigns?: boolean | number;
|
|
2480
|
+
activeSponsorships?: boolean | number;
|
|
1991
2481
|
__typename?: boolean | number;
|
|
1992
2482
|
__scalar?: boolean | number;
|
|
1993
2483
|
}
|
|
@@ -2082,6 +2572,9 @@ export interface AthleteCriteriaGenqlSelection {
|
|
|
2082
2572
|
_id?: boolean | number;
|
|
2083
2573
|
label?: boolean | number;
|
|
2084
2574
|
qualifications?: QualificationTypeUnionGenqlSelection;
|
|
2575
|
+
minAge?: boolean | number;
|
|
2576
|
+
maxAge?: boolean | number;
|
|
2577
|
+
allowedGenders?: boolean | number;
|
|
2085
2578
|
__typename?: boolean | number;
|
|
2086
2579
|
__scalar?: boolean | number;
|
|
2087
2580
|
}
|
|
@@ -2096,52 +2589,6 @@ export interface QualificationTypeUnionGenqlSelection {
|
|
|
2096
2589
|
on_SportsLevelQualification?: SportsLevelQualificationGenqlSelection;
|
|
2097
2590
|
__typename?: boolean | number;
|
|
2098
2591
|
}
|
|
2099
|
-
export interface IndustryGenqlSelection {
|
|
2100
|
-
_id?: boolean | number;
|
|
2101
|
-
name?: boolean | number;
|
|
2102
|
-
__typename?: boolean | number;
|
|
2103
|
-
__scalar?: boolean | number;
|
|
2104
|
-
}
|
|
2105
|
-
export interface SponsorStatsGenqlSelection {
|
|
2106
|
-
sponsoredAthletes?: boolean | number;
|
|
2107
|
-
totalBrands?: boolean | number;
|
|
2108
|
-
activeCampaigns?: boolean | number;
|
|
2109
|
-
activeSponsorships?: boolean | number;
|
|
2110
|
-
__typename?: boolean | number;
|
|
2111
|
-
__scalar?: boolean | number;
|
|
2112
|
-
}
|
|
2113
|
-
export interface SponsorBrandGenqlSelection {
|
|
2114
|
-
_id?: boolean | number;
|
|
2115
|
-
name?: boolean | number;
|
|
2116
|
-
slogan?: boolean | number;
|
|
2117
|
-
website?: boolean | number;
|
|
2118
|
-
description?: boolean | number;
|
|
2119
|
-
approved?: boolean | number;
|
|
2120
|
-
published?: boolean | number;
|
|
2121
|
-
logo?: AWSS3FileGenqlSelection;
|
|
2122
|
-
banner?: AWSS3FileGenqlSelection;
|
|
2123
|
-
stats?: BrandStatsGenqlSelection;
|
|
2124
|
-
operatorIds?: boolean | number;
|
|
2125
|
-
translations?: BrandTranslationGenqlSelection;
|
|
2126
|
-
sponsorBrandId?: boolean | number;
|
|
2127
|
-
authorizedUse?: boolean | number;
|
|
2128
|
-
isAuthorizer?: boolean | number;
|
|
2129
|
-
__typename?: boolean | number;
|
|
2130
|
-
__scalar?: boolean | number;
|
|
2131
|
-
}
|
|
2132
|
-
export interface SponsorGenqlSelection {
|
|
2133
|
-
_id?: boolean | number;
|
|
2134
|
-
name?: boolean | number;
|
|
2135
|
-
description?: boolean | number;
|
|
2136
|
-
tenant?: TenantGenqlSelection;
|
|
2137
|
-
industry?: IndustryGenqlSelection;
|
|
2138
|
-
stats?: SponsorStatsGenqlSelection;
|
|
2139
|
-
brands?: SponsorBrandGenqlSelection;
|
|
2140
|
-
sponsorships?: SponsorshipGenqlSelection;
|
|
2141
|
-
approved?: boolean | number;
|
|
2142
|
-
__typename?: boolean | number;
|
|
2143
|
-
__scalar?: boolean | number;
|
|
2144
|
-
}
|
|
2145
2592
|
export interface SponsorshipItemGenqlSelection {
|
|
2146
2593
|
_id?: boolean | number;
|
|
2147
2594
|
quantity?: boolean | number;
|
|
@@ -2217,47 +2664,181 @@ export interface SponsorshipGenqlSelection {
|
|
|
2217
2664
|
__typename?: boolean | number;
|
|
2218
2665
|
__scalar?: boolean | number;
|
|
2219
2666
|
}
|
|
2220
|
-
export interface
|
|
2221
|
-
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
|
|
2667
|
+
export interface SponsorGenqlSelection {
|
|
2668
|
+
_id?: boolean | number;
|
|
2669
|
+
name?: boolean | number;
|
|
2670
|
+
description?: boolean | number;
|
|
2671
|
+
tenant?: TenantGenqlSelection;
|
|
2672
|
+
industry?: IndustryGenqlSelection;
|
|
2673
|
+
stats?: SponsorStatsGenqlSelection;
|
|
2674
|
+
brands?: SponsorBrandGenqlSelection;
|
|
2675
|
+
sponsorships?: SponsorshipGenqlSelection;
|
|
2676
|
+
approved?: boolean | number;
|
|
2225
2677
|
__typename?: boolean | number;
|
|
2226
2678
|
__scalar?: boolean | number;
|
|
2227
2679
|
}
|
|
2228
|
-
export interface
|
|
2680
|
+
export interface SponsorBrandGenqlSelection {
|
|
2229
2681
|
_id?: boolean | number;
|
|
2230
|
-
|
|
2231
|
-
|
|
2682
|
+
sponsor?: SponsorGenqlSelection;
|
|
2683
|
+
authorizedUse?: boolean | number;
|
|
2684
|
+
isAuthorizer?: boolean | number;
|
|
2232
2685
|
__typename?: boolean | number;
|
|
2233
2686
|
__scalar?: boolean | number;
|
|
2234
2687
|
}
|
|
2235
|
-
export interface
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
|
|
2239
|
-
|
|
2688
|
+
export interface BrandStatsGenqlSelection {
|
|
2689
|
+
campaigns?: boolean | number;
|
|
2690
|
+
sponsorships?: boolean | number;
|
|
2691
|
+
sports?: boolean | number;
|
|
2692
|
+
athletes?: boolean | number;
|
|
2240
2693
|
__typename?: boolean | number;
|
|
2241
2694
|
__scalar?: boolean | number;
|
|
2242
2695
|
}
|
|
2243
|
-
export interface
|
|
2696
|
+
export interface BrandTranslationGenqlSelection {
|
|
2244
2697
|
_id?: boolean | number;
|
|
2698
|
+
brandId?: boolean | number;
|
|
2245
2699
|
language?: boolean | number;
|
|
2246
|
-
|
|
2700
|
+
name?: boolean | number;
|
|
2701
|
+
slogan?: boolean | number;
|
|
2702
|
+
description?: boolean | number;
|
|
2703
|
+
logo?: AWSS3FileGenqlSelection;
|
|
2704
|
+
banner?: AWSS3FileGenqlSelection;
|
|
2247
2705
|
__typename?: boolean | number;
|
|
2248
2706
|
__scalar?: boolean | number;
|
|
2249
2707
|
}
|
|
2250
|
-
export interface
|
|
2708
|
+
export interface BrandGenqlSelection {
|
|
2251
2709
|
_id?: boolean | number;
|
|
2252
|
-
|
|
2253
|
-
|
|
2254
|
-
|
|
2710
|
+
name?: boolean | number;
|
|
2711
|
+
slogan?: boolean | number;
|
|
2712
|
+
website?: boolean | number;
|
|
2713
|
+
affiliateLink?: boolean | number;
|
|
2714
|
+
description?: boolean | number;
|
|
2715
|
+
approved?: boolean | number;
|
|
2716
|
+
published?: boolean | number;
|
|
2717
|
+
logo?: AWSS3FileGenqlSelection;
|
|
2718
|
+
banner?: AWSS3FileGenqlSelection;
|
|
2719
|
+
stats?: BrandStatsGenqlSelection;
|
|
2720
|
+
operatorIds?: boolean | number;
|
|
2721
|
+
translations?: BrandTranslationGenqlSelection;
|
|
2722
|
+
sponsors?: SponsorBrandGenqlSelection;
|
|
2255
2723
|
__typename?: boolean | number;
|
|
2256
2724
|
__scalar?: boolean | number;
|
|
2257
2725
|
}
|
|
2258
|
-
export interface
|
|
2259
|
-
|
|
2260
|
-
|
|
2726
|
+
export interface StravaTpiRideDtoGenqlSelection {
|
|
2727
|
+
distanceKm?: boolean | number;
|
|
2728
|
+
distanceKmLast?: boolean | number;
|
|
2729
|
+
elapsedTimeMin?: boolean | number;
|
|
2730
|
+
elapsedTimeMinLast?: boolean | number;
|
|
2731
|
+
averageSpeedKmh?: boolean | number;
|
|
2732
|
+
averageSpeedKmhLast?: boolean | number;
|
|
2733
|
+
maxSpeedKmh?: boolean | number;
|
|
2734
|
+
maxSpeedKmhLast?: boolean | number;
|
|
2735
|
+
averageHeartRateBpm?: boolean | number;
|
|
2736
|
+
averageHeartRateBpmLast?: boolean | number;
|
|
2737
|
+
maxHeartRateBpm?: boolean | number;
|
|
2738
|
+
maxHeartRateBpmLast?: boolean | number;
|
|
2739
|
+
averageCadenceStm?: boolean | number;
|
|
2740
|
+
averageCadenceStmLast?: boolean | number;
|
|
2741
|
+
lastDate?: boolean | number;
|
|
2742
|
+
country?: boolean | number;
|
|
2743
|
+
state?: boolean | number;
|
|
2744
|
+
city?: boolean | number;
|
|
2745
|
+
tpi?: boolean | number;
|
|
2746
|
+
__typename?: boolean | number;
|
|
2747
|
+
__scalar?: boolean | number;
|
|
2748
|
+
}
|
|
2749
|
+
export interface StravaTpiRunDtoGenqlSelection {
|
|
2750
|
+
distanceKm?: boolean | number;
|
|
2751
|
+
distanceKmLast?: boolean | number;
|
|
2752
|
+
elapsedTimeMin?: boolean | number;
|
|
2753
|
+
elapsedTimeMinLast?: boolean | number;
|
|
2754
|
+
averageSpeedKmh?: boolean | number;
|
|
2755
|
+
averageSpeedKmhLast?: boolean | number;
|
|
2756
|
+
maxSpeedKmh?: boolean | number;
|
|
2757
|
+
maxSpeedKmhLast?: boolean | number;
|
|
2758
|
+
averageHeartRateBpm?: boolean | number;
|
|
2759
|
+
averageHeartRateBpmLast?: boolean | number;
|
|
2760
|
+
maxHeartRateBpm?: boolean | number;
|
|
2761
|
+
maxHeartRateBpmLast?: boolean | number;
|
|
2762
|
+
averageCadenceStm?: boolean | number;
|
|
2763
|
+
averageCadenceStmLast?: boolean | number;
|
|
2764
|
+
elevHigh?: boolean | number;
|
|
2765
|
+
elevHighLast?: boolean | number;
|
|
2766
|
+
elevLow?: boolean | number;
|
|
2767
|
+
elevLowLast?: boolean | number;
|
|
2768
|
+
lastDate?: boolean | number;
|
|
2769
|
+
country?: boolean | number;
|
|
2770
|
+
state?: boolean | number;
|
|
2771
|
+
city?: boolean | number;
|
|
2772
|
+
tpi?: boolean | number;
|
|
2773
|
+
__typename?: boolean | number;
|
|
2774
|
+
__scalar?: boolean | number;
|
|
2775
|
+
}
|
|
2776
|
+
export interface StravaTpiSwimDtoGenqlSelection {
|
|
2777
|
+
distanceKm?: boolean | number;
|
|
2778
|
+
distanceKmLast?: boolean | number;
|
|
2779
|
+
elapsedTimeMin?: boolean | number;
|
|
2780
|
+
elapsedTimeMinLast?: boolean | number;
|
|
2781
|
+
averageSpeedKmh?: boolean | number;
|
|
2782
|
+
averageSpeedKmhLast?: boolean | number;
|
|
2783
|
+
maxSpeedKmh?: boolean | number;
|
|
2784
|
+
maxSpeedKmhLast?: boolean | number;
|
|
2785
|
+
averageHeartRateBpm?: boolean | number;
|
|
2786
|
+
averageHeartRateBpmLast?: boolean | number;
|
|
2787
|
+
maxHeartRateBpm?: boolean | number;
|
|
2788
|
+
maxHeartRateBpmLast?: boolean | number;
|
|
2789
|
+
averageCadenceStm?: boolean | number;
|
|
2790
|
+
averageCadenceStmLast?: boolean | number;
|
|
2791
|
+
lastDate?: boolean | number;
|
|
2792
|
+
country?: boolean | number;
|
|
2793
|
+
state?: boolean | number;
|
|
2794
|
+
city?: boolean | number;
|
|
2795
|
+
tpi?: boolean | number;
|
|
2796
|
+
__typename?: boolean | number;
|
|
2797
|
+
__scalar?: boolean | number;
|
|
2798
|
+
}
|
|
2799
|
+
export interface FollowStatsGenqlSelection {
|
|
2800
|
+
followers?: boolean | number;
|
|
2801
|
+
followed?: boolean | number;
|
|
2802
|
+
raves?: boolean | number;
|
|
2803
|
+
favorites?: boolean | number;
|
|
2804
|
+
__typename?: boolean | number;
|
|
2805
|
+
__scalar?: boolean | number;
|
|
2806
|
+
}
|
|
2807
|
+
export interface SportGenqlSelection {
|
|
2808
|
+
_id?: boolean | number;
|
|
2809
|
+
name?: boolean | number;
|
|
2810
|
+
resultType?: boolean | number;
|
|
2811
|
+
verified?: boolean | number;
|
|
2812
|
+
priority?: boolean | number;
|
|
2813
|
+
__typename?: boolean | number;
|
|
2814
|
+
__scalar?: boolean | number;
|
|
2815
|
+
}
|
|
2816
|
+
export interface VtxScoresGenqlSelection {
|
|
2817
|
+
vtxScore?: boolean | number;
|
|
2818
|
+
socialScore?: boolean | number;
|
|
2819
|
+
trainingScore?: boolean | number;
|
|
2820
|
+
competitionScore?: boolean | number;
|
|
2821
|
+
__typename?: boolean | number;
|
|
2822
|
+
__scalar?: boolean | number;
|
|
2823
|
+
}
|
|
2824
|
+
export interface SportLevelTranslationGenqlSelection {
|
|
2825
|
+
_id?: boolean | number;
|
|
2826
|
+
language?: boolean | number;
|
|
2827
|
+
label?: boolean | number;
|
|
2828
|
+
__typename?: boolean | number;
|
|
2829
|
+
__scalar?: boolean | number;
|
|
2830
|
+
}
|
|
2831
|
+
export interface SportLevelGenqlSelection {
|
|
2832
|
+
_id?: boolean | number;
|
|
2833
|
+
label?: boolean | number;
|
|
2834
|
+
index?: boolean | number;
|
|
2835
|
+
translations?: SportLevelTranslationGenqlSelection;
|
|
2836
|
+
__typename?: boolean | number;
|
|
2837
|
+
__scalar?: boolean | number;
|
|
2838
|
+
}
|
|
2839
|
+
export interface RankingGenqlSelection {
|
|
2840
|
+
scope?: boolean | number;
|
|
2841
|
+
scopeId?: boolean | number;
|
|
2261
2842
|
scopeName?: boolean | number;
|
|
2262
2843
|
position?: boolean | number;
|
|
2263
2844
|
total?: boolean | number;
|
|
@@ -2327,6 +2908,7 @@ export interface AthleteCompetitionResultGenqlSelection {
|
|
|
2327
2908
|
categoryPosition?: boolean | number;
|
|
2328
2909
|
categoryParticipants?: boolean | number;
|
|
2329
2910
|
categoryName?: boolean | number;
|
|
2911
|
+
pointsEarned?: boolean | number;
|
|
2330
2912
|
__typename?: boolean | number;
|
|
2331
2913
|
__scalar?: boolean | number;
|
|
2332
2914
|
}
|
|
@@ -2592,7 +3174,7 @@ export interface StripeAccountReferenceGenqlSelection {
|
|
|
2592
3174
|
__typename?: boolean | number;
|
|
2593
3175
|
__scalar?: boolean | number;
|
|
2594
3176
|
}
|
|
2595
|
-
export interface
|
|
3177
|
+
export interface HistoricalScoreGenqlSelection {
|
|
2596
3178
|
_id?: boolean | number;
|
|
2597
3179
|
scoreType?: boolean | number;
|
|
2598
3180
|
score?: boolean | number;
|
|
@@ -2626,6 +3208,7 @@ export interface AthleteReferenceGenqlSelection {
|
|
|
2626
3208
|
aboutMe?: boolean | number;
|
|
2627
3209
|
biography?: boolean | number;
|
|
2628
3210
|
preferences?: AthletePreferencesGenqlSelection;
|
|
3211
|
+
suspended?: boolean | number;
|
|
2629
3212
|
__typename?: boolean | number;
|
|
2630
3213
|
__scalar?: boolean | number;
|
|
2631
3214
|
}
|
|
@@ -2654,6 +3237,7 @@ export interface AthleteGenqlSelection {
|
|
|
2654
3237
|
aboutMe?: boolean | number;
|
|
2655
3238
|
biography?: boolean | number;
|
|
2656
3239
|
preferences?: AthletePreferencesGenqlSelection;
|
|
3240
|
+
suspended?: boolean | number;
|
|
2657
3241
|
allSports?: SportGenqlSelection;
|
|
2658
3242
|
teams?: TeamGenqlSelection;
|
|
2659
3243
|
sponsorBrands?: BrandGenqlSelection;
|
|
@@ -2665,7 +3249,7 @@ export interface AthleteGenqlSelection {
|
|
|
2665
3249
|
fundingCampaigns?: FundRaisingCampaignGenqlSelection;
|
|
2666
3250
|
stripeAccountReference?: StripeAccountReferenceGenqlSelection;
|
|
2667
3251
|
albums?: AlbumGenqlSelection;
|
|
2668
|
-
historicalScores?:
|
|
3252
|
+
historicalScores?: HistoricalScoreGenqlSelection;
|
|
2669
3253
|
signedAgreements?: SignedAgreementGenqlSelection;
|
|
2670
3254
|
__typename?: boolean | number;
|
|
2671
3255
|
__scalar?: boolean | number;
|
|
@@ -2712,14 +3296,6 @@ export interface SponsorAthleteInvitationGenqlSelection {
|
|
|
2712
3296
|
__typename?: boolean | number;
|
|
2713
3297
|
__scalar?: boolean | number;
|
|
2714
3298
|
}
|
|
2715
|
-
export interface StravaTokenGenqlSelection {
|
|
2716
|
-
token_type?: boolean | number;
|
|
2717
|
-
expires_at?: boolean | number;
|
|
2718
|
-
refresh_token?: boolean | number;
|
|
2719
|
-
access_token?: boolean | number;
|
|
2720
|
-
__typename?: boolean | number;
|
|
2721
|
-
__scalar?: boolean | number;
|
|
2722
|
-
}
|
|
2723
3299
|
export interface StripeSessionGenqlSelection {
|
|
2724
3300
|
account?: boolean | number;
|
|
2725
3301
|
client_secret?: boolean | number;
|
|
@@ -2729,6 +3305,8 @@ export interface StripeSessionGenqlSelection {
|
|
|
2729
3305
|
__scalar?: boolean | number;
|
|
2730
3306
|
}
|
|
2731
3307
|
export interface StripeCheckoutSessionGenqlSelection {
|
|
3308
|
+
id?: boolean | number;
|
|
3309
|
+
vtxCheckoutSessionId?: boolean | number;
|
|
2732
3310
|
client_secret?: boolean | number;
|
|
2733
3311
|
expires_at?: boolean | number;
|
|
2734
3312
|
livemode?: boolean | number;
|
|
@@ -2944,6 +3522,8 @@ export interface DonationGenqlSelection {
|
|
|
2944
3522
|
checkoutSessionId?: boolean | number;
|
|
2945
3523
|
fundingCheckoutSessionDataId?: boolean | number;
|
|
2946
3524
|
donationMode?: boolean | number;
|
|
3525
|
+
donorName?: boolean | number;
|
|
3526
|
+
donorEmail?: boolean | number;
|
|
2947
3527
|
completed?: boolean | number;
|
|
2948
3528
|
confirmed?: boolean | number;
|
|
2949
3529
|
donationAmount?: boolean | number;
|
|
@@ -2966,6 +3546,208 @@ export interface MemberGenqlSelection {
|
|
|
2966
3546
|
__typename?: boolean | number;
|
|
2967
3547
|
__scalar?: boolean | number;
|
|
2968
3548
|
}
|
|
3549
|
+
export interface AdminUserViewGenqlSelection {
|
|
3550
|
+
_id?: boolean | number;
|
|
3551
|
+
loginEmail?: boolean | number;
|
|
3552
|
+
firstName?: boolean | number;
|
|
3553
|
+
lastName?: boolean | number;
|
|
3554
|
+
screenName?: boolean | number;
|
|
3555
|
+
domains?: DomainCredentialGenqlSelection;
|
|
3556
|
+
athlete?: AthleteGenqlSelection;
|
|
3557
|
+
member?: MemberGenqlSelection;
|
|
3558
|
+
suspended?: boolean | number;
|
|
3559
|
+
__typename?: boolean | number;
|
|
3560
|
+
__scalar?: boolean | number;
|
|
3561
|
+
}
|
|
3562
|
+
export interface AdminTransactionFundingDetailsGenqlSelection {
|
|
3563
|
+
paidToVtx?: boolean | number;
|
|
3564
|
+
paidToAthlete?: boolean | number;
|
|
3565
|
+
athleteId?: boolean | number;
|
|
3566
|
+
athleteName?: boolean | number;
|
|
3567
|
+
fromName?: boolean | number;
|
|
3568
|
+
fromPhone?: boolean | number;
|
|
3569
|
+
message?: boolean | number;
|
|
3570
|
+
mode?: boolean | number;
|
|
3571
|
+
__typename?: boolean | number;
|
|
3572
|
+
__scalar?: boolean | number;
|
|
3573
|
+
}
|
|
3574
|
+
export interface AdminTransactionViewGenqlSelection {
|
|
3575
|
+
_id?: boolean | number;
|
|
3576
|
+
createdDate?: boolean | number;
|
|
3577
|
+
stripeSessionId?: boolean | number;
|
|
3578
|
+
concept?: boolean | number;
|
|
3579
|
+
donationAmount?: boolean | number;
|
|
3580
|
+
fromEmail?: boolean | number;
|
|
3581
|
+
type?: boolean | number;
|
|
3582
|
+
confirmed?: boolean | number;
|
|
3583
|
+
completed?: boolean | number;
|
|
3584
|
+
completedDate?: boolean | number;
|
|
3585
|
+
stripeAccountId?: boolean | number;
|
|
3586
|
+
fundingDetails?: AdminTransactionFundingDetailsGenqlSelection;
|
|
3587
|
+
__typename?: boolean | number;
|
|
3588
|
+
__scalar?: boolean | number;
|
|
3589
|
+
}
|
|
3590
|
+
export interface OfferGenqlSelection {
|
|
3591
|
+
_id?: boolean | number;
|
|
3592
|
+
name?: boolean | number;
|
|
3593
|
+
label?: boolean | number;
|
|
3594
|
+
decription?: boolean | number;
|
|
3595
|
+
offerImage?: AWSS3FileGenqlSelection;
|
|
3596
|
+
type?: boolean | number;
|
|
3597
|
+
status?: boolean | number;
|
|
3598
|
+
discountType?: boolean | number;
|
|
3599
|
+
discountTypeData?: boolean | number;
|
|
3600
|
+
conditions?: boolean | number;
|
|
3601
|
+
brand?: BrandGenqlSelection;
|
|
3602
|
+
sponsor?: SponsorGenqlSelection;
|
|
3603
|
+
criteria?: AthleteCriteriaGenqlSelection;
|
|
3604
|
+
dateStart?: boolean | number;
|
|
3605
|
+
dateEnd?: boolean | number;
|
|
3606
|
+
dateCreated?: boolean | number;
|
|
3607
|
+
totalCodes?: boolean | number;
|
|
3608
|
+
availableCodes?: boolean | number;
|
|
3609
|
+
availableCountries?: CountryGenqlSelection;
|
|
3610
|
+
disclaimer?: boolean | number;
|
|
3611
|
+
genericCode?: boolean | number;
|
|
3612
|
+
featured?: boolean | number;
|
|
3613
|
+
__typename?: boolean | number;
|
|
3614
|
+
__scalar?: boolean | number;
|
|
3615
|
+
}
|
|
3616
|
+
export interface PromotionGenqlSelection {
|
|
3617
|
+
_id?: boolean | number;
|
|
3618
|
+
name?: boolean | number;
|
|
3619
|
+
label?: boolean | number;
|
|
3620
|
+
decription?: boolean | number;
|
|
3621
|
+
offerImage?: AWSS3FileGenqlSelection;
|
|
3622
|
+
type?: boolean | number;
|
|
3623
|
+
status?: boolean | number;
|
|
3624
|
+
discountType?: boolean | number;
|
|
3625
|
+
discountTypeData?: boolean | number;
|
|
3626
|
+
conditions?: boolean | number;
|
|
3627
|
+
brand?: BrandGenqlSelection;
|
|
3628
|
+
sponsor?: SponsorGenqlSelection;
|
|
3629
|
+
criteria?: AthleteCriteriaGenqlSelection;
|
|
3630
|
+
dateStart?: boolean | number;
|
|
3631
|
+
dateEnd?: boolean | number;
|
|
3632
|
+
dateCreated?: boolean | number;
|
|
3633
|
+
totalCodes?: boolean | number;
|
|
3634
|
+
availableCodes?: boolean | number;
|
|
3635
|
+
availableCountries?: CountryGenqlSelection;
|
|
3636
|
+
disclaimer?: boolean | number;
|
|
3637
|
+
genericCode?: boolean | number;
|
|
3638
|
+
featured?: boolean | number;
|
|
3639
|
+
__typename?: boolean | number;
|
|
3640
|
+
__scalar?: boolean | number;
|
|
3641
|
+
}
|
|
3642
|
+
export interface CouponCodeGenqlSelection {
|
|
3643
|
+
_id?: boolean | number;
|
|
3644
|
+
couponId?: boolean | number;
|
|
3645
|
+
code?: boolean | number;
|
|
3646
|
+
expires?: boolean | number;
|
|
3647
|
+
dateCreated?: boolean | number;
|
|
3648
|
+
__typename?: boolean | number;
|
|
3649
|
+
__scalar?: boolean | number;
|
|
3650
|
+
}
|
|
3651
|
+
export interface CouponGenqlSelection {
|
|
3652
|
+
_id?: boolean | number;
|
|
3653
|
+
name?: boolean | number;
|
|
3654
|
+
label?: boolean | number;
|
|
3655
|
+
decription?: boolean | number;
|
|
3656
|
+
offerImage?: AWSS3FileGenqlSelection;
|
|
3657
|
+
type?: boolean | number;
|
|
3658
|
+
status?: boolean | number;
|
|
3659
|
+
discountType?: boolean | number;
|
|
3660
|
+
discountTypeData?: boolean | number;
|
|
3661
|
+
conditions?: boolean | number;
|
|
3662
|
+
brand?: BrandGenqlSelection;
|
|
3663
|
+
sponsor?: SponsorGenqlSelection;
|
|
3664
|
+
criteria?: AthleteCriteriaGenqlSelection;
|
|
3665
|
+
dateStart?: boolean | number;
|
|
3666
|
+
dateEnd?: boolean | number;
|
|
3667
|
+
dateCreated?: boolean | number;
|
|
3668
|
+
totalCodes?: boolean | number;
|
|
3669
|
+
availableCodes?: boolean | number;
|
|
3670
|
+
availableCountries?: CountryGenqlSelection;
|
|
3671
|
+
disclaimer?: boolean | number;
|
|
3672
|
+
genericCode?: boolean | number;
|
|
3673
|
+
featured?: boolean | number;
|
|
3674
|
+
couponCodes?: CouponCodeGenqlSelection;
|
|
3675
|
+
__typename?: boolean | number;
|
|
3676
|
+
__scalar?: boolean | number;
|
|
3677
|
+
}
|
|
3678
|
+
export interface OfferClaimGenqlSelection {
|
|
3679
|
+
_id?: boolean | number;
|
|
3680
|
+
offer?: OfferGenqlSelection;
|
|
3681
|
+
athlete?: AthleteGenqlSelection;
|
|
3682
|
+
claimedAt?: boolean | number;
|
|
3683
|
+
code?: boolean | number;
|
|
3684
|
+
__typename?: boolean | number;
|
|
3685
|
+
__scalar?: boolean | number;
|
|
3686
|
+
}
|
|
3687
|
+
export interface EligibilityResultGenqlSelection {
|
|
3688
|
+
status?: boolean | number;
|
|
3689
|
+
failedCriteria?: boolean | number;
|
|
3690
|
+
missingFields?: boolean | number;
|
|
3691
|
+
messages?: boolean | number;
|
|
3692
|
+
__typename?: boolean | number;
|
|
3693
|
+
__scalar?: boolean | number;
|
|
3694
|
+
}
|
|
3695
|
+
export interface EnhancedPaginationInfoTypeGenqlSelection {
|
|
3696
|
+
currentPage?: boolean | number;
|
|
3697
|
+
totalPages?: boolean | number;
|
|
3698
|
+
totalItems?: boolean | number;
|
|
3699
|
+
itemsPerPage?: boolean | number;
|
|
3700
|
+
hasNextPage?: boolean | number;
|
|
3701
|
+
hasPreviousPage?: boolean | number;
|
|
3702
|
+
startIndex?: boolean | number;
|
|
3703
|
+
endIndex?: boolean | number;
|
|
3704
|
+
__typename?: boolean | number;
|
|
3705
|
+
__scalar?: boolean | number;
|
|
3706
|
+
}
|
|
3707
|
+
export interface OfferWithEligibilityGenqlSelection {
|
|
3708
|
+
_id?: boolean | number;
|
|
3709
|
+
name?: boolean | number;
|
|
3710
|
+
label?: boolean | number;
|
|
3711
|
+
decription?: boolean | number;
|
|
3712
|
+
offerImage?: AWSS3FileGenqlSelection;
|
|
3713
|
+
type?: boolean | number;
|
|
3714
|
+
status?: boolean | number;
|
|
3715
|
+
discountType?: boolean | number;
|
|
3716
|
+
discountTypeData?: boolean | number;
|
|
3717
|
+
conditions?: boolean | number;
|
|
3718
|
+
brand?: BrandGenqlSelection;
|
|
3719
|
+
sponsor?: SponsorGenqlSelection;
|
|
3720
|
+
criteria?: AthleteCriteriaGenqlSelection;
|
|
3721
|
+
dateStart?: boolean | number;
|
|
3722
|
+
dateEnd?: boolean | number;
|
|
3723
|
+
dateCreated?: boolean | number;
|
|
3724
|
+
totalCodes?: boolean | number;
|
|
3725
|
+
availableCodes?: boolean | number;
|
|
3726
|
+
availableCountries?: CountryGenqlSelection;
|
|
3727
|
+
disclaimer?: boolean | number;
|
|
3728
|
+
featured?: boolean | number;
|
|
3729
|
+
eligibility?: EligibilityResultGenqlSelection;
|
|
3730
|
+
__typename?: boolean | number;
|
|
3731
|
+
__scalar?: boolean | number;
|
|
3732
|
+
}
|
|
3733
|
+
export interface PaginatedOffersWithEligibilityGenqlSelection {
|
|
3734
|
+
items?: OfferWithEligibilityGenqlSelection;
|
|
3735
|
+
pagination?: EnhancedPaginationInfoTypeGenqlSelection;
|
|
3736
|
+
__typename?: boolean | number;
|
|
3737
|
+
__scalar?: boolean | number;
|
|
3738
|
+
}
|
|
3739
|
+
export interface PaginatedBrandsGenqlSelection {
|
|
3740
|
+
items?: BrandGenqlSelection;
|
|
3741
|
+
pagination?: EnhancedPaginationInfoTypeGenqlSelection;
|
|
3742
|
+
__typename?: boolean | number;
|
|
3743
|
+
__scalar?: boolean | number;
|
|
3744
|
+
}
|
|
3745
|
+
export interface PaginatedSponsorsGenqlSelection {
|
|
3746
|
+
items?: SponsorGenqlSelection;
|
|
3747
|
+
pagination?: EnhancedPaginationInfoTypeGenqlSelection;
|
|
3748
|
+
__typename?: boolean | number;
|
|
3749
|
+
__scalar?: boolean | number;
|
|
3750
|
+
}
|
|
2969
3751
|
export interface EditValueResponseGenqlSelection {
|
|
2970
3752
|
field?: boolean | number;
|
|
2971
3753
|
oldValue?: boolean | number;
|
|
@@ -2981,6 +3763,31 @@ export interface DeleteSingleValueResponseGenqlSelection {
|
|
|
2981
3763
|
__typename?: boolean | number;
|
|
2982
3764
|
__scalar?: boolean | number;
|
|
2983
3765
|
}
|
|
3766
|
+
export interface ScoreRefreshDetailGenqlSelection {
|
|
3767
|
+
status?: boolean | number;
|
|
3768
|
+
message?: boolean | number;
|
|
3769
|
+
__typename?: boolean | number;
|
|
3770
|
+
__scalar?: boolean | number;
|
|
3771
|
+
}
|
|
3772
|
+
export interface ForceScoreRefreshResultGenqlSelection {
|
|
3773
|
+
athleteId?: boolean | number;
|
|
3774
|
+
athleteName?: boolean | number;
|
|
3775
|
+
status?: boolean | number;
|
|
3776
|
+
message?: boolean | number;
|
|
3777
|
+
tpi?: ScoreRefreshDetailGenqlSelection;
|
|
3778
|
+
spi?: ScoreRefreshDetailGenqlSelection;
|
|
3779
|
+
api?: ScoreRefreshDetailGenqlSelection;
|
|
3780
|
+
__typename?: boolean | number;
|
|
3781
|
+
__scalar?: boolean | number;
|
|
3782
|
+
}
|
|
3783
|
+
export interface ForceScoreRefreshResponseGenqlSelection {
|
|
3784
|
+
results?: ForceScoreRefreshResultGenqlSelection;
|
|
3785
|
+
successCount?: boolean | number;
|
|
3786
|
+
failureCount?: boolean | number;
|
|
3787
|
+
skippedCount?: boolean | number;
|
|
3788
|
+
__typename?: boolean | number;
|
|
3789
|
+
__scalar?: boolean | number;
|
|
3790
|
+
}
|
|
2984
3791
|
export interface SortOrderGenqlSelection {
|
|
2985
3792
|
sortField?: boolean | number;
|
|
2986
3793
|
order?: boolean | number;
|
|
@@ -3038,12 +3845,49 @@ export interface CompetitionDeleteVerificationResponseGenqlSelection {
|
|
|
3038
3845
|
__typename?: boolean | number;
|
|
3039
3846
|
__scalar?: boolean | number;
|
|
3040
3847
|
}
|
|
3848
|
+
export interface HistoricalScoresPeriodGenqlSelection {
|
|
3849
|
+
athleteId?: boolean | number;
|
|
3850
|
+
athleteFirstName?: boolean | number;
|
|
3851
|
+
athleteLastName?: boolean | number;
|
|
3852
|
+
screenName?: boolean | number;
|
|
3853
|
+
minTimestampInclusive?: boolean | number;
|
|
3854
|
+
maxTimestampExclusive?: boolean | number;
|
|
3855
|
+
vtxScores?: HistoricalScoreGenqlSelection;
|
|
3856
|
+
tpiScores?: HistoricalScoreGenqlSelection;
|
|
3857
|
+
spiScores?: HistoricalScoreGenqlSelection;
|
|
3858
|
+
apiScores?: HistoricalScoreGenqlSelection;
|
|
3859
|
+
__typename?: boolean | number;
|
|
3860
|
+
__scalar?: boolean | number;
|
|
3861
|
+
}
|
|
3041
3862
|
export interface StripeObjectGenqlSelection {
|
|
3042
3863
|
type?: boolean | number;
|
|
3043
3864
|
json?: boolean | number;
|
|
3044
3865
|
__typename?: boolean | number;
|
|
3045
3866
|
__scalar?: boolean | number;
|
|
3046
3867
|
}
|
|
3868
|
+
export interface ScoreRefreshCapabilityGenqlSelection {
|
|
3869
|
+
athleteId?: boolean | number;
|
|
3870
|
+
athleteName?: boolean | number;
|
|
3871
|
+
canRefreshTpi?: boolean | number;
|
|
3872
|
+
canRefreshSpi?: boolean | number;
|
|
3873
|
+
canRefreshApi?: boolean | number;
|
|
3874
|
+
tpiReason?: boolean | number;
|
|
3875
|
+
spiReason?: boolean | number;
|
|
3876
|
+
apiReason?: boolean | number;
|
|
3877
|
+
__typename?: boolean | number;
|
|
3878
|
+
__scalar?: boolean | number;
|
|
3879
|
+
}
|
|
3880
|
+
export interface CheckScoreRefreshCapabilityResponseGenqlSelection {
|
|
3881
|
+
capabilities?: ScoreRefreshCapabilityGenqlSelection;
|
|
3882
|
+
__typename?: boolean | number;
|
|
3883
|
+
__scalar?: boolean | number;
|
|
3884
|
+
}
|
|
3885
|
+
export interface PaginatedSportsGenqlSelection {
|
|
3886
|
+
items?: SportGenqlSelection;
|
|
3887
|
+
pagination?: EnhancedPaginationInfoTypeGenqlSelection;
|
|
3888
|
+
__typename?: boolean | number;
|
|
3889
|
+
__scalar?: boolean | number;
|
|
3890
|
+
}
|
|
3047
3891
|
export interface UserImagesGenqlSelection {
|
|
3048
3892
|
profilePictureUrl?: boolean | number;
|
|
3049
3893
|
cardPictureUrl?: boolean | number;
|
|
@@ -3059,6 +3903,66 @@ export interface ValidatedTokenGenqlSelection {
|
|
|
3059
3903
|
__typename?: boolean | number;
|
|
3060
3904
|
__scalar?: boolean | number;
|
|
3061
3905
|
}
|
|
3906
|
+
export interface DeleteVtxUserResponseGenqlSelection {
|
|
3907
|
+
success?: boolean | number;
|
|
3908
|
+
deletedUserId?: boolean | number;
|
|
3909
|
+
deletedUserEmail?: boolean | number;
|
|
3910
|
+
deletedUserType?: boolean | number;
|
|
3911
|
+
servicesDeleted?: boolean | number;
|
|
3912
|
+
cognitoDeleted?: boolean | number;
|
|
3913
|
+
dbDeleted?: boolean | number;
|
|
3914
|
+
errorMessage?: boolean | number;
|
|
3915
|
+
__typename?: boolean | number;
|
|
3916
|
+
__scalar?: boolean | number;
|
|
3917
|
+
}
|
|
3918
|
+
export interface PaginatedUsersGenqlSelection {
|
|
3919
|
+
items?: AdminUserViewGenqlSelection;
|
|
3920
|
+
pagination?: EnhancedPaginationInfoTypeGenqlSelection;
|
|
3921
|
+
__typename?: boolean | number;
|
|
3922
|
+
__scalar?: boolean | number;
|
|
3923
|
+
}
|
|
3924
|
+
export interface TransactionDetailsGenqlSelection {
|
|
3925
|
+
stripeCheckoutSessionId?: boolean | number;
|
|
3926
|
+
vtxCheckoutSessionId?: boolean | number;
|
|
3927
|
+
checkoutSessionType?: boolean | number;
|
|
3928
|
+
transactionType?: boolean | number;
|
|
3929
|
+
confirmed?: boolean | number;
|
|
3930
|
+
completed?: boolean | number;
|
|
3931
|
+
currency?: boolean | number;
|
|
3932
|
+
createdDate?: boolean | number;
|
|
3933
|
+
email?: boolean | number;
|
|
3934
|
+
name?: boolean | number;
|
|
3935
|
+
phone?: boolean | number;
|
|
3936
|
+
payment_status?: boolean | number;
|
|
3937
|
+
status?: boolean | number;
|
|
3938
|
+
amount_subtotal?: boolean | number;
|
|
3939
|
+
amount_total?: boolean | number;
|
|
3940
|
+
completedDate?: boolean | number;
|
|
3941
|
+
athleteDonationReceipt?: ReceiptGenqlSelection;
|
|
3942
|
+
__typename?: boolean | number;
|
|
3943
|
+
__scalar?: boolean | number;
|
|
3944
|
+
}
|
|
3945
|
+
export interface PaginatedEventsGenqlSelection {
|
|
3946
|
+
items?: SportsEventGenqlSelection;
|
|
3947
|
+
pagination?: EnhancedPaginationInfoTypeGenqlSelection;
|
|
3948
|
+
__typename?: boolean | number;
|
|
3949
|
+
__scalar?: boolean | number;
|
|
3950
|
+
}
|
|
3951
|
+
export interface CurrencyAmountTypeGenqlSelection {
|
|
3952
|
+
amount?: boolean | number;
|
|
3953
|
+
currency?: boolean | number;
|
|
3954
|
+
__typename?: boolean | number;
|
|
3955
|
+
__scalar?: boolean | number;
|
|
3956
|
+
}
|
|
3957
|
+
export interface StripeBalanceGenqlSelection {
|
|
3958
|
+
availableUSD?: boolean | number;
|
|
3959
|
+
pendingUSD?: boolean | number;
|
|
3960
|
+
currency?: boolean | number;
|
|
3961
|
+
availableBalances?: CurrencyAmountTypeGenqlSelection;
|
|
3962
|
+
pendingBalances?: CurrencyAmountTypeGenqlSelection;
|
|
3963
|
+
__typename?: boolean | number;
|
|
3964
|
+
__scalar?: boolean | number;
|
|
3965
|
+
}
|
|
3062
3966
|
export interface StripeTransferGenqlSelection {
|
|
3063
3967
|
_id?: boolean | number;
|
|
3064
3968
|
stripeId?: boolean | number;
|
|
@@ -3082,6 +3986,255 @@ export interface UserDomainGenqlSelection {
|
|
|
3082
3986
|
__typename?: boolean | number;
|
|
3083
3987
|
__scalar?: boolean | number;
|
|
3084
3988
|
}
|
|
3989
|
+
export interface PaginatedTransactionsGenqlSelection {
|
|
3990
|
+
items?: AdminTransactionViewGenqlSelection;
|
|
3991
|
+
pagination?: EnhancedPaginationInfoTypeGenqlSelection;
|
|
3992
|
+
__typename?: boolean | number;
|
|
3993
|
+
__scalar?: boolean | number;
|
|
3994
|
+
}
|
|
3995
|
+
export interface PaginatedOffersGenqlSelection {
|
|
3996
|
+
items?: OfferGenqlSelection;
|
|
3997
|
+
pagination?: EnhancedPaginationInfoTypeGenqlSelection;
|
|
3998
|
+
__typename?: boolean | number;
|
|
3999
|
+
__scalar?: boolean | number;
|
|
4000
|
+
}
|
|
4001
|
+
export interface UploadResultGenqlSelection {
|
|
4002
|
+
addedCodes?: boolean | number;
|
|
4003
|
+
duplicateCodes?: boolean | number;
|
|
4004
|
+
invalidRows?: boolean | number;
|
|
4005
|
+
__typename?: boolean | number;
|
|
4006
|
+
__scalar?: boolean | number;
|
|
4007
|
+
}
|
|
4008
|
+
export interface OfferAvailabilityGenqlSelection {
|
|
4009
|
+
available?: boolean | number;
|
|
4010
|
+
reason?: boolean | number;
|
|
4011
|
+
__typename?: boolean | number;
|
|
4012
|
+
__scalar?: boolean | number;
|
|
4013
|
+
}
|
|
4014
|
+
export interface LeaderboardEntryGenqlSelection {
|
|
4015
|
+
rank?: boolean | number;
|
|
4016
|
+
rankChange?: boolean | number;
|
|
4017
|
+
athleteId?: boolean | number;
|
|
4018
|
+
screenName?: boolean | number;
|
|
4019
|
+
firstName?: boolean | number;
|
|
4020
|
+
lastName?: boolean | number;
|
|
4021
|
+
profilePicture?: boolean | number;
|
|
4022
|
+
score?: boolean | number;
|
|
4023
|
+
countryCode?: boolean | number;
|
|
4024
|
+
cityName?: boolean | number;
|
|
4025
|
+
countryRank?: boolean | number;
|
|
4026
|
+
sportId?: boolean | number;
|
|
4027
|
+
vtxScore?: boolean | number;
|
|
4028
|
+
trainingScore?: boolean | number;
|
|
4029
|
+
socialScore?: boolean | number;
|
|
4030
|
+
competitionScore?: boolean | number;
|
|
4031
|
+
mainSport?: boolean | number;
|
|
4032
|
+
mainSportLevel?: boolean | number;
|
|
4033
|
+
__typename?: boolean | number;
|
|
4034
|
+
__scalar?: boolean | number;
|
|
4035
|
+
}
|
|
4036
|
+
export interface LeaderboardPaginationGenqlSelection {
|
|
4037
|
+
page?: boolean | number;
|
|
4038
|
+
limit?: boolean | number;
|
|
4039
|
+
total?: boolean | number;
|
|
4040
|
+
totalPages?: boolean | number;
|
|
4041
|
+
__typename?: boolean | number;
|
|
4042
|
+
__scalar?: boolean | number;
|
|
4043
|
+
}
|
|
4044
|
+
export interface LeaderboardFiltersGenqlSelection {
|
|
4045
|
+
scoreType?: boolean | number;
|
|
4046
|
+
sportId?: boolean | number;
|
|
4047
|
+
countryCode?: boolean | number;
|
|
4048
|
+
__typename?: boolean | number;
|
|
4049
|
+
__scalar?: boolean | number;
|
|
4050
|
+
}
|
|
4051
|
+
export interface LeaderboardResponseGenqlSelection {
|
|
4052
|
+
entries?: LeaderboardEntryGenqlSelection;
|
|
4053
|
+
pagination?: LeaderboardPaginationGenqlSelection;
|
|
4054
|
+
filters?: LeaderboardFiltersGenqlSelection;
|
|
4055
|
+
__typename?: boolean | number;
|
|
4056
|
+
__scalar?: boolean | number;
|
|
4057
|
+
}
|
|
4058
|
+
export interface UserRankGenqlSelection {
|
|
4059
|
+
globalRank?: boolean | number;
|
|
4060
|
+
countryRank?: boolean | number;
|
|
4061
|
+
score?: boolean | number;
|
|
4062
|
+
scoreType?: boolean | number;
|
|
4063
|
+
__typename?: boolean | number;
|
|
4064
|
+
__scalar?: boolean | number;
|
|
4065
|
+
}
|
|
4066
|
+
export interface DashboardSummaryGenqlSelection {
|
|
4067
|
+
vtxScore?: boolean | number;
|
|
4068
|
+
socialScore?: boolean | number;
|
|
4069
|
+
trainingScore?: boolean | number;
|
|
4070
|
+
competitionScore?: boolean | number;
|
|
4071
|
+
lastUpdated?: boolean | number;
|
|
4072
|
+
__typename?: boolean | number;
|
|
4073
|
+
__scalar?: boolean | number;
|
|
4074
|
+
}
|
|
4075
|
+
export interface ScoreHistoryEntryGenqlSelection {
|
|
4076
|
+
date?: boolean | number;
|
|
4077
|
+
vtxScore?: boolean | number;
|
|
4078
|
+
socialScore?: boolean | number;
|
|
4079
|
+
trainingScore?: boolean | number;
|
|
4080
|
+
competitionScore?: boolean | number;
|
|
4081
|
+
__typename?: boolean | number;
|
|
4082
|
+
__scalar?: boolean | number;
|
|
4083
|
+
}
|
|
4084
|
+
export interface RankHistoryEntryGenqlSelection {
|
|
4085
|
+
date?: boolean | number;
|
|
4086
|
+
globalRank?: boolean | number;
|
|
4087
|
+
countryRank?: boolean | number;
|
|
4088
|
+
__typename?: boolean | number;
|
|
4089
|
+
__scalar?: boolean | number;
|
|
4090
|
+
}
|
|
4091
|
+
export interface RankContextGenqlSelection {
|
|
4092
|
+
globalRank?: boolean | number;
|
|
4093
|
+
countryRank?: boolean | number;
|
|
4094
|
+
rankChange?: boolean | number;
|
|
4095
|
+
percentile?: boolean | number;
|
|
4096
|
+
gapToNext?: boolean | number;
|
|
4097
|
+
gapFromPrevious?: boolean | number;
|
|
4098
|
+
totalAthletes?: boolean | number;
|
|
4099
|
+
__typename?: boolean | number;
|
|
4100
|
+
__scalar?: boolean | number;
|
|
4101
|
+
}
|
|
4102
|
+
export interface ActivityEntryGenqlSelection {
|
|
4103
|
+
id?: boolean | number;
|
|
4104
|
+
date?: boolean | number;
|
|
4105
|
+
type?: boolean | number;
|
|
4106
|
+
metrics?: boolean | number;
|
|
4107
|
+
pointsEarned?: boolean | number;
|
|
4108
|
+
counted?: boolean | number;
|
|
4109
|
+
notCountedReason?: boolean | number;
|
|
4110
|
+
prMetrics?: boolean | number;
|
|
4111
|
+
__typename?: boolean | number;
|
|
4112
|
+
__scalar?: boolean | number;
|
|
4113
|
+
}
|
|
4114
|
+
export interface ActivitiesResponseGenqlSelection {
|
|
4115
|
+
items?: ActivityEntryGenqlSelection;
|
|
4116
|
+
total?: boolean | number;
|
|
4117
|
+
hasMore?: boolean | number;
|
|
4118
|
+
__typename?: boolean | number;
|
|
4119
|
+
__scalar?: boolean | number;
|
|
4120
|
+
}
|
|
4121
|
+
export interface MetricComparisonGenqlSelection {
|
|
4122
|
+
name?: boolean | number;
|
|
4123
|
+
value?: boolean | number;
|
|
4124
|
+
unit?: boolean | number;
|
|
4125
|
+
athleteAverage?: boolean | number;
|
|
4126
|
+
athleteMax?: boolean | number;
|
|
4127
|
+
comparisonPercent?: boolean | number;
|
|
4128
|
+
__typename?: boolean | number;
|
|
4129
|
+
__scalar?: boolean | number;
|
|
4130
|
+
}
|
|
4131
|
+
export interface ScoreInfoGenqlSelection {
|
|
4132
|
+
earned?: boolean | number;
|
|
4133
|
+
maxPossible?: boolean | number;
|
|
4134
|
+
componentAverage?: boolean | number;
|
|
4135
|
+
__typename?: boolean | number;
|
|
4136
|
+
__scalar?: boolean | number;
|
|
4137
|
+
}
|
|
4138
|
+
export interface ActivityDetailGenqlSelection {
|
|
4139
|
+
id?: boolean | number;
|
|
4140
|
+
date?: boolean | number;
|
|
4141
|
+
type?: boolean | number;
|
|
4142
|
+
category?: boolean | number;
|
|
4143
|
+
metrics?: MetricComparisonGenqlSelection;
|
|
4144
|
+
scoreInfo?: ScoreInfoGenqlSelection;
|
|
4145
|
+
prMetrics?: boolean | number;
|
|
4146
|
+
caption?: boolean | number;
|
|
4147
|
+
__typename?: boolean | number;
|
|
4148
|
+
__scalar?: boolean | number;
|
|
4149
|
+
}
|
|
4150
|
+
export interface TopMetricGenqlSelection {
|
|
4151
|
+
name?: boolean | number;
|
|
4152
|
+
status?: boolean | number;
|
|
4153
|
+
__typename?: boolean | number;
|
|
4154
|
+
__scalar?: boolean | number;
|
|
4155
|
+
}
|
|
4156
|
+
export interface ComponentSummaryGenqlSelection {
|
|
4157
|
+
name?: boolean | number;
|
|
4158
|
+
score?: boolean | number;
|
|
4159
|
+
maxScore?: boolean | number;
|
|
4160
|
+
trend?: boolean | number;
|
|
4161
|
+
trendPeriod?: boolean | number;
|
|
4162
|
+
activityCount?: boolean | number;
|
|
4163
|
+
avgScorePerActivity?: boolean | number;
|
|
4164
|
+
topMetrics?: TopMetricGenqlSelection;
|
|
4165
|
+
newMaxActivityIds?: boolean | number;
|
|
4166
|
+
__typename?: boolean | number;
|
|
4167
|
+
__scalar?: boolean | number;
|
|
4168
|
+
}
|
|
4169
|
+
export interface ActivityDateEntryGenqlSelection {
|
|
4170
|
+
date?: boolean | number;
|
|
4171
|
+
category?: boolean | number;
|
|
4172
|
+
count?: boolean | number;
|
|
4173
|
+
types?: boolean | number;
|
|
4174
|
+
__typename?: boolean | number;
|
|
4175
|
+
__scalar?: boolean | number;
|
|
4176
|
+
}
|
|
4177
|
+
export interface ActivityDatesResponseGenqlSelection {
|
|
4178
|
+
dates?: ActivityDateEntryGenqlSelection;
|
|
4179
|
+
__typename?: boolean | number;
|
|
4180
|
+
__scalar?: boolean | number;
|
|
4181
|
+
}
|
|
4182
|
+
export interface SocialAggregateTypeGenqlSelection {
|
|
4183
|
+
_id?: boolean | number;
|
|
4184
|
+
athleteId?: boolean | number;
|
|
4185
|
+
platform?: boolean | number;
|
|
4186
|
+
contentType?: boolean | number;
|
|
4187
|
+
periodType?: boolean | number;
|
|
4188
|
+
periodLabel?: boolean | number;
|
|
4189
|
+
periodStart?: boolean | number;
|
|
4190
|
+
periodEnd?: boolean | number;
|
|
4191
|
+
totalLikes?: boolean | number;
|
|
4192
|
+
totalComments?: boolean | number;
|
|
4193
|
+
totalShares?: boolean | number;
|
|
4194
|
+
totalSaves?: boolean | number;
|
|
4195
|
+
totalReach?: boolean | number;
|
|
4196
|
+
totalViews?: boolean | number;
|
|
4197
|
+
totalImpressions?: boolean | number;
|
|
4198
|
+
postCount?: boolean | number;
|
|
4199
|
+
followerCount?: boolean | number;
|
|
4200
|
+
avgEngagementRate?: boolean | number;
|
|
4201
|
+
avgPostEngagement?: boolean | number;
|
|
4202
|
+
__typename?: boolean | number;
|
|
4203
|
+
__scalar?: boolean | number;
|
|
4204
|
+
}
|
|
4205
|
+
export interface PostMetricTypeGenqlSelection {
|
|
4206
|
+
id?: boolean | number;
|
|
4207
|
+
postId?: boolean | number;
|
|
4208
|
+
permalink?: boolean | number;
|
|
4209
|
+
thumbnailUrl?: boolean | number;
|
|
4210
|
+
contentType?: boolean | number;
|
|
4211
|
+
caption?: boolean | number;
|
|
4212
|
+
postedAt?: boolean | number;
|
|
4213
|
+
likes?: boolean | number;
|
|
4214
|
+
comments?: boolean | number;
|
|
4215
|
+
shares?: boolean | number;
|
|
4216
|
+
saves?: boolean | number;
|
|
4217
|
+
reach?: boolean | number;
|
|
4218
|
+
vsAvgPercent?: boolean | number;
|
|
4219
|
+
__typename?: boolean | number;
|
|
4220
|
+
__scalar?: boolean | number;
|
|
4221
|
+
}
|
|
4222
|
+
export interface AveragesTypeGenqlSelection {
|
|
4223
|
+
likes?: boolean | number;
|
|
4224
|
+
comments?: boolean | number;
|
|
4225
|
+
reach?: boolean | number;
|
|
4226
|
+
engagementRate?: boolean | number;
|
|
4227
|
+
__typename?: boolean | number;
|
|
4228
|
+
__scalar?: boolean | number;
|
|
4229
|
+
}
|
|
4230
|
+
export interface PostComparisonResultTypeGenqlSelection {
|
|
4231
|
+
posts?: PostMetricTypeGenqlSelection;
|
|
4232
|
+
averages?: AveragesTypeGenqlSelection;
|
|
4233
|
+
total?: boolean | number;
|
|
4234
|
+
hasMore?: boolean | number;
|
|
4235
|
+
__typename?: boolean | number;
|
|
4236
|
+
__scalar?: boolean | number;
|
|
4237
|
+
}
|
|
3085
4238
|
export interface CreateDatabaseFileDto {
|
|
3086
4239
|
identifier: Scalars['String'];
|
|
3087
4240
|
version?: Scalars['String'];
|
|
@@ -3126,10 +4279,63 @@ export interface CreateVerificationCodeDto {
|
|
|
3126
4279
|
expiresUnit?: (Scalars['String'] | null);
|
|
3127
4280
|
data?: (Scalars['String'] | null);
|
|
3128
4281
|
}
|
|
3129
|
-
export interface VerifyCodeDto {
|
|
3130
|
-
codeId: Scalars['String'];
|
|
3131
|
-
enteredCodeValue: Scalars['String'];
|
|
3132
|
-
type?: (Scalars['String'] | null);
|
|
4282
|
+
export interface VerifyCodeDto {
|
|
4283
|
+
codeId: Scalars['String'];
|
|
4284
|
+
enteredCodeValue: Scalars['String'];
|
|
4285
|
+
type?: (Scalars['String'] | null);
|
|
4286
|
+
}
|
|
4287
|
+
export interface DonationCheckoutDto {
|
|
4288
|
+
fundingCampaignId: Scalars['String'];
|
|
4289
|
+
donationAmount: Scalars['Float'];
|
|
4290
|
+
mode?: Scalars['String'];
|
|
4291
|
+
fromName?: (Scalars['String'] | null);
|
|
4292
|
+
fromEmail?: (Scalars['String'] | null);
|
|
4293
|
+
fromPhone?: (Scalars['String'] | null);
|
|
4294
|
+
message?: (Scalars['String'] | null);
|
|
4295
|
+
clientType?: (Scalars['String'] | null);
|
|
4296
|
+
}
|
|
4297
|
+
export interface CreateBrandDto {
|
|
4298
|
+
name: Scalars['String'];
|
|
4299
|
+
description?: (Scalars['String'] | null);
|
|
4300
|
+
slogan?: (Scalars['String'] | null);
|
|
4301
|
+
website?: (Scalars['String'] | null);
|
|
4302
|
+
affiliateLink?: (Scalars['String'] | null);
|
|
4303
|
+
logo?: (AWSS3UploadedFileDto | null);
|
|
4304
|
+
banner?: (AWSS3UploadedFileDto | null);
|
|
4305
|
+
translations?: (BrandTranslationDto[] | null);
|
|
4306
|
+
sponsorId?: (Scalars['String'] | null);
|
|
4307
|
+
approved?: (Scalars['Boolean'] | null);
|
|
4308
|
+
published?: (Scalars['Boolean'] | null);
|
|
4309
|
+
}
|
|
4310
|
+
export interface AWSS3UploadedFileDto {
|
|
4311
|
+
key: Scalars['String'];
|
|
4312
|
+
useType: Scalars['String'];
|
|
4313
|
+
contentType: Scalars['String'];
|
|
4314
|
+
originalFileName?: (Scalars['String'] | null);
|
|
4315
|
+
fileSize?: (Scalars['Float'] | null);
|
|
4316
|
+
}
|
|
4317
|
+
export interface BrandTranslationDto {
|
|
4318
|
+
brandId: Scalars['String'];
|
|
4319
|
+
language: Scalars['String'];
|
|
4320
|
+
name?: (Scalars['String'] | null);
|
|
4321
|
+
description?: (Scalars['String'] | null);
|
|
4322
|
+
slogan?: (Scalars['String'] | null);
|
|
4323
|
+
logo?: (AWSS3UploadedFileDto | null);
|
|
4324
|
+
banner?: (AWSS3UploadedFileDto | null);
|
|
4325
|
+
}
|
|
4326
|
+
export interface BrandQueryDto {
|
|
4327
|
+
page?: (Scalars['Int'] | null);
|
|
4328
|
+
limit?: (Scalars['Int'] | null);
|
|
4329
|
+
search?: (Scalars['String'] | null);
|
|
4330
|
+
approved?: (Scalars['String'] | null);
|
|
4331
|
+
published?: (Scalars['String'] | null);
|
|
4332
|
+
sortField?: (Scalars['String'] | null);
|
|
4333
|
+
sortOrder?: (Scalars['String'] | null);
|
|
4334
|
+
}
|
|
4335
|
+
export interface CreateSponsorDto {
|
|
4336
|
+
name: Scalars['String'];
|
|
4337
|
+
description?: (Scalars['String'] | null);
|
|
4338
|
+
email: Scalars['String'];
|
|
3133
4339
|
}
|
|
3134
4340
|
export interface AthleteInvitationDto {
|
|
3135
4341
|
email: Scalars['String'];
|
|
@@ -3141,6 +4347,15 @@ export interface InviteAthletesDto {
|
|
|
3141
4347
|
language?: (Scalars['String'] | null);
|
|
3142
4348
|
invitations: AthleteInvitationDto[];
|
|
3143
4349
|
}
|
|
4350
|
+
export interface SponsorQueryDto {
|
|
4351
|
+
page?: (Scalars['Int'] | null);
|
|
4352
|
+
limit?: (Scalars['Int'] | null);
|
|
4353
|
+
search?: (Scalars['String'] | null);
|
|
4354
|
+
approved?: (Scalars['String'] | null);
|
|
4355
|
+
published?: (Scalars['String'] | null);
|
|
4356
|
+
sortField?: (Scalars['String'] | null);
|
|
4357
|
+
sortOrder?: (Scalars['String'] | null);
|
|
4358
|
+
}
|
|
3144
4359
|
export interface CompetitionResultDto {
|
|
3145
4360
|
resultType: Scalars['String'];
|
|
3146
4361
|
position?: (Scalars['Float'] | null);
|
|
@@ -3189,14 +4404,14 @@ export interface CreateAthleteCompetitionForDto {
|
|
|
3189
4404
|
cityId?: (Scalars['String'] | null);
|
|
3190
4405
|
loginEmail: Scalars['String'];
|
|
3191
4406
|
}
|
|
3192
|
-
export interface CursorPositionDto {
|
|
3193
|
-
cursorId: Scalars['String'];
|
|
3194
|
-
cursorFieldValue: Scalars['String'];
|
|
3195
|
-
}
|
|
3196
4407
|
export interface SortCriteriaDto {
|
|
3197
4408
|
sortField: Scalars['String'];
|
|
3198
4409
|
order?: Scalars['String'];
|
|
3199
4410
|
}
|
|
4411
|
+
export interface CursorPositionDto {
|
|
4412
|
+
cursorId: Scalars['String'];
|
|
4413
|
+
cursorFieldValue: Scalars['String'];
|
|
4414
|
+
}
|
|
3200
4415
|
export interface CursorPaginationDto {
|
|
3201
4416
|
sortCriteria?: (SortCriteriaDto | null);
|
|
3202
4417
|
limit?: (Scalars['Float'] | null);
|
|
@@ -3254,13 +4469,6 @@ export interface EditPictureDto {
|
|
|
3254
4469
|
field: Scalars['String'];
|
|
3255
4470
|
newPicture?: (AWSS3UploadedFileDto | null);
|
|
3256
4471
|
}
|
|
3257
|
-
export interface AWSS3UploadedFileDto {
|
|
3258
|
-
key: Scalars['String'];
|
|
3259
|
-
useType: Scalars['String'];
|
|
3260
|
-
contentType: Scalars['String'];
|
|
3261
|
-
originalFileName?: (Scalars['String'] | null);
|
|
3262
|
-
fileSize?: (Scalars['Float'] | null);
|
|
3263
|
-
}
|
|
3264
4472
|
export interface UploadAlbumsPicturesDto {
|
|
3265
4473
|
label: Scalars['String'];
|
|
3266
4474
|
description?: (Scalars['String'] | null);
|
|
@@ -3290,6 +4498,21 @@ export interface GetHistoricalScoresDto {
|
|
|
3290
4498
|
export interface GetAthleteCampaignsDto {
|
|
3291
4499
|
athleteId: Scalars['String'];
|
|
3292
4500
|
}
|
|
4501
|
+
export interface ForceScoreRefreshDto {
|
|
4502
|
+
athleteIds: Scalars['String'][];
|
|
4503
|
+
}
|
|
4504
|
+
export interface CheckScoreRefreshCapabilityDto {
|
|
4505
|
+
athleteIds: Scalars['String'][];
|
|
4506
|
+
}
|
|
4507
|
+
export interface SportQueryDto {
|
|
4508
|
+
page?: (Scalars['Int'] | null);
|
|
4509
|
+
limit?: (Scalars['Int'] | null);
|
|
4510
|
+
search?: (Scalars['String'] | null);
|
|
4511
|
+
resultType?: (Scalars['String'] | null);
|
|
4512
|
+
verified?: (Scalars['String'] | null);
|
|
4513
|
+
sortField?: (Scalars['String'] | null);
|
|
4514
|
+
sortOrder?: (Scalars['String'] | null);
|
|
4515
|
+
}
|
|
3293
4516
|
export interface QualificationDto {
|
|
3294
4517
|
type: Scalars['String'];
|
|
3295
4518
|
}
|
|
@@ -3343,13 +4566,59 @@ export interface RegisterUserDto {
|
|
|
3343
4566
|
password: Scalars['String'];
|
|
3344
4567
|
inviteCode?: (Scalars['String'] | null);
|
|
3345
4568
|
}
|
|
4569
|
+
export interface DeleteAthleteDto {
|
|
4570
|
+
userIdentifier: Scalars['String'];
|
|
4571
|
+
}
|
|
3346
4572
|
export interface resetPasswordDto {
|
|
3347
4573
|
code: VerifyCodeDto;
|
|
3348
4574
|
newPassword?: (Scalars['String'] | null);
|
|
3349
4575
|
}
|
|
4576
|
+
export interface UpdateUserSuspendedStatusDto {
|
|
4577
|
+
userId: Scalars['String'];
|
|
4578
|
+
suspended: Scalars['Boolean'];
|
|
4579
|
+
}
|
|
4580
|
+
export interface UserQueryDto {
|
|
4581
|
+
page?: (Scalars['Int'] | null);
|
|
4582
|
+
limit?: (Scalars['Int'] | null);
|
|
4583
|
+
search?: (Scalars['String'] | null);
|
|
4584
|
+
userType?: (Scalars['String'] | null);
|
|
4585
|
+
suspended?: (Scalars['String'] | null);
|
|
4586
|
+
sport?: (Scalars['String'] | null);
|
|
4587
|
+
sportLevel?: (Scalars['String'] | null);
|
|
4588
|
+
gender?: (Scalars['String'] | null);
|
|
4589
|
+
location?: (Scalars['String'] | null);
|
|
4590
|
+
nationality?: (Scalars['String'] | null);
|
|
4591
|
+
ageMin?: (Scalars['String'] | null);
|
|
4592
|
+
ageMax?: (Scalars['String'] | null);
|
|
4593
|
+
sortField?: (Scalars['String'] | null);
|
|
4594
|
+
sortOrder?: (Scalars['String'] | null);
|
|
4595
|
+
}
|
|
4596
|
+
export interface DeleteVtxUserDto {
|
|
4597
|
+
userIdentifier: Scalars['String'];
|
|
4598
|
+
}
|
|
3350
4599
|
export interface GetReceiptDto {
|
|
3351
4600
|
_id: Scalars['String'];
|
|
3352
4601
|
}
|
|
4602
|
+
export interface StripeQueryDto {
|
|
4603
|
+
operation: Scalars['String'];
|
|
4604
|
+
id: Scalars['String'];
|
|
4605
|
+
params?: (Scalars['String'] | null);
|
|
4606
|
+
}
|
|
4607
|
+
export interface GetTransactionDetailsDto {
|
|
4608
|
+
vtxSessionId?: (Scalars['String'] | null);
|
|
4609
|
+
stripeSessionId?: (Scalars['String'] | null);
|
|
4610
|
+
}
|
|
4611
|
+
export interface UpdateSportEventDto {
|
|
4612
|
+
_id: Scalars['String'];
|
|
4613
|
+
name?: (Scalars['String'] | null);
|
|
4614
|
+
cityId?: (Scalars['String'] | null);
|
|
4615
|
+
sportId?: (Scalars['String'] | null);
|
|
4616
|
+
startDate?: (Scalars['DateTime'] | null);
|
|
4617
|
+
endDate?: (Scalars['DateTime'] | null);
|
|
4618
|
+
website?: (Scalars['String'] | null);
|
|
4619
|
+
banner?: (AWSS3UploadedFileDto | null);
|
|
4620
|
+
eventLevel?: (Scalars['String'] | null);
|
|
4621
|
+
}
|
|
3353
4622
|
export interface MergeSportsEventsDto {
|
|
3354
4623
|
mergeTo: Scalars['String'];
|
|
3355
4624
|
mergeName?: (Scalars['String'] | null);
|
|
@@ -3358,6 +4627,18 @@ export interface MergeSportsEventsDto {
|
|
|
3358
4627
|
mergeWebsite?: (Scalars['String'] | null);
|
|
3359
4628
|
mergeIds: Scalars['String'][];
|
|
3360
4629
|
}
|
|
4630
|
+
export interface EventQueryDto {
|
|
4631
|
+
page?: (Scalars['Int'] | null);
|
|
4632
|
+
limit?: (Scalars['Int'] | null);
|
|
4633
|
+
search?: (Scalars['String'] | null);
|
|
4634
|
+
verified?: (Scalars['String'] | null);
|
|
4635
|
+
sport?: (Scalars['String'] | null);
|
|
4636
|
+
location?: (Scalars['String'] | null);
|
|
4637
|
+
dateFrom?: (Scalars['String'] | null);
|
|
4638
|
+
dateTo?: (Scalars['String'] | null);
|
|
4639
|
+
sortField?: (Scalars['String'] | null);
|
|
4640
|
+
sortOrder?: (Scalars['String'] | null);
|
|
4641
|
+
}
|
|
3361
4642
|
export interface BudgetItemDto {
|
|
3362
4643
|
quantity: Scalars['Float'];
|
|
3363
4644
|
concept: Scalars['String'];
|
|
@@ -3468,20 +4749,6 @@ export interface CreateAthleteMembershipDto {
|
|
|
3468
4749
|
issueDate?: (Scalars['DateTime'] | null);
|
|
3469
4750
|
expirationDate?: (Scalars['DateTime'] | null);
|
|
3470
4751
|
}
|
|
3471
|
-
export interface DonationCheckoutDto {
|
|
3472
|
-
fundingCampaignId: Scalars['String'];
|
|
3473
|
-
donationAmount: Scalars['Float'];
|
|
3474
|
-
mode?: Scalars['String'];
|
|
3475
|
-
fromName?: (Scalars['String'] | null);
|
|
3476
|
-
fromEmail?: (Scalars['String'] | null);
|
|
3477
|
-
fromPhone?: (Scalars['String'] | null);
|
|
3478
|
-
message?: (Scalars['String'] | null);
|
|
3479
|
-
}
|
|
3480
|
-
export interface StripeQueryDto {
|
|
3481
|
-
operation: Scalars['String'];
|
|
3482
|
-
id: Scalars['String'];
|
|
3483
|
-
params?: (Scalars['String'] | null);
|
|
3484
|
-
}
|
|
3485
4752
|
export interface CreateAthleteIntegrationDto {
|
|
3486
4753
|
athleteId: Scalars['String'];
|
|
3487
4754
|
accessToken: Scalars['String'];
|
|
@@ -3492,9 +4759,6 @@ export interface CreateAthleteIntegrationDto {
|
|
|
3492
4759
|
export interface GetFundingCheckoutSessionDataDto {
|
|
3493
4760
|
_id: Scalars['String'];
|
|
3494
4761
|
}
|
|
3495
|
-
export interface DeleteAthleteDto {
|
|
3496
|
-
userIdentifier: Scalars['String'];
|
|
3497
|
-
}
|
|
3498
4762
|
export interface SocialState {
|
|
3499
4763
|
systemId: Scalars['String'];
|
|
3500
4764
|
loginEmail: Scalars['String'];
|
|
@@ -3507,6 +4771,145 @@ export interface RegisterMemberDto {
|
|
|
3507
4771
|
screenName?: (Scalars['String'] | null);
|
|
3508
4772
|
profilePicture?: (AWSS3UploadedFileDto | null);
|
|
3509
4773
|
}
|
|
4774
|
+
export interface TransactionQueryDto {
|
|
4775
|
+
page?: (Scalars['Int'] | null);
|
|
4776
|
+
limit?: (Scalars['Int'] | null);
|
|
4777
|
+
search?: (Scalars['String'] | null);
|
|
4778
|
+
type?: (Scalars['String'] | null);
|
|
4779
|
+
completed?: (Scalars['String'] | null);
|
|
4780
|
+
athleteStripeAccount?: (Scalars['String'] | null);
|
|
4781
|
+
athleteId?: (Scalars['String'] | null);
|
|
4782
|
+
dateFrom?: (Scalars['String'] | null);
|
|
4783
|
+
dateTo?: (Scalars['String'] | null);
|
|
4784
|
+
sortField?: (Scalars['String'] | null);
|
|
4785
|
+
sortOrder?: (Scalars['String'] | null);
|
|
4786
|
+
}
|
|
4787
|
+
export interface OffsetPaginationDto {
|
|
4788
|
+
pageNumber?: Scalars['Float'];
|
|
4789
|
+
pageSize?: Scalars['Float'];
|
|
4790
|
+
sortCriteria?: (SortCriteriaDto | null);
|
|
4791
|
+
}
|
|
4792
|
+
export interface CreateOfferDto {
|
|
4793
|
+
name?: (Scalars['String'] | null);
|
|
4794
|
+
label: Scalars['String'];
|
|
4795
|
+
decription?: (Scalars['String'] | null);
|
|
4796
|
+
offerImage?: (AWSS3UploadedFileDto | null);
|
|
4797
|
+
type: Scalars['String'];
|
|
4798
|
+
status?: Scalars['String'];
|
|
4799
|
+
discountType?: Scalars['String'];
|
|
4800
|
+
discountTypeData?: (Scalars['String'] | null);
|
|
4801
|
+
conditions?: (Scalars['String'][] | null);
|
|
4802
|
+
brandId: Scalars['String'];
|
|
4803
|
+
sponsorId: Scalars['String'];
|
|
4804
|
+
criteria?: (AthleteCriteriaDto | null);
|
|
4805
|
+
dateStart?: (Scalars['DateTime'] | null);
|
|
4806
|
+
dateEnd?: (Scalars['DateTime'] | null);
|
|
4807
|
+
totalCodes?: (Scalars['Int'] | null);
|
|
4808
|
+
disclaimer?: (Scalars['String'] | null);
|
|
4809
|
+
availableCountryIds?: (Scalars['String'][] | null);
|
|
4810
|
+
genericCode?: (Scalars['String'] | null);
|
|
4811
|
+
featured?: (Scalars['Boolean'] | null);
|
|
4812
|
+
}
|
|
4813
|
+
export interface AthleteCriteriaDto {
|
|
4814
|
+
_id: Scalars['String'];
|
|
4815
|
+
label?: (Scalars['String'] | null);
|
|
4816
|
+
qualificationsBag?: (QualificationsBagDto | null);
|
|
4817
|
+
}
|
|
4818
|
+
export interface QualificationsBagDto {
|
|
4819
|
+
ageQualifications?: (AgeQualificationDto[] | null);
|
|
4820
|
+
genderQualifications?: (GenderQualificationDto[] | null);
|
|
4821
|
+
scoreQualifications?: (ScoreQualificationDto[] | null);
|
|
4822
|
+
locationQualifications?: (LocationQualificationDto[] | null);
|
|
4823
|
+
nationalityQualifications?: (NationalityQualificationDto[] | null);
|
|
4824
|
+
distanceQualifications?: (DistanceQualificationDto[] | null);
|
|
4825
|
+
sportsQualifications?: (SportsQualificationDto[] | null);
|
|
4826
|
+
levelQualifications?: (SportsLevelQualificationDto[] | null);
|
|
4827
|
+
}
|
|
4828
|
+
export interface OfferQueryDto {
|
|
4829
|
+
page?: (Scalars['Int'] | null);
|
|
4830
|
+
limit?: (Scalars['Int'] | null);
|
|
4831
|
+
search?: (Scalars['String'] | null);
|
|
4832
|
+
active?: (Scalars['String'] | null);
|
|
4833
|
+
offerType?: (Scalars['String'] | null);
|
|
4834
|
+
featured?: (Scalars['String'] | null);
|
|
4835
|
+
brandId?: (Scalars['String'] | null);
|
|
4836
|
+
sortField?: (Scalars['String'] | null);
|
|
4837
|
+
sortOrder?: (Scalars['String'] | null);
|
|
4838
|
+
filterEligibleOnly?: (Scalars['Boolean'] | null);
|
|
4839
|
+
athleteId?: (Scalars['String'] | null);
|
|
4840
|
+
}
|
|
4841
|
+
export interface OfferClaimQueryDto {
|
|
4842
|
+
status?: (OfferClaimStatus | null);
|
|
4843
|
+
}
|
|
4844
|
+
export interface LeaderboardQueryDto {
|
|
4845
|
+
scoreType?: (Scalars['String'] | null);
|
|
4846
|
+
sportId?: (Scalars['String'] | null);
|
|
4847
|
+
countryCode?: (Scalars['String'] | null);
|
|
4848
|
+
page?: (Scalars['Int'] | null);
|
|
4849
|
+
limit?: (Scalars['Int'] | null);
|
|
4850
|
+
}
|
|
4851
|
+
export interface UserRankQueryDto {
|
|
4852
|
+
athleteId: Scalars['String'];
|
|
4853
|
+
scoreType?: (Scalars['String'] | null);
|
|
4854
|
+
sportId?: (Scalars['String'] | null);
|
|
4855
|
+
countryCode?: (Scalars['String'] | null);
|
|
4856
|
+
}
|
|
4857
|
+
export interface ScoreHistoryQueryDto {
|
|
4858
|
+
athleteId: Scalars['String'];
|
|
4859
|
+
timeRange: TimeRange;
|
|
4860
|
+
}
|
|
4861
|
+
export interface RankHistoryQueryDto {
|
|
4862
|
+
athleteId: Scalars['String'];
|
|
4863
|
+
timeRange: TimeRange;
|
|
4864
|
+
sportId?: (Scalars['String'] | null);
|
|
4865
|
+
countryCode?: (Scalars['String'] | null);
|
|
4866
|
+
}
|
|
4867
|
+
export interface RankContextQueryDto {
|
|
4868
|
+
athleteId: Scalars['String'];
|
|
4869
|
+
sportId?: (Scalars['String'] | null);
|
|
4870
|
+
countryCode?: (Scalars['String'] | null);
|
|
4871
|
+
}
|
|
4872
|
+
export interface MetricRangeInput {
|
|
4873
|
+
metricName: Scalars['String'];
|
|
4874
|
+
min?: (Scalars['Float'] | null);
|
|
4875
|
+
max?: (Scalars['Float'] | null);
|
|
4876
|
+
}
|
|
4877
|
+
export interface ActivityFiltersInput {
|
|
4878
|
+
dateFilter?: (Scalars['String'] | null);
|
|
4879
|
+
activityTypes?: (Scalars['String'][] | null);
|
|
4880
|
+
metricRanges?: (MetricRangeInput[] | null);
|
|
4881
|
+
}
|
|
4882
|
+
export interface ActivitiesQueryDto {
|
|
4883
|
+
athleteId: Scalars['String'];
|
|
4884
|
+
category: ActivityCategory;
|
|
4885
|
+
timeRange: TimeRange;
|
|
4886
|
+
page?: (Scalars['Int'] | null);
|
|
4887
|
+
limit?: (Scalars['Int'] | null);
|
|
4888
|
+
filters?: (ActivityFiltersInput | null);
|
|
4889
|
+
}
|
|
4890
|
+
export interface ActivityDetailQueryDto {
|
|
4891
|
+
athleteId: Scalars['String'];
|
|
4892
|
+
activityId: Scalars['String'];
|
|
4893
|
+
category: Scalars['String'];
|
|
4894
|
+
}
|
|
4895
|
+
export interface ComponentSummaryQueryDto {
|
|
4896
|
+
athleteId: Scalars['String'];
|
|
4897
|
+
component: Scalars['String'];
|
|
4898
|
+
}
|
|
4899
|
+
export interface ActivityDatesQueryDto {
|
|
4900
|
+
athleteId: Scalars['String'];
|
|
4901
|
+
}
|
|
4902
|
+
export interface DateRangeInput {
|
|
4903
|
+
start: Scalars['DateTime'];
|
|
4904
|
+
end: Scalars['DateTime'];
|
|
4905
|
+
}
|
|
4906
|
+
export interface PostComparisonInput {
|
|
4907
|
+
comparisonWindowDays?: (Scalars['Int'] | null);
|
|
4908
|
+
sortBy?: (PostSortOption | null);
|
|
4909
|
+
contentType?: (ContentType | null);
|
|
4910
|
+
limit?: (Scalars['Int'] | null);
|
|
4911
|
+
offset?: (Scalars['Int'] | null);
|
|
4912
|
+
}
|
|
3510
4913
|
export interface QueryGenqlSelection {
|
|
3511
4914
|
findTenantById?: (TenantGenqlSelection & {
|
|
3512
4915
|
__args: {
|
|
@@ -3553,6 +4956,11 @@ export interface QueryGenqlSelection {
|
|
|
3553
4956
|
};
|
|
3554
4957
|
});
|
|
3555
4958
|
brands?: BrandGenqlSelection;
|
|
4959
|
+
getBrandsPaginated?: (PaginatedBrandsGenqlSelection & {
|
|
4960
|
+
__args?: {
|
|
4961
|
+
query?: (BrandQueryDto | null);
|
|
4962
|
+
};
|
|
4963
|
+
});
|
|
3556
4964
|
getBrandByName?: (BrandGenqlSelection & {
|
|
3557
4965
|
__args: {
|
|
3558
4966
|
name: Scalars['String'];
|
|
@@ -3571,6 +4979,11 @@ export interface QueryGenqlSelection {
|
|
|
3571
4979
|
};
|
|
3572
4980
|
});
|
|
3573
4981
|
sponsors?: SponsorGenqlSelection;
|
|
4982
|
+
getSponsorsPaginated?: (PaginatedSponsorsGenqlSelection & {
|
|
4983
|
+
__args?: {
|
|
4984
|
+
query?: (SponsorQueryDto | null);
|
|
4985
|
+
};
|
|
4986
|
+
});
|
|
3574
4987
|
findSponsorAthleteInvitation?: (SponsorAthleteInvitationGenqlSelection & {
|
|
3575
4988
|
__args: {
|
|
3576
4989
|
input: FindSponsorAthleteInvitationDto;
|
|
@@ -3649,12 +5062,27 @@ export interface QueryGenqlSelection {
|
|
|
3649
5062
|
input: existValueDto;
|
|
3650
5063
|
};
|
|
3651
5064
|
});
|
|
3652
|
-
|
|
5065
|
+
checkScoreRefreshCapabilities?: (CheckScoreRefreshCapabilityResponseGenqlSelection & {
|
|
5066
|
+
__args: {
|
|
5067
|
+
input: CheckScoreRefreshCapabilityDto;
|
|
5068
|
+
};
|
|
5069
|
+
});
|
|
5070
|
+
getAthleteHistoricalScoresPeriod?: (HistoricalScoresPeriodGenqlSelection & {
|
|
5071
|
+
__args: {
|
|
5072
|
+
input: GetHistoricalScoresDto;
|
|
5073
|
+
};
|
|
5074
|
+
});
|
|
5075
|
+
getAthleteHistoricalScores?: (HistoricalScoreGenqlSelection & {
|
|
3653
5076
|
__args: {
|
|
3654
5077
|
input: GetHistoricalScoresDto;
|
|
3655
5078
|
};
|
|
3656
5079
|
});
|
|
3657
|
-
|
|
5080
|
+
getMyHistoricalScoresPeriod?: (HistoricalScoresPeriodGenqlSelection & {
|
|
5081
|
+
__args: {
|
|
5082
|
+
input: GetMyHistoricalScoresDto;
|
|
5083
|
+
};
|
|
5084
|
+
});
|
|
5085
|
+
getMyHistoricalScores?: (HistoricalScoreGenqlSelection & {
|
|
3658
5086
|
__args: {
|
|
3659
5087
|
input: GetMyHistoricalScoresDto;
|
|
3660
5088
|
};
|
|
@@ -3665,6 +5093,11 @@ export interface QueryGenqlSelection {
|
|
|
3665
5093
|
};
|
|
3666
5094
|
});
|
|
3667
5095
|
getSports?: SportGenqlSelection;
|
|
5096
|
+
getSportsPaginated?: (PaginatedSportsGenqlSelection & {
|
|
5097
|
+
__args?: {
|
|
5098
|
+
query?: (SportQueryDto | null);
|
|
5099
|
+
};
|
|
5100
|
+
});
|
|
3668
5101
|
findSportById?: (SportGenqlSelection & {
|
|
3669
5102
|
__args: {
|
|
3670
5103
|
sportId: Scalars['String'];
|
|
@@ -3690,77 +5123,219 @@ export interface QueryGenqlSelection {
|
|
|
3690
5123
|
text: Scalars['String'];
|
|
3691
5124
|
};
|
|
3692
5125
|
});
|
|
3693
|
-
findCityById?: (CityGenqlSelection & {
|
|
3694
|
-
__args: {
|
|
3695
|
-
cityId: Scalars['String'];
|
|
5126
|
+
findCityById?: (CityGenqlSelection & {
|
|
5127
|
+
__args: {
|
|
5128
|
+
cityId: Scalars['String'];
|
|
5129
|
+
};
|
|
5130
|
+
});
|
|
5131
|
+
findVtxUser?: (UserGenqlSelection & {
|
|
5132
|
+
__args: {
|
|
5133
|
+
input: FindVtxUserDto;
|
|
5134
|
+
};
|
|
5135
|
+
});
|
|
5136
|
+
validateUserCredentialsVtx?: (UserGenqlSelection & {
|
|
5137
|
+
__args: {
|
|
5138
|
+
username: Scalars['String'];
|
|
5139
|
+
password: Scalars['String'];
|
|
5140
|
+
};
|
|
5141
|
+
});
|
|
5142
|
+
getUserImagesFromEmail?: (UserImagesGenqlSelection & {
|
|
5143
|
+
__args: {
|
|
5144
|
+
loginEmail: Scalars['String'];
|
|
5145
|
+
};
|
|
5146
|
+
});
|
|
5147
|
+
getResetVerificationCode?: (VerificationCodeGenqlSelection & {
|
|
5148
|
+
__args: {
|
|
5149
|
+
input: Scalars['String'];
|
|
5150
|
+
};
|
|
5151
|
+
});
|
|
5152
|
+
verifyCode?: (CodeVerificationResponseGenqlSelection & {
|
|
5153
|
+
__args: {
|
|
5154
|
+
input: VerifyCodeDto;
|
|
5155
|
+
};
|
|
5156
|
+
});
|
|
5157
|
+
isUserSuspended?: {
|
|
5158
|
+
__args: {
|
|
5159
|
+
loginEmail: Scalars['String'];
|
|
5160
|
+
};
|
|
5161
|
+
};
|
|
5162
|
+
getAllUsers?: AdminUserViewGenqlSelection;
|
|
5163
|
+
getUsersPaginated?: (PaginatedUsersGenqlSelection & {
|
|
5164
|
+
__args?: {
|
|
5165
|
+
query?: (UserQueryDto | null);
|
|
5166
|
+
};
|
|
5167
|
+
});
|
|
5168
|
+
getStravaLoginUrl?: boolean | number;
|
|
5169
|
+
getSportsEvents?: (SportsEventGenqlSelection & {
|
|
5170
|
+
__args: {
|
|
5171
|
+
input: GetSportEventsDto;
|
|
5172
|
+
};
|
|
5173
|
+
});
|
|
5174
|
+
getSportsEventsPaginated?: (PaginatedEventsGenqlSelection & {
|
|
5175
|
+
__args?: {
|
|
5176
|
+
query?: (EventQueryDto | null);
|
|
5177
|
+
};
|
|
5178
|
+
});
|
|
5179
|
+
getBudgetsByAthlete?: BudgetDataGenqlSelection;
|
|
5180
|
+
getDonationsByAthlete?: ReceiptGenqlSelection;
|
|
5181
|
+
getDonationsToAthlete?: (DonationGenqlSelection & {
|
|
5182
|
+
__args: {
|
|
5183
|
+
athleteId: Scalars['String'];
|
|
5184
|
+
};
|
|
5185
|
+
});
|
|
5186
|
+
getDonationsToMe?: DonationGenqlSelection;
|
|
5187
|
+
getBudgetConcepts?: BudgetConceptGenqlSelection;
|
|
5188
|
+
getBudgetItemUnits?: BudgetItemUnitGenqlSelection;
|
|
5189
|
+
getMembershipOrganizations?: MembershipOrganizationReferenceGenqlSelection;
|
|
5190
|
+
getAthleteStravaIntegration?: AthleteIntegrationReferenceGenqlSelection;
|
|
5191
|
+
getAthleteInstagramIntegration?: AthleteIntegrationReferenceGenqlSelection;
|
|
5192
|
+
getAthleteIntegrations?: AthleteIntegrationReferenceGenqlSelection;
|
|
5193
|
+
stripeQuery?: (StripeObjectGenqlSelection & {
|
|
5194
|
+
__args: {
|
|
5195
|
+
input: StripeQueryDto;
|
|
5196
|
+
};
|
|
5197
|
+
});
|
|
5198
|
+
getStripeBalance?: StripeBalanceGenqlSelection;
|
|
5199
|
+
getDatabaseTextFile?: (TextDatabaseFileGenqlSelection & {
|
|
5200
|
+
__args: {
|
|
5201
|
+
input: GetDatabaseFileDto;
|
|
5202
|
+
};
|
|
5203
|
+
});
|
|
5204
|
+
getS3UploadUrl?: (AWSS3UploadUrlGenqlSelection & {
|
|
5205
|
+
__args: {
|
|
5206
|
+
input: AWSS3GetUploadDto;
|
|
5207
|
+
};
|
|
5208
|
+
});
|
|
5209
|
+
getReceipt?: (ReceiptGenqlSelection & {
|
|
5210
|
+
__args: {
|
|
5211
|
+
input: GetReceiptDto;
|
|
5212
|
+
};
|
|
5213
|
+
});
|
|
5214
|
+
getReceiptUrl?: (ReceiptUrlGenqlSelection & {
|
|
5215
|
+
__args: {
|
|
5216
|
+
input: GetReceiptDto;
|
|
5217
|
+
};
|
|
5218
|
+
});
|
|
5219
|
+
getTransactionDetails?: (TransactionDetailsGenqlSelection & {
|
|
5220
|
+
__args: {
|
|
5221
|
+
input: GetTransactionDetailsDto;
|
|
5222
|
+
};
|
|
5223
|
+
});
|
|
5224
|
+
findMemberForUser?: (MemberGenqlSelection & {
|
|
5225
|
+
__args: {
|
|
5226
|
+
loginEmail: Scalars['String'];
|
|
5227
|
+
};
|
|
5228
|
+
});
|
|
5229
|
+
getDonationsByMember?: DonationGenqlSelection;
|
|
5230
|
+
getDonationsByUser?: (DonationGenqlSelection & {
|
|
5231
|
+
__args: {
|
|
5232
|
+
email: Scalars['String'];
|
|
5233
|
+
};
|
|
5234
|
+
});
|
|
5235
|
+
getAllTransactions?: AdminTransactionViewGenqlSelection;
|
|
5236
|
+
getTransactionsPaginated?: (PaginatedTransactionsGenqlSelection & {
|
|
5237
|
+
__args?: {
|
|
5238
|
+
query?: (TransactionQueryDto | null);
|
|
5239
|
+
};
|
|
5240
|
+
});
|
|
5241
|
+
offers?: OfferGenqlSelection;
|
|
5242
|
+
getOffersPaginated?: (PaginatedOffersGenqlSelection & {
|
|
5243
|
+
__args?: {
|
|
5244
|
+
query?: (OfferQueryDto | null);
|
|
5245
|
+
};
|
|
5246
|
+
});
|
|
5247
|
+
offersForAthlete?: (OfferGenqlSelection & {
|
|
5248
|
+
__args?: {
|
|
5249
|
+
athleteId?: (Scalars['String'] | null);
|
|
5250
|
+
};
|
|
5251
|
+
});
|
|
5252
|
+
offer?: (OfferGenqlSelection & {
|
|
5253
|
+
__args: {
|
|
5254
|
+
id: Scalars['String'];
|
|
5255
|
+
};
|
|
5256
|
+
});
|
|
5257
|
+
myOfferClaims?: (OfferClaimGenqlSelection & {
|
|
5258
|
+
__args: {
|
|
5259
|
+
athleteId: Scalars['String'];
|
|
5260
|
+
query?: (OfferClaimQueryDto | null);
|
|
5261
|
+
};
|
|
5262
|
+
});
|
|
5263
|
+
offerAvailability?: (OfferAvailabilityGenqlSelection & {
|
|
5264
|
+
__args: {
|
|
5265
|
+
offerId: Scalars['String'];
|
|
5266
|
+
athleteId: Scalars['String'];
|
|
5267
|
+
};
|
|
5268
|
+
});
|
|
5269
|
+
offersWithEligibility?: (PaginatedOffersWithEligibilityGenqlSelection & {
|
|
5270
|
+
__args?: {
|
|
5271
|
+
query?: (OfferQueryDto | null);
|
|
5272
|
+
};
|
|
5273
|
+
});
|
|
5274
|
+
getLeaderboard?: (LeaderboardResponseGenqlSelection & {
|
|
5275
|
+
__args?: {
|
|
5276
|
+
input?: (LeaderboardQueryDto | null);
|
|
3696
5277
|
};
|
|
3697
5278
|
});
|
|
3698
|
-
|
|
5279
|
+
getUserRank?: (UserRankGenqlSelection & {
|
|
3699
5280
|
__args: {
|
|
3700
|
-
input:
|
|
5281
|
+
input: UserRankQueryDto;
|
|
3701
5282
|
};
|
|
3702
5283
|
});
|
|
3703
|
-
|
|
5284
|
+
athleteDashboard?: (DashboardSummaryGenqlSelection & {
|
|
3704
5285
|
__args: {
|
|
3705
|
-
|
|
3706
|
-
password: Scalars['String'];
|
|
5286
|
+
athleteId: Scalars['String'];
|
|
3707
5287
|
};
|
|
3708
5288
|
});
|
|
3709
|
-
|
|
5289
|
+
athleteScoreHistory?: (ScoreHistoryEntryGenqlSelection & {
|
|
3710
5290
|
__args: {
|
|
3711
|
-
|
|
5291
|
+
input: ScoreHistoryQueryDto;
|
|
3712
5292
|
};
|
|
3713
5293
|
});
|
|
3714
|
-
|
|
5294
|
+
athleteRankHistory?: (RankHistoryEntryGenqlSelection & {
|
|
3715
5295
|
__args: {
|
|
3716
|
-
input:
|
|
5296
|
+
input: RankHistoryQueryDto;
|
|
3717
5297
|
};
|
|
3718
5298
|
});
|
|
3719
|
-
|
|
5299
|
+
athleteRankContext?: (RankContextGenqlSelection & {
|
|
3720
5300
|
__args: {
|
|
3721
|
-
input:
|
|
5301
|
+
input: RankContextQueryDto;
|
|
3722
5302
|
};
|
|
3723
5303
|
});
|
|
3724
|
-
|
|
3725
|
-
getSportsEvents?: (SportsEventGenqlSelection & {
|
|
5304
|
+
athleteActivities?: (ActivitiesResponseGenqlSelection & {
|
|
3726
5305
|
__args: {
|
|
3727
|
-
input:
|
|
5306
|
+
input: ActivitiesQueryDto;
|
|
3728
5307
|
};
|
|
3729
5308
|
});
|
|
3730
|
-
|
|
3731
|
-
getDonationsByAthlete?: ReceiptGenqlSelection;
|
|
3732
|
-
getBudgetConcepts?: BudgetConceptGenqlSelection;
|
|
3733
|
-
getBudgetItemUnits?: BudgetItemUnitGenqlSelection;
|
|
3734
|
-
getMembershipOrganizations?: MembershipOrganizationReferenceGenqlSelection;
|
|
3735
|
-
getAthleteStravaIntegration?: AthleteIntegrationReferenceGenqlSelection;
|
|
3736
|
-
getAthleteInstagramIntegration?: AthleteIntegrationReferenceGenqlSelection;
|
|
3737
|
-
getAthleteIntegrations?: AthleteIntegrationReferenceGenqlSelection;
|
|
3738
|
-
stripeQuery?: (StripeObjectGenqlSelection & {
|
|
5309
|
+
athleteActivityDetail?: (ActivityDetailGenqlSelection & {
|
|
3739
5310
|
__args: {
|
|
3740
|
-
input:
|
|
5311
|
+
input: ActivityDetailQueryDto;
|
|
3741
5312
|
};
|
|
3742
5313
|
});
|
|
3743
|
-
|
|
5314
|
+
athleteComponentSummary?: (ComponentSummaryGenqlSelection & {
|
|
3744
5315
|
__args: {
|
|
3745
|
-
input:
|
|
5316
|
+
input: ComponentSummaryQueryDto;
|
|
3746
5317
|
};
|
|
3747
5318
|
});
|
|
3748
|
-
|
|
5319
|
+
athleteActivityDates?: (ActivityDatesResponseGenqlSelection & {
|
|
3749
5320
|
__args: {
|
|
3750
|
-
input:
|
|
5321
|
+
input: ActivityDatesQueryDto;
|
|
3751
5322
|
};
|
|
3752
5323
|
});
|
|
3753
|
-
|
|
5324
|
+
socialAggregates?: (SocialAggregateTypeGenqlSelection & {
|
|
3754
5325
|
__args: {
|
|
3755
|
-
|
|
5326
|
+
athleteId: Scalars['ID'];
|
|
5327
|
+
platform: Platform;
|
|
5328
|
+
range: DateRangeInput;
|
|
5329
|
+
periodType?: (PeriodType | null);
|
|
3756
5330
|
};
|
|
3757
5331
|
});
|
|
3758
|
-
|
|
5332
|
+
postsWithComparison?: (PostComparisonResultTypeGenqlSelection & {
|
|
3759
5333
|
__args: {
|
|
3760
|
-
|
|
5334
|
+
athleteId: Scalars['ID'];
|
|
5335
|
+
platform: Platform;
|
|
5336
|
+
options?: (PostComparisonInput | null);
|
|
3761
5337
|
};
|
|
3762
5338
|
});
|
|
3763
|
-
getDonationsByMember?: DonationGenqlSelection;
|
|
3764
5339
|
__typename?: boolean | number;
|
|
3765
5340
|
__scalar?: boolean | number;
|
|
3766
5341
|
}
|
|
@@ -3851,6 +5426,29 @@ export interface MutationGenqlSelection {
|
|
|
3851
5426
|
input: CreateBrandDto;
|
|
3852
5427
|
};
|
|
3853
5428
|
});
|
|
5429
|
+
updateBrand?: (BrandGenqlSelection & {
|
|
5430
|
+
__args: {
|
|
5431
|
+
id: Scalars['String'];
|
|
5432
|
+
input: CreateBrandDto;
|
|
5433
|
+
};
|
|
5434
|
+
});
|
|
5435
|
+
deleteBrand?: {
|
|
5436
|
+
__args: {
|
|
5437
|
+
id: Scalars['String'];
|
|
5438
|
+
};
|
|
5439
|
+
};
|
|
5440
|
+
linkBrandToSponsor?: (BrandGenqlSelection & {
|
|
5441
|
+
__args: {
|
|
5442
|
+
brandId: Scalars['String'];
|
|
5443
|
+
sponsorId: Scalars['String'];
|
|
5444
|
+
};
|
|
5445
|
+
});
|
|
5446
|
+
unlinkBrandFromSponsor?: (BrandGenqlSelection & {
|
|
5447
|
+
__args: {
|
|
5448
|
+
brandId: Scalars['String'];
|
|
5449
|
+
sponsorId: Scalars['String'];
|
|
5450
|
+
};
|
|
5451
|
+
});
|
|
3854
5452
|
registerSponsor?: (SponsorGenqlSelection & {
|
|
3855
5453
|
__args: {
|
|
3856
5454
|
input: RegisterSponsorInput;
|
|
@@ -3866,6 +5464,17 @@ export interface MutationGenqlSelection {
|
|
|
3866
5464
|
input: InviteAthletesDto;
|
|
3867
5465
|
};
|
|
3868
5466
|
});
|
|
5467
|
+
updateSponsor?: (SponsorGenqlSelection & {
|
|
5468
|
+
__args: {
|
|
5469
|
+
id: Scalars['String'];
|
|
5470
|
+
input: UpdateSponsorDto;
|
|
5471
|
+
};
|
|
5472
|
+
});
|
|
5473
|
+
deleteSponsor?: {
|
|
5474
|
+
__args: {
|
|
5475
|
+
id: Scalars['String'];
|
|
5476
|
+
};
|
|
5477
|
+
};
|
|
3869
5478
|
forceDeleteAthleteCompetition?: (DeleteSingleValueResponseGenqlSelection & {
|
|
3870
5479
|
__args: {
|
|
3871
5480
|
input: DeleteSingleValueDto;
|
|
@@ -3932,6 +5541,12 @@ export interface MutationGenqlSelection {
|
|
|
3932
5541
|
};
|
|
3933
5542
|
});
|
|
3934
5543
|
updateAthleteScores?: AthleteGenqlSelection;
|
|
5544
|
+
updateAthleteCompetitionScores?: AthleteGenqlSelection;
|
|
5545
|
+
forceRefreshAthleteScores?: (ForceScoreRefreshResponseGenqlSelection & {
|
|
5546
|
+
__args: {
|
|
5547
|
+
input: ForceScoreRefreshDto;
|
|
5548
|
+
};
|
|
5549
|
+
});
|
|
3935
5550
|
setCurrentCampaign?: (FundRaisingCampaignGenqlSelection & {
|
|
3936
5551
|
__args: {
|
|
3937
5552
|
input: SetCurrentCampaignDto;
|
|
@@ -4023,14 +5638,15 @@ export interface MutationGenqlSelection {
|
|
|
4023
5638
|
input: Scalars['String'];
|
|
4024
5639
|
};
|
|
4025
5640
|
});
|
|
4026
|
-
|
|
5641
|
+
updateUserSuspendedStatus?: (EditValueResponseGenqlSelection & {
|
|
4027
5642
|
__args: {
|
|
4028
|
-
|
|
5643
|
+
input: UpdateUserSuspendedStatusDto;
|
|
4029
5644
|
};
|
|
4030
5645
|
});
|
|
4031
|
-
|
|
5646
|
+
deleteMyAccount?: DeleteVtxUserResponseGenqlSelection;
|
|
5647
|
+
deleteVtxUser?: (DeleteVtxUserResponseGenqlSelection & {
|
|
4032
5648
|
__args: {
|
|
4033
|
-
input:
|
|
5649
|
+
input: DeleteVtxUserDto;
|
|
4034
5650
|
};
|
|
4035
5651
|
});
|
|
4036
5652
|
createSportsEvent?: (SportsEventGenqlSelection & {
|
|
@@ -4038,6 +5654,16 @@ export interface MutationGenqlSelection {
|
|
|
4038
5654
|
input: CreateSportEventDto;
|
|
4039
5655
|
};
|
|
4040
5656
|
});
|
|
5657
|
+
updateSportsEvent?: (SportsEventGenqlSelection & {
|
|
5658
|
+
__args: {
|
|
5659
|
+
input: UpdateSportEventDto;
|
|
5660
|
+
};
|
|
5661
|
+
});
|
|
5662
|
+
deleteSportsEvent?: (EditValueResponseGenqlSelection & {
|
|
5663
|
+
__args: {
|
|
5664
|
+
eventId: Scalars['String'];
|
|
5665
|
+
};
|
|
5666
|
+
});
|
|
4041
5667
|
mergeSportsEvents?: (MergeEventsResponseGenqlSelection & {
|
|
4042
5668
|
__args: {
|
|
4043
5669
|
input: MergeSportsEventsDto;
|
|
@@ -4113,6 +5739,7 @@ export interface MutationGenqlSelection {
|
|
|
4113
5739
|
type: Scalars['String'];
|
|
4114
5740
|
};
|
|
4115
5741
|
};
|
|
5742
|
+
unlinkInstagram?: boolean | number;
|
|
4116
5743
|
createStripeAccount?: (StripeAccountReferenceGenqlSelection & {
|
|
4117
5744
|
__args: {
|
|
4118
5745
|
input: CreateStripeAccountDto;
|
|
@@ -4131,6 +5758,57 @@ export interface MutationGenqlSelection {
|
|
|
4131
5758
|
input: RegisterMemberDto;
|
|
4132
5759
|
};
|
|
4133
5760
|
});
|
|
5761
|
+
createOffer?: (OfferGenqlSelection & {
|
|
5762
|
+
__args: {
|
|
5763
|
+
input: CreateOfferDto;
|
|
5764
|
+
};
|
|
5765
|
+
});
|
|
5766
|
+
updateOffer?: (OfferGenqlSelection & {
|
|
5767
|
+
__args: {
|
|
5768
|
+
id: Scalars['String'];
|
|
5769
|
+
input: CreateOfferDto;
|
|
5770
|
+
};
|
|
5771
|
+
});
|
|
5772
|
+
deleteOffer?: {
|
|
5773
|
+
__args: {
|
|
5774
|
+
id: Scalars['String'];
|
|
5775
|
+
};
|
|
5776
|
+
};
|
|
5777
|
+
setOfferStatus?: (OfferGenqlSelection & {
|
|
5778
|
+
__args: {
|
|
5779
|
+
id: Scalars['String'];
|
|
5780
|
+
status: Scalars['String'];
|
|
5781
|
+
};
|
|
5782
|
+
});
|
|
5783
|
+
activateOffer?: (OfferGenqlSelection & {
|
|
5784
|
+
__args: {
|
|
5785
|
+
id: Scalars['String'];
|
|
5786
|
+
};
|
|
5787
|
+
});
|
|
5788
|
+
deactivateOffer?: (OfferGenqlSelection & {
|
|
5789
|
+
__args: {
|
|
5790
|
+
id: Scalars['String'];
|
|
5791
|
+
};
|
|
5792
|
+
});
|
|
5793
|
+
claimOffer?: (OfferClaimGenqlSelection & {
|
|
5794
|
+
__args: {
|
|
5795
|
+
offerId: Scalars['String'];
|
|
5796
|
+
athleteId: Scalars['String'];
|
|
5797
|
+
};
|
|
5798
|
+
});
|
|
5799
|
+
removeOfferClaim?: {
|
|
5800
|
+
__args: {
|
|
5801
|
+
claimId: Scalars['String'];
|
|
5802
|
+
athleteId: Scalars['String'];
|
|
5803
|
+
};
|
|
5804
|
+
};
|
|
5805
|
+
uploadCouponCodes?: (UploadResultGenqlSelection & {
|
|
5806
|
+
__args: {
|
|
5807
|
+
offerId: Scalars['String'];
|
|
5808
|
+
csvContent: Scalars['String'];
|
|
5809
|
+
};
|
|
5810
|
+
});
|
|
5811
|
+
rebuildLeaderboardCache?: boolean | number;
|
|
4134
5812
|
__typename?: boolean | number;
|
|
4135
5813
|
__scalar?: boolean | number;
|
|
4136
5814
|
}
|
|
@@ -4171,24 +5849,6 @@ export interface AWSS3DeleteUseTypeKeyDto {
|
|
|
4171
5849
|
export interface CreateIndustryDto {
|
|
4172
5850
|
name: Scalars['String'];
|
|
4173
5851
|
}
|
|
4174
|
-
export interface CreateBrandDto {
|
|
4175
|
-
name: Scalars['String'];
|
|
4176
|
-
description?: (Scalars['String'] | null);
|
|
4177
|
-
slogan?: (Scalars['String'] | null);
|
|
4178
|
-
website?: (Scalars['String'] | null);
|
|
4179
|
-
logo?: (AWSS3UploadedFileDto | null);
|
|
4180
|
-
banner?: (AWSS3UploadedFileDto | null);
|
|
4181
|
-
translations?: (BrandTranslationDto[] | null);
|
|
4182
|
-
}
|
|
4183
|
-
export interface BrandTranslationDto {
|
|
4184
|
-
brandId: Scalars['String'];
|
|
4185
|
-
language: Scalars['String'];
|
|
4186
|
-
name?: (Scalars['String'] | null);
|
|
4187
|
-
description?: (Scalars['String'] | null);
|
|
4188
|
-
slogan?: (Scalars['String'] | null);
|
|
4189
|
-
logo?: (AWSS3UploadedFileDto | null);
|
|
4190
|
-
banner?: (AWSS3UploadedFileDto | null);
|
|
4191
|
-
}
|
|
4192
5852
|
export interface RegisterSponsorInput {
|
|
4193
5853
|
name: Scalars['String'];
|
|
4194
5854
|
phone?: (Scalars['String'] | null);
|
|
@@ -4201,9 +5861,10 @@ export interface RegisterSponsorInput {
|
|
|
4201
5861
|
numberOfAthletes: Scalars['String'];
|
|
4202
5862
|
brands: Scalars['String'][];
|
|
4203
5863
|
}
|
|
4204
|
-
export interface
|
|
4205
|
-
name
|
|
5864
|
+
export interface UpdateSponsorDto {
|
|
5865
|
+
name?: (Scalars['String'] | null);
|
|
4206
5866
|
description?: (Scalars['String'] | null);
|
|
5867
|
+
email?: (Scalars['String'] | null);
|
|
4207
5868
|
}
|
|
4208
5869
|
export interface RegisterAthleteDto {
|
|
4209
5870
|
email: Scalars['String'];
|
|
@@ -4278,21 +5939,6 @@ export interface CreateSponsorshipDto {
|
|
|
4278
5939
|
isPrivate?: (Scalars['Boolean'] | null);
|
|
4279
5940
|
translations?: (SponsorshipTranslationDto[] | null);
|
|
4280
5941
|
}
|
|
4281
|
-
export interface AthleteCriteriaDto {
|
|
4282
|
-
_id: Scalars['String'];
|
|
4283
|
-
label?: (Scalars['String'] | null);
|
|
4284
|
-
qualificationsBag?: (QualificationsBagDto | null);
|
|
4285
|
-
}
|
|
4286
|
-
export interface QualificationsBagDto {
|
|
4287
|
-
ageQualifications?: (AgeQualificationDto[] | null);
|
|
4288
|
-
genderQualifications?: (GenderQualificationDto[] | null);
|
|
4289
|
-
scoreQualifications?: (ScoreQualificationDto[] | null);
|
|
4290
|
-
locationQualifications?: (LocationQualificationDto[] | null);
|
|
4291
|
-
nationalityQualifications?: (NationalityQualificationDto[] | null);
|
|
4292
|
-
distanceQualifications?: (DistanceQualificationDto[] | null);
|
|
4293
|
-
sportsQualifications?: (SportsQualificationDto[] | null);
|
|
4294
|
-
levelQualifications?: (SportsLevelQualificationDto[] | null);
|
|
4295
|
-
}
|
|
4296
5942
|
export interface DurationDto {
|
|
4297
5943
|
length?: Scalars['Float'];
|
|
4298
5944
|
unit?: Scalars['String'];
|
|
@@ -4348,10 +5994,6 @@ export interface CreateCityDto {
|
|
|
4348
5994
|
ranking?: (Scalars['Float'] | null);
|
|
4349
5995
|
same_name?: (Scalars['String'] | null);
|
|
4350
5996
|
}
|
|
4351
|
-
export interface RegisterStravaDto {
|
|
4352
|
-
idAthlete: Scalars['String'];
|
|
4353
|
-
code: Scalars['String'];
|
|
4354
|
-
}
|
|
4355
5997
|
export interface CreateSportEventDto {
|
|
4356
5998
|
name: Scalars['String'];
|
|
4357
5999
|
cityId?: (Scalars['String'] | null);
|
|
@@ -4466,24 +6108,12 @@ export declare const isTextDatabaseFile: (obj?: {
|
|
|
4466
6108
|
export declare const isCodeVerificationResponse: (obj?: {
|
|
4467
6109
|
__typename?: any;
|
|
4468
6110
|
} | null) => obj is CodeVerificationResponse;
|
|
4469
|
-
export declare const
|
|
4470
|
-
__typename?: any;
|
|
4471
|
-
} | null) => obj is BrandStats;
|
|
4472
|
-
export declare const isBrandTranslation: (obj?: {
|
|
4473
|
-
__typename?: any;
|
|
4474
|
-
} | null) => obj is BrandTranslation;
|
|
4475
|
-
export declare const isBrand: (obj?: {
|
|
4476
|
-
__typename?: any;
|
|
4477
|
-
} | null) => obj is Brand;
|
|
4478
|
-
export declare const isStravaTpiRideDto: (obj?: {
|
|
4479
|
-
__typename?: any;
|
|
4480
|
-
} | null) => obj is StravaTpiRideDto;
|
|
4481
|
-
export declare const isStravaTpiRunDto: (obj?: {
|
|
6111
|
+
export declare const isIndustry: (obj?: {
|
|
4482
6112
|
__typename?: any;
|
|
4483
|
-
} | null) => obj is
|
|
4484
|
-
export declare const
|
|
6113
|
+
} | null) => obj is Industry;
|
|
6114
|
+
export declare const isSponsorStats: (obj?: {
|
|
4485
6115
|
__typename?: any;
|
|
4486
|
-
} | null) => obj is
|
|
6116
|
+
} | null) => obj is SponsorStats;
|
|
4487
6117
|
export declare const isCity: (obj?: {
|
|
4488
6118
|
__typename?: any;
|
|
4489
6119
|
} | null) => obj is City;
|
|
@@ -4523,18 +6153,6 @@ export declare const isAthleteCriteria: (obj?: {
|
|
|
4523
6153
|
export declare const isQualificationTypeUnion: (obj?: {
|
|
4524
6154
|
__typename?: any;
|
|
4525
6155
|
} | null) => obj is QualificationTypeUnion;
|
|
4526
|
-
export declare const isIndustry: (obj?: {
|
|
4527
|
-
__typename?: any;
|
|
4528
|
-
} | null) => obj is Industry;
|
|
4529
|
-
export declare const isSponsorStats: (obj?: {
|
|
4530
|
-
__typename?: any;
|
|
4531
|
-
} | null) => obj is SponsorStats;
|
|
4532
|
-
export declare const isSponsorBrand: (obj?: {
|
|
4533
|
-
__typename?: any;
|
|
4534
|
-
} | null) => obj is SponsorBrand;
|
|
4535
|
-
export declare const isSponsor: (obj?: {
|
|
4536
|
-
__typename?: any;
|
|
4537
|
-
} | null) => obj is Sponsor;
|
|
4538
6156
|
export declare const isSponsorshipItem: (obj?: {
|
|
4539
6157
|
__typename?: any;
|
|
4540
6158
|
} | null) => obj is SponsorshipItem;
|
|
@@ -4553,6 +6171,30 @@ export declare const isSponsorshipTranslation: (obj?: {
|
|
|
4553
6171
|
export declare const isSponsorship: (obj?: {
|
|
4554
6172
|
__typename?: any;
|
|
4555
6173
|
} | null) => obj is Sponsorship;
|
|
6174
|
+
export declare const isSponsor: (obj?: {
|
|
6175
|
+
__typename?: any;
|
|
6176
|
+
} | null) => obj is Sponsor;
|
|
6177
|
+
export declare const isSponsorBrand: (obj?: {
|
|
6178
|
+
__typename?: any;
|
|
6179
|
+
} | null) => obj is SponsorBrand;
|
|
6180
|
+
export declare const isBrandStats: (obj?: {
|
|
6181
|
+
__typename?: any;
|
|
6182
|
+
} | null) => obj is BrandStats;
|
|
6183
|
+
export declare const isBrandTranslation: (obj?: {
|
|
6184
|
+
__typename?: any;
|
|
6185
|
+
} | null) => obj is BrandTranslation;
|
|
6186
|
+
export declare const isBrand: (obj?: {
|
|
6187
|
+
__typename?: any;
|
|
6188
|
+
} | null) => obj is Brand;
|
|
6189
|
+
export declare const isStravaTpiRideDto: (obj?: {
|
|
6190
|
+
__typename?: any;
|
|
6191
|
+
} | null) => obj is StravaTpiRideDto;
|
|
6192
|
+
export declare const isStravaTpiRunDto: (obj?: {
|
|
6193
|
+
__typename?: any;
|
|
6194
|
+
} | null) => obj is StravaTpiRunDto;
|
|
6195
|
+
export declare const isStravaTpiSwimDto: (obj?: {
|
|
6196
|
+
__typename?: any;
|
|
6197
|
+
} | null) => obj is StravaTpiSwimDto;
|
|
4556
6198
|
export declare const isFollowStats: (obj?: {
|
|
4557
6199
|
__typename?: any;
|
|
4558
6200
|
} | null) => obj is FollowStats;
|
|
@@ -4649,9 +6291,9 @@ export declare const isStripeAccount: (obj?: {
|
|
|
4649
6291
|
export declare const isStripeAccountReference: (obj?: {
|
|
4650
6292
|
__typename?: any;
|
|
4651
6293
|
} | null) => obj is StripeAccountReference;
|
|
4652
|
-
export declare const
|
|
6294
|
+
export declare const isHistoricalScore: (obj?: {
|
|
4653
6295
|
__typename?: any;
|
|
4654
|
-
} | null) => obj is
|
|
6296
|
+
} | null) => obj is HistoricalScore;
|
|
4655
6297
|
export declare const isAthleteReference: (obj?: {
|
|
4656
6298
|
__typename?: any;
|
|
4657
6299
|
} | null) => obj is AthleteReference;
|
|
@@ -4667,9 +6309,6 @@ export declare const isFundingCheckoutSessionData: (obj?: {
|
|
|
4667
6309
|
export declare const isSponsorAthleteInvitation: (obj?: {
|
|
4668
6310
|
__typename?: any;
|
|
4669
6311
|
} | null) => obj is SponsorAthleteInvitation;
|
|
4670
|
-
export declare const isStravaToken: (obj?: {
|
|
4671
|
-
__typename?: any;
|
|
4672
|
-
} | null) => obj is StravaToken;
|
|
4673
6312
|
export declare const isStripeSession: (obj?: {
|
|
4674
6313
|
__typename?: any;
|
|
4675
6314
|
} | null) => obj is StripeSession;
|
|
@@ -4751,12 +6390,63 @@ export declare const isDonation: (obj?: {
|
|
|
4751
6390
|
export declare const isMember: (obj?: {
|
|
4752
6391
|
__typename?: any;
|
|
4753
6392
|
} | null) => obj is Member;
|
|
6393
|
+
export declare const isAdminUserView: (obj?: {
|
|
6394
|
+
__typename?: any;
|
|
6395
|
+
} | null) => obj is AdminUserView;
|
|
6396
|
+
export declare const isAdminTransactionFundingDetails: (obj?: {
|
|
6397
|
+
__typename?: any;
|
|
6398
|
+
} | null) => obj is AdminTransactionFundingDetails;
|
|
6399
|
+
export declare const isAdminTransactionView: (obj?: {
|
|
6400
|
+
__typename?: any;
|
|
6401
|
+
} | null) => obj is AdminTransactionView;
|
|
6402
|
+
export declare const isOffer: (obj?: {
|
|
6403
|
+
__typename?: any;
|
|
6404
|
+
} | null) => obj is Offer;
|
|
6405
|
+
export declare const isPromotion: (obj?: {
|
|
6406
|
+
__typename?: any;
|
|
6407
|
+
} | null) => obj is Promotion;
|
|
6408
|
+
export declare const isCouponCode: (obj?: {
|
|
6409
|
+
__typename?: any;
|
|
6410
|
+
} | null) => obj is CouponCode;
|
|
6411
|
+
export declare const isCoupon: (obj?: {
|
|
6412
|
+
__typename?: any;
|
|
6413
|
+
} | null) => obj is Coupon;
|
|
6414
|
+
export declare const isOfferClaim: (obj?: {
|
|
6415
|
+
__typename?: any;
|
|
6416
|
+
} | null) => obj is OfferClaim;
|
|
6417
|
+
export declare const isEligibilityResult: (obj?: {
|
|
6418
|
+
__typename?: any;
|
|
6419
|
+
} | null) => obj is EligibilityResult;
|
|
6420
|
+
export declare const isEnhancedPaginationInfoType: (obj?: {
|
|
6421
|
+
__typename?: any;
|
|
6422
|
+
} | null) => obj is EnhancedPaginationInfoType;
|
|
6423
|
+
export declare const isOfferWithEligibility: (obj?: {
|
|
6424
|
+
__typename?: any;
|
|
6425
|
+
} | null) => obj is OfferWithEligibility;
|
|
6426
|
+
export declare const isPaginatedOffersWithEligibility: (obj?: {
|
|
6427
|
+
__typename?: any;
|
|
6428
|
+
} | null) => obj is PaginatedOffersWithEligibility;
|
|
6429
|
+
export declare const isPaginatedBrands: (obj?: {
|
|
6430
|
+
__typename?: any;
|
|
6431
|
+
} | null) => obj is PaginatedBrands;
|
|
6432
|
+
export declare const isPaginatedSponsors: (obj?: {
|
|
6433
|
+
__typename?: any;
|
|
6434
|
+
} | null) => obj is PaginatedSponsors;
|
|
4754
6435
|
export declare const isEditValueResponse: (obj?: {
|
|
4755
6436
|
__typename?: any;
|
|
4756
6437
|
} | null) => obj is EditValueResponse;
|
|
4757
6438
|
export declare const isDeleteSingleValueResponse: (obj?: {
|
|
4758
6439
|
__typename?: any;
|
|
4759
6440
|
} | null) => obj is DeleteSingleValueResponse;
|
|
6441
|
+
export declare const isScoreRefreshDetail: (obj?: {
|
|
6442
|
+
__typename?: any;
|
|
6443
|
+
} | null) => obj is ScoreRefreshDetail;
|
|
6444
|
+
export declare const isForceScoreRefreshResult: (obj?: {
|
|
6445
|
+
__typename?: any;
|
|
6446
|
+
} | null) => obj is ForceScoreRefreshResult;
|
|
6447
|
+
export declare const isForceScoreRefreshResponse: (obj?: {
|
|
6448
|
+
__typename?: any;
|
|
6449
|
+
} | null) => obj is ForceScoreRefreshResponse;
|
|
4760
6450
|
export declare const isSortOrder: (obj?: {
|
|
4761
6451
|
__typename?: any;
|
|
4762
6452
|
} | null) => obj is SortOrder;
|
|
@@ -4781,21 +6471,129 @@ export declare const isCompetitionDeleteVerificationReason: (obj?: {
|
|
|
4781
6471
|
export declare const isCompetitionDeleteVerificationResponse: (obj?: {
|
|
4782
6472
|
__typename?: any;
|
|
4783
6473
|
} | null) => obj is CompetitionDeleteVerificationResponse;
|
|
6474
|
+
export declare const isHistoricalScoresPeriod: (obj?: {
|
|
6475
|
+
__typename?: any;
|
|
6476
|
+
} | null) => obj is HistoricalScoresPeriod;
|
|
4784
6477
|
export declare const isStripeObject: (obj?: {
|
|
4785
6478
|
__typename?: any;
|
|
4786
6479
|
} | null) => obj is StripeObject;
|
|
6480
|
+
export declare const isScoreRefreshCapability: (obj?: {
|
|
6481
|
+
__typename?: any;
|
|
6482
|
+
} | null) => obj is ScoreRefreshCapability;
|
|
6483
|
+
export declare const isCheckScoreRefreshCapabilityResponse: (obj?: {
|
|
6484
|
+
__typename?: any;
|
|
6485
|
+
} | null) => obj is CheckScoreRefreshCapabilityResponse;
|
|
6486
|
+
export declare const isPaginatedSports: (obj?: {
|
|
6487
|
+
__typename?: any;
|
|
6488
|
+
} | null) => obj is PaginatedSports;
|
|
4787
6489
|
export declare const isUserImages: (obj?: {
|
|
4788
6490
|
__typename?: any;
|
|
4789
6491
|
} | null) => obj is UserImages;
|
|
4790
6492
|
export declare const isValidatedToken: (obj?: {
|
|
4791
6493
|
__typename?: any;
|
|
4792
6494
|
} | null) => obj is ValidatedToken;
|
|
6495
|
+
export declare const isDeleteVtxUserResponse: (obj?: {
|
|
6496
|
+
__typename?: any;
|
|
6497
|
+
} | null) => obj is DeleteVtxUserResponse;
|
|
6498
|
+
export declare const isPaginatedUsers: (obj?: {
|
|
6499
|
+
__typename?: any;
|
|
6500
|
+
} | null) => obj is PaginatedUsers;
|
|
6501
|
+
export declare const isTransactionDetails: (obj?: {
|
|
6502
|
+
__typename?: any;
|
|
6503
|
+
} | null) => obj is TransactionDetails;
|
|
6504
|
+
export declare const isPaginatedEvents: (obj?: {
|
|
6505
|
+
__typename?: any;
|
|
6506
|
+
} | null) => obj is PaginatedEvents;
|
|
6507
|
+
export declare const isCurrencyAmountType: (obj?: {
|
|
6508
|
+
__typename?: any;
|
|
6509
|
+
} | null) => obj is CurrencyAmountType;
|
|
6510
|
+
export declare const isStripeBalance: (obj?: {
|
|
6511
|
+
__typename?: any;
|
|
6512
|
+
} | null) => obj is StripeBalance;
|
|
4793
6513
|
export declare const isStripeTransfer: (obj?: {
|
|
4794
6514
|
__typename?: any;
|
|
4795
6515
|
} | null) => obj is StripeTransfer;
|
|
4796
6516
|
export declare const isUserDomain: (obj?: {
|
|
4797
6517
|
__typename?: any;
|
|
4798
6518
|
} | null) => obj is UserDomain;
|
|
6519
|
+
export declare const isPaginatedTransactions: (obj?: {
|
|
6520
|
+
__typename?: any;
|
|
6521
|
+
} | null) => obj is PaginatedTransactions;
|
|
6522
|
+
export declare const isPaginatedOffers: (obj?: {
|
|
6523
|
+
__typename?: any;
|
|
6524
|
+
} | null) => obj is PaginatedOffers;
|
|
6525
|
+
export declare const isUploadResult: (obj?: {
|
|
6526
|
+
__typename?: any;
|
|
6527
|
+
} | null) => obj is UploadResult;
|
|
6528
|
+
export declare const isOfferAvailability: (obj?: {
|
|
6529
|
+
__typename?: any;
|
|
6530
|
+
} | null) => obj is OfferAvailability;
|
|
6531
|
+
export declare const isLeaderboardEntry: (obj?: {
|
|
6532
|
+
__typename?: any;
|
|
6533
|
+
} | null) => obj is LeaderboardEntry;
|
|
6534
|
+
export declare const isLeaderboardPagination: (obj?: {
|
|
6535
|
+
__typename?: any;
|
|
6536
|
+
} | null) => obj is LeaderboardPagination;
|
|
6537
|
+
export declare const isLeaderboardFilters: (obj?: {
|
|
6538
|
+
__typename?: any;
|
|
6539
|
+
} | null) => obj is LeaderboardFilters;
|
|
6540
|
+
export declare const isLeaderboardResponse: (obj?: {
|
|
6541
|
+
__typename?: any;
|
|
6542
|
+
} | null) => obj is LeaderboardResponse;
|
|
6543
|
+
export declare const isUserRank: (obj?: {
|
|
6544
|
+
__typename?: any;
|
|
6545
|
+
} | null) => obj is UserRank;
|
|
6546
|
+
export declare const isDashboardSummary: (obj?: {
|
|
6547
|
+
__typename?: any;
|
|
6548
|
+
} | null) => obj is DashboardSummary;
|
|
6549
|
+
export declare const isScoreHistoryEntry: (obj?: {
|
|
6550
|
+
__typename?: any;
|
|
6551
|
+
} | null) => obj is ScoreHistoryEntry;
|
|
6552
|
+
export declare const isRankHistoryEntry: (obj?: {
|
|
6553
|
+
__typename?: any;
|
|
6554
|
+
} | null) => obj is RankHistoryEntry;
|
|
6555
|
+
export declare const isRankContext: (obj?: {
|
|
6556
|
+
__typename?: any;
|
|
6557
|
+
} | null) => obj is RankContext;
|
|
6558
|
+
export declare const isActivityEntry: (obj?: {
|
|
6559
|
+
__typename?: any;
|
|
6560
|
+
} | null) => obj is ActivityEntry;
|
|
6561
|
+
export declare const isActivitiesResponse: (obj?: {
|
|
6562
|
+
__typename?: any;
|
|
6563
|
+
} | null) => obj is ActivitiesResponse;
|
|
6564
|
+
export declare const isMetricComparison: (obj?: {
|
|
6565
|
+
__typename?: any;
|
|
6566
|
+
} | null) => obj is MetricComparison;
|
|
6567
|
+
export declare const isScoreInfo: (obj?: {
|
|
6568
|
+
__typename?: any;
|
|
6569
|
+
} | null) => obj is ScoreInfo;
|
|
6570
|
+
export declare const isActivityDetail: (obj?: {
|
|
6571
|
+
__typename?: any;
|
|
6572
|
+
} | null) => obj is ActivityDetail;
|
|
6573
|
+
export declare const isTopMetric: (obj?: {
|
|
6574
|
+
__typename?: any;
|
|
6575
|
+
} | null) => obj is TopMetric;
|
|
6576
|
+
export declare const isComponentSummary: (obj?: {
|
|
6577
|
+
__typename?: any;
|
|
6578
|
+
} | null) => obj is ComponentSummary;
|
|
6579
|
+
export declare const isActivityDateEntry: (obj?: {
|
|
6580
|
+
__typename?: any;
|
|
6581
|
+
} | null) => obj is ActivityDateEntry;
|
|
6582
|
+
export declare const isActivityDatesResponse: (obj?: {
|
|
6583
|
+
__typename?: any;
|
|
6584
|
+
} | null) => obj is ActivityDatesResponse;
|
|
6585
|
+
export declare const isSocialAggregateType: (obj?: {
|
|
6586
|
+
__typename?: any;
|
|
6587
|
+
} | null) => obj is SocialAggregateType;
|
|
6588
|
+
export declare const isPostMetricType: (obj?: {
|
|
6589
|
+
__typename?: any;
|
|
6590
|
+
} | null) => obj is PostMetricType;
|
|
6591
|
+
export declare const isAveragesType: (obj?: {
|
|
6592
|
+
__typename?: any;
|
|
6593
|
+
} | null) => obj is AveragesType;
|
|
6594
|
+
export declare const isPostComparisonResultType: (obj?: {
|
|
6595
|
+
__typename?: any;
|
|
6596
|
+
} | null) => obj is PostComparisonResultType;
|
|
4799
6597
|
export declare const isQuery: (obj?: {
|
|
4800
6598
|
__typename?: any;
|
|
4801
6599
|
} | null) => obj is Query;
|
|
@@ -4814,14 +6612,62 @@ export declare const enumFundingMode: {
|
|
|
4814
6612
|
SINGLE_BUDGET: "SINGLE_BUDGET";
|
|
4815
6613
|
COMPETITION_BUDGETS: "COMPETITION_BUDGETS";
|
|
4816
6614
|
};
|
|
6615
|
+
export declare const enumEligibilityStatus: {
|
|
6616
|
+
ELIGIBLE: "ELIGIBLE";
|
|
6617
|
+
NOT_ELIGIBLE: "NOT_ELIGIBLE";
|
|
6618
|
+
UNKNOWN: "UNKNOWN";
|
|
6619
|
+
};
|
|
6620
|
+
export declare const enumForceScoreRefreshStatus: {
|
|
6621
|
+
success: "success";
|
|
6622
|
+
failed: "failed";
|
|
6623
|
+
skipped: "skipped";
|
|
6624
|
+
};
|
|
4817
6625
|
export declare const enumStripeTransferStatus: {
|
|
4818
6626
|
not_applicable: "not_applicable";
|
|
4819
6627
|
pending: "pending";
|
|
4820
6628
|
failed: "failed";
|
|
4821
6629
|
completed: "completed";
|
|
4822
6630
|
};
|
|
6631
|
+
export declare const enumActivityCategory: {
|
|
6632
|
+
TRAINING: "TRAINING";
|
|
6633
|
+
SOCIAL: "SOCIAL";
|
|
6634
|
+
COMPETITION: "COMPETITION";
|
|
6635
|
+
};
|
|
6636
|
+
export declare const enumPlatform: {
|
|
6637
|
+
INSTAGRAM: "INSTAGRAM";
|
|
6638
|
+
TIKTOK: "TIKTOK";
|
|
6639
|
+
YOUTUBE: "YOUTUBE";
|
|
6640
|
+
};
|
|
6641
|
+
export declare const enumContentType: {
|
|
6642
|
+
POST: "POST";
|
|
6643
|
+
REEL: "REEL";
|
|
6644
|
+
LIVE: "LIVE";
|
|
6645
|
+
SHORT: "SHORT";
|
|
6646
|
+
VIDEO: "VIDEO";
|
|
6647
|
+
};
|
|
6648
|
+
export declare const enumPeriodType: {
|
|
6649
|
+
DAILY: "DAILY";
|
|
6650
|
+
WEEKLY: "WEEKLY";
|
|
6651
|
+
};
|
|
6652
|
+
export declare const enumTimeRange: {
|
|
6653
|
+
SEVEN_DAYS: "SEVEN_DAYS";
|
|
6654
|
+
THIRTY_DAYS: "THIRTY_DAYS";
|
|
6655
|
+
NINETY_DAYS: "NINETY_DAYS";
|
|
6656
|
+
ONE_YEAR: "ONE_YEAR";
|
|
6657
|
+
ALL_TIME: "ALL_TIME";
|
|
6658
|
+
};
|
|
4823
6659
|
export declare const enumDonationMode: {
|
|
4824
6660
|
PUBLIC: "PUBLIC";
|
|
4825
6661
|
PRIVATE: "PRIVATE";
|
|
4826
6662
|
ANONYMOUS: "ANONYMOUS";
|
|
4827
6663
|
};
|
|
6664
|
+
export declare const enumOfferClaimStatus: {
|
|
6665
|
+
ACTIVE: "ACTIVE";
|
|
6666
|
+
EXPIRED: "EXPIRED";
|
|
6667
|
+
ALL: "ALL";
|
|
6668
|
+
};
|
|
6669
|
+
export declare const enumPostSortOption: {
|
|
6670
|
+
RECENT: "RECENT";
|
|
6671
|
+
TOP: "TOP";
|
|
6672
|
+
UNDERPERFORMING: "UNDERPERFORMING";
|
|
6673
|
+
};
|