@vertikalx/vtx-backend-client 3.2.1-dev.2 → 3.2.1-dev.4
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/dist/package.json +1 -1
- package/dist/src/api/domains/generated/athlete.api.js +3 -0
- package/dist/src/api/domains/generated/athlete.api.js.map +1 -1
- package/dist/src/api/domains/generated/integrations.api.js +6 -0
- package/dist/src/api/domains/generated/integrations.api.js.map +1 -1
- package/dist/src/api/domains/generated/misc.api.js +0 -3
- package/dist/src/api/domains/generated/misc.api.js.map +1 -1
- package/dist/src/api/domains/generated/vtx-base-api.augment.d.ts +4 -2
- package/dist/src/client/schema.d.ts +34 -0
- package/dist/src/client/schema.js +17 -3
- package/dist/src/client/schema.js.map +1 -1
- package/dist/src/client/types.d.ts +12 -0
- package/dist/src/client/types.js +360 -329
- package/dist/src/client/types.js.map +1 -1
- package/dist/src/generated/graphql.d.ts +271 -97
- package/dist/src/generated/graphql.js +39 -104
- package/dist/src/generated/graphql.js.map +1 -1
- package/package.json +1 -1
|
@@ -1919,6 +1919,7 @@ export type InstagramUserData = {
|
|
|
1919
1919
|
user_id: Scalars['String']['output'];
|
|
1920
1920
|
username: Scalars['String']['output'];
|
|
1921
1921
|
};
|
|
1922
|
+
export type IntegrationProvider = 'GARMIN' | 'HEALTHKIT' | 'INSTAGRAM' | 'POLAR' | 'STRAVA';
|
|
1922
1923
|
export type InviteAthletesDto = {
|
|
1923
1924
|
invitations: Array<AthleteInvitationDto>;
|
|
1924
1925
|
language?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2177,6 +2178,7 @@ export type Mutation = {
|
|
|
2177
2178
|
deleteUploadedTypeKeyFile: Awss3CallResult;
|
|
2178
2179
|
deleteUploadedUseTypeFile: Awss3CallResult;
|
|
2179
2180
|
deleteVtxUser: DeleteVtxUserResponse;
|
|
2181
|
+
disconnectProvider: Scalars['Boolean']['output'];
|
|
2180
2182
|
dismissExternalCompetitionResult: Scalars['Boolean']['output'];
|
|
2181
2183
|
dismissNotification: Scalars['Boolean']['output'];
|
|
2182
2184
|
editAlbum: Album;
|
|
@@ -2489,6 +2491,9 @@ export type MutationDeleteUploadedUseTypeFileArgs = {
|
|
|
2489
2491
|
export type MutationDeleteVtxUserArgs = {
|
|
2490
2492
|
input: DeleteVtxUserDto;
|
|
2491
2493
|
};
|
|
2494
|
+
export type MutationDisconnectProviderArgs = {
|
|
2495
|
+
provider: IntegrationProvider;
|
|
2496
|
+
};
|
|
2492
2497
|
export type MutationDismissExternalCompetitionResultArgs = {
|
|
2493
2498
|
input: DismissSuggestionDto;
|
|
2494
2499
|
};
|
|
@@ -3096,6 +3101,12 @@ export type Promotion = {
|
|
|
3096
3101
|
totalCodes: Scalars['Int']['output'];
|
|
3097
3102
|
type: Scalars['String']['output'];
|
|
3098
3103
|
};
|
|
3104
|
+
export type ProviderConnectionStatus = {
|
|
3105
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
3106
|
+
lastSync?: Maybe<Scalars['DateTime']['output']>;
|
|
3107
|
+
provider: IntegrationProvider;
|
|
3108
|
+
status: Scalars['String']['output'];
|
|
3109
|
+
};
|
|
3099
3110
|
export type PublicIntegrationStatus = {
|
|
3100
3111
|
hasInstagramIntegration: Scalars['Boolean']['output'];
|
|
3101
3112
|
hasStravaIntegration: Scalars['Boolean']['output'];
|
|
@@ -3197,6 +3208,7 @@ export type Query = {
|
|
|
3197
3208
|
getAthleteInstagramIntegration: AthleteIntegrationReference;
|
|
3198
3209
|
getAthleteIntegrations: AthleteIntegrationReference;
|
|
3199
3210
|
getAthleteMemberships: Array<AthleteMembership>;
|
|
3211
|
+
getAthleteProviderConnections: Array<ProviderConnectionStatus>;
|
|
3200
3212
|
getAthleteStravaIntegration: AthleteIntegrationReference;
|
|
3201
3213
|
getAthletes: Array<Athlete>;
|
|
3202
3214
|
getAudiencePreview: AudiencePreview;
|
|
@@ -6518,6 +6530,242 @@ export type FindAthleteForUserQuery = {
|
|
|
6518
6530
|
} | null;
|
|
6519
6531
|
};
|
|
6520
6532
|
};
|
|
6533
|
+
export type FindAthleteByIdQueryVariables = Exact<{
|
|
6534
|
+
athleteId: Scalars['String']['input'];
|
|
6535
|
+
}>;
|
|
6536
|
+
export type FindAthleteByIdQuery = {
|
|
6537
|
+
findAthleteById: {
|
|
6538
|
+
followerCount?: number | null;
|
|
6539
|
+
_id: string;
|
|
6540
|
+
firstName: string;
|
|
6541
|
+
lastName: string;
|
|
6542
|
+
screenName?: string | null;
|
|
6543
|
+
dob?: string | null;
|
|
6544
|
+
lgbt?: boolean | null;
|
|
6545
|
+
competitionGender?: string | null;
|
|
6546
|
+
trainer?: string | null;
|
|
6547
|
+
trainerUrl?: string | null;
|
|
6548
|
+
aboutMe?: string | null;
|
|
6549
|
+
totalUpcomingCompetitions?: number | null;
|
|
6550
|
+
totalPastCompetitions?: number | null;
|
|
6551
|
+
country?: {
|
|
6552
|
+
_id: string;
|
|
6553
|
+
name: string;
|
|
6554
|
+
} | null;
|
|
6555
|
+
location?: {
|
|
6556
|
+
userProvidedLatitude?: number | null;
|
|
6557
|
+
userProvidedLongitude?: number | null;
|
|
6558
|
+
cityNameGeocode?: string | null;
|
|
6559
|
+
stateNameGeocode?: string | null;
|
|
6560
|
+
countryIso2CodeGeocode?: string | null;
|
|
6561
|
+
timeZoneGeocode?: string | null;
|
|
6562
|
+
latitudeGeocode?: number | null;
|
|
6563
|
+
longitudeGeocode?: number | null;
|
|
6564
|
+
city?: {
|
|
6565
|
+
_id: string;
|
|
6566
|
+
name: string;
|
|
6567
|
+
localizedName: string;
|
|
6568
|
+
latitude?: number | null;
|
|
6569
|
+
longitude?: number | null;
|
|
6570
|
+
timezone?: string | null;
|
|
6571
|
+
state?: {
|
|
6572
|
+
_id: string;
|
|
6573
|
+
name: string;
|
|
6574
|
+
country?: {
|
|
6575
|
+
_id: string;
|
|
6576
|
+
name: string;
|
|
6577
|
+
} | null;
|
|
6578
|
+
} | null;
|
|
6579
|
+
} | null;
|
|
6580
|
+
} | null;
|
|
6581
|
+
followStats?: {
|
|
6582
|
+
followers: number;
|
|
6583
|
+
followed: number;
|
|
6584
|
+
raves: number;
|
|
6585
|
+
favorites: number;
|
|
6586
|
+
} | null;
|
|
6587
|
+
mainSport: {
|
|
6588
|
+
_id: string;
|
|
6589
|
+
name: string;
|
|
6590
|
+
};
|
|
6591
|
+
mainSportLevel: {
|
|
6592
|
+
_id: string;
|
|
6593
|
+
label: string;
|
|
6594
|
+
index: number;
|
|
6595
|
+
};
|
|
6596
|
+
scores: {
|
|
6597
|
+
vtxScore: number;
|
|
6598
|
+
socialScore: number;
|
|
6599
|
+
trainingScore: number;
|
|
6600
|
+
competitionScore: number;
|
|
6601
|
+
};
|
|
6602
|
+
rankings?: {
|
|
6603
|
+
worldRanking?: {
|
|
6604
|
+
scope: string;
|
|
6605
|
+
scopeId: string;
|
|
6606
|
+
scopeName: string;
|
|
6607
|
+
position: number;
|
|
6608
|
+
total: number;
|
|
6609
|
+
} | null;
|
|
6610
|
+
countryRanking?: {
|
|
6611
|
+
scope: string;
|
|
6612
|
+
scopeId: string;
|
|
6613
|
+
scopeName: string;
|
|
6614
|
+
position: number;
|
|
6615
|
+
total: number;
|
|
6616
|
+
} | null;
|
|
6617
|
+
stateRanking?: {
|
|
6618
|
+
scope: string;
|
|
6619
|
+
scopeId: string;
|
|
6620
|
+
scopeName: string;
|
|
6621
|
+
position: number;
|
|
6622
|
+
total: number;
|
|
6623
|
+
} | null;
|
|
6624
|
+
cityRanking?: {
|
|
6625
|
+
scope: string;
|
|
6626
|
+
scopeId: string;
|
|
6627
|
+
scopeName: string;
|
|
6628
|
+
position: number;
|
|
6629
|
+
total: number;
|
|
6630
|
+
} | null;
|
|
6631
|
+
} | null;
|
|
6632
|
+
allSports?: Array<{
|
|
6633
|
+
_id: string;
|
|
6634
|
+
name: string;
|
|
6635
|
+
}> | null;
|
|
6636
|
+
teams?: Array<{
|
|
6637
|
+
_id: string;
|
|
6638
|
+
name: string;
|
|
6639
|
+
description?: string | null;
|
|
6640
|
+
approved?: boolean | null;
|
|
6641
|
+
logo?: {
|
|
6642
|
+
_id: string;
|
|
6643
|
+
name?: string | null;
|
|
6644
|
+
contentType?: string | null;
|
|
6645
|
+
size?: number | null;
|
|
6646
|
+
useType?: string | null;
|
|
6647
|
+
url: string;
|
|
6648
|
+
key: string;
|
|
6649
|
+
} | null;
|
|
6650
|
+
banner?: {
|
|
6651
|
+
_id: string;
|
|
6652
|
+
name?: string | null;
|
|
6653
|
+
contentType?: string | null;
|
|
6654
|
+
size?: number | null;
|
|
6655
|
+
useType?: string | null;
|
|
6656
|
+
url: string;
|
|
6657
|
+
key: string;
|
|
6658
|
+
} | null;
|
|
6659
|
+
}> | null;
|
|
6660
|
+
sponsorBrands?: Array<{
|
|
6661
|
+
_id: string;
|
|
6662
|
+
name: string;
|
|
6663
|
+
slogan?: string | null;
|
|
6664
|
+
website?: string | null;
|
|
6665
|
+
description?: string | null;
|
|
6666
|
+
approved: boolean;
|
|
6667
|
+
published: boolean;
|
|
6668
|
+
operatorIds?: Array<string> | null;
|
|
6669
|
+
logo?: {
|
|
6670
|
+
_id: string;
|
|
6671
|
+
name?: string | null;
|
|
6672
|
+
contentType?: string | null;
|
|
6673
|
+
size?: number | null;
|
|
6674
|
+
useType?: string | null;
|
|
6675
|
+
url: string;
|
|
6676
|
+
key: string;
|
|
6677
|
+
} | null;
|
|
6678
|
+
stats?: {
|
|
6679
|
+
campaigns?: number | null;
|
|
6680
|
+
sponsorships?: number | null;
|
|
6681
|
+
sports?: number | null;
|
|
6682
|
+
athletes?: number | null;
|
|
6683
|
+
} | null;
|
|
6684
|
+
}> | null;
|
|
6685
|
+
competitions?: Array<{
|
|
6686
|
+
_id: string;
|
|
6687
|
+
participationDate?: string | null;
|
|
6688
|
+
event: {
|
|
6689
|
+
_id: string;
|
|
6690
|
+
name: string;
|
|
6691
|
+
eventWebSite?: string | null;
|
|
6692
|
+
startDate: string;
|
|
6693
|
+
endDate?: string | null;
|
|
6694
|
+
verified: boolean;
|
|
6695
|
+
mainSport?: {
|
|
6696
|
+
_id: string;
|
|
6697
|
+
name: string;
|
|
6698
|
+
} | null;
|
|
6699
|
+
banner?: {
|
|
6700
|
+
_id: string;
|
|
6701
|
+
name?: string | null;
|
|
6702
|
+
contentType?: string | null;
|
|
6703
|
+
size?: number | null;
|
|
6704
|
+
useType?: string | null;
|
|
6705
|
+
url: string;
|
|
6706
|
+
key: string;
|
|
6707
|
+
} | null;
|
|
6708
|
+
location?: {
|
|
6709
|
+
_id: string;
|
|
6710
|
+
userProvidedLatitude?: number | null;
|
|
6711
|
+
userProvidedLongitude?: number | null;
|
|
6712
|
+
cityNameGeocode?: string | null;
|
|
6713
|
+
stateNameGeocode?: string | null;
|
|
6714
|
+
countryIso2CodeGeocode?: string | null;
|
|
6715
|
+
timeZoneGeocode?: string | null;
|
|
6716
|
+
latitudeGeocode?: number | null;
|
|
6717
|
+
longitudeGeocode?: number | null;
|
|
6718
|
+
city?: {
|
|
6719
|
+
_id: string;
|
|
6720
|
+
name: string;
|
|
6721
|
+
localizedName: string;
|
|
6722
|
+
latitude?: number | null;
|
|
6723
|
+
longitude?: number | null;
|
|
6724
|
+
timezone?: string | null;
|
|
6725
|
+
state?: {
|
|
6726
|
+
_id: string;
|
|
6727
|
+
name: string;
|
|
6728
|
+
country?: {
|
|
6729
|
+
_id: string;
|
|
6730
|
+
name: string;
|
|
6731
|
+
} | null;
|
|
6732
|
+
} | null;
|
|
6733
|
+
} | null;
|
|
6734
|
+
} | null;
|
|
6735
|
+
};
|
|
6736
|
+
result?: {
|
|
6737
|
+
_id: string;
|
|
6738
|
+
resultType: string;
|
|
6739
|
+
position?: number | null;
|
|
6740
|
+
score?: string | null;
|
|
6741
|
+
finishTimeMS?: number | null;
|
|
6742
|
+
resultWebLink?: string | null;
|
|
6743
|
+
} | null;
|
|
6744
|
+
}> | null;
|
|
6745
|
+
profilePicture?: {
|
|
6746
|
+
_id: string;
|
|
6747
|
+
name?: string | null;
|
|
6748
|
+
contentType?: string | null;
|
|
6749
|
+
size?: number | null;
|
|
6750
|
+
useType?: string | null;
|
|
6751
|
+
url: string;
|
|
6752
|
+
key: string;
|
|
6753
|
+
} | null;
|
|
6754
|
+
cardPicture?: {
|
|
6755
|
+
_id: string;
|
|
6756
|
+
name?: string | null;
|
|
6757
|
+
contentType?: string | null;
|
|
6758
|
+
size?: number | null;
|
|
6759
|
+
useType?: string | null;
|
|
6760
|
+
url: string;
|
|
6761
|
+
key: string;
|
|
6762
|
+
} | null;
|
|
6763
|
+
preferences: {
|
|
6764
|
+
_id: string;
|
|
6765
|
+
showProfileHelper: boolean;
|
|
6766
|
+
};
|
|
6767
|
+
};
|
|
6768
|
+
};
|
|
6521
6769
|
export type FindAthleteForIdPublicQueryVariables = Exact<{
|
|
6522
6770
|
athleteId: Scalars['String']['input'];
|
|
6523
6771
|
}>;
|
|
@@ -12557,101 +12805,6 @@ export type ListSponsorOrgUsersQuery = {
|
|
|
12557
12805
|
dateSent?: string | null;
|
|
12558
12806
|
}>;
|
|
12559
12807
|
};
|
|
12560
|
-
export type FindAthleteByIdQueryVariables = Exact<{
|
|
12561
|
-
athleteId: Scalars['String']['input'];
|
|
12562
|
-
}>;
|
|
12563
|
-
export type FindAthleteByIdQuery = {
|
|
12564
|
-
findAthleteById: {
|
|
12565
|
-
_id: string;
|
|
12566
|
-
firstName: string;
|
|
12567
|
-
lastName: string;
|
|
12568
|
-
screenName?: string | null;
|
|
12569
|
-
dob?: string | null;
|
|
12570
|
-
lgbt?: boolean | null;
|
|
12571
|
-
competitionGender?: string | null;
|
|
12572
|
-
trainer?: string | null;
|
|
12573
|
-
trainerUrl?: string | null;
|
|
12574
|
-
followerCount?: number | null;
|
|
12575
|
-
totalUpcomingCompetitions?: number | null;
|
|
12576
|
-
totalPastCompetitions?: number | null;
|
|
12577
|
-
aboutMe?: string | null;
|
|
12578
|
-
biography?: string | null;
|
|
12579
|
-
suspended: boolean;
|
|
12580
|
-
onboardingComplete?: boolean | null;
|
|
12581
|
-
onboardingStep?: number | null;
|
|
12582
|
-
country?: {
|
|
12583
|
-
_id: string;
|
|
12584
|
-
name: string;
|
|
12585
|
-
} | null;
|
|
12586
|
-
location?: {
|
|
12587
|
-
_id: string;
|
|
12588
|
-
} | null;
|
|
12589
|
-
mainSport: {
|
|
12590
|
-
_id: string;
|
|
12591
|
-
name: string;
|
|
12592
|
-
};
|
|
12593
|
-
mainSportLevel: {
|
|
12594
|
-
_id: string;
|
|
12595
|
-
};
|
|
12596
|
-
profilePicture?: {
|
|
12597
|
-
_id: string;
|
|
12598
|
-
name?: string | null;
|
|
12599
|
-
} | null;
|
|
12600
|
-
cardPicture?: {
|
|
12601
|
-
_id: string;
|
|
12602
|
-
name?: string | null;
|
|
12603
|
-
} | null;
|
|
12604
|
-
bannerPicture?: {
|
|
12605
|
-
_id: string;
|
|
12606
|
-
name?: string | null;
|
|
12607
|
-
} | null;
|
|
12608
|
-
preferences: {
|
|
12609
|
-
_id: string;
|
|
12610
|
-
};
|
|
12611
|
-
allSports?: Array<{
|
|
12612
|
-
_id: string;
|
|
12613
|
-
name: string;
|
|
12614
|
-
}> | null;
|
|
12615
|
-
teams?: Array<{
|
|
12616
|
-
_id: string;
|
|
12617
|
-
name: string;
|
|
12618
|
-
}> | null;
|
|
12619
|
-
sponsorBrands?: Array<{
|
|
12620
|
-
_id: string;
|
|
12621
|
-
name: string;
|
|
12622
|
-
}> | null;
|
|
12623
|
-
competitions?: Array<{
|
|
12624
|
-
_id: string;
|
|
12625
|
-
}> | null;
|
|
12626
|
-
affiliations?: Array<{
|
|
12627
|
-
_id: string;
|
|
12628
|
-
}> | null;
|
|
12629
|
-
newsLinks?: Array<{
|
|
12630
|
-
_id: string;
|
|
12631
|
-
}> | null;
|
|
12632
|
-
channels?: Array<{
|
|
12633
|
-
_id: string;
|
|
12634
|
-
}> | null;
|
|
12635
|
-
currentCampaign?: {
|
|
12636
|
-
_id: string;
|
|
12637
|
-
} | null;
|
|
12638
|
-
fundingCampaigns?: Array<{
|
|
12639
|
-
_id: string;
|
|
12640
|
-
}> | null;
|
|
12641
|
-
stripeAccountReference?: {
|
|
12642
|
-
_id: string;
|
|
12643
|
-
} | null;
|
|
12644
|
-
albums?: Array<{
|
|
12645
|
-
_id: string;
|
|
12646
|
-
}> | null;
|
|
12647
|
-
historicalScores?: Array<{
|
|
12648
|
-
_id: string;
|
|
12649
|
-
}> | null;
|
|
12650
|
-
signedAgreements?: Array<{
|
|
12651
|
-
_id: string;
|
|
12652
|
-
}> | null;
|
|
12653
|
-
};
|
|
12654
|
-
};
|
|
12655
12808
|
export type FindAthletebyIdpublicQueryVariables = Exact<{
|
|
12656
12809
|
athleteId: Scalars['String']['input'];
|
|
12657
12810
|
}>;
|
|
@@ -13672,6 +13825,17 @@ export type GetStravaLoginUrlQueryVariables = Exact<{
|
|
|
13672
13825
|
export type GetStravaLoginUrlQuery = {
|
|
13673
13826
|
getStravaLoginUrl: string;
|
|
13674
13827
|
};
|
|
13828
|
+
export type GetAthleteProviderConnectionsQueryVariables = Exact<{
|
|
13829
|
+
[key: string]: never;
|
|
13830
|
+
}>;
|
|
13831
|
+
export type GetAthleteProviderConnectionsQuery = {
|
|
13832
|
+
getAthleteProviderConnections: Array<{
|
|
13833
|
+
provider: IntegrationProvider;
|
|
13834
|
+
status: string;
|
|
13835
|
+
lastSync?: string | null;
|
|
13836
|
+
displayName?: string | null;
|
|
13837
|
+
}>;
|
|
13838
|
+
};
|
|
13675
13839
|
export type UpdateAthleteIntegrationMutationVariables = Exact<{
|
|
13676
13840
|
type: Scalars['String']['input'];
|
|
13677
13841
|
}>;
|
|
@@ -13684,6 +13848,12 @@ export type UnlinkInstagramMutationVariables = Exact<{
|
|
|
13684
13848
|
export type UnlinkInstagramMutation = {
|
|
13685
13849
|
unlinkInstagram: boolean;
|
|
13686
13850
|
};
|
|
13851
|
+
export type DisconnectProviderMutationVariables = Exact<{
|
|
13852
|
+
provider: IntegrationProvider;
|
|
13853
|
+
}>;
|
|
13854
|
+
export type DisconnectProviderMutation = {
|
|
13855
|
+
disconnectProvider: boolean;
|
|
13856
|
+
};
|
|
13687
13857
|
export type GetLeaderboardQueryVariables = Exact<{
|
|
13688
13858
|
input?: InputMaybe<LeaderboardQueryDto>;
|
|
13689
13859
|
}>;
|
|
@@ -17618,6 +17788,7 @@ export declare const GetAiCoachUnreadNudgeCountDocument: import("graphql").Docum
|
|
|
17618
17788
|
export declare const MarkAiCoachNudgeReadDocument: import("graphql").DocumentNode;
|
|
17619
17789
|
export declare const RegisterAthleteDocument: import("graphql").DocumentNode;
|
|
17620
17790
|
export declare const FindAthleteForUserDocument: import("graphql").DocumentNode;
|
|
17791
|
+
export declare const FindAthleteByIdDocument: import("graphql").DocumentNode;
|
|
17621
17792
|
export declare const FindAthleteForIdPublicDocument: import("graphql").DocumentNode;
|
|
17622
17793
|
export declare const GetAthletesDocument: import("graphql").DocumentNode;
|
|
17623
17794
|
export declare const SearchAthletesDocument: import("graphql").DocumentNode;
|
|
@@ -17763,7 +17934,6 @@ export declare const ExistsValidSponsorForEmailDocument: import("graphql").Docum
|
|
|
17763
17934
|
export declare const SponsorsDocument: import("graphql").DocumentNode;
|
|
17764
17935
|
export declare const ListSponsorFavoritesDocument: import("graphql").DocumentNode;
|
|
17765
17936
|
export declare const ListSponsorOrgUsersDocument: import("graphql").DocumentNode;
|
|
17766
|
-
export declare const FindAthleteByIdDocument: import("graphql").DocumentNode;
|
|
17767
17937
|
export declare const FindAthletebyIdpublicDocument: import("graphql").DocumentNode;
|
|
17768
17938
|
export declare const GetAthleteAlbumIdDocument: import("graphql").DocumentNode;
|
|
17769
17939
|
export declare const QueryAthleteWithFilterDocument: import("graphql").DocumentNode;
|
|
@@ -17815,8 +17985,10 @@ export declare const GetAthleteStravaIntegrationDocument: import("graphql").Docu
|
|
|
17815
17985
|
export declare const GetAthleteInstagramIntegrationDocument: import("graphql").DocumentNode;
|
|
17816
17986
|
export declare const GetAthleteIntegrationsDocument: import("graphql").DocumentNode;
|
|
17817
17987
|
export declare const GetStravaLoginUrlDocument: import("graphql").DocumentNode;
|
|
17988
|
+
export declare const GetAthleteProviderConnectionsDocument: import("graphql").DocumentNode;
|
|
17818
17989
|
export declare const UpdateAthleteIntegrationDocument: import("graphql").DocumentNode;
|
|
17819
17990
|
export declare const UnlinkInstagramDocument: import("graphql").DocumentNode;
|
|
17991
|
+
export declare const DisconnectProviderDocument: import("graphql").DocumentNode;
|
|
17820
17992
|
export declare const GetLeaderboardDocument: import("graphql").DocumentNode;
|
|
17821
17993
|
export declare const GetUserRankDocument: import("graphql").DocumentNode;
|
|
17822
17994
|
export declare const RebuildLeaderboardCacheDocument: import("graphql").DocumentNode;
|
|
@@ -17980,6 +18152,7 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
|
|
|
17980
18152
|
MarkAiCoachNudgeRead(variables: MarkAiCoachNudgeReadMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<MarkAiCoachNudgeReadMutation>;
|
|
17981
18153
|
RegisterAthlete(variables: RegisterAthleteMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<RegisterAthleteMutation>;
|
|
17982
18154
|
FindAthleteForUser(variables: FindAthleteForUserQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<FindAthleteForUserQuery>;
|
|
18155
|
+
FindAthleteById(variables: FindAthleteByIdQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<FindAthleteByIdQuery>;
|
|
17983
18156
|
FindAthleteForIdPublic(variables: FindAthleteForIdPublicQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<FindAthleteForIdPublicQuery>;
|
|
17984
18157
|
GetAthletes(variables?: GetAthletesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetAthletesQuery>;
|
|
17985
18158
|
SearchAthletes(variables: SearchAthletesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<SearchAthletesQuery>;
|
|
@@ -18125,7 +18298,6 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
|
|
|
18125
18298
|
Sponsors(variables?: SponsorsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<SponsorsQuery>;
|
|
18126
18299
|
ListSponsorFavorites(variables?: ListSponsorFavoritesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ListSponsorFavoritesQuery>;
|
|
18127
18300
|
ListSponsorOrgUsers(variables?: ListSponsorOrgUsersQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ListSponsorOrgUsersQuery>;
|
|
18128
|
-
FindAthleteById(variables: FindAthleteByIdQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<FindAthleteByIdQuery>;
|
|
18129
18301
|
FindAthletebyIdpublic(variables: FindAthletebyIdpublicQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<FindAthletebyIdpublicQuery>;
|
|
18130
18302
|
GetAthleteAlbumId(variables: GetAthleteAlbumIdQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetAthleteAlbumIdQuery>;
|
|
18131
18303
|
QueryAthleteWithFilter(variables: QueryAthleteWithFilterQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<QueryAthleteWithFilterQuery>;
|
|
@@ -18177,8 +18349,10 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
|
|
|
18177
18349
|
GetAthleteInstagramIntegration(variables?: GetAthleteInstagramIntegrationQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetAthleteInstagramIntegrationQuery>;
|
|
18178
18350
|
GetAthleteIntegrations(variables?: GetAthleteIntegrationsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetAthleteIntegrationsQuery>;
|
|
18179
18351
|
GetStravaLoginUrl(variables?: GetStravaLoginUrlQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetStravaLoginUrlQuery>;
|
|
18352
|
+
GetAthleteProviderConnections(variables?: GetAthleteProviderConnectionsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetAthleteProviderConnectionsQuery>;
|
|
18180
18353
|
UpdateAthleteIntegration(variables: UpdateAthleteIntegrationMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<UpdateAthleteIntegrationMutation>;
|
|
18181
18354
|
UnlinkInstagram(variables?: UnlinkInstagramMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<UnlinkInstagramMutation>;
|
|
18355
|
+
DisconnectProvider(variables: DisconnectProviderMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<DisconnectProviderMutation>;
|
|
18182
18356
|
GetLeaderboard(variables?: GetLeaderboardQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetLeaderboardQuery>;
|
|
18183
18357
|
GetUserRank(variables: GetUserRankQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetUserRankQuery>;
|
|
18184
18358
|
RebuildLeaderboardCache(variables?: RebuildLeaderboardCacheMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<RebuildLeaderboardCacheMutation>;
|