@vertikalx/vtx-backend-client 3.5.1-dev.0 → 3.5.5-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.
@@ -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: AthleteReference;
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<{
@@ -10291,6 +10413,97 @@ export type ValidateTokenMutation = {
10291
10413
  refreshExpiresAt: number;
10292
10414
  };
10293
10415
  };
10416
+ export type BlogPostFieldsFragment = {
10417
+ _id: string;
10418
+ title: string;
10419
+ slug: string;
10420
+ content: string;
10421
+ excerpt: string;
10422
+ createdAt: string;
10423
+ publishedAt?: string | null;
10424
+ isFlagged: boolean;
10425
+ moderationStatus: string;
10426
+ authorName?: string | null;
10427
+ author?: {
10428
+ _id: string;
10429
+ firstName: string;
10430
+ lastName: string;
10431
+ screenName?: string | null;
10432
+ profilePicture?: {
10433
+ _id: string;
10434
+ url: string;
10435
+ } | null;
10436
+ } | null;
10437
+ coverImage?: {
10438
+ _id: string;
10439
+ url: string;
10440
+ name?: string | null;
10441
+ } | null;
10442
+ };
10443
+ export type ListBlogPostsQueryVariables = Exact<{
10444
+ [key: string]: never;
10445
+ }>;
10446
+ export type ListBlogPostsQuery = {
10447
+ listBlogPosts: Array<{
10448
+ _id: string;
10449
+ title: string;
10450
+ slug: string;
10451
+ content: string;
10452
+ excerpt: string;
10453
+ createdAt: string;
10454
+ publishedAt?: string | null;
10455
+ isFlagged: boolean;
10456
+ moderationStatus: string;
10457
+ authorName?: string | null;
10458
+ author?: {
10459
+ _id: string;
10460
+ firstName: string;
10461
+ lastName: string;
10462
+ screenName?: string | null;
10463
+ profilePicture?: {
10464
+ _id: string;
10465
+ url: string;
10466
+ } | null;
10467
+ } | null;
10468
+ coverImage?: {
10469
+ _id: string;
10470
+ url: string;
10471
+ name?: string | null;
10472
+ } | null;
10473
+ }>;
10474
+ };
10475
+ export type GetBlogPostQueryVariables = Exact<{
10476
+ slug: Scalars['String']['input'];
10477
+ }>;
10478
+ export type GetBlogPostQuery = {
10479
+ getBlogPost?: {
10480
+ _id: string;
10481
+ title: string;
10482
+ slug: string;
10483
+ content: string;
10484
+ excerpt: string;
10485
+ createdAt: string;
10486
+ publishedAt?: string | null;
10487
+ isFlagged: boolean;
10488
+ moderationStatus: string;
10489
+ authorName?: string | null;
10490
+ author?: {
10491
+ _id: string;
10492
+ firstName: string;
10493
+ lastName: string;
10494
+ screenName?: string | null;
10495
+ profilePicture?: {
10496
+ _id: string;
10497
+ url: string;
10498
+ } | null;
10499
+ } | null;
10500
+ coverImage?: {
10501
+ _id: string;
10502
+ url: string;
10503
+ name?: string | null;
10504
+ } | null;
10505
+ } | null;
10506
+ };
10294
10507
  export type ListBlogPostsAdminQueryVariables = Exact<{
10295
10508
  [key: string]: never;
10296
10509
  }>;
@@ -10305,6 +10518,7 @@ export type ListBlogPostsAdminQuery = {
10305
10518
  publishedAt?: string | null;
10306
10519
  isFlagged: boolean;
10307
10520
  moderationStatus: string;
10521
+ authorName?: string | null;
10308
10522
  author?: {
10309
10523
  _id: string;
10310
10524
  firstName: string;
@@ -10452,6 +10666,33 @@ export type CampaignFieldsFragment = {
10452
10666
  size?: number | null;
10453
10667
  useType?: string | null;
10454
10668
  } | null;
10669
+ club?: {
10670
+ _id: string;
10671
+ name: string;
10672
+ description?: string | null;
10673
+ logo?: {
10674
+ _id: string;
10675
+ url: string;
10676
+ } | null;
10677
+ sports?: Array<{
10678
+ _id: string;
10679
+ name: string;
10680
+ }> | null;
10681
+ } | null;
10682
+ team?: {
10683
+ _id: string;
10684
+ name: string;
10685
+ description?: string | null;
10686
+ vtxScore?: number | null;
10687
+ logo?: {
10688
+ _id: string;
10689
+ url: string;
10690
+ } | null;
10691
+ sports?: Array<{
10692
+ _id: string;
10693
+ name: string;
10694
+ }> | null;
10695
+ } | null;
10455
10696
  };
10456
10697
  export type DonationThankYouFieldsFragment = {
10457
10698
  _id: string;
@@ -10533,7 +10774,7 @@ export type BrowseCampaignFieldsFragment = {
10533
10774
  }> | null;
10534
10775
  } | null;
10535
10776
  }> | null;
10536
- athlete: {
10777
+ athlete?: {
10537
10778
  _id: string;
10538
10779
  firstName: string;
10539
10780
  lastName: string;
@@ -10559,7 +10800,34 @@ export type BrowseCampaignFieldsFragment = {
10559
10800
  _id: string;
10560
10801
  name: string;
10561
10802
  } | null;
10562
- };
10803
+ } | null;
10804
+ club?: {
10805
+ _id: string;
10806
+ name: string;
10807
+ description?: string | null;
10808
+ logo?: {
10809
+ _id: string;
10810
+ url: string;
10811
+ } | null;
10812
+ sports?: Array<{
10813
+ _id: string;
10814
+ name: string;
10815
+ }> | null;
10816
+ } | null;
10817
+ team?: {
10818
+ _id: string;
10819
+ name: string;
10820
+ description?: string | null;
10821
+ vtxScore?: number | null;
10822
+ logo?: {
10823
+ _id: string;
10824
+ url: string;
10825
+ } | null;
10826
+ sports?: Array<{
10827
+ _id: string;
10828
+ name: string;
10829
+ }> | null;
10830
+ } | null;
10563
10831
  };
10564
10832
  export type DonationFieldsFragment = {
10565
10833
  checkoutSessionId: string;
@@ -10640,12 +10908,12 @@ export type GetAthleteCampaignsQuery = {
10640
10908
  thankYouMessage?: string | null;
10641
10909
  thankYouMediaUrl?: string | null;
10642
10910
  autoSendThankYou: boolean;
10643
- athlete: {
10911
+ athlete?: {
10644
10912
  _id: string;
10645
10913
  firstName: string;
10646
10914
  lastName: string;
10647
10915
  screenName?: string | null;
10648
- };
10916
+ } | null;
10649
10917
  video?: {
10650
10918
  _id: string;
10651
10919
  source: string;
@@ -10759,6 +11027,33 @@ export type GetAthleteCampaignsQuery = {
10759
11027
  size?: number | null;
10760
11028
  useType?: string | null;
10761
11029
  } | null;
11030
+ club?: {
11031
+ _id: string;
11032
+ name: string;
11033
+ description?: string | null;
11034
+ logo?: {
11035
+ _id: string;
11036
+ url: string;
11037
+ } | null;
11038
+ sports?: Array<{
11039
+ _id: string;
11040
+ name: string;
11041
+ }> | null;
11042
+ } | null;
11043
+ team?: {
11044
+ _id: string;
11045
+ name: string;
11046
+ description?: string | null;
11047
+ vtxScore?: number | null;
11048
+ logo?: {
11049
+ _id: string;
11050
+ url: string;
11051
+ } | null;
11052
+ sports?: Array<{
11053
+ _id: string;
11054
+ name: string;
11055
+ }> | null;
11056
+ } | null;
10762
11057
  }>;
10763
11058
  };
10764
11059
  export type BrowseCampaignsQueryVariables = Exact<{
@@ -10840,7 +11135,7 @@ export type BrowseCampaignsQuery = {
10840
11135
  }> | null;
10841
11136
  } | null;
10842
11137
  }> | null;
10843
- athlete: {
11138
+ athlete?: {
10844
11139
  _id: string;
10845
11140
  firstName: string;
10846
11141
  lastName: string;
@@ -10866,7 +11161,34 @@ export type BrowseCampaignsQuery = {
10866
11161
  _id: string;
10867
11162
  name: string;
10868
11163
  } | null;
10869
- };
11164
+ } | null;
11165
+ club?: {
11166
+ _id: string;
11167
+ name: string;
11168
+ description?: string | null;
11169
+ logo?: {
11170
+ _id: string;
11171
+ url: string;
11172
+ } | null;
11173
+ sports?: Array<{
11174
+ _id: string;
11175
+ name: string;
11176
+ }> | null;
11177
+ } | null;
11178
+ team?: {
11179
+ _id: string;
11180
+ name: string;
11181
+ description?: string | null;
11182
+ vtxScore?: number | null;
11183
+ logo?: {
11184
+ _id: string;
11185
+ url: string;
11186
+ } | null;
11187
+ sports?: Array<{
11188
+ _id: string;
11189
+ name: string;
11190
+ }> | null;
11191
+ } | null;
10870
11192
  }>;
10871
11193
  featuredPopular: Array<{
10872
11194
  _id: string;
@@ -10938,7 +11260,7 @@ export type BrowseCampaignsQuery = {
10938
11260
  }> | null;
10939
11261
  } | null;
10940
11262
  }> | null;
10941
- athlete: {
11263
+ athlete?: {
10942
11264
  _id: string;
10943
11265
  firstName: string;
10944
11266
  lastName: string;
@@ -10964,7 +11286,34 @@ export type BrowseCampaignsQuery = {
10964
11286
  _id: string;
10965
11287
  name: string;
10966
11288
  } | null;
10967
- };
11289
+ } | null;
11290
+ club?: {
11291
+ _id: string;
11292
+ name: string;
11293
+ description?: string | null;
11294
+ logo?: {
11295
+ _id: string;
11296
+ url: string;
11297
+ } | null;
11298
+ sports?: Array<{
11299
+ _id: string;
11300
+ name: string;
11301
+ }> | null;
11302
+ } | null;
11303
+ team?: {
11304
+ _id: string;
11305
+ name: string;
11306
+ description?: string | null;
11307
+ vtxScore?: number | null;
11308
+ logo?: {
11309
+ _id: string;
11310
+ url: string;
11311
+ } | null;
11312
+ sports?: Array<{
11313
+ _id: string;
11314
+ name: string;
11315
+ }> | null;
11316
+ } | null;
10968
11317
  }>;
10969
11318
  featuredEndingSoon: Array<{
10970
11319
  _id: string;
@@ -11036,7 +11385,7 @@ export type BrowseCampaignsQuery = {
11036
11385
  }> | null;
11037
11386
  } | null;
11038
11387
  }> | null;
11039
- athlete: {
11388
+ athlete?: {
11040
11389
  _id: string;
11041
11390
  firstName: string;
11042
11391
  lastName: string;
@@ -11062,14 +11411,41 @@ export type BrowseCampaignsQuery = {
11062
11411
  _id: string;
11063
11412
  name: string;
11064
11413
  } | null;
11065
- };
11066
- }>;
11067
- };
11068
- };
11069
- export type CreateFundingCampaignMutationVariables = Exact<{
11070
- input: CreateFundingCampaignDto;
11071
- }>;
11072
- export type CreateFundingCampaignMutation = {
11414
+ } | null;
11415
+ club?: {
11416
+ _id: string;
11417
+ name: string;
11418
+ description?: string | null;
11419
+ logo?: {
11420
+ _id: string;
11421
+ url: string;
11422
+ } | null;
11423
+ sports?: Array<{
11424
+ _id: string;
11425
+ name: string;
11426
+ }> | null;
11427
+ } | null;
11428
+ team?: {
11429
+ _id: string;
11430
+ name: string;
11431
+ description?: string | null;
11432
+ vtxScore?: number | null;
11433
+ logo?: {
11434
+ _id: string;
11435
+ url: string;
11436
+ } | null;
11437
+ sports?: Array<{
11438
+ _id: string;
11439
+ name: string;
11440
+ }> | null;
11441
+ } | null;
11442
+ }>;
11443
+ };
11444
+ };
11445
+ export type CreateFundingCampaignMutationVariables = Exact<{
11446
+ input: CreateFundingCampaignDto;
11447
+ }>;
11448
+ export type CreateFundingCampaignMutation = {
11073
11449
  createFundingCampaign: {
11074
11450
  _id: string;
11075
11451
  budgetMode: string;
@@ -11200,6 +11576,33 @@ export type CreateFundingCampaignMutation = {
11200
11576
  size?: number | null;
11201
11577
  useType?: string | null;
11202
11578
  } | null;
11579
+ club?: {
11580
+ _id: string;
11581
+ name: string;
11582
+ description?: string | null;
11583
+ logo?: {
11584
+ _id: string;
11585
+ url: string;
11586
+ } | null;
11587
+ sports?: Array<{
11588
+ _id: string;
11589
+ name: string;
11590
+ }> | null;
11591
+ } | null;
11592
+ team?: {
11593
+ _id: string;
11594
+ name: string;
11595
+ description?: string | null;
11596
+ vtxScore?: number | null;
11597
+ logo?: {
11598
+ _id: string;
11599
+ url: string;
11600
+ } | null;
11601
+ sports?: Array<{
11602
+ _id: string;
11603
+ name: string;
11604
+ }> | null;
11605
+ } | null;
11203
11606
  };
11204
11607
  };
11205
11608
  export type UpdateFundingCampaignMutationVariables = Exact<{
@@ -11336,6 +11739,33 @@ export type UpdateFundingCampaignMutation = {
11336
11739
  size?: number | null;
11337
11740
  useType?: string | null;
11338
11741
  } | null;
11742
+ club?: {
11743
+ _id: string;
11744
+ name: string;
11745
+ description?: string | null;
11746
+ logo?: {
11747
+ _id: string;
11748
+ url: string;
11749
+ } | null;
11750
+ sports?: Array<{
11751
+ _id: string;
11752
+ name: string;
11753
+ }> | null;
11754
+ } | null;
11755
+ team?: {
11756
+ _id: string;
11757
+ name: string;
11758
+ description?: string | null;
11759
+ vtxScore?: number | null;
11760
+ logo?: {
11761
+ _id: string;
11762
+ url: string;
11763
+ } | null;
11764
+ sports?: Array<{
11765
+ _id: string;
11766
+ name: string;
11767
+ }> | null;
11768
+ } | null;
11339
11769
  };
11340
11770
  };
11341
11771
  export type DeleteFundingCampaignMutationVariables = Exact<{
@@ -11499,6 +11929,33 @@ export type SetFundingStatusMutation = {
11499
11929
  size?: number | null;
11500
11930
  useType?: string | null;
11501
11931
  } | null;
11932
+ club?: {
11933
+ _id: string;
11934
+ name: string;
11935
+ description?: string | null;
11936
+ logo?: {
11937
+ _id: string;
11938
+ url: string;
11939
+ } | null;
11940
+ sports?: Array<{
11941
+ _id: string;
11942
+ name: string;
11943
+ }> | null;
11944
+ } | null;
11945
+ team?: {
11946
+ _id: string;
11947
+ name: string;
11948
+ description?: string | null;
11949
+ vtxScore?: number | null;
11950
+ logo?: {
11951
+ _id: string;
11952
+ url: string;
11953
+ } | null;
11954
+ sports?: Array<{
11955
+ _id: string;
11956
+ name: string;
11957
+ }> | null;
11958
+ } | null;
11502
11959
  };
11503
11960
  };
11504
11961
  export type SetCurrentCampaignMutationVariables = Exact<{
@@ -11635,6 +12092,33 @@ export type SetCurrentCampaignMutation = {
11635
12092
  size?: number | null;
11636
12093
  useType?: string | null;
11637
12094
  } | null;
12095
+ club?: {
12096
+ _id: string;
12097
+ name: string;
12098
+ description?: string | null;
12099
+ logo?: {
12100
+ _id: string;
12101
+ url: string;
12102
+ } | null;
12103
+ sports?: Array<{
12104
+ _id: string;
12105
+ name: string;
12106
+ }> | null;
12107
+ } | null;
12108
+ team?: {
12109
+ _id: string;
12110
+ name: string;
12111
+ description?: string | null;
12112
+ vtxScore?: number | null;
12113
+ logo?: {
12114
+ _id: string;
12115
+ url: string;
12116
+ } | null;
12117
+ sports?: Array<{
12118
+ _id: string;
12119
+ name: string;
12120
+ }> | null;
12121
+ } | null;
11638
12122
  };
11639
12123
  };
11640
12124
  export type GetDonationsByAthleteQueryVariables = Exact<{
@@ -11724,7 +12208,7 @@ export type GetDonationsByMemberQuery = {
11724
12208
  initialFundsObtained: number;
11725
12209
  fundsObtained: number;
11726
12210
  endingDate: string;
11727
- athlete: {
12211
+ athlete?: {
11728
12212
  _id: string;
11729
12213
  firstName: string;
11730
12214
  lastName: string;
@@ -11766,7 +12250,7 @@ export type GetDonationsByMemberQuery = {
11766
12250
  url: string;
11767
12251
  key: string;
11768
12252
  } | null;
11769
- };
12253
+ } | null;
11770
12254
  video?: {
11771
12255
  _id: string;
11772
12256
  source: string;
@@ -12354,6 +12838,33 @@ export type UpdateThankYouTemplateMutation = {
12354
12838
  size?: number | null;
12355
12839
  useType?: string | null;
12356
12840
  } | null;
12841
+ club?: {
12842
+ _id: string;
12843
+ name: string;
12844
+ description?: string | null;
12845
+ logo?: {
12846
+ _id: string;
12847
+ url: string;
12848
+ } | null;
12849
+ sports?: Array<{
12850
+ _id: string;
12851
+ name: string;
12852
+ }> | null;
12853
+ } | null;
12854
+ team?: {
12855
+ _id: string;
12856
+ name: string;
12857
+ description?: string | null;
12858
+ vtxScore?: number | null;
12859
+ logo?: {
12860
+ _id: string;
12861
+ url: string;
12862
+ } | null;
12863
+ sports?: Array<{
12864
+ _id: string;
12865
+ name: string;
12866
+ }> | null;
12867
+ } | null;
12357
12868
  };
12358
12869
  };
12359
12870
  export type SendThankYouMutationVariables = Exact<{
@@ -12873,6 +13384,7 @@ export type ListSponsorFavoritesQuery = {
12873
13384
  suspended: boolean;
12874
13385
  onboardingComplete?: boolean | null;
12875
13386
  onboardingStep?: number | null;
13387
+ isVerifiedOverride?: boolean | null;
12876
13388
  country?: {
12877
13389
  _id: string;
12878
13390
  name: string;
@@ -12983,6 +13495,7 @@ export type FindAthletebyIdpublicQuery = {
12983
13495
  suspended: boolean;
12984
13496
  onboardingComplete?: boolean | null;
12985
13497
  onboardingStep?: number | null;
13498
+ isVerifiedOverride?: boolean | null;
12986
13499
  country?: {
12987
13500
  _id: string;
12988
13501
  name: string;
@@ -13436,54 +13949,6 @@ export type GetEmailCampaignQuery = {
13436
13949
  } | null;
13437
13950
  };
13438
13951
  };
13439
- export type GetBlogPostQueryVariables = Exact<{
13440
- slug: Scalars['String']['input'];
13441
- }>;
13442
- export type GetBlogPostQuery = {
13443
- getBlogPost?: {
13444
- _id: string;
13445
- title: string;
13446
- slug: string;
13447
- content: string;
13448
- excerpt: string;
13449
- createdAt: string;
13450
- publishedAt?: string | null;
13451
- isFlagged: boolean;
13452
- moderationStatus: string;
13453
- authorName?: string | null;
13454
- author?: {
13455
- _id: string;
13456
- } | null;
13457
- coverImage?: {
13458
- _id: string;
13459
- name?: string | null;
13460
- } | null;
13461
- } | null;
13462
- };
13463
- export type ListBlogPostsQueryVariables = Exact<{
13464
- [key: string]: never;
13465
- }>;
13466
- export type ListBlogPostsQuery = {
13467
- listBlogPosts: Array<{
13468
- _id: string;
13469
- title: string;
13470
- slug: string;
13471
- content: string;
13472
- excerpt: string;
13473
- createdAt: string;
13474
- publishedAt?: string | null;
13475
- isFlagged: boolean;
13476
- moderationStatus: string;
13477
- authorName?: string | null;
13478
- author?: {
13479
- _id: string;
13480
- } | null;
13481
- coverImage?: {
13482
- _id: string;
13483
- name?: string | null;
13484
- } | null;
13485
- }>;
13486
- };
13487
13952
  export type ClientCompatibilityQueryVariables = Exact<{
13488
13953
  [key: string]: never;
13489
13954
  }>;
@@ -13627,36 +14092,133 @@ export type InviteSponsorUserMutation = {
13627
14092
  status: string;
13628
14093
  };
13629
14094
  };
13630
- export type AcceptSponsorUserInvitationMutationVariables = Exact<{
13631
- input: AcceptSponsorUserInvitationInput;
13632
- }>;
13633
- export type AcceptSponsorUserInvitationMutation = {
13634
- acceptSponsorUserInvitation: boolean;
13635
- };
13636
- export type RemoveSponsorUserMutationVariables = Exact<{
13637
- userId: Scalars['String']['input'];
13638
- }>;
13639
- export type RemoveSponsorUserMutation = {
13640
- removeSponsorUser: boolean;
13641
- };
13642
- export type ChangeSponsorUserRoleMutationVariables = Exact<{
13643
- input: ChangeSponsorUserRoleInput;
13644
- }>;
13645
- export type ChangeSponsorUserRoleMutation = {
13646
- changeSponsorUserRole: boolean;
13647
- };
13648
- export type RevokeSponsorUserInvitationMutationVariables = Exact<{
13649
- invitationId: Scalars['String']['input'];
13650
- }>;
13651
- export type RevokeSponsorUserInvitationMutation = {
13652
- revokeSponsorUserInvitation: boolean;
13653
- };
13654
- export type TransferSponsorOwnershipMutationVariables = Exact<{
13655
- userId: Scalars['String']['input'];
13656
- }>;
13657
- export type TransferSponsorOwnershipMutation = {
13658
- transferSponsorOwnership: boolean;
13659
- };
14095
+ export type AcceptSponsorUserInvitationMutationVariables = Exact<{
14096
+ input: AcceptSponsorUserInvitationInput;
14097
+ }>;
14098
+ export type AcceptSponsorUserInvitationMutation = {
14099
+ acceptSponsorUserInvitation: boolean;
14100
+ };
14101
+ export type RemoveSponsorUserMutationVariables = Exact<{
14102
+ userId: Scalars['String']['input'];
14103
+ }>;
14104
+ export type RemoveSponsorUserMutation = {
14105
+ removeSponsorUser: boolean;
14106
+ };
14107
+ export type ChangeSponsorUserRoleMutationVariables = Exact<{
14108
+ input: ChangeSponsorUserRoleInput;
14109
+ }>;
14110
+ export type ChangeSponsorUserRoleMutation = {
14111
+ changeSponsorUserRole: boolean;
14112
+ };
14113
+ export type RevokeSponsorUserInvitationMutationVariables = Exact<{
14114
+ invitationId: Scalars['String']['input'];
14115
+ }>;
14116
+ export type RevokeSponsorUserInvitationMutation = {
14117
+ revokeSponsorUserInvitation: boolean;
14118
+ };
14119
+ export type TransferSponsorOwnershipMutationVariables = Exact<{
14120
+ userId: Scalars['String']['input'];
14121
+ }>;
14122
+ export type TransferSponsorOwnershipMutation = {
14123
+ transferSponsorOwnership: boolean;
14124
+ };
14125
+ export type SetAthleteVerifiedOverrideMutationVariables = Exact<{
14126
+ athleteId: Scalars['String']['input'];
14127
+ isVerifiedOverride: Scalars['Boolean']['input'];
14128
+ }>;
14129
+ export type SetAthleteVerifiedOverrideMutation = {
14130
+ setAthleteVerifiedOverride: {
14131
+ _id: string;
14132
+ firstName: string;
14133
+ lastName: string;
14134
+ screenName?: string | null;
14135
+ dob?: string | null;
14136
+ lgbt?: boolean | null;
14137
+ competitionGender?: string | null;
14138
+ trainer?: string | null;
14139
+ trainerUrl?: string | null;
14140
+ followerCount?: number | null;
14141
+ totalUpcomingCompetitions?: number | null;
14142
+ totalPastCompetitions?: number | null;
14143
+ aboutMe?: string | null;
14144
+ biography?: string | null;
14145
+ suspended: boolean;
14146
+ onboardingComplete?: boolean | null;
14147
+ onboardingStep?: number | null;
14148
+ isVerifiedOverride?: boolean | null;
14149
+ country?: {
14150
+ _id: string;
14151
+ name: string;
14152
+ } | null;
14153
+ location?: {
14154
+ _id: string;
14155
+ } | null;
14156
+ mainSport: {
14157
+ _id: string;
14158
+ name: string;
14159
+ };
14160
+ mainSportLevel: {
14161
+ _id: string;
14162
+ };
14163
+ profilePicture?: {
14164
+ _id: string;
14165
+ name?: string | null;
14166
+ } | null;
14167
+ cardPicture?: {
14168
+ _id: string;
14169
+ name?: string | null;
14170
+ } | null;
14171
+ bannerPicture?: {
14172
+ _id: string;
14173
+ name?: string | null;
14174
+ } | null;
14175
+ preferences: {
14176
+ _id: string;
14177
+ };
14178
+ allSports?: Array<{
14179
+ _id: string;
14180
+ name: string;
14181
+ }> | null;
14182
+ teams?: Array<{
14183
+ _id: string;
14184
+ name: string;
14185
+ }> | null;
14186
+ sponsorBrands?: Array<{
14187
+ _id: string;
14188
+ name: string;
14189
+ }> | null;
14190
+ competitions?: Array<{
14191
+ _id: string;
14192
+ }> | null;
14193
+ affiliations?: Array<{
14194
+ _id: string;
14195
+ }> | null;
14196
+ newsLinks?: Array<{
14197
+ _id: string;
14198
+ }> | null;
14199
+ channels?: Array<{
14200
+ _id: string;
14201
+ }> | null;
14202
+ currentCampaign?: {
14203
+ _id: string;
14204
+ } | null;
14205
+ fundingCampaigns?: Array<{
14206
+ _id: string;
14207
+ }> | null;
14208
+ stripeAccountReference?: {
14209
+ _id: string;
14210
+ } | null;
14211
+ albums?: Array<{
14212
+ _id: string;
14213
+ }> | null;
14214
+ historicalScores?: Array<{
14215
+ _id: string;
14216
+ }> | null;
14217
+ signedAgreements?: Array<{
14218
+ _id: string;
14219
+ }> | null;
14220
+ };
14221
+ };
13660
14222
  export type ReorderAlbumIndexMutationVariables = Exact<{
13661
14223
  input: EditDisplayIndexDto;
13662
14224
  }>;
@@ -13759,6 +14321,49 @@ export type ApproveTeamMutation = {
13759
14321
  visibility?: string | null;
13760
14322
  stripeAccountId?: string | null;
13761
14323
  vtxScore?: number | null;
14324
+ allowMemberCampaigns: boolean;
14325
+ accentColor?: string | null;
14326
+ sports?: Array<{
14327
+ _id: string;
14328
+ name: string;
14329
+ }> | null;
14330
+ logo?: {
14331
+ _id: string;
14332
+ name?: string | null;
14333
+ } | null;
14334
+ banner?: {
14335
+ _id: string;
14336
+ name?: string | null;
14337
+ } | null;
14338
+ club?: {
14339
+ _id: string;
14340
+ name: string;
14341
+ } | null;
14342
+ athletes?: Array<{
14343
+ _id: string;
14344
+ }> | null;
14345
+ fundingCampaigns?: Array<{
14346
+ _id: string;
14347
+ }> | null;
14348
+ };
14349
+ };
14350
+ export type SetTeamCampaignPermissionMutationVariables = Exact<{
14351
+ teamId: Scalars['String']['input'];
14352
+ allowMemberCampaigns: Scalars['Boolean']['input'];
14353
+ }>;
14354
+ export type SetTeamCampaignPermissionMutation = {
14355
+ setTeamCampaignPermission: {
14356
+ _id: string;
14357
+ name: string;
14358
+ description?: string | null;
14359
+ approved?: boolean | null;
14360
+ joinPolicy?: string | null;
14361
+ maxRosterSize?: number | null;
14362
+ visibility?: string | null;
14363
+ stripeAccountId?: string | null;
14364
+ vtxScore?: number | null;
14365
+ allowMemberCampaigns: boolean;
14366
+ accentColor?: string | null;
13762
14367
  sports?: Array<{
13763
14368
  _id: string;
13764
14369
  name: string;
@@ -13778,6 +14383,9 @@ export type ApproveTeamMutation = {
13778
14383
  athletes?: Array<{
13779
14384
  _id: string;
13780
14385
  }> | null;
14386
+ fundingCampaigns?: Array<{
14387
+ _id: string;
14388
+ }> | null;
13781
14389
  };
13782
14390
  };
13783
14391
  export type ApproveClubMutationVariables = Exact<{
@@ -13796,6 +14404,47 @@ export type ApproveClubMutation = {
13796
14404
  approved?: boolean | null;
13797
14405
  visibility: string;
13798
14406
  stripeAccountId?: string | null;
14407
+ allowMemberCampaigns: boolean;
14408
+ accentColor?: string | null;
14409
+ sports?: Array<{
14410
+ _id: string;
14411
+ name: string;
14412
+ }> | null;
14413
+ logo?: {
14414
+ _id: string;
14415
+ name?: string | null;
14416
+ } | null;
14417
+ banner?: {
14418
+ _id: string;
14419
+ name?: string | null;
14420
+ } | null;
14421
+ teams?: Array<{
14422
+ _id: string;
14423
+ name: string;
14424
+ }> | null;
14425
+ fundingCampaigns?: Array<{
14426
+ _id: string;
14427
+ }> | null;
14428
+ };
14429
+ };
14430
+ export type SetClubCampaignPermissionMutationVariables = Exact<{
14431
+ clubId: Scalars['String']['input'];
14432
+ allowMemberCampaigns: Scalars['Boolean']['input'];
14433
+ }>;
14434
+ export type SetClubCampaignPermissionMutation = {
14435
+ setClubCampaignPermission: {
14436
+ _id: string;
14437
+ name: string;
14438
+ description?: string | null;
14439
+ location?: string | null;
14440
+ website?: string | null;
14441
+ membershipType: string;
14442
+ feeStructure?: any | null;
14443
+ approved?: boolean | null;
14444
+ visibility: string;
14445
+ stripeAccountId?: string | null;
14446
+ allowMemberCampaigns: boolean;
14447
+ accentColor?: string | null;
13799
14448
  sports?: Array<{
13800
14449
  _id: string;
13801
14450
  name: string;
@@ -13812,6 +14461,9 @@ export type ApproveClubMutation = {
13812
14461
  _id: string;
13813
14462
  name: string;
13814
14463
  }> | null;
14464
+ fundingCampaigns?: Array<{
14465
+ _id: string;
14466
+ }> | null;
13815
14467
  };
13816
14468
  };
13817
14469
  export type CreateBlogPostMutationVariables = Exact<{
@@ -16371,6 +17023,8 @@ export type TeamFieldsFragment = {
16371
17023
  visibility?: string | null;
16372
17024
  stripeAccountId?: string | null;
16373
17025
  vtxScore?: number | null;
17026
+ allowMemberCampaigns: boolean;
17027
+ accentColor?: string | null;
16374
17028
  sports?: Array<{
16375
17029
  _id: string;
16376
17030
  name: string;
@@ -16412,6 +17066,16 @@ export type TeamFieldsFragment = {
16412
17066
  name: string;
16413
17067
  } | null;
16414
17068
  }> | null;
17069
+ fundingCampaigns?: Array<{
17070
+ _id: string;
17071
+ title: string;
17072
+ motivation?: string | null;
17073
+ fundsRequired: number;
17074
+ fundsObtained: number;
17075
+ status: string;
17076
+ endingDate: string;
17077
+ createdDate: string;
17078
+ }> | null;
16415
17079
  };
16416
17080
  export type ClubFieldsFragment = {
16417
17081
  _id: string;
@@ -16423,7 +17087,9 @@ export type ClubFieldsFragment = {
16423
17087
  feeStructure?: any | null;
16424
17088
  approved?: boolean | null;
16425
17089
  visibility: string;
17090
+ accentColor?: string | null;
16426
17091
  stripeAccountId?: string | null;
17092
+ allowMemberCampaigns: boolean;
16427
17093
  sports?: Array<{
16428
17094
  _id: string;
16429
17095
  name: string;
@@ -16452,6 +17118,16 @@ export type ClubFieldsFragment = {
16452
17118
  key: string;
16453
17119
  } | null;
16454
17120
  }> | null;
17121
+ fundingCampaigns?: Array<{
17122
+ _id: string;
17123
+ title: string;
17124
+ motivation?: string | null;
17125
+ fundsRequired: number;
17126
+ fundsObtained: number;
17127
+ status: string;
17128
+ endingDate: string;
17129
+ createdDate: string;
17130
+ }> | null;
16455
17131
  };
16456
17132
  export type AthleteTeamFieldsFragment = {
16457
17133
  _id: string;
@@ -16545,6 +17221,8 @@ export type FindTeamByIdQuery = {
16545
17221
  visibility?: string | null;
16546
17222
  stripeAccountId?: string | null;
16547
17223
  vtxScore?: number | null;
17224
+ allowMemberCampaigns: boolean;
17225
+ accentColor?: string | null;
16548
17226
  sports?: Array<{
16549
17227
  _id: string;
16550
17228
  name: string;
@@ -16586,6 +17264,16 @@ export type FindTeamByIdQuery = {
16586
17264
  name: string;
16587
17265
  } | null;
16588
17266
  }> | null;
17267
+ fundingCampaigns?: Array<{
17268
+ _id: string;
17269
+ title: string;
17270
+ motivation?: string | null;
17271
+ fundsRequired: number;
17272
+ fundsObtained: number;
17273
+ status: string;
17274
+ endingDate: string;
17275
+ createdDate: string;
17276
+ }> | null;
16589
17277
  };
16590
17278
  };
16591
17279
  export type FindTeamsQueryVariables = Exact<{
@@ -16603,6 +17291,8 @@ export type FindTeamsQuery = {
16603
17291
  visibility?: string | null;
16604
17292
  stripeAccountId?: string | null;
16605
17293
  vtxScore?: number | null;
17294
+ allowMemberCampaigns: boolean;
17295
+ accentColor?: string | null;
16606
17296
  sports?: Array<{
16607
17297
  _id: string;
16608
17298
  name: string;
@@ -16644,6 +17334,16 @@ export type FindTeamsQuery = {
16644
17334
  name: string;
16645
17335
  } | null;
16646
17336
  }> | null;
17337
+ fundingCampaigns?: Array<{
17338
+ _id: string;
17339
+ title: string;
17340
+ motivation?: string | null;
17341
+ fundsRequired: number;
17342
+ fundsObtained: number;
17343
+ status: string;
17344
+ endingDate: string;
17345
+ createdDate: string;
17346
+ }> | null;
16647
17347
  }>;
16648
17348
  };
16649
17349
  export type FindAllTeamsQueryVariables = Exact<{
@@ -16660,6 +17360,8 @@ export type FindAllTeamsQuery = {
16660
17360
  visibility?: string | null;
16661
17361
  stripeAccountId?: string | null;
16662
17362
  vtxScore?: number | null;
17363
+ allowMemberCampaigns: boolean;
17364
+ accentColor?: string | null;
16663
17365
  sports?: Array<{
16664
17366
  _id: string;
16665
17367
  name: string;
@@ -16701,6 +17403,16 @@ export type FindAllTeamsQuery = {
16701
17403
  name: string;
16702
17404
  } | null;
16703
17405
  }> | null;
17406
+ fundingCampaigns?: Array<{
17407
+ _id: string;
17408
+ title: string;
17409
+ motivation?: string | null;
17410
+ fundsRequired: number;
17411
+ fundsObtained: number;
17412
+ status: string;
17413
+ endingDate: string;
17414
+ createdDate: string;
17415
+ }> | null;
16704
17416
  }>;
16705
17417
  };
16706
17418
  export type GetMyTeamsQueryVariables = Exact<{
@@ -16717,6 +17429,8 @@ export type GetMyTeamsQuery = {
16717
17429
  visibility?: string | null;
16718
17430
  stripeAccountId?: string | null;
16719
17431
  vtxScore?: number | null;
17432
+ allowMemberCampaigns: boolean;
17433
+ accentColor?: string | null;
16720
17434
  sports?: Array<{
16721
17435
  _id: string;
16722
17436
  name: string;
@@ -16758,6 +17472,16 @@ export type GetMyTeamsQuery = {
16758
17472
  name: string;
16759
17473
  } | null;
16760
17474
  }> | null;
17475
+ fundingCampaigns?: Array<{
17476
+ _id: string;
17477
+ title: string;
17478
+ motivation?: string | null;
17479
+ fundsRequired: number;
17480
+ fundsObtained: number;
17481
+ status: string;
17482
+ endingDate: string;
17483
+ createdDate: string;
17484
+ }> | null;
16761
17485
  }>;
16762
17486
  };
16763
17487
  export type GetTeamRosterQueryVariables = Exact<{
@@ -16901,6 +17625,8 @@ export type CreateTeamMutation = {
16901
17625
  visibility?: string | null;
16902
17626
  stripeAccountId?: string | null;
16903
17627
  vtxScore?: number | null;
17628
+ allowMemberCampaigns: boolean;
17629
+ accentColor?: string | null;
16904
17630
  sports?: Array<{
16905
17631
  _id: string;
16906
17632
  name: string;
@@ -16942,6 +17668,16 @@ export type CreateTeamMutation = {
16942
17668
  name: string;
16943
17669
  } | null;
16944
17670
  }> | null;
17671
+ fundingCampaigns?: Array<{
17672
+ _id: string;
17673
+ title: string;
17674
+ motivation?: string | null;
17675
+ fundsRequired: number;
17676
+ fundsObtained: number;
17677
+ status: string;
17678
+ endingDate: string;
17679
+ createdDate: string;
17680
+ }> | null;
16945
17681
  };
16946
17682
  };
16947
17683
  export type UpdateTeamMutationVariables = Exact<{
@@ -16958,6 +17694,8 @@ export type UpdateTeamMutation = {
16958
17694
  visibility?: string | null;
16959
17695
  stripeAccountId?: string | null;
16960
17696
  vtxScore?: number | null;
17697
+ allowMemberCampaigns: boolean;
17698
+ accentColor?: string | null;
16961
17699
  sports?: Array<{
16962
17700
  _id: string;
16963
17701
  name: string;
@@ -16999,6 +17737,16 @@ export type UpdateTeamMutation = {
16999
17737
  name: string;
17000
17738
  } | null;
17001
17739
  }> | null;
17740
+ fundingCampaigns?: Array<{
17741
+ _id: string;
17742
+ title: string;
17743
+ motivation?: string | null;
17744
+ fundsRequired: number;
17745
+ fundsObtained: number;
17746
+ status: string;
17747
+ endingDate: string;
17748
+ createdDate: string;
17749
+ }> | null;
17002
17750
  };
17003
17751
  };
17004
17752
  export type JoinTeamMutationVariables = Exact<{
@@ -17127,6 +17875,7 @@ export type CreateTeamDonationCheckoutMutationVariables = Exact<{
17127
17875
  currency?: Scalars['String']['input'];
17128
17876
  donorEmail?: InputMaybe<Scalars['String']['input']>;
17129
17877
  donorName?: InputMaybe<Scalars['String']['input']>;
17878
+ fundingCampaignId?: InputMaybe<Scalars['String']['input']>;
17130
17879
  }>;
17131
17880
  export type CreateTeamDonationCheckoutMutation = {
17132
17881
  createTeamDonationCheckout: string;
@@ -17145,7 +17894,9 @@ export type FindClubByIdQuery = {
17145
17894
  feeStructure?: any | null;
17146
17895
  approved?: boolean | null;
17147
17896
  visibility: string;
17897
+ accentColor?: string | null;
17148
17898
  stripeAccountId?: string | null;
17899
+ allowMemberCampaigns: boolean;
17149
17900
  sports?: Array<{
17150
17901
  _id: string;
17151
17902
  name: string;
@@ -17174,6 +17925,16 @@ export type FindClubByIdQuery = {
17174
17925
  key: string;
17175
17926
  } | null;
17176
17927
  }> | null;
17928
+ fundingCampaigns?: Array<{
17929
+ _id: string;
17930
+ title: string;
17931
+ motivation?: string | null;
17932
+ fundsRequired: number;
17933
+ fundsObtained: number;
17934
+ status: string;
17935
+ endingDate: string;
17936
+ createdDate: string;
17937
+ }> | null;
17177
17938
  };
17178
17939
  };
17179
17940
  export type FindClubsQueryVariables = Exact<{
@@ -17190,7 +17951,9 @@ export type FindClubsQuery = {
17190
17951
  feeStructure?: any | null;
17191
17952
  approved?: boolean | null;
17192
17953
  visibility: string;
17954
+ accentColor?: string | null;
17193
17955
  stripeAccountId?: string | null;
17956
+ allowMemberCampaigns: boolean;
17194
17957
  sports?: Array<{
17195
17958
  _id: string;
17196
17959
  name: string;
@@ -17219,6 +17982,16 @@ export type FindClubsQuery = {
17219
17982
  key: string;
17220
17983
  } | null;
17221
17984
  }> | null;
17985
+ fundingCampaigns?: Array<{
17986
+ _id: string;
17987
+ title: string;
17988
+ motivation?: string | null;
17989
+ fundsRequired: number;
17990
+ fundsObtained: number;
17991
+ status: string;
17992
+ endingDate: string;
17993
+ createdDate: string;
17994
+ }> | null;
17222
17995
  }>;
17223
17996
  };
17224
17997
  export type FindAllClubsQueryVariables = Exact<{
@@ -17235,7 +18008,9 @@ export type FindAllClubsQuery = {
17235
18008
  feeStructure?: any | null;
17236
18009
  approved?: boolean | null;
17237
18010
  visibility: string;
18011
+ accentColor?: string | null;
17238
18012
  stripeAccountId?: string | null;
18013
+ allowMemberCampaigns: boolean;
17239
18014
  sports?: Array<{
17240
18015
  _id: string;
17241
18016
  name: string;
@@ -17264,6 +18039,16 @@ export type FindAllClubsQuery = {
17264
18039
  key: string;
17265
18040
  } | null;
17266
18041
  }> | null;
18042
+ fundingCampaigns?: Array<{
18043
+ _id: string;
18044
+ title: string;
18045
+ motivation?: string | null;
18046
+ fundsRequired: number;
18047
+ fundsObtained: number;
18048
+ status: string;
18049
+ endingDate: string;
18050
+ createdDate: string;
18051
+ }> | null;
17267
18052
  }>;
17268
18053
  };
17269
18054
  export type GetMyClubsQueryVariables = Exact<{
@@ -17280,7 +18065,9 @@ export type GetMyClubsQuery = {
17280
18065
  feeStructure?: any | null;
17281
18066
  approved?: boolean | null;
17282
18067
  visibility: string;
18068
+ accentColor?: string | null;
17283
18069
  stripeAccountId?: string | null;
18070
+ allowMemberCampaigns: boolean;
17284
18071
  sports?: Array<{
17285
18072
  _id: string;
17286
18073
  name: string;
@@ -17309,6 +18096,16 @@ export type GetMyClubsQuery = {
17309
18096
  key: string;
17310
18097
  } | null;
17311
18098
  }> | null;
18099
+ fundingCampaigns?: Array<{
18100
+ _id: string;
18101
+ title: string;
18102
+ motivation?: string | null;
18103
+ fundsRequired: number;
18104
+ fundsObtained: number;
18105
+ status: string;
18106
+ endingDate: string;
18107
+ createdDate: string;
18108
+ }> | null;
17312
18109
  }>;
17313
18110
  };
17314
18111
  export type GetClubMembersQueryVariables = Exact<{
@@ -17362,7 +18159,9 @@ export type CreateClubMutation = {
17362
18159
  feeStructure?: any | null;
17363
18160
  approved?: boolean | null;
17364
18161
  visibility: string;
18162
+ accentColor?: string | null;
17365
18163
  stripeAccountId?: string | null;
18164
+ allowMemberCampaigns: boolean;
17366
18165
  sports?: Array<{
17367
18166
  _id: string;
17368
18167
  name: string;
@@ -17391,6 +18190,16 @@ export type CreateClubMutation = {
17391
18190
  key: string;
17392
18191
  } | null;
17393
18192
  }> | null;
18193
+ fundingCampaigns?: Array<{
18194
+ _id: string;
18195
+ title: string;
18196
+ motivation?: string | null;
18197
+ fundsRequired: number;
18198
+ fundsObtained: number;
18199
+ status: string;
18200
+ endingDate: string;
18201
+ createdDate: string;
18202
+ }> | null;
17394
18203
  };
17395
18204
  };
17396
18205
  export type UpdateClubMutationVariables = Exact<{
@@ -17407,7 +18216,9 @@ export type UpdateClubMutation = {
17407
18216
  feeStructure?: any | null;
17408
18217
  approved?: boolean | null;
17409
18218
  visibility: string;
18219
+ accentColor?: string | null;
17410
18220
  stripeAccountId?: string | null;
18221
+ allowMemberCampaigns: boolean;
17411
18222
  sports?: Array<{
17412
18223
  _id: string;
17413
18224
  name: string;
@@ -17436,6 +18247,16 @@ export type UpdateClubMutation = {
17436
18247
  key: string;
17437
18248
  } | null;
17438
18249
  }> | null;
18250
+ fundingCampaigns?: Array<{
18251
+ _id: string;
18252
+ title: string;
18253
+ motivation?: string | null;
18254
+ fundsRequired: number;
18255
+ fundsObtained: number;
18256
+ status: string;
18257
+ endingDate: string;
18258
+ createdDate: string;
18259
+ }> | null;
17439
18260
  };
17440
18261
  };
17441
18262
  export type JoinClubMutationVariables = Exact<{
@@ -17559,6 +18380,7 @@ export type CreateClubDonationCheckoutMutationVariables = Exact<{
17559
18380
  currency?: Scalars['String']['input'];
17560
18381
  donorEmail?: InputMaybe<Scalars['String']['input']>;
17561
18382
  donorName?: InputMaybe<Scalars['String']['input']>;
18383
+ fundingCampaignId?: InputMaybe<Scalars['String']['input']>;
17562
18384
  }>;
17563
18385
  export type CreateClubDonationCheckoutMutation = {
17564
18386
  createClubDonationCheckout: string;
@@ -18205,6 +19027,7 @@ export declare const CampaignLocationFieldsFragmentDoc: import("graphql").Docume
18205
19027
  export declare const CurrentCampaignFieldsFragmentDoc: import("graphql").DocumentNode;
18206
19028
  export declare const HistoricalScoreFieldsFragmentDoc: import("graphql").DocumentNode;
18207
19029
  export declare const HistoricalScoresPeriodFieldsFragmentDoc: import("graphql").DocumentNode;
19030
+ export declare const BlogPostFieldsFragmentDoc: import("graphql").DocumentNode;
18208
19031
  export declare const CampaignFieldsFragmentDoc: import("graphql").DocumentNode;
18209
19032
  export declare const DonationThankYouFieldsFragmentDoc: import("graphql").DocumentNode;
18210
19033
  export declare const BrowseCampaignFieldsFragmentDoc: import("graphql").DocumentNode;
@@ -18325,6 +19148,8 @@ export declare const UpdateUserSuspendedStatusDocument: import("graphql").Docume
18325
19148
  export declare const DeleteMyAccountDocument: import("graphql").DocumentNode;
18326
19149
  export declare const DeleteVtxUserDocument: import("graphql").DocumentNode;
18327
19150
  export declare const ValidateTokenDocument: import("graphql").DocumentNode;
19151
+ export declare const ListBlogPostsDocument: import("graphql").DocumentNode;
19152
+ export declare const GetBlogPostDocument: import("graphql").DocumentNode;
18328
19153
  export declare const ListBlogPostsAdminDocument: import("graphql").DocumentNode;
18329
19154
  export declare const GetAthleteCampaignsDocument: import("graphql").DocumentNode;
18330
19155
  export declare const BrowseCampaignsDocument: import("graphql").DocumentNode;
@@ -18414,8 +19239,6 @@ export declare const AthleteActivityDatesDocument: import("graphql").DocumentNod
18414
19239
  export declare const SocialAggregatesDocument: import("graphql").DocumentNode;
18415
19240
  export declare const PostsWithComparisonDocument: import("graphql").DocumentNode;
18416
19241
  export declare const GetEmailCampaignDocument: import("graphql").DocumentNode;
18417
- export declare const GetBlogPostDocument: import("graphql").DocumentNode;
18418
- export declare const ListBlogPostsDocument: import("graphql").DocumentNode;
18419
19242
  export declare const ClientCompatibilityDocument: import("graphql").DocumentNode;
18420
19243
  export declare const LoginUserFromCredentialsDocument: import("graphql").DocumentNode;
18421
19244
  export declare const RevokeRefreshTokenDocument: import("graphql").DocumentNode;
@@ -18432,6 +19255,7 @@ export declare const RemoveSponsorUserDocument: import("graphql").DocumentNode;
18432
19255
  export declare const ChangeSponsorUserRoleDocument: import("graphql").DocumentNode;
18433
19256
  export declare const RevokeSponsorUserInvitationDocument: import("graphql").DocumentNode;
18434
19257
  export declare const TransferSponsorOwnershipDocument: import("graphql").DocumentNode;
19258
+ export declare const SetAthleteVerifiedOverrideDocument: import("graphql").DocumentNode;
18435
19259
  export declare const ReorderAlbumIndexDocument: import("graphql").DocumentNode;
18436
19260
  export declare const EditAlbumDocument: import("graphql").DocumentNode;
18437
19261
  export declare const DeleteAthletePhotosDocument: import("graphql").DocumentNode;
@@ -18439,7 +19263,9 @@ export declare const IngestCompetitionResultDocument: import("graphql").Document
18439
19263
  export declare const DeleteAthleteMembershipAffilationDocument: import("graphql").DocumentNode;
18440
19264
  export declare const SubmitHealthKitActivitiesDocument: import("graphql").DocumentNode;
18441
19265
  export declare const ApproveTeamDocument: import("graphql").DocumentNode;
19266
+ export declare const SetTeamCampaignPermissionDocument: import("graphql").DocumentNode;
18442
19267
  export declare const ApproveClubDocument: import("graphql").DocumentNode;
19268
+ export declare const SetClubCampaignPermissionDocument: import("graphql").DocumentNode;
18443
19269
  export declare const CreateBlogPostDocument: import("graphql").DocumentNode;
18444
19270
  export declare const UpdateBlogPostDocument: import("graphql").DocumentNode;
18445
19271
  export declare const DeleteBlogPostDocument: import("graphql").DocumentNode;
@@ -18701,6 +19527,8 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
18701
19527
  DeleteMyAccount(variables?: DeleteMyAccountMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<DeleteMyAccountMutation>;
18702
19528
  DeleteVtxUser(variables: DeleteVtxUserMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<DeleteVtxUserMutation>;
18703
19529
  ValidateToken(variables: ValidateTokenMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ValidateTokenMutation>;
19530
+ ListBlogPosts(variables?: ListBlogPostsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ListBlogPostsQuery>;
19531
+ GetBlogPost(variables: GetBlogPostQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetBlogPostQuery>;
18704
19532
  ListBlogPostsAdmin(variables?: ListBlogPostsAdminQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ListBlogPostsAdminQuery>;
18705
19533
  GetAthleteCampaigns(variables: GetAthleteCampaignsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetAthleteCampaignsQuery>;
18706
19534
  BrowseCampaigns(variables: BrowseCampaignsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<BrowseCampaignsQuery>;
@@ -18790,8 +19618,6 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
18790
19618
  SocialAggregates(variables: SocialAggregatesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<SocialAggregatesQuery>;
18791
19619
  PostsWithComparison(variables: PostsWithComparisonQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<PostsWithComparisonQuery>;
18792
19620
  GetEmailCampaign(variables: GetEmailCampaignQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetEmailCampaignQuery>;
18793
- GetBlogPost(variables: GetBlogPostQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetBlogPostQuery>;
18794
- ListBlogPosts(variables?: ListBlogPostsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ListBlogPostsQuery>;
18795
19621
  ClientCompatibility(variables?: ClientCompatibilityQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ClientCompatibilityQuery>;
18796
19622
  LoginUserFromCredentials(variables: LoginUserFromCredentialsMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<LoginUserFromCredentialsMutation>;
18797
19623
  RevokeRefreshToken(variables: RevokeRefreshTokenMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<RevokeRefreshTokenMutation>;
@@ -18808,6 +19634,7 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
18808
19634
  ChangeSponsorUserRole(variables: ChangeSponsorUserRoleMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ChangeSponsorUserRoleMutation>;
18809
19635
  RevokeSponsorUserInvitation(variables: RevokeSponsorUserInvitationMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<RevokeSponsorUserInvitationMutation>;
18810
19636
  TransferSponsorOwnership(variables: TransferSponsorOwnershipMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<TransferSponsorOwnershipMutation>;
19637
+ SetAthleteVerifiedOverride(variables: SetAthleteVerifiedOverrideMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<SetAthleteVerifiedOverrideMutation>;
18811
19638
  ReorderAlbumIndex(variables: ReorderAlbumIndexMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ReorderAlbumIndexMutation>;
18812
19639
  EditAlbum(variables: EditAlbumMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<EditAlbumMutation>;
18813
19640
  DeleteAthletePhotos(variables: DeleteAthletePhotosMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<DeleteAthletePhotosMutation>;
@@ -18815,7 +19642,9 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
18815
19642
  DeleteAthleteMembershipAffilation(variables: DeleteAthleteMembershipAffilationMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<DeleteAthleteMembershipAffilationMutation>;
18816
19643
  SubmitHealthKitActivities(variables: SubmitHealthKitActivitiesMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<SubmitHealthKitActivitiesMutation>;
18817
19644
  ApproveTeam(variables: ApproveTeamMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ApproveTeamMutation>;
19645
+ SetTeamCampaignPermission(variables: SetTeamCampaignPermissionMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<SetTeamCampaignPermissionMutation>;
18818
19646
  ApproveClub(variables: ApproveClubMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ApproveClubMutation>;
19647
+ SetClubCampaignPermission(variables: SetClubCampaignPermissionMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<SetClubCampaignPermissionMutation>;
18819
19648
  CreateBlogPost(variables: CreateBlogPostMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CreateBlogPostMutation>;
18820
19649
  UpdateBlogPost(variables: UpdateBlogPostMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<UpdateBlogPostMutation>;
18821
19650
  DeleteBlogPost(variables: DeleteBlogPostMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<DeleteBlogPostMutation>;