@vertikalx/vtx-backend-client 3.1.2-dev.3 → 3.1.2-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/media.api.js +3 -0
- package/dist/src/api/domains/generated/media.api.js.map +1 -1
- package/dist/src/api/domains/generated/misc.api.js +143 -2
- package/dist/src/api/domains/generated/misc.api.js.map +1 -1
- package/dist/src/api/domains/generated/vtx-base-api.augment.d.ts +50 -2
- package/dist/src/client/schema.d.ts +27 -0
- package/dist/src/client/schema.js +9 -2
- package/dist/src/client/schema.js.map +1 -1
- package/dist/src/client/types.d.ts +14 -0
- package/dist/src/client/types.js +305 -272
- package/dist/src/client/types.js.map +1 -1
- package/dist/src/generated/graphql.d.ts +1321 -195
- package/dist/src/generated/graphql.js +1328 -226
- package/dist/src/generated/graphql.js.map +1 -1
- package/package.json +1 -1
|
@@ -147,6 +147,7 @@ export type ActivityEntry = {
|
|
|
147
147
|
counted: Scalars['Boolean']['output'];
|
|
148
148
|
date: Scalars['DateTime']['output'];
|
|
149
149
|
id: Scalars['String']['output'];
|
|
150
|
+
metricAverages?: Maybe<Scalars['JSONObject']['output']>;
|
|
150
151
|
metrics?: Maybe<Scalars['JSONObject']['output']>;
|
|
151
152
|
notCountedReason?: Maybe<Scalars['String']['output']>;
|
|
152
153
|
pointsEarned: Scalars['Float']['output'];
|
|
@@ -1174,6 +1175,11 @@ export type DashboardSummary = {
|
|
|
1174
1175
|
trainingScore: Scalars['Float']['output'];
|
|
1175
1176
|
vtxScore: Scalars['Float']['output'];
|
|
1176
1177
|
};
|
|
1178
|
+
export type DataExportRequest = {
|
|
1179
|
+
id: Scalars['ID']['output'];
|
|
1180
|
+
requestedAt: Scalars['String']['output'];
|
|
1181
|
+
status: Scalars['String']['output'];
|
|
1182
|
+
};
|
|
1177
1183
|
export type DatabaseFile = {
|
|
1178
1184
|
_id: Scalars['String']['output'];
|
|
1179
1185
|
contentType: Scalars['String']['output'];
|
|
@@ -1980,6 +1986,7 @@ export type Mutation = {
|
|
|
1980
1986
|
removeAdminUser: RemoveAdminUserResponse;
|
|
1981
1987
|
removeOfferClaim: Scalars['Boolean']['output'];
|
|
1982
1988
|
reorderAlbumIndex: Array<Album>;
|
|
1989
|
+
requestMyDataExport: DataExportRequest;
|
|
1983
1990
|
resetUserPassword: EditValueResponse;
|
|
1984
1991
|
saveAthleteCompetitionResult: AthleteCompetitionResult;
|
|
1985
1992
|
scheduleEmailCampaign: EmailCampaign;
|
|
@@ -2338,6 +2345,9 @@ export type MutationRemoveOfferClaimArgs = {
|
|
|
2338
2345
|
export type MutationReorderAlbumIndexArgs = {
|
|
2339
2346
|
input: EditDisplayIndexDto;
|
|
2340
2347
|
};
|
|
2348
|
+
export type MutationRequestMyDataExportArgs = {
|
|
2349
|
+
input?: InputMaybe<RequestDataExportDto>;
|
|
2350
|
+
};
|
|
2341
2351
|
export type MutationResetUserPasswordArgs = {
|
|
2342
2352
|
input: ResetPasswordDto;
|
|
2343
2353
|
};
|
|
@@ -3405,6 +3415,9 @@ export type RemoveAdminUserResponse = {
|
|
|
3405
3415
|
message?: Maybe<Scalars['String']['output']>;
|
|
3406
3416
|
success: Scalars['Boolean']['output'];
|
|
3407
3417
|
};
|
|
3418
|
+
export type RequestDataExportDto = {
|
|
3419
|
+
note?: InputMaybe<Scalars['String']['input']>;
|
|
3420
|
+
};
|
|
3408
3421
|
export type RequestItemType = 'CASH' | 'EQUIPMENT' | 'OTHER' | 'PRODUCT' | 'TRAVEL';
|
|
3409
3422
|
export type ScoreHistoryEntry = {
|
|
3410
3423
|
competitionScore?: Maybe<Scalars['Float']['output']>;
|
|
@@ -8421,6 +8434,7 @@ export type GetAthleteActivitiesQuery = {
|
|
|
8421
8434
|
counted: boolean;
|
|
8422
8435
|
notCountedReason?: string | null;
|
|
8423
8436
|
prMetrics?: Array<string> | null;
|
|
8437
|
+
metricAverages?: any | null;
|
|
8424
8438
|
}>;
|
|
8425
8439
|
};
|
|
8426
8440
|
};
|
|
@@ -11556,234 +11570,1226 @@ export type MyFollowedAthletesQuery = {
|
|
|
11556
11570
|
}>;
|
|
11557
11571
|
};
|
|
11558
11572
|
};
|
|
11559
|
-
export type
|
|
11560
|
-
|
|
11561
|
-
limit?: InputMaybe<Scalars['Float']['input']>;
|
|
11562
|
-
offset?: InputMaybe<Scalars['Float']['input']>;
|
|
11573
|
+
export type FindTenantByIdQueryVariables = Exact<{
|
|
11574
|
+
_id: Scalars['String']['input'];
|
|
11563
11575
|
}>;
|
|
11564
|
-
export type
|
|
11565
|
-
|
|
11566
|
-
|
|
11567
|
-
|
|
11568
|
-
|
|
11569
|
-
|
|
11570
|
-
|
|
11571
|
-
completed: boolean;
|
|
11572
|
-
confirmed: boolean;
|
|
11573
|
-
donationAmount: number;
|
|
11574
|
-
completedDate?: string | null;
|
|
11575
|
-
createdDate?: string | null;
|
|
11576
|
-
athleteId: string;
|
|
11577
|
-
athleteName: string;
|
|
11578
|
-
message?: string | null;
|
|
11579
|
-
athleteReference?: {
|
|
11576
|
+
export type FindTenantByIdQuery = {
|
|
11577
|
+
findTenantById: {
|
|
11578
|
+
_id: string;
|
|
11579
|
+
name: string;
|
|
11580
|
+
tenant_uri: string;
|
|
11581
|
+
email: string;
|
|
11582
|
+
domain: {
|
|
11580
11583
|
_id: string;
|
|
11581
|
-
|
|
11582
|
-
|
|
11584
|
+
name: string;
|
|
11585
|
+
};
|
|
11586
|
+
owner?: {
|
|
11583
11587
|
_id: string;
|
|
11584
11588
|
} | null;
|
|
11585
|
-
}
|
|
11589
|
+
};
|
|
11586
11590
|
};
|
|
11587
|
-
export type
|
|
11588
|
-
|
|
11591
|
+
export type FindTenantByEmailQueryVariables = Exact<{
|
|
11592
|
+
email: Scalars['String']['input'];
|
|
11593
|
+
domainId: Scalars['String']['input'];
|
|
11589
11594
|
}>;
|
|
11590
|
-
export type
|
|
11591
|
-
|
|
11595
|
+
export type FindTenantByEmailQuery = {
|
|
11596
|
+
findTenantByEmail: {
|
|
11592
11597
|
_id: string;
|
|
11593
|
-
|
|
11594
|
-
|
|
11598
|
+
name: string;
|
|
11599
|
+
tenant_uri: string;
|
|
11600
|
+
email: string;
|
|
11601
|
+
domain: {
|
|
11595
11602
|
_id: string;
|
|
11603
|
+
name: string;
|
|
11596
11604
|
};
|
|
11597
|
-
|
|
11598
|
-
|
|
11599
|
-
username: string;
|
|
11600
|
-
name?: string | null;
|
|
11601
|
-
account_type?: string | null;
|
|
11602
|
-
followers_count?: string | null;
|
|
11603
|
-
media_count?: number | null;
|
|
11604
|
-
} | null;
|
|
11605
|
-
instagramMediaData?: {
|
|
11606
|
-
data?: Array<{
|
|
11607
|
-
id: string;
|
|
11608
|
-
caption?: string | null;
|
|
11609
|
-
media_type: string;
|
|
11610
|
-
media_url?: string | null;
|
|
11611
|
-
permalink: string;
|
|
11612
|
-
thumbnail_url?: string | null;
|
|
11613
|
-
timestamp: string;
|
|
11614
|
-
username: string;
|
|
11615
|
-
like_count?: number | null;
|
|
11616
|
-
comments_count?: number | null;
|
|
11617
|
-
insights?: {
|
|
11618
|
-
data?: Array<{
|
|
11619
|
-
name: string;
|
|
11620
|
-
period: string;
|
|
11621
|
-
values: string;
|
|
11622
|
-
}> | null;
|
|
11623
|
-
} | null;
|
|
11624
|
-
}> | null;
|
|
11625
|
-
paging?: {
|
|
11626
|
-
next?: string | null;
|
|
11627
|
-
cursors?: {
|
|
11628
|
-
before?: string | null;
|
|
11629
|
-
after?: string | null;
|
|
11630
|
-
} | null;
|
|
11631
|
-
} | null;
|
|
11605
|
+
owner?: {
|
|
11606
|
+
_id: string;
|
|
11632
11607
|
} | null;
|
|
11633
11608
|
};
|
|
11634
11609
|
};
|
|
11635
|
-
export type
|
|
11610
|
+
export type GetTenantsQueryVariables = Exact<{
|
|
11636
11611
|
[key: string]: never;
|
|
11637
11612
|
}>;
|
|
11638
|
-
export type
|
|
11639
|
-
|
|
11613
|
+
export type GetTenantsQuery = {
|
|
11614
|
+
getTenants: Array<{
|
|
11640
11615
|
_id: string;
|
|
11641
|
-
|
|
11642
|
-
|
|
11616
|
+
name: string;
|
|
11617
|
+
tenant_uri: string;
|
|
11618
|
+
email: string;
|
|
11619
|
+
domain: {
|
|
11643
11620
|
_id: string;
|
|
11621
|
+
name: string;
|
|
11644
11622
|
};
|
|
11645
|
-
|
|
11646
|
-
|
|
11647
|
-
username?: string | null;
|
|
11648
|
-
firstname: string;
|
|
11649
|
-
lastname: string;
|
|
11650
|
-
bio?: string | null;
|
|
11651
|
-
city?: string | null;
|
|
11652
|
-
state?: string | null;
|
|
11653
|
-
country?: string | null;
|
|
11654
|
-
sex?: string | null;
|
|
11655
|
-
premium: boolean;
|
|
11656
|
-
profile?: string | null;
|
|
11657
|
-
created_at?: string | null;
|
|
11658
|
-
updated_at?: string | null;
|
|
11623
|
+
owner?: {
|
|
11624
|
+
_id: string;
|
|
11659
11625
|
} | null;
|
|
11626
|
+
}>;
|
|
11627
|
+
};
|
|
11628
|
+
export type IsTenantUriAvailableQueryVariables = Exact<{
|
|
11629
|
+
tenant_uri: Scalars['String']['input'];
|
|
11630
|
+
}>;
|
|
11631
|
+
export type IsTenantUriAvailableQuery = {
|
|
11632
|
+
isTenantUriAvailable: {
|
|
11633
|
+
available: boolean;
|
|
11634
|
+
valid: boolean;
|
|
11660
11635
|
};
|
|
11661
11636
|
};
|
|
11662
|
-
export type
|
|
11663
|
-
|
|
11637
|
+
export type FindUserByIdQueryVariables = Exact<{
|
|
11638
|
+
_id: Scalars['String']['input'];
|
|
11664
11639
|
}>;
|
|
11665
|
-
export type
|
|
11666
|
-
|
|
11640
|
+
export type FindUserByIdQuery = {
|
|
11641
|
+
findUserById: {
|
|
11667
11642
|
_id: string;
|
|
11668
|
-
|
|
11669
|
-
|
|
11643
|
+
loginEmail: string;
|
|
11644
|
+
suspended: boolean;
|
|
11645
|
+
loginMethods?: Array<string> | null;
|
|
11646
|
+
domains?: Array<{
|
|
11670
11647
|
_id: string;
|
|
11671
|
-
|
|
11672
|
-
|
|
11673
|
-
user_id: string;
|
|
11674
|
-
username: string;
|
|
11675
|
-
name?: string | null;
|
|
11676
|
-
account_type?: string | null;
|
|
11677
|
-
followers_count?: string | null;
|
|
11678
|
-
media_count?: number | null;
|
|
11679
|
-
} | null;
|
|
11680
|
-
instagramMediaData?: {
|
|
11681
|
-
data?: Array<{
|
|
11682
|
-
id: string;
|
|
11683
|
-
caption?: string | null;
|
|
11684
|
-
media_type: string;
|
|
11685
|
-
media_url?: string | null;
|
|
11686
|
-
permalink: string;
|
|
11687
|
-
thumbnail_url?: string | null;
|
|
11688
|
-
timestamp: string;
|
|
11689
|
-
username: string;
|
|
11690
|
-
like_count?: number | null;
|
|
11691
|
-
comments_count?: number | null;
|
|
11692
|
-
insights?: {
|
|
11693
|
-
data?: Array<{
|
|
11694
|
-
name: string;
|
|
11695
|
-
period: string;
|
|
11696
|
-
values: string;
|
|
11697
|
-
}> | null;
|
|
11698
|
-
} | null;
|
|
11699
|
-
}> | null;
|
|
11700
|
-
paging?: {
|
|
11701
|
-
next?: string | null;
|
|
11702
|
-
cursors?: {
|
|
11703
|
-
before?: string | null;
|
|
11704
|
-
after?: string | null;
|
|
11705
|
-
} | null;
|
|
11706
|
-
} | null;
|
|
11707
|
-
} | null;
|
|
11648
|
+
name: string;
|
|
11649
|
+
}> | null;
|
|
11708
11650
|
};
|
|
11709
11651
|
};
|
|
11710
|
-
export type
|
|
11711
|
-
|
|
11652
|
+
export type ValidateUserCredentialsQueryVariables = Exact<{
|
|
11653
|
+
username: Scalars['String']['input'];
|
|
11654
|
+
password: Scalars['String']['input'];
|
|
11712
11655
|
}>;
|
|
11713
|
-
export type
|
|
11714
|
-
|
|
11656
|
+
export type ValidateUserCredentialsQuery = {
|
|
11657
|
+
validateUserCredentials: {
|
|
11715
11658
|
_id: string;
|
|
11716
|
-
|
|
11717
|
-
|
|
11718
|
-
|
|
11659
|
+
loginEmail: string;
|
|
11660
|
+
suspended: boolean;
|
|
11661
|
+
loginMethods?: Array<string> | null;
|
|
11662
|
+
domains?: Array<{
|
|
11719
11663
|
_id: string;
|
|
11720
|
-
|
|
11721
|
-
|
|
11722
|
-
id: number;
|
|
11723
|
-
username?: string | null;
|
|
11724
|
-
firstname: string;
|
|
11725
|
-
lastname: string;
|
|
11726
|
-
bio?: string | null;
|
|
11727
|
-
city?: string | null;
|
|
11728
|
-
state?: string | null;
|
|
11729
|
-
country?: string | null;
|
|
11730
|
-
sex?: string | null;
|
|
11731
|
-
premium: boolean;
|
|
11732
|
-
profile?: string | null;
|
|
11733
|
-
created_at?: string | null;
|
|
11734
|
-
updated_at?: string | null;
|
|
11735
|
-
} | null;
|
|
11736
|
-
instagramUserData?: {
|
|
11737
|
-
user_id: string;
|
|
11738
|
-
username: string;
|
|
11739
|
-
name?: string | null;
|
|
11740
|
-
account_type?: string | null;
|
|
11741
|
-
followers_count?: string | null;
|
|
11742
|
-
media_count?: number | null;
|
|
11743
|
-
} | null;
|
|
11744
|
-
instagramMediaData?: {
|
|
11745
|
-
data?: Array<{
|
|
11746
|
-
id: string;
|
|
11747
|
-
caption?: string | null;
|
|
11748
|
-
media_type: string;
|
|
11749
|
-
media_url?: string | null;
|
|
11750
|
-
permalink: string;
|
|
11751
|
-
thumbnail_url?: string | null;
|
|
11752
|
-
timestamp: string;
|
|
11753
|
-
username: string;
|
|
11754
|
-
like_count?: number | null;
|
|
11755
|
-
comments_count?: number | null;
|
|
11756
|
-
insights?: {
|
|
11757
|
-
data?: Array<{
|
|
11758
|
-
name: string;
|
|
11759
|
-
period: string;
|
|
11760
|
-
values: string;
|
|
11761
|
-
}> | null;
|
|
11762
|
-
} | null;
|
|
11763
|
-
}> | null;
|
|
11764
|
-
paging?: {
|
|
11765
|
-
next?: string | null;
|
|
11766
|
-
cursors?: {
|
|
11767
|
-
before?: string | null;
|
|
11768
|
-
after?: string | null;
|
|
11769
|
-
} | null;
|
|
11770
|
-
} | null;
|
|
11771
|
-
} | null;
|
|
11664
|
+
name: string;
|
|
11665
|
+
}> | null;
|
|
11772
11666
|
};
|
|
11773
11667
|
};
|
|
11774
|
-
export type
|
|
11668
|
+
export type GetUploadUrlQueryVariables = Exact<{
|
|
11669
|
+
input: Awss3GetUploadDto;
|
|
11670
|
+
}>;
|
|
11671
|
+
export type GetUploadUrlQuery = {
|
|
11672
|
+
getUploadUrl: {
|
|
11673
|
+
uploadUrl: string;
|
|
11674
|
+
downloadUrl: string;
|
|
11675
|
+
bucket: string;
|
|
11676
|
+
key: string;
|
|
11677
|
+
};
|
|
11678
|
+
};
|
|
11679
|
+
export type IndustriesQueryVariables = Exact<{
|
|
11775
11680
|
[key: string]: never;
|
|
11776
11681
|
}>;
|
|
11777
|
-
export type
|
|
11778
|
-
|
|
11682
|
+
export type IndustriesQuery = {
|
|
11683
|
+
industries: Array<{
|
|
11684
|
+
_id: string;
|
|
11685
|
+
name: string;
|
|
11686
|
+
}>;
|
|
11779
11687
|
};
|
|
11780
|
-
export type
|
|
11781
|
-
|
|
11688
|
+
export type FindIndustryByIdQueryVariables = Exact<{
|
|
11689
|
+
industryId: Scalars['String']['input'];
|
|
11782
11690
|
}>;
|
|
11783
|
-
export type
|
|
11784
|
-
|
|
11691
|
+
export type FindIndustryByIdQuery = {
|
|
11692
|
+
findIndustryById: {
|
|
11693
|
+
_id: string;
|
|
11694
|
+
name: string;
|
|
11695
|
+
};
|
|
11785
11696
|
};
|
|
11786
|
-
export type
|
|
11697
|
+
export type BrandsQueryVariables = Exact<{
|
|
11698
|
+
[key: string]: never;
|
|
11699
|
+
}>;
|
|
11700
|
+
export type BrandsQuery = {
|
|
11701
|
+
brands: Array<{
|
|
11702
|
+
_id: string;
|
|
11703
|
+
name: string;
|
|
11704
|
+
slogan?: string | null;
|
|
11705
|
+
website?: string | null;
|
|
11706
|
+
affiliateLink?: string | null;
|
|
11707
|
+
description?: string | null;
|
|
11708
|
+
approved: boolean;
|
|
11709
|
+
published: boolean;
|
|
11710
|
+
operatorIds?: Array<string> | null;
|
|
11711
|
+
logo?: {
|
|
11712
|
+
_id: string;
|
|
11713
|
+
name?: string | null;
|
|
11714
|
+
} | null;
|
|
11715
|
+
banner?: {
|
|
11716
|
+
_id: string;
|
|
11717
|
+
name?: string | null;
|
|
11718
|
+
} | null;
|
|
11719
|
+
translations?: Array<{
|
|
11720
|
+
_id: string;
|
|
11721
|
+
name?: string | null;
|
|
11722
|
+
}> | null;
|
|
11723
|
+
sponsors?: Array<{
|
|
11724
|
+
_id: string;
|
|
11725
|
+
}> | null;
|
|
11726
|
+
}>;
|
|
11727
|
+
};
|
|
11728
|
+
export type GetBrandByNameQueryVariables = Exact<{
|
|
11729
|
+
name: Scalars['String']['input'];
|
|
11730
|
+
translations: Scalars['Boolean']['input'];
|
|
11731
|
+
}>;
|
|
11732
|
+
export type GetBrandByNameQuery = {
|
|
11733
|
+
getBrandByName: {
|
|
11734
|
+
_id: string;
|
|
11735
|
+
name: string;
|
|
11736
|
+
slogan?: string | null;
|
|
11737
|
+
website?: string | null;
|
|
11738
|
+
affiliateLink?: string | null;
|
|
11739
|
+
description?: string | null;
|
|
11740
|
+
approved: boolean;
|
|
11741
|
+
published: boolean;
|
|
11742
|
+
operatorIds?: Array<string> | null;
|
|
11743
|
+
logo?: {
|
|
11744
|
+
_id: string;
|
|
11745
|
+
name?: string | null;
|
|
11746
|
+
} | null;
|
|
11747
|
+
banner?: {
|
|
11748
|
+
_id: string;
|
|
11749
|
+
name?: string | null;
|
|
11750
|
+
} | null;
|
|
11751
|
+
translations?: Array<{
|
|
11752
|
+
_id: string;
|
|
11753
|
+
name?: string | null;
|
|
11754
|
+
}> | null;
|
|
11755
|
+
sponsors?: Array<{
|
|
11756
|
+
_id: string;
|
|
11757
|
+
}> | null;
|
|
11758
|
+
};
|
|
11759
|
+
};
|
|
11760
|
+
export type GetBrandTranslationQueryVariables = Exact<{
|
|
11761
|
+
brandId: Scalars['String']['input'];
|
|
11762
|
+
language: Scalars['String']['input'];
|
|
11763
|
+
}>;
|
|
11764
|
+
export type GetBrandTranslationQuery = {
|
|
11765
|
+
getBrandTranslation: {
|
|
11766
|
+
_id: string;
|
|
11767
|
+
brandId: string;
|
|
11768
|
+
language: string;
|
|
11769
|
+
name?: string | null;
|
|
11770
|
+
slogan?: string | null;
|
|
11771
|
+
description?: string | null;
|
|
11772
|
+
logo?: {
|
|
11773
|
+
_id: string;
|
|
11774
|
+
name?: string | null;
|
|
11775
|
+
} | null;
|
|
11776
|
+
banner?: {
|
|
11777
|
+
_id: string;
|
|
11778
|
+
name?: string | null;
|
|
11779
|
+
} | null;
|
|
11780
|
+
};
|
|
11781
|
+
};
|
|
11782
|
+
export type ExistsValidSponsorForEmailQueryVariables = Exact<{
|
|
11783
|
+
loginEmail: Scalars['String']['input'];
|
|
11784
|
+
}>;
|
|
11785
|
+
export type ExistsValidSponsorForEmailQuery = {
|
|
11786
|
+
existsValidSponsorForEmail: {
|
|
11787
|
+
_id: string;
|
|
11788
|
+
name: string;
|
|
11789
|
+
description?: string | null;
|
|
11790
|
+
approved: boolean;
|
|
11791
|
+
tenant?: {
|
|
11792
|
+
_id: string;
|
|
11793
|
+
name: string;
|
|
11794
|
+
} | null;
|
|
11795
|
+
industry?: {
|
|
11796
|
+
_id: string;
|
|
11797
|
+
name: string;
|
|
11798
|
+
} | null;
|
|
11799
|
+
brands?: Array<{
|
|
11800
|
+
_id: string;
|
|
11801
|
+
}> | null;
|
|
11802
|
+
sponsorships?: Array<{
|
|
11803
|
+
_id: string;
|
|
11804
|
+
}> | null;
|
|
11805
|
+
};
|
|
11806
|
+
};
|
|
11807
|
+
export type SponsorsQueryVariables = Exact<{
|
|
11808
|
+
[key: string]: never;
|
|
11809
|
+
}>;
|
|
11810
|
+
export type SponsorsQuery = {
|
|
11811
|
+
sponsors: Array<{
|
|
11812
|
+
_id: string;
|
|
11813
|
+
name: string;
|
|
11814
|
+
description?: string | null;
|
|
11815
|
+
approved: boolean;
|
|
11816
|
+
tenant?: {
|
|
11817
|
+
_id: string;
|
|
11818
|
+
name: string;
|
|
11819
|
+
} | null;
|
|
11820
|
+
industry?: {
|
|
11821
|
+
_id: string;
|
|
11822
|
+
name: string;
|
|
11823
|
+
} | null;
|
|
11824
|
+
brands?: Array<{
|
|
11825
|
+
_id: string;
|
|
11826
|
+
}> | null;
|
|
11827
|
+
sponsorships?: Array<{
|
|
11828
|
+
_id: string;
|
|
11829
|
+
}> | null;
|
|
11830
|
+
}>;
|
|
11831
|
+
};
|
|
11832
|
+
export type FindAthleteByIdQueryVariables = Exact<{
|
|
11833
|
+
athleteId: Scalars['String']['input'];
|
|
11834
|
+
}>;
|
|
11835
|
+
export type FindAthleteByIdQuery = {
|
|
11836
|
+
findAthleteById: {
|
|
11837
|
+
_id: string;
|
|
11838
|
+
firstName: string;
|
|
11839
|
+
lastName: string;
|
|
11840
|
+
screenName?: string | null;
|
|
11841
|
+
dob?: string | null;
|
|
11842
|
+
lgbt?: boolean | null;
|
|
11843
|
+
competitionGender?: string | null;
|
|
11844
|
+
trainer?: string | null;
|
|
11845
|
+
trainerUrl?: string | null;
|
|
11846
|
+
totalUpcomingCompetitions?: number | null;
|
|
11847
|
+
totalPastCompetitions?: number | null;
|
|
11848
|
+
aboutMe?: string | null;
|
|
11849
|
+
biography?: string | null;
|
|
11850
|
+
suspended: boolean;
|
|
11851
|
+
onboardingComplete?: boolean | null;
|
|
11852
|
+
onboardingStep?: number | null;
|
|
11853
|
+
country?: {
|
|
11854
|
+
_id: string;
|
|
11855
|
+
name: string;
|
|
11856
|
+
} | null;
|
|
11857
|
+
location?: {
|
|
11858
|
+
_id: string;
|
|
11859
|
+
} | null;
|
|
11860
|
+
mainSport: {
|
|
11861
|
+
_id: string;
|
|
11862
|
+
name: string;
|
|
11863
|
+
};
|
|
11864
|
+
mainSportLevel: {
|
|
11865
|
+
_id: string;
|
|
11866
|
+
};
|
|
11867
|
+
profilePicture?: {
|
|
11868
|
+
_id: string;
|
|
11869
|
+
name?: string | null;
|
|
11870
|
+
} | null;
|
|
11871
|
+
cardPicture?: {
|
|
11872
|
+
_id: string;
|
|
11873
|
+
name?: string | null;
|
|
11874
|
+
} | null;
|
|
11875
|
+
bannerPicture?: {
|
|
11876
|
+
_id: string;
|
|
11877
|
+
name?: string | null;
|
|
11878
|
+
} | null;
|
|
11879
|
+
preferences: {
|
|
11880
|
+
_id: string;
|
|
11881
|
+
};
|
|
11882
|
+
allSports?: Array<{
|
|
11883
|
+
_id: string;
|
|
11884
|
+
name: string;
|
|
11885
|
+
}> | null;
|
|
11886
|
+
teams?: Array<{
|
|
11887
|
+
_id: string;
|
|
11888
|
+
name: string;
|
|
11889
|
+
}> | null;
|
|
11890
|
+
sponsorBrands?: Array<{
|
|
11891
|
+
_id: string;
|
|
11892
|
+
name: string;
|
|
11893
|
+
}> | null;
|
|
11894
|
+
competitions?: Array<{
|
|
11895
|
+
_id: string;
|
|
11896
|
+
}> | null;
|
|
11897
|
+
affiliations?: Array<{
|
|
11898
|
+
_id: string;
|
|
11899
|
+
}> | null;
|
|
11900
|
+
newsLinks?: Array<{
|
|
11901
|
+
_id: string;
|
|
11902
|
+
}> | null;
|
|
11903
|
+
channels?: Array<{
|
|
11904
|
+
_id: string;
|
|
11905
|
+
}> | null;
|
|
11906
|
+
currentCampaign?: {
|
|
11907
|
+
_id: string;
|
|
11908
|
+
} | null;
|
|
11909
|
+
fundingCampaigns?: Array<{
|
|
11910
|
+
_id: string;
|
|
11911
|
+
}> | null;
|
|
11912
|
+
stripeAccountReference?: {
|
|
11913
|
+
_id: string;
|
|
11914
|
+
} | null;
|
|
11915
|
+
albums?: Array<{
|
|
11916
|
+
_id: string;
|
|
11917
|
+
}> | null;
|
|
11918
|
+
historicalScores?: Array<{
|
|
11919
|
+
_id: string;
|
|
11920
|
+
}> | null;
|
|
11921
|
+
signedAgreements?: Array<{
|
|
11922
|
+
_id: string;
|
|
11923
|
+
}> | null;
|
|
11924
|
+
};
|
|
11925
|
+
};
|
|
11926
|
+
export type FindAthletebyIdpublicQueryVariables = Exact<{
|
|
11927
|
+
athleteId: Scalars['String']['input'];
|
|
11928
|
+
}>;
|
|
11929
|
+
export type FindAthletebyIdpublicQuery = {
|
|
11930
|
+
findAthletebyIdpublic: {
|
|
11931
|
+
_id: string;
|
|
11932
|
+
firstName: string;
|
|
11933
|
+
lastName: string;
|
|
11934
|
+
screenName?: string | null;
|
|
11935
|
+
dob?: string | null;
|
|
11936
|
+
lgbt?: boolean | null;
|
|
11937
|
+
competitionGender?: string | null;
|
|
11938
|
+
trainer?: string | null;
|
|
11939
|
+
trainerUrl?: string | null;
|
|
11940
|
+
totalUpcomingCompetitions?: number | null;
|
|
11941
|
+
totalPastCompetitions?: number | null;
|
|
11942
|
+
aboutMe?: string | null;
|
|
11943
|
+
biography?: string | null;
|
|
11944
|
+
suspended: boolean;
|
|
11945
|
+
onboardingComplete?: boolean | null;
|
|
11946
|
+
onboardingStep?: number | null;
|
|
11947
|
+
country?: {
|
|
11948
|
+
_id: string;
|
|
11949
|
+
name: string;
|
|
11950
|
+
} | null;
|
|
11951
|
+
location?: {
|
|
11952
|
+
_id: string;
|
|
11953
|
+
} | null;
|
|
11954
|
+
mainSport: {
|
|
11955
|
+
_id: string;
|
|
11956
|
+
name: string;
|
|
11957
|
+
};
|
|
11958
|
+
mainSportLevel: {
|
|
11959
|
+
_id: string;
|
|
11960
|
+
};
|
|
11961
|
+
profilePicture?: {
|
|
11962
|
+
_id: string;
|
|
11963
|
+
name?: string | null;
|
|
11964
|
+
} | null;
|
|
11965
|
+
cardPicture?: {
|
|
11966
|
+
_id: string;
|
|
11967
|
+
name?: string | null;
|
|
11968
|
+
} | null;
|
|
11969
|
+
bannerPicture?: {
|
|
11970
|
+
_id: string;
|
|
11971
|
+
name?: string | null;
|
|
11972
|
+
} | null;
|
|
11973
|
+
preferences: {
|
|
11974
|
+
_id: string;
|
|
11975
|
+
};
|
|
11976
|
+
allSports?: Array<{
|
|
11977
|
+
_id: string;
|
|
11978
|
+
name: string;
|
|
11979
|
+
}> | null;
|
|
11980
|
+
teams?: Array<{
|
|
11981
|
+
_id: string;
|
|
11982
|
+
name: string;
|
|
11983
|
+
}> | null;
|
|
11984
|
+
sponsorBrands?: Array<{
|
|
11985
|
+
_id: string;
|
|
11986
|
+
name: string;
|
|
11987
|
+
}> | null;
|
|
11988
|
+
competitions?: Array<{
|
|
11989
|
+
_id: string;
|
|
11990
|
+
}> | null;
|
|
11991
|
+
affiliations?: Array<{
|
|
11992
|
+
_id: string;
|
|
11993
|
+
}> | null;
|
|
11994
|
+
newsLinks?: Array<{
|
|
11995
|
+
_id: string;
|
|
11996
|
+
}> | null;
|
|
11997
|
+
channels?: Array<{
|
|
11998
|
+
_id: string;
|
|
11999
|
+
}> | null;
|
|
12000
|
+
currentCampaign?: {
|
|
12001
|
+
_id: string;
|
|
12002
|
+
} | null;
|
|
12003
|
+
fundingCampaigns?: Array<{
|
|
12004
|
+
_id: string;
|
|
12005
|
+
}> | null;
|
|
12006
|
+
stripeAccountReference?: {
|
|
12007
|
+
_id: string;
|
|
12008
|
+
} | null;
|
|
12009
|
+
albums?: Array<{
|
|
12010
|
+
_id: string;
|
|
12011
|
+
}> | null;
|
|
12012
|
+
historicalScores?: Array<{
|
|
12013
|
+
_id: string;
|
|
12014
|
+
}> | null;
|
|
12015
|
+
signedAgreements?: Array<{
|
|
12016
|
+
_id: string;
|
|
12017
|
+
}> | null;
|
|
12018
|
+
};
|
|
12019
|
+
};
|
|
12020
|
+
export type GetAthleteAlbumIdQueryVariables = Exact<{
|
|
12021
|
+
input: Scalars['String']['input'];
|
|
12022
|
+
}>;
|
|
12023
|
+
export type GetAthleteAlbumIdQuery = {
|
|
12024
|
+
getAthleteAlbumId: {
|
|
12025
|
+
_id: string;
|
|
12026
|
+
label: string;
|
|
12027
|
+
description?: string | null;
|
|
12028
|
+
displayIndex: number;
|
|
12029
|
+
competitionId?: string | null;
|
|
12030
|
+
visibility: string;
|
|
12031
|
+
photos?: Array<{
|
|
12032
|
+
_id: string;
|
|
12033
|
+
}> | null;
|
|
12034
|
+
};
|
|
12035
|
+
};
|
|
12036
|
+
export type QueryAthleteWithFilterQueryVariables = Exact<{
|
|
12037
|
+
input: AthleteQueryDto;
|
|
12038
|
+
}>;
|
|
12039
|
+
export type QueryAthleteWithFilterQuery = {
|
|
12040
|
+
queryAthleteWithFilter: {
|
|
12041
|
+
athletes: Array<{
|
|
12042
|
+
_id: string;
|
|
12043
|
+
}>;
|
|
12044
|
+
};
|
|
12045
|
+
};
|
|
12046
|
+
export type FindSportByIdQueryVariables = Exact<{
|
|
12047
|
+
sportId: Scalars['String']['input'];
|
|
12048
|
+
}>;
|
|
12049
|
+
export type FindSportByIdQuery = {
|
|
12050
|
+
findSportById: {
|
|
12051
|
+
_id: string;
|
|
12052
|
+
name: string;
|
|
12053
|
+
resultType: CompetitionResultType;
|
|
12054
|
+
verified?: boolean | null;
|
|
12055
|
+
priority?: number | null;
|
|
12056
|
+
};
|
|
12057
|
+
};
|
|
12058
|
+
export type GetBudgetItemUnitsQueryVariables = Exact<{
|
|
12059
|
+
[key: string]: never;
|
|
12060
|
+
}>;
|
|
12061
|
+
export type GetBudgetItemUnitsQuery = {
|
|
12062
|
+
getBudgetItemUnits: Array<{
|
|
12063
|
+
_id: string;
|
|
12064
|
+
label: string;
|
|
12065
|
+
}>;
|
|
12066
|
+
};
|
|
12067
|
+
export type OffersQueryVariables = Exact<{
|
|
12068
|
+
[key: string]: never;
|
|
12069
|
+
}>;
|
|
12070
|
+
export type OffersQuery = {
|
|
12071
|
+
offers: Array<{
|
|
12072
|
+
_id: string;
|
|
12073
|
+
name?: string | null;
|
|
12074
|
+
label: string;
|
|
12075
|
+
decription?: string | null;
|
|
12076
|
+
type: string;
|
|
12077
|
+
status: string;
|
|
12078
|
+
discountType: string;
|
|
12079
|
+
discountTypeData: string;
|
|
12080
|
+
conditions?: Array<string> | null;
|
|
12081
|
+
dateStart?: string | null;
|
|
12082
|
+
dateEnd?: string | null;
|
|
12083
|
+
dateCreated: string;
|
|
12084
|
+
totalCodes: number;
|
|
12085
|
+
availableCodes: number;
|
|
12086
|
+
disclaimer?: string | null;
|
|
12087
|
+
genericCode?: string | null;
|
|
12088
|
+
featured: boolean;
|
|
12089
|
+
offerImage?: {
|
|
12090
|
+
_id: string;
|
|
12091
|
+
name?: string | null;
|
|
12092
|
+
} | null;
|
|
12093
|
+
brand: {
|
|
12094
|
+
_id: string;
|
|
12095
|
+
name: string;
|
|
12096
|
+
};
|
|
12097
|
+
sponsor: {
|
|
12098
|
+
_id: string;
|
|
12099
|
+
name: string;
|
|
12100
|
+
};
|
|
12101
|
+
criteria?: {
|
|
12102
|
+
_id: string;
|
|
12103
|
+
} | null;
|
|
12104
|
+
availableCountries?: Array<{
|
|
12105
|
+
_id: string;
|
|
12106
|
+
name: string;
|
|
12107
|
+
}> | null;
|
|
12108
|
+
}>;
|
|
12109
|
+
};
|
|
12110
|
+
export type OffersForAthleteQueryVariables = Exact<{
|
|
12111
|
+
athleteId?: InputMaybe<Scalars['String']['input']>;
|
|
12112
|
+
}>;
|
|
12113
|
+
export type OffersForAthleteQuery = {
|
|
12114
|
+
offersForAthlete: Array<{
|
|
12115
|
+
_id: string;
|
|
12116
|
+
name?: string | null;
|
|
12117
|
+
label: string;
|
|
12118
|
+
decription?: string | null;
|
|
12119
|
+
type: string;
|
|
12120
|
+
status: string;
|
|
12121
|
+
discountType: string;
|
|
12122
|
+
discountTypeData: string;
|
|
12123
|
+
conditions?: Array<string> | null;
|
|
12124
|
+
dateStart?: string | null;
|
|
12125
|
+
dateEnd?: string | null;
|
|
12126
|
+
dateCreated: string;
|
|
12127
|
+
totalCodes: number;
|
|
12128
|
+
availableCodes: number;
|
|
12129
|
+
disclaimer?: string | null;
|
|
12130
|
+
genericCode?: string | null;
|
|
12131
|
+
featured: boolean;
|
|
12132
|
+
offerImage?: {
|
|
12133
|
+
_id: string;
|
|
12134
|
+
name?: string | null;
|
|
12135
|
+
} | null;
|
|
12136
|
+
brand: {
|
|
12137
|
+
_id: string;
|
|
12138
|
+
name: string;
|
|
12139
|
+
};
|
|
12140
|
+
sponsor: {
|
|
12141
|
+
_id: string;
|
|
12142
|
+
name: string;
|
|
12143
|
+
};
|
|
12144
|
+
criteria?: {
|
|
12145
|
+
_id: string;
|
|
12146
|
+
} | null;
|
|
12147
|
+
availableCountries?: Array<{
|
|
12148
|
+
_id: string;
|
|
12149
|
+
name: string;
|
|
12150
|
+
}> | null;
|
|
12151
|
+
}>;
|
|
12152
|
+
};
|
|
12153
|
+
export type OfferQueryVariables = Exact<{
|
|
12154
|
+
id: Scalars['String']['input'];
|
|
12155
|
+
}>;
|
|
12156
|
+
export type OfferQuery = {
|
|
12157
|
+
offer: {
|
|
12158
|
+
_id: string;
|
|
12159
|
+
name?: string | null;
|
|
12160
|
+
label: string;
|
|
12161
|
+
decription?: string | null;
|
|
12162
|
+
type: string;
|
|
12163
|
+
status: string;
|
|
12164
|
+
discountType: string;
|
|
12165
|
+
discountTypeData: string;
|
|
12166
|
+
conditions?: Array<string> | null;
|
|
12167
|
+
dateStart?: string | null;
|
|
12168
|
+
dateEnd?: string | null;
|
|
12169
|
+
dateCreated: string;
|
|
12170
|
+
totalCodes: number;
|
|
12171
|
+
availableCodes: number;
|
|
12172
|
+
disclaimer?: string | null;
|
|
12173
|
+
genericCode?: string | null;
|
|
12174
|
+
featured: boolean;
|
|
12175
|
+
offerImage?: {
|
|
12176
|
+
_id: string;
|
|
12177
|
+
name?: string | null;
|
|
12178
|
+
} | null;
|
|
12179
|
+
brand: {
|
|
12180
|
+
_id: string;
|
|
12181
|
+
name: string;
|
|
12182
|
+
};
|
|
12183
|
+
sponsor: {
|
|
12184
|
+
_id: string;
|
|
12185
|
+
name: string;
|
|
12186
|
+
};
|
|
12187
|
+
criteria?: {
|
|
12188
|
+
_id: string;
|
|
12189
|
+
} | null;
|
|
12190
|
+
availableCountries?: Array<{
|
|
12191
|
+
_id: string;
|
|
12192
|
+
name: string;
|
|
12193
|
+
}> | null;
|
|
12194
|
+
};
|
|
12195
|
+
};
|
|
12196
|
+
export type MyOfferClaimsQueryVariables = Exact<{
|
|
12197
|
+
athleteId: Scalars['String']['input'];
|
|
12198
|
+
query?: InputMaybe<OfferClaimQueryDto>;
|
|
12199
|
+
}>;
|
|
12200
|
+
export type MyOfferClaimsQuery = {
|
|
12201
|
+
myOfferClaims: Array<{
|
|
12202
|
+
_id: string;
|
|
12203
|
+
claimedAt: string;
|
|
12204
|
+
code?: string | null;
|
|
12205
|
+
offer: {
|
|
12206
|
+
_id: string;
|
|
12207
|
+
name?: string | null;
|
|
12208
|
+
};
|
|
12209
|
+
athlete: {
|
|
12210
|
+
_id: string;
|
|
12211
|
+
};
|
|
12212
|
+
}>;
|
|
12213
|
+
};
|
|
12214
|
+
export type OfferAvailabilityQueryVariables = Exact<{
|
|
12215
|
+
offerId: Scalars['String']['input'];
|
|
12216
|
+
athleteId: Scalars['String']['input'];
|
|
12217
|
+
}>;
|
|
12218
|
+
export type OfferAvailabilityQuery = {
|
|
12219
|
+
offerAvailability: {
|
|
12220
|
+
available: boolean;
|
|
12221
|
+
reason?: string | null;
|
|
12222
|
+
};
|
|
12223
|
+
};
|
|
12224
|
+
export type AthleteDashboardQueryVariables = Exact<{
|
|
12225
|
+
athleteId: Scalars['String']['input'];
|
|
12226
|
+
}>;
|
|
12227
|
+
export type AthleteDashboardQuery = {
|
|
12228
|
+
athleteDashboard: {
|
|
12229
|
+
vtxScore: number;
|
|
12230
|
+
socialScore: number;
|
|
12231
|
+
trainingScore: number;
|
|
12232
|
+
competitionScore: number;
|
|
12233
|
+
lastUpdated: string;
|
|
12234
|
+
};
|
|
12235
|
+
};
|
|
12236
|
+
export type AthleteScoreHistoryQueryVariables = Exact<{
|
|
12237
|
+
input: ScoreHistoryQueryDto;
|
|
12238
|
+
}>;
|
|
12239
|
+
export type AthleteScoreHistoryQuery = {
|
|
12240
|
+
athleteScoreHistory: Array<{
|
|
12241
|
+
date: string;
|
|
12242
|
+
vtxScore?: number | null;
|
|
12243
|
+
socialScore?: number | null;
|
|
12244
|
+
trainingScore?: number | null;
|
|
12245
|
+
competitionScore?: number | null;
|
|
12246
|
+
}>;
|
|
12247
|
+
};
|
|
12248
|
+
export type AthleteRankHistoryQueryVariables = Exact<{
|
|
12249
|
+
input: RankHistoryQueryDto;
|
|
12250
|
+
}>;
|
|
12251
|
+
export type AthleteRankHistoryQuery = {
|
|
12252
|
+
athleteRankHistory: Array<{
|
|
12253
|
+
date: string;
|
|
12254
|
+
globalRank?: number | null;
|
|
12255
|
+
countryRank?: number | null;
|
|
12256
|
+
}>;
|
|
12257
|
+
};
|
|
12258
|
+
export type AthleteRankContextQueryVariables = Exact<{
|
|
12259
|
+
input: RankContextQueryDto;
|
|
12260
|
+
}>;
|
|
12261
|
+
export type AthleteRankContextQuery = {
|
|
12262
|
+
athleteRankContext: {
|
|
12263
|
+
globalRank?: number | null;
|
|
12264
|
+
countryRank?: number | null;
|
|
12265
|
+
rankChange?: number | null;
|
|
12266
|
+
percentile?: string | null;
|
|
12267
|
+
gapToNext?: number | null;
|
|
12268
|
+
gapFromPrevious?: number | null;
|
|
12269
|
+
totalAthletes?: number | null;
|
|
12270
|
+
};
|
|
12271
|
+
};
|
|
12272
|
+
export type AthleteActivitiesQueryVariables = Exact<{
|
|
12273
|
+
input: ActivitiesQueryDto;
|
|
12274
|
+
}>;
|
|
12275
|
+
export type AthleteActivitiesQuery = {
|
|
12276
|
+
athleteActivities: {
|
|
12277
|
+
total: number;
|
|
12278
|
+
hasMore: boolean;
|
|
12279
|
+
};
|
|
12280
|
+
};
|
|
12281
|
+
export type AthleteActivityDetailQueryVariables = Exact<{
|
|
12282
|
+
input: ActivityDetailQueryDto;
|
|
12283
|
+
}>;
|
|
12284
|
+
export type AthleteActivityDetailQuery = {
|
|
12285
|
+
athleteActivityDetail: {
|
|
12286
|
+
id: string;
|
|
12287
|
+
date: string;
|
|
12288
|
+
type: string;
|
|
12289
|
+
category: string;
|
|
12290
|
+
prMetrics?: Array<string> | null;
|
|
12291
|
+
caption?: string | null;
|
|
12292
|
+
metrics: Array<{
|
|
12293
|
+
name: string;
|
|
12294
|
+
}>;
|
|
12295
|
+
};
|
|
12296
|
+
};
|
|
12297
|
+
export type AthleteComponentSummaryQueryVariables = Exact<{
|
|
12298
|
+
input: ComponentSummaryQueryDto;
|
|
12299
|
+
}>;
|
|
12300
|
+
export type AthleteComponentSummaryQuery = {
|
|
12301
|
+
athleteComponentSummary: {
|
|
12302
|
+
name: string;
|
|
12303
|
+
score: number;
|
|
12304
|
+
maxScore: number;
|
|
12305
|
+
trend?: number | null;
|
|
12306
|
+
trendPeriod: string;
|
|
12307
|
+
activityCount: number;
|
|
12308
|
+
avgScorePerActivity?: number | null;
|
|
12309
|
+
newMaxActivityIds?: Array<string> | null;
|
|
12310
|
+
metricMaxes?: any | null;
|
|
12311
|
+
topMetrics: Array<{
|
|
12312
|
+
name: string;
|
|
12313
|
+
}>;
|
|
12314
|
+
};
|
|
12315
|
+
};
|
|
12316
|
+
export type AthleteActivityDatesQueryVariables = Exact<{
|
|
12317
|
+
input: ActivityDatesQueryDto;
|
|
12318
|
+
}>;
|
|
12319
|
+
export type AthleteActivityDatesQuery = {
|
|
12320
|
+
athleteActivityDates: {
|
|
12321
|
+
__typename: 'ActivityDatesResponse';
|
|
12322
|
+
};
|
|
12323
|
+
};
|
|
12324
|
+
export type SocialAggregatesQueryVariables = Exact<{
|
|
12325
|
+
athleteId: Scalars['ID']['input'];
|
|
12326
|
+
platform: Platform;
|
|
12327
|
+
range: DateRangeInput;
|
|
12328
|
+
periodType?: InputMaybe<PeriodType>;
|
|
12329
|
+
}>;
|
|
12330
|
+
export type SocialAggregatesQuery = {
|
|
12331
|
+
socialAggregates: Array<{
|
|
12332
|
+
_id: string;
|
|
12333
|
+
athleteId: string;
|
|
12334
|
+
platform: Platform;
|
|
12335
|
+
contentType?: ContentType | null;
|
|
12336
|
+
periodType: PeriodType;
|
|
12337
|
+
periodLabel: string;
|
|
12338
|
+
periodStart: string;
|
|
12339
|
+
periodEnd: string;
|
|
12340
|
+
totalLikes: number;
|
|
12341
|
+
totalComments: number;
|
|
12342
|
+
totalShares: number;
|
|
12343
|
+
totalSaves: number;
|
|
12344
|
+
totalReach: number;
|
|
12345
|
+
totalViews: number;
|
|
12346
|
+
totalImpressions: number;
|
|
12347
|
+
postCount: number;
|
|
12348
|
+
followerCount: number;
|
|
12349
|
+
avgEngagementRate: number;
|
|
12350
|
+
avgPostEngagement: number;
|
|
12351
|
+
}>;
|
|
12352
|
+
};
|
|
12353
|
+
export type PostsWithComparisonQueryVariables = Exact<{
|
|
12354
|
+
athleteId: Scalars['ID']['input'];
|
|
12355
|
+
platform: Platform;
|
|
12356
|
+
options?: InputMaybe<PostComparisonInput>;
|
|
12357
|
+
}>;
|
|
12358
|
+
export type PostsWithComparisonQuery = {
|
|
12359
|
+
postsWithComparison: {
|
|
12360
|
+
total: number;
|
|
12361
|
+
hasMore: boolean;
|
|
12362
|
+
};
|
|
12363
|
+
};
|
|
12364
|
+
export type GetEmailCampaignQueryVariables = Exact<{
|
|
12365
|
+
id: Scalars['String']['input'];
|
|
12366
|
+
}>;
|
|
12367
|
+
export type GetEmailCampaignQuery = {
|
|
12368
|
+
getEmailCampaign: {
|
|
12369
|
+
_id: string;
|
|
12370
|
+
subject: string;
|
|
12371
|
+
templateId?: string | null;
|
|
12372
|
+
templateName?: string | null;
|
|
12373
|
+
htmlContent?: string | null;
|
|
12374
|
+
audienceFilters: any;
|
|
12375
|
+
segmentId?: string | null;
|
|
12376
|
+
status: string;
|
|
12377
|
+
scheduledFor?: string | null;
|
|
12378
|
+
sentAt?: string | null;
|
|
12379
|
+
recipientCount?: number | null;
|
|
12380
|
+
createdBy: string;
|
|
12381
|
+
createdAt: string;
|
|
12382
|
+
updatedAt?: string | null;
|
|
12383
|
+
testSentAt?: string | null;
|
|
12384
|
+
segment?: {
|
|
12385
|
+
_id: string;
|
|
12386
|
+
name: string;
|
|
12387
|
+
} | null;
|
|
12388
|
+
};
|
|
12389
|
+
};
|
|
12390
|
+
export type LoginUserFromCredentialsMutationVariables = Exact<{
|
|
12391
|
+
username: Scalars['String']['input'];
|
|
12392
|
+
password: Scalars['String']['input'];
|
|
12393
|
+
}>;
|
|
12394
|
+
export type LoginUserFromCredentialsMutation = {
|
|
12395
|
+
loginUserFromCredentials: {
|
|
12396
|
+
_id: string;
|
|
12397
|
+
loginEmail: string;
|
|
12398
|
+
suspended: boolean;
|
|
12399
|
+
loginMethods?: Array<string> | null;
|
|
12400
|
+
domains?: Array<{
|
|
12401
|
+
_id: string;
|
|
12402
|
+
name: string;
|
|
12403
|
+
}> | null;
|
|
12404
|
+
};
|
|
12405
|
+
};
|
|
12406
|
+
export type DeleteUploadedUseTypeFileMutationVariables = Exact<{
|
|
12407
|
+
input: Awss3DeleteUseTypeFileDto;
|
|
12408
|
+
}>;
|
|
12409
|
+
export type DeleteUploadedUseTypeFileMutation = {
|
|
12410
|
+
deleteUploadedUseTypeFile: {
|
|
12411
|
+
httpStatus: number;
|
|
12412
|
+
result: string;
|
|
12413
|
+
message: string;
|
|
12414
|
+
errors?: Array<string> | null;
|
|
12415
|
+
};
|
|
12416
|
+
};
|
|
12417
|
+
export type DeleteUploadedBucketFileMutationVariables = Exact<{
|
|
12418
|
+
input: Awss3DeleteBucketFileDto;
|
|
12419
|
+
}>;
|
|
12420
|
+
export type DeleteUploadedBucketFileMutation = {
|
|
12421
|
+
deleteUploadedBucketFile: {
|
|
12422
|
+
httpStatus: number;
|
|
12423
|
+
result: string;
|
|
12424
|
+
message: string;
|
|
12425
|
+
errors?: Array<string> | null;
|
|
12426
|
+
};
|
|
12427
|
+
};
|
|
12428
|
+
export type CreateIndustryMutationVariables = Exact<{
|
|
12429
|
+
input: CreateIndustryDto;
|
|
12430
|
+
}>;
|
|
12431
|
+
export type CreateIndustryMutation = {
|
|
12432
|
+
createIndustry: {
|
|
12433
|
+
_id: string;
|
|
12434
|
+
name: string;
|
|
12435
|
+
};
|
|
12436
|
+
};
|
|
12437
|
+
export type RegisterSponsorMutationVariables = Exact<{
|
|
12438
|
+
input: RegisterSponsorInput;
|
|
12439
|
+
}>;
|
|
12440
|
+
export type RegisterSponsorMutation = {
|
|
12441
|
+
registerSponsor: {
|
|
12442
|
+
_id: string;
|
|
12443
|
+
name: string;
|
|
12444
|
+
description?: string | null;
|
|
12445
|
+
approved: boolean;
|
|
12446
|
+
tenant?: {
|
|
12447
|
+
_id: string;
|
|
12448
|
+
name: string;
|
|
12449
|
+
} | null;
|
|
12450
|
+
industry?: {
|
|
12451
|
+
_id: string;
|
|
12452
|
+
name: string;
|
|
12453
|
+
} | null;
|
|
12454
|
+
brands?: Array<{
|
|
12455
|
+
_id: string;
|
|
12456
|
+
}> | null;
|
|
12457
|
+
sponsorships?: Array<{
|
|
12458
|
+
_id: string;
|
|
12459
|
+
}> | null;
|
|
12460
|
+
};
|
|
12461
|
+
};
|
|
12462
|
+
export type ReorderAlbumIndexMutationVariables = Exact<{
|
|
12463
|
+
input: EditDisplayIndexDto;
|
|
12464
|
+
}>;
|
|
12465
|
+
export type ReorderAlbumIndexMutation = {
|
|
12466
|
+
reorderAlbumIndex: Array<{
|
|
12467
|
+
_id: string;
|
|
12468
|
+
label: string;
|
|
12469
|
+
description?: string | null;
|
|
12470
|
+
displayIndex: number;
|
|
12471
|
+
competitionId?: string | null;
|
|
12472
|
+
visibility: string;
|
|
12473
|
+
photos?: Array<{
|
|
12474
|
+
_id: string;
|
|
12475
|
+
}> | null;
|
|
12476
|
+
}>;
|
|
12477
|
+
};
|
|
12478
|
+
export type EditAlbumMutationVariables = Exact<{
|
|
12479
|
+
input: UploadAlbumsPicturesDto;
|
|
12480
|
+
}>;
|
|
12481
|
+
export type EditAlbumMutation = {
|
|
12482
|
+
editAlbum: {
|
|
12483
|
+
_id: string;
|
|
12484
|
+
label: string;
|
|
12485
|
+
description?: string | null;
|
|
12486
|
+
displayIndex: number;
|
|
12487
|
+
competitionId?: string | null;
|
|
12488
|
+
visibility: string;
|
|
12489
|
+
photos?: Array<{
|
|
12490
|
+
_id: string;
|
|
12491
|
+
}> | null;
|
|
12492
|
+
};
|
|
12493
|
+
};
|
|
12494
|
+
export type DeleteAthletePhotosMutationVariables = Exact<{
|
|
12495
|
+
input: DeleteValuesDto;
|
|
12496
|
+
}>;
|
|
12497
|
+
export type DeleteAthletePhotosMutation = {
|
|
12498
|
+
deleteAthletePhotos: {
|
|
12499
|
+
deleted: Array<string>;
|
|
12500
|
+
failedToDelete: Array<string>;
|
|
12501
|
+
result: string;
|
|
12502
|
+
};
|
|
12503
|
+
};
|
|
12504
|
+
export type DeleteAthleteMembershipAffilationMutationVariables = Exact<{
|
|
12505
|
+
input: DeleteSingleValueDto;
|
|
12506
|
+
}>;
|
|
12507
|
+
export type DeleteAthleteMembershipAffilationMutation = {
|
|
12508
|
+
deleteAthleteMembershipAffilation: {
|
|
12509
|
+
idToDelete: string;
|
|
12510
|
+
deleted: boolean;
|
|
12511
|
+
};
|
|
12512
|
+
};
|
|
12513
|
+
export type ApproveTeamMutationVariables = Exact<{
|
|
12514
|
+
teamId: Scalars['String']['input'];
|
|
12515
|
+
approved: Scalars['Boolean']['input'];
|
|
12516
|
+
}>;
|
|
12517
|
+
export type ApproveTeamMutation = {
|
|
12518
|
+
approveTeam: {
|
|
12519
|
+
_id: string;
|
|
12520
|
+
name: string;
|
|
12521
|
+
description?: string | null;
|
|
12522
|
+
approved?: boolean | null;
|
|
12523
|
+
joinPolicy?: string | null;
|
|
12524
|
+
maxRosterSize?: number | null;
|
|
12525
|
+
visibility?: string | null;
|
|
12526
|
+
stripeAccountId?: string | null;
|
|
12527
|
+
vtxScore?: number | null;
|
|
12528
|
+
sports?: Array<{
|
|
12529
|
+
_id: string;
|
|
12530
|
+
name: string;
|
|
12531
|
+
}> | null;
|
|
12532
|
+
logo?: {
|
|
12533
|
+
_id: string;
|
|
12534
|
+
name?: string | null;
|
|
12535
|
+
} | null;
|
|
12536
|
+
banner?: {
|
|
12537
|
+
_id: string;
|
|
12538
|
+
name?: string | null;
|
|
12539
|
+
} | null;
|
|
12540
|
+
club?: {
|
|
12541
|
+
_id: string;
|
|
12542
|
+
name: string;
|
|
12543
|
+
} | null;
|
|
12544
|
+
athletes?: Array<{
|
|
12545
|
+
_id: string;
|
|
12546
|
+
}> | null;
|
|
12547
|
+
};
|
|
12548
|
+
};
|
|
12549
|
+
export type ApproveClubMutationVariables = Exact<{
|
|
12550
|
+
clubId: Scalars['String']['input'];
|
|
12551
|
+
approved: Scalars['Boolean']['input'];
|
|
12552
|
+
}>;
|
|
12553
|
+
export type ApproveClubMutation = {
|
|
12554
|
+
approveClub: {
|
|
12555
|
+
_id: string;
|
|
12556
|
+
name: string;
|
|
12557
|
+
description?: string | null;
|
|
12558
|
+
location?: string | null;
|
|
12559
|
+
website?: string | null;
|
|
12560
|
+
membershipType: string;
|
|
12561
|
+
feeStructure?: any | null;
|
|
12562
|
+
approved?: boolean | null;
|
|
12563
|
+
visibility: string;
|
|
12564
|
+
stripeAccountId?: string | null;
|
|
12565
|
+
sports?: Array<{
|
|
12566
|
+
_id: string;
|
|
12567
|
+
name: string;
|
|
12568
|
+
}> | null;
|
|
12569
|
+
logo?: {
|
|
12570
|
+
_id: string;
|
|
12571
|
+
name?: string | null;
|
|
12572
|
+
} | null;
|
|
12573
|
+
banner?: {
|
|
12574
|
+
_id: string;
|
|
12575
|
+
name?: string | null;
|
|
12576
|
+
} | null;
|
|
12577
|
+
teams?: Array<{
|
|
12578
|
+
_id: string;
|
|
12579
|
+
name: string;
|
|
12580
|
+
}> | null;
|
|
12581
|
+
};
|
|
12582
|
+
};
|
|
12583
|
+
export type RequestMyDataExportMutationVariables = Exact<{
|
|
12584
|
+
input?: InputMaybe<RequestDataExportDto>;
|
|
12585
|
+
}>;
|
|
12586
|
+
export type RequestMyDataExportMutation = {
|
|
12587
|
+
requestMyDataExport: {
|
|
12588
|
+
id: string;
|
|
12589
|
+
status: string;
|
|
12590
|
+
requestedAt: string;
|
|
12591
|
+
};
|
|
12592
|
+
};
|
|
12593
|
+
export type GetAthleteIntegrationsByAthleteQueryVariables = Exact<{
|
|
12594
|
+
[key: string]: never;
|
|
12595
|
+
}>;
|
|
12596
|
+
export type GetAthleteIntegrationsByAthleteQuery = {
|
|
12597
|
+
getAthleteInstagramIntegration: {
|
|
12598
|
+
_id: string;
|
|
12599
|
+
hasInstagramIntegration?: boolean | null;
|
|
12600
|
+
athlete: {
|
|
12601
|
+
_id: string;
|
|
12602
|
+
};
|
|
12603
|
+
instagramUserData?: {
|
|
12604
|
+
user_id: string;
|
|
12605
|
+
username: string;
|
|
12606
|
+
name?: string | null;
|
|
12607
|
+
account_type?: string | null;
|
|
12608
|
+
followers_count?: string | null;
|
|
12609
|
+
media_count?: number | null;
|
|
12610
|
+
} | null;
|
|
12611
|
+
instagramMediaData?: {
|
|
12612
|
+
data?: Array<{
|
|
12613
|
+
id: string;
|
|
12614
|
+
caption?: string | null;
|
|
12615
|
+
media_type: string;
|
|
12616
|
+
media_url?: string | null;
|
|
12617
|
+
permalink: string;
|
|
12618
|
+
thumbnail_url?: string | null;
|
|
12619
|
+
timestamp: string;
|
|
12620
|
+
username: string;
|
|
12621
|
+
like_count?: number | null;
|
|
12622
|
+
comments_count?: number | null;
|
|
12623
|
+
insights?: {
|
|
12624
|
+
data?: Array<{
|
|
12625
|
+
name: string;
|
|
12626
|
+
period: string;
|
|
12627
|
+
values: string;
|
|
12628
|
+
}> | null;
|
|
12629
|
+
} | null;
|
|
12630
|
+
}> | null;
|
|
12631
|
+
paging?: {
|
|
12632
|
+
next?: string | null;
|
|
12633
|
+
cursors?: {
|
|
12634
|
+
before?: string | null;
|
|
12635
|
+
after?: string | null;
|
|
12636
|
+
} | null;
|
|
12637
|
+
} | null;
|
|
12638
|
+
} | null;
|
|
12639
|
+
};
|
|
12640
|
+
};
|
|
12641
|
+
export type GetAthleteStravaIntegrationQueryVariables = Exact<{
|
|
12642
|
+
[key: string]: never;
|
|
12643
|
+
}>;
|
|
12644
|
+
export type GetAthleteStravaIntegrationQuery = {
|
|
12645
|
+
getAthleteStravaIntegration: {
|
|
12646
|
+
_id: string;
|
|
12647
|
+
hasStravaIntegration?: boolean | null;
|
|
12648
|
+
athlete: {
|
|
12649
|
+
_id: string;
|
|
12650
|
+
};
|
|
12651
|
+
stravaAthleteData?: {
|
|
12652
|
+
id: number;
|
|
12653
|
+
username?: string | null;
|
|
12654
|
+
firstname: string;
|
|
12655
|
+
lastname: string;
|
|
12656
|
+
bio?: string | null;
|
|
12657
|
+
city?: string | null;
|
|
12658
|
+
state?: string | null;
|
|
12659
|
+
country?: string | null;
|
|
12660
|
+
sex?: string | null;
|
|
12661
|
+
premium: boolean;
|
|
12662
|
+
profile?: string | null;
|
|
12663
|
+
created_at?: string | null;
|
|
12664
|
+
updated_at?: string | null;
|
|
12665
|
+
} | null;
|
|
12666
|
+
};
|
|
12667
|
+
};
|
|
12668
|
+
export type GetAthleteInstagramIntegrationQueryVariables = Exact<{
|
|
12669
|
+
[key: string]: never;
|
|
12670
|
+
}>;
|
|
12671
|
+
export type GetAthleteInstagramIntegrationQuery = {
|
|
12672
|
+
getAthleteInstagramIntegration: {
|
|
12673
|
+
_id: string;
|
|
12674
|
+
hasInstagramIntegration?: boolean | null;
|
|
12675
|
+
athlete: {
|
|
12676
|
+
_id: string;
|
|
12677
|
+
};
|
|
12678
|
+
instagramUserData?: {
|
|
12679
|
+
user_id: string;
|
|
12680
|
+
username: string;
|
|
12681
|
+
name?: string | null;
|
|
12682
|
+
account_type?: string | null;
|
|
12683
|
+
followers_count?: string | null;
|
|
12684
|
+
media_count?: number | null;
|
|
12685
|
+
} | null;
|
|
12686
|
+
instagramMediaData?: {
|
|
12687
|
+
data?: Array<{
|
|
12688
|
+
id: string;
|
|
12689
|
+
caption?: string | null;
|
|
12690
|
+
media_type: string;
|
|
12691
|
+
media_url?: string | null;
|
|
12692
|
+
permalink: string;
|
|
12693
|
+
thumbnail_url?: string | null;
|
|
12694
|
+
timestamp: string;
|
|
12695
|
+
username: string;
|
|
12696
|
+
like_count?: number | null;
|
|
12697
|
+
comments_count?: number | null;
|
|
12698
|
+
insights?: {
|
|
12699
|
+
data?: Array<{
|
|
12700
|
+
name: string;
|
|
12701
|
+
period: string;
|
|
12702
|
+
values: string;
|
|
12703
|
+
}> | null;
|
|
12704
|
+
} | null;
|
|
12705
|
+
}> | null;
|
|
12706
|
+
paging?: {
|
|
12707
|
+
next?: string | null;
|
|
12708
|
+
cursors?: {
|
|
12709
|
+
before?: string | null;
|
|
12710
|
+
after?: string | null;
|
|
12711
|
+
} | null;
|
|
12712
|
+
} | null;
|
|
12713
|
+
} | null;
|
|
12714
|
+
};
|
|
12715
|
+
};
|
|
12716
|
+
export type GetAthleteIntegrationsQueryVariables = Exact<{
|
|
12717
|
+
[key: string]: never;
|
|
12718
|
+
}>;
|
|
12719
|
+
export type GetAthleteIntegrationsQuery = {
|
|
12720
|
+
getAthleteIntegrations: {
|
|
12721
|
+
_id: string;
|
|
12722
|
+
hasStravaIntegration?: boolean | null;
|
|
12723
|
+
hasInstagramIntegration?: boolean | null;
|
|
12724
|
+
athlete: {
|
|
12725
|
+
_id: string;
|
|
12726
|
+
};
|
|
12727
|
+
stravaAthleteData?: {
|
|
12728
|
+
id: number;
|
|
12729
|
+
username?: string | null;
|
|
12730
|
+
firstname: string;
|
|
12731
|
+
lastname: string;
|
|
12732
|
+
bio?: string | null;
|
|
12733
|
+
city?: string | null;
|
|
12734
|
+
state?: string | null;
|
|
12735
|
+
country?: string | null;
|
|
12736
|
+
sex?: string | null;
|
|
12737
|
+
premium: boolean;
|
|
12738
|
+
profile?: string | null;
|
|
12739
|
+
created_at?: string | null;
|
|
12740
|
+
updated_at?: string | null;
|
|
12741
|
+
} | null;
|
|
12742
|
+
instagramUserData?: {
|
|
12743
|
+
user_id: string;
|
|
12744
|
+
username: string;
|
|
12745
|
+
name?: string | null;
|
|
12746
|
+
account_type?: string | null;
|
|
12747
|
+
followers_count?: string | null;
|
|
12748
|
+
media_count?: number | null;
|
|
12749
|
+
} | null;
|
|
12750
|
+
instagramMediaData?: {
|
|
12751
|
+
data?: Array<{
|
|
12752
|
+
id: string;
|
|
12753
|
+
caption?: string | null;
|
|
12754
|
+
media_type: string;
|
|
12755
|
+
media_url?: string | null;
|
|
12756
|
+
permalink: string;
|
|
12757
|
+
thumbnail_url?: string | null;
|
|
12758
|
+
timestamp: string;
|
|
12759
|
+
username: string;
|
|
12760
|
+
like_count?: number | null;
|
|
12761
|
+
comments_count?: number | null;
|
|
12762
|
+
insights?: {
|
|
12763
|
+
data?: Array<{
|
|
12764
|
+
name: string;
|
|
12765
|
+
period: string;
|
|
12766
|
+
values: string;
|
|
12767
|
+
}> | null;
|
|
12768
|
+
} | null;
|
|
12769
|
+
}> | null;
|
|
12770
|
+
paging?: {
|
|
12771
|
+
next?: string | null;
|
|
12772
|
+
cursors?: {
|
|
12773
|
+
before?: string | null;
|
|
12774
|
+
after?: string | null;
|
|
12775
|
+
} | null;
|
|
12776
|
+
} | null;
|
|
12777
|
+
} | null;
|
|
12778
|
+
};
|
|
12779
|
+
};
|
|
12780
|
+
export type GetStravaLoginUrlQueryVariables = Exact<{
|
|
12781
|
+
[key: string]: never;
|
|
12782
|
+
}>;
|
|
12783
|
+
export type GetStravaLoginUrlQuery = {
|
|
12784
|
+
getStravaLoginUrl: string;
|
|
12785
|
+
};
|
|
12786
|
+
export type UpdateAthleteIntegrationMutationVariables = Exact<{
|
|
12787
|
+
type: Scalars['String']['input'];
|
|
12788
|
+
}>;
|
|
12789
|
+
export type UpdateAthleteIntegrationMutation = {
|
|
12790
|
+
updateAthleteIntegration: boolean;
|
|
12791
|
+
};
|
|
12792
|
+
export type UnlinkInstagramMutationVariables = Exact<{
|
|
11787
12793
|
[key: string]: never;
|
|
11788
12794
|
}>;
|
|
11789
12795
|
export type UnlinkInstagramMutation = {
|
|
@@ -11876,6 +12882,15 @@ export type S3UploadFieldsFragment = {
|
|
|
11876
12882
|
value: string;
|
|
11877
12883
|
}>;
|
|
11878
12884
|
};
|
|
12885
|
+
export type S3UploadedFileFieldsFragment = {
|
|
12886
|
+
_id: string;
|
|
12887
|
+
name?: string | null;
|
|
12888
|
+
contentType?: string | null;
|
|
12889
|
+
size?: number | null;
|
|
12890
|
+
useType?: string | null;
|
|
12891
|
+
url: string;
|
|
12892
|
+
key: string;
|
|
12893
|
+
};
|
|
11879
12894
|
export type GetS3UploadUrlQueryVariables = Exact<{
|
|
11880
12895
|
input: Awss3GetUploadDto;
|
|
11881
12896
|
}>;
|
|
@@ -12124,6 +13139,20 @@ export type DeleteUploadedTypeKeyFileMutation = {
|
|
|
12124
13139
|
errors?: Array<string> | null;
|
|
12125
13140
|
};
|
|
12126
13141
|
};
|
|
13142
|
+
export type RegisterS3UploadedFileMutationVariables = Exact<{
|
|
13143
|
+
input: Awss3UploadedFileDto;
|
|
13144
|
+
}>;
|
|
13145
|
+
export type RegisterS3UploadedFileMutation = {
|
|
13146
|
+
registerS3UploadedFile: {
|
|
13147
|
+
_id: string;
|
|
13148
|
+
name?: string | null;
|
|
13149
|
+
contentType?: string | null;
|
|
13150
|
+
size?: number | null;
|
|
13151
|
+
useType?: string | null;
|
|
13152
|
+
url: string;
|
|
13153
|
+
key: string;
|
|
13154
|
+
};
|
|
13155
|
+
};
|
|
12127
13156
|
export type NotificationFieldsFragment = {
|
|
12128
13157
|
id: string;
|
|
12129
13158
|
type: string;
|
|
@@ -15366,6 +16395,7 @@ export declare const DonationFieldsFragmentDoc: import("graphql").DocumentNode;
|
|
|
15366
16395
|
export declare const DonationAthleteRefFragmentDoc: import("graphql").DocumentNode;
|
|
15367
16396
|
export declare const AlbumFieldsFragmentDoc: import("graphql").DocumentNode;
|
|
15368
16397
|
export declare const S3UploadFieldsFragmentDoc: import("graphql").DocumentNode;
|
|
16398
|
+
export declare const S3UploadedFileFieldsFragmentDoc: import("graphql").DocumentNode;
|
|
15369
16399
|
export declare const NotificationFieldsFragmentDoc: import("graphql").DocumentNode;
|
|
15370
16400
|
export declare const OfferBasicFieldsFragmentDoc: import("graphql").DocumentNode;
|
|
15371
16401
|
export declare const OfferImageFieldsFragmentDoc: import("graphql").DocumentNode;
|
|
@@ -15521,7 +16551,54 @@ export declare const FollowAthleteDocument: import("graphql").DocumentNode;
|
|
|
15521
16551
|
export declare const UnfollowAthleteDocument: import("graphql").DocumentNode;
|
|
15522
16552
|
export declare const IsFollowingAthleteDocument: import("graphql").DocumentNode;
|
|
15523
16553
|
export declare const MyFollowedAthletesDocument: import("graphql").DocumentNode;
|
|
15524
|
-
export declare const
|
|
16554
|
+
export declare const FindTenantByIdDocument: import("graphql").DocumentNode;
|
|
16555
|
+
export declare const FindTenantByEmailDocument: import("graphql").DocumentNode;
|
|
16556
|
+
export declare const GetTenantsDocument: import("graphql").DocumentNode;
|
|
16557
|
+
export declare const IsTenantUriAvailableDocument: import("graphql").DocumentNode;
|
|
16558
|
+
export declare const FindUserByIdDocument: import("graphql").DocumentNode;
|
|
16559
|
+
export declare const ValidateUserCredentialsDocument: import("graphql").DocumentNode;
|
|
16560
|
+
export declare const GetUploadUrlDocument: import("graphql").DocumentNode;
|
|
16561
|
+
export declare const IndustriesDocument: import("graphql").DocumentNode;
|
|
16562
|
+
export declare const FindIndustryByIdDocument: import("graphql").DocumentNode;
|
|
16563
|
+
export declare const BrandsDocument: import("graphql").DocumentNode;
|
|
16564
|
+
export declare const GetBrandByNameDocument: import("graphql").DocumentNode;
|
|
16565
|
+
export declare const GetBrandTranslationDocument: import("graphql").DocumentNode;
|
|
16566
|
+
export declare const ExistsValidSponsorForEmailDocument: import("graphql").DocumentNode;
|
|
16567
|
+
export declare const SponsorsDocument: import("graphql").DocumentNode;
|
|
16568
|
+
export declare const FindAthleteByIdDocument: import("graphql").DocumentNode;
|
|
16569
|
+
export declare const FindAthletebyIdpublicDocument: import("graphql").DocumentNode;
|
|
16570
|
+
export declare const GetAthleteAlbumIdDocument: import("graphql").DocumentNode;
|
|
16571
|
+
export declare const QueryAthleteWithFilterDocument: import("graphql").DocumentNode;
|
|
16572
|
+
export declare const FindSportByIdDocument: import("graphql").DocumentNode;
|
|
16573
|
+
export declare const GetBudgetItemUnitsDocument: import("graphql").DocumentNode;
|
|
16574
|
+
export declare const OffersDocument: import("graphql").DocumentNode;
|
|
16575
|
+
export declare const OffersForAthleteDocument: import("graphql").DocumentNode;
|
|
16576
|
+
export declare const OfferDocument: import("graphql").DocumentNode;
|
|
16577
|
+
export declare const MyOfferClaimsDocument: import("graphql").DocumentNode;
|
|
16578
|
+
export declare const OfferAvailabilityDocument: import("graphql").DocumentNode;
|
|
16579
|
+
export declare const AthleteDashboardDocument: import("graphql").DocumentNode;
|
|
16580
|
+
export declare const AthleteScoreHistoryDocument: import("graphql").DocumentNode;
|
|
16581
|
+
export declare const AthleteRankHistoryDocument: import("graphql").DocumentNode;
|
|
16582
|
+
export declare const AthleteRankContextDocument: import("graphql").DocumentNode;
|
|
16583
|
+
export declare const AthleteActivitiesDocument: import("graphql").DocumentNode;
|
|
16584
|
+
export declare const AthleteActivityDetailDocument: import("graphql").DocumentNode;
|
|
16585
|
+
export declare const AthleteComponentSummaryDocument: import("graphql").DocumentNode;
|
|
16586
|
+
export declare const AthleteActivityDatesDocument: import("graphql").DocumentNode;
|
|
16587
|
+
export declare const SocialAggregatesDocument: import("graphql").DocumentNode;
|
|
16588
|
+
export declare const PostsWithComparisonDocument: import("graphql").DocumentNode;
|
|
16589
|
+
export declare const GetEmailCampaignDocument: import("graphql").DocumentNode;
|
|
16590
|
+
export declare const LoginUserFromCredentialsDocument: import("graphql").DocumentNode;
|
|
16591
|
+
export declare const DeleteUploadedUseTypeFileDocument: import("graphql").DocumentNode;
|
|
16592
|
+
export declare const DeleteUploadedBucketFileDocument: import("graphql").DocumentNode;
|
|
16593
|
+
export declare const CreateIndustryDocument: import("graphql").DocumentNode;
|
|
16594
|
+
export declare const RegisterSponsorDocument: import("graphql").DocumentNode;
|
|
16595
|
+
export declare const ReorderAlbumIndexDocument: import("graphql").DocumentNode;
|
|
16596
|
+
export declare const EditAlbumDocument: import("graphql").DocumentNode;
|
|
16597
|
+
export declare const DeleteAthletePhotosDocument: import("graphql").DocumentNode;
|
|
16598
|
+
export declare const DeleteAthleteMembershipAffilationDocument: import("graphql").DocumentNode;
|
|
16599
|
+
export declare const ApproveTeamDocument: import("graphql").DocumentNode;
|
|
16600
|
+
export declare const ApproveClubDocument: import("graphql").DocumentNode;
|
|
16601
|
+
export declare const RequestMyDataExportDocument: import("graphql").DocumentNode;
|
|
15525
16602
|
export declare const GetAthleteIntegrationsByAthleteDocument: import("graphql").DocumentNode;
|
|
15526
16603
|
export declare const GetAthleteStravaIntegrationDocument: import("graphql").DocumentNode;
|
|
15527
16604
|
export declare const GetAthleteInstagramIntegrationDocument: import("graphql").DocumentNode;
|
|
@@ -15545,6 +16622,7 @@ export declare const DeleteAthleteAlbumDocument: import("graphql").DocumentNode;
|
|
|
15545
16622
|
export declare const ReorderAlbumsDocument: import("graphql").DocumentNode;
|
|
15546
16623
|
export declare const DeleteAlbumFotosDocument: import("graphql").DocumentNode;
|
|
15547
16624
|
export declare const DeleteUploadedTypeKeyFileDocument: import("graphql").DocumentNode;
|
|
16625
|
+
export declare const RegisterS3UploadedFileDocument: import("graphql").DocumentNode;
|
|
15548
16626
|
export declare const MyNotificationsDocument: import("graphql").DocumentNode;
|
|
15549
16627
|
export declare const NotificationUnreadCountDocument: import("graphql").DocumentNode;
|
|
15550
16628
|
export declare const MyNotificationPreferencesDocument: import("graphql").DocumentNode;
|
|
@@ -15798,7 +16876,54 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
|
|
|
15798
16876
|
UnfollowAthlete(variables: UnfollowAthleteMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<UnfollowAthleteMutation>;
|
|
15799
16877
|
IsFollowingAthlete(variables: IsFollowingAthleteQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<IsFollowingAthleteQuery>;
|
|
15800
16878
|
MyFollowedAthletes(variables?: MyFollowedAthletesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<MyFollowedAthletesQuery>;
|
|
15801
|
-
|
|
16879
|
+
FindTenantById(variables: FindTenantByIdQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<FindTenantByIdQuery>;
|
|
16880
|
+
FindTenantByEmail(variables: FindTenantByEmailQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<FindTenantByEmailQuery>;
|
|
16881
|
+
GetTenants(variables?: GetTenantsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetTenantsQuery>;
|
|
16882
|
+
IsTenantUriAvailable(variables: IsTenantUriAvailableQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<IsTenantUriAvailableQuery>;
|
|
16883
|
+
FindUserById(variables: FindUserByIdQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<FindUserByIdQuery>;
|
|
16884
|
+
ValidateUserCredentials(variables: ValidateUserCredentialsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ValidateUserCredentialsQuery>;
|
|
16885
|
+
GetUploadUrl(variables: GetUploadUrlQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetUploadUrlQuery>;
|
|
16886
|
+
Industries(variables?: IndustriesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<IndustriesQuery>;
|
|
16887
|
+
FindIndustryById(variables: FindIndustryByIdQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<FindIndustryByIdQuery>;
|
|
16888
|
+
Brands(variables?: BrandsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<BrandsQuery>;
|
|
16889
|
+
GetBrandByName(variables: GetBrandByNameQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetBrandByNameQuery>;
|
|
16890
|
+
GetBrandTranslation(variables: GetBrandTranslationQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetBrandTranslationQuery>;
|
|
16891
|
+
ExistsValidSponsorForEmail(variables: ExistsValidSponsorForEmailQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ExistsValidSponsorForEmailQuery>;
|
|
16892
|
+
Sponsors(variables?: SponsorsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<SponsorsQuery>;
|
|
16893
|
+
FindAthleteById(variables: FindAthleteByIdQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<FindAthleteByIdQuery>;
|
|
16894
|
+
FindAthletebyIdpublic(variables: FindAthletebyIdpublicQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<FindAthletebyIdpublicQuery>;
|
|
16895
|
+
GetAthleteAlbumId(variables: GetAthleteAlbumIdQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetAthleteAlbumIdQuery>;
|
|
16896
|
+
QueryAthleteWithFilter(variables: QueryAthleteWithFilterQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<QueryAthleteWithFilterQuery>;
|
|
16897
|
+
FindSportById(variables: FindSportByIdQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<FindSportByIdQuery>;
|
|
16898
|
+
GetBudgetItemUnits(variables?: GetBudgetItemUnitsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetBudgetItemUnitsQuery>;
|
|
16899
|
+
Offers(variables?: OffersQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<OffersQuery>;
|
|
16900
|
+
OffersForAthlete(variables?: OffersForAthleteQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<OffersForAthleteQuery>;
|
|
16901
|
+
Offer(variables: OfferQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<OfferQuery>;
|
|
16902
|
+
MyOfferClaims(variables: MyOfferClaimsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<MyOfferClaimsQuery>;
|
|
16903
|
+
OfferAvailability(variables: OfferAvailabilityQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<OfferAvailabilityQuery>;
|
|
16904
|
+
AthleteDashboard(variables: AthleteDashboardQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<AthleteDashboardQuery>;
|
|
16905
|
+
AthleteScoreHistory(variables: AthleteScoreHistoryQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<AthleteScoreHistoryQuery>;
|
|
16906
|
+
AthleteRankHistory(variables: AthleteRankHistoryQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<AthleteRankHistoryQuery>;
|
|
16907
|
+
AthleteRankContext(variables: AthleteRankContextQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<AthleteRankContextQuery>;
|
|
16908
|
+
AthleteActivities(variables: AthleteActivitiesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<AthleteActivitiesQuery>;
|
|
16909
|
+
AthleteActivityDetail(variables: AthleteActivityDetailQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<AthleteActivityDetailQuery>;
|
|
16910
|
+
AthleteComponentSummary(variables: AthleteComponentSummaryQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<AthleteComponentSummaryQuery>;
|
|
16911
|
+
AthleteActivityDates(variables: AthleteActivityDatesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<AthleteActivityDatesQuery>;
|
|
16912
|
+
SocialAggregates(variables: SocialAggregatesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<SocialAggregatesQuery>;
|
|
16913
|
+
PostsWithComparison(variables: PostsWithComparisonQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<PostsWithComparisonQuery>;
|
|
16914
|
+
GetEmailCampaign(variables: GetEmailCampaignQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetEmailCampaignQuery>;
|
|
16915
|
+
LoginUserFromCredentials(variables: LoginUserFromCredentialsMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<LoginUserFromCredentialsMutation>;
|
|
16916
|
+
DeleteUploadedUseTypeFile(variables: DeleteUploadedUseTypeFileMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<DeleteUploadedUseTypeFileMutation>;
|
|
16917
|
+
DeleteUploadedBucketFile(variables: DeleteUploadedBucketFileMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<DeleteUploadedBucketFileMutation>;
|
|
16918
|
+
CreateIndustry(variables: CreateIndustryMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CreateIndustryMutation>;
|
|
16919
|
+
RegisterSponsor(variables: RegisterSponsorMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<RegisterSponsorMutation>;
|
|
16920
|
+
ReorderAlbumIndex(variables: ReorderAlbumIndexMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ReorderAlbumIndexMutation>;
|
|
16921
|
+
EditAlbum(variables: EditAlbumMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<EditAlbumMutation>;
|
|
16922
|
+
DeleteAthletePhotos(variables: DeleteAthletePhotosMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<DeleteAthletePhotosMutation>;
|
|
16923
|
+
DeleteAthleteMembershipAffilation(variables: DeleteAthleteMembershipAffilationMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<DeleteAthleteMembershipAffilationMutation>;
|
|
16924
|
+
ApproveTeam(variables: ApproveTeamMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ApproveTeamMutation>;
|
|
16925
|
+
ApproveClub(variables: ApproveClubMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ApproveClubMutation>;
|
|
16926
|
+
RequestMyDataExport(variables?: RequestMyDataExportMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<RequestMyDataExportMutation>;
|
|
15802
16927
|
GetAthleteIntegrationsByAthlete(variables?: GetAthleteIntegrationsByAthleteQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetAthleteIntegrationsByAthleteQuery>;
|
|
15803
16928
|
GetAthleteStravaIntegration(variables?: GetAthleteStravaIntegrationQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetAthleteStravaIntegrationQuery>;
|
|
15804
16929
|
GetAthleteInstagramIntegration(variables?: GetAthleteInstagramIntegrationQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetAthleteInstagramIntegrationQuery>;
|
|
@@ -15822,6 +16947,7 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
|
|
|
15822
16947
|
ReorderAlbums(variables: ReorderAlbumsMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ReorderAlbumsMutation>;
|
|
15823
16948
|
DeleteAlbumFotos(variables: DeleteAlbumFotosMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<DeleteAlbumFotosMutation>;
|
|
15824
16949
|
DeleteUploadedTypeKeyFile(variables: DeleteUploadedTypeKeyFileMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<DeleteUploadedTypeKeyFileMutation>;
|
|
16950
|
+
RegisterS3UploadedFile(variables: RegisterS3UploadedFileMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<RegisterS3UploadedFileMutation>;
|
|
15825
16951
|
MyNotifications(variables?: MyNotificationsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<MyNotificationsQuery>;
|
|
15826
16952
|
NotificationUnreadCount(variables?: NotificationUnreadCountQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<NotificationUnreadCountQuery>;
|
|
15827
16953
|
MyNotificationPreferences(variables?: MyNotificationPreferencesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<MyNotificationPreferencesQuery>;
|