@vertikalx/vtx-backend-client 3.5.1-dev.0 → 3.5.5-dev-ven.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.
@@ -774,29 +774,6 @@ export interface AthleteTeam {
774
774
  leftAt: (Scalars['DateTime'] | null);
775
775
  __typename: 'AthleteTeam';
776
776
  }
777
- export interface TeamClubReference {
778
- _id: Scalars['String'];
779
- name: Scalars['String'];
780
- logo: (AWSS3File | null);
781
- __typename: 'TeamClubReference';
782
- }
783
- export interface Team {
784
- _id: Scalars['String'];
785
- name: Scalars['String'];
786
- description: (Scalars['String'] | null);
787
- sports: (Sport[] | null);
788
- approved: (Scalars['Boolean'] | null);
789
- logo: (AWSS3File | null);
790
- banner: (AWSS3File | null);
791
- club: (TeamClubReference | null);
792
- athletes: (AthleteTeam[] | null);
793
- joinPolicy: (Scalars['String'] | null);
794
- maxRosterSize: (Scalars['Int'] | null);
795
- visibility: (Scalars['String'] | null);
796
- stripeAccountId: (Scalars['String'] | null);
797
- vtxScore: (Scalars['Float'] | null);
798
- __typename: 'Team';
799
- }
800
777
  export interface WorldLocation {
801
778
  _id: Scalars['String'];
802
779
  userProvidedLatitude: (Scalars['Float'] | null);
@@ -810,6 +787,21 @@ export interface WorldLocation {
810
787
  city: (City | null);
811
788
  __typename: 'WorldLocation';
812
789
  }
790
+ export interface BudgetItem {
791
+ _id: Scalars['String'];
792
+ quantity: Scalars['Float'];
793
+ concept: Scalars['String'];
794
+ itemCost: Scalars['Float'];
795
+ unit: (Scalars['String'] | null);
796
+ __typename: 'BudgetItem';
797
+ }
798
+ export interface Budget {
799
+ _id: Scalars['String'];
800
+ initialFunds: Scalars['Float'];
801
+ totalRequired: Scalars['Float'];
802
+ items: (BudgetItem[] | null);
803
+ __typename: 'Budget';
804
+ }
813
805
  export interface SportsEvent {
814
806
  _id: Scalars['String'];
815
807
  name: Scalars['String'];
@@ -822,6 +814,8 @@ export interface SportsEvent {
822
814
  location: (WorldLocation | null);
823
815
  eventLevel: (Scalars['String'] | null);
824
816
  registeredAthletesCount: (Scalars['Float'] | null);
817
+ distanceMeters: (Scalars['Int'] | null);
818
+ courseType: (Scalars['String'] | null);
825
819
  __typename: 'SportsEvent';
826
820
  }
827
821
  export interface AthleteCompetitionResult {
@@ -852,21 +846,6 @@ export interface AthleteCompetitionResult {
852
846
  }
853
847
  export type CompetitionVerificationTier = 'SELF_REPORTED' | 'LINK_PROVIDED' | 'LINK_EXTRACTED_MATCH' | 'STRAVA_CORROBORATED' | 'ATHLINKS_CLAIMED' | 'FEDERATION_VERIFIED';
854
848
  export type DiscrepancyStatus = 'FLAGGED' | 'RECONCILED';
855
- export interface BudgetItem {
856
- _id: Scalars['String'];
857
- quantity: Scalars['Float'];
858
- concept: Scalars['String'];
859
- itemCost: Scalars['Float'];
860
- unit: (Scalars['String'] | null);
861
- __typename: 'BudgetItem';
862
- }
863
- export interface Budget {
864
- _id: Scalars['String'];
865
- initialFunds: Scalars['Float'];
866
- totalRequired: Scalars['Float'];
867
- items: (BudgetItem[] | null);
868
- __typename: 'Budget';
869
- }
870
849
  export interface PhotoAlbum {
871
850
  _id: Scalars['String'];
872
851
  photo: (AWSS3File | null);
@@ -895,8 +874,94 @@ export interface AthleteCompetition {
895
874
  claimedBy: (Scalars['String'] | null);
896
875
  dismissedAt: (Scalars['DateTime'] | null);
897
876
  dismissedBy: (Scalars['String'] | null);
877
+ expectedAirTempC: (Scalars['Float'] | null);
878
+ expectedWaterTempC: (Scalars['Float'] | null);
879
+ expectedWindConditions: (Scalars['String'] | null);
880
+ actualAirTempC: (Scalars['Float'] | null);
881
+ actualWaterTempC: (Scalars['Float'] | null);
882
+ actualWindConditions: (Scalars['String'] | null);
898
883
  __typename: 'AthleteCompetition';
899
884
  }
885
+ export interface Video {
886
+ _id: Scalars['String'];
887
+ source: Scalars['String'];
888
+ url: Scalars['String'];
889
+ sourceData: Scalars['String'];
890
+ __typename: 'Video';
891
+ }
892
+ export interface Club {
893
+ _id: Scalars['String'];
894
+ name: Scalars['String'];
895
+ description: (Scalars['String'] | null);
896
+ sports: (Sport[] | null);
897
+ logo: (AWSS3File | null);
898
+ banner: (AWSS3File | null);
899
+ location: (Scalars['String'] | null);
900
+ website: (Scalars['String'] | null);
901
+ membershipType: Scalars['String'];
902
+ feeStructure: (Scalars['JSON'] | null);
903
+ approved: (Scalars['Boolean'] | null);
904
+ visibility: Scalars['String'];
905
+ teams: (Team[] | null);
906
+ stripeAccountId: (Scalars['String'] | null);
907
+ allowMemberCampaigns: Scalars['Boolean'];
908
+ accentColor: (Scalars['String'] | null);
909
+ fundingCampaigns: (FundRaisingCampaign[] | null);
910
+ __typename: 'Club';
911
+ }
912
+ export interface FundRaisingCampaign {
913
+ _id: Scalars['String'];
914
+ athlete: (AthleteReference | null);
915
+ club: (Club | null);
916
+ team: (Team | null);
917
+ budgetMode: Scalars['String'];
918
+ status: Scalars['String'];
919
+ title: Scalars['String'];
920
+ slug: (Scalars['String'] | null);
921
+ motivation: (Scalars['String'] | null);
922
+ website: (Scalars['String'] | null);
923
+ fundsRequired: Scalars['Float'];
924
+ initialFundsObtained: Scalars['Float'];
925
+ fundsObtained: Scalars['Float'];
926
+ location: (WorldLocation | null);
927
+ createdDate: Scalars['DateTime'];
928
+ endingDate: Scalars['DateTime'];
929
+ budget: (Budget | null);
930
+ competitions: (AthleteCompetition[] | null);
931
+ vtxComissionPct: Scalars['Float'];
932
+ video: (Video | null);
933
+ coverImage: (AWSS3File | null);
934
+ thankYouMessage: (Scalars['String'] | null);
935
+ thankYouMediaUrl: (Scalars['String'] | null);
936
+ autoSendThankYou: Scalars['Boolean'];
937
+ __typename: 'FundRaisingCampaign';
938
+ }
939
+ export interface TeamClubReference {
940
+ _id: Scalars['String'];
941
+ name: Scalars['String'];
942
+ logo: (AWSS3File | null);
943
+ __typename: 'TeamClubReference';
944
+ }
945
+ export interface Team {
946
+ _id: Scalars['String'];
947
+ name: Scalars['String'];
948
+ description: (Scalars['String'] | null);
949
+ sports: (Sport[] | null);
950
+ approved: (Scalars['Boolean'] | null);
951
+ logo: (AWSS3File | null);
952
+ banner: (AWSS3File | null);
953
+ club: (TeamClubReference | null);
954
+ athletes: (AthleteTeam[] | null);
955
+ joinPolicy: (Scalars['String'] | null);
956
+ maxRosterSize: (Scalars['Int'] | null);
957
+ visibility: (Scalars['String'] | null);
958
+ stripeAccountId: (Scalars['String'] | null);
959
+ vtxScore: (Scalars['Float'] | null);
960
+ allowMemberCampaigns: Scalars['Boolean'];
961
+ accentColor: (Scalars['String'] | null);
962
+ fundingCampaigns: (FundRaisingCampaign[] | null);
963
+ __typename: 'Team';
964
+ }
900
965
  export interface MembershipOrganizationReference {
901
966
  _id: Scalars['String'];
902
967
  shortName: (Scalars['String'] | null);
@@ -953,38 +1018,6 @@ export interface AthletePreferences {
953
1018
  defaultAlbum: (Album | null);
954
1019
  __typename: 'AthletePreferences';
955
1020
  }
956
- export interface Video {
957
- _id: Scalars['String'];
958
- source: Scalars['String'];
959
- url: Scalars['String'];
960
- sourceData: Scalars['String'];
961
- __typename: 'Video';
962
- }
963
- export interface FundRaisingCampaign {
964
- _id: Scalars['String'];
965
- athlete: AthleteReference;
966
- budgetMode: Scalars['String'];
967
- status: Scalars['String'];
968
- title: Scalars['String'];
969
- slug: (Scalars['String'] | null);
970
- motivation: (Scalars['String'] | null);
971
- website: (Scalars['String'] | null);
972
- fundsRequired: Scalars['Float'];
973
- initialFundsObtained: Scalars['Float'];
974
- fundsObtained: Scalars['Float'];
975
- location: (WorldLocation | null);
976
- createdDate: Scalars['DateTime'];
977
- endingDate: Scalars['DateTime'];
978
- budget: (Budget | null);
979
- competitions: (AthleteCompetition[] | null);
980
- vtxComissionPct: Scalars['Float'];
981
- video: (Video | null);
982
- coverImage: (AWSS3File | null);
983
- thankYouMessage: (Scalars['String'] | null);
984
- thankYouMediaUrl: (Scalars['String'] | null);
985
- autoSendThankYou: Scalars['Boolean'];
986
- __typename: 'FundRaisingCampaign';
987
- }
988
1021
  export interface StripeCapabilityType {
989
1022
  acss_debit_payments: (Scalars['String'] | null);
990
1023
  affirm_payments: (Scalars['String'] | null);
@@ -1110,6 +1143,14 @@ export interface HistoricalScore {
1110
1143
  athleteId: Scalars['String'];
1111
1144
  __typename: 'HistoricalScore';
1112
1145
  }
1146
+ export interface VerifiedAthleteStatusType {
1147
+ isVerified: Scalars['Boolean'];
1148
+ hasTrainingConnected: Scalars['Boolean'];
1149
+ hasInstagramConnected: Scalars['Boolean'];
1150
+ hasVerifiedRaceResult: Scalars['Boolean'];
1151
+ hasStripeVerified: Scalars['Boolean'];
1152
+ __typename: 'VerifiedAthleteStatusType';
1153
+ }
1113
1154
  export interface AthleteReference {
1114
1155
  _id: Scalars['String'];
1115
1156
  firstName: Scalars['String'];
@@ -1139,6 +1180,8 @@ export interface AthleteReference {
1139
1180
  suspended: Scalars['Boolean'];
1140
1181
  onboardingComplete: (Scalars['Boolean'] | null);
1141
1182
  onboardingStep: (Scalars['Float'] | null);
1183
+ isVerifiedOverride: (Scalars['Boolean'] | null);
1184
+ verifiedStatus: (VerifiedAthleteStatusType | null);
1142
1185
  __typename: 'AthleteReference';
1143
1186
  }
1144
1187
  export interface Athlete {
@@ -1170,6 +1213,8 @@ export interface Athlete {
1170
1213
  suspended: Scalars['Boolean'];
1171
1214
  onboardingComplete: (Scalars['Boolean'] | null);
1172
1215
  onboardingStep: (Scalars['Float'] | null);
1216
+ isVerifiedOverride: (Scalars['Boolean'] | null);
1217
+ verifiedStatus: (VerifiedAthleteStatusType | null);
1173
1218
  allSports: (Sport[] | null);
1174
1219
  teams: (Team[] | null);
1175
1220
  sponsorBrands: (Brand[] | null);
@@ -1282,23 +1327,6 @@ export interface AiCoachThread {
1282
1327
  messages: (AiCoachMessage[] | null);
1283
1328
  __typename: 'AiCoachThread';
1284
1329
  }
1285
- export interface Club {
1286
- _id: Scalars['String'];
1287
- name: Scalars['String'];
1288
- description: (Scalars['String'] | null);
1289
- sports: (Sport[] | null);
1290
- logo: (AWSS3File | null);
1291
- banner: (AWSS3File | null);
1292
- location: (Scalars['String'] | null);
1293
- website: (Scalars['String'] | null);
1294
- membershipType: Scalars['String'];
1295
- feeStructure: (Scalars['JSON'] | null);
1296
- approved: (Scalars['Boolean'] | null);
1297
- visibility: Scalars['String'];
1298
- teams: (Team[] | null);
1299
- stripeAccountId: (Scalars['String'] | null);
1300
- __typename: 'Club';
1301
- }
1302
1330
  export interface AthleteClubMember {
1303
1331
  _id: Scalars['String'];
1304
1332
  firstName: (Scalars['String'] | null);
@@ -1317,6 +1345,13 @@ export interface AthleteClub {
1317
1345
  leftAt: (Scalars['DateTime'] | null);
1318
1346
  __typename: 'AthleteClub';
1319
1347
  }
1348
+ export interface ActivityLoad {
1349
+ value: (Scalars['Float'] | null);
1350
+ metric: Scalars['String'];
1351
+ confidence: (Scalars['String'] | null);
1352
+ absentReason: (Scalars['String'] | null);
1353
+ __typename: 'ActivityLoad';
1354
+ }
1320
1355
  export interface ActivityEntry {
1321
1356
  id: Scalars['String'];
1322
1357
  date: Scalars['DateTime'];
@@ -1327,6 +1362,7 @@ export interface ActivityEntry {
1327
1362
  notCountedReason: (Scalars['String'] | null);
1328
1363
  prMetrics: (Scalars['String'][] | null);
1329
1364
  metricAverages: (Scalars['JSONObject'] | null);
1365
+ load: (ActivityLoad | null);
1330
1366
  __typename: 'ActivityEntry';
1331
1367
  }
1332
1368
  export interface ActivitiesResponse {
@@ -1391,12 +1427,27 @@ export interface ComponentSummary {
1391
1427
  metricMaxes: (Scalars['JSONObject'] | null);
1392
1428
  __typename: 'ComponentSummary';
1393
1429
  }
1430
+ export interface ComponentPresence {
1431
+ status: Scalars['String'];
1432
+ cause: (Scalars['String'] | null);
1433
+ reason: (Scalars['String'] | null);
1434
+ __typename: 'ComponentPresence';
1435
+ }
1436
+ export interface ScorePresence {
1437
+ training: ComponentPresence;
1438
+ social: ComponentPresence;
1439
+ competition: ComponentPresence;
1440
+ __typename: 'ScorePresence';
1441
+ }
1394
1442
  export interface DashboardSummary {
1395
1443
  vtxScore: Scalars['Float'];
1396
1444
  socialScore: Scalars['Float'];
1397
1445
  trainingScore: Scalars['Float'];
1398
1446
  competitionScore: Scalars['Float'];
1399
1447
  lastUpdated: Scalars['DateTime'];
1448
+ presence: (ScorePresence | null);
1449
+ renormalizedSecondary: (Scalars['Float'] | null);
1450
+ renormalizedSecondaryBasis: (Scalars['String'] | null);
1400
1451
  __typename: 'DashboardSummary';
1401
1452
  }
1402
1453
  export interface ScoreHistoryEntry {
@@ -1658,6 +1709,12 @@ export interface CompetitionDeleteVerificationResponse {
1658
1709
  reasons: CompetitionDeleteVerificationReason[];
1659
1710
  __typename: 'CompetitionDeleteVerificationResponse';
1660
1711
  }
1712
+ export interface ConfirmProfileVitalsResponse {
1713
+ confirmedAt: Scalars['DateTime'];
1714
+ dob: (Scalars['DateTime'] | null);
1715
+ competitionGender: (Scalars['String'] | null);
1716
+ __typename: 'ConfirmProfileVitalsResponse';
1717
+ }
1661
1718
  export interface DataExportRequest {
1662
1719
  id: Scalars['ID'];
1663
1720
  status: Scalars['String'];
@@ -2196,6 +2253,11 @@ export interface PendingSuggestionGroup {
2196
2253
  candidates: AthleteCompetition[];
2197
2254
  __typename: 'PendingSuggestionGroup';
2198
2255
  }
2256
+ export interface ProfileVitalsStatus {
2257
+ confirmed: Scalars['Boolean'];
2258
+ confirmedAt: (Scalars['DateTime'] | null);
2259
+ __typename: 'ProfileVitalsStatus';
2260
+ }
2199
2261
  export interface ProviderConnectionStatus {
2200
2262
  provider: IntegrationProvider;
2201
2263
  status: Scalars['String'];
@@ -2302,8 +2364,8 @@ export interface PostMetricType {
2302
2364
  postedAt: Scalars['DateTime'];
2303
2365
  likes: Scalars['Int'];
2304
2366
  comments: Scalars['Int'];
2305
- shares: Scalars['Int'];
2306
- saves: Scalars['Int'];
2367
+ shares: (Scalars['Int'] | null);
2368
+ saves: (Scalars['Int'] | null);
2307
2369
  reach: (Scalars['Int'] | null);
2308
2370
  vsAvgPercent: Scalars['Float'];
2309
2371
  __typename: 'PostMetricType';
@@ -2695,6 +2757,7 @@ export interface Query {
2695
2757
  findAthleteForUser: Athlete;
2696
2758
  getRecommendedAthletes: Athlete[];
2697
2759
  getSponsorAthletesForTenant: Athlete[];
2760
+ profileVitalsStatus: ProfileVitalsStatus;
2698
2761
  getAthleteCompetitions: AthleteCompetition[];
2699
2762
  getPendingSuggestions: PendingSuggestionGroup[];
2700
2763
  getAthleteMemberships: AthleteMembership[];
@@ -2741,6 +2804,7 @@ export interface Query {
2741
2804
  getStravaLoginUrl: Scalars['String'];
2742
2805
  getSportsEvents: SportsEvent[];
2743
2806
  getSportsEventsPaginated: PaginatedEvents;
2807
+ getEventsMissingCourseData: PaginatedEvents;
2744
2808
  getBudgetsByAthlete: BudgetData;
2745
2809
  getDonationsByAthlete: Receipt[];
2746
2810
  getDonationsToAthlete: Donation[];
@@ -2871,9 +2935,11 @@ export interface Mutation {
2871
2935
  transferSponsorOwnership: Scalars['Boolean'];
2872
2936
  updateSponsor: Sponsor;
2873
2937
  deleteSponsor: Scalars['Boolean'];
2938
+ setAthleteVerifiedOverride: Athlete;
2874
2939
  forceDeleteAthleteCompetition: DeleteSingleValueResponse;
2875
2940
  registerAthlete: Athlete;
2876
2941
  editProfileValue: EditValueResponse;
2942
+ confirmProfileVitals: ConfirmProfileVitalsResponse;
2877
2943
  editPicture: EditPictureResponse;
2878
2944
  AddAlbumPictures: AddValuesResponse;
2879
2945
  addAthleteCompetition: AthleteCompetition;
@@ -2996,6 +3062,7 @@ export interface Mutation {
2996
3062
  approveTeam: Team;
2997
3063
  createTeamStripeAccount: Scalars['String'];
2998
3064
  createTeamDonationCheckout: Scalars['String'];
3065
+ setTeamCampaignPermission: Team;
2999
3066
  createClub: Club;
3000
3067
  updateClub: Club;
3001
3068
  joinClub: AthleteClub;
@@ -3006,6 +3073,7 @@ export interface Mutation {
3006
3073
  createClubStripeAccount: Scalars['String'];
3007
3074
  createClubDonationCheckout: Scalars['String'];
3008
3075
  createMembershipFeeCheckout: (Scalars['String'] | null);
3076
+ setClubCampaignPermission: Club;
3009
3077
  createBlogPost: BlogPost;
3010
3078
  updateBlogPost: BlogPost;
3011
3079
  deleteBlogPost: Scalars['Boolean'];
@@ -3874,31 +3942,6 @@ export interface AthleteTeamGenqlSelection {
3874
3942
  __typename?: boolean | number;
3875
3943
  __scalar?: boolean | number;
3876
3944
  }
3877
- export interface TeamClubReferenceGenqlSelection {
3878
- _id?: boolean | number;
3879
- name?: boolean | number;
3880
- logo?: AWSS3FileGenqlSelection;
3881
- __typename?: boolean | number;
3882
- __scalar?: boolean | number;
3883
- }
3884
- export interface TeamGenqlSelection {
3885
- _id?: boolean | number;
3886
- name?: boolean | number;
3887
- description?: boolean | number;
3888
- sports?: SportGenqlSelection;
3889
- approved?: boolean | number;
3890
- logo?: AWSS3FileGenqlSelection;
3891
- banner?: AWSS3FileGenqlSelection;
3892
- club?: TeamClubReferenceGenqlSelection;
3893
- athletes?: AthleteTeamGenqlSelection;
3894
- joinPolicy?: boolean | number;
3895
- maxRosterSize?: boolean | number;
3896
- visibility?: boolean | number;
3897
- stripeAccountId?: boolean | number;
3898
- vtxScore?: boolean | number;
3899
- __typename?: boolean | number;
3900
- __scalar?: boolean | number;
3901
- }
3902
3945
  export interface WorldLocationGenqlSelection {
3903
3946
  _id?: boolean | number;
3904
3947
  userProvidedLatitude?: boolean | number;
@@ -3913,6 +3956,23 @@ export interface WorldLocationGenqlSelection {
3913
3956
  __typename?: boolean | number;
3914
3957
  __scalar?: boolean | number;
3915
3958
  }
3959
+ export interface BudgetItemGenqlSelection {
3960
+ _id?: boolean | number;
3961
+ quantity?: boolean | number;
3962
+ concept?: boolean | number;
3963
+ itemCost?: boolean | number;
3964
+ unit?: boolean | number;
3965
+ __typename?: boolean | number;
3966
+ __scalar?: boolean | number;
3967
+ }
3968
+ export interface BudgetGenqlSelection {
3969
+ _id?: boolean | number;
3970
+ initialFunds?: boolean | number;
3971
+ totalRequired?: boolean | number;
3972
+ items?: BudgetItemGenqlSelection;
3973
+ __typename?: boolean | number;
3974
+ __scalar?: boolean | number;
3975
+ }
3916
3976
  export interface SportsEventGenqlSelection {
3917
3977
  _id?: boolean | number;
3918
3978
  name?: boolean | number;
@@ -3925,6 +3985,8 @@ export interface SportsEventGenqlSelection {
3925
3985
  location?: WorldLocationGenqlSelection;
3926
3986
  eventLevel?: boolean | number;
3927
3987
  registeredAthletesCount?: boolean | number;
3988
+ distanceMeters?: boolean | number;
3989
+ courseType?: boolean | number;
3928
3990
  __typename?: boolean | number;
3929
3991
  __scalar?: boolean | number;
3930
3992
  }
@@ -3955,23 +4017,6 @@ export interface AthleteCompetitionResultGenqlSelection {
3955
4017
  __typename?: boolean | number;
3956
4018
  __scalar?: boolean | number;
3957
4019
  }
3958
- export interface BudgetItemGenqlSelection {
3959
- _id?: boolean | number;
3960
- quantity?: boolean | number;
3961
- concept?: boolean | number;
3962
- itemCost?: boolean | number;
3963
- unit?: boolean | number;
3964
- __typename?: boolean | number;
3965
- __scalar?: boolean | number;
3966
- }
3967
- export interface BudgetGenqlSelection {
3968
- _id?: boolean | number;
3969
- initialFunds?: boolean | number;
3970
- totalRequired?: boolean | number;
3971
- items?: BudgetItemGenqlSelection;
3972
- __typename?: boolean | number;
3973
- __scalar?: boolean | number;
3974
- }
3975
4020
  export interface PhotoAlbumGenqlSelection {
3976
4021
  _id?: boolean | number;
3977
4022
  photo?: AWSS3FileGenqlSelection;
@@ -4002,6 +4047,97 @@ export interface AthleteCompetitionGenqlSelection {
4002
4047
  claimedBy?: boolean | number;
4003
4048
  dismissedAt?: boolean | number;
4004
4049
  dismissedBy?: boolean | number;
4050
+ expectedAirTempC?: boolean | number;
4051
+ expectedWaterTempC?: boolean | number;
4052
+ expectedWindConditions?: boolean | number;
4053
+ actualAirTempC?: boolean | number;
4054
+ actualWaterTempC?: boolean | number;
4055
+ actualWindConditions?: boolean | number;
4056
+ __typename?: boolean | number;
4057
+ __scalar?: boolean | number;
4058
+ }
4059
+ export interface VideoGenqlSelection {
4060
+ _id?: boolean | number;
4061
+ source?: boolean | number;
4062
+ url?: boolean | number;
4063
+ sourceData?: boolean | number;
4064
+ __typename?: boolean | number;
4065
+ __scalar?: boolean | number;
4066
+ }
4067
+ export interface ClubGenqlSelection {
4068
+ _id?: boolean | number;
4069
+ name?: boolean | number;
4070
+ description?: boolean | number;
4071
+ sports?: SportGenqlSelection;
4072
+ logo?: AWSS3FileGenqlSelection;
4073
+ banner?: AWSS3FileGenqlSelection;
4074
+ location?: boolean | number;
4075
+ website?: boolean | number;
4076
+ membershipType?: boolean | number;
4077
+ feeStructure?: boolean | number;
4078
+ approved?: boolean | number;
4079
+ visibility?: boolean | number;
4080
+ teams?: TeamGenqlSelection;
4081
+ stripeAccountId?: boolean | number;
4082
+ allowMemberCampaigns?: boolean | number;
4083
+ accentColor?: boolean | number;
4084
+ fundingCampaigns?: FundRaisingCampaignGenqlSelection;
4085
+ __typename?: boolean | number;
4086
+ __scalar?: boolean | number;
4087
+ }
4088
+ export interface FundRaisingCampaignGenqlSelection {
4089
+ _id?: boolean | number;
4090
+ athlete?: AthleteReferenceGenqlSelection;
4091
+ club?: ClubGenqlSelection;
4092
+ team?: TeamGenqlSelection;
4093
+ budgetMode?: boolean | number;
4094
+ status?: boolean | number;
4095
+ title?: boolean | number;
4096
+ slug?: boolean | number;
4097
+ motivation?: boolean | number;
4098
+ website?: boolean | number;
4099
+ fundsRequired?: boolean | number;
4100
+ initialFundsObtained?: boolean | number;
4101
+ fundsObtained?: boolean | number;
4102
+ location?: WorldLocationGenqlSelection;
4103
+ createdDate?: boolean | number;
4104
+ endingDate?: boolean | number;
4105
+ budget?: BudgetGenqlSelection;
4106
+ competitions?: AthleteCompetitionGenqlSelection;
4107
+ vtxComissionPct?: boolean | number;
4108
+ video?: VideoGenqlSelection;
4109
+ coverImage?: AWSS3FileGenqlSelection;
4110
+ thankYouMessage?: boolean | number;
4111
+ thankYouMediaUrl?: boolean | number;
4112
+ autoSendThankYou?: boolean | number;
4113
+ __typename?: boolean | number;
4114
+ __scalar?: boolean | number;
4115
+ }
4116
+ export interface TeamClubReferenceGenqlSelection {
4117
+ _id?: boolean | number;
4118
+ name?: boolean | number;
4119
+ logo?: AWSS3FileGenqlSelection;
4120
+ __typename?: boolean | number;
4121
+ __scalar?: boolean | number;
4122
+ }
4123
+ export interface TeamGenqlSelection {
4124
+ _id?: boolean | number;
4125
+ name?: boolean | number;
4126
+ description?: boolean | number;
4127
+ sports?: SportGenqlSelection;
4128
+ approved?: boolean | number;
4129
+ logo?: AWSS3FileGenqlSelection;
4130
+ banner?: AWSS3FileGenqlSelection;
4131
+ club?: TeamClubReferenceGenqlSelection;
4132
+ athletes?: AthleteTeamGenqlSelection;
4133
+ joinPolicy?: boolean | number;
4134
+ maxRosterSize?: boolean | number;
4135
+ visibility?: boolean | number;
4136
+ stripeAccountId?: boolean | number;
4137
+ vtxScore?: boolean | number;
4138
+ allowMemberCampaigns?: boolean | number;
4139
+ accentColor?: boolean | number;
4140
+ fundingCampaigns?: FundRaisingCampaignGenqlSelection;
4005
4141
  __typename?: boolean | number;
4006
4142
  __scalar?: boolean | number;
4007
4143
  }
@@ -4067,40 +4203,6 @@ export interface AthletePreferencesGenqlSelection {
4067
4203
  __typename?: boolean | number;
4068
4204
  __scalar?: boolean | number;
4069
4205
  }
4070
- export interface VideoGenqlSelection {
4071
- _id?: boolean | number;
4072
- source?: boolean | number;
4073
- url?: boolean | number;
4074
- sourceData?: boolean | number;
4075
- __typename?: boolean | number;
4076
- __scalar?: boolean | number;
4077
- }
4078
- export interface FundRaisingCampaignGenqlSelection {
4079
- _id?: boolean | number;
4080
- athlete?: AthleteReferenceGenqlSelection;
4081
- budgetMode?: boolean | number;
4082
- status?: boolean | number;
4083
- title?: boolean | number;
4084
- slug?: boolean | number;
4085
- motivation?: boolean | number;
4086
- website?: boolean | number;
4087
- fundsRequired?: boolean | number;
4088
- initialFundsObtained?: boolean | number;
4089
- fundsObtained?: boolean | number;
4090
- location?: WorldLocationGenqlSelection;
4091
- createdDate?: boolean | number;
4092
- endingDate?: boolean | number;
4093
- budget?: BudgetGenqlSelection;
4094
- competitions?: AthleteCompetitionGenqlSelection;
4095
- vtxComissionPct?: boolean | number;
4096
- video?: VideoGenqlSelection;
4097
- coverImage?: AWSS3FileGenqlSelection;
4098
- thankYouMessage?: boolean | number;
4099
- thankYouMediaUrl?: boolean | number;
4100
- autoSendThankYou?: boolean | number;
4101
- __typename?: boolean | number;
4102
- __scalar?: boolean | number;
4103
- }
4104
4206
  export interface StripeCapabilityTypeGenqlSelection {
4105
4207
  acss_debit_payments?: boolean | number;
4106
4208
  affirm_payments?: boolean | number;
@@ -4235,6 +4337,15 @@ export interface HistoricalScoreGenqlSelection {
4235
4337
  __typename?: boolean | number;
4236
4338
  __scalar?: boolean | number;
4237
4339
  }
4340
+ export interface VerifiedAthleteStatusTypeGenqlSelection {
4341
+ isVerified?: boolean | number;
4342
+ hasTrainingConnected?: boolean | number;
4343
+ hasInstagramConnected?: boolean | number;
4344
+ hasVerifiedRaceResult?: boolean | number;
4345
+ hasStripeVerified?: boolean | number;
4346
+ __typename?: boolean | number;
4347
+ __scalar?: boolean | number;
4348
+ }
4238
4349
  export interface AthleteReferenceGenqlSelection {
4239
4350
  _id?: boolean | number;
4240
4351
  firstName?: boolean | number;
@@ -4264,6 +4375,8 @@ export interface AthleteReferenceGenqlSelection {
4264
4375
  suspended?: boolean | number;
4265
4376
  onboardingComplete?: boolean | number;
4266
4377
  onboardingStep?: boolean | number;
4378
+ isVerifiedOverride?: boolean | number;
4379
+ verifiedStatus?: VerifiedAthleteStatusTypeGenqlSelection;
4267
4380
  __typename?: boolean | number;
4268
4381
  __scalar?: boolean | number;
4269
4382
  }
@@ -4296,6 +4409,8 @@ export interface AthleteGenqlSelection {
4296
4409
  suspended?: boolean | number;
4297
4410
  onboardingComplete?: boolean | number;
4298
4411
  onboardingStep?: boolean | number;
4412
+ isVerifiedOverride?: boolean | number;
4413
+ verifiedStatus?: VerifiedAthleteStatusTypeGenqlSelection;
4299
4414
  allSports?: SportGenqlSelection;
4300
4415
  teams?: TeamGenqlSelection;
4301
4416
  sponsorBrands?: BrandGenqlSelection;
@@ -4419,24 +4534,6 @@ export interface AiCoachThreadGenqlSelection {
4419
4534
  __typename?: boolean | number;
4420
4535
  __scalar?: boolean | number;
4421
4536
  }
4422
- export interface ClubGenqlSelection {
4423
- _id?: boolean | number;
4424
- name?: boolean | number;
4425
- description?: boolean | number;
4426
- sports?: SportGenqlSelection;
4427
- logo?: AWSS3FileGenqlSelection;
4428
- banner?: AWSS3FileGenqlSelection;
4429
- location?: boolean | number;
4430
- website?: boolean | number;
4431
- membershipType?: boolean | number;
4432
- feeStructure?: boolean | number;
4433
- approved?: boolean | number;
4434
- visibility?: boolean | number;
4435
- teams?: TeamGenqlSelection;
4436
- stripeAccountId?: boolean | number;
4437
- __typename?: boolean | number;
4438
- __scalar?: boolean | number;
4439
- }
4440
4537
  export interface AthleteClubMemberGenqlSelection {
4441
4538
  _id?: boolean | number;
4442
4539
  firstName?: boolean | number;
@@ -4457,6 +4554,14 @@ export interface AthleteClubGenqlSelection {
4457
4554
  __typename?: boolean | number;
4458
4555
  __scalar?: boolean | number;
4459
4556
  }
4557
+ export interface ActivityLoadGenqlSelection {
4558
+ value?: boolean | number;
4559
+ metric?: boolean | number;
4560
+ confidence?: boolean | number;
4561
+ absentReason?: boolean | number;
4562
+ __typename?: boolean | number;
4563
+ __scalar?: boolean | number;
4564
+ }
4460
4565
  export interface ActivityEntryGenqlSelection {
4461
4566
  id?: boolean | number;
4462
4567
  date?: boolean | number;
@@ -4467,6 +4572,7 @@ export interface ActivityEntryGenqlSelection {
4467
4572
  notCountedReason?: boolean | number;
4468
4573
  prMetrics?: boolean | number;
4469
4574
  metricAverages?: boolean | number;
4575
+ load?: ActivityLoadGenqlSelection;
4470
4576
  __typename?: boolean | number;
4471
4577
  __scalar?: boolean | number;
4472
4578
  }
@@ -4539,12 +4645,29 @@ export interface ComponentSummaryGenqlSelection {
4539
4645
  __typename?: boolean | number;
4540
4646
  __scalar?: boolean | number;
4541
4647
  }
4648
+ export interface ComponentPresenceGenqlSelection {
4649
+ status?: boolean | number;
4650
+ cause?: boolean | number;
4651
+ reason?: boolean | number;
4652
+ __typename?: boolean | number;
4653
+ __scalar?: boolean | number;
4654
+ }
4655
+ export interface ScorePresenceGenqlSelection {
4656
+ training?: ComponentPresenceGenqlSelection;
4657
+ social?: ComponentPresenceGenqlSelection;
4658
+ competition?: ComponentPresenceGenqlSelection;
4659
+ __typename?: boolean | number;
4660
+ __scalar?: boolean | number;
4661
+ }
4542
4662
  export interface DashboardSummaryGenqlSelection {
4543
4663
  vtxScore?: boolean | number;
4544
4664
  socialScore?: boolean | number;
4545
4665
  trainingScore?: boolean | number;
4546
4666
  competitionScore?: boolean | number;
4547
4667
  lastUpdated?: boolean | number;
4668
+ presence?: ScorePresenceGenqlSelection;
4669
+ renormalizedSecondary?: boolean | number;
4670
+ renormalizedSecondaryBasis?: boolean | number;
4548
4671
  __typename?: boolean | number;
4549
4672
  __scalar?: boolean | number;
4550
4673
  }
@@ -4836,6 +4959,13 @@ export interface CompetitionDeleteVerificationResponseGenqlSelection {
4836
4959
  __typename?: boolean | number;
4837
4960
  __scalar?: boolean | number;
4838
4961
  }
4962
+ export interface ConfirmProfileVitalsResponseGenqlSelection {
4963
+ confirmedAt?: boolean | number;
4964
+ dob?: boolean | number;
4965
+ competitionGender?: boolean | number;
4966
+ __typename?: boolean | number;
4967
+ __scalar?: boolean | number;
4968
+ }
4839
4969
  export interface DataExportRequestGenqlSelection {
4840
4970
  id?: boolean | number;
4841
4971
  status?: boolean | number;
@@ -5433,6 +5563,12 @@ export interface PendingSuggestionGroupGenqlSelection {
5433
5563
  __typename?: boolean | number;
5434
5564
  __scalar?: boolean | number;
5435
5565
  }
5566
+ export interface ProfileVitalsStatusGenqlSelection {
5567
+ confirmed?: boolean | number;
5568
+ confirmedAt?: boolean | number;
5569
+ __typename?: boolean | number;
5570
+ __scalar?: boolean | number;
5571
+ }
5436
5572
  export interface ProviderConnectionStatusGenqlSelection {
5437
5573
  provider?: boolean | number;
5438
5574
  status?: boolean | number;
@@ -6296,6 +6432,8 @@ export interface CreateClubInput {
6296
6432
  visibility?: (Scalars['String'] | null);
6297
6433
  location?: (Scalars['String'] | null);
6298
6434
  website?: (Scalars['String'] | null);
6435
+ allowMemberCampaigns?: (Scalars['Boolean'] | null);
6436
+ accentColor?: (Scalars['String'] | null);
6299
6437
  }
6300
6438
  export interface UpdateClubInput {
6301
6439
  name?: (Scalars['String'] | null);
@@ -6305,6 +6443,8 @@ export interface UpdateClubInput {
6305
6443
  visibility?: (Scalars['String'] | null);
6306
6444
  location?: (Scalars['String'] | null);
6307
6445
  website?: (Scalars['String'] | null);
6446
+ allowMemberCampaigns?: (Scalars['Boolean'] | null);
6447
+ accentColor?: (Scalars['String'] | null);
6308
6448
  clubId: Scalars['String'];
6309
6449
  banner?: (AWSS3UploadedFileDto | null);
6310
6450
  }
@@ -6318,6 +6458,10 @@ export interface ManageClubMemberInput {
6318
6458
  action: Scalars['String'];
6319
6459
  role?: (Scalars['String'] | null);
6320
6460
  }
6461
+ export interface ConfirmProfileVitalsDto {
6462
+ dateOfBirth: Scalars['DateTime'];
6463
+ gender: Scalars['String'];
6464
+ }
6321
6465
  export interface CompetitionResultDto {
6322
6466
  resultType: Scalars['String'];
6323
6467
  position?: (Scalars['Float'] | null);
@@ -6446,6 +6590,8 @@ export interface CreateFundingCampaignDto {
6446
6590
  thankYouMessage?: (Scalars['String'] | null);
6447
6591
  thankYouMediaUrl?: (Scalars['String'] | null);
6448
6592
  autoSendThankYou?: (Scalars['Boolean'] | null);
6593
+ clubId?: (Scalars['String'] | null);
6594
+ teamId?: (Scalars['String'] | null);
6449
6595
  }
6450
6596
  export interface CreateFundingCampaignForDto {
6451
6597
  budgetMode: FundingMode;
@@ -6464,6 +6610,8 @@ export interface CreateFundingCampaignForDto {
6464
6610
  thankYouMessage?: (Scalars['String'] | null);
6465
6611
  thankYouMediaUrl?: (Scalars['String'] | null);
6466
6612
  autoSendThankYou?: (Scalars['Boolean'] | null);
6613
+ clubId?: (Scalars['String'] | null);
6614
+ teamId?: (Scalars['String'] | null);
6467
6615
  loginEmail: Scalars['String'];
6468
6616
  }
6469
6617
  export interface UpdateFundingCampaignDto {
@@ -6483,6 +6631,8 @@ export interface UpdateFundingCampaignDto {
6483
6631
  thankYouMessage?: (Scalars['String'] | null);
6484
6632
  thankYouMediaUrl?: (Scalars['String'] | null);
6485
6633
  autoSendThankYou?: (Scalars['Boolean'] | null);
6634
+ clubId?: (Scalars['String'] | null);
6635
+ teamId?: (Scalars['String'] | null);
6486
6636
  _id: Scalars['String'];
6487
6637
  }
6488
6638
  export interface CreateIndustryDto {
@@ -6591,6 +6741,8 @@ export interface CreateSportEventDto {
6591
6741
  website?: (Scalars['String'] | null);
6592
6742
  banner?: (AWSS3UploadedFileDto | null);
6593
6743
  eventLevel?: (Scalars['String'] | null);
6744
+ distanceMeters?: (Scalars['Int'] | null);
6745
+ courseType?: (Scalars['String'] | null);
6594
6746
  }
6595
6747
  export interface CreateSportLevelTranslationDto {
6596
6748
  language: Scalars['String'];
@@ -6651,6 +6803,12 @@ export interface EditAthleteCompetitionDto {
6651
6803
  competitionNumber?: (Scalars['String'] | null);
6652
6804
  eventWebsite?: (Scalars['String'] | null);
6653
6805
  cityId?: (Scalars['String'] | null);
6806
+ expectedAirTempC?: (Scalars['Float'] | null);
6807
+ expectedWaterTempC?: (Scalars['Float'] | null);
6808
+ expectedWindConditions?: (Scalars['String'] | null);
6809
+ actualAirTempC?: (Scalars['Float'] | null);
6810
+ actualWaterTempC?: (Scalars['Float'] | null);
6811
+ actualWindConditions?: (Scalars['String'] | null);
6654
6812
  }
6655
6813
  export interface EditPictureDto {
6656
6814
  field: Scalars['String'];
@@ -7003,6 +7161,8 @@ export interface CreateTeamInput {
7003
7161
  maxRosterSize?: (Scalars['Int'] | null);
7004
7162
  visibility?: (Scalars['String'] | null);
7005
7163
  clubId?: (Scalars['String'] | null);
7164
+ allowMemberCampaigns?: (Scalars['Boolean'] | null);
7165
+ accentColor?: (Scalars['String'] | null);
7006
7166
  }
7007
7167
  export interface UpdateTeamInput {
7008
7168
  name?: (Scalars['String'] | null);
@@ -7010,6 +7170,8 @@ export interface UpdateTeamInput {
7010
7170
  joinPolicy?: (Scalars['String'] | null);
7011
7171
  maxRosterSize?: (Scalars['Int'] | null);
7012
7172
  visibility?: (Scalars['String'] | null);
7173
+ allowMemberCampaigns?: (Scalars['Boolean'] | null);
7174
+ accentColor?: (Scalars['String'] | null);
7013
7175
  teamId: Scalars['String'];
7014
7176
  banner?: (AWSS3UploadedFileDto | null);
7015
7177
  }
@@ -7067,6 +7229,8 @@ export interface UpdateSportEventDto {
7067
7229
  website?: (Scalars['String'] | null);
7068
7230
  banner?: (AWSS3UploadedFileDto | null);
7069
7231
  eventLevel?: (Scalars['String'] | null);
7232
+ distanceMeters?: (Scalars['Int'] | null);
7233
+ courseType?: (Scalars['String'] | null);
7070
7234
  _id: Scalars['String'];
7071
7235
  }
7072
7236
  export interface UpdateSportDto {
@@ -7247,6 +7411,7 @@ export interface QueryGenqlSelection {
7247
7411
  };
7248
7412
  });
7249
7413
  getSponsorAthletesForTenant?: AthleteGenqlSelection;
7414
+ profileVitalsStatus?: ProfileVitalsStatusGenqlSelection;
7250
7415
  getAthleteCompetitions?: (AthleteCompetitionGenqlSelection & {
7251
7416
  __args: {
7252
7417
  input: GetAthleteCompetitionsDto;
@@ -7426,6 +7591,11 @@ export interface QueryGenqlSelection {
7426
7591
  query?: (EventQueryDto | null);
7427
7592
  };
7428
7593
  });
7594
+ getEventsMissingCourseData?: (PaginatedEventsGenqlSelection & {
7595
+ __args?: {
7596
+ query?: (EventQueryDto | null);
7597
+ };
7598
+ });
7429
7599
  getBudgetsByAthlete?: BudgetDataGenqlSelection;
7430
7600
  getDonationsByAthlete?: ReceiptGenqlSelection;
7431
7601
  getDonationsToAthlete?: (DonationGenqlSelection & {
@@ -7985,6 +8155,12 @@ export interface MutationGenqlSelection {
7985
8155
  id: Scalars['String'];
7986
8156
  };
7987
8157
  };
8158
+ setAthleteVerifiedOverride?: (AthleteGenqlSelection & {
8159
+ __args: {
8160
+ athleteId: Scalars['String'];
8161
+ isVerifiedOverride: Scalars['Boolean'];
8162
+ };
8163
+ });
7988
8164
  forceDeleteAthleteCompetition?: (DeleteSingleValueResponseGenqlSelection & {
7989
8165
  __args: {
7990
8166
  input: DeleteSingleValueDto;
@@ -8000,6 +8176,11 @@ export interface MutationGenqlSelection {
8000
8176
  input: EditValueDto;
8001
8177
  };
8002
8178
  });
8179
+ confirmProfileVitals?: (ConfirmProfileVitalsResponseGenqlSelection & {
8180
+ __args: {
8181
+ input: ConfirmProfileVitalsDto;
8182
+ };
8183
+ });
8003
8184
  editPicture?: (EditPictureResponseGenqlSelection & {
8004
8185
  __args: {
8005
8186
  input: EditPictureDto;
@@ -8587,12 +8768,19 @@ export interface MutationGenqlSelection {
8587
8768
  createTeamDonationCheckout?: {
8588
8769
  __args: {
8589
8770
  teamId: Scalars['String'];
8590
- amount: Scalars['Float'];
8591
- currency?: Scalars['String'];
8592
8771
  donorEmail?: (Scalars['String'] | null);
8593
8772
  donorName?: (Scalars['String'] | null);
8773
+ amount: Scalars['Float'];
8774
+ currency?: Scalars['String'];
8775
+ fundingCampaignId?: (Scalars['String'] | null);
8594
8776
  };
8595
8777
  };
8778
+ setTeamCampaignPermission?: (TeamGenqlSelection & {
8779
+ __args: {
8780
+ teamId: Scalars['String'];
8781
+ allowMemberCampaigns: Scalars['Boolean'];
8782
+ };
8783
+ });
8596
8784
  createClub?: (ClubGenqlSelection & {
8597
8785
  __args: {
8598
8786
  input: CreateClubInput;
@@ -8642,6 +8830,7 @@ export interface MutationGenqlSelection {
8642
8830
  currency?: Scalars['String'];
8643
8831
  donorEmail?: (Scalars['String'] | null);
8644
8832
  donorName?: (Scalars['String'] | null);
8833
+ fundingCampaignId?: (Scalars['String'] | null);
8645
8834
  };
8646
8835
  };
8647
8836
  createMembershipFeeCheckout?: {
@@ -8649,6 +8838,12 @@ export interface MutationGenqlSelection {
8649
8838
  clubId: Scalars['String'];
8650
8839
  };
8651
8840
  };
8841
+ setClubCampaignPermission?: (ClubGenqlSelection & {
8842
+ __args: {
8843
+ clubId: Scalars['String'];
8844
+ allowMemberCampaigns: Scalars['Boolean'];
8845
+ };
8846
+ });
8652
8847
  createBlogPost?: (BlogPostGenqlSelection & {
8653
8848
  __args: {
8654
8849
  input: CreateBlogPostInput;
@@ -8990,27 +9185,21 @@ export declare const isAthleteTeamMember: (obj?: {
8990
9185
  export declare const isAthleteTeam: (obj?: {
8991
9186
  __typename?: any;
8992
9187
  } | null) => obj is AthleteTeam;
8993
- export declare const isTeamClubReference: (obj?: {
8994
- __typename?: any;
8995
- } | null) => obj is TeamClubReference;
8996
- export declare const isTeam: (obj?: {
8997
- __typename?: any;
8998
- } | null) => obj is Team;
8999
9188
  export declare const isWorldLocation: (obj?: {
9000
9189
  __typename?: any;
9001
9190
  } | null) => obj is WorldLocation;
9002
- export declare const isSportsEvent: (obj?: {
9003
- __typename?: any;
9004
- } | null) => obj is SportsEvent;
9005
- export declare const isAthleteCompetitionResult: (obj?: {
9006
- __typename?: any;
9007
- } | null) => obj is AthleteCompetitionResult;
9008
9191
  export declare const isBudgetItem: (obj?: {
9009
9192
  __typename?: any;
9010
9193
  } | null) => obj is BudgetItem;
9011
9194
  export declare const isBudget: (obj?: {
9012
9195
  __typename?: any;
9013
9196
  } | null) => obj is Budget;
9197
+ export declare const isSportsEvent: (obj?: {
9198
+ __typename?: any;
9199
+ } | null) => obj is SportsEvent;
9200
+ export declare const isAthleteCompetitionResult: (obj?: {
9201
+ __typename?: any;
9202
+ } | null) => obj is AthleteCompetitionResult;
9014
9203
  export declare const isPhotoAlbum: (obj?: {
9015
9204
  __typename?: any;
9016
9205
  } | null) => obj is PhotoAlbum;
@@ -9020,6 +9209,21 @@ export declare const isAlbum: (obj?: {
9020
9209
  export declare const isAthleteCompetition: (obj?: {
9021
9210
  __typename?: any;
9022
9211
  } | null) => obj is AthleteCompetition;
9212
+ export declare const isVideo: (obj?: {
9213
+ __typename?: any;
9214
+ } | null) => obj is Video;
9215
+ export declare const isClub: (obj?: {
9216
+ __typename?: any;
9217
+ } | null) => obj is Club;
9218
+ export declare const isFundRaisingCampaign: (obj?: {
9219
+ __typename?: any;
9220
+ } | null) => obj is FundRaisingCampaign;
9221
+ export declare const isTeamClubReference: (obj?: {
9222
+ __typename?: any;
9223
+ } | null) => obj is TeamClubReference;
9224
+ export declare const isTeam: (obj?: {
9225
+ __typename?: any;
9226
+ } | null) => obj is Team;
9023
9227
  export declare const isMembershipOrganizationReference: (obj?: {
9024
9228
  __typename?: any;
9025
9229
  } | null) => obj is MembershipOrganizationReference;
@@ -9038,12 +9242,6 @@ export declare const isChannel: (obj?: {
9038
9242
  export declare const isAthletePreferences: (obj?: {
9039
9243
  __typename?: any;
9040
9244
  } | null) => obj is AthletePreferences;
9041
- export declare const isVideo: (obj?: {
9042
- __typename?: any;
9043
- } | null) => obj is Video;
9044
- export declare const isFundRaisingCampaign: (obj?: {
9045
- __typename?: any;
9046
- } | null) => obj is FundRaisingCampaign;
9047
9245
  export declare const isStripeCapabilityType: (obj?: {
9048
9246
  __typename?: any;
9049
9247
  } | null) => obj is StripeCapabilityType;
@@ -9071,6 +9269,9 @@ export declare const isStripeAccountReference: (obj?: {
9071
9269
  export declare const isHistoricalScore: (obj?: {
9072
9270
  __typename?: any;
9073
9271
  } | null) => obj is HistoricalScore;
9272
+ export declare const isVerifiedAthleteStatusType: (obj?: {
9273
+ __typename?: any;
9274
+ } | null) => obj is VerifiedAthleteStatusType;
9074
9275
  export declare const isAthleteReference: (obj?: {
9075
9276
  __typename?: any;
9076
9277
  } | null) => obj is AthleteReference;
@@ -9107,15 +9308,15 @@ export declare const isAiCoachUnreadNudgeCountResponse: (obj?: {
9107
9308
  export declare const isAiCoachThread: (obj?: {
9108
9309
  __typename?: any;
9109
9310
  } | null) => obj is AiCoachThread;
9110
- export declare const isClub: (obj?: {
9111
- __typename?: any;
9112
- } | null) => obj is Club;
9113
9311
  export declare const isAthleteClubMember: (obj?: {
9114
9312
  __typename?: any;
9115
9313
  } | null) => obj is AthleteClubMember;
9116
9314
  export declare const isAthleteClub: (obj?: {
9117
9315
  __typename?: any;
9118
9316
  } | null) => obj is AthleteClub;
9317
+ export declare const isActivityLoad: (obj?: {
9318
+ __typename?: any;
9319
+ } | null) => obj is ActivityLoad;
9119
9320
  export declare const isActivityEntry: (obj?: {
9120
9321
  __typename?: any;
9121
9322
  } | null) => obj is ActivityEntry;
@@ -9143,6 +9344,12 @@ export declare const isTopMetric: (obj?: {
9143
9344
  export declare const isComponentSummary: (obj?: {
9144
9345
  __typename?: any;
9145
9346
  } | null) => obj is ComponentSummary;
9347
+ export declare const isComponentPresence: (obj?: {
9348
+ __typename?: any;
9349
+ } | null) => obj is ComponentPresence;
9350
+ export declare const isScorePresence: (obj?: {
9351
+ __typename?: any;
9352
+ } | null) => obj is ScorePresence;
9146
9353
  export declare const isDashboardSummary: (obj?: {
9147
9354
  __typename?: any;
9148
9355
  } | null) => obj is DashboardSummary;
@@ -9239,6 +9446,9 @@ export declare const isCompetitionDeleteVerificationReason: (obj?: {
9239
9446
  export declare const isCompetitionDeleteVerificationResponse: (obj?: {
9240
9447
  __typename?: any;
9241
9448
  } | null) => obj is CompetitionDeleteVerificationResponse;
9449
+ export declare const isConfirmProfileVitalsResponse: (obj?: {
9450
+ __typename?: any;
9451
+ } | null) => obj is ConfirmProfileVitalsResponse;
9242
9452
  export declare const isDataExportRequest: (obj?: {
9243
9453
  __typename?: any;
9244
9454
  } | null) => obj is DataExportRequest;
@@ -9422,6 +9632,9 @@ export declare const isPaginatedUsers: (obj?: {
9422
9632
  export declare const isPendingSuggestionGroup: (obj?: {
9423
9633
  __typename?: any;
9424
9634
  } | null) => obj is PendingSuggestionGroup;
9635
+ export declare const isProfileVitalsStatus: (obj?: {
9636
+ __typename?: any;
9637
+ } | null) => obj is ProfileVitalsStatus;
9425
9638
  export declare const isProviderConnectionStatus: (obj?: {
9426
9639
  __typename?: any;
9427
9640
  } | null) => obj is ProviderConnectionStatus;