@vertikalx/vtx-backend-client 3.5.1-dev.0 → 3.5.5-dev.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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'];
@@ -852,21 +844,6 @@ export interface AthleteCompetitionResult {
852
844
  }
853
845
  export type CompetitionVerificationTier = 'SELF_REPORTED' | 'LINK_PROVIDED' | 'LINK_EXTRACTED_MATCH' | 'STRAVA_CORROBORATED' | 'ATHLINKS_CLAIMED' | 'FEDERATION_VERIFIED';
854
846
  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
847
  export interface PhotoAlbum {
871
848
  _id: Scalars['String'];
872
849
  photo: (AWSS3File | null);
@@ -897,6 +874,86 @@ export interface AthleteCompetition {
897
874
  dismissedBy: (Scalars['String'] | null);
898
875
  __typename: 'AthleteCompetition';
899
876
  }
877
+ export interface Video {
878
+ _id: Scalars['String'];
879
+ source: Scalars['String'];
880
+ url: Scalars['String'];
881
+ sourceData: Scalars['String'];
882
+ __typename: 'Video';
883
+ }
884
+ export interface Club {
885
+ _id: Scalars['String'];
886
+ name: Scalars['String'];
887
+ description: (Scalars['String'] | null);
888
+ sports: (Sport[] | null);
889
+ logo: (AWSS3File | null);
890
+ banner: (AWSS3File | null);
891
+ location: (Scalars['String'] | null);
892
+ website: (Scalars['String'] | null);
893
+ membershipType: Scalars['String'];
894
+ feeStructure: (Scalars['JSON'] | null);
895
+ approved: (Scalars['Boolean'] | null);
896
+ visibility: Scalars['String'];
897
+ teams: (Team[] | null);
898
+ stripeAccountId: (Scalars['String'] | null);
899
+ allowMemberCampaigns: Scalars['Boolean'];
900
+ accentColor: (Scalars['String'] | null);
901
+ fundingCampaigns: (FundRaisingCampaign[] | null);
902
+ __typename: 'Club';
903
+ }
904
+ export interface FundRaisingCampaign {
905
+ _id: Scalars['String'];
906
+ athlete: (AthleteReference | null);
907
+ club: (Club | null);
908
+ team: (Team | null);
909
+ budgetMode: Scalars['String'];
910
+ status: Scalars['String'];
911
+ title: Scalars['String'];
912
+ slug: (Scalars['String'] | null);
913
+ motivation: (Scalars['String'] | null);
914
+ website: (Scalars['String'] | null);
915
+ fundsRequired: Scalars['Float'];
916
+ initialFundsObtained: Scalars['Float'];
917
+ fundsObtained: Scalars['Float'];
918
+ location: (WorldLocation | null);
919
+ createdDate: Scalars['DateTime'];
920
+ endingDate: Scalars['DateTime'];
921
+ budget: (Budget | null);
922
+ competitions: (AthleteCompetition[] | null);
923
+ vtxComissionPct: Scalars['Float'];
924
+ video: (Video | null);
925
+ coverImage: (AWSS3File | null);
926
+ thankYouMessage: (Scalars['String'] | null);
927
+ thankYouMediaUrl: (Scalars['String'] | null);
928
+ autoSendThankYou: Scalars['Boolean'];
929
+ __typename: 'FundRaisingCampaign';
930
+ }
931
+ export interface TeamClubReference {
932
+ _id: Scalars['String'];
933
+ name: Scalars['String'];
934
+ logo: (AWSS3File | null);
935
+ __typename: 'TeamClubReference';
936
+ }
937
+ export interface Team {
938
+ _id: Scalars['String'];
939
+ name: Scalars['String'];
940
+ description: (Scalars['String'] | null);
941
+ sports: (Sport[] | null);
942
+ approved: (Scalars['Boolean'] | null);
943
+ logo: (AWSS3File | null);
944
+ banner: (AWSS3File | null);
945
+ club: (TeamClubReference | null);
946
+ athletes: (AthleteTeam[] | null);
947
+ joinPolicy: (Scalars['String'] | null);
948
+ maxRosterSize: (Scalars['Int'] | null);
949
+ visibility: (Scalars['String'] | null);
950
+ stripeAccountId: (Scalars['String'] | null);
951
+ vtxScore: (Scalars['Float'] | null);
952
+ allowMemberCampaigns: Scalars['Boolean'];
953
+ accentColor: (Scalars['String'] | null);
954
+ fundingCampaigns: (FundRaisingCampaign[] | null);
955
+ __typename: 'Team';
956
+ }
900
957
  export interface MembershipOrganizationReference {
901
958
  _id: Scalars['String'];
902
959
  shortName: (Scalars['String'] | null);
@@ -953,38 +1010,6 @@ export interface AthletePreferences {
953
1010
  defaultAlbum: (Album | null);
954
1011
  __typename: 'AthletePreferences';
955
1012
  }
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
1013
  export interface StripeCapabilityType {
989
1014
  acss_debit_payments: (Scalars['String'] | null);
990
1015
  affirm_payments: (Scalars['String'] | null);
@@ -1110,6 +1135,14 @@ export interface HistoricalScore {
1110
1135
  athleteId: Scalars['String'];
1111
1136
  __typename: 'HistoricalScore';
1112
1137
  }
1138
+ export interface VerifiedAthleteStatusType {
1139
+ isVerified: Scalars['Boolean'];
1140
+ hasTrainingConnected: Scalars['Boolean'];
1141
+ hasInstagramConnected: Scalars['Boolean'];
1142
+ hasVerifiedRaceResult: Scalars['Boolean'];
1143
+ hasStripeVerified: Scalars['Boolean'];
1144
+ __typename: 'VerifiedAthleteStatusType';
1145
+ }
1113
1146
  export interface AthleteReference {
1114
1147
  _id: Scalars['String'];
1115
1148
  firstName: Scalars['String'];
@@ -1139,6 +1172,8 @@ export interface AthleteReference {
1139
1172
  suspended: Scalars['Boolean'];
1140
1173
  onboardingComplete: (Scalars['Boolean'] | null);
1141
1174
  onboardingStep: (Scalars['Float'] | null);
1175
+ isVerifiedOverride: (Scalars['Boolean'] | null);
1176
+ verifiedStatus: (VerifiedAthleteStatusType | null);
1142
1177
  __typename: 'AthleteReference';
1143
1178
  }
1144
1179
  export interface Athlete {
@@ -1170,6 +1205,8 @@ export interface Athlete {
1170
1205
  suspended: Scalars['Boolean'];
1171
1206
  onboardingComplete: (Scalars['Boolean'] | null);
1172
1207
  onboardingStep: (Scalars['Float'] | null);
1208
+ isVerifiedOverride: (Scalars['Boolean'] | null);
1209
+ verifiedStatus: (VerifiedAthleteStatusType | null);
1173
1210
  allSports: (Sport[] | null);
1174
1211
  teams: (Team[] | null);
1175
1212
  sponsorBrands: (Brand[] | null);
@@ -1282,23 +1319,6 @@ export interface AiCoachThread {
1282
1319
  messages: (AiCoachMessage[] | null);
1283
1320
  __typename: 'AiCoachThread';
1284
1321
  }
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
1322
  export interface AthleteClubMember {
1303
1323
  _id: Scalars['String'];
1304
1324
  firstName: (Scalars['String'] | null);
@@ -2871,6 +2891,7 @@ export interface Mutation {
2871
2891
  transferSponsorOwnership: Scalars['Boolean'];
2872
2892
  updateSponsor: Sponsor;
2873
2893
  deleteSponsor: Scalars['Boolean'];
2894
+ setAthleteVerifiedOverride: Athlete;
2874
2895
  forceDeleteAthleteCompetition: DeleteSingleValueResponse;
2875
2896
  registerAthlete: Athlete;
2876
2897
  editProfileValue: EditValueResponse;
@@ -2996,6 +3017,7 @@ export interface Mutation {
2996
3017
  approveTeam: Team;
2997
3018
  createTeamStripeAccount: Scalars['String'];
2998
3019
  createTeamDonationCheckout: Scalars['String'];
3020
+ setTeamCampaignPermission: Team;
2999
3021
  createClub: Club;
3000
3022
  updateClub: Club;
3001
3023
  joinClub: AthleteClub;
@@ -3006,6 +3028,7 @@ export interface Mutation {
3006
3028
  createClubStripeAccount: Scalars['String'];
3007
3029
  createClubDonationCheckout: Scalars['String'];
3008
3030
  createMembershipFeeCheckout: (Scalars['String'] | null);
3031
+ setClubCampaignPermission: Club;
3009
3032
  createBlogPost: BlogPost;
3010
3033
  updateBlogPost: BlogPost;
3011
3034
  deleteBlogPost: Scalars['Boolean'];
@@ -3874,31 +3897,6 @@ export interface AthleteTeamGenqlSelection {
3874
3897
  __typename?: boolean | number;
3875
3898
  __scalar?: boolean | number;
3876
3899
  }
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
3900
  export interface WorldLocationGenqlSelection {
3903
3901
  _id?: boolean | number;
3904
3902
  userProvidedLatitude?: boolean | number;
@@ -3913,6 +3911,23 @@ export interface WorldLocationGenqlSelection {
3913
3911
  __typename?: boolean | number;
3914
3912
  __scalar?: boolean | number;
3915
3913
  }
3914
+ export interface BudgetItemGenqlSelection {
3915
+ _id?: boolean | number;
3916
+ quantity?: boolean | number;
3917
+ concept?: boolean | number;
3918
+ itemCost?: boolean | number;
3919
+ unit?: boolean | number;
3920
+ __typename?: boolean | number;
3921
+ __scalar?: boolean | number;
3922
+ }
3923
+ export interface BudgetGenqlSelection {
3924
+ _id?: boolean | number;
3925
+ initialFunds?: boolean | number;
3926
+ totalRequired?: boolean | number;
3927
+ items?: BudgetItemGenqlSelection;
3928
+ __typename?: boolean | number;
3929
+ __scalar?: boolean | number;
3930
+ }
3916
3931
  export interface SportsEventGenqlSelection {
3917
3932
  _id?: boolean | number;
3918
3933
  name?: boolean | number;
@@ -3955,23 +3970,6 @@ export interface AthleteCompetitionResultGenqlSelection {
3955
3970
  __typename?: boolean | number;
3956
3971
  __scalar?: boolean | number;
3957
3972
  }
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
3973
  export interface PhotoAlbumGenqlSelection {
3976
3974
  _id?: boolean | number;
3977
3975
  photo?: AWSS3FileGenqlSelection;
@@ -4005,6 +4003,91 @@ export interface AthleteCompetitionGenqlSelection {
4005
4003
  __typename?: boolean | number;
4006
4004
  __scalar?: boolean | number;
4007
4005
  }
4006
+ export interface VideoGenqlSelection {
4007
+ _id?: boolean | number;
4008
+ source?: boolean | number;
4009
+ url?: boolean | number;
4010
+ sourceData?: boolean | number;
4011
+ __typename?: boolean | number;
4012
+ __scalar?: boolean | number;
4013
+ }
4014
+ export interface ClubGenqlSelection {
4015
+ _id?: boolean | number;
4016
+ name?: boolean | number;
4017
+ description?: boolean | number;
4018
+ sports?: SportGenqlSelection;
4019
+ logo?: AWSS3FileGenqlSelection;
4020
+ banner?: AWSS3FileGenqlSelection;
4021
+ location?: boolean | number;
4022
+ website?: boolean | number;
4023
+ membershipType?: boolean | number;
4024
+ feeStructure?: boolean | number;
4025
+ approved?: boolean | number;
4026
+ visibility?: boolean | number;
4027
+ teams?: TeamGenqlSelection;
4028
+ stripeAccountId?: boolean | number;
4029
+ allowMemberCampaigns?: boolean | number;
4030
+ accentColor?: boolean | number;
4031
+ fundingCampaigns?: FundRaisingCampaignGenqlSelection;
4032
+ __typename?: boolean | number;
4033
+ __scalar?: boolean | number;
4034
+ }
4035
+ export interface FundRaisingCampaignGenqlSelection {
4036
+ _id?: boolean | number;
4037
+ athlete?: AthleteReferenceGenqlSelection;
4038
+ club?: ClubGenqlSelection;
4039
+ team?: TeamGenqlSelection;
4040
+ budgetMode?: boolean | number;
4041
+ status?: boolean | number;
4042
+ title?: boolean | number;
4043
+ slug?: boolean | number;
4044
+ motivation?: boolean | number;
4045
+ website?: boolean | number;
4046
+ fundsRequired?: boolean | number;
4047
+ initialFundsObtained?: boolean | number;
4048
+ fundsObtained?: boolean | number;
4049
+ location?: WorldLocationGenqlSelection;
4050
+ createdDate?: boolean | number;
4051
+ endingDate?: boolean | number;
4052
+ budget?: BudgetGenqlSelection;
4053
+ competitions?: AthleteCompetitionGenqlSelection;
4054
+ vtxComissionPct?: boolean | number;
4055
+ video?: VideoGenqlSelection;
4056
+ coverImage?: AWSS3FileGenqlSelection;
4057
+ thankYouMessage?: boolean | number;
4058
+ thankYouMediaUrl?: boolean | number;
4059
+ autoSendThankYou?: boolean | number;
4060
+ __typename?: boolean | number;
4061
+ __scalar?: boolean | number;
4062
+ }
4063
+ export interface TeamClubReferenceGenqlSelection {
4064
+ _id?: boolean | number;
4065
+ name?: boolean | number;
4066
+ logo?: AWSS3FileGenqlSelection;
4067
+ __typename?: boolean | number;
4068
+ __scalar?: boolean | number;
4069
+ }
4070
+ export interface TeamGenqlSelection {
4071
+ _id?: boolean | number;
4072
+ name?: boolean | number;
4073
+ description?: boolean | number;
4074
+ sports?: SportGenqlSelection;
4075
+ approved?: boolean | number;
4076
+ logo?: AWSS3FileGenqlSelection;
4077
+ banner?: AWSS3FileGenqlSelection;
4078
+ club?: TeamClubReferenceGenqlSelection;
4079
+ athletes?: AthleteTeamGenqlSelection;
4080
+ joinPolicy?: boolean | number;
4081
+ maxRosterSize?: boolean | number;
4082
+ visibility?: boolean | number;
4083
+ stripeAccountId?: boolean | number;
4084
+ vtxScore?: boolean | number;
4085
+ allowMemberCampaigns?: boolean | number;
4086
+ accentColor?: boolean | number;
4087
+ fundingCampaigns?: FundRaisingCampaignGenqlSelection;
4088
+ __typename?: boolean | number;
4089
+ __scalar?: boolean | number;
4090
+ }
4008
4091
  export interface MembershipOrganizationReferenceGenqlSelection {
4009
4092
  _id?: boolean | number;
4010
4093
  shortName?: boolean | number;
@@ -4067,40 +4150,6 @@ export interface AthletePreferencesGenqlSelection {
4067
4150
  __typename?: boolean | number;
4068
4151
  __scalar?: boolean | number;
4069
4152
  }
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
4153
  export interface StripeCapabilityTypeGenqlSelection {
4105
4154
  acss_debit_payments?: boolean | number;
4106
4155
  affirm_payments?: boolean | number;
@@ -4235,6 +4284,15 @@ export interface HistoricalScoreGenqlSelection {
4235
4284
  __typename?: boolean | number;
4236
4285
  __scalar?: boolean | number;
4237
4286
  }
4287
+ export interface VerifiedAthleteStatusTypeGenqlSelection {
4288
+ isVerified?: boolean | number;
4289
+ hasTrainingConnected?: boolean | number;
4290
+ hasInstagramConnected?: boolean | number;
4291
+ hasVerifiedRaceResult?: boolean | number;
4292
+ hasStripeVerified?: boolean | number;
4293
+ __typename?: boolean | number;
4294
+ __scalar?: boolean | number;
4295
+ }
4238
4296
  export interface AthleteReferenceGenqlSelection {
4239
4297
  _id?: boolean | number;
4240
4298
  firstName?: boolean | number;
@@ -4264,6 +4322,8 @@ export interface AthleteReferenceGenqlSelection {
4264
4322
  suspended?: boolean | number;
4265
4323
  onboardingComplete?: boolean | number;
4266
4324
  onboardingStep?: boolean | number;
4325
+ isVerifiedOverride?: boolean | number;
4326
+ verifiedStatus?: VerifiedAthleteStatusTypeGenqlSelection;
4267
4327
  __typename?: boolean | number;
4268
4328
  __scalar?: boolean | number;
4269
4329
  }
@@ -4296,6 +4356,8 @@ export interface AthleteGenqlSelection {
4296
4356
  suspended?: boolean | number;
4297
4357
  onboardingComplete?: boolean | number;
4298
4358
  onboardingStep?: boolean | number;
4359
+ isVerifiedOverride?: boolean | number;
4360
+ verifiedStatus?: VerifiedAthleteStatusTypeGenqlSelection;
4299
4361
  allSports?: SportGenqlSelection;
4300
4362
  teams?: TeamGenqlSelection;
4301
4363
  sponsorBrands?: BrandGenqlSelection;
@@ -4419,24 +4481,6 @@ export interface AiCoachThreadGenqlSelection {
4419
4481
  __typename?: boolean | number;
4420
4482
  __scalar?: boolean | number;
4421
4483
  }
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
4484
  export interface AthleteClubMemberGenqlSelection {
4441
4485
  _id?: boolean | number;
4442
4486
  firstName?: boolean | number;
@@ -6296,6 +6340,8 @@ export interface CreateClubInput {
6296
6340
  visibility?: (Scalars['String'] | null);
6297
6341
  location?: (Scalars['String'] | null);
6298
6342
  website?: (Scalars['String'] | null);
6343
+ allowMemberCampaigns?: (Scalars['Boolean'] | null);
6344
+ accentColor?: (Scalars['String'] | null);
6299
6345
  }
6300
6346
  export interface UpdateClubInput {
6301
6347
  name?: (Scalars['String'] | null);
@@ -6305,6 +6351,8 @@ export interface UpdateClubInput {
6305
6351
  visibility?: (Scalars['String'] | null);
6306
6352
  location?: (Scalars['String'] | null);
6307
6353
  website?: (Scalars['String'] | null);
6354
+ allowMemberCampaigns?: (Scalars['Boolean'] | null);
6355
+ accentColor?: (Scalars['String'] | null);
6308
6356
  clubId: Scalars['String'];
6309
6357
  banner?: (AWSS3UploadedFileDto | null);
6310
6358
  }
@@ -6446,6 +6494,8 @@ export interface CreateFundingCampaignDto {
6446
6494
  thankYouMessage?: (Scalars['String'] | null);
6447
6495
  thankYouMediaUrl?: (Scalars['String'] | null);
6448
6496
  autoSendThankYou?: (Scalars['Boolean'] | null);
6497
+ clubId?: (Scalars['String'] | null);
6498
+ teamId?: (Scalars['String'] | null);
6449
6499
  }
6450
6500
  export interface CreateFundingCampaignForDto {
6451
6501
  budgetMode: FundingMode;
@@ -6464,6 +6514,8 @@ export interface CreateFundingCampaignForDto {
6464
6514
  thankYouMessage?: (Scalars['String'] | null);
6465
6515
  thankYouMediaUrl?: (Scalars['String'] | null);
6466
6516
  autoSendThankYou?: (Scalars['Boolean'] | null);
6517
+ clubId?: (Scalars['String'] | null);
6518
+ teamId?: (Scalars['String'] | null);
6467
6519
  loginEmail: Scalars['String'];
6468
6520
  }
6469
6521
  export interface UpdateFundingCampaignDto {
@@ -6483,6 +6535,8 @@ export interface UpdateFundingCampaignDto {
6483
6535
  thankYouMessage?: (Scalars['String'] | null);
6484
6536
  thankYouMediaUrl?: (Scalars['String'] | null);
6485
6537
  autoSendThankYou?: (Scalars['Boolean'] | null);
6538
+ clubId?: (Scalars['String'] | null);
6539
+ teamId?: (Scalars['String'] | null);
6486
6540
  _id: Scalars['String'];
6487
6541
  }
6488
6542
  export interface CreateIndustryDto {
@@ -7003,6 +7057,8 @@ export interface CreateTeamInput {
7003
7057
  maxRosterSize?: (Scalars['Int'] | null);
7004
7058
  visibility?: (Scalars['String'] | null);
7005
7059
  clubId?: (Scalars['String'] | null);
7060
+ allowMemberCampaigns?: (Scalars['Boolean'] | null);
7061
+ accentColor?: (Scalars['String'] | null);
7006
7062
  }
7007
7063
  export interface UpdateTeamInput {
7008
7064
  name?: (Scalars['String'] | null);
@@ -7010,6 +7066,8 @@ export interface UpdateTeamInput {
7010
7066
  joinPolicy?: (Scalars['String'] | null);
7011
7067
  maxRosterSize?: (Scalars['Int'] | null);
7012
7068
  visibility?: (Scalars['String'] | null);
7069
+ allowMemberCampaigns?: (Scalars['Boolean'] | null);
7070
+ accentColor?: (Scalars['String'] | null);
7013
7071
  teamId: Scalars['String'];
7014
7072
  banner?: (AWSS3UploadedFileDto | null);
7015
7073
  }
@@ -7985,6 +8043,12 @@ export interface MutationGenqlSelection {
7985
8043
  id: Scalars['String'];
7986
8044
  };
7987
8045
  };
8046
+ setAthleteVerifiedOverride?: (AthleteGenqlSelection & {
8047
+ __args: {
8048
+ athleteId: Scalars['String'];
8049
+ isVerifiedOverride: Scalars['Boolean'];
8050
+ };
8051
+ });
7988
8052
  forceDeleteAthleteCompetition?: (DeleteSingleValueResponseGenqlSelection & {
7989
8053
  __args: {
7990
8054
  input: DeleteSingleValueDto;
@@ -8587,12 +8651,19 @@ export interface MutationGenqlSelection {
8587
8651
  createTeamDonationCheckout?: {
8588
8652
  __args: {
8589
8653
  teamId: Scalars['String'];
8590
- amount: Scalars['Float'];
8591
- currency?: Scalars['String'];
8592
8654
  donorEmail?: (Scalars['String'] | null);
8593
8655
  donorName?: (Scalars['String'] | null);
8656
+ amount: Scalars['Float'];
8657
+ currency?: Scalars['String'];
8658
+ fundingCampaignId?: (Scalars['String'] | null);
8594
8659
  };
8595
8660
  };
8661
+ setTeamCampaignPermission?: (TeamGenqlSelection & {
8662
+ __args: {
8663
+ teamId: Scalars['String'];
8664
+ allowMemberCampaigns: Scalars['Boolean'];
8665
+ };
8666
+ });
8596
8667
  createClub?: (ClubGenqlSelection & {
8597
8668
  __args: {
8598
8669
  input: CreateClubInput;
@@ -8642,6 +8713,7 @@ export interface MutationGenqlSelection {
8642
8713
  currency?: Scalars['String'];
8643
8714
  donorEmail?: (Scalars['String'] | null);
8644
8715
  donorName?: (Scalars['String'] | null);
8716
+ fundingCampaignId?: (Scalars['String'] | null);
8645
8717
  };
8646
8718
  };
8647
8719
  createMembershipFeeCheckout?: {
@@ -8649,6 +8721,12 @@ export interface MutationGenqlSelection {
8649
8721
  clubId: Scalars['String'];
8650
8722
  };
8651
8723
  };
8724
+ setClubCampaignPermission?: (ClubGenqlSelection & {
8725
+ __args: {
8726
+ clubId: Scalars['String'];
8727
+ allowMemberCampaigns: Scalars['Boolean'];
8728
+ };
8729
+ });
8652
8730
  createBlogPost?: (BlogPostGenqlSelection & {
8653
8731
  __args: {
8654
8732
  input: CreateBlogPostInput;
@@ -8990,27 +9068,21 @@ export declare const isAthleteTeamMember: (obj?: {
8990
9068
  export declare const isAthleteTeam: (obj?: {
8991
9069
  __typename?: any;
8992
9070
  } | 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
9071
  export declare const isWorldLocation: (obj?: {
9000
9072
  __typename?: any;
9001
9073
  } | 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
9074
  export declare const isBudgetItem: (obj?: {
9009
9075
  __typename?: any;
9010
9076
  } | null) => obj is BudgetItem;
9011
9077
  export declare const isBudget: (obj?: {
9012
9078
  __typename?: any;
9013
9079
  } | null) => obj is Budget;
9080
+ export declare const isSportsEvent: (obj?: {
9081
+ __typename?: any;
9082
+ } | null) => obj is SportsEvent;
9083
+ export declare const isAthleteCompetitionResult: (obj?: {
9084
+ __typename?: any;
9085
+ } | null) => obj is AthleteCompetitionResult;
9014
9086
  export declare const isPhotoAlbum: (obj?: {
9015
9087
  __typename?: any;
9016
9088
  } | null) => obj is PhotoAlbum;
@@ -9020,6 +9092,21 @@ export declare const isAlbum: (obj?: {
9020
9092
  export declare const isAthleteCompetition: (obj?: {
9021
9093
  __typename?: any;
9022
9094
  } | null) => obj is AthleteCompetition;
9095
+ export declare const isVideo: (obj?: {
9096
+ __typename?: any;
9097
+ } | null) => obj is Video;
9098
+ export declare const isClub: (obj?: {
9099
+ __typename?: any;
9100
+ } | null) => obj is Club;
9101
+ export declare const isFundRaisingCampaign: (obj?: {
9102
+ __typename?: any;
9103
+ } | null) => obj is FundRaisingCampaign;
9104
+ export declare const isTeamClubReference: (obj?: {
9105
+ __typename?: any;
9106
+ } | null) => obj is TeamClubReference;
9107
+ export declare const isTeam: (obj?: {
9108
+ __typename?: any;
9109
+ } | null) => obj is Team;
9023
9110
  export declare const isMembershipOrganizationReference: (obj?: {
9024
9111
  __typename?: any;
9025
9112
  } | null) => obj is MembershipOrganizationReference;
@@ -9038,12 +9125,6 @@ export declare const isChannel: (obj?: {
9038
9125
  export declare const isAthletePreferences: (obj?: {
9039
9126
  __typename?: any;
9040
9127
  } | 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
9128
  export declare const isStripeCapabilityType: (obj?: {
9048
9129
  __typename?: any;
9049
9130
  } | null) => obj is StripeCapabilityType;
@@ -9071,6 +9152,9 @@ export declare const isStripeAccountReference: (obj?: {
9071
9152
  export declare const isHistoricalScore: (obj?: {
9072
9153
  __typename?: any;
9073
9154
  } | null) => obj is HistoricalScore;
9155
+ export declare const isVerifiedAthleteStatusType: (obj?: {
9156
+ __typename?: any;
9157
+ } | null) => obj is VerifiedAthleteStatusType;
9074
9158
  export declare const isAthleteReference: (obj?: {
9075
9159
  __typename?: any;
9076
9160
  } | null) => obj is AthleteReference;
@@ -9107,9 +9191,6 @@ export declare const isAiCoachUnreadNudgeCountResponse: (obj?: {
9107
9191
  export declare const isAiCoachThread: (obj?: {
9108
9192
  __typename?: any;
9109
9193
  } | null) => obj is AiCoachThread;
9110
- export declare const isClub: (obj?: {
9111
- __typename?: any;
9112
- } | null) => obj is Club;
9113
9194
  export declare const isAthleteClubMember: (obj?: {
9114
9195
  __typename?: any;
9115
9196
  } | null) => obj is AthleteClubMember;