@vertikalx/vtx-backend-client 3.5.5-dev-ven.1 → 3.5.5-dev-ven.2

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.
@@ -506,11 +506,16 @@ export type AthleteCompetition = {
506
506
  dismissedAt?: Maybe<Scalars['DateTime']['output']>;
507
507
  dismissedBy?: Maybe<Scalars['String']['output']>;
508
508
  event: SportsEvent;
509
+ evidenceBike?: Maybe<Awss3File>;
510
+ evidenceRun?: Maybe<Awss3File>;
511
+ evidenceSwim?: Maybe<Awss3File>;
509
512
  expectedAirTempC?: Maybe<Scalars['Float']['output']>;
510
513
  expectedWaterTempC?: Maybe<Scalars['Float']['output']>;
511
514
  expectedWindConditions?: Maybe<Scalars['String']['output']>;
512
515
  fundRaisingCampaignIds?: Maybe<Array<Scalars['String']['output']>>;
516
+ goal?: Maybe<Scalars['String']['output']>;
513
517
  participationDate?: Maybe<Scalars['DateTime']['output']>;
518
+ raceNotes?: Maybe<Scalars['String']['output']>;
514
519
  result?: Maybe<AthleteCompetitionResult>;
515
520
  };
516
521
  export type AthleteCompetitionResult = {
@@ -1622,10 +1627,15 @@ export type EditAthleteCompetitionDto = {
1622
1627
  competitionId: Scalars['String']['input'];
1623
1628
  competitionNumber?: InputMaybe<Scalars['String']['input']>;
1624
1629
  eventWebsite?: InputMaybe<Scalars['String']['input']>;
1630
+ evidenceBikeFileId?: InputMaybe<Scalars['String']['input']>;
1631
+ evidenceRunFileId?: InputMaybe<Scalars['String']['input']>;
1632
+ evidenceSwimFileId?: InputMaybe<Scalars['String']['input']>;
1625
1633
  expectedAirTempC?: InputMaybe<Scalars['Float']['input']>;
1626
1634
  expectedWaterTempC?: InputMaybe<Scalars['Float']['input']>;
1627
1635
  expectedWindConditions?: InputMaybe<Scalars['String']['input']>;
1636
+ goal?: InputMaybe<Scalars['String']['input']>;
1628
1637
  participationDate?: InputMaybe<Scalars['DateTime']['input']>;
1638
+ raceNotes?: InputMaybe<Scalars['String']['input']>;
1629
1639
  };
1630
1640
  export type EditCampaignBudgetDto = {
1631
1641
  budget?: InputMaybe<BudgetDto>;
@@ -5034,10 +5044,10 @@ export type VerificationCode = {
5034
5044
  type?: Maybe<Scalars['String']['output']>;
5035
5045
  };
5036
5046
  export type VerifiedAthleteStatusType = {
5037
- hasInstagramConnected?: Maybe<Scalars['Boolean']['output']>;
5038
- hasStripeVerified?: Maybe<Scalars['Boolean']['output']>;
5039
- hasTrainingConnected?: Maybe<Scalars['Boolean']['output']>;
5040
- hasVerifiedRaceResult?: Maybe<Scalars['Boolean']['output']>;
5047
+ hasInstagramConnected: Scalars['Boolean']['output'];
5048
+ hasStripeVerified: Scalars['Boolean']['output'];
5049
+ hasTrainingConnected: Scalars['Boolean']['output'];
5050
+ hasVerifiedRaceResult: Scalars['Boolean']['output'];
5041
5051
  isVerified: Scalars['Boolean']['output'];
5042
5052
  };
5043
5053
  export type VerifyCodeDto = {
@@ -5780,249 +5790,12 @@ export type StandardAthleteFieldsFragment = {
5780
5790
  };
5781
5791
  verifiedStatus?: {
5782
5792
  isVerified: boolean;
5793
+ hasTrainingConnected: boolean;
5794
+ hasInstagramConnected: boolean;
5795
+ hasVerifiedRaceResult: boolean;
5796
+ hasStripeVerified: boolean;
5783
5797
  } | null;
5784
5798
  };
5785
- export type OwnerAthleteFieldsFragment = {
5786
- _id: string;
5787
- firstName: string;
5788
- lastName: string;
5789
- screenName?: string | null;
5790
- dob?: string | null;
5791
- lgbt?: boolean | null;
5792
- competitionGender?: string | null;
5793
- trainer?: string | null;
5794
- trainerUrl?: string | null;
5795
- aboutMe?: string | null;
5796
- totalUpcomingCompetitions?: number | null;
5797
- totalPastCompetitions?: number | null;
5798
- isVerifiedOverride?: boolean | null;
5799
- verifiedStatus?: {
5800
- isVerified: boolean;
5801
- hasTrainingConnected?: boolean | null;
5802
- hasInstagramConnected?: boolean | null;
5803
- hasVerifiedRaceResult?: boolean | null;
5804
- hasStripeVerified?: boolean | null;
5805
- } | null;
5806
- country?: {
5807
- _id: string;
5808
- name: string;
5809
- } | null;
5810
- location?: {
5811
- userProvidedLatitude?: number | null;
5812
- userProvidedLongitude?: number | null;
5813
- cityNameGeocode?: string | null;
5814
- stateNameGeocode?: string | null;
5815
- countryIso2CodeGeocode?: string | null;
5816
- timeZoneGeocode?: string | null;
5817
- latitudeGeocode?: number | null;
5818
- longitudeGeocode?: number | null;
5819
- city?: {
5820
- _id: string;
5821
- name: string;
5822
- localizedName: string;
5823
- latitude?: number | null;
5824
- longitude?: number | null;
5825
- timezone?: string | null;
5826
- state?: {
5827
- _id: string;
5828
- name: string;
5829
- country?: {
5830
- _id: string;
5831
- name: string;
5832
- } | null;
5833
- } | null;
5834
- } | null;
5835
- } | null;
5836
- followStats?: {
5837
- followers: number;
5838
- followed: number;
5839
- raves: number;
5840
- favorites: number;
5841
- } | null;
5842
- mainSport: {
5843
- _id: string;
5844
- name: string;
5845
- };
5846
- mainSportLevel: {
5847
- _id: string;
5848
- label: string;
5849
- index: number;
5850
- };
5851
- scores: {
5852
- vtxScore: number;
5853
- socialScore: number;
5854
- trainingScore: number;
5855
- competitionScore: number;
5856
- };
5857
- rankings?: {
5858
- worldRanking?: {
5859
- scope: string;
5860
- scopeId: string;
5861
- scopeName: string;
5862
- position: number;
5863
- total: number;
5864
- } | null;
5865
- countryRanking?: {
5866
- scope: string;
5867
- scopeId: string;
5868
- scopeName: string;
5869
- position: number;
5870
- total: number;
5871
- } | null;
5872
- stateRanking?: {
5873
- scope: string;
5874
- scopeId: string;
5875
- scopeName: string;
5876
- position: number;
5877
- total: number;
5878
- } | null;
5879
- cityRanking?: {
5880
- scope: string;
5881
- scopeId: string;
5882
- scopeName: string;
5883
- position: number;
5884
- total: number;
5885
- } | null;
5886
- } | null;
5887
- allSports?: Array<{
5888
- _id: string;
5889
- name: string;
5890
- }> | null;
5891
- teams?: Array<{
5892
- _id: string;
5893
- name: string;
5894
- description?: string | null;
5895
- approved?: boolean | null;
5896
- logo?: {
5897
- _id: string;
5898
- name?: string | null;
5899
- contentType?: string | null;
5900
- size?: number | null;
5901
- useType?: string | null;
5902
- url: string;
5903
- key: string;
5904
- } | null;
5905
- banner?: {
5906
- _id: string;
5907
- name?: string | null;
5908
- contentType?: string | null;
5909
- size?: number | null;
5910
- useType?: string | null;
5911
- url: string;
5912
- key: string;
5913
- } | null;
5914
- }> | null;
5915
- sponsorBrands?: Array<{
5916
- _id: string;
5917
- name: string;
5918
- slogan?: string | null;
5919
- website?: string | null;
5920
- description?: string | null;
5921
- approved: boolean;
5922
- published: boolean;
5923
- operatorIds?: Array<string> | null;
5924
- logo?: {
5925
- _id: string;
5926
- name?: string | null;
5927
- contentType?: string | null;
5928
- size?: number | null;
5929
- useType?: string | null;
5930
- url: string;
5931
- key: string;
5932
- } | null;
5933
- stats?: {
5934
- campaigns?: number | null;
5935
- sponsorships?: number | null;
5936
- sports?: number | null;
5937
- athletes?: number | null;
5938
- } | null;
5939
- }> | null;
5940
- competitions?: Array<{
5941
- _id: string;
5942
- participationDate?: string | null;
5943
- event: {
5944
- _id: string;
5945
- name: string;
5946
- eventWebSite?: string | null;
5947
- startDate: string;
5948
- endDate?: string | null;
5949
- verified: boolean;
5950
- distanceMeters?: number | null;
5951
- courseType?: string | null;
5952
- eventLevel?: string | null;
5953
- mainSport?: {
5954
- _id: string;
5955
- name: string;
5956
- } | null;
5957
- banner?: {
5958
- _id: string;
5959
- name?: string | null;
5960
- contentType?: string | null;
5961
- size?: number | null;
5962
- useType?: string | null;
5963
- url: string;
5964
- key: string;
5965
- } | null;
5966
- location?: {
5967
- _id: string;
5968
- userProvidedLatitude?: number | null;
5969
- userProvidedLongitude?: number | null;
5970
- cityNameGeocode?: string | null;
5971
- stateNameGeocode?: string | null;
5972
- countryIso2CodeGeocode?: string | null;
5973
- timeZoneGeocode?: string | null;
5974
- latitudeGeocode?: number | null;
5975
- longitudeGeocode?: number | null;
5976
- city?: {
5977
- _id: string;
5978
- name: string;
5979
- localizedName: string;
5980
- latitude?: number | null;
5981
- longitude?: number | null;
5982
- timezone?: string | null;
5983
- state?: {
5984
- _id: string;
5985
- name: string;
5986
- country?: {
5987
- _id: string;
5988
- name: string;
5989
- } | null;
5990
- } | null;
5991
- } | null;
5992
- } | null;
5993
- };
5994
- result?: {
5995
- _id: string;
5996
- resultType: string;
5997
- position?: number | null;
5998
- score?: string | null;
5999
- finishTimeMS?: number | null;
6000
- resultWebLink?: string | null;
6001
- } | null;
6002
- }> | null;
6003
- profilePicture?: {
6004
- _id: string;
6005
- name?: string | null;
6006
- contentType?: string | null;
6007
- size?: number | null;
6008
- useType?: string | null;
6009
- url: string;
6010
- key: string;
6011
- } | null;
6012
- cardPicture?: {
6013
- _id: string;
6014
- name?: string | null;
6015
- contentType?: string | null;
6016
- size?: number | null;
6017
- useType?: string | null;
6018
- url: string;
6019
- key: string;
6020
- } | null;
6021
- preferences: {
6022
- _id: string;
6023
- showProfileHelper: boolean;
6024
- };
6025
- };
6026
5799
  export type CampaignLocationFieldsFragment = {
6027
5800
  _id: string;
6028
5801
  userProvidedLatitude?: number | null;
@@ -6472,6 +6245,10 @@ export type RegisterAthleteMutation = {
6472
6245
  };
6473
6246
  verifiedStatus?: {
6474
6247
  isVerified: boolean;
6248
+ hasTrainingConnected: boolean;
6249
+ hasInstagramConnected: boolean;
6250
+ hasVerifiedRaceResult: boolean;
6251
+ hasStripeVerified: boolean;
6475
6252
  } | null;
6476
6253
  };
6477
6254
  };
@@ -6804,13 +6581,6 @@ export type FindAthleteForUserQuery = {
6804
6581
  } | null;
6805
6582
  } | null;
6806
6583
  } | null;
6807
- verifiedStatus?: {
6808
- isVerified: boolean;
6809
- hasTrainingConnected?: boolean | null;
6810
- hasInstagramConnected?: boolean | null;
6811
- hasVerifiedRaceResult?: boolean | null;
6812
- hasStripeVerified?: boolean | null;
6813
- } | null;
6814
6584
  country?: {
6815
6585
  _id: string;
6816
6586
  name: string;
@@ -7026,6 +6796,13 @@ export type FindAthleteForUserQuery = {
7026
6796
  url: string;
7027
6797
  key: string;
7028
6798
  } | null;
6799
+ verifiedStatus?: {
6800
+ isVerified: boolean;
6801
+ hasTrainingConnected: boolean;
6802
+ hasInstagramConnected: boolean;
6803
+ hasVerifiedRaceResult: boolean;
6804
+ hasStripeVerified: boolean;
6805
+ } | null;
7029
6806
  };
7030
6807
  };
7031
6808
  export type FindAthleteByIdQueryVariables = Exact<{
@@ -7268,6 +7045,10 @@ export type FindAthleteByIdQuery = {
7268
7045
  };
7269
7046
  verifiedStatus?: {
7270
7047
  isVerified: boolean;
7048
+ hasTrainingConnected: boolean;
7049
+ hasInstagramConnected: boolean;
7050
+ hasVerifiedRaceResult: boolean;
7051
+ hasStripeVerified: boolean;
7271
7052
  } | null;
7272
7053
  };
7273
7054
  };
@@ -7711,6 +7492,10 @@ export type FindAthleteForIdPublicQuery = {
7711
7492
  } | null;
7712
7493
  verifiedStatus?: {
7713
7494
  isVerified: boolean;
7495
+ hasTrainingConnected: boolean;
7496
+ hasInstagramConnected: boolean;
7497
+ hasVerifiedRaceResult: boolean;
7498
+ hasStripeVerified: boolean;
7714
7499
  } | null;
7715
7500
  };
7716
7501
  };
@@ -7953,6 +7738,10 @@ export type GetAthletesQuery = {
7953
7738
  };
7954
7739
  verifiedStatus?: {
7955
7740
  isVerified: boolean;
7741
+ hasTrainingConnected: boolean;
7742
+ hasInstagramConnected: boolean;
7743
+ hasVerifiedRaceResult: boolean;
7744
+ hasStripeVerified: boolean;
7956
7745
  } | null;
7957
7746
  }>;
7958
7747
  };
@@ -8195,6 +7984,10 @@ export type SearchAthletesQuery = {
8195
7984
  };
8196
7985
  verifiedStatus?: {
8197
7986
  isVerified: boolean;
7987
+ hasTrainingConnected: boolean;
7988
+ hasInstagramConnected: boolean;
7989
+ hasVerifiedRaceResult: boolean;
7990
+ hasStripeVerified: boolean;
8198
7991
  } | null;
8199
7992
  }>;
8200
7993
  };
@@ -8437,6 +8230,10 @@ export type GetRecommendedAthletesQuery = {
8437
8230
  };
8438
8231
  verifiedStatus?: {
8439
8232
  isVerified: boolean;
8233
+ hasTrainingConnected: boolean;
8234
+ hasInstagramConnected: boolean;
8235
+ hasVerifiedRaceResult: boolean;
8236
+ hasStripeVerified: boolean;
8440
8237
  } | null;
8441
8238
  }>;
8442
8239
  };
@@ -8679,6 +8476,10 @@ export type GetSponsorAthletesForTenantQuery = {
8679
8476
  };
8680
8477
  verifiedStatus?: {
8681
8478
  isVerified: boolean;
8479
+ hasTrainingConnected: boolean;
8480
+ hasInstagramConnected: boolean;
8481
+ hasVerifiedRaceResult: boolean;
8482
+ hasStripeVerified: boolean;
8682
8483
  } | null;
8683
8484
  }>;
8684
8485
  };
@@ -9081,6 +8882,8 @@ export type AddAthleteCompetitionMutation = {
9081
8882
  actualAirTempC?: number | null;
9082
8883
  actualWaterTempC?: number | null;
9083
8884
  actualWindConditions?: string | null;
8885
+ goal?: string | null;
8886
+ raceNotes?: string | null;
9084
8887
  event: {
9085
8888
  _id: string;
9086
8889
  name: string;
@@ -9139,6 +8942,33 @@ export type AddAthleteCompetitionMutation = {
9139
8942
  resultWebLink?: string | null;
9140
8943
  verificationTier?: CompetitionVerificationTier | null;
9141
8944
  } | null;
8945
+ evidenceSwim?: {
8946
+ _id: string;
8947
+ name?: string | null;
8948
+ contentType?: string | null;
8949
+ size?: number | null;
8950
+ useType?: string | null;
8951
+ url: string;
8952
+ key: string;
8953
+ } | null;
8954
+ evidenceBike?: {
8955
+ _id: string;
8956
+ name?: string | null;
8957
+ contentType?: string | null;
8958
+ size?: number | null;
8959
+ useType?: string | null;
8960
+ url: string;
8961
+ key: string;
8962
+ } | null;
8963
+ evidenceRun?: {
8964
+ _id: string;
8965
+ name?: string | null;
8966
+ contentType?: string | null;
8967
+ size?: number | null;
8968
+ useType?: string | null;
8969
+ url: string;
8970
+ key: string;
8971
+ } | null;
9142
8972
  };
9143
8973
  };
9144
8974
  export type EditAthleteCompetitionMutationVariables = Exact<{
@@ -9156,6 +8986,8 @@ export type EditAthleteCompetitionMutation = {
9156
8986
  actualAirTempC?: number | null;
9157
8987
  actualWaterTempC?: number | null;
9158
8988
  actualWindConditions?: string | null;
8989
+ goal?: string | null;
8990
+ raceNotes?: string | null;
9159
8991
  event: {
9160
8992
  _id: string;
9161
8993
  name: string;
@@ -9222,6 +9054,33 @@ export type EditAthleteCompetitionMutation = {
9222
9054
  categoryName?: string | null;
9223
9055
  verificationTier?: CompetitionVerificationTier | null;
9224
9056
  } | null;
9057
+ evidenceSwim?: {
9058
+ _id: string;
9059
+ name?: string | null;
9060
+ contentType?: string | null;
9061
+ size?: number | null;
9062
+ useType?: string | null;
9063
+ url: string;
9064
+ key: string;
9065
+ } | null;
9066
+ evidenceBike?: {
9067
+ _id: string;
9068
+ name?: string | null;
9069
+ contentType?: string | null;
9070
+ size?: number | null;
9071
+ useType?: string | null;
9072
+ url: string;
9073
+ key: string;
9074
+ } | null;
9075
+ evidenceRun?: {
9076
+ _id: string;
9077
+ name?: string | null;
9078
+ contentType?: string | null;
9079
+ size?: number | null;
9080
+ useType?: string | null;
9081
+ url: string;
9082
+ key: string;
9083
+ } | null;
9225
9084
  };
9226
9085
  };
9227
9086
  export type GetAthleteCompetitionsQueryVariables = Exact<{
@@ -9239,6 +9098,8 @@ export type GetAthleteCompetitionsQuery = {
9239
9098
  actualAirTempC?: number | null;
9240
9099
  actualWaterTempC?: number | null;
9241
9100
  actualWindConditions?: string | null;
9101
+ goal?: string | null;
9102
+ raceNotes?: string | null;
9242
9103
  event: {
9243
9104
  _id: string;
9244
9105
  name: string;
@@ -9311,6 +9172,33 @@ export type GetAthleteCompetitionsQuery = {
9311
9172
  resultDataSource?: string | null;
9312
9173
  discrepancyStatus?: DiscrepancyStatus | null;
9313
9174
  } | null;
9175
+ evidenceSwim?: {
9176
+ _id: string;
9177
+ name?: string | null;
9178
+ contentType?: string | null;
9179
+ size?: number | null;
9180
+ useType?: string | null;
9181
+ url: string;
9182
+ key: string;
9183
+ } | null;
9184
+ evidenceBike?: {
9185
+ _id: string;
9186
+ name?: string | null;
9187
+ contentType?: string | null;
9188
+ size?: number | null;
9189
+ useType?: string | null;
9190
+ url: string;
9191
+ key: string;
9192
+ } | null;
9193
+ evidenceRun?: {
9194
+ _id: string;
9195
+ name?: string | null;
9196
+ contentType?: string | null;
9197
+ size?: number | null;
9198
+ useType?: string | null;
9199
+ url: string;
9200
+ key: string;
9201
+ } | null;
9314
9202
  budget?: {
9315
9203
  _id: string;
9316
9204
  totalRequired: number;
@@ -10971,16 +10859,6 @@ export type ListBlogPostsAdminQuery = {
10971
10859
  } | null;
10972
10860
  }>;
10973
10861
  };
10974
- export type ListBlogPostSlugsQueryVariables = Exact<{
10975
- [key: string]: never;
10976
- }>;
10977
- export type ListBlogPostSlugsQuery = {
10978
- listBlogPosts: Array<{
10979
- slug: string;
10980
- publishedAt?: string | null;
10981
- createdAt: string;
10982
- }>;
10983
- };
10984
10862
  export type CampaignFieldsFragment = {
10985
10863
  _id: string;
10986
10864
  budgetMode: string;
@@ -14727,6 +14605,8 @@ export type IngestCompetitionResultMutation = {
14727
14605
  actualAirTempC?: number | null;
14728
14606
  actualWaterTempC?: number | null;
14729
14607
  actualWindConditions?: string | null;
14608
+ goal?: string | null;
14609
+ raceNotes?: string | null;
14730
14610
  event: {
14731
14611
  _id: string;
14732
14612
  name: string;
@@ -14740,6 +14620,18 @@ export type IngestCompetitionResultMutation = {
14740
14620
  albums?: Array<{
14741
14621
  _id: string;
14742
14622
  }> | null;
14623
+ evidenceSwim?: {
14624
+ _id: string;
14625
+ name?: string | null;
14626
+ } | null;
14627
+ evidenceBike?: {
14628
+ _id: string;
14629
+ name?: string | null;
14630
+ } | null;
14631
+ evidenceRun?: {
14632
+ _id: string;
14633
+ name?: string | null;
14634
+ } | null;
14743
14635
  };
14744
14636
  };
14745
14637
  export type DeleteAthleteMembershipAffilationMutationVariables = Exact<{
@@ -19476,7 +19368,6 @@ export declare const RankingFieldsFragmentDoc: import("graphql").DocumentNode;
19476
19368
  export declare const FileFieldsFragmentDoc: import("graphql").DocumentNode;
19477
19369
  export declare const CompetitionEventFieldsFragmentDoc: import("graphql").DocumentNode;
19478
19370
  export declare const StandardAthleteFieldsFragmentDoc: import("graphql").DocumentNode;
19479
- export declare const OwnerAthleteFieldsFragmentDoc: import("graphql").DocumentNode;
19480
19371
  export declare const CampaignLocationFieldsFragmentDoc: import("graphql").DocumentNode;
19481
19372
  export declare const CurrentCampaignFieldsFragmentDoc: import("graphql").DocumentNode;
19482
19373
  export declare const HistoricalScoreFieldsFragmentDoc: import("graphql").DocumentNode;
@@ -19608,7 +19499,6 @@ export declare const ValidateTokenDocument: import("graphql").DocumentNode;
19608
19499
  export declare const ListBlogPostsDocument: import("graphql").DocumentNode;
19609
19500
  export declare const GetBlogPostDocument: import("graphql").DocumentNode;
19610
19501
  export declare const ListBlogPostsAdminDocument: import("graphql").DocumentNode;
19611
- export declare const ListBlogPostSlugsDocument: import("graphql").DocumentNode;
19612
19502
  export declare const GetAthleteCampaignsDocument: import("graphql").DocumentNode;
19613
19503
  export declare const BrowseCampaignsDocument: import("graphql").DocumentNode;
19614
19504
  export declare const CreateFundingCampaignDocument: import("graphql").DocumentNode;
@@ -19991,7 +19881,6 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
19991
19881
  ListBlogPosts(variables?: ListBlogPostsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ListBlogPostsQuery>;
19992
19882
  GetBlogPost(variables: GetBlogPostQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetBlogPostQuery>;
19993
19883
  ListBlogPostsAdmin(variables?: ListBlogPostsAdminQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ListBlogPostsAdminQuery>;
19994
- ListBlogPostSlugs(variables?: ListBlogPostSlugsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ListBlogPostSlugsQuery>;
19995
19884
  GetAthleteCampaigns(variables: GetAthleteCampaignsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetAthleteCampaignsQuery>;
19996
19885
  BrowseCampaigns(variables: BrowseCampaignsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<BrowseCampaignsQuery>;
19997
19886
  CreateFundingCampaign(variables: CreateFundingCampaignMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CreateFundingCampaignMutation>;