@vertikalx/vtx-backend-client 3.0.0-dev-max.51 → 3.0.0-dev-max.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/api/vtx-base-api.d.ts +4 -0
- package/src/api/vtx-base-api.js +128 -0
- package/src/api/vtx-base-api.js.map +1 -1
- package/src/client/schema.d.ts +326 -320
- package/src/client/schema.js +68 -68
- package/src/client/schema.js.map +1 -1
- package/src/client/types.d.ts +143 -139
- package/src/client/types.js +501 -487
- package/src/client/types.js.map +1 -1
- package/tsconfig.lib.tsbuildinfo +1 -1
package/src/client/schema.d.ts
CHANGED
|
@@ -312,108 +312,17 @@ export interface CodeVerificationResponse {
|
|
|
312
312
|
error: (ErrorInfo | null);
|
|
313
313
|
__typename: 'CodeVerificationResponse';
|
|
314
314
|
}
|
|
315
|
-
export interface
|
|
316
|
-
campaigns: (Scalars['Float'] | null);
|
|
317
|
-
sponsorships: (Scalars['Float'] | null);
|
|
318
|
-
sports: (Scalars['Float'] | null);
|
|
319
|
-
athletes: (Scalars['Float'] | null);
|
|
320
|
-
__typename: 'BrandStats';
|
|
321
|
-
}
|
|
322
|
-
export interface BrandTranslation {
|
|
323
|
-
_id: Scalars['String'];
|
|
324
|
-
brandId: Scalars['String'];
|
|
325
|
-
language: Scalars['String'];
|
|
326
|
-
name: (Scalars['String'] | null);
|
|
327
|
-
slogan: (Scalars['String'] | null);
|
|
328
|
-
description: (Scalars['String'] | null);
|
|
329
|
-
logo: (AWSS3File | null);
|
|
330
|
-
banner: (AWSS3File | null);
|
|
331
|
-
__typename: 'BrandTranslation';
|
|
332
|
-
}
|
|
333
|
-
export interface Brand {
|
|
315
|
+
export interface Industry {
|
|
334
316
|
_id: Scalars['String'];
|
|
335
317
|
name: Scalars['String'];
|
|
336
|
-
|
|
337
|
-
website: (Scalars['String'] | null);
|
|
338
|
-
description: (Scalars['String'] | null);
|
|
339
|
-
approved: Scalars['Boolean'];
|
|
340
|
-
published: Scalars['Boolean'];
|
|
341
|
-
logo: (AWSS3File | null);
|
|
342
|
-
banner: (AWSS3File | null);
|
|
343
|
-
stats: (BrandStats | null);
|
|
344
|
-
operatorIds: (Scalars['String'][] | null);
|
|
345
|
-
translations: (BrandTranslation[] | null);
|
|
346
|
-
__typename: 'Brand';
|
|
347
|
-
}
|
|
348
|
-
export interface StravaTpiRideDto {
|
|
349
|
-
distanceKm: Scalars['Float'];
|
|
350
|
-
distanceKmLast: Scalars['Float'];
|
|
351
|
-
elapsedTimeMin: Scalars['Float'];
|
|
352
|
-
elapsedTimeMinLast: Scalars['Float'];
|
|
353
|
-
averageSpeedKmh: Scalars['Float'];
|
|
354
|
-
averageSpeedKmhLast: Scalars['Float'];
|
|
355
|
-
maxSpeedKmh: Scalars['Float'];
|
|
356
|
-
maxSpeedKmhLast: Scalars['Float'];
|
|
357
|
-
averageHeartRateBpm: Scalars['Float'];
|
|
358
|
-
averageHeartRateBpmLast: Scalars['Float'];
|
|
359
|
-
maxHeartRateBpm: Scalars['Float'];
|
|
360
|
-
maxHeartRateBpmLast: Scalars['Float'];
|
|
361
|
-
averageCadenceStm: Scalars['Float'];
|
|
362
|
-
averageCadenceStmLast: Scalars['Float'];
|
|
363
|
-
lastDate: (Scalars['DateTime'] | null);
|
|
364
|
-
country: (Scalars['String'] | null);
|
|
365
|
-
state: (Scalars['String'] | null);
|
|
366
|
-
city: (Scalars['String'] | null);
|
|
367
|
-
tpi: Scalars['Float'];
|
|
368
|
-
__typename: 'StravaTpiRideDto';
|
|
369
|
-
}
|
|
370
|
-
export interface StravaTpiRunDto {
|
|
371
|
-
distanceKm: Scalars['Float'];
|
|
372
|
-
distanceKmLast: Scalars['Float'];
|
|
373
|
-
elapsedTimeMin: Scalars['Float'];
|
|
374
|
-
elapsedTimeMinLast: Scalars['Float'];
|
|
375
|
-
averageSpeedKmh: Scalars['Float'];
|
|
376
|
-
averageSpeedKmhLast: Scalars['Float'];
|
|
377
|
-
maxSpeedKmh: Scalars['Float'];
|
|
378
|
-
maxSpeedKmhLast: Scalars['Float'];
|
|
379
|
-
averageHeartRateBpm: Scalars['Float'];
|
|
380
|
-
averageHeartRateBpmLast: Scalars['Float'];
|
|
381
|
-
maxHeartRateBpm: Scalars['Float'];
|
|
382
|
-
maxHeartRateBpmLast: Scalars['Float'];
|
|
383
|
-
averageCadenceStm: Scalars['Float'];
|
|
384
|
-
averageCadenceStmLast: Scalars['Float'];
|
|
385
|
-
elevHigh: Scalars['Float'];
|
|
386
|
-
elevHighLast: Scalars['Float'];
|
|
387
|
-
elevLow: Scalars['Float'];
|
|
388
|
-
elevLowLast: Scalars['Float'];
|
|
389
|
-
lastDate: (Scalars['DateTime'] | null);
|
|
390
|
-
country: (Scalars['String'] | null);
|
|
391
|
-
state: (Scalars['String'] | null);
|
|
392
|
-
city: (Scalars['String'] | null);
|
|
393
|
-
tpi: Scalars['Float'];
|
|
394
|
-
__typename: 'StravaTpiRunDto';
|
|
318
|
+
__typename: 'Industry';
|
|
395
319
|
}
|
|
396
|
-
export interface
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
averageSpeedKmhLast: Scalars['Float'];
|
|
403
|
-
maxSpeedKmh: Scalars['Float'];
|
|
404
|
-
maxSpeedKmhLast: Scalars['Float'];
|
|
405
|
-
averageHeartRateBpm: Scalars['Float'];
|
|
406
|
-
averageHeartRateBpmLast: Scalars['Float'];
|
|
407
|
-
maxHeartRateBpm: Scalars['Float'];
|
|
408
|
-
maxHeartRateBpmLast: Scalars['Float'];
|
|
409
|
-
averageCadenceStm: Scalars['Float'];
|
|
410
|
-
averageCadenceStmLast: Scalars['Float'];
|
|
411
|
-
lastDate: (Scalars['DateTime'] | null);
|
|
412
|
-
country: (Scalars['String'] | null);
|
|
413
|
-
state: (Scalars['String'] | null);
|
|
414
|
-
city: (Scalars['String'] | null);
|
|
415
|
-
tpi: Scalars['Float'];
|
|
416
|
-
__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';
|
|
417
326
|
}
|
|
418
327
|
export interface City {
|
|
419
328
|
_id: Scalars['String'];
|
|
@@ -500,48 +409,6 @@ export interface AthleteCriteria {
|
|
|
500
409
|
export type QualificationTypeUnion = (AgeQualification | GenderQualification | ScoreQualification | LocationQualification | NationalityQualification | DistanceQualification | SportsQualification | SportsLevelQualification) & {
|
|
501
410
|
__isUnion?: true;
|
|
502
411
|
};
|
|
503
|
-
export interface Industry {
|
|
504
|
-
_id: Scalars['String'];
|
|
505
|
-
name: Scalars['String'];
|
|
506
|
-
__typename: 'Industry';
|
|
507
|
-
}
|
|
508
|
-
export interface SponsorStats {
|
|
509
|
-
sponsoredAthletes: Scalars['Float'];
|
|
510
|
-
totalBrands: Scalars['Float'];
|
|
511
|
-
activeCampaigns: Scalars['Float'];
|
|
512
|
-
activeSponsorships: Scalars['Float'];
|
|
513
|
-
__typename: 'SponsorStats';
|
|
514
|
-
}
|
|
515
|
-
export interface SponsorBrand {
|
|
516
|
-
_id: Scalars['String'];
|
|
517
|
-
name: Scalars['String'];
|
|
518
|
-
slogan: (Scalars['String'] | null);
|
|
519
|
-
website: (Scalars['String'] | null);
|
|
520
|
-
description: (Scalars['String'] | null);
|
|
521
|
-
approved: Scalars['Boolean'];
|
|
522
|
-
published: Scalars['Boolean'];
|
|
523
|
-
logo: (AWSS3File | null);
|
|
524
|
-
banner: (AWSS3File | null);
|
|
525
|
-
stats: (BrandStats | null);
|
|
526
|
-
operatorIds: (Scalars['String'][] | null);
|
|
527
|
-
translations: (BrandTranslation[] | null);
|
|
528
|
-
sponsorBrandId: Scalars['String'];
|
|
529
|
-
authorizedUse: Scalars['Boolean'];
|
|
530
|
-
isAuthorizer: Scalars['Boolean'];
|
|
531
|
-
__typename: 'SponsorBrand';
|
|
532
|
-
}
|
|
533
|
-
export interface Sponsor {
|
|
534
|
-
_id: Scalars['String'];
|
|
535
|
-
name: Scalars['String'];
|
|
536
|
-
description: Scalars['String'];
|
|
537
|
-
tenant: Tenant;
|
|
538
|
-
industry: (Industry | null);
|
|
539
|
-
stats: (SponsorStats | null);
|
|
540
|
-
brands: (SponsorBrand[] | null);
|
|
541
|
-
sponsorships: (Sponsorship[] | null);
|
|
542
|
-
approved: Scalars['Boolean'];
|
|
543
|
-
__typename: 'Sponsor';
|
|
544
|
-
}
|
|
545
412
|
export interface SponsorshipItem {
|
|
546
413
|
_id: Scalars['String'];
|
|
547
414
|
quantity: Scalars['Float'];
|
|
@@ -611,6 +478,129 @@ export interface Sponsorship {
|
|
|
611
478
|
translations: (SponsorshipTranslation[] | null);
|
|
612
479
|
__typename: 'Sponsorship';
|
|
613
480
|
}
|
|
481
|
+
export interface Sponsor {
|
|
482
|
+
_id: Scalars['String'];
|
|
483
|
+
name: Scalars['String'];
|
|
484
|
+
description: Scalars['String'];
|
|
485
|
+
tenant: Tenant;
|
|
486
|
+
industry: (Industry | null);
|
|
487
|
+
stats: (SponsorStats | null);
|
|
488
|
+
brands: (SponsorBrand[] | null);
|
|
489
|
+
sponsorships: (Sponsorship[] | null);
|
|
490
|
+
approved: Scalars['Boolean'];
|
|
491
|
+
__typename: 'Sponsor';
|
|
492
|
+
}
|
|
493
|
+
export interface SponsorBrand {
|
|
494
|
+
_id: Scalars['String'];
|
|
495
|
+
sponsor: (Sponsor | null);
|
|
496
|
+
authorizedUse: Scalars['Boolean'];
|
|
497
|
+
isAuthorizer: Scalars['Boolean'];
|
|
498
|
+
__typename: 'SponsorBrand';
|
|
499
|
+
}
|
|
500
|
+
export interface BrandStats {
|
|
501
|
+
campaigns: (Scalars['Float'] | null);
|
|
502
|
+
sponsorships: (Scalars['Float'] | null);
|
|
503
|
+
sports: (Scalars['Float'] | null);
|
|
504
|
+
athletes: (Scalars['Float'] | null);
|
|
505
|
+
__typename: 'BrandStats';
|
|
506
|
+
}
|
|
507
|
+
export interface BrandTranslation {
|
|
508
|
+
_id: Scalars['String'];
|
|
509
|
+
brandId: Scalars['String'];
|
|
510
|
+
language: Scalars['String'];
|
|
511
|
+
name: (Scalars['String'] | null);
|
|
512
|
+
slogan: (Scalars['String'] | null);
|
|
513
|
+
description: (Scalars['String'] | null);
|
|
514
|
+
logo: (AWSS3File | null);
|
|
515
|
+
banner: (AWSS3File | null);
|
|
516
|
+
__typename: 'BrandTranslation';
|
|
517
|
+
}
|
|
518
|
+
export interface Brand {
|
|
519
|
+
_id: Scalars['String'];
|
|
520
|
+
name: Scalars['String'];
|
|
521
|
+
slogan: (Scalars['String'] | null);
|
|
522
|
+
website: (Scalars['String'] | null);
|
|
523
|
+
description: (Scalars['String'] | null);
|
|
524
|
+
approved: Scalars['Boolean'];
|
|
525
|
+
published: Scalars['Boolean'];
|
|
526
|
+
logo: (AWSS3File | null);
|
|
527
|
+
banner: (AWSS3File | null);
|
|
528
|
+
stats: (BrandStats | null);
|
|
529
|
+
operatorIds: (Scalars['String'][] | null);
|
|
530
|
+
translations: (BrandTranslation[] | null);
|
|
531
|
+
sponsors: (SponsorBrand[] | null);
|
|
532
|
+
__typename: 'Brand';
|
|
533
|
+
}
|
|
534
|
+
export interface StravaTpiRideDto {
|
|
535
|
+
distanceKm: Scalars['Float'];
|
|
536
|
+
distanceKmLast: Scalars['Float'];
|
|
537
|
+
elapsedTimeMin: Scalars['Float'];
|
|
538
|
+
elapsedTimeMinLast: Scalars['Float'];
|
|
539
|
+
averageSpeedKmh: Scalars['Float'];
|
|
540
|
+
averageSpeedKmhLast: Scalars['Float'];
|
|
541
|
+
maxSpeedKmh: Scalars['Float'];
|
|
542
|
+
maxSpeedKmhLast: Scalars['Float'];
|
|
543
|
+
averageHeartRateBpm: Scalars['Float'];
|
|
544
|
+
averageHeartRateBpmLast: Scalars['Float'];
|
|
545
|
+
maxHeartRateBpm: Scalars['Float'];
|
|
546
|
+
maxHeartRateBpmLast: Scalars['Float'];
|
|
547
|
+
averageCadenceStm: Scalars['Float'];
|
|
548
|
+
averageCadenceStmLast: Scalars['Float'];
|
|
549
|
+
lastDate: (Scalars['DateTime'] | null);
|
|
550
|
+
country: (Scalars['String'] | null);
|
|
551
|
+
state: (Scalars['String'] | null);
|
|
552
|
+
city: (Scalars['String'] | null);
|
|
553
|
+
tpi: Scalars['Float'];
|
|
554
|
+
__typename: 'StravaTpiRideDto';
|
|
555
|
+
}
|
|
556
|
+
export interface StravaTpiRunDto {
|
|
557
|
+
distanceKm: Scalars['Float'];
|
|
558
|
+
distanceKmLast: Scalars['Float'];
|
|
559
|
+
elapsedTimeMin: Scalars['Float'];
|
|
560
|
+
elapsedTimeMinLast: Scalars['Float'];
|
|
561
|
+
averageSpeedKmh: Scalars['Float'];
|
|
562
|
+
averageSpeedKmhLast: Scalars['Float'];
|
|
563
|
+
maxSpeedKmh: Scalars['Float'];
|
|
564
|
+
maxSpeedKmhLast: Scalars['Float'];
|
|
565
|
+
averageHeartRateBpm: Scalars['Float'];
|
|
566
|
+
averageHeartRateBpmLast: Scalars['Float'];
|
|
567
|
+
maxHeartRateBpm: Scalars['Float'];
|
|
568
|
+
maxHeartRateBpmLast: Scalars['Float'];
|
|
569
|
+
averageCadenceStm: Scalars['Float'];
|
|
570
|
+
averageCadenceStmLast: Scalars['Float'];
|
|
571
|
+
elevHigh: Scalars['Float'];
|
|
572
|
+
elevHighLast: Scalars['Float'];
|
|
573
|
+
elevLow: Scalars['Float'];
|
|
574
|
+
elevLowLast: Scalars['Float'];
|
|
575
|
+
lastDate: (Scalars['DateTime'] | null);
|
|
576
|
+
country: (Scalars['String'] | null);
|
|
577
|
+
state: (Scalars['String'] | null);
|
|
578
|
+
city: (Scalars['String'] | null);
|
|
579
|
+
tpi: Scalars['Float'];
|
|
580
|
+
__typename: 'StravaTpiRunDto';
|
|
581
|
+
}
|
|
582
|
+
export interface StravaTpiSwimDto {
|
|
583
|
+
distanceKm: Scalars['Float'];
|
|
584
|
+
distanceKmLast: Scalars['Float'];
|
|
585
|
+
elapsedTimeMin: Scalars['Float'];
|
|
586
|
+
elapsedTimeMinLast: Scalars['Float'];
|
|
587
|
+
averageSpeedKmh: Scalars['Float'];
|
|
588
|
+
averageSpeedKmhLast: Scalars['Float'];
|
|
589
|
+
maxSpeedKmh: Scalars['Float'];
|
|
590
|
+
maxSpeedKmhLast: Scalars['Float'];
|
|
591
|
+
averageHeartRateBpm: Scalars['Float'];
|
|
592
|
+
averageHeartRateBpmLast: Scalars['Float'];
|
|
593
|
+
maxHeartRateBpm: Scalars['Float'];
|
|
594
|
+
maxHeartRateBpmLast: Scalars['Float'];
|
|
595
|
+
averageCadenceStm: Scalars['Float'];
|
|
596
|
+
averageCadenceStmLast: Scalars['Float'];
|
|
597
|
+
lastDate: (Scalars['DateTime'] | null);
|
|
598
|
+
country: (Scalars['String'] | null);
|
|
599
|
+
state: (Scalars['String'] | null);
|
|
600
|
+
city: (Scalars['String'] | null);
|
|
601
|
+
tpi: Scalars['Float'];
|
|
602
|
+
__typename: 'StravaTpiSwimDto';
|
|
603
|
+
}
|
|
614
604
|
export interface FollowStats {
|
|
615
605
|
followers: Scalars['Float'];
|
|
616
606
|
followed: Scalars['Float'];
|
|
@@ -1742,10 +1732,14 @@ export interface Mutation {
|
|
|
1742
1732
|
createIndustry: Industry;
|
|
1743
1733
|
createBrand: Brand;
|
|
1744
1734
|
updateBrand: Brand;
|
|
1735
|
+
deleteBrand: Scalars['Boolean'];
|
|
1736
|
+
linkBrandToSponsor: Brand;
|
|
1737
|
+
unlinkBrandFromSponsor: Brand;
|
|
1745
1738
|
registerSponsor: Sponsor;
|
|
1746
1739
|
createSponsor: Sponsor;
|
|
1747
1740
|
sendAthleteInvitations: SponsorAthleteInvitation[];
|
|
1748
1741
|
updateSponsor: Sponsor;
|
|
1742
|
+
deleteSponsor: Scalars['Boolean'];
|
|
1749
1743
|
forceDeleteAthleteCompetition: DeleteSingleValueResponse;
|
|
1750
1744
|
registerAthlete: Athlete;
|
|
1751
1745
|
editProfileValue: EditValueResponse;
|
|
@@ -2154,112 +2148,17 @@ export interface CodeVerificationResponseGenqlSelection {
|
|
|
2154
2148
|
__typename?: boolean | number;
|
|
2155
2149
|
__scalar?: boolean | number;
|
|
2156
2150
|
}
|
|
2157
|
-
export interface
|
|
2158
|
-
campaigns?: boolean | number;
|
|
2159
|
-
sponsorships?: boolean | number;
|
|
2160
|
-
sports?: boolean | number;
|
|
2161
|
-
athletes?: boolean | number;
|
|
2162
|
-
__typename?: boolean | number;
|
|
2163
|
-
__scalar?: boolean | number;
|
|
2164
|
-
}
|
|
2165
|
-
export interface BrandTranslationGenqlSelection {
|
|
2166
|
-
_id?: boolean | number;
|
|
2167
|
-
brandId?: boolean | number;
|
|
2168
|
-
language?: boolean | number;
|
|
2169
|
-
name?: boolean | number;
|
|
2170
|
-
slogan?: boolean | number;
|
|
2171
|
-
description?: boolean | number;
|
|
2172
|
-
logo?: AWSS3FileGenqlSelection;
|
|
2173
|
-
banner?: AWSS3FileGenqlSelection;
|
|
2174
|
-
__typename?: boolean | number;
|
|
2175
|
-
__scalar?: boolean | number;
|
|
2176
|
-
}
|
|
2177
|
-
export interface BrandGenqlSelection {
|
|
2151
|
+
export interface IndustryGenqlSelection {
|
|
2178
2152
|
_id?: boolean | number;
|
|
2179
|
-
name?: boolean | number;
|
|
2180
|
-
|
|
2181
|
-
|
|
2182
|
-
|
|
2183
|
-
|
|
2184
|
-
|
|
2185
|
-
|
|
2186
|
-
|
|
2187
|
-
|
|
2188
|
-
operatorIds?: boolean | number;
|
|
2189
|
-
translations?: BrandTranslationGenqlSelection;
|
|
2190
|
-
__typename?: boolean | number;
|
|
2191
|
-
__scalar?: boolean | number;
|
|
2192
|
-
}
|
|
2193
|
-
export interface StravaTpiRideDtoGenqlSelection {
|
|
2194
|
-
distanceKm?: boolean | number;
|
|
2195
|
-
distanceKmLast?: boolean | number;
|
|
2196
|
-
elapsedTimeMin?: boolean | number;
|
|
2197
|
-
elapsedTimeMinLast?: boolean | number;
|
|
2198
|
-
averageSpeedKmh?: boolean | number;
|
|
2199
|
-
averageSpeedKmhLast?: boolean | number;
|
|
2200
|
-
maxSpeedKmh?: boolean | number;
|
|
2201
|
-
maxSpeedKmhLast?: boolean | number;
|
|
2202
|
-
averageHeartRateBpm?: boolean | number;
|
|
2203
|
-
averageHeartRateBpmLast?: boolean | number;
|
|
2204
|
-
maxHeartRateBpm?: boolean | number;
|
|
2205
|
-
maxHeartRateBpmLast?: boolean | number;
|
|
2206
|
-
averageCadenceStm?: boolean | number;
|
|
2207
|
-
averageCadenceStmLast?: boolean | number;
|
|
2208
|
-
lastDate?: boolean | number;
|
|
2209
|
-
country?: boolean | number;
|
|
2210
|
-
state?: boolean | number;
|
|
2211
|
-
city?: boolean | number;
|
|
2212
|
-
tpi?: boolean | number;
|
|
2213
|
-
__typename?: boolean | number;
|
|
2214
|
-
__scalar?: boolean | number;
|
|
2215
|
-
}
|
|
2216
|
-
export interface StravaTpiRunDtoGenqlSelection {
|
|
2217
|
-
distanceKm?: boolean | number;
|
|
2218
|
-
distanceKmLast?: boolean | number;
|
|
2219
|
-
elapsedTimeMin?: boolean | number;
|
|
2220
|
-
elapsedTimeMinLast?: boolean | number;
|
|
2221
|
-
averageSpeedKmh?: boolean | number;
|
|
2222
|
-
averageSpeedKmhLast?: boolean | number;
|
|
2223
|
-
maxSpeedKmh?: boolean | number;
|
|
2224
|
-
maxSpeedKmhLast?: boolean | number;
|
|
2225
|
-
averageHeartRateBpm?: boolean | number;
|
|
2226
|
-
averageHeartRateBpmLast?: boolean | number;
|
|
2227
|
-
maxHeartRateBpm?: boolean | number;
|
|
2228
|
-
maxHeartRateBpmLast?: boolean | number;
|
|
2229
|
-
averageCadenceStm?: boolean | number;
|
|
2230
|
-
averageCadenceStmLast?: boolean | number;
|
|
2231
|
-
elevHigh?: boolean | number;
|
|
2232
|
-
elevHighLast?: boolean | number;
|
|
2233
|
-
elevLow?: boolean | number;
|
|
2234
|
-
elevLowLast?: boolean | number;
|
|
2235
|
-
lastDate?: boolean | number;
|
|
2236
|
-
country?: boolean | number;
|
|
2237
|
-
state?: boolean | number;
|
|
2238
|
-
city?: boolean | number;
|
|
2239
|
-
tpi?: boolean | number;
|
|
2240
|
-
__typename?: boolean | number;
|
|
2241
|
-
__scalar?: boolean | number;
|
|
2242
|
-
}
|
|
2243
|
-
export interface StravaTpiSwimDtoGenqlSelection {
|
|
2244
|
-
distanceKm?: boolean | number;
|
|
2245
|
-
distanceKmLast?: boolean | number;
|
|
2246
|
-
elapsedTimeMin?: boolean | number;
|
|
2247
|
-
elapsedTimeMinLast?: boolean | number;
|
|
2248
|
-
averageSpeedKmh?: boolean | number;
|
|
2249
|
-
averageSpeedKmhLast?: boolean | number;
|
|
2250
|
-
maxSpeedKmh?: boolean | number;
|
|
2251
|
-
maxSpeedKmhLast?: boolean | number;
|
|
2252
|
-
averageHeartRateBpm?: boolean | number;
|
|
2253
|
-
averageHeartRateBpmLast?: boolean | number;
|
|
2254
|
-
maxHeartRateBpm?: boolean | number;
|
|
2255
|
-
maxHeartRateBpmLast?: boolean | number;
|
|
2256
|
-
averageCadenceStm?: boolean | number;
|
|
2257
|
-
averageCadenceStmLast?: boolean | number;
|
|
2258
|
-
lastDate?: boolean | number;
|
|
2259
|
-
country?: boolean | number;
|
|
2260
|
-
state?: boolean | number;
|
|
2261
|
-
city?: boolean | number;
|
|
2262
|
-
tpi?: boolean | number;
|
|
2153
|
+
name?: boolean | number;
|
|
2154
|
+
__typename?: boolean | number;
|
|
2155
|
+
__scalar?: boolean | number;
|
|
2156
|
+
}
|
|
2157
|
+
export interface SponsorStatsGenqlSelection {
|
|
2158
|
+
sponsoredAthletes?: boolean | number;
|
|
2159
|
+
totalBrands?: boolean | number;
|
|
2160
|
+
activeCampaigns?: boolean | number;
|
|
2161
|
+
activeSponsorships?: boolean | number;
|
|
2263
2162
|
__typename?: boolean | number;
|
|
2264
2163
|
__scalar?: boolean | number;
|
|
2265
2164
|
}
|
|
@@ -2368,52 +2267,6 @@ export interface QualificationTypeUnionGenqlSelection {
|
|
|
2368
2267
|
on_SportsLevelQualification?: SportsLevelQualificationGenqlSelection;
|
|
2369
2268
|
__typename?: boolean | number;
|
|
2370
2269
|
}
|
|
2371
|
-
export interface IndustryGenqlSelection {
|
|
2372
|
-
_id?: boolean | number;
|
|
2373
|
-
name?: boolean | number;
|
|
2374
|
-
__typename?: boolean | number;
|
|
2375
|
-
__scalar?: boolean | number;
|
|
2376
|
-
}
|
|
2377
|
-
export interface SponsorStatsGenqlSelection {
|
|
2378
|
-
sponsoredAthletes?: boolean | number;
|
|
2379
|
-
totalBrands?: boolean | number;
|
|
2380
|
-
activeCampaigns?: boolean | number;
|
|
2381
|
-
activeSponsorships?: boolean | number;
|
|
2382
|
-
__typename?: boolean | number;
|
|
2383
|
-
__scalar?: boolean | number;
|
|
2384
|
-
}
|
|
2385
|
-
export interface SponsorBrandGenqlSelection {
|
|
2386
|
-
_id?: boolean | number;
|
|
2387
|
-
name?: boolean | number;
|
|
2388
|
-
slogan?: boolean | number;
|
|
2389
|
-
website?: boolean | number;
|
|
2390
|
-
description?: boolean | number;
|
|
2391
|
-
approved?: boolean | number;
|
|
2392
|
-
published?: boolean | number;
|
|
2393
|
-
logo?: AWSS3FileGenqlSelection;
|
|
2394
|
-
banner?: AWSS3FileGenqlSelection;
|
|
2395
|
-
stats?: BrandStatsGenqlSelection;
|
|
2396
|
-
operatorIds?: boolean | number;
|
|
2397
|
-
translations?: BrandTranslationGenqlSelection;
|
|
2398
|
-
sponsorBrandId?: boolean | number;
|
|
2399
|
-
authorizedUse?: boolean | number;
|
|
2400
|
-
isAuthorizer?: boolean | number;
|
|
2401
|
-
__typename?: boolean | number;
|
|
2402
|
-
__scalar?: boolean | number;
|
|
2403
|
-
}
|
|
2404
|
-
export interface SponsorGenqlSelection {
|
|
2405
|
-
_id?: boolean | number;
|
|
2406
|
-
name?: boolean | number;
|
|
2407
|
-
description?: boolean | number;
|
|
2408
|
-
tenant?: TenantGenqlSelection;
|
|
2409
|
-
industry?: IndustryGenqlSelection;
|
|
2410
|
-
stats?: SponsorStatsGenqlSelection;
|
|
2411
|
-
brands?: SponsorBrandGenqlSelection;
|
|
2412
|
-
sponsorships?: SponsorshipGenqlSelection;
|
|
2413
|
-
approved?: boolean | number;
|
|
2414
|
-
__typename?: boolean | number;
|
|
2415
|
-
__scalar?: boolean | number;
|
|
2416
|
-
}
|
|
2417
2270
|
export interface SponsorshipItemGenqlSelection {
|
|
2418
2271
|
_id?: boolean | number;
|
|
2419
2272
|
quantity?: boolean | number;
|
|
@@ -2489,6 +2342,137 @@ export interface SponsorshipGenqlSelection {
|
|
|
2489
2342
|
__typename?: boolean | number;
|
|
2490
2343
|
__scalar?: boolean | number;
|
|
2491
2344
|
}
|
|
2345
|
+
export interface SponsorGenqlSelection {
|
|
2346
|
+
_id?: boolean | number;
|
|
2347
|
+
name?: boolean | number;
|
|
2348
|
+
description?: boolean | number;
|
|
2349
|
+
tenant?: TenantGenqlSelection;
|
|
2350
|
+
industry?: IndustryGenqlSelection;
|
|
2351
|
+
stats?: SponsorStatsGenqlSelection;
|
|
2352
|
+
brands?: SponsorBrandGenqlSelection;
|
|
2353
|
+
sponsorships?: SponsorshipGenqlSelection;
|
|
2354
|
+
approved?: boolean | number;
|
|
2355
|
+
__typename?: boolean | number;
|
|
2356
|
+
__scalar?: boolean | number;
|
|
2357
|
+
}
|
|
2358
|
+
export interface SponsorBrandGenqlSelection {
|
|
2359
|
+
_id?: boolean | number;
|
|
2360
|
+
sponsor?: SponsorGenqlSelection;
|
|
2361
|
+
authorizedUse?: boolean | number;
|
|
2362
|
+
isAuthorizer?: boolean | number;
|
|
2363
|
+
__typename?: boolean | number;
|
|
2364
|
+
__scalar?: boolean | number;
|
|
2365
|
+
}
|
|
2366
|
+
export interface BrandStatsGenqlSelection {
|
|
2367
|
+
campaigns?: boolean | number;
|
|
2368
|
+
sponsorships?: boolean | number;
|
|
2369
|
+
sports?: boolean | number;
|
|
2370
|
+
athletes?: boolean | number;
|
|
2371
|
+
__typename?: boolean | number;
|
|
2372
|
+
__scalar?: boolean | number;
|
|
2373
|
+
}
|
|
2374
|
+
export interface BrandTranslationGenqlSelection {
|
|
2375
|
+
_id?: boolean | number;
|
|
2376
|
+
brandId?: boolean | number;
|
|
2377
|
+
language?: boolean | number;
|
|
2378
|
+
name?: boolean | number;
|
|
2379
|
+
slogan?: boolean | number;
|
|
2380
|
+
description?: boolean | number;
|
|
2381
|
+
logo?: AWSS3FileGenqlSelection;
|
|
2382
|
+
banner?: AWSS3FileGenqlSelection;
|
|
2383
|
+
__typename?: boolean | number;
|
|
2384
|
+
__scalar?: boolean | number;
|
|
2385
|
+
}
|
|
2386
|
+
export interface BrandGenqlSelection {
|
|
2387
|
+
_id?: boolean | number;
|
|
2388
|
+
name?: boolean | number;
|
|
2389
|
+
slogan?: boolean | number;
|
|
2390
|
+
website?: boolean | number;
|
|
2391
|
+
description?: boolean | number;
|
|
2392
|
+
approved?: boolean | number;
|
|
2393
|
+
published?: boolean | number;
|
|
2394
|
+
logo?: AWSS3FileGenqlSelection;
|
|
2395
|
+
banner?: AWSS3FileGenqlSelection;
|
|
2396
|
+
stats?: BrandStatsGenqlSelection;
|
|
2397
|
+
operatorIds?: boolean | number;
|
|
2398
|
+
translations?: BrandTranslationGenqlSelection;
|
|
2399
|
+
sponsors?: SponsorBrandGenqlSelection;
|
|
2400
|
+
__typename?: boolean | number;
|
|
2401
|
+
__scalar?: boolean | number;
|
|
2402
|
+
}
|
|
2403
|
+
export interface StravaTpiRideDtoGenqlSelection {
|
|
2404
|
+
distanceKm?: boolean | number;
|
|
2405
|
+
distanceKmLast?: boolean | number;
|
|
2406
|
+
elapsedTimeMin?: boolean | number;
|
|
2407
|
+
elapsedTimeMinLast?: boolean | number;
|
|
2408
|
+
averageSpeedKmh?: boolean | number;
|
|
2409
|
+
averageSpeedKmhLast?: boolean | number;
|
|
2410
|
+
maxSpeedKmh?: boolean | number;
|
|
2411
|
+
maxSpeedKmhLast?: boolean | number;
|
|
2412
|
+
averageHeartRateBpm?: boolean | number;
|
|
2413
|
+
averageHeartRateBpmLast?: boolean | number;
|
|
2414
|
+
maxHeartRateBpm?: boolean | number;
|
|
2415
|
+
maxHeartRateBpmLast?: boolean | number;
|
|
2416
|
+
averageCadenceStm?: boolean | number;
|
|
2417
|
+
averageCadenceStmLast?: boolean | number;
|
|
2418
|
+
lastDate?: boolean | number;
|
|
2419
|
+
country?: boolean | number;
|
|
2420
|
+
state?: boolean | number;
|
|
2421
|
+
city?: boolean | number;
|
|
2422
|
+
tpi?: boolean | number;
|
|
2423
|
+
__typename?: boolean | number;
|
|
2424
|
+
__scalar?: boolean | number;
|
|
2425
|
+
}
|
|
2426
|
+
export interface StravaTpiRunDtoGenqlSelection {
|
|
2427
|
+
distanceKm?: boolean | number;
|
|
2428
|
+
distanceKmLast?: boolean | number;
|
|
2429
|
+
elapsedTimeMin?: boolean | number;
|
|
2430
|
+
elapsedTimeMinLast?: boolean | number;
|
|
2431
|
+
averageSpeedKmh?: boolean | number;
|
|
2432
|
+
averageSpeedKmhLast?: boolean | number;
|
|
2433
|
+
maxSpeedKmh?: boolean | number;
|
|
2434
|
+
maxSpeedKmhLast?: boolean | number;
|
|
2435
|
+
averageHeartRateBpm?: boolean | number;
|
|
2436
|
+
averageHeartRateBpmLast?: boolean | number;
|
|
2437
|
+
maxHeartRateBpm?: boolean | number;
|
|
2438
|
+
maxHeartRateBpmLast?: boolean | number;
|
|
2439
|
+
averageCadenceStm?: boolean | number;
|
|
2440
|
+
averageCadenceStmLast?: boolean | number;
|
|
2441
|
+
elevHigh?: boolean | number;
|
|
2442
|
+
elevHighLast?: boolean | number;
|
|
2443
|
+
elevLow?: boolean | number;
|
|
2444
|
+
elevLowLast?: boolean | number;
|
|
2445
|
+
lastDate?: boolean | number;
|
|
2446
|
+
country?: boolean | number;
|
|
2447
|
+
state?: boolean | number;
|
|
2448
|
+
city?: boolean | number;
|
|
2449
|
+
tpi?: boolean | number;
|
|
2450
|
+
__typename?: boolean | number;
|
|
2451
|
+
__scalar?: boolean | number;
|
|
2452
|
+
}
|
|
2453
|
+
export interface StravaTpiSwimDtoGenqlSelection {
|
|
2454
|
+
distanceKm?: boolean | number;
|
|
2455
|
+
distanceKmLast?: boolean | number;
|
|
2456
|
+
elapsedTimeMin?: boolean | number;
|
|
2457
|
+
elapsedTimeMinLast?: boolean | number;
|
|
2458
|
+
averageSpeedKmh?: boolean | number;
|
|
2459
|
+
averageSpeedKmhLast?: boolean | number;
|
|
2460
|
+
maxSpeedKmh?: boolean | number;
|
|
2461
|
+
maxSpeedKmhLast?: boolean | number;
|
|
2462
|
+
averageHeartRateBpm?: boolean | number;
|
|
2463
|
+
averageHeartRateBpmLast?: boolean | number;
|
|
2464
|
+
maxHeartRateBpm?: boolean | number;
|
|
2465
|
+
maxHeartRateBpmLast?: boolean | number;
|
|
2466
|
+
averageCadenceStm?: boolean | number;
|
|
2467
|
+
averageCadenceStmLast?: boolean | number;
|
|
2468
|
+
lastDate?: boolean | number;
|
|
2469
|
+
country?: boolean | number;
|
|
2470
|
+
state?: boolean | number;
|
|
2471
|
+
city?: boolean | number;
|
|
2472
|
+
tpi?: boolean | number;
|
|
2473
|
+
__typename?: boolean | number;
|
|
2474
|
+
__scalar?: boolean | number;
|
|
2475
|
+
}
|
|
2492
2476
|
export interface FollowStatsGenqlSelection {
|
|
2493
2477
|
followers?: boolean | number;
|
|
2494
2478
|
followed?: boolean | number;
|
|
@@ -4602,6 +4586,23 @@ export interface MutationGenqlSelection {
|
|
|
4602
4586
|
input: CreateBrandDto;
|
|
4603
4587
|
};
|
|
4604
4588
|
});
|
|
4589
|
+
deleteBrand?: {
|
|
4590
|
+
__args: {
|
|
4591
|
+
id: Scalars['String'];
|
|
4592
|
+
};
|
|
4593
|
+
};
|
|
4594
|
+
linkBrandToSponsor?: (BrandGenqlSelection & {
|
|
4595
|
+
__args: {
|
|
4596
|
+
brandId: Scalars['String'];
|
|
4597
|
+
sponsorId: Scalars['String'];
|
|
4598
|
+
};
|
|
4599
|
+
});
|
|
4600
|
+
unlinkBrandFromSponsor?: (BrandGenqlSelection & {
|
|
4601
|
+
__args: {
|
|
4602
|
+
brandId: Scalars['String'];
|
|
4603
|
+
sponsorId: Scalars['String'];
|
|
4604
|
+
};
|
|
4605
|
+
});
|
|
4605
4606
|
registerSponsor?: (SponsorGenqlSelection & {
|
|
4606
4607
|
__args: {
|
|
4607
4608
|
input: RegisterSponsorInput;
|
|
@@ -4623,6 +4624,11 @@ export interface MutationGenqlSelection {
|
|
|
4623
4624
|
input: CreateSponsorDto;
|
|
4624
4625
|
};
|
|
4625
4626
|
});
|
|
4627
|
+
deleteSponsor?: {
|
|
4628
|
+
__args: {
|
|
4629
|
+
id: Scalars['String'];
|
|
4630
|
+
};
|
|
4631
|
+
};
|
|
4626
4632
|
forceDeleteAthleteCompetition?: (DeleteSingleValueResponseGenqlSelection & {
|
|
4627
4633
|
__args: {
|
|
4628
4634
|
input: DeleteSingleValueDto;
|
|
@@ -5239,24 +5245,12 @@ export declare const isTextDatabaseFile: (obj?: {
|
|
|
5239
5245
|
export declare const isCodeVerificationResponse: (obj?: {
|
|
5240
5246
|
__typename?: any;
|
|
5241
5247
|
} | null) => obj is CodeVerificationResponse;
|
|
5242
|
-
export declare const
|
|
5243
|
-
__typename?: any;
|
|
5244
|
-
} | null) => obj is BrandStats;
|
|
5245
|
-
export declare const isBrandTranslation: (obj?: {
|
|
5246
|
-
__typename?: any;
|
|
5247
|
-
} | null) => obj is BrandTranslation;
|
|
5248
|
-
export declare const isBrand: (obj?: {
|
|
5249
|
-
__typename?: any;
|
|
5250
|
-
} | null) => obj is Brand;
|
|
5251
|
-
export declare const isStravaTpiRideDto: (obj?: {
|
|
5252
|
-
__typename?: any;
|
|
5253
|
-
} | null) => obj is StravaTpiRideDto;
|
|
5254
|
-
export declare const isStravaTpiRunDto: (obj?: {
|
|
5248
|
+
export declare const isIndustry: (obj?: {
|
|
5255
5249
|
__typename?: any;
|
|
5256
|
-
} | null) => obj is
|
|
5257
|
-
export declare const
|
|
5250
|
+
} | null) => obj is Industry;
|
|
5251
|
+
export declare const isSponsorStats: (obj?: {
|
|
5258
5252
|
__typename?: any;
|
|
5259
|
-
} | null) => obj is
|
|
5253
|
+
} | null) => obj is SponsorStats;
|
|
5260
5254
|
export declare const isCity: (obj?: {
|
|
5261
5255
|
__typename?: any;
|
|
5262
5256
|
} | null) => obj is City;
|
|
@@ -5296,18 +5290,6 @@ export declare const isAthleteCriteria: (obj?: {
|
|
|
5296
5290
|
export declare const isQualificationTypeUnion: (obj?: {
|
|
5297
5291
|
__typename?: any;
|
|
5298
5292
|
} | null) => obj is QualificationTypeUnion;
|
|
5299
|
-
export declare const isIndustry: (obj?: {
|
|
5300
|
-
__typename?: any;
|
|
5301
|
-
} | null) => obj is Industry;
|
|
5302
|
-
export declare const isSponsorStats: (obj?: {
|
|
5303
|
-
__typename?: any;
|
|
5304
|
-
} | null) => obj is SponsorStats;
|
|
5305
|
-
export declare const isSponsorBrand: (obj?: {
|
|
5306
|
-
__typename?: any;
|
|
5307
|
-
} | null) => obj is SponsorBrand;
|
|
5308
|
-
export declare const isSponsor: (obj?: {
|
|
5309
|
-
__typename?: any;
|
|
5310
|
-
} | null) => obj is Sponsor;
|
|
5311
5293
|
export declare const isSponsorshipItem: (obj?: {
|
|
5312
5294
|
__typename?: any;
|
|
5313
5295
|
} | null) => obj is SponsorshipItem;
|
|
@@ -5326,6 +5308,30 @@ export declare const isSponsorshipTranslation: (obj?: {
|
|
|
5326
5308
|
export declare const isSponsorship: (obj?: {
|
|
5327
5309
|
__typename?: any;
|
|
5328
5310
|
} | null) => obj is Sponsorship;
|
|
5311
|
+
export declare const isSponsor: (obj?: {
|
|
5312
|
+
__typename?: any;
|
|
5313
|
+
} | null) => obj is Sponsor;
|
|
5314
|
+
export declare const isSponsorBrand: (obj?: {
|
|
5315
|
+
__typename?: any;
|
|
5316
|
+
} | null) => obj is SponsorBrand;
|
|
5317
|
+
export declare const isBrandStats: (obj?: {
|
|
5318
|
+
__typename?: any;
|
|
5319
|
+
} | null) => obj is BrandStats;
|
|
5320
|
+
export declare const isBrandTranslation: (obj?: {
|
|
5321
|
+
__typename?: any;
|
|
5322
|
+
} | null) => obj is BrandTranslation;
|
|
5323
|
+
export declare const isBrand: (obj?: {
|
|
5324
|
+
__typename?: any;
|
|
5325
|
+
} | null) => obj is Brand;
|
|
5326
|
+
export declare const isStravaTpiRideDto: (obj?: {
|
|
5327
|
+
__typename?: any;
|
|
5328
|
+
} | null) => obj is StravaTpiRideDto;
|
|
5329
|
+
export declare const isStravaTpiRunDto: (obj?: {
|
|
5330
|
+
__typename?: any;
|
|
5331
|
+
} | null) => obj is StravaTpiRunDto;
|
|
5332
|
+
export declare const isStravaTpiSwimDto: (obj?: {
|
|
5333
|
+
__typename?: any;
|
|
5334
|
+
} | null) => obj is StravaTpiSwimDto;
|
|
5329
5335
|
export declare const isFollowStats: (obj?: {
|
|
5330
5336
|
__typename?: any;
|
|
5331
5337
|
} | null) => obj is FollowStats;
|