@vertikalx/vtx-backend-client 3.4.2-dev.9 → 3.5.3-dev.0
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/misc.api.js +9 -0
- 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 -1
- package/dist/src/client/schema.d.ts +285 -204
- package/dist/src/client/schema.js +62 -55
- package/dist/src/client/schema.js.map +1 -1
- package/dist/src/client/types.d.ts +138 -90
- package/dist/src/client/types.js +1056 -913
- package/dist/src/client/types.js.map +1 -1
- package/dist/src/generated/graphql.d.ts +812 -28
- package/dist/src/generated/graphql.js +296 -7
- package/dist/src/generated/graphql.js.map +1 -1
- package/package.json +1 -1
|
@@ -445,6 +445,7 @@ export type Athlete = {
|
|
|
445
445
|
followerCount?: Maybe<Scalars['Int']['output']>;
|
|
446
446
|
fundingCampaigns?: Maybe<Array<FundRaisingCampaign>>;
|
|
447
447
|
historicalScores?: Maybe<Array<HistoricalScore>>;
|
|
448
|
+
isVerifiedOverride?: Maybe<Scalars['Boolean']['output']>;
|
|
448
449
|
lastName: Scalars['String']['output'];
|
|
449
450
|
lgbt?: Maybe<Scalars['Boolean']['output']>;
|
|
450
451
|
location?: Maybe<WorldLocation>;
|
|
@@ -467,6 +468,7 @@ export type Athlete = {
|
|
|
467
468
|
totalUpcomingCompetitions?: Maybe<Scalars['Float']['output']>;
|
|
468
469
|
trainer?: Maybe<Scalars['String']['output']>;
|
|
469
470
|
trainerUrl?: Maybe<Scalars['String']['output']>;
|
|
471
|
+
verifiedStatus?: Maybe<VerifiedAthleteStatusType>;
|
|
470
472
|
};
|
|
471
473
|
export type AthleteClub = {
|
|
472
474
|
_id: Scalars['String']['output'];
|
|
@@ -623,6 +625,7 @@ export type AthleteReference = {
|
|
|
623
625
|
firstName: Scalars['String']['output'];
|
|
624
626
|
followStats?: Maybe<FollowStats>;
|
|
625
627
|
followerCount?: Maybe<Scalars['Int']['output']>;
|
|
628
|
+
isVerifiedOverride?: Maybe<Scalars['Boolean']['output']>;
|
|
626
629
|
lastName: Scalars['String']['output'];
|
|
627
630
|
lgbt?: Maybe<Scalars['Boolean']['output']>;
|
|
628
631
|
location?: Maybe<WorldLocation>;
|
|
@@ -640,6 +643,7 @@ export type AthleteReference = {
|
|
|
640
643
|
totalUpcomingCompetitions?: Maybe<Scalars['Float']['output']>;
|
|
641
644
|
trainer?: Maybe<Scalars['String']['output']>;
|
|
642
645
|
trainerUrl?: Maybe<Scalars['String']['output']>;
|
|
646
|
+
verifiedStatus?: Maybe<VerifiedAthleteStatusType>;
|
|
643
647
|
};
|
|
644
648
|
export type AthleteRequestStatus = 'CLOSED' | 'OPEN';
|
|
645
649
|
export type AthleteSponsorshipStatus = 'ACTIVE' | 'APPROVED' | 'CANCELLED' | 'CLOSED' | 'EXPIRED' | 'PREPARING';
|
|
@@ -925,10 +929,13 @@ export type CloneDatabaseFileDto = {
|
|
|
925
929
|
};
|
|
926
930
|
export type Club = {
|
|
927
931
|
_id: Scalars['String']['output'];
|
|
932
|
+
accentColor?: Maybe<Scalars['String']['output']>;
|
|
933
|
+
allowMemberCampaigns: Scalars['Boolean']['output'];
|
|
928
934
|
approved?: Maybe<Scalars['Boolean']['output']>;
|
|
929
935
|
banner?: Maybe<Awss3File>;
|
|
930
936
|
description?: Maybe<Scalars['String']['output']>;
|
|
931
937
|
feeStructure?: Maybe<Scalars['JSON']['output']>;
|
|
938
|
+
fundingCampaigns?: Maybe<Array<FundRaisingCampaign>>;
|
|
932
939
|
location?: Maybe<Scalars['String']['output']>;
|
|
933
940
|
logo?: Maybe<Awss3File>;
|
|
934
941
|
membershipType: Scalars['String']['output'];
|
|
@@ -1137,6 +1144,8 @@ export type CreateCityDto = {
|
|
|
1137
1144
|
timezone: Scalars['String']['input'];
|
|
1138
1145
|
};
|
|
1139
1146
|
export type CreateClubInput = {
|
|
1147
|
+
accentColor?: InputMaybe<Scalars['String']['input']>;
|
|
1148
|
+
allowMemberCampaigns?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1140
1149
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
1141
1150
|
feeStructure?: InputMaybe<Scalars['JSON']['input']>;
|
|
1142
1151
|
location?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1185,6 +1194,7 @@ export type CreateFundingCampaignDto = {
|
|
|
1185
1194
|
budget?: InputMaybe<CreateBudgetDto>;
|
|
1186
1195
|
budgetMode: FundingMode;
|
|
1187
1196
|
cityId?: InputMaybe<Scalars['String']['input']>;
|
|
1197
|
+
clubId?: InputMaybe<Scalars['String']['input']>;
|
|
1188
1198
|
competitionBudgets?: InputMaybe<Array<CreateCompetitionBudgetDto>>;
|
|
1189
1199
|
competitionIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1190
1200
|
coverImageId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1192,6 +1202,7 @@ export type CreateFundingCampaignDto = {
|
|
|
1192
1202
|
fundsRequired: Scalars['Float']['input'];
|
|
1193
1203
|
initialFundsObtained?: Scalars['Float']['input'];
|
|
1194
1204
|
motivation: Scalars['String']['input'];
|
|
1205
|
+
teamId?: InputMaybe<Scalars['String']['input']>;
|
|
1195
1206
|
thankYouMediaUrl?: InputMaybe<Scalars['String']['input']>;
|
|
1196
1207
|
thankYouMessage?: InputMaybe<Scalars['String']['input']>;
|
|
1197
1208
|
title: Scalars['String']['input'];
|
|
@@ -1203,6 +1214,7 @@ export type CreateFundingCampaignForDto = {
|
|
|
1203
1214
|
budget?: InputMaybe<CreateBudgetDto>;
|
|
1204
1215
|
budgetMode: FundingMode;
|
|
1205
1216
|
cityId?: InputMaybe<Scalars['String']['input']>;
|
|
1217
|
+
clubId?: InputMaybe<Scalars['String']['input']>;
|
|
1206
1218
|
competitionBudgets?: InputMaybe<Array<CreateCompetitionBudgetDto>>;
|
|
1207
1219
|
competitionIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1208
1220
|
coverImageId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1211,6 +1223,7 @@ export type CreateFundingCampaignForDto = {
|
|
|
1211
1223
|
initialFundsObtained?: Scalars['Float']['input'];
|
|
1212
1224
|
loginEmail: Scalars['String']['input'];
|
|
1213
1225
|
motivation: Scalars['String']['input'];
|
|
1226
|
+
teamId?: InputMaybe<Scalars['String']['input']>;
|
|
1214
1227
|
thankYouMediaUrl?: InputMaybe<Scalars['String']['input']>;
|
|
1215
1228
|
thankYouMessage?: InputMaybe<Scalars['String']['input']>;
|
|
1216
1229
|
title: Scalars['String']['input'];
|
|
@@ -1318,6 +1331,8 @@ export type CreateStripeAccountDto = {
|
|
|
1318
1331
|
countryId: Scalars['String']['input'];
|
|
1319
1332
|
};
|
|
1320
1333
|
export type CreateTeamInput = {
|
|
1334
|
+
accentColor?: InputMaybe<Scalars['String']['input']>;
|
|
1335
|
+
allowMemberCampaigns?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1321
1336
|
clubId?: InputMaybe<Scalars['String']['input']>;
|
|
1322
1337
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
1323
1338
|
joinPolicy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1767,10 +1782,11 @@ export type FundCampaignFilterDto = {
|
|
|
1767
1782
|
};
|
|
1768
1783
|
export type FundRaisingCampaign = {
|
|
1769
1784
|
_id: Scalars['String']['output'];
|
|
1770
|
-
athlete
|
|
1785
|
+
athlete?: Maybe<AthleteReference>;
|
|
1771
1786
|
autoSendThankYou: Scalars['Boolean']['output'];
|
|
1772
1787
|
budget?: Maybe<Budget>;
|
|
1773
1788
|
budgetMode: Scalars['String']['output'];
|
|
1789
|
+
club?: Maybe<Club>;
|
|
1774
1790
|
competitions?: Maybe<Array<AthleteCompetition>>;
|
|
1775
1791
|
coverImage?: Maybe<Awss3File>;
|
|
1776
1792
|
createdDate: Scalars['DateTime']['output'];
|
|
@@ -1782,6 +1798,7 @@ export type FundRaisingCampaign = {
|
|
|
1782
1798
|
motivation?: Maybe<Scalars['String']['output']>;
|
|
1783
1799
|
slug?: Maybe<Scalars['String']['output']>;
|
|
1784
1800
|
status: Scalars['String']['output'];
|
|
1801
|
+
team?: Maybe<Team>;
|
|
1785
1802
|
thankYouMediaUrl?: Maybe<Scalars['String']['output']>;
|
|
1786
1803
|
thankYouMessage?: Maybe<Scalars['String']['output']>;
|
|
1787
1804
|
title: Scalars['String']['output'];
|
|
@@ -2291,10 +2308,13 @@ export type Mutation = {
|
|
|
2291
2308
|
sendTestEmail: Scalars['Boolean']['output'];
|
|
2292
2309
|
sendThankYou: DonationThankYou;
|
|
2293
2310
|
setAdminUserRole: AdminUser;
|
|
2311
|
+
setAthleteVerifiedOverride: Athlete;
|
|
2312
|
+
setClubCampaignPermission: Club;
|
|
2294
2313
|
setCurrentCampaign: FundRaisingCampaign;
|
|
2295
2314
|
setFundingStatus: FundRaisingCampaign;
|
|
2296
2315
|
setOfferStatus: Offer;
|
|
2297
2316
|
setPreferredLocale?: Maybe<Scalars['String']['output']>;
|
|
2317
|
+
setTeamCampaignPermission: Team;
|
|
2298
2318
|
submitHealthKitActivities: HealthKitSubmitResult;
|
|
2299
2319
|
trackUsageEvents: TrackResult;
|
|
2300
2320
|
transferBrand: Brand;
|
|
@@ -2416,6 +2436,7 @@ export type MutationCreateClubDonationCheckoutArgs = {
|
|
|
2416
2436
|
currency?: Scalars['String']['input'];
|
|
2417
2437
|
donorEmail?: InputMaybe<Scalars['String']['input']>;
|
|
2418
2438
|
donorName?: InputMaybe<Scalars['String']['input']>;
|
|
2439
|
+
fundingCampaignId?: InputMaybe<Scalars['String']['input']>;
|
|
2419
2440
|
};
|
|
2420
2441
|
export type MutationCreateClubStripeAccountArgs = {
|
|
2421
2442
|
clubId: Scalars['String']['input'];
|
|
@@ -2486,6 +2507,7 @@ export type MutationCreateTeamDonationCheckoutArgs = {
|
|
|
2486
2507
|
currency?: Scalars['String']['input'];
|
|
2487
2508
|
donorEmail?: InputMaybe<Scalars['String']['input']>;
|
|
2488
2509
|
donorName?: InputMaybe<Scalars['String']['input']>;
|
|
2510
|
+
fundingCampaignId?: InputMaybe<Scalars['String']['input']>;
|
|
2489
2511
|
teamId: Scalars['String']['input'];
|
|
2490
2512
|
};
|
|
2491
2513
|
export type MutationCreateTeamStripeAccountArgs = {
|
|
@@ -2754,6 +2776,14 @@ export type MutationSendThankYouArgs = {
|
|
|
2754
2776
|
export type MutationSetAdminUserRoleArgs = {
|
|
2755
2777
|
input: SetAdminUserRoleInput;
|
|
2756
2778
|
};
|
|
2779
|
+
export type MutationSetAthleteVerifiedOverrideArgs = {
|
|
2780
|
+
athleteId: Scalars['String']['input'];
|
|
2781
|
+
isVerifiedOverride: Scalars['Boolean']['input'];
|
|
2782
|
+
};
|
|
2783
|
+
export type MutationSetClubCampaignPermissionArgs = {
|
|
2784
|
+
allowMemberCampaigns: Scalars['Boolean']['input'];
|
|
2785
|
+
clubId: Scalars['String']['input'];
|
|
2786
|
+
};
|
|
2757
2787
|
export type MutationSetCurrentCampaignArgs = {
|
|
2758
2788
|
input: SetCurrentCampaignDto;
|
|
2759
2789
|
};
|
|
@@ -2767,6 +2797,10 @@ export type MutationSetOfferStatusArgs = {
|
|
|
2767
2797
|
export type MutationSetPreferredLocaleArgs = {
|
|
2768
2798
|
locale: Scalars['String']['input'];
|
|
2769
2799
|
};
|
|
2800
|
+
export type MutationSetTeamCampaignPermissionArgs = {
|
|
2801
|
+
allowMemberCampaigns: Scalars['Boolean']['input'];
|
|
2802
|
+
teamId: Scalars['String']['input'];
|
|
2803
|
+
};
|
|
2770
2804
|
export type MutationSubmitHealthKitActivitiesArgs = {
|
|
2771
2805
|
items: Array<HealthKitWorkoutInput>;
|
|
2772
2806
|
};
|
|
@@ -4543,11 +4577,14 @@ export type TaskStatus = 'DONE' | 'EXPIRED' | 'PENDING';
|
|
|
4543
4577
|
export type TaxCalculation = 'NO_TAX' | 'PLUS_TAX' | 'TAX_INCLUDED';
|
|
4544
4578
|
export type Team = {
|
|
4545
4579
|
_id: Scalars['String']['output'];
|
|
4580
|
+
accentColor?: Maybe<Scalars['String']['output']>;
|
|
4581
|
+
allowMemberCampaigns: Scalars['Boolean']['output'];
|
|
4546
4582
|
approved?: Maybe<Scalars['Boolean']['output']>;
|
|
4547
4583
|
athletes?: Maybe<Array<AthleteTeam>>;
|
|
4548
4584
|
banner?: Maybe<Awss3File>;
|
|
4549
4585
|
club?: Maybe<TeamClubReference>;
|
|
4550
4586
|
description?: Maybe<Scalars['String']['output']>;
|
|
4587
|
+
fundingCampaigns?: Maybe<Array<FundRaisingCampaign>>;
|
|
4551
4588
|
joinPolicy?: Maybe<Scalars['String']['output']>;
|
|
4552
4589
|
logo?: Maybe<Awss3File>;
|
|
4553
4590
|
maxRosterSize?: Maybe<Scalars['Int']['output']>;
|
|
@@ -4692,6 +4729,8 @@ export type UpdateBlogPostInput = {
|
|
|
4692
4729
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
4693
4730
|
};
|
|
4694
4731
|
export type UpdateClubInput = {
|
|
4732
|
+
accentColor?: InputMaybe<Scalars['String']['input']>;
|
|
4733
|
+
allowMemberCampaigns?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4695
4734
|
banner?: InputMaybe<Awss3UploadedFileDto>;
|
|
4696
4735
|
clubId: Scalars['String']['input'];
|
|
4697
4736
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4727,6 +4766,7 @@ export type UpdateFundingCampaignDto = {
|
|
|
4727
4766
|
budget?: InputMaybe<CreateBudgetDto>;
|
|
4728
4767
|
budgetMode: FundingMode;
|
|
4729
4768
|
cityId?: InputMaybe<Scalars['String']['input']>;
|
|
4769
|
+
clubId?: InputMaybe<Scalars['String']['input']>;
|
|
4730
4770
|
competitionBudgets?: InputMaybe<Array<CreateCompetitionBudgetDto>>;
|
|
4731
4771
|
competitionIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4732
4772
|
coverImageId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4734,6 +4774,7 @@ export type UpdateFundingCampaignDto = {
|
|
|
4734
4774
|
fundsRequired: Scalars['Float']['input'];
|
|
4735
4775
|
initialFundsObtained?: Scalars['Float']['input'];
|
|
4736
4776
|
motivation: Scalars['String']['input'];
|
|
4777
|
+
teamId?: InputMaybe<Scalars['String']['input']>;
|
|
4737
4778
|
thankYouMediaUrl?: InputMaybe<Scalars['String']['input']>;
|
|
4738
4779
|
thankYouMessage?: InputMaybe<Scalars['String']['input']>;
|
|
4739
4780
|
title: Scalars['String']['input'];
|
|
@@ -4788,6 +4829,8 @@ export type UpdateSportEventDto = {
|
|
|
4788
4829
|
website?: InputMaybe<Scalars['String']['input']>;
|
|
4789
4830
|
};
|
|
4790
4831
|
export type UpdateTeamInput = {
|
|
4832
|
+
accentColor?: InputMaybe<Scalars['String']['input']>;
|
|
4833
|
+
allowMemberCampaigns?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4791
4834
|
banner?: InputMaybe<Awss3UploadedFileDto>;
|
|
4792
4835
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
4793
4836
|
joinPolicy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4930,6 +4973,13 @@ export type VerificationCode = {
|
|
|
4930
4973
|
recipient?: Maybe<Scalars['String']['output']>;
|
|
4931
4974
|
type?: Maybe<Scalars['String']['output']>;
|
|
4932
4975
|
};
|
|
4976
|
+
export type VerifiedAthleteStatusType = {
|
|
4977
|
+
hasInstagramConnected: Scalars['Boolean']['output'];
|
|
4978
|
+
hasStripeVerified: Scalars['Boolean']['output'];
|
|
4979
|
+
hasTrainingConnected: Scalars['Boolean']['output'];
|
|
4980
|
+
hasVerifiedRaceResult: Scalars['Boolean']['output'];
|
|
4981
|
+
isVerified: Scalars['Boolean']['output'];
|
|
4982
|
+
};
|
|
4933
4983
|
export type VerifyCodeDto = {
|
|
4934
4984
|
codeId: Scalars['String']['input'];
|
|
4935
4985
|
enteredCodeValue: Scalars['String']['input'];
|
|
@@ -5445,6 +5495,7 @@ export type StandardAthleteFieldsFragment = {
|
|
|
5445
5495
|
aboutMe?: string | null;
|
|
5446
5496
|
totalUpcomingCompetitions?: number | null;
|
|
5447
5497
|
totalPastCompetitions?: number | null;
|
|
5498
|
+
isVerifiedOverride?: boolean | null;
|
|
5448
5499
|
country?: {
|
|
5449
5500
|
_id: string;
|
|
5450
5501
|
name: string;
|
|
@@ -5661,6 +5712,13 @@ export type StandardAthleteFieldsFragment = {
|
|
|
5661
5712
|
_id: string;
|
|
5662
5713
|
showProfileHelper: boolean;
|
|
5663
5714
|
};
|
|
5715
|
+
verifiedStatus?: {
|
|
5716
|
+
isVerified: boolean;
|
|
5717
|
+
hasTrainingConnected: boolean;
|
|
5718
|
+
hasInstagramConnected: boolean;
|
|
5719
|
+
hasVerifiedRaceResult: boolean;
|
|
5720
|
+
hasStripeVerified: boolean;
|
|
5721
|
+
} | null;
|
|
5664
5722
|
};
|
|
5665
5723
|
export type CampaignLocationFieldsFragment = {
|
|
5666
5724
|
_id: string;
|
|
@@ -5889,6 +5947,7 @@ export type RegisterAthleteMutation = {
|
|
|
5889
5947
|
aboutMe?: string | null;
|
|
5890
5948
|
totalUpcomingCompetitions?: number | null;
|
|
5891
5949
|
totalPastCompetitions?: number | null;
|
|
5950
|
+
isVerifiedOverride?: boolean | null;
|
|
5892
5951
|
country?: {
|
|
5893
5952
|
_id: string;
|
|
5894
5953
|
name: string;
|
|
@@ -6105,6 +6164,13 @@ export type RegisterAthleteMutation = {
|
|
|
6105
6164
|
_id: string;
|
|
6106
6165
|
showProfileHelper: boolean;
|
|
6107
6166
|
};
|
|
6167
|
+
verifiedStatus?: {
|
|
6168
|
+
isVerified: boolean;
|
|
6169
|
+
hasTrainingConnected: boolean;
|
|
6170
|
+
hasInstagramConnected: boolean;
|
|
6171
|
+
hasVerifiedRaceResult: boolean;
|
|
6172
|
+
hasStripeVerified: boolean;
|
|
6173
|
+
} | null;
|
|
6108
6174
|
};
|
|
6109
6175
|
};
|
|
6110
6176
|
export type FindAthleteForUserQueryVariables = Exact<{
|
|
@@ -6127,6 +6193,7 @@ export type FindAthleteForUserQuery = {
|
|
|
6127
6193
|
aboutMe?: string | null;
|
|
6128
6194
|
totalUpcomingCompetitions?: number | null;
|
|
6129
6195
|
totalPastCompetitions?: number | null;
|
|
6196
|
+
isVerifiedOverride?: boolean | null;
|
|
6130
6197
|
affiliations?: Array<{
|
|
6131
6198
|
_id: string;
|
|
6132
6199
|
membershipNumber?: string | null;
|
|
@@ -6647,6 +6714,13 @@ export type FindAthleteForUserQuery = {
|
|
|
6647
6714
|
url: string;
|
|
6648
6715
|
key: string;
|
|
6649
6716
|
} | null;
|
|
6717
|
+
verifiedStatus?: {
|
|
6718
|
+
isVerified: boolean;
|
|
6719
|
+
hasTrainingConnected: boolean;
|
|
6720
|
+
hasInstagramConnected: boolean;
|
|
6721
|
+
hasVerifiedRaceResult: boolean;
|
|
6722
|
+
hasStripeVerified: boolean;
|
|
6723
|
+
} | null;
|
|
6650
6724
|
};
|
|
6651
6725
|
};
|
|
6652
6726
|
export type FindAthleteByIdQueryVariables = Exact<{
|
|
@@ -6667,6 +6741,7 @@ export type FindAthleteByIdQuery = {
|
|
|
6667
6741
|
aboutMe?: string | null;
|
|
6668
6742
|
totalUpcomingCompetitions?: number | null;
|
|
6669
6743
|
totalPastCompetitions?: number | null;
|
|
6744
|
+
isVerifiedOverride?: boolean | null;
|
|
6670
6745
|
country?: {
|
|
6671
6746
|
_id: string;
|
|
6672
6747
|
name: string;
|
|
@@ -6883,6 +6958,13 @@ export type FindAthleteByIdQuery = {
|
|
|
6883
6958
|
_id: string;
|
|
6884
6959
|
showProfileHelper: boolean;
|
|
6885
6960
|
};
|
|
6961
|
+
verifiedStatus?: {
|
|
6962
|
+
isVerified: boolean;
|
|
6963
|
+
hasTrainingConnected: boolean;
|
|
6964
|
+
hasInstagramConnected: boolean;
|
|
6965
|
+
hasVerifiedRaceResult: boolean;
|
|
6966
|
+
hasStripeVerified: boolean;
|
|
6967
|
+
} | null;
|
|
6886
6968
|
};
|
|
6887
6969
|
};
|
|
6888
6970
|
export type FindAthleteForIdPublicQueryVariables = Exact<{
|
|
@@ -6904,6 +6986,7 @@ export type FindAthleteForIdPublicQuery = {
|
|
|
6904
6986
|
aboutMe?: string | null;
|
|
6905
6987
|
totalUpcomingCompetitions?: number | null;
|
|
6906
6988
|
totalPastCompetitions?: number | null;
|
|
6989
|
+
isVerifiedOverride?: boolean | null;
|
|
6907
6990
|
affiliations?: Array<{
|
|
6908
6991
|
_id: string;
|
|
6909
6992
|
membershipNumber?: string | null;
|
|
@@ -7319,6 +7402,13 @@ export type FindAthleteForIdPublicQuery = {
|
|
|
7319
7402
|
url: string;
|
|
7320
7403
|
key: string;
|
|
7321
7404
|
} | null;
|
|
7405
|
+
verifiedStatus?: {
|
|
7406
|
+
isVerified: boolean;
|
|
7407
|
+
hasTrainingConnected: boolean;
|
|
7408
|
+
hasInstagramConnected: boolean;
|
|
7409
|
+
hasVerifiedRaceResult: boolean;
|
|
7410
|
+
hasStripeVerified: boolean;
|
|
7411
|
+
} | null;
|
|
7322
7412
|
};
|
|
7323
7413
|
};
|
|
7324
7414
|
export type GetAthletesQueryVariables = Exact<{
|
|
@@ -7338,6 +7428,7 @@ export type GetAthletesQuery = {
|
|
|
7338
7428
|
aboutMe?: string | null;
|
|
7339
7429
|
totalUpcomingCompetitions?: number | null;
|
|
7340
7430
|
totalPastCompetitions?: number | null;
|
|
7431
|
+
isVerifiedOverride?: boolean | null;
|
|
7341
7432
|
country?: {
|
|
7342
7433
|
_id: string;
|
|
7343
7434
|
name: string;
|
|
@@ -7554,6 +7645,13 @@ export type GetAthletesQuery = {
|
|
|
7554
7645
|
_id: string;
|
|
7555
7646
|
showProfileHelper: boolean;
|
|
7556
7647
|
};
|
|
7648
|
+
verifiedStatus?: {
|
|
7649
|
+
isVerified: boolean;
|
|
7650
|
+
hasTrainingConnected: boolean;
|
|
7651
|
+
hasInstagramConnected: boolean;
|
|
7652
|
+
hasVerifiedRaceResult: boolean;
|
|
7653
|
+
hasStripeVerified: boolean;
|
|
7654
|
+
} | null;
|
|
7557
7655
|
}>;
|
|
7558
7656
|
};
|
|
7559
7657
|
export type SearchAthletesQueryVariables = Exact<{
|
|
@@ -7573,6 +7671,7 @@ export type SearchAthletesQuery = {
|
|
|
7573
7671
|
aboutMe?: string | null;
|
|
7574
7672
|
totalUpcomingCompetitions?: number | null;
|
|
7575
7673
|
totalPastCompetitions?: number | null;
|
|
7674
|
+
isVerifiedOverride?: boolean | null;
|
|
7576
7675
|
country?: {
|
|
7577
7676
|
_id: string;
|
|
7578
7677
|
name: string;
|
|
@@ -7789,6 +7888,13 @@ export type SearchAthletesQuery = {
|
|
|
7789
7888
|
_id: string;
|
|
7790
7889
|
showProfileHelper: boolean;
|
|
7791
7890
|
};
|
|
7891
|
+
verifiedStatus?: {
|
|
7892
|
+
isVerified: boolean;
|
|
7893
|
+
hasTrainingConnected: boolean;
|
|
7894
|
+
hasInstagramConnected: boolean;
|
|
7895
|
+
hasVerifiedRaceResult: boolean;
|
|
7896
|
+
hasStripeVerified: boolean;
|
|
7897
|
+
} | null;
|
|
7792
7898
|
}>;
|
|
7793
7899
|
};
|
|
7794
7900
|
export type GetRecommendedAthletesQueryVariables = Exact<{
|
|
@@ -7808,6 +7914,7 @@ export type GetRecommendedAthletesQuery = {
|
|
|
7808
7914
|
aboutMe?: string | null;
|
|
7809
7915
|
totalUpcomingCompetitions?: number | null;
|
|
7810
7916
|
totalPastCompetitions?: number | null;
|
|
7917
|
+
isVerifiedOverride?: boolean | null;
|
|
7811
7918
|
country?: {
|
|
7812
7919
|
_id: string;
|
|
7813
7920
|
name: string;
|
|
@@ -8024,6 +8131,13 @@ export type GetRecommendedAthletesQuery = {
|
|
|
8024
8131
|
_id: string;
|
|
8025
8132
|
showProfileHelper: boolean;
|
|
8026
8133
|
};
|
|
8134
|
+
verifiedStatus?: {
|
|
8135
|
+
isVerified: boolean;
|
|
8136
|
+
hasTrainingConnected: boolean;
|
|
8137
|
+
hasInstagramConnected: boolean;
|
|
8138
|
+
hasVerifiedRaceResult: boolean;
|
|
8139
|
+
hasStripeVerified: boolean;
|
|
8140
|
+
} | null;
|
|
8027
8141
|
}>;
|
|
8028
8142
|
};
|
|
8029
8143
|
export type GetSponsorAthletesForTenantQueryVariables = Exact<{
|
|
@@ -8043,6 +8157,7 @@ export type GetSponsorAthletesForTenantQuery = {
|
|
|
8043
8157
|
aboutMe?: string | null;
|
|
8044
8158
|
totalUpcomingCompetitions?: number | null;
|
|
8045
8159
|
totalPastCompetitions?: number | null;
|
|
8160
|
+
isVerifiedOverride?: boolean | null;
|
|
8046
8161
|
country?: {
|
|
8047
8162
|
_id: string;
|
|
8048
8163
|
name: string;
|
|
@@ -8259,6 +8374,13 @@ export type GetSponsorAthletesForTenantQuery = {
|
|
|
8259
8374
|
_id: string;
|
|
8260
8375
|
showProfileHelper: boolean;
|
|
8261
8376
|
};
|
|
8377
|
+
verifiedStatus?: {
|
|
8378
|
+
isVerified: boolean;
|
|
8379
|
+
hasTrainingConnected: boolean;
|
|
8380
|
+
hasInstagramConnected: boolean;
|
|
8381
|
+
hasVerifiedRaceResult: boolean;
|
|
8382
|
+
hasStripeVerified: boolean;
|
|
8383
|
+
} | null;
|
|
8262
8384
|
}>;
|
|
8263
8385
|
};
|
|
8264
8386
|
export type QueryAthleteFundingCampaignsQueryVariables = Exact<{
|
|
@@ -10452,6 +10574,33 @@ export type CampaignFieldsFragment = {
|
|
|
10452
10574
|
size?: number | null;
|
|
10453
10575
|
useType?: string | null;
|
|
10454
10576
|
} | null;
|
|
10577
|
+
club?: {
|
|
10578
|
+
_id: string;
|
|
10579
|
+
name: string;
|
|
10580
|
+
description?: string | null;
|
|
10581
|
+
logo?: {
|
|
10582
|
+
_id: string;
|
|
10583
|
+
url: string;
|
|
10584
|
+
} | null;
|
|
10585
|
+
sports?: Array<{
|
|
10586
|
+
_id: string;
|
|
10587
|
+
name: string;
|
|
10588
|
+
}> | null;
|
|
10589
|
+
} | null;
|
|
10590
|
+
team?: {
|
|
10591
|
+
_id: string;
|
|
10592
|
+
name: string;
|
|
10593
|
+
description?: string | null;
|
|
10594
|
+
vtxScore?: number | null;
|
|
10595
|
+
logo?: {
|
|
10596
|
+
_id: string;
|
|
10597
|
+
url: string;
|
|
10598
|
+
} | null;
|
|
10599
|
+
sports?: Array<{
|
|
10600
|
+
_id: string;
|
|
10601
|
+
name: string;
|
|
10602
|
+
}> | null;
|
|
10603
|
+
} | null;
|
|
10455
10604
|
};
|
|
10456
10605
|
export type DonationThankYouFieldsFragment = {
|
|
10457
10606
|
_id: string;
|
|
@@ -10533,7 +10682,7 @@ export type BrowseCampaignFieldsFragment = {
|
|
|
10533
10682
|
}> | null;
|
|
10534
10683
|
} | null;
|
|
10535
10684
|
}> | null;
|
|
10536
|
-
athlete
|
|
10685
|
+
athlete?: {
|
|
10537
10686
|
_id: string;
|
|
10538
10687
|
firstName: string;
|
|
10539
10688
|
lastName: string;
|
|
@@ -10559,7 +10708,34 @@ export type BrowseCampaignFieldsFragment = {
|
|
|
10559
10708
|
_id: string;
|
|
10560
10709
|
name: string;
|
|
10561
10710
|
} | null;
|
|
10562
|
-
};
|
|
10711
|
+
} | null;
|
|
10712
|
+
club?: {
|
|
10713
|
+
_id: string;
|
|
10714
|
+
name: string;
|
|
10715
|
+
description?: string | null;
|
|
10716
|
+
logo?: {
|
|
10717
|
+
_id: string;
|
|
10718
|
+
url: string;
|
|
10719
|
+
} | null;
|
|
10720
|
+
sports?: Array<{
|
|
10721
|
+
_id: string;
|
|
10722
|
+
name: string;
|
|
10723
|
+
}> | null;
|
|
10724
|
+
} | null;
|
|
10725
|
+
team?: {
|
|
10726
|
+
_id: string;
|
|
10727
|
+
name: string;
|
|
10728
|
+
description?: string | null;
|
|
10729
|
+
vtxScore?: number | null;
|
|
10730
|
+
logo?: {
|
|
10731
|
+
_id: string;
|
|
10732
|
+
url: string;
|
|
10733
|
+
} | null;
|
|
10734
|
+
sports?: Array<{
|
|
10735
|
+
_id: string;
|
|
10736
|
+
name: string;
|
|
10737
|
+
}> | null;
|
|
10738
|
+
} | null;
|
|
10563
10739
|
};
|
|
10564
10740
|
export type DonationFieldsFragment = {
|
|
10565
10741
|
checkoutSessionId: string;
|
|
@@ -10640,12 +10816,12 @@ export type GetAthleteCampaignsQuery = {
|
|
|
10640
10816
|
thankYouMessage?: string | null;
|
|
10641
10817
|
thankYouMediaUrl?: string | null;
|
|
10642
10818
|
autoSendThankYou: boolean;
|
|
10643
|
-
athlete
|
|
10819
|
+
athlete?: {
|
|
10644
10820
|
_id: string;
|
|
10645
10821
|
firstName: string;
|
|
10646
10822
|
lastName: string;
|
|
10647
10823
|
screenName?: string | null;
|
|
10648
|
-
};
|
|
10824
|
+
} | null;
|
|
10649
10825
|
video?: {
|
|
10650
10826
|
_id: string;
|
|
10651
10827
|
source: string;
|
|
@@ -10759,6 +10935,33 @@ export type GetAthleteCampaignsQuery = {
|
|
|
10759
10935
|
size?: number | null;
|
|
10760
10936
|
useType?: string | null;
|
|
10761
10937
|
} | null;
|
|
10938
|
+
club?: {
|
|
10939
|
+
_id: string;
|
|
10940
|
+
name: string;
|
|
10941
|
+
description?: string | null;
|
|
10942
|
+
logo?: {
|
|
10943
|
+
_id: string;
|
|
10944
|
+
url: string;
|
|
10945
|
+
} | null;
|
|
10946
|
+
sports?: Array<{
|
|
10947
|
+
_id: string;
|
|
10948
|
+
name: string;
|
|
10949
|
+
}> | null;
|
|
10950
|
+
} | null;
|
|
10951
|
+
team?: {
|
|
10952
|
+
_id: string;
|
|
10953
|
+
name: string;
|
|
10954
|
+
description?: string | null;
|
|
10955
|
+
vtxScore?: number | null;
|
|
10956
|
+
logo?: {
|
|
10957
|
+
_id: string;
|
|
10958
|
+
url: string;
|
|
10959
|
+
} | null;
|
|
10960
|
+
sports?: Array<{
|
|
10961
|
+
_id: string;
|
|
10962
|
+
name: string;
|
|
10963
|
+
}> | null;
|
|
10964
|
+
} | null;
|
|
10762
10965
|
}>;
|
|
10763
10966
|
};
|
|
10764
10967
|
export type BrowseCampaignsQueryVariables = Exact<{
|
|
@@ -10840,7 +11043,7 @@ export type BrowseCampaignsQuery = {
|
|
|
10840
11043
|
}> | null;
|
|
10841
11044
|
} | null;
|
|
10842
11045
|
}> | null;
|
|
10843
|
-
athlete
|
|
11046
|
+
athlete?: {
|
|
10844
11047
|
_id: string;
|
|
10845
11048
|
firstName: string;
|
|
10846
11049
|
lastName: string;
|
|
@@ -10866,7 +11069,34 @@ export type BrowseCampaignsQuery = {
|
|
|
10866
11069
|
_id: string;
|
|
10867
11070
|
name: string;
|
|
10868
11071
|
} | null;
|
|
10869
|
-
};
|
|
11072
|
+
} | null;
|
|
11073
|
+
club?: {
|
|
11074
|
+
_id: string;
|
|
11075
|
+
name: string;
|
|
11076
|
+
description?: string | null;
|
|
11077
|
+
logo?: {
|
|
11078
|
+
_id: string;
|
|
11079
|
+
url: string;
|
|
11080
|
+
} | null;
|
|
11081
|
+
sports?: Array<{
|
|
11082
|
+
_id: string;
|
|
11083
|
+
name: string;
|
|
11084
|
+
}> | null;
|
|
11085
|
+
} | null;
|
|
11086
|
+
team?: {
|
|
11087
|
+
_id: string;
|
|
11088
|
+
name: string;
|
|
11089
|
+
description?: string | null;
|
|
11090
|
+
vtxScore?: number | null;
|
|
11091
|
+
logo?: {
|
|
11092
|
+
_id: string;
|
|
11093
|
+
url: string;
|
|
11094
|
+
} | null;
|
|
11095
|
+
sports?: Array<{
|
|
11096
|
+
_id: string;
|
|
11097
|
+
name: string;
|
|
11098
|
+
}> | null;
|
|
11099
|
+
} | null;
|
|
10870
11100
|
}>;
|
|
10871
11101
|
featuredPopular: Array<{
|
|
10872
11102
|
_id: string;
|
|
@@ -10938,7 +11168,7 @@ export type BrowseCampaignsQuery = {
|
|
|
10938
11168
|
}> | null;
|
|
10939
11169
|
} | null;
|
|
10940
11170
|
}> | null;
|
|
10941
|
-
athlete
|
|
11171
|
+
athlete?: {
|
|
10942
11172
|
_id: string;
|
|
10943
11173
|
firstName: string;
|
|
10944
11174
|
lastName: string;
|
|
@@ -10964,7 +11194,34 @@ export type BrowseCampaignsQuery = {
|
|
|
10964
11194
|
_id: string;
|
|
10965
11195
|
name: string;
|
|
10966
11196
|
} | null;
|
|
10967
|
-
};
|
|
11197
|
+
} | null;
|
|
11198
|
+
club?: {
|
|
11199
|
+
_id: string;
|
|
11200
|
+
name: string;
|
|
11201
|
+
description?: string | null;
|
|
11202
|
+
logo?: {
|
|
11203
|
+
_id: string;
|
|
11204
|
+
url: string;
|
|
11205
|
+
} | null;
|
|
11206
|
+
sports?: Array<{
|
|
11207
|
+
_id: string;
|
|
11208
|
+
name: string;
|
|
11209
|
+
}> | null;
|
|
11210
|
+
} | null;
|
|
11211
|
+
team?: {
|
|
11212
|
+
_id: string;
|
|
11213
|
+
name: string;
|
|
11214
|
+
description?: string | null;
|
|
11215
|
+
vtxScore?: number | null;
|
|
11216
|
+
logo?: {
|
|
11217
|
+
_id: string;
|
|
11218
|
+
url: string;
|
|
11219
|
+
} | null;
|
|
11220
|
+
sports?: Array<{
|
|
11221
|
+
_id: string;
|
|
11222
|
+
name: string;
|
|
11223
|
+
}> | null;
|
|
11224
|
+
} | null;
|
|
10968
11225
|
}>;
|
|
10969
11226
|
featuredEndingSoon: Array<{
|
|
10970
11227
|
_id: string;
|
|
@@ -11036,7 +11293,7 @@ export type BrowseCampaignsQuery = {
|
|
|
11036
11293
|
}> | null;
|
|
11037
11294
|
} | null;
|
|
11038
11295
|
}> | null;
|
|
11039
|
-
athlete
|
|
11296
|
+
athlete?: {
|
|
11040
11297
|
_id: string;
|
|
11041
11298
|
firstName: string;
|
|
11042
11299
|
lastName: string;
|
|
@@ -11062,7 +11319,34 @@ export type BrowseCampaignsQuery = {
|
|
|
11062
11319
|
_id: string;
|
|
11063
11320
|
name: string;
|
|
11064
11321
|
} | null;
|
|
11065
|
-
};
|
|
11322
|
+
} | null;
|
|
11323
|
+
club?: {
|
|
11324
|
+
_id: string;
|
|
11325
|
+
name: string;
|
|
11326
|
+
description?: string | null;
|
|
11327
|
+
logo?: {
|
|
11328
|
+
_id: string;
|
|
11329
|
+
url: string;
|
|
11330
|
+
} | null;
|
|
11331
|
+
sports?: Array<{
|
|
11332
|
+
_id: string;
|
|
11333
|
+
name: string;
|
|
11334
|
+
}> | null;
|
|
11335
|
+
} | null;
|
|
11336
|
+
team?: {
|
|
11337
|
+
_id: string;
|
|
11338
|
+
name: string;
|
|
11339
|
+
description?: string | null;
|
|
11340
|
+
vtxScore?: number | null;
|
|
11341
|
+
logo?: {
|
|
11342
|
+
_id: string;
|
|
11343
|
+
url: string;
|
|
11344
|
+
} | null;
|
|
11345
|
+
sports?: Array<{
|
|
11346
|
+
_id: string;
|
|
11347
|
+
name: string;
|
|
11348
|
+
}> | null;
|
|
11349
|
+
} | null;
|
|
11066
11350
|
}>;
|
|
11067
11351
|
};
|
|
11068
11352
|
};
|
|
@@ -11200,6 +11484,33 @@ export type CreateFundingCampaignMutation = {
|
|
|
11200
11484
|
size?: number | null;
|
|
11201
11485
|
useType?: string | null;
|
|
11202
11486
|
} | null;
|
|
11487
|
+
club?: {
|
|
11488
|
+
_id: string;
|
|
11489
|
+
name: string;
|
|
11490
|
+
description?: string | null;
|
|
11491
|
+
logo?: {
|
|
11492
|
+
_id: string;
|
|
11493
|
+
url: string;
|
|
11494
|
+
} | null;
|
|
11495
|
+
sports?: Array<{
|
|
11496
|
+
_id: string;
|
|
11497
|
+
name: string;
|
|
11498
|
+
}> | null;
|
|
11499
|
+
} | null;
|
|
11500
|
+
team?: {
|
|
11501
|
+
_id: string;
|
|
11502
|
+
name: string;
|
|
11503
|
+
description?: string | null;
|
|
11504
|
+
vtxScore?: number | null;
|
|
11505
|
+
logo?: {
|
|
11506
|
+
_id: string;
|
|
11507
|
+
url: string;
|
|
11508
|
+
} | null;
|
|
11509
|
+
sports?: Array<{
|
|
11510
|
+
_id: string;
|
|
11511
|
+
name: string;
|
|
11512
|
+
}> | null;
|
|
11513
|
+
} | null;
|
|
11203
11514
|
};
|
|
11204
11515
|
};
|
|
11205
11516
|
export type UpdateFundingCampaignMutationVariables = Exact<{
|
|
@@ -11336,6 +11647,33 @@ export type UpdateFundingCampaignMutation = {
|
|
|
11336
11647
|
size?: number | null;
|
|
11337
11648
|
useType?: string | null;
|
|
11338
11649
|
} | null;
|
|
11650
|
+
club?: {
|
|
11651
|
+
_id: string;
|
|
11652
|
+
name: string;
|
|
11653
|
+
description?: string | null;
|
|
11654
|
+
logo?: {
|
|
11655
|
+
_id: string;
|
|
11656
|
+
url: string;
|
|
11657
|
+
} | null;
|
|
11658
|
+
sports?: Array<{
|
|
11659
|
+
_id: string;
|
|
11660
|
+
name: string;
|
|
11661
|
+
}> | null;
|
|
11662
|
+
} | null;
|
|
11663
|
+
team?: {
|
|
11664
|
+
_id: string;
|
|
11665
|
+
name: string;
|
|
11666
|
+
description?: string | null;
|
|
11667
|
+
vtxScore?: number | null;
|
|
11668
|
+
logo?: {
|
|
11669
|
+
_id: string;
|
|
11670
|
+
url: string;
|
|
11671
|
+
} | null;
|
|
11672
|
+
sports?: Array<{
|
|
11673
|
+
_id: string;
|
|
11674
|
+
name: string;
|
|
11675
|
+
}> | null;
|
|
11676
|
+
} | null;
|
|
11339
11677
|
};
|
|
11340
11678
|
};
|
|
11341
11679
|
export type DeleteFundingCampaignMutationVariables = Exact<{
|
|
@@ -11499,21 +11837,48 @@ export type SetFundingStatusMutation = {
|
|
|
11499
11837
|
size?: number | null;
|
|
11500
11838
|
useType?: string | null;
|
|
11501
11839
|
} | null;
|
|
11502
|
-
|
|
11503
|
-
|
|
11504
|
-
|
|
11505
|
-
|
|
11506
|
-
|
|
11507
|
-
|
|
11508
|
-
|
|
11509
|
-
|
|
11510
|
-
|
|
11511
|
-
|
|
11512
|
-
|
|
11513
|
-
|
|
11514
|
-
|
|
11515
|
-
|
|
11516
|
-
|
|
11840
|
+
club?: {
|
|
11841
|
+
_id: string;
|
|
11842
|
+
name: string;
|
|
11843
|
+
description?: string | null;
|
|
11844
|
+
logo?: {
|
|
11845
|
+
_id: string;
|
|
11846
|
+
url: string;
|
|
11847
|
+
} | null;
|
|
11848
|
+
sports?: Array<{
|
|
11849
|
+
_id: string;
|
|
11850
|
+
name: string;
|
|
11851
|
+
}> | null;
|
|
11852
|
+
} | null;
|
|
11853
|
+
team?: {
|
|
11854
|
+
_id: string;
|
|
11855
|
+
name: string;
|
|
11856
|
+
description?: string | null;
|
|
11857
|
+
vtxScore?: number | null;
|
|
11858
|
+
logo?: {
|
|
11859
|
+
_id: string;
|
|
11860
|
+
url: string;
|
|
11861
|
+
} | null;
|
|
11862
|
+
sports?: Array<{
|
|
11863
|
+
_id: string;
|
|
11864
|
+
name: string;
|
|
11865
|
+
}> | null;
|
|
11866
|
+
} | null;
|
|
11867
|
+
};
|
|
11868
|
+
};
|
|
11869
|
+
export type SetCurrentCampaignMutationVariables = Exact<{
|
|
11870
|
+
input: SetCurrentCampaignDto;
|
|
11871
|
+
}>;
|
|
11872
|
+
export type SetCurrentCampaignMutation = {
|
|
11873
|
+
setCurrentCampaign: {
|
|
11874
|
+
_id: string;
|
|
11875
|
+
budgetMode: string;
|
|
11876
|
+
status: string;
|
|
11877
|
+
title: string;
|
|
11878
|
+
slug?: string | null;
|
|
11879
|
+
motivation?: string | null;
|
|
11880
|
+
website?: string | null;
|
|
11881
|
+
fundsRequired: number;
|
|
11517
11882
|
initialFundsObtained: number;
|
|
11518
11883
|
fundsObtained: number;
|
|
11519
11884
|
vtxComissionPct: number;
|
|
@@ -11635,6 +12000,33 @@ export type SetCurrentCampaignMutation = {
|
|
|
11635
12000
|
size?: number | null;
|
|
11636
12001
|
useType?: string | null;
|
|
11637
12002
|
} | null;
|
|
12003
|
+
club?: {
|
|
12004
|
+
_id: string;
|
|
12005
|
+
name: string;
|
|
12006
|
+
description?: string | null;
|
|
12007
|
+
logo?: {
|
|
12008
|
+
_id: string;
|
|
12009
|
+
url: string;
|
|
12010
|
+
} | null;
|
|
12011
|
+
sports?: Array<{
|
|
12012
|
+
_id: string;
|
|
12013
|
+
name: string;
|
|
12014
|
+
}> | null;
|
|
12015
|
+
} | null;
|
|
12016
|
+
team?: {
|
|
12017
|
+
_id: string;
|
|
12018
|
+
name: string;
|
|
12019
|
+
description?: string | null;
|
|
12020
|
+
vtxScore?: number | null;
|
|
12021
|
+
logo?: {
|
|
12022
|
+
_id: string;
|
|
12023
|
+
url: string;
|
|
12024
|
+
} | null;
|
|
12025
|
+
sports?: Array<{
|
|
12026
|
+
_id: string;
|
|
12027
|
+
name: string;
|
|
12028
|
+
}> | null;
|
|
12029
|
+
} | null;
|
|
11638
12030
|
};
|
|
11639
12031
|
};
|
|
11640
12032
|
export type GetDonationsByAthleteQueryVariables = Exact<{
|
|
@@ -11724,7 +12116,7 @@ export type GetDonationsByMemberQuery = {
|
|
|
11724
12116
|
initialFundsObtained: number;
|
|
11725
12117
|
fundsObtained: number;
|
|
11726
12118
|
endingDate: string;
|
|
11727
|
-
athlete
|
|
12119
|
+
athlete?: {
|
|
11728
12120
|
_id: string;
|
|
11729
12121
|
firstName: string;
|
|
11730
12122
|
lastName: string;
|
|
@@ -11766,7 +12158,7 @@ export type GetDonationsByMemberQuery = {
|
|
|
11766
12158
|
url: string;
|
|
11767
12159
|
key: string;
|
|
11768
12160
|
} | null;
|
|
11769
|
-
};
|
|
12161
|
+
} | null;
|
|
11770
12162
|
video?: {
|
|
11771
12163
|
_id: string;
|
|
11772
12164
|
source: string;
|
|
@@ -12354,6 +12746,33 @@ export type UpdateThankYouTemplateMutation = {
|
|
|
12354
12746
|
size?: number | null;
|
|
12355
12747
|
useType?: string | null;
|
|
12356
12748
|
} | null;
|
|
12749
|
+
club?: {
|
|
12750
|
+
_id: string;
|
|
12751
|
+
name: string;
|
|
12752
|
+
description?: string | null;
|
|
12753
|
+
logo?: {
|
|
12754
|
+
_id: string;
|
|
12755
|
+
url: string;
|
|
12756
|
+
} | null;
|
|
12757
|
+
sports?: Array<{
|
|
12758
|
+
_id: string;
|
|
12759
|
+
name: string;
|
|
12760
|
+
}> | null;
|
|
12761
|
+
} | null;
|
|
12762
|
+
team?: {
|
|
12763
|
+
_id: string;
|
|
12764
|
+
name: string;
|
|
12765
|
+
description?: string | null;
|
|
12766
|
+
vtxScore?: number | null;
|
|
12767
|
+
logo?: {
|
|
12768
|
+
_id: string;
|
|
12769
|
+
url: string;
|
|
12770
|
+
} | null;
|
|
12771
|
+
sports?: Array<{
|
|
12772
|
+
_id: string;
|
|
12773
|
+
name: string;
|
|
12774
|
+
}> | null;
|
|
12775
|
+
} | null;
|
|
12357
12776
|
};
|
|
12358
12777
|
};
|
|
12359
12778
|
export type SendThankYouMutationVariables = Exact<{
|
|
@@ -12873,6 +13292,7 @@ export type ListSponsorFavoritesQuery = {
|
|
|
12873
13292
|
suspended: boolean;
|
|
12874
13293
|
onboardingComplete?: boolean | null;
|
|
12875
13294
|
onboardingStep?: number | null;
|
|
13295
|
+
isVerifiedOverride?: boolean | null;
|
|
12876
13296
|
country?: {
|
|
12877
13297
|
_id: string;
|
|
12878
13298
|
name: string;
|
|
@@ -12983,6 +13403,7 @@ export type FindAthletebyIdpublicQuery = {
|
|
|
12983
13403
|
suspended: boolean;
|
|
12984
13404
|
onboardingComplete?: boolean | null;
|
|
12985
13405
|
onboardingStep?: number | null;
|
|
13406
|
+
isVerifiedOverride?: boolean | null;
|
|
12986
13407
|
country?: {
|
|
12987
13408
|
_id: string;
|
|
12988
13409
|
name: string;
|
|
@@ -13657,6 +14078,103 @@ export type TransferSponsorOwnershipMutationVariables = Exact<{
|
|
|
13657
14078
|
export type TransferSponsorOwnershipMutation = {
|
|
13658
14079
|
transferSponsorOwnership: boolean;
|
|
13659
14080
|
};
|
|
14081
|
+
export type SetAthleteVerifiedOverrideMutationVariables = Exact<{
|
|
14082
|
+
athleteId: Scalars['String']['input'];
|
|
14083
|
+
isVerifiedOverride: Scalars['Boolean']['input'];
|
|
14084
|
+
}>;
|
|
14085
|
+
export type SetAthleteVerifiedOverrideMutation = {
|
|
14086
|
+
setAthleteVerifiedOverride: {
|
|
14087
|
+
_id: string;
|
|
14088
|
+
firstName: string;
|
|
14089
|
+
lastName: string;
|
|
14090
|
+
screenName?: string | null;
|
|
14091
|
+
dob?: string | null;
|
|
14092
|
+
lgbt?: boolean | null;
|
|
14093
|
+
competitionGender?: string | null;
|
|
14094
|
+
trainer?: string | null;
|
|
14095
|
+
trainerUrl?: string | null;
|
|
14096
|
+
followerCount?: number | null;
|
|
14097
|
+
totalUpcomingCompetitions?: number | null;
|
|
14098
|
+
totalPastCompetitions?: number | null;
|
|
14099
|
+
aboutMe?: string | null;
|
|
14100
|
+
biography?: string | null;
|
|
14101
|
+
suspended: boolean;
|
|
14102
|
+
onboardingComplete?: boolean | null;
|
|
14103
|
+
onboardingStep?: number | null;
|
|
14104
|
+
isVerifiedOverride?: boolean | null;
|
|
14105
|
+
country?: {
|
|
14106
|
+
_id: string;
|
|
14107
|
+
name: string;
|
|
14108
|
+
} | null;
|
|
14109
|
+
location?: {
|
|
14110
|
+
_id: string;
|
|
14111
|
+
} | null;
|
|
14112
|
+
mainSport: {
|
|
14113
|
+
_id: string;
|
|
14114
|
+
name: string;
|
|
14115
|
+
};
|
|
14116
|
+
mainSportLevel: {
|
|
14117
|
+
_id: string;
|
|
14118
|
+
};
|
|
14119
|
+
profilePicture?: {
|
|
14120
|
+
_id: string;
|
|
14121
|
+
name?: string | null;
|
|
14122
|
+
} | null;
|
|
14123
|
+
cardPicture?: {
|
|
14124
|
+
_id: string;
|
|
14125
|
+
name?: string | null;
|
|
14126
|
+
} | null;
|
|
14127
|
+
bannerPicture?: {
|
|
14128
|
+
_id: string;
|
|
14129
|
+
name?: string | null;
|
|
14130
|
+
} | null;
|
|
14131
|
+
preferences: {
|
|
14132
|
+
_id: string;
|
|
14133
|
+
};
|
|
14134
|
+
allSports?: Array<{
|
|
14135
|
+
_id: string;
|
|
14136
|
+
name: string;
|
|
14137
|
+
}> | null;
|
|
14138
|
+
teams?: Array<{
|
|
14139
|
+
_id: string;
|
|
14140
|
+
name: string;
|
|
14141
|
+
}> | null;
|
|
14142
|
+
sponsorBrands?: Array<{
|
|
14143
|
+
_id: string;
|
|
14144
|
+
name: string;
|
|
14145
|
+
}> | null;
|
|
14146
|
+
competitions?: Array<{
|
|
14147
|
+
_id: string;
|
|
14148
|
+
}> | null;
|
|
14149
|
+
affiliations?: Array<{
|
|
14150
|
+
_id: string;
|
|
14151
|
+
}> | null;
|
|
14152
|
+
newsLinks?: Array<{
|
|
14153
|
+
_id: string;
|
|
14154
|
+
}> | null;
|
|
14155
|
+
channels?: Array<{
|
|
14156
|
+
_id: string;
|
|
14157
|
+
}> | null;
|
|
14158
|
+
currentCampaign?: {
|
|
14159
|
+
_id: string;
|
|
14160
|
+
} | null;
|
|
14161
|
+
fundingCampaigns?: Array<{
|
|
14162
|
+
_id: string;
|
|
14163
|
+
}> | null;
|
|
14164
|
+
stripeAccountReference?: {
|
|
14165
|
+
_id: string;
|
|
14166
|
+
} | null;
|
|
14167
|
+
albums?: Array<{
|
|
14168
|
+
_id: string;
|
|
14169
|
+
}> | null;
|
|
14170
|
+
historicalScores?: Array<{
|
|
14171
|
+
_id: string;
|
|
14172
|
+
}> | null;
|
|
14173
|
+
signedAgreements?: Array<{
|
|
14174
|
+
_id: string;
|
|
14175
|
+
}> | null;
|
|
14176
|
+
};
|
|
14177
|
+
};
|
|
13660
14178
|
export type ReorderAlbumIndexMutationVariables = Exact<{
|
|
13661
14179
|
input: EditDisplayIndexDto;
|
|
13662
14180
|
}>;
|
|
@@ -13759,6 +14277,8 @@ export type ApproveTeamMutation = {
|
|
|
13759
14277
|
visibility?: string | null;
|
|
13760
14278
|
stripeAccountId?: string | null;
|
|
13761
14279
|
vtxScore?: number | null;
|
|
14280
|
+
allowMemberCampaigns: boolean;
|
|
14281
|
+
accentColor?: string | null;
|
|
13762
14282
|
sports?: Array<{
|
|
13763
14283
|
_id: string;
|
|
13764
14284
|
name: string;
|
|
@@ -13778,6 +14298,50 @@ export type ApproveTeamMutation = {
|
|
|
13778
14298
|
athletes?: Array<{
|
|
13779
14299
|
_id: string;
|
|
13780
14300
|
}> | null;
|
|
14301
|
+
fundingCampaigns?: Array<{
|
|
14302
|
+
_id: string;
|
|
14303
|
+
}> | null;
|
|
14304
|
+
};
|
|
14305
|
+
};
|
|
14306
|
+
export type SetTeamCampaignPermissionMutationVariables = Exact<{
|
|
14307
|
+
teamId: Scalars['String']['input'];
|
|
14308
|
+
allowMemberCampaigns: Scalars['Boolean']['input'];
|
|
14309
|
+
}>;
|
|
14310
|
+
export type SetTeamCampaignPermissionMutation = {
|
|
14311
|
+
setTeamCampaignPermission: {
|
|
14312
|
+
_id: string;
|
|
14313
|
+
name: string;
|
|
14314
|
+
description?: string | null;
|
|
14315
|
+
approved?: boolean | null;
|
|
14316
|
+
joinPolicy?: string | null;
|
|
14317
|
+
maxRosterSize?: number | null;
|
|
14318
|
+
visibility?: string | null;
|
|
14319
|
+
stripeAccountId?: string | null;
|
|
14320
|
+
vtxScore?: number | null;
|
|
14321
|
+
allowMemberCampaigns: boolean;
|
|
14322
|
+
accentColor?: string | null;
|
|
14323
|
+
sports?: Array<{
|
|
14324
|
+
_id: string;
|
|
14325
|
+
name: string;
|
|
14326
|
+
}> | null;
|
|
14327
|
+
logo?: {
|
|
14328
|
+
_id: string;
|
|
14329
|
+
name?: string | null;
|
|
14330
|
+
} | null;
|
|
14331
|
+
banner?: {
|
|
14332
|
+
_id: string;
|
|
14333
|
+
name?: string | null;
|
|
14334
|
+
} | null;
|
|
14335
|
+
club?: {
|
|
14336
|
+
_id: string;
|
|
14337
|
+
name: string;
|
|
14338
|
+
} | null;
|
|
14339
|
+
athletes?: Array<{
|
|
14340
|
+
_id: string;
|
|
14341
|
+
}> | null;
|
|
14342
|
+
fundingCampaigns?: Array<{
|
|
14343
|
+
_id: string;
|
|
14344
|
+
}> | null;
|
|
13781
14345
|
};
|
|
13782
14346
|
};
|
|
13783
14347
|
export type ApproveClubMutationVariables = Exact<{
|
|
@@ -13796,6 +14360,47 @@ export type ApproveClubMutation = {
|
|
|
13796
14360
|
approved?: boolean | null;
|
|
13797
14361
|
visibility: string;
|
|
13798
14362
|
stripeAccountId?: string | null;
|
|
14363
|
+
allowMemberCampaigns: boolean;
|
|
14364
|
+
accentColor?: string | null;
|
|
14365
|
+
sports?: Array<{
|
|
14366
|
+
_id: string;
|
|
14367
|
+
name: string;
|
|
14368
|
+
}> | null;
|
|
14369
|
+
logo?: {
|
|
14370
|
+
_id: string;
|
|
14371
|
+
name?: string | null;
|
|
14372
|
+
} | null;
|
|
14373
|
+
banner?: {
|
|
14374
|
+
_id: string;
|
|
14375
|
+
name?: string | null;
|
|
14376
|
+
} | null;
|
|
14377
|
+
teams?: Array<{
|
|
14378
|
+
_id: string;
|
|
14379
|
+
name: string;
|
|
14380
|
+
}> | null;
|
|
14381
|
+
fundingCampaigns?: Array<{
|
|
14382
|
+
_id: string;
|
|
14383
|
+
}> | null;
|
|
14384
|
+
};
|
|
14385
|
+
};
|
|
14386
|
+
export type SetClubCampaignPermissionMutationVariables = Exact<{
|
|
14387
|
+
clubId: Scalars['String']['input'];
|
|
14388
|
+
allowMemberCampaigns: Scalars['Boolean']['input'];
|
|
14389
|
+
}>;
|
|
14390
|
+
export type SetClubCampaignPermissionMutation = {
|
|
14391
|
+
setClubCampaignPermission: {
|
|
14392
|
+
_id: string;
|
|
14393
|
+
name: string;
|
|
14394
|
+
description?: string | null;
|
|
14395
|
+
location?: string | null;
|
|
14396
|
+
website?: string | null;
|
|
14397
|
+
membershipType: string;
|
|
14398
|
+
feeStructure?: any | null;
|
|
14399
|
+
approved?: boolean | null;
|
|
14400
|
+
visibility: string;
|
|
14401
|
+
stripeAccountId?: string | null;
|
|
14402
|
+
allowMemberCampaigns: boolean;
|
|
14403
|
+
accentColor?: string | null;
|
|
13799
14404
|
sports?: Array<{
|
|
13800
14405
|
_id: string;
|
|
13801
14406
|
name: string;
|
|
@@ -13812,6 +14417,9 @@ export type ApproveClubMutation = {
|
|
|
13812
14417
|
_id: string;
|
|
13813
14418
|
name: string;
|
|
13814
14419
|
}> | null;
|
|
14420
|
+
fundingCampaigns?: Array<{
|
|
14421
|
+
_id: string;
|
|
14422
|
+
}> | null;
|
|
13815
14423
|
};
|
|
13816
14424
|
};
|
|
13817
14425
|
export type CreateBlogPostMutationVariables = Exact<{
|
|
@@ -16371,6 +16979,8 @@ export type TeamFieldsFragment = {
|
|
|
16371
16979
|
visibility?: string | null;
|
|
16372
16980
|
stripeAccountId?: string | null;
|
|
16373
16981
|
vtxScore?: number | null;
|
|
16982
|
+
allowMemberCampaigns: boolean;
|
|
16983
|
+
accentColor?: string | null;
|
|
16374
16984
|
sports?: Array<{
|
|
16375
16985
|
_id: string;
|
|
16376
16986
|
name: string;
|
|
@@ -16412,6 +17022,16 @@ export type TeamFieldsFragment = {
|
|
|
16412
17022
|
name: string;
|
|
16413
17023
|
} | null;
|
|
16414
17024
|
}> | null;
|
|
17025
|
+
fundingCampaigns?: Array<{
|
|
17026
|
+
_id: string;
|
|
17027
|
+
title: string;
|
|
17028
|
+
motivation?: string | null;
|
|
17029
|
+
fundsRequired: number;
|
|
17030
|
+
fundsObtained: number;
|
|
17031
|
+
status: string;
|
|
17032
|
+
endingDate: string;
|
|
17033
|
+
createdDate: string;
|
|
17034
|
+
}> | null;
|
|
16415
17035
|
};
|
|
16416
17036
|
export type ClubFieldsFragment = {
|
|
16417
17037
|
_id: string;
|
|
@@ -16423,7 +17043,9 @@ export type ClubFieldsFragment = {
|
|
|
16423
17043
|
feeStructure?: any | null;
|
|
16424
17044
|
approved?: boolean | null;
|
|
16425
17045
|
visibility: string;
|
|
17046
|
+
accentColor?: string | null;
|
|
16426
17047
|
stripeAccountId?: string | null;
|
|
17048
|
+
allowMemberCampaigns: boolean;
|
|
16427
17049
|
sports?: Array<{
|
|
16428
17050
|
_id: string;
|
|
16429
17051
|
name: string;
|
|
@@ -16452,6 +17074,16 @@ export type ClubFieldsFragment = {
|
|
|
16452
17074
|
key: string;
|
|
16453
17075
|
} | null;
|
|
16454
17076
|
}> | null;
|
|
17077
|
+
fundingCampaigns?: Array<{
|
|
17078
|
+
_id: string;
|
|
17079
|
+
title: string;
|
|
17080
|
+
motivation?: string | null;
|
|
17081
|
+
fundsRequired: number;
|
|
17082
|
+
fundsObtained: number;
|
|
17083
|
+
status: string;
|
|
17084
|
+
endingDate: string;
|
|
17085
|
+
createdDate: string;
|
|
17086
|
+
}> | null;
|
|
16455
17087
|
};
|
|
16456
17088
|
export type AthleteTeamFieldsFragment = {
|
|
16457
17089
|
_id: string;
|
|
@@ -16545,6 +17177,8 @@ export type FindTeamByIdQuery = {
|
|
|
16545
17177
|
visibility?: string | null;
|
|
16546
17178
|
stripeAccountId?: string | null;
|
|
16547
17179
|
vtxScore?: number | null;
|
|
17180
|
+
allowMemberCampaigns: boolean;
|
|
17181
|
+
accentColor?: string | null;
|
|
16548
17182
|
sports?: Array<{
|
|
16549
17183
|
_id: string;
|
|
16550
17184
|
name: string;
|
|
@@ -16586,6 +17220,16 @@ export type FindTeamByIdQuery = {
|
|
|
16586
17220
|
name: string;
|
|
16587
17221
|
} | null;
|
|
16588
17222
|
}> | null;
|
|
17223
|
+
fundingCampaigns?: Array<{
|
|
17224
|
+
_id: string;
|
|
17225
|
+
title: string;
|
|
17226
|
+
motivation?: string | null;
|
|
17227
|
+
fundsRequired: number;
|
|
17228
|
+
fundsObtained: number;
|
|
17229
|
+
status: string;
|
|
17230
|
+
endingDate: string;
|
|
17231
|
+
createdDate: string;
|
|
17232
|
+
}> | null;
|
|
16589
17233
|
};
|
|
16590
17234
|
};
|
|
16591
17235
|
export type FindTeamsQueryVariables = Exact<{
|
|
@@ -16603,6 +17247,8 @@ export type FindTeamsQuery = {
|
|
|
16603
17247
|
visibility?: string | null;
|
|
16604
17248
|
stripeAccountId?: string | null;
|
|
16605
17249
|
vtxScore?: number | null;
|
|
17250
|
+
allowMemberCampaigns: boolean;
|
|
17251
|
+
accentColor?: string | null;
|
|
16606
17252
|
sports?: Array<{
|
|
16607
17253
|
_id: string;
|
|
16608
17254
|
name: string;
|
|
@@ -16644,6 +17290,16 @@ export type FindTeamsQuery = {
|
|
|
16644
17290
|
name: string;
|
|
16645
17291
|
} | null;
|
|
16646
17292
|
}> | null;
|
|
17293
|
+
fundingCampaigns?: Array<{
|
|
17294
|
+
_id: string;
|
|
17295
|
+
title: string;
|
|
17296
|
+
motivation?: string | null;
|
|
17297
|
+
fundsRequired: number;
|
|
17298
|
+
fundsObtained: number;
|
|
17299
|
+
status: string;
|
|
17300
|
+
endingDate: string;
|
|
17301
|
+
createdDate: string;
|
|
17302
|
+
}> | null;
|
|
16647
17303
|
}>;
|
|
16648
17304
|
};
|
|
16649
17305
|
export type FindAllTeamsQueryVariables = Exact<{
|
|
@@ -16660,6 +17316,8 @@ export type FindAllTeamsQuery = {
|
|
|
16660
17316
|
visibility?: string | null;
|
|
16661
17317
|
stripeAccountId?: string | null;
|
|
16662
17318
|
vtxScore?: number | null;
|
|
17319
|
+
allowMemberCampaigns: boolean;
|
|
17320
|
+
accentColor?: string | null;
|
|
16663
17321
|
sports?: Array<{
|
|
16664
17322
|
_id: string;
|
|
16665
17323
|
name: string;
|
|
@@ -16701,6 +17359,16 @@ export type FindAllTeamsQuery = {
|
|
|
16701
17359
|
name: string;
|
|
16702
17360
|
} | null;
|
|
16703
17361
|
}> | null;
|
|
17362
|
+
fundingCampaigns?: Array<{
|
|
17363
|
+
_id: string;
|
|
17364
|
+
title: string;
|
|
17365
|
+
motivation?: string | null;
|
|
17366
|
+
fundsRequired: number;
|
|
17367
|
+
fundsObtained: number;
|
|
17368
|
+
status: string;
|
|
17369
|
+
endingDate: string;
|
|
17370
|
+
createdDate: string;
|
|
17371
|
+
}> | null;
|
|
16704
17372
|
}>;
|
|
16705
17373
|
};
|
|
16706
17374
|
export type GetMyTeamsQueryVariables = Exact<{
|
|
@@ -16717,6 +17385,8 @@ export type GetMyTeamsQuery = {
|
|
|
16717
17385
|
visibility?: string | null;
|
|
16718
17386
|
stripeAccountId?: string | null;
|
|
16719
17387
|
vtxScore?: number | null;
|
|
17388
|
+
allowMemberCampaigns: boolean;
|
|
17389
|
+
accentColor?: string | null;
|
|
16720
17390
|
sports?: Array<{
|
|
16721
17391
|
_id: string;
|
|
16722
17392
|
name: string;
|
|
@@ -16758,6 +17428,16 @@ export type GetMyTeamsQuery = {
|
|
|
16758
17428
|
name: string;
|
|
16759
17429
|
} | null;
|
|
16760
17430
|
}> | null;
|
|
17431
|
+
fundingCampaigns?: Array<{
|
|
17432
|
+
_id: string;
|
|
17433
|
+
title: string;
|
|
17434
|
+
motivation?: string | null;
|
|
17435
|
+
fundsRequired: number;
|
|
17436
|
+
fundsObtained: number;
|
|
17437
|
+
status: string;
|
|
17438
|
+
endingDate: string;
|
|
17439
|
+
createdDate: string;
|
|
17440
|
+
}> | null;
|
|
16761
17441
|
}>;
|
|
16762
17442
|
};
|
|
16763
17443
|
export type GetTeamRosterQueryVariables = Exact<{
|
|
@@ -16901,6 +17581,8 @@ export type CreateTeamMutation = {
|
|
|
16901
17581
|
visibility?: string | null;
|
|
16902
17582
|
stripeAccountId?: string | null;
|
|
16903
17583
|
vtxScore?: number | null;
|
|
17584
|
+
allowMemberCampaigns: boolean;
|
|
17585
|
+
accentColor?: string | null;
|
|
16904
17586
|
sports?: Array<{
|
|
16905
17587
|
_id: string;
|
|
16906
17588
|
name: string;
|
|
@@ -16942,6 +17624,16 @@ export type CreateTeamMutation = {
|
|
|
16942
17624
|
name: string;
|
|
16943
17625
|
} | null;
|
|
16944
17626
|
}> | null;
|
|
17627
|
+
fundingCampaigns?: Array<{
|
|
17628
|
+
_id: string;
|
|
17629
|
+
title: string;
|
|
17630
|
+
motivation?: string | null;
|
|
17631
|
+
fundsRequired: number;
|
|
17632
|
+
fundsObtained: number;
|
|
17633
|
+
status: string;
|
|
17634
|
+
endingDate: string;
|
|
17635
|
+
createdDate: string;
|
|
17636
|
+
}> | null;
|
|
16945
17637
|
};
|
|
16946
17638
|
};
|
|
16947
17639
|
export type UpdateTeamMutationVariables = Exact<{
|
|
@@ -16958,6 +17650,8 @@ export type UpdateTeamMutation = {
|
|
|
16958
17650
|
visibility?: string | null;
|
|
16959
17651
|
stripeAccountId?: string | null;
|
|
16960
17652
|
vtxScore?: number | null;
|
|
17653
|
+
allowMemberCampaigns: boolean;
|
|
17654
|
+
accentColor?: string | null;
|
|
16961
17655
|
sports?: Array<{
|
|
16962
17656
|
_id: string;
|
|
16963
17657
|
name: string;
|
|
@@ -16999,6 +17693,16 @@ export type UpdateTeamMutation = {
|
|
|
16999
17693
|
name: string;
|
|
17000
17694
|
} | null;
|
|
17001
17695
|
}> | null;
|
|
17696
|
+
fundingCampaigns?: Array<{
|
|
17697
|
+
_id: string;
|
|
17698
|
+
title: string;
|
|
17699
|
+
motivation?: string | null;
|
|
17700
|
+
fundsRequired: number;
|
|
17701
|
+
fundsObtained: number;
|
|
17702
|
+
status: string;
|
|
17703
|
+
endingDate: string;
|
|
17704
|
+
createdDate: string;
|
|
17705
|
+
}> | null;
|
|
17002
17706
|
};
|
|
17003
17707
|
};
|
|
17004
17708
|
export type JoinTeamMutationVariables = Exact<{
|
|
@@ -17127,6 +17831,7 @@ export type CreateTeamDonationCheckoutMutationVariables = Exact<{
|
|
|
17127
17831
|
currency?: Scalars['String']['input'];
|
|
17128
17832
|
donorEmail?: InputMaybe<Scalars['String']['input']>;
|
|
17129
17833
|
donorName?: InputMaybe<Scalars['String']['input']>;
|
|
17834
|
+
fundingCampaignId?: InputMaybe<Scalars['String']['input']>;
|
|
17130
17835
|
}>;
|
|
17131
17836
|
export type CreateTeamDonationCheckoutMutation = {
|
|
17132
17837
|
createTeamDonationCheckout: string;
|
|
@@ -17145,7 +17850,9 @@ export type FindClubByIdQuery = {
|
|
|
17145
17850
|
feeStructure?: any | null;
|
|
17146
17851
|
approved?: boolean | null;
|
|
17147
17852
|
visibility: string;
|
|
17853
|
+
accentColor?: string | null;
|
|
17148
17854
|
stripeAccountId?: string | null;
|
|
17855
|
+
allowMemberCampaigns: boolean;
|
|
17149
17856
|
sports?: Array<{
|
|
17150
17857
|
_id: string;
|
|
17151
17858
|
name: string;
|
|
@@ -17174,6 +17881,16 @@ export type FindClubByIdQuery = {
|
|
|
17174
17881
|
key: string;
|
|
17175
17882
|
} | null;
|
|
17176
17883
|
}> | null;
|
|
17884
|
+
fundingCampaigns?: Array<{
|
|
17885
|
+
_id: string;
|
|
17886
|
+
title: string;
|
|
17887
|
+
motivation?: string | null;
|
|
17888
|
+
fundsRequired: number;
|
|
17889
|
+
fundsObtained: number;
|
|
17890
|
+
status: string;
|
|
17891
|
+
endingDate: string;
|
|
17892
|
+
createdDate: string;
|
|
17893
|
+
}> | null;
|
|
17177
17894
|
};
|
|
17178
17895
|
};
|
|
17179
17896
|
export type FindClubsQueryVariables = Exact<{
|
|
@@ -17190,7 +17907,9 @@ export type FindClubsQuery = {
|
|
|
17190
17907
|
feeStructure?: any | null;
|
|
17191
17908
|
approved?: boolean | null;
|
|
17192
17909
|
visibility: string;
|
|
17910
|
+
accentColor?: string | null;
|
|
17193
17911
|
stripeAccountId?: string | null;
|
|
17912
|
+
allowMemberCampaigns: boolean;
|
|
17194
17913
|
sports?: Array<{
|
|
17195
17914
|
_id: string;
|
|
17196
17915
|
name: string;
|
|
@@ -17219,6 +17938,16 @@ export type FindClubsQuery = {
|
|
|
17219
17938
|
key: string;
|
|
17220
17939
|
} | null;
|
|
17221
17940
|
}> | null;
|
|
17941
|
+
fundingCampaigns?: Array<{
|
|
17942
|
+
_id: string;
|
|
17943
|
+
title: string;
|
|
17944
|
+
motivation?: string | null;
|
|
17945
|
+
fundsRequired: number;
|
|
17946
|
+
fundsObtained: number;
|
|
17947
|
+
status: string;
|
|
17948
|
+
endingDate: string;
|
|
17949
|
+
createdDate: string;
|
|
17950
|
+
}> | null;
|
|
17222
17951
|
}>;
|
|
17223
17952
|
};
|
|
17224
17953
|
export type FindAllClubsQueryVariables = Exact<{
|
|
@@ -17235,7 +17964,9 @@ export type FindAllClubsQuery = {
|
|
|
17235
17964
|
feeStructure?: any | null;
|
|
17236
17965
|
approved?: boolean | null;
|
|
17237
17966
|
visibility: string;
|
|
17967
|
+
accentColor?: string | null;
|
|
17238
17968
|
stripeAccountId?: string | null;
|
|
17969
|
+
allowMemberCampaigns: boolean;
|
|
17239
17970
|
sports?: Array<{
|
|
17240
17971
|
_id: string;
|
|
17241
17972
|
name: string;
|
|
@@ -17264,6 +17995,16 @@ export type FindAllClubsQuery = {
|
|
|
17264
17995
|
key: string;
|
|
17265
17996
|
} | null;
|
|
17266
17997
|
}> | null;
|
|
17998
|
+
fundingCampaigns?: Array<{
|
|
17999
|
+
_id: string;
|
|
18000
|
+
title: string;
|
|
18001
|
+
motivation?: string | null;
|
|
18002
|
+
fundsRequired: number;
|
|
18003
|
+
fundsObtained: number;
|
|
18004
|
+
status: string;
|
|
18005
|
+
endingDate: string;
|
|
18006
|
+
createdDate: string;
|
|
18007
|
+
}> | null;
|
|
17267
18008
|
}>;
|
|
17268
18009
|
};
|
|
17269
18010
|
export type GetMyClubsQueryVariables = Exact<{
|
|
@@ -17280,7 +18021,9 @@ export type GetMyClubsQuery = {
|
|
|
17280
18021
|
feeStructure?: any | null;
|
|
17281
18022
|
approved?: boolean | null;
|
|
17282
18023
|
visibility: string;
|
|
18024
|
+
accentColor?: string | null;
|
|
17283
18025
|
stripeAccountId?: string | null;
|
|
18026
|
+
allowMemberCampaigns: boolean;
|
|
17284
18027
|
sports?: Array<{
|
|
17285
18028
|
_id: string;
|
|
17286
18029
|
name: string;
|
|
@@ -17309,6 +18052,16 @@ export type GetMyClubsQuery = {
|
|
|
17309
18052
|
key: string;
|
|
17310
18053
|
} | null;
|
|
17311
18054
|
}> | null;
|
|
18055
|
+
fundingCampaigns?: Array<{
|
|
18056
|
+
_id: string;
|
|
18057
|
+
title: string;
|
|
18058
|
+
motivation?: string | null;
|
|
18059
|
+
fundsRequired: number;
|
|
18060
|
+
fundsObtained: number;
|
|
18061
|
+
status: string;
|
|
18062
|
+
endingDate: string;
|
|
18063
|
+
createdDate: string;
|
|
18064
|
+
}> | null;
|
|
17312
18065
|
}>;
|
|
17313
18066
|
};
|
|
17314
18067
|
export type GetClubMembersQueryVariables = Exact<{
|
|
@@ -17362,7 +18115,9 @@ export type CreateClubMutation = {
|
|
|
17362
18115
|
feeStructure?: any | null;
|
|
17363
18116
|
approved?: boolean | null;
|
|
17364
18117
|
visibility: string;
|
|
18118
|
+
accentColor?: string | null;
|
|
17365
18119
|
stripeAccountId?: string | null;
|
|
18120
|
+
allowMemberCampaigns: boolean;
|
|
17366
18121
|
sports?: Array<{
|
|
17367
18122
|
_id: string;
|
|
17368
18123
|
name: string;
|
|
@@ -17391,6 +18146,16 @@ export type CreateClubMutation = {
|
|
|
17391
18146
|
key: string;
|
|
17392
18147
|
} | null;
|
|
17393
18148
|
}> | null;
|
|
18149
|
+
fundingCampaigns?: Array<{
|
|
18150
|
+
_id: string;
|
|
18151
|
+
title: string;
|
|
18152
|
+
motivation?: string | null;
|
|
18153
|
+
fundsRequired: number;
|
|
18154
|
+
fundsObtained: number;
|
|
18155
|
+
status: string;
|
|
18156
|
+
endingDate: string;
|
|
18157
|
+
createdDate: string;
|
|
18158
|
+
}> | null;
|
|
17394
18159
|
};
|
|
17395
18160
|
};
|
|
17396
18161
|
export type UpdateClubMutationVariables = Exact<{
|
|
@@ -17407,7 +18172,9 @@ export type UpdateClubMutation = {
|
|
|
17407
18172
|
feeStructure?: any | null;
|
|
17408
18173
|
approved?: boolean | null;
|
|
17409
18174
|
visibility: string;
|
|
18175
|
+
accentColor?: string | null;
|
|
17410
18176
|
stripeAccountId?: string | null;
|
|
18177
|
+
allowMemberCampaigns: boolean;
|
|
17411
18178
|
sports?: Array<{
|
|
17412
18179
|
_id: string;
|
|
17413
18180
|
name: string;
|
|
@@ -17436,6 +18203,16 @@ export type UpdateClubMutation = {
|
|
|
17436
18203
|
key: string;
|
|
17437
18204
|
} | null;
|
|
17438
18205
|
}> | null;
|
|
18206
|
+
fundingCampaigns?: Array<{
|
|
18207
|
+
_id: string;
|
|
18208
|
+
title: string;
|
|
18209
|
+
motivation?: string | null;
|
|
18210
|
+
fundsRequired: number;
|
|
18211
|
+
fundsObtained: number;
|
|
18212
|
+
status: string;
|
|
18213
|
+
endingDate: string;
|
|
18214
|
+
createdDate: string;
|
|
18215
|
+
}> | null;
|
|
17439
18216
|
};
|
|
17440
18217
|
};
|
|
17441
18218
|
export type JoinClubMutationVariables = Exact<{
|
|
@@ -17559,6 +18336,7 @@ export type CreateClubDonationCheckoutMutationVariables = Exact<{
|
|
|
17559
18336
|
currency?: Scalars['String']['input'];
|
|
17560
18337
|
donorEmail?: InputMaybe<Scalars['String']['input']>;
|
|
17561
18338
|
donorName?: InputMaybe<Scalars['String']['input']>;
|
|
18339
|
+
fundingCampaignId?: InputMaybe<Scalars['String']['input']>;
|
|
17562
18340
|
}>;
|
|
17563
18341
|
export type CreateClubDonationCheckoutMutation = {
|
|
17564
18342
|
createClubDonationCheckout: string;
|
|
@@ -18432,6 +19210,7 @@ export declare const RemoveSponsorUserDocument: import("graphql").DocumentNode;
|
|
|
18432
19210
|
export declare const ChangeSponsorUserRoleDocument: import("graphql").DocumentNode;
|
|
18433
19211
|
export declare const RevokeSponsorUserInvitationDocument: import("graphql").DocumentNode;
|
|
18434
19212
|
export declare const TransferSponsorOwnershipDocument: import("graphql").DocumentNode;
|
|
19213
|
+
export declare const SetAthleteVerifiedOverrideDocument: import("graphql").DocumentNode;
|
|
18435
19214
|
export declare const ReorderAlbumIndexDocument: import("graphql").DocumentNode;
|
|
18436
19215
|
export declare const EditAlbumDocument: import("graphql").DocumentNode;
|
|
18437
19216
|
export declare const DeleteAthletePhotosDocument: import("graphql").DocumentNode;
|
|
@@ -18439,7 +19218,9 @@ export declare const IngestCompetitionResultDocument: import("graphql").Document
|
|
|
18439
19218
|
export declare const DeleteAthleteMembershipAffilationDocument: import("graphql").DocumentNode;
|
|
18440
19219
|
export declare const SubmitHealthKitActivitiesDocument: import("graphql").DocumentNode;
|
|
18441
19220
|
export declare const ApproveTeamDocument: import("graphql").DocumentNode;
|
|
19221
|
+
export declare const SetTeamCampaignPermissionDocument: import("graphql").DocumentNode;
|
|
18442
19222
|
export declare const ApproveClubDocument: import("graphql").DocumentNode;
|
|
19223
|
+
export declare const SetClubCampaignPermissionDocument: import("graphql").DocumentNode;
|
|
18443
19224
|
export declare const CreateBlogPostDocument: import("graphql").DocumentNode;
|
|
18444
19225
|
export declare const UpdateBlogPostDocument: import("graphql").DocumentNode;
|
|
18445
19226
|
export declare const DeleteBlogPostDocument: import("graphql").DocumentNode;
|
|
@@ -18808,6 +19589,7 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
|
|
|
18808
19589
|
ChangeSponsorUserRole(variables: ChangeSponsorUserRoleMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ChangeSponsorUserRoleMutation>;
|
|
18809
19590
|
RevokeSponsorUserInvitation(variables: RevokeSponsorUserInvitationMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<RevokeSponsorUserInvitationMutation>;
|
|
18810
19591
|
TransferSponsorOwnership(variables: TransferSponsorOwnershipMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<TransferSponsorOwnershipMutation>;
|
|
19592
|
+
SetAthleteVerifiedOverride(variables: SetAthleteVerifiedOverrideMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<SetAthleteVerifiedOverrideMutation>;
|
|
18811
19593
|
ReorderAlbumIndex(variables: ReorderAlbumIndexMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ReorderAlbumIndexMutation>;
|
|
18812
19594
|
EditAlbum(variables: EditAlbumMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<EditAlbumMutation>;
|
|
18813
19595
|
DeleteAthletePhotos(variables: DeleteAthletePhotosMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<DeleteAthletePhotosMutation>;
|
|
@@ -18815,7 +19597,9 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
|
|
|
18815
19597
|
DeleteAthleteMembershipAffilation(variables: DeleteAthleteMembershipAffilationMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<DeleteAthleteMembershipAffilationMutation>;
|
|
18816
19598
|
SubmitHealthKitActivities(variables: SubmitHealthKitActivitiesMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<SubmitHealthKitActivitiesMutation>;
|
|
18817
19599
|
ApproveTeam(variables: ApproveTeamMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ApproveTeamMutation>;
|
|
19600
|
+
SetTeamCampaignPermission(variables: SetTeamCampaignPermissionMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<SetTeamCampaignPermissionMutation>;
|
|
18818
19601
|
ApproveClub(variables: ApproveClubMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ApproveClubMutation>;
|
|
19602
|
+
SetClubCampaignPermission(variables: SetClubCampaignPermissionMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<SetClubCampaignPermissionMutation>;
|
|
18819
19603
|
CreateBlogPost(variables: CreateBlogPostMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CreateBlogPostMutation>;
|
|
18820
19604
|
UpdateBlogPost(variables: UpdateBlogPostMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<UpdateBlogPostMutation>;
|
|
18821
19605
|
DeleteBlogPost(variables: DeleteBlogPostMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<DeleteBlogPostMutation>;
|