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

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.
@@ -161,6 +161,7 @@ export type ActivityEntry = {
161
161
  counted: Scalars['Boolean']['output'];
162
162
  date: Scalars['DateTime']['output'];
163
163
  id: Scalars['String']['output'];
164
+ load?: Maybe<ActivityLoad>;
164
165
  metricAverages?: Maybe<Scalars['JSONObject']['output']>;
165
166
  metrics?: Maybe<Scalars['JSONObject']['output']>;
166
167
  notCountedReason?: Maybe<Scalars['String']['output']>;
@@ -175,6 +176,12 @@ export type ActivityFiltersInput = {
175
176
  dateTo?: InputMaybe<Scalars['String']['input']>;
176
177
  metricRanges?: InputMaybe<Array<MetricRangeInput>>;
177
178
  };
179
+ export type ActivityLoad = {
180
+ absentReason?: Maybe<Scalars['String']['output']>;
181
+ confidence?: Maybe<Scalars['String']['output']>;
182
+ metric: Scalars['String']['output'];
183
+ value?: Maybe<Scalars['Float']['output']>;
184
+ };
178
185
  export type AddCompetitionBudgetDto = {
179
186
  budget: BudgetDto;
180
187
  competitionId: Scalars['String']['input'];
@@ -488,6 +495,9 @@ export type AthleteClubMember = {
488
495
  };
489
496
  export type AthleteCompetition = {
490
497
  _id: Scalars['String']['output'];
498
+ actualAirTempC?: Maybe<Scalars['Float']['output']>;
499
+ actualWaterTempC?: Maybe<Scalars['Float']['output']>;
500
+ actualWindConditions?: Maybe<Scalars['String']['output']>;
491
501
  albums?: Maybe<Array<Album>>;
492
502
  budget?: Maybe<Budget>;
493
503
  claimedAt?: Maybe<Scalars['DateTime']['output']>;
@@ -496,6 +506,9 @@ export type AthleteCompetition = {
496
506
  dismissedAt?: Maybe<Scalars['DateTime']['output']>;
497
507
  dismissedBy?: Maybe<Scalars['String']['output']>;
498
508
  event: SportsEvent;
509
+ expectedAirTempC?: Maybe<Scalars['Float']['output']>;
510
+ expectedWaterTempC?: Maybe<Scalars['Float']['output']>;
511
+ expectedWindConditions?: Maybe<Scalars['String']['output']>;
499
512
  fundRaisingCampaignIds?: Maybe<Array<Scalars['String']['output']>>;
500
513
  participationDate?: Maybe<Scalars['DateTime']['output']>;
501
514
  result?: Maybe<AthleteCompetitionResult>;
@@ -998,6 +1011,11 @@ export type CompetitionResultDto = {
998
1011
  };
999
1012
  export type CompetitionResultType = 'POSITION' | 'SCORE';
1000
1013
  export type CompetitionVerificationTier = 'ATHLINKS_CLAIMED' | 'FEDERATION_VERIFIED' | 'LINK_EXTRACTED_MATCH' | 'LINK_PROVIDED' | 'SELF_REPORTED' | 'STRAVA_CORROBORATED';
1014
+ export type ComponentPresence = {
1015
+ cause?: Maybe<Scalars['String']['output']>;
1016
+ reason?: Maybe<Scalars['String']['output']>;
1017
+ status: Scalars['String']['output'];
1018
+ };
1001
1019
  export type ComponentSummary = {
1002
1020
  activityCount: Scalars['Int']['output'];
1003
1021
  avgScorePerActivity?: Maybe<Scalars['Float']['output']>;
@@ -1014,6 +1032,15 @@ export type ComponentSummaryQueryDto = {
1014
1032
  athleteId: Scalars['String']['input'];
1015
1033
  component: Scalars['String']['input'];
1016
1034
  };
1035
+ export type ConfirmProfileVitalsDto = {
1036
+ dateOfBirth: Scalars['DateTime']['input'];
1037
+ gender: Scalars['String']['input'];
1038
+ };
1039
+ export type ConfirmProfileVitalsResponse = {
1040
+ competitionGender?: Maybe<Scalars['String']['output']>;
1041
+ confirmedAt: Scalars['DateTime']['output'];
1042
+ dob?: Maybe<Scalars['DateTime']['output']>;
1043
+ };
1017
1044
  export type ContentType = 'LIVE' | 'POST' | 'REEL' | 'SHORT' | 'VIDEO';
1018
1045
  export type Country = {
1019
1046
  _id: Scalars['String']['output'];
@@ -1303,6 +1330,8 @@ export type CreateSportDto = {
1303
1330
  export type CreateSportEventDto = {
1304
1331
  banner?: InputMaybe<Awss3UploadedFileDto>;
1305
1332
  cityId?: InputMaybe<Scalars['String']['input']>;
1333
+ courseType?: InputMaybe<Scalars['String']['input']>;
1334
+ distanceMeters?: InputMaybe<Scalars['Int']['input']>;
1306
1335
  endDate?: InputMaybe<Scalars['DateTime']['input']>;
1307
1336
  eventLevel?: InputMaybe<Scalars['String']['input']>;
1308
1337
  name: Scalars['String']['input'];
@@ -1391,6 +1420,9 @@ export type CursorPositionDto = {
1391
1420
  export type DashboardSummary = {
1392
1421
  competitionScore: Scalars['Float']['output'];
1393
1422
  lastUpdated: Scalars['DateTime']['output'];
1423
+ presence?: Maybe<ScorePresence>;
1424
+ renormalizedSecondary?: Maybe<Scalars['Float']['output']>;
1425
+ renormalizedSecondaryBasis?: Maybe<Scalars['String']['output']>;
1394
1426
  socialScore: Scalars['Float']['output'];
1395
1427
  trainingScore: Scalars['Float']['output'];
1396
1428
  vtxScore: Scalars['Float']['output'];
@@ -1583,10 +1615,16 @@ export type DurationDto = {
1583
1615
  unit?: Scalars['String']['input'];
1584
1616
  };
1585
1617
  export type EditAthleteCompetitionDto = {
1618
+ actualAirTempC?: InputMaybe<Scalars['Float']['input']>;
1619
+ actualWaterTempC?: InputMaybe<Scalars['Float']['input']>;
1620
+ actualWindConditions?: InputMaybe<Scalars['String']['input']>;
1586
1621
  cityId?: InputMaybe<Scalars['String']['input']>;
1587
1622
  competitionId: Scalars['String']['input'];
1588
1623
  competitionNumber?: InputMaybe<Scalars['String']['input']>;
1589
1624
  eventWebsite?: InputMaybe<Scalars['String']['input']>;
1625
+ expectedAirTempC?: InputMaybe<Scalars['Float']['input']>;
1626
+ expectedWaterTempC?: InputMaybe<Scalars['Float']['input']>;
1627
+ expectedWindConditions?: InputMaybe<Scalars['String']['input']>;
1590
1628
  participationDate?: InputMaybe<Scalars['DateTime']['input']>;
1591
1629
  };
1592
1630
  export type EditCampaignBudgetDto = {
@@ -2187,6 +2225,7 @@ export type Mutation = {
2187
2225
  cloneEmailCampaign: EmailCampaign;
2188
2226
  confirmAthleteUserRegistration: User;
2189
2227
  confirmAthleteUserRegistrationAndLogin: UserWithToken;
2228
+ confirmProfileVitals: ConfirmProfileVitalsResponse;
2190
2229
  createAthleteAlbum: Album;
2191
2230
  createAthleteMembershipAffilation: AthleteMembership;
2192
2231
  createAthleteStripeSession: StripeSession;
@@ -2411,6 +2450,9 @@ export type MutationConfirmAthleteUserRegistrationArgs = {
2411
2450
  export type MutationConfirmAthleteUserRegistrationAndLoginArgs = {
2412
2451
  input: VerifyCodeDto;
2413
2452
  };
2453
+ export type MutationConfirmProfileVitalsArgs = {
2454
+ input: ConfirmProfileVitalsDto;
2455
+ };
2414
2456
  export type MutationCreateAthleteAlbumArgs = {
2415
2457
  input: UploadAlbumsPicturesDto;
2416
2458
  };
@@ -3196,12 +3238,16 @@ export type PostMetricType = {
3196
3238
  postId: Scalars['String']['output'];
3197
3239
  postedAt: Scalars['DateTime']['output'];
3198
3240
  reach?: Maybe<Scalars['Int']['output']>;
3199
- saves: Scalars['Int']['output'];
3200
- shares: Scalars['Int']['output'];
3241
+ saves?: Maybe<Scalars['Int']['output']>;
3242
+ shares?: Maybe<Scalars['Int']['output']>;
3201
3243
  thumbnailUrl?: Maybe<Scalars['String']['output']>;
3202
3244
  vsAvgPercent: Scalars['Float']['output'];
3203
3245
  };
3204
3246
  export type PostSortOption = 'RECENT' | 'TOP' | 'UNDERPERFORMING';
3247
+ export type ProfileVitalsStatus = {
3248
+ confirmed: Scalars['Boolean']['output'];
3249
+ confirmedAt?: Maybe<Scalars['DateTime']['output']>;
3250
+ };
3205
3251
  export type Promotion = {
3206
3252
  _id: Scalars['String']['output'];
3207
3253
  availableCodes: Scalars['Int']['output'];
@@ -3360,6 +3406,7 @@ export type Query = {
3360
3406
  getEmailCampaign: EmailCampaign;
3361
3407
  getEmailCampaigns: EmailCampaignPage;
3362
3408
  getEmailSegments: Array<EmailSegment>;
3409
+ getEventsMissingCourseData: PaginatedEvents;
3363
3410
  getLeaderboard: LeaderboardResponse;
3364
3411
  getMembershipOrganizations: Array<MembershipOrganizationReference>;
3365
3412
  getMyClubs: Array<Club>;
@@ -3435,6 +3482,7 @@ export type Query = {
3435
3482
  offersForAthlete: Array<Offer>;
3436
3483
  offersWithEligibility: PaginatedOffersWithEligibility;
3437
3484
  postsWithComparison: PostComparisonResultType;
3485
+ profileVitalsStatus: ProfileVitalsStatus;
3438
3486
  queryAthleteFundingCampaigns: AthleteQueryResponse;
3439
3487
  queryAthleteWithFilter: AthleteQueryResponse;
3440
3488
  screenNameAvailability: ExistValueResponse;
@@ -3631,6 +3679,9 @@ export type QueryGetEmailCampaignsArgs = {
3631
3679
  search?: InputMaybe<Scalars['String']['input']>;
3632
3680
  status?: InputMaybe<Scalars['String']['input']>;
3633
3681
  };
3682
+ export type QueryGetEventsMissingCourseDataArgs = {
3683
+ query?: InputMaybe<EventQueryDto>;
3684
+ };
3634
3685
  export type QueryGetLeaderboardArgs = {
3635
3686
  input?: InputMaybe<LeaderboardQueryDto>;
3636
3687
  };
@@ -3959,6 +4010,11 @@ export type ScoreInfo = {
3959
4010
  earned: Scalars['Float']['output'];
3960
4011
  maxPossible: Scalars['Float']['output'];
3961
4012
  };
4013
+ export type ScorePresence = {
4014
+ competition: ComponentPresence;
4015
+ social: ComponentPresence;
4016
+ training: ComponentPresence;
4017
+ };
3962
4018
  export type ScoreQualification = {
3963
4019
  operator: Scalars['String']['output'];
3964
4020
  scoreType: Scalars['String']['output'];
@@ -4278,6 +4334,8 @@ export type SportQueryResults = {
4278
4334
  export type SportsEvent = {
4279
4335
  _id: Scalars['String']['output'];
4280
4336
  banner?: Maybe<Awss3File>;
4337
+ courseType?: Maybe<Scalars['String']['output']>;
4338
+ distanceMeters?: Maybe<Scalars['Int']['output']>;
4281
4339
  endDate?: Maybe<Scalars['DateTime']['output']>;
4282
4340
  eventLevel?: Maybe<Scalars['String']['output']>;
4283
4341
  eventWebSite?: Maybe<Scalars['String']['output']>;
@@ -4821,6 +4879,8 @@ export type UpdateSportEventDto = {
4821
4879
  _id: Scalars['String']['input'];
4822
4880
  banner?: InputMaybe<Awss3UploadedFileDto>;
4823
4881
  cityId?: InputMaybe<Scalars['String']['input']>;
4882
+ courseType?: InputMaybe<Scalars['String']['input']>;
4883
+ distanceMeters?: InputMaybe<Scalars['Int']['input']>;
4824
4884
  endDate?: InputMaybe<Scalars['DateTime']['input']>;
4825
4885
  eventLevel?: InputMaybe<Scalars['String']['input']>;
4826
4886
  name?: InputMaybe<Scalars['String']['input']>;
@@ -4974,10 +5034,10 @@ export type VerificationCode = {
4974
5034
  type?: Maybe<Scalars['String']['output']>;
4975
5035
  };
4976
5036
  export type VerifiedAthleteStatusType = {
4977
- hasInstagramConnected: Scalars['Boolean']['output'];
4978
- hasStripeVerified: Scalars['Boolean']['output'];
4979
- hasTrainingConnected: Scalars['Boolean']['output'];
4980
- hasVerifiedRaceResult: Scalars['Boolean']['output'];
5037
+ hasInstagramConnected?: Maybe<Scalars['Boolean']['output']>;
5038
+ hasStripeVerified?: Maybe<Scalars['Boolean']['output']>;
5039
+ hasTrainingConnected?: Maybe<Scalars['Boolean']['output']>;
5040
+ hasVerifiedRaceResult?: Maybe<Scalars['Boolean']['output']>;
4981
5041
  isVerified: Scalars['Boolean']['output'];
4982
5042
  };
4983
5043
  export type VerifyCodeDto = {
@@ -5441,6 +5501,9 @@ export type CompetitionEventFieldsFragment = {
5441
5501
  startDate: string;
5442
5502
  endDate?: string | null;
5443
5503
  verified: boolean;
5504
+ distanceMeters?: number | null;
5505
+ courseType?: string | null;
5506
+ eventLevel?: string | null;
5444
5507
  mainSport?: {
5445
5508
  _id: string;
5446
5509
  name: string;
@@ -5640,6 +5703,9 @@ export type StandardAthleteFieldsFragment = {
5640
5703
  startDate: string;
5641
5704
  endDate?: string | null;
5642
5705
  verified: boolean;
5706
+ distanceMeters?: number | null;
5707
+ courseType?: string | null;
5708
+ eventLevel?: string | null;
5643
5709
  mainSport?: {
5644
5710
  _id: string;
5645
5711
  name: string;
@@ -5714,12 +5780,249 @@ export type StandardAthleteFieldsFragment = {
5714
5780
  };
5715
5781
  verifiedStatus?: {
5716
5782
  isVerified: boolean;
5717
- hasTrainingConnected: boolean;
5718
- hasInstagramConnected: boolean;
5719
- hasVerifiedRaceResult: boolean;
5720
- hasStripeVerified: boolean;
5721
5783
  } | null;
5722
5784
  };
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
+ };
5723
6026
  export type CampaignLocationFieldsFragment = {
5724
6027
  _id: string;
5725
6028
  userProvidedLatitude?: number | null;
@@ -6092,6 +6395,9 @@ export type RegisterAthleteMutation = {
6092
6395
  startDate: string;
6093
6396
  endDate?: string | null;
6094
6397
  verified: boolean;
6398
+ distanceMeters?: number | null;
6399
+ courseType?: string | null;
6400
+ eventLevel?: string | null;
6095
6401
  mainSport?: {
6096
6402
  _id: string;
6097
6403
  name: string;
@@ -6166,10 +6472,6 @@ export type RegisterAthleteMutation = {
6166
6472
  };
6167
6473
  verifiedStatus?: {
6168
6474
  isVerified: boolean;
6169
- hasTrainingConnected: boolean;
6170
- hasInstagramConnected: boolean;
6171
- hasVerifiedRaceResult: boolean;
6172
- hasStripeVerified: boolean;
6173
6475
  } | null;
6174
6476
  };
6175
6477
  };
@@ -6502,6 +6804,13 @@ export type FindAthleteForUserQuery = {
6502
6804
  } | null;
6503
6805
  } | null;
6504
6806
  } | null;
6807
+ verifiedStatus?: {
6808
+ isVerified: boolean;
6809
+ hasTrainingConnected?: boolean | null;
6810
+ hasInstagramConnected?: boolean | null;
6811
+ hasVerifiedRaceResult?: boolean | null;
6812
+ hasStripeVerified?: boolean | null;
6813
+ } | null;
6505
6814
  country?: {
6506
6815
  _id: string;
6507
6816
  name: string;
@@ -6646,6 +6955,9 @@ export type FindAthleteForUserQuery = {
6646
6955
  startDate: string;
6647
6956
  endDate?: string | null;
6648
6957
  verified: boolean;
6958
+ distanceMeters?: number | null;
6959
+ courseType?: string | null;
6960
+ eventLevel?: string | null;
6649
6961
  mainSport?: {
6650
6962
  _id: string;
6651
6963
  name: string;
@@ -6714,13 +7026,6 @@ export type FindAthleteForUserQuery = {
6714
7026
  url: string;
6715
7027
  key: string;
6716
7028
  } | null;
6717
- verifiedStatus?: {
6718
- isVerified: boolean;
6719
- hasTrainingConnected: boolean;
6720
- hasInstagramConnected: boolean;
6721
- hasVerifiedRaceResult: boolean;
6722
- hasStripeVerified: boolean;
6723
- } | null;
6724
7029
  };
6725
7030
  };
6726
7031
  export type FindAthleteByIdQueryVariables = Exact<{
@@ -6886,6 +7191,9 @@ export type FindAthleteByIdQuery = {
6886
7191
  startDate: string;
6887
7192
  endDate?: string | null;
6888
7193
  verified: boolean;
7194
+ distanceMeters?: number | null;
7195
+ courseType?: string | null;
7196
+ eventLevel?: string | null;
6889
7197
  mainSport?: {
6890
7198
  _id: string;
6891
7199
  name: string;
@@ -6960,10 +7268,6 @@ export type FindAthleteByIdQuery = {
6960
7268
  };
6961
7269
  verifiedStatus?: {
6962
7270
  isVerified: boolean;
6963
- hasTrainingConnected: boolean;
6964
- hasInstagramConnected: boolean;
6965
- hasVerifiedRaceResult: boolean;
6966
- hasStripeVerified: boolean;
6967
7271
  } | null;
6968
7272
  };
6969
7273
  };
@@ -7029,6 +7333,9 @@ export type FindAthleteForIdPublicQuery = {
7029
7333
  startDate: string;
7030
7334
  endDate?: string | null;
7031
7335
  verified: boolean;
7336
+ distanceMeters?: number | null;
7337
+ courseType?: string | null;
7338
+ eventLevel?: string | null;
7032
7339
  mainSport?: {
7033
7340
  _id: string;
7034
7341
  name: string;
@@ -7404,10 +7711,6 @@ export type FindAthleteForIdPublicQuery = {
7404
7711
  } | null;
7405
7712
  verifiedStatus?: {
7406
7713
  isVerified: boolean;
7407
- hasTrainingConnected: boolean;
7408
- hasInstagramConnected: boolean;
7409
- hasVerifiedRaceResult: boolean;
7410
- hasStripeVerified: boolean;
7411
7714
  } | null;
7412
7715
  };
7413
7716
  };
@@ -7573,6 +7876,9 @@ export type GetAthletesQuery = {
7573
7876
  startDate: string;
7574
7877
  endDate?: string | null;
7575
7878
  verified: boolean;
7879
+ distanceMeters?: number | null;
7880
+ courseType?: string | null;
7881
+ eventLevel?: string | null;
7576
7882
  mainSport?: {
7577
7883
  _id: string;
7578
7884
  name: string;
@@ -7647,10 +7953,6 @@ export type GetAthletesQuery = {
7647
7953
  };
7648
7954
  verifiedStatus?: {
7649
7955
  isVerified: boolean;
7650
- hasTrainingConnected: boolean;
7651
- hasInstagramConnected: boolean;
7652
- hasVerifiedRaceResult: boolean;
7653
- hasStripeVerified: boolean;
7654
7956
  } | null;
7655
7957
  }>;
7656
7958
  };
@@ -7816,6 +8118,9 @@ export type SearchAthletesQuery = {
7816
8118
  startDate: string;
7817
8119
  endDate?: string | null;
7818
8120
  verified: boolean;
8121
+ distanceMeters?: number | null;
8122
+ courseType?: string | null;
8123
+ eventLevel?: string | null;
7819
8124
  mainSport?: {
7820
8125
  _id: string;
7821
8126
  name: string;
@@ -7890,10 +8195,6 @@ export type SearchAthletesQuery = {
7890
8195
  };
7891
8196
  verifiedStatus?: {
7892
8197
  isVerified: boolean;
7893
- hasTrainingConnected: boolean;
7894
- hasInstagramConnected: boolean;
7895
- hasVerifiedRaceResult: boolean;
7896
- hasStripeVerified: boolean;
7897
8198
  } | null;
7898
8199
  }>;
7899
8200
  };
@@ -8059,6 +8360,9 @@ export type GetRecommendedAthletesQuery = {
8059
8360
  startDate: string;
8060
8361
  endDate?: string | null;
8061
8362
  verified: boolean;
8363
+ distanceMeters?: number | null;
8364
+ courseType?: string | null;
8365
+ eventLevel?: string | null;
8062
8366
  mainSport?: {
8063
8367
  _id: string;
8064
8368
  name: string;
@@ -8133,10 +8437,6 @@ export type GetRecommendedAthletesQuery = {
8133
8437
  };
8134
8438
  verifiedStatus?: {
8135
8439
  isVerified: boolean;
8136
- hasTrainingConnected: boolean;
8137
- hasInstagramConnected: boolean;
8138
- hasVerifiedRaceResult: boolean;
8139
- hasStripeVerified: boolean;
8140
8440
  } | null;
8141
8441
  }>;
8142
8442
  };
@@ -8302,6 +8602,9 @@ export type GetSponsorAthletesForTenantQuery = {
8302
8602
  startDate: string;
8303
8603
  endDate?: string | null;
8304
8604
  verified: boolean;
8605
+ distanceMeters?: number | null;
8606
+ courseType?: string | null;
8607
+ eventLevel?: string | null;
8305
8608
  mainSport?: {
8306
8609
  _id: string;
8307
8610
  name: string;
@@ -8376,10 +8679,6 @@ export type GetSponsorAthletesForTenantQuery = {
8376
8679
  };
8377
8680
  verifiedStatus?: {
8378
8681
  isVerified: boolean;
8379
- hasTrainingConnected: boolean;
8380
- hasInstagramConnected: boolean;
8381
- hasVerifiedRaceResult: boolean;
8382
- hasStripeVerified: boolean;
8383
8682
  } | null;
8384
8683
  }>;
8385
8684
  };
@@ -8721,6 +9020,25 @@ export type EditProfileValueMutation = {
8721
9020
  changed: boolean;
8722
9021
  };
8723
9022
  };
9023
+ export type ConfirmProfileVitalsMutationVariables = Exact<{
9024
+ input: ConfirmProfileVitalsDto;
9025
+ }>;
9026
+ export type ConfirmProfileVitalsMutation = {
9027
+ confirmProfileVitals: {
9028
+ confirmedAt: string;
9029
+ dob?: string | null;
9030
+ competitionGender?: string | null;
9031
+ };
9032
+ };
9033
+ export type ProfileVitalsStatusQueryVariables = Exact<{
9034
+ [key: string]: never;
9035
+ }>;
9036
+ export type ProfileVitalsStatusQuery = {
9037
+ profileVitalsStatus: {
9038
+ confirmed: boolean;
9039
+ confirmedAt?: string | null;
9040
+ };
9041
+ };
8724
9042
  export type EditPictureMutationVariables = Exact<{
8725
9043
  input: EditPictureDto;
8726
9044
  }>;
@@ -8757,12 +9075,20 @@ export type AddAthleteCompetitionMutation = {
8757
9075
  participationDate?: string | null;
8758
9076
  competitionNumber?: string | null;
8759
9077
  fundRaisingCampaignIds?: Array<string> | null;
9078
+ expectedAirTempC?: number | null;
9079
+ expectedWaterTempC?: number | null;
9080
+ expectedWindConditions?: string | null;
9081
+ actualAirTempC?: number | null;
9082
+ actualWaterTempC?: number | null;
9083
+ actualWindConditions?: string | null;
8760
9084
  event: {
8761
9085
  _id: string;
8762
9086
  name: string;
8763
9087
  eventWebSite?: string | null;
8764
9088
  startDate: string;
8765
9089
  endDate?: string | null;
9090
+ distanceMeters?: number | null;
9091
+ courseType?: string | null;
8766
9092
  verified: boolean;
8767
9093
  mainSport?: {
8768
9094
  _id: string;
@@ -8824,12 +9150,20 @@ export type EditAthleteCompetitionMutation = {
8824
9150
  participationDate?: string | null;
8825
9151
  competitionNumber?: string | null;
8826
9152
  fundRaisingCampaignIds?: Array<string> | null;
9153
+ expectedAirTempC?: number | null;
9154
+ expectedWaterTempC?: number | null;
9155
+ expectedWindConditions?: string | null;
9156
+ actualAirTempC?: number | null;
9157
+ actualWaterTempC?: number | null;
9158
+ actualWindConditions?: string | null;
8827
9159
  event: {
8828
9160
  _id: string;
8829
9161
  name: string;
8830
9162
  eventWebSite?: string | null;
8831
9163
  startDate: string;
8832
9164
  endDate?: string | null;
9165
+ distanceMeters?: number | null;
9166
+ courseType?: string | null;
8833
9167
  verified: boolean;
8834
9168
  mainSport?: {
8835
9169
  _id: string;
@@ -8899,12 +9233,20 @@ export type GetAthleteCompetitionsQuery = {
8899
9233
  participationDate?: string | null;
8900
9234
  competitionNumber?: string | null;
8901
9235
  fundRaisingCampaignIds?: Array<string> | null;
9236
+ expectedAirTempC?: number | null;
9237
+ expectedWaterTempC?: number | null;
9238
+ expectedWindConditions?: string | null;
9239
+ actualAirTempC?: number | null;
9240
+ actualWaterTempC?: number | null;
9241
+ actualWindConditions?: string | null;
8902
9242
  event: {
8903
9243
  _id: string;
8904
9244
  name: string;
8905
9245
  eventWebSite?: string | null;
8906
9246
  startDate: string;
8907
9247
  endDate?: string | null;
9248
+ distanceMeters?: number | null;
9249
+ courseType?: string | null;
8908
9250
  verified: boolean;
8909
9251
  mainSport?: {
8910
9252
  _id: string;
@@ -9508,6 +9850,25 @@ export type GetAthleteDashboardQuery = {
9508
9850
  trainingScore: number;
9509
9851
  competitionScore: number;
9510
9852
  lastUpdated: string;
9853
+ renormalizedSecondary?: number | null;
9854
+ renormalizedSecondaryBasis?: string | null;
9855
+ presence?: {
9856
+ training: {
9857
+ status: string;
9858
+ cause?: string | null;
9859
+ reason?: string | null;
9860
+ };
9861
+ social: {
9862
+ status: string;
9863
+ cause?: string | null;
9864
+ reason?: string | null;
9865
+ };
9866
+ competition: {
9867
+ status: string;
9868
+ cause?: string | null;
9869
+ reason?: string | null;
9870
+ };
9871
+ } | null;
9511
9872
  };
9512
9873
  };
9513
9874
  export type GetAthleteScoreHistoryQueryVariables = Exact<{
@@ -9563,6 +9924,12 @@ export type GetAthleteActivitiesQuery = {
9563
9924
  notCountedReason?: string | null;
9564
9925
  prMetrics?: Array<string> | null;
9565
9926
  metricAverages?: any | null;
9927
+ load?: {
9928
+ value?: number | null;
9929
+ metric: string;
9930
+ confidence?: string | null;
9931
+ absentReason?: string | null;
9932
+ } | null;
9566
9933
  }>;
9567
9934
  };
9568
9935
  };
@@ -9672,8 +10039,8 @@ export type GetPostsWithComparisonQuery = {
9672
10039
  postedAt: string;
9673
10040
  likes: number;
9674
10041
  comments: number;
9675
- shares: number;
9676
- saves: number;
10042
+ shares?: number | null;
10043
+ saves?: number | null;
9677
10044
  reach?: number | null;
9678
10045
  vsAvgPercent: number;
9679
10046
  }>;
@@ -9707,6 +10074,9 @@ export type GetSportsEventsQuery = {
9707
10074
  startDate: string;
9708
10075
  endDate?: string | null;
9709
10076
  verified: boolean;
10077
+ distanceMeters?: number | null;
10078
+ courseType?: string | null;
10079
+ eventLevel?: string | null;
9710
10080
  registeredAthletesCount?: number | null;
9711
10081
  mainSport?: {
9712
10082
  _id: string;
@@ -9764,6 +10134,62 @@ export type GetSportsEventsPaginatedQuery = {
9764
10134
  endDate?: string | null;
9765
10135
  eventWebSite?: string | null;
9766
10136
  registeredAthletesCount?: number | null;
10137
+ distanceMeters?: number | null;
10138
+ courseType?: string | null;
10139
+ eventLevel?: string | null;
10140
+ mainSport?: {
10141
+ _id: string;
10142
+ name: string;
10143
+ } | null;
10144
+ location?: {
10145
+ _id: string;
10146
+ cityNameGeocode?: string | null;
10147
+ countryIso2CodeGeocode?: string | null;
10148
+ city?: {
10149
+ _id: string;
10150
+ name: string;
10151
+ state?: {
10152
+ _id: string;
10153
+ name: string;
10154
+ country?: {
10155
+ _id: string;
10156
+ name: string;
10157
+ } | null;
10158
+ } | null;
10159
+ } | null;
10160
+ } | null;
10161
+ banner?: {
10162
+ _id: string;
10163
+ url: string;
10164
+ useType?: string | null;
10165
+ } | null;
10166
+ }>;
10167
+ pagination: {
10168
+ currentPage: number;
10169
+ totalPages: number;
10170
+ totalItems: number;
10171
+ itemsPerPage: number;
10172
+ hasNextPage: boolean;
10173
+ hasPreviousPage: boolean;
10174
+ };
10175
+ };
10176
+ };
10177
+ export type GetEventsMissingCourseDataQueryVariables = Exact<{
10178
+ query?: InputMaybe<EventQueryDto>;
10179
+ }>;
10180
+ export type GetEventsMissingCourseDataQuery = {
10181
+ getEventsMissingCourseData: {
10182
+ items: Array<{
10183
+ _id: string;
10184
+ name: string;
10185
+ verified: boolean;
10186
+ startDate: string;
10187
+ endDate?: string | null;
10188
+ eventWebSite?: string | null;
10189
+ registeredAthletesCount?: number | null;
10190
+ distanceMeters?: number | null;
10191
+ courseType?: string | null;
10192
+ eventLevel?: string | null;
9767
10193
  mainSport?: {
9768
10194
  _id: string;
9769
10195
  name: string;
@@ -9812,6 +10238,9 @@ export type CreateSportsEventMutation = {
9812
10238
  startDate: string;
9813
10239
  endDate?: string | null;
9814
10240
  verified: boolean;
10241
+ distanceMeters?: number | null;
10242
+ courseType?: string | null;
10243
+ eventLevel?: string | null;
9815
10244
  mainSport?: {
9816
10245
  _id: string;
9817
10246
  name: string;
@@ -9865,6 +10294,9 @@ export type UpdateSportsEventMutation = {
9865
10294
  startDate: string;
9866
10295
  endDate?: string | null;
9867
10296
  verified: boolean;
10297
+ distanceMeters?: number | null;
10298
+ courseType?: string | null;
10299
+ eventLevel?: string | null;
9868
10300
  mainSport?: {
9869
10301
  _id: string;
9870
10302
  name: string;
@@ -9918,6 +10350,9 @@ export type MergeSportsEventsMutation = {
9918
10350
  startDate: string;
9919
10351
  endDate?: string | null;
9920
10352
  verified: boolean;
10353
+ distanceMeters?: number | null;
10354
+ courseType?: string | null;
10355
+ eventLevel?: string | null;
9921
10356
  mainSport?: {
9922
10357
  _id: string;
9923
10358
  name: string;
@@ -10413,6 +10848,97 @@ export type ValidateTokenMutation = {
10413
10848
  refreshExpiresAt: number;
10414
10849
  };
10415
10850
  };
10851
+ export type BlogPostFieldsFragment = {
10852
+ _id: string;
10853
+ title: string;
10854
+ slug: string;
10855
+ content: string;
10856
+ excerpt: string;
10857
+ createdAt: string;
10858
+ publishedAt?: string | null;
10859
+ isFlagged: boolean;
10860
+ moderationStatus: string;
10861
+ authorName?: string | null;
10862
+ author?: {
10863
+ _id: string;
10864
+ firstName: string;
10865
+ lastName: string;
10866
+ screenName?: string | null;
10867
+ profilePicture?: {
10868
+ _id: string;
10869
+ url: string;
10870
+ } | null;
10871
+ } | null;
10872
+ coverImage?: {
10873
+ _id: string;
10874
+ url: string;
10875
+ name?: string | null;
10876
+ } | null;
10877
+ };
10878
+ export type ListBlogPostsQueryVariables = Exact<{
10879
+ [key: string]: never;
10880
+ }>;
10881
+ export type ListBlogPostsQuery = {
10882
+ listBlogPosts: Array<{
10883
+ _id: string;
10884
+ title: string;
10885
+ slug: string;
10886
+ content: string;
10887
+ excerpt: string;
10888
+ createdAt: string;
10889
+ publishedAt?: string | null;
10890
+ isFlagged: boolean;
10891
+ moderationStatus: string;
10892
+ authorName?: string | null;
10893
+ author?: {
10894
+ _id: string;
10895
+ firstName: string;
10896
+ lastName: string;
10897
+ screenName?: string | null;
10898
+ profilePicture?: {
10899
+ _id: string;
10900
+ url: string;
10901
+ } | null;
10902
+ } | null;
10903
+ coverImage?: {
10904
+ _id: string;
10905
+ url: string;
10906
+ name?: string | null;
10907
+ } | null;
10908
+ }>;
10909
+ };
10910
+ export type GetBlogPostQueryVariables = Exact<{
10911
+ slug: Scalars['String']['input'];
10912
+ }>;
10913
+ export type GetBlogPostQuery = {
10914
+ getBlogPost?: {
10915
+ _id: string;
10916
+ title: string;
10917
+ slug: string;
10918
+ content: string;
10919
+ excerpt: string;
10920
+ createdAt: string;
10921
+ publishedAt?: string | null;
10922
+ isFlagged: boolean;
10923
+ moderationStatus: string;
10924
+ authorName?: string | null;
10925
+ author?: {
10926
+ _id: string;
10927
+ firstName: string;
10928
+ lastName: string;
10929
+ screenName?: string | null;
10930
+ profilePicture?: {
10931
+ _id: string;
10932
+ url: string;
10933
+ } | null;
10934
+ } | null;
10935
+ coverImage?: {
10936
+ _id: string;
10937
+ url: string;
10938
+ name?: string | null;
10939
+ } | null;
10940
+ } | null;
10941
+ };
10416
10942
  export type ListBlogPostsAdminQueryVariables = Exact<{
10417
10943
  [key: string]: never;
10418
10944
  }>;
@@ -10427,6 +10953,7 @@ export type ListBlogPostsAdminQuery = {
10427
10953
  publishedAt?: string | null;
10428
10954
  isFlagged: boolean;
10429
10955
  moderationStatus: string;
10956
+ authorName?: string | null;
10430
10957
  author?: {
10431
10958
  _id: string;
10432
10959
  firstName: string;
@@ -10444,6 +10971,16 @@ export type ListBlogPostsAdminQuery = {
10444
10971
  } | null;
10445
10972
  }>;
10446
10973
  };
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
+ };
10447
10984
  export type CampaignFieldsFragment = {
10448
10985
  _id: string;
10449
10986
  budgetMode: string;
@@ -13701,6 +14238,8 @@ export type AthleteDashboardQuery = {
13701
14238
  trainingScore: number;
13702
14239
  competitionScore: number;
13703
14240
  lastUpdated: string;
14241
+ renormalizedSecondary?: number | null;
14242
+ renormalizedSecondaryBasis?: string | null;
13704
14243
  };
13705
14244
  };
13706
14245
  export type AthleteScoreHistoryQueryVariables = Exact<{
@@ -13857,54 +14396,6 @@ export type GetEmailCampaignQuery = {
13857
14396
  } | null;
13858
14397
  };
13859
14398
  };
13860
- export type GetBlogPostQueryVariables = Exact<{
13861
- slug: Scalars['String']['input'];
13862
- }>;
13863
- export type GetBlogPostQuery = {
13864
- getBlogPost?: {
13865
- _id: string;
13866
- title: string;
13867
- slug: string;
13868
- content: string;
13869
- excerpt: string;
13870
- createdAt: string;
13871
- publishedAt?: string | null;
13872
- isFlagged: boolean;
13873
- moderationStatus: string;
13874
- authorName?: string | null;
13875
- author?: {
13876
- _id: string;
13877
- } | null;
13878
- coverImage?: {
13879
- _id: string;
13880
- name?: string | null;
13881
- } | null;
13882
- } | null;
13883
- };
13884
- export type ListBlogPostsQueryVariables = Exact<{
13885
- [key: string]: never;
13886
- }>;
13887
- export type ListBlogPostsQuery = {
13888
- listBlogPosts: Array<{
13889
- _id: string;
13890
- title: string;
13891
- slug: string;
13892
- content: string;
13893
- excerpt: string;
13894
- createdAt: string;
13895
- publishedAt?: string | null;
13896
- isFlagged: boolean;
13897
- moderationStatus: string;
13898
- authorName?: string | null;
13899
- author?: {
13900
- _id: string;
13901
- } | null;
13902
- coverImage?: {
13903
- _id: string;
13904
- name?: string | null;
13905
- } | null;
13906
- }>;
13907
- };
13908
14399
  export type ClientCompatibilityQueryVariables = Exact<{
13909
14400
  [key: string]: never;
13910
14401
  }>;
@@ -14230,6 +14721,12 @@ export type IngestCompetitionResultMutation = {
14230
14721
  claimedBy?: string | null;
14231
14722
  dismissedAt?: string | null;
14232
14723
  dismissedBy?: string | null;
14724
+ expectedAirTempC?: number | null;
14725
+ expectedWaterTempC?: number | null;
14726
+ expectedWindConditions?: string | null;
14727
+ actualAirTempC?: number | null;
14728
+ actualWaterTempC?: number | null;
14729
+ actualWindConditions?: string | null;
14233
14730
  event: {
14234
14731
  _id: string;
14235
14732
  name: string;
@@ -18979,10 +19476,12 @@ export declare const RankingFieldsFragmentDoc: import("graphql").DocumentNode;
18979
19476
  export declare const FileFieldsFragmentDoc: import("graphql").DocumentNode;
18980
19477
  export declare const CompetitionEventFieldsFragmentDoc: import("graphql").DocumentNode;
18981
19478
  export declare const StandardAthleteFieldsFragmentDoc: import("graphql").DocumentNode;
19479
+ export declare const OwnerAthleteFieldsFragmentDoc: import("graphql").DocumentNode;
18982
19480
  export declare const CampaignLocationFieldsFragmentDoc: import("graphql").DocumentNode;
18983
19481
  export declare const CurrentCampaignFieldsFragmentDoc: import("graphql").DocumentNode;
18984
19482
  export declare const HistoricalScoreFieldsFragmentDoc: import("graphql").DocumentNode;
18985
19483
  export declare const HistoricalScoresPeriodFieldsFragmentDoc: import("graphql").DocumentNode;
19484
+ export declare const BlogPostFieldsFragmentDoc: import("graphql").DocumentNode;
18986
19485
  export declare const CampaignFieldsFragmentDoc: import("graphql").DocumentNode;
18987
19486
  export declare const DonationThankYouFieldsFragmentDoc: import("graphql").DocumentNode;
18988
19487
  export declare const BrowseCampaignFieldsFragmentDoc: import("graphql").DocumentNode;
@@ -19034,6 +19533,8 @@ export declare const QueryAthleteFundingCampaignsDocument: import("graphql").Doc
19034
19533
  export declare const QueryAthletesWithFiltersDocument: import("graphql").DocumentNode;
19035
19534
  export declare const EditAboutMeDocument: import("graphql").DocumentNode;
19036
19535
  export declare const EditProfileValueDocument: import("graphql").DocumentNode;
19536
+ export declare const ConfirmProfileVitalsDocument: import("graphql").DocumentNode;
19537
+ export declare const ProfileVitalsStatusDocument: import("graphql").DocumentNode;
19037
19538
  export declare const EditPictureDocument: import("graphql").DocumentNode;
19038
19539
  export declare const AddAthleteCompetitionDocument: import("graphql").DocumentNode;
19039
19540
  export declare const EditAthleteCompetitionDocument: import("graphql").DocumentNode;
@@ -19071,6 +19572,7 @@ export declare const GetPostsWithComparisonDocument: import("graphql").DocumentN
19071
19572
  export declare const GetPublicAthleteIntegrationStatusDocument: import("graphql").DocumentNode;
19072
19573
  export declare const GetSportsEventsDocument: import("graphql").DocumentNode;
19073
19574
  export declare const GetSportsEventsPaginatedDocument: import("graphql").DocumentNode;
19575
+ export declare const GetEventsMissingCourseDataDocument: import("graphql").DocumentNode;
19074
19576
  export declare const CreateSportsEventDocument: import("graphql").DocumentNode;
19075
19577
  export declare const UpdateSportsEventDocument: import("graphql").DocumentNode;
19076
19578
  export declare const DeleteSportsEventDocument: import("graphql").DocumentNode;
@@ -19103,7 +19605,10 @@ export declare const UpdateUserSuspendedStatusDocument: import("graphql").Docume
19103
19605
  export declare const DeleteMyAccountDocument: import("graphql").DocumentNode;
19104
19606
  export declare const DeleteVtxUserDocument: import("graphql").DocumentNode;
19105
19607
  export declare const ValidateTokenDocument: import("graphql").DocumentNode;
19608
+ export declare const ListBlogPostsDocument: import("graphql").DocumentNode;
19609
+ export declare const GetBlogPostDocument: import("graphql").DocumentNode;
19106
19610
  export declare const ListBlogPostsAdminDocument: import("graphql").DocumentNode;
19611
+ export declare const ListBlogPostSlugsDocument: import("graphql").DocumentNode;
19107
19612
  export declare const GetAthleteCampaignsDocument: import("graphql").DocumentNode;
19108
19613
  export declare const BrowseCampaignsDocument: import("graphql").DocumentNode;
19109
19614
  export declare const CreateFundingCampaignDocument: import("graphql").DocumentNode;
@@ -19192,8 +19697,6 @@ export declare const AthleteActivityDatesDocument: import("graphql").DocumentNod
19192
19697
  export declare const SocialAggregatesDocument: import("graphql").DocumentNode;
19193
19698
  export declare const PostsWithComparisonDocument: import("graphql").DocumentNode;
19194
19699
  export declare const GetEmailCampaignDocument: import("graphql").DocumentNode;
19195
- export declare const GetBlogPostDocument: import("graphql").DocumentNode;
19196
- export declare const ListBlogPostsDocument: import("graphql").DocumentNode;
19197
19700
  export declare const ClientCompatibilityDocument: import("graphql").DocumentNode;
19198
19701
  export declare const LoginUserFromCredentialsDocument: import("graphql").DocumentNode;
19199
19702
  export declare const RevokeRefreshTokenDocument: import("graphql").DocumentNode;
@@ -19413,6 +19916,8 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
19413
19916
  QueryAthletesWithFilters(variables: QueryAthletesWithFiltersQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<QueryAthletesWithFiltersQuery>;
19414
19917
  EditAboutMe(variables: EditAboutMeMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<EditAboutMeMutation>;
19415
19918
  EditProfileValue(variables: EditProfileValueMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<EditProfileValueMutation>;
19919
+ ConfirmProfileVitals(variables: ConfirmProfileVitalsMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ConfirmProfileVitalsMutation>;
19920
+ ProfileVitalsStatus(variables?: ProfileVitalsStatusQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ProfileVitalsStatusQuery>;
19416
19921
  EditPicture(variables: EditPictureMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<EditPictureMutation>;
19417
19922
  AddAthleteCompetition(variables: AddAthleteCompetitionMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<AddAthleteCompetitionMutation>;
19418
19923
  EditAthleteCompetition(variables: EditAthleteCompetitionMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<EditAthleteCompetitionMutation>;
@@ -19450,6 +19955,7 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
19450
19955
  GetPublicAthleteIntegrationStatus(variables: GetPublicAthleteIntegrationStatusQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetPublicAthleteIntegrationStatusQuery>;
19451
19956
  GetSportsEvents(variables: GetSportsEventsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSportsEventsQuery>;
19452
19957
  GetSportsEventsPaginated(variables?: GetSportsEventsPaginatedQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSportsEventsPaginatedQuery>;
19958
+ GetEventsMissingCourseData(variables?: GetEventsMissingCourseDataQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetEventsMissingCourseDataQuery>;
19453
19959
  CreateSportsEvent(variables: CreateSportsEventMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CreateSportsEventMutation>;
19454
19960
  UpdateSportsEvent(variables: UpdateSportsEventMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<UpdateSportsEventMutation>;
19455
19961
  DeleteSportsEvent(variables: DeleteSportsEventMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<DeleteSportsEventMutation>;
@@ -19482,7 +19988,10 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
19482
19988
  DeleteMyAccount(variables?: DeleteMyAccountMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<DeleteMyAccountMutation>;
19483
19989
  DeleteVtxUser(variables: DeleteVtxUserMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<DeleteVtxUserMutation>;
19484
19990
  ValidateToken(variables: ValidateTokenMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ValidateTokenMutation>;
19991
+ ListBlogPosts(variables?: ListBlogPostsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ListBlogPostsQuery>;
19992
+ GetBlogPost(variables: GetBlogPostQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetBlogPostQuery>;
19485
19993
  ListBlogPostsAdmin(variables?: ListBlogPostsAdminQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ListBlogPostsAdminQuery>;
19994
+ ListBlogPostSlugs(variables?: ListBlogPostSlugsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ListBlogPostSlugsQuery>;
19486
19995
  GetAthleteCampaigns(variables: GetAthleteCampaignsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetAthleteCampaignsQuery>;
19487
19996
  BrowseCampaigns(variables: BrowseCampaignsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<BrowseCampaignsQuery>;
19488
19997
  CreateFundingCampaign(variables: CreateFundingCampaignMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CreateFundingCampaignMutation>;
@@ -19571,8 +20080,6 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
19571
20080
  SocialAggregates(variables: SocialAggregatesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<SocialAggregatesQuery>;
19572
20081
  PostsWithComparison(variables: PostsWithComparisonQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<PostsWithComparisonQuery>;
19573
20082
  GetEmailCampaign(variables: GetEmailCampaignQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetEmailCampaignQuery>;
19574
- GetBlogPost(variables: GetBlogPostQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetBlogPostQuery>;
19575
- ListBlogPosts(variables?: ListBlogPostsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ListBlogPostsQuery>;
19576
20083
  ClientCompatibility(variables?: ClientCompatibilityQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ClientCompatibilityQuery>;
19577
20084
  LoginUserFromCredentials(variables: LoginUserFromCredentialsMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<LoginUserFromCredentialsMutation>;
19578
20085
  RevokeRefreshToken(variables: RevokeRefreshTokenMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<RevokeRefreshTokenMutation>;