@vertikalx/vtx-backend-client 3.0.0-dev-max1.1 → 3.0.0-dev-max3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -333,6 +333,22 @@ export type Athlete = {
333
333
  trainer?: Maybe<Scalars['String']['output']>;
334
334
  trainerUrl?: Maybe<Scalars['String']['output']>;
335
335
  };
336
+ export type AthleteClub = {
337
+ _id: Scalars['String']['output'];
338
+ athlete?: Maybe<AthleteClubMember>;
339
+ club?: Maybe<Club>;
340
+ joinedAt?: Maybe<Scalars['DateTime']['output']>;
341
+ leftAt?: Maybe<Scalars['DateTime']['output']>;
342
+ role: Scalars['String']['output'];
343
+ status: Scalars['String']['output'];
344
+ };
345
+ export type AthleteClubMember = {
346
+ _id: Scalars['String']['output'];
347
+ firstName?: Maybe<Scalars['String']['output']>;
348
+ lastName?: Maybe<Scalars['String']['output']>;
349
+ profilePicture?: Maybe<Awss3File>;
350
+ screenName?: Maybe<Scalars['String']['output']>;
351
+ };
336
352
  export type AthleteCompetition = {
337
353
  _id: Scalars['String']['output'];
338
354
  albums?: Maybe<Array<Album>>;
@@ -472,6 +488,23 @@ export type AthleteReference = {
472
488
  trainer?: Maybe<Scalars['String']['output']>;
473
489
  trainerUrl?: Maybe<Scalars['String']['output']>;
474
490
  };
491
+ export type AthleteTeam = {
492
+ _id: Scalars['String']['output'];
493
+ athlete?: Maybe<AthleteTeamMember>;
494
+ joinedAt?: Maybe<Scalars['DateTime']['output']>;
495
+ leftAt?: Maybe<Scalars['DateTime']['output']>;
496
+ role: Scalars['String']['output'];
497
+ sport?: Maybe<Sport>;
498
+ status: Scalars['String']['output'];
499
+ };
500
+ export type AthleteTeamMember = {
501
+ _id: Scalars['String']['output'];
502
+ firstName?: Maybe<Scalars['String']['output']>;
503
+ lastName?: Maybe<Scalars['String']['output']>;
504
+ profilePicture?: Maybe<Awss3File>;
505
+ screenName?: Maybe<Scalars['String']['output']>;
506
+ vtxScore?: Maybe<Scalars['Float']['output']>;
507
+ };
475
508
  export type AudienceFilterDto = {
476
509
  campaignStatus?: InputMaybe<Scalars['String']['input']>;
477
510
  country?: InputMaybe<Scalars['String']['input']>;
@@ -699,6 +732,22 @@ export type CloneDatabaseFileDto = {
699
732
  _id: Scalars['String']['input'];
700
733
  version?: InputMaybe<Scalars['String']['input']>;
701
734
  };
735
+ export type Club = {
736
+ _id: Scalars['String']['output'];
737
+ approved?: Maybe<Scalars['Boolean']['output']>;
738
+ banner?: Maybe<Awss3File>;
739
+ description?: Maybe<Scalars['String']['output']>;
740
+ feeStructure?: Maybe<Scalars['JSON']['output']>;
741
+ location?: Maybe<Scalars['String']['output']>;
742
+ logo?: Maybe<Awss3File>;
743
+ membershipType: Scalars['String']['output'];
744
+ name: Scalars['String']['output'];
745
+ sports?: Maybe<Array<Sport>>;
746
+ stripeAccountId?: Maybe<Scalars['String']['output']>;
747
+ teams?: Maybe<Array<Team>>;
748
+ visibility: Scalars['String']['output'];
749
+ website?: Maybe<Scalars['String']['output']>;
750
+ };
702
751
  export type CodeVerificationResponse = {
703
752
  code?: Maybe<VerificationCode>;
704
753
  error?: Maybe<ErrorInfo>;
@@ -875,6 +924,16 @@ export type CreateCityDto = {
875
924
  stateId: Scalars['String']['input'];
876
925
  timezone: Scalars['String']['input'];
877
926
  };
927
+ export type CreateClubInput = {
928
+ description?: InputMaybe<Scalars['String']['input']>;
929
+ feeStructure?: InputMaybe<Scalars['JSON']['input']>;
930
+ location?: InputMaybe<Scalars['String']['input']>;
931
+ membershipType?: InputMaybe<Scalars['String']['input']>;
932
+ name: Scalars['String']['input'];
933
+ sportIds: Array<Scalars['String']['input']>;
934
+ visibility?: InputMaybe<Scalars['String']['input']>;
935
+ website?: InputMaybe<Scalars['String']['input']>;
936
+ };
878
937
  export type CreateCompetitionBudgetDto = {
879
938
  athleteCompetitionId: Scalars['String']['input'];
880
939
  initialFunds?: InputMaybe<Scalars['Float']['input']>;
@@ -1025,6 +1084,15 @@ export type CreateStripeAccountDto = {
1025
1084
  acceptedTermsId: Scalars['String']['input'];
1026
1085
  countryId: Scalars['String']['input'];
1027
1086
  };
1087
+ export type CreateTeamInput = {
1088
+ clubId?: InputMaybe<Scalars['String']['input']>;
1089
+ description?: InputMaybe<Scalars['String']['input']>;
1090
+ joinPolicy?: InputMaybe<Scalars['String']['input']>;
1091
+ maxRosterSize?: InputMaybe<Scalars['Int']['input']>;
1092
+ name: Scalars['String']['input'];
1093
+ sportIds: Array<Scalars['String']['input']>;
1094
+ visibility?: InputMaybe<Scalars['String']['input']>;
1095
+ };
1028
1096
  export type CreateTenantInput = {
1029
1097
  domain: Scalars['String']['input'];
1030
1098
  email: Scalars['String']['input'];
@@ -1607,6 +1675,15 @@ export type IsFollowingAthleteInput = {
1607
1675
  export type IsFollowingResponse = {
1608
1676
  isFollowing: Scalars['Boolean']['output'];
1609
1677
  };
1678
+ export type JoinClubInput = {
1679
+ clubId: Scalars['String']['input'];
1680
+ message?: InputMaybe<Scalars['String']['input']>;
1681
+ };
1682
+ export type JoinTeamInput = {
1683
+ message?: InputMaybe<Scalars['String']['input']>;
1684
+ sportId: Scalars['String']['input'];
1685
+ teamId: Scalars['String']['input'];
1686
+ };
1610
1687
  export type LeaderboardEntry = {
1611
1688
  athleteId: Scalars['String']['output'];
1612
1689
  cityName?: Maybe<Scalars['String']['output']>;
@@ -1676,6 +1753,18 @@ export type MagicLink = {
1676
1753
  type: Scalars['String']['output'];
1677
1754
  url: Scalars['String']['output'];
1678
1755
  };
1756
+ export type ManageClubMemberInput = {
1757
+ action: Scalars['String']['input'];
1758
+ athleteId: Scalars['String']['input'];
1759
+ clubId: Scalars['String']['input'];
1760
+ role?: InputMaybe<Scalars['String']['input']>;
1761
+ };
1762
+ export type ManageTeamMemberInput = {
1763
+ action: Scalars['String']['input'];
1764
+ athleteId: Scalars['String']['input'];
1765
+ role?: InputMaybe<Scalars['String']['input']>;
1766
+ teamId: Scalars['String']['input'];
1767
+ };
1679
1768
  export type MarkNotificationReadDto = {
1680
1769
  notificationId: Scalars['String']['input'];
1681
1770
  };
@@ -1739,6 +1828,8 @@ export type Mutation = {
1739
1828
  activateOffer: Offer;
1740
1829
  addAthleteCompetition: AthleteCompetition;
1741
1830
  addCompetitionBudget: Scalars['Boolean']['output'];
1831
+ approveClub: Club;
1832
+ approveTeam: Team;
1742
1833
  cancelScheduledEmail: EmailCampaign;
1743
1834
  claimOffer: OfferClaim;
1744
1835
  cloneEmailCampaign: EmailCampaign;
@@ -1749,11 +1840,15 @@ export type Mutation = {
1749
1840
  createAthleteStripeSession: StripeSession;
1750
1841
  createBrand: Brand;
1751
1842
  createCity: City;
1843
+ createClub: Club;
1844
+ createClubDonationCheckout: Scalars['String']['output'];
1845
+ createClubStripeAccount: Scalars['String']['output'];
1752
1846
  createCountry: Country;
1753
1847
  createEmailCampaign: EmailCampaign;
1754
1848
  createEmailSegment: EmailSegment;
1755
1849
  createFundingCampaign: FundRaisingCampaign;
1756
1850
  createIndustry: Industry;
1851
+ createMembershipFeeCheckout?: Maybe<Scalars['String']['output']>;
1757
1852
  createMembershipOrganization: MembershipOrganizationReference;
1758
1853
  createOffer: Offer;
1759
1854
  createResetPasswordCode: EditValueResponse;
@@ -1767,6 +1862,9 @@ export type Mutation = {
1767
1862
  createStripeAccountLink: Scalars['String']['output'];
1768
1863
  createStripeCheckoutSession: StripeCheckoutSession;
1769
1864
  createStripeLoginLink: Scalars['String']['output'];
1865
+ createTeam: Team;
1866
+ createTeamDonationCheckout: Scalars['String']['output'];
1867
+ createTeamStripeAccount: Scalars['String']['output'];
1770
1868
  createUserAndLogin: UserWithToken;
1771
1869
  deactivateOffer: Offer;
1772
1870
  deleteAthleteAlbum: DeleteSingleValueResponse;
@@ -1798,10 +1896,18 @@ export type Mutation = {
1798
1896
  followAthlete: Scalars['Boolean']['output'];
1799
1897
  forceDeleteAthleteCompetition: DeleteSingleValueResponse;
1800
1898
  forceRefreshAthleteScores: ForceScoreRefreshResponse;
1899
+ inviteToClub: AthleteClub;
1900
+ inviteToTeam: AthleteTeam;
1901
+ joinClub: AthleteClub;
1902
+ joinTeam: AthleteTeam;
1903
+ leaveClub: AthleteClub;
1904
+ leaveTeam: AthleteTeam;
1801
1905
  linkBrandToSponsor: Brand;
1802
1906
  loginUserFromCredentials: UserWithToken;
1803
1907
  loginUserFromCredentialsVtx: UserWithToken;
1804
1908
  loginUserFromEmail: UserToken;
1909
+ manageClubMember: AthleteClub;
1910
+ manageTeamMember: AthleteTeam;
1805
1911
  markAiCoachNudgeRead: Scalars['Boolean']['output'];
1806
1912
  markAllNotificationsAsRead: Scalars['Int']['output'];
1807
1913
  markNotificationAsRead: Notification;
@@ -1841,6 +1947,7 @@ export type Mutation = {
1841
1947
  updateAthleteIntegration: Scalars['Boolean']['output'];
1842
1948
  updateAthleteScores: Athlete;
1843
1949
  updateBrand: Brand;
1950
+ updateClub: Club;
1844
1951
  updateEmailCampaign: EmailCampaign;
1845
1952
  updateEmailSegment: EmailSegment;
1846
1953
  updateFundingCampaign: FundRaisingCampaign;
@@ -1850,6 +1957,7 @@ export type Mutation = {
1850
1957
  updateSponsor: Sponsor;
1851
1958
  updateSport: Sport;
1852
1959
  updateSportsEvent: SportsEvent;
1960
+ updateTeam: Team;
1853
1961
  updateUserSuspendedStatus: EditValueResponse;
1854
1962
  uploadCouponCodes: UploadResult;
1855
1963
  validateToken: ValidatedToken;
@@ -1866,6 +1974,14 @@ export type MutationAddAthleteCompetitionArgs = {
1866
1974
  export type MutationAddCompetitionBudgetArgs = {
1867
1975
  input: AddCompetitionBudgetDto;
1868
1976
  };
1977
+ export type MutationApproveClubArgs = {
1978
+ approved: Scalars['Boolean']['input'];
1979
+ clubId: Scalars['String']['input'];
1980
+ };
1981
+ export type MutationApproveTeamArgs = {
1982
+ approved: Scalars['Boolean']['input'];
1983
+ teamId: Scalars['String']['input'];
1984
+ };
1869
1985
  export type MutationCancelScheduledEmailArgs = {
1870
1986
  campaignId: Scalars['String']['input'];
1871
1987
  };
@@ -1894,6 +2010,19 @@ export type MutationCreateBrandArgs = {
1894
2010
  export type MutationCreateCityArgs = {
1895
2011
  input: CreateCityDto;
1896
2012
  };
2013
+ export type MutationCreateClubArgs = {
2014
+ input: CreateClubInput;
2015
+ };
2016
+ export type MutationCreateClubDonationCheckoutArgs = {
2017
+ amount: Scalars['Float']['input'];
2018
+ clubId: Scalars['String']['input'];
2019
+ currency?: Scalars['String']['input'];
2020
+ donorEmail?: InputMaybe<Scalars['String']['input']>;
2021
+ donorName?: InputMaybe<Scalars['String']['input']>;
2022
+ };
2023
+ export type MutationCreateClubStripeAccountArgs = {
2024
+ clubId: Scalars['String']['input'];
2025
+ };
1897
2026
  export type MutationCreateCountryArgs = {
1898
2027
  input: CreateCountryDto;
1899
2028
  };
@@ -1909,6 +2038,9 @@ export type MutationCreateFundingCampaignArgs = {
1909
2038
  export type MutationCreateIndustryArgs = {
1910
2039
  input: CreateIndustryDto;
1911
2040
  };
2041
+ export type MutationCreateMembershipFeeCheckoutArgs = {
2042
+ clubId: Scalars['String']['input'];
2043
+ };
1912
2044
  export type MutationCreateMembershipOrganizationArgs = {
1913
2045
  input: CreateMembershipOrganizationDto;
1914
2046
  };
@@ -1942,6 +2074,19 @@ export type MutationCreateStripeAccountArgs = {
1942
2074
  export type MutationCreateStripeCheckoutSessionArgs = {
1943
2075
  input: DonationCheckoutDto;
1944
2076
  };
2077
+ export type MutationCreateTeamArgs = {
2078
+ input: CreateTeamInput;
2079
+ };
2080
+ export type MutationCreateTeamDonationCheckoutArgs = {
2081
+ amount: Scalars['Float']['input'];
2082
+ currency?: Scalars['String']['input'];
2083
+ donorEmail?: InputMaybe<Scalars['String']['input']>;
2084
+ donorName?: InputMaybe<Scalars['String']['input']>;
2085
+ teamId: Scalars['String']['input'];
2086
+ };
2087
+ export type MutationCreateTeamStripeAccountArgs = {
2088
+ teamId: Scalars['String']['input'];
2089
+ };
1945
2090
  export type MutationCreateUserAndLoginArgs = {
1946
2091
  user: CreateActiveUserInput;
1947
2092
  };
@@ -2029,6 +2174,27 @@ export type MutationForceDeleteAthleteCompetitionArgs = {
2029
2174
  export type MutationForceRefreshAthleteScoresArgs = {
2030
2175
  input: ForceScoreRefreshDto;
2031
2176
  };
2177
+ export type MutationInviteToClubArgs = {
2178
+ athleteId: Scalars['String']['input'];
2179
+ clubId: Scalars['String']['input'];
2180
+ };
2181
+ export type MutationInviteToTeamArgs = {
2182
+ athleteId: Scalars['String']['input'];
2183
+ sportId: Scalars['String']['input'];
2184
+ teamId: Scalars['String']['input'];
2185
+ };
2186
+ export type MutationJoinClubArgs = {
2187
+ input: JoinClubInput;
2188
+ };
2189
+ export type MutationJoinTeamArgs = {
2190
+ input: JoinTeamInput;
2191
+ };
2192
+ export type MutationLeaveClubArgs = {
2193
+ clubId: Scalars['String']['input'];
2194
+ };
2195
+ export type MutationLeaveTeamArgs = {
2196
+ teamId: Scalars['String']['input'];
2197
+ };
2032
2198
  export type MutationLinkBrandToSponsorArgs = {
2033
2199
  brandId: Scalars['String']['input'];
2034
2200
  sponsorId: Scalars['String']['input'];
@@ -2045,6 +2211,12 @@ export type MutationLoginUserFromEmailArgs = {
2045
2211
  email: Scalars['String']['input'];
2046
2212
  loginMethod: Scalars['String']['input'];
2047
2213
  };
2214
+ export type MutationManageClubMemberArgs = {
2215
+ input: ManageClubMemberInput;
2216
+ };
2217
+ export type MutationManageTeamMemberArgs = {
2218
+ input: ManageTeamMemberInput;
2219
+ };
2048
2220
  export type MutationMarkAiCoachNudgeReadArgs = {
2049
2221
  nudgeId: Scalars['String']['input'];
2050
2222
  };
@@ -2153,6 +2325,9 @@ export type MutationUpdateBrandArgs = {
2153
2325
  id: Scalars['String']['input'];
2154
2326
  input: CreateBrandDto;
2155
2327
  };
2328
+ export type MutationUpdateClubArgs = {
2329
+ input: UpdateClubInput;
2330
+ };
2156
2331
  export type MutationUpdateEmailCampaignArgs = {
2157
2332
  id: Scalars['String']['input'];
2158
2333
  input: UpdateEmailCampaignDto;
@@ -2184,6 +2359,9 @@ export type MutationUpdateSportArgs = {
2184
2359
  export type MutationUpdateSportsEventArgs = {
2185
2360
  input: UpdateSportEventDto;
2186
2361
  };
2362
+ export type MutationUpdateTeamArgs = {
2363
+ input: UpdateTeamInput;
2364
+ };
2187
2365
  export type MutationUpdateUserSuspendedStatusArgs = {
2188
2366
  input: UpdateUserSuspendedStatusDto;
2189
2367
  };
@@ -2521,15 +2699,21 @@ export type Query = {
2521
2699
  browseCampaigns: BrowseCampaignsResult;
2522
2700
  checkScoreRefreshCapabilities: CheckScoreRefreshCapabilityResponse;
2523
2701
  existsValidSponsorForEmail: Sponsor;
2702
+ findAllClubs: Array<Club>;
2703
+ findAllTeams: Array<Team>;
2524
2704
  findAthleteById: Athlete;
2525
2705
  findAthleteForUser: Athlete;
2526
2706
  findAthletebyIdpublic: Athlete;
2527
2707
  findCitiesStartingWith: Array<City>;
2528
2708
  findCityById: City;
2709
+ findClubById: Club;
2710
+ findClubs: Array<Club>;
2529
2711
  findIndustryById: Industry;
2530
2712
  findMemberForUser: Member;
2531
2713
  findSponsorAthleteInvitation: SponsorAthleteInvitation;
2532
2714
  findSportById: Sport;
2715
+ findTeamById: Team;
2716
+ findTeams: Array<Team>;
2533
2717
  findTenantByEmail: Tenant;
2534
2718
  findTenantById: Tenant;
2535
2719
  findUserByEmail: User;
@@ -2562,6 +2746,8 @@ export type Query = {
2562
2746
  getBudgetConcepts: Array<BudgetConcept>;
2563
2747
  getBudgetItemUnits: Array<BudgetItemUnit>;
2564
2748
  getBudgetsByAthlete: BudgetData;
2749
+ getClubMembers: Array<AthleteClub>;
2750
+ getClubStripeAccountStatus?: Maybe<StripeAccountStatus>;
2565
2751
  getCountries: Array<Country>;
2566
2752
  getCountryStates: Array<State>;
2567
2753
  getDatabaseTextFile: TextDatabaseFile;
@@ -2602,6 +2788,11 @@ export type Query = {
2602
2788
  getStates: Array<State>;
2603
2789
  getStravaLoginUrl: Scalars['String']['output'];
2604
2790
  getStripeBalance: StripeBalance;
2791
+ getTeamAnalytics: TeamAnalytics;
2792
+ getTeamDashboard: TeamDashboard;
2793
+ getTeamLeaderboard: Array<TeamLeaderboardEntry>;
2794
+ getTeamRoster: Array<AthleteTeam>;
2795
+ getTeamStripeAccountStatus?: Maybe<StripeAccountStatus>;
2605
2796
  getTenantSponsorships: Array<Sponsorship>;
2606
2797
  getTenants: Array<Tenant>;
2607
2798
  getTransactionDetails: TransactionDetails;
@@ -2685,6 +2876,12 @@ export type QueryFindCitiesStartingWithArgs = {
2685
2876
  export type QueryFindCityByIdArgs = {
2686
2877
  cityId: Scalars['String']['input'];
2687
2878
  };
2879
+ export type QueryFindClubByIdArgs = {
2880
+ clubId: Scalars['String']['input'];
2881
+ };
2882
+ export type QueryFindClubsArgs = {
2883
+ sportId?: InputMaybe<Scalars['String']['input']>;
2884
+ };
2688
2885
  export type QueryFindIndustryByIdArgs = {
2689
2886
  industryId: Scalars['String']['input'];
2690
2887
  };
@@ -2697,6 +2894,13 @@ export type QueryFindSponsorAthleteInvitationArgs = {
2697
2894
  export type QueryFindSportByIdArgs = {
2698
2895
  sportId: Scalars['String']['input'];
2699
2896
  };
2897
+ export type QueryFindTeamByIdArgs = {
2898
+ teamId: Scalars['String']['input'];
2899
+ };
2900
+ export type QueryFindTeamsArgs = {
2901
+ clubId?: InputMaybe<Scalars['String']['input']>;
2902
+ sportId?: InputMaybe<Scalars['String']['input']>;
2903
+ };
2700
2904
  export type QueryFindTenantByEmailArgs = {
2701
2905
  domainId: Scalars['String']['input'];
2702
2906
  email: Scalars['String']['input'];
@@ -2757,6 +2961,12 @@ export type QueryGetBrandTranslationArgs = {
2757
2961
  export type QueryGetBrandsPaginatedArgs = {
2758
2962
  query?: InputMaybe<BrandQueryDto>;
2759
2963
  };
2964
+ export type QueryGetClubMembersArgs = {
2965
+ clubId: Scalars['String']['input'];
2966
+ };
2967
+ export type QueryGetClubStripeAccountStatusArgs = {
2968
+ clubId: Scalars['String']['input'];
2969
+ };
2760
2970
  export type QueryGetCountryStatesArgs = {
2761
2971
  countryId: Scalars['String']['input'];
2762
2972
  };
@@ -2835,6 +3045,21 @@ export type QueryGetSportsPaginatedArgs = {
2835
3045
  export type QueryGetStateCitiesArgs = {
2836
3046
  stateId: Scalars['String']['input'];
2837
3047
  };
3048
+ export type QueryGetTeamAnalyticsArgs = {
3049
+ teamId: Scalars['String']['input'];
3050
+ };
3051
+ export type QueryGetTeamDashboardArgs = {
3052
+ teamId: Scalars['String']['input'];
3053
+ };
3054
+ export type QueryGetTeamLeaderboardArgs = {
3055
+ teamId: Scalars['String']['input'];
3056
+ };
3057
+ export type QueryGetTeamRosterArgs = {
3058
+ teamId: Scalars['String']['input'];
3059
+ };
3060
+ export type QueryGetTeamStripeAccountStatusArgs = {
3061
+ teamId: Scalars['String']['input'];
3062
+ };
2838
3063
  export type QueryGetTransactionDetailsArgs = {
2839
3064
  input: GetTransactionDetailsDto;
2840
3065
  };
@@ -3454,6 +3679,11 @@ export type StripeAccountReference = {
3454
3679
  account?: Maybe<StripeAccount>;
3455
3680
  stripeAccountId: Scalars['String']['output'];
3456
3681
  };
3682
+ export type StripeAccountStatus = {
3683
+ chargesEnabled: Scalars['Boolean']['output'];
3684
+ detailsSubmitted: Scalars['Boolean']['output'];
3685
+ payoutsEnabled: Scalars['Boolean']['output'];
3686
+ };
3457
3687
  export type StripeBalance = {
3458
3688
  availableBalances: Array<CurrencyAmountType>;
3459
3689
  availableUSD: Scalars['Float']['output'];
@@ -3603,11 +3833,58 @@ export type SubscriptionPayment = {
3603
3833
  export type Team = {
3604
3834
  _id: Scalars['String']['output'];
3605
3835
  approved?: Maybe<Scalars['Boolean']['output']>;
3836
+ athletes?: Maybe<Array<AthleteTeam>>;
3606
3837
  banner?: Maybe<Awss3File>;
3838
+ club?: Maybe<TeamClubReference>;
3607
3839
  description?: Maybe<Scalars['String']['output']>;
3840
+ joinPolicy?: Maybe<Scalars['String']['output']>;
3608
3841
  logo?: Maybe<Awss3File>;
3842
+ maxRosterSize?: Maybe<Scalars['Int']['output']>;
3609
3843
  name: Scalars['String']['output'];
3610
3844
  sports?: Maybe<Array<Sport>>;
3845
+ stripeAccountId?: Maybe<Scalars['String']['output']>;
3846
+ visibility?: Maybe<Scalars['String']['output']>;
3847
+ vtxScore?: Maybe<Scalars['Float']['output']>;
3848
+ };
3849
+ export type TeamAnalytics = {
3850
+ athleteCount: Scalars['Int']['output'];
3851
+ rosterSize?: Maybe<Scalars['Int']['output']>;
3852
+ teamId: Scalars['String']['output'];
3853
+ teamName: Scalars['String']['output'];
3854
+ topPerformers?: Maybe<Array<TeamLeaderboardEntry>>;
3855
+ vtxScore?: Maybe<Scalars['Float']['output']>;
3856
+ vtxScoreHistory?: Maybe<Array<TeamVtxScoreHistoryEntry>>;
3857
+ };
3858
+ export type TeamClubReference = {
3859
+ _id: Scalars['String']['output'];
3860
+ logo?: Maybe<Awss3File>;
3861
+ name: Scalars['String']['output'];
3862
+ };
3863
+ export type TeamDashboard = {
3864
+ analytics: TeamAnalytics;
3865
+ leaderboard: Array<TeamLeaderboardEntry>;
3866
+ roster: TeamRosterOverview;
3867
+ };
3868
+ export type TeamLeaderboardEntry = {
3869
+ apiScore?: Maybe<Scalars['Float']['output']>;
3870
+ athleteId: Scalars['String']['output'];
3871
+ athleteName: Scalars['String']['output'];
3872
+ athletePhoto?: Maybe<Scalars['String']['output']>;
3873
+ rank: Scalars['Int']['output'];
3874
+ spiScore?: Maybe<Scalars['Float']['output']>;
3875
+ sport?: Maybe<Scalars['String']['output']>;
3876
+ tpiScore?: Maybe<Scalars['Float']['output']>;
3877
+ vtxScore: Scalars['Float']['output'];
3878
+ };
3879
+ export type TeamRosterOverview = {
3880
+ recentDepartures: Scalars['Int']['output'];
3881
+ recentJoins: Scalars['Int']['output'];
3882
+ totalActive: Scalars['Int']['output'];
3883
+ totalInactive: Scalars['Int']['output'];
3884
+ };
3885
+ export type TeamVtxScoreHistoryEntry = {
3886
+ date: Scalars['DateTime']['output'];
3887
+ score: Scalars['Float']['output'];
3611
3888
  };
3612
3889
  export type Tenant = {
3613
3890
  _id: Scalars['String']['output'];
@@ -3686,6 +3963,16 @@ export type UpdateAiCoachConfigDto = {
3686
3963
  nudgesEnabled?: InputMaybe<Scalars['Boolean']['input']>;
3687
3964
  preferredFocus?: InputMaybe<Scalars['String']['input']>;
3688
3965
  };
3966
+ export type UpdateClubInput = {
3967
+ clubId: Scalars['String']['input'];
3968
+ description?: InputMaybe<Scalars['String']['input']>;
3969
+ feeStructure?: InputMaybe<Scalars['JSON']['input']>;
3970
+ location?: InputMaybe<Scalars['String']['input']>;
3971
+ membershipType?: InputMaybe<Scalars['String']['input']>;
3972
+ name?: InputMaybe<Scalars['String']['input']>;
3973
+ visibility?: InputMaybe<Scalars['String']['input']>;
3974
+ website?: InputMaybe<Scalars['String']['input']>;
3975
+ };
3689
3976
  export type UpdateDatabaseFileDto = {
3690
3977
  _id: Scalars['String']['input'];
3691
3978
  contentType?: InputMaybe<Scalars['String']['input']>;
@@ -3751,6 +4038,14 @@ export type UpdateSportEventDto = {
3751
4038
  startDate?: InputMaybe<Scalars['DateTime']['input']>;
3752
4039
  website?: InputMaybe<Scalars['String']['input']>;
3753
4040
  };
4041
+ export type UpdateTeamInput = {
4042
+ description?: InputMaybe<Scalars['String']['input']>;
4043
+ joinPolicy?: InputMaybe<Scalars['String']['input']>;
4044
+ maxRosterSize?: InputMaybe<Scalars['Int']['input']>;
4045
+ name?: InputMaybe<Scalars['String']['input']>;
4046
+ teamId: Scalars['String']['input'];
4047
+ visibility?: InputMaybe<Scalars['String']['input']>;
4048
+ };
3754
4049
  export type UpdateTextDatabaseFileDto = {
3755
4050
  _id: Scalars['String']['input'];
3756
4051
  content?: InputMaybe<Scalars['String']['input']>;
@@ -12718,6 +13013,1112 @@ export type CreateCityMutation = {
12718
13013
  timezone?: string | null;
12719
13014
  };
12720
13015
  };
13016
+ export type TeamFieldsFragment = {
13017
+ _id: string;
13018
+ name: string;
13019
+ description?: string | null;
13020
+ approved?: boolean | null;
13021
+ joinPolicy?: string | null;
13022
+ maxRosterSize?: number | null;
13023
+ visibility?: string | null;
13024
+ stripeAccountId?: string | null;
13025
+ vtxScore?: number | null;
13026
+ sports?: Array<{
13027
+ _id: string;
13028
+ name: string;
13029
+ }> | null;
13030
+ logo?: {
13031
+ _id: string;
13032
+ url: string;
13033
+ key: string;
13034
+ } | null;
13035
+ banner?: {
13036
+ _id: string;
13037
+ url: string;
13038
+ key: string;
13039
+ } | null;
13040
+ club?: {
13041
+ _id: string;
13042
+ name: string;
13043
+ logo?: {
13044
+ _id: string;
13045
+ url: string;
13046
+ key: string;
13047
+ } | null;
13048
+ } | null;
13049
+ athletes?: Array<{
13050
+ _id: string;
13051
+ role: string;
13052
+ status: string;
13053
+ joinedAt?: string | null;
13054
+ leftAt?: string | null;
13055
+ athlete?: {
13056
+ _id: string;
13057
+ firstName?: string | null;
13058
+ lastName?: string | null;
13059
+ screenName?: string | null;
13060
+ vtxScore?: number | null;
13061
+ } | null;
13062
+ sport?: {
13063
+ _id: string;
13064
+ name: string;
13065
+ } | null;
13066
+ }> | null;
13067
+ };
13068
+ export type ClubFieldsFragment = {
13069
+ _id: string;
13070
+ name: string;
13071
+ description?: string | null;
13072
+ location?: string | null;
13073
+ website?: string | null;
13074
+ membershipType: string;
13075
+ feeStructure?: any | null;
13076
+ approved?: boolean | null;
13077
+ visibility: string;
13078
+ stripeAccountId?: string | null;
13079
+ sports?: Array<{
13080
+ _id: string;
13081
+ name: string;
13082
+ }> | null;
13083
+ logo?: {
13084
+ _id: string;
13085
+ url: string;
13086
+ key: string;
13087
+ } | null;
13088
+ banner?: {
13089
+ _id: string;
13090
+ url: string;
13091
+ key: string;
13092
+ } | null;
13093
+ teams?: Array<{
13094
+ _id: string;
13095
+ name: string;
13096
+ vtxScore?: number | null;
13097
+ sports?: Array<{
13098
+ _id: string;
13099
+ name: string;
13100
+ }> | null;
13101
+ logo?: {
13102
+ _id: string;
13103
+ url: string;
13104
+ key: string;
13105
+ } | null;
13106
+ }> | null;
13107
+ };
13108
+ export type AthleteTeamFieldsFragment = {
13109
+ _id: string;
13110
+ role: string;
13111
+ status: string;
13112
+ joinedAt?: string | null;
13113
+ leftAt?: string | null;
13114
+ athlete?: {
13115
+ _id: string;
13116
+ firstName?: string | null;
13117
+ lastName?: string | null;
13118
+ screenName?: string | null;
13119
+ vtxScore?: number | null;
13120
+ profilePicture?: {
13121
+ _id: string;
13122
+ url: string;
13123
+ key: string;
13124
+ } | null;
13125
+ } | null;
13126
+ sport?: {
13127
+ _id: string;
13128
+ name: string;
13129
+ } | null;
13130
+ };
13131
+ export type AthleteClubFieldsFragment = {
13132
+ _id: string;
13133
+ role: string;
13134
+ status: string;
13135
+ joinedAt?: string | null;
13136
+ leftAt?: string | null;
13137
+ athlete?: {
13138
+ _id: string;
13139
+ firstName?: string | null;
13140
+ lastName?: string | null;
13141
+ screenName?: string | null;
13142
+ profilePicture?: {
13143
+ _id: string;
13144
+ url: string;
13145
+ key: string;
13146
+ } | null;
13147
+ } | null;
13148
+ club?: {
13149
+ _id: string;
13150
+ name: string;
13151
+ } | null;
13152
+ };
13153
+ export type TeamAnalyticsFieldsFragment = {
13154
+ teamId: string;
13155
+ teamName: string;
13156
+ vtxScore?: number | null;
13157
+ athleteCount: number;
13158
+ rosterSize?: number | null;
13159
+ vtxScoreHistory?: Array<{
13160
+ date: string;
13161
+ score: number;
13162
+ }> | null;
13163
+ topPerformers?: Array<{
13164
+ athleteId: string;
13165
+ athleteName: string;
13166
+ athletePhoto?: string | null;
13167
+ sport?: string | null;
13168
+ vtxScore: number;
13169
+ rank: number;
13170
+ tpiScore?: number | null;
13171
+ spiScore?: number | null;
13172
+ apiScore?: number | null;
13173
+ }> | null;
13174
+ };
13175
+ export type TeamLeaderboardEntryFieldsFragment = {
13176
+ athleteId: string;
13177
+ athleteName: string;
13178
+ athletePhoto?: string | null;
13179
+ sport?: string | null;
13180
+ vtxScore: number;
13181
+ rank: number;
13182
+ tpiScore?: number | null;
13183
+ spiScore?: number | null;
13184
+ apiScore?: number | null;
13185
+ };
13186
+ export type FindTeamByIdQueryVariables = Exact<{
13187
+ teamId: Scalars['String']['input'];
13188
+ }>;
13189
+ export type FindTeamByIdQuery = {
13190
+ findTeamById: {
13191
+ _id: string;
13192
+ name: string;
13193
+ description?: string | null;
13194
+ approved?: boolean | null;
13195
+ joinPolicy?: string | null;
13196
+ maxRosterSize?: number | null;
13197
+ visibility?: string | null;
13198
+ stripeAccountId?: string | null;
13199
+ vtxScore?: number | null;
13200
+ sports?: Array<{
13201
+ _id: string;
13202
+ name: string;
13203
+ }> | null;
13204
+ logo?: {
13205
+ _id: string;
13206
+ url: string;
13207
+ key: string;
13208
+ } | null;
13209
+ banner?: {
13210
+ _id: string;
13211
+ url: string;
13212
+ key: string;
13213
+ } | null;
13214
+ club?: {
13215
+ _id: string;
13216
+ name: string;
13217
+ logo?: {
13218
+ _id: string;
13219
+ url: string;
13220
+ key: string;
13221
+ } | null;
13222
+ } | null;
13223
+ athletes?: Array<{
13224
+ _id: string;
13225
+ role: string;
13226
+ status: string;
13227
+ joinedAt?: string | null;
13228
+ leftAt?: string | null;
13229
+ athlete?: {
13230
+ _id: string;
13231
+ firstName?: string | null;
13232
+ lastName?: string | null;
13233
+ screenName?: string | null;
13234
+ vtxScore?: number | null;
13235
+ } | null;
13236
+ sport?: {
13237
+ _id: string;
13238
+ name: string;
13239
+ } | null;
13240
+ }> | null;
13241
+ };
13242
+ };
13243
+ export type FindTeamsQueryVariables = Exact<{
13244
+ sportId?: InputMaybe<Scalars['String']['input']>;
13245
+ clubId?: InputMaybe<Scalars['String']['input']>;
13246
+ }>;
13247
+ export type FindTeamsQuery = {
13248
+ findTeams: Array<{
13249
+ _id: string;
13250
+ name: string;
13251
+ description?: string | null;
13252
+ approved?: boolean | null;
13253
+ joinPolicy?: string | null;
13254
+ maxRosterSize?: number | null;
13255
+ visibility?: string | null;
13256
+ stripeAccountId?: string | null;
13257
+ vtxScore?: number | null;
13258
+ sports?: Array<{
13259
+ _id: string;
13260
+ name: string;
13261
+ }> | null;
13262
+ logo?: {
13263
+ _id: string;
13264
+ url: string;
13265
+ key: string;
13266
+ } | null;
13267
+ banner?: {
13268
+ _id: string;
13269
+ url: string;
13270
+ key: string;
13271
+ } | null;
13272
+ club?: {
13273
+ _id: string;
13274
+ name: string;
13275
+ logo?: {
13276
+ _id: string;
13277
+ url: string;
13278
+ key: string;
13279
+ } | null;
13280
+ } | null;
13281
+ athletes?: Array<{
13282
+ _id: string;
13283
+ role: string;
13284
+ status: string;
13285
+ joinedAt?: string | null;
13286
+ leftAt?: string | null;
13287
+ athlete?: {
13288
+ _id: string;
13289
+ firstName?: string | null;
13290
+ lastName?: string | null;
13291
+ screenName?: string | null;
13292
+ vtxScore?: number | null;
13293
+ } | null;
13294
+ sport?: {
13295
+ _id: string;
13296
+ name: string;
13297
+ } | null;
13298
+ }> | null;
13299
+ }>;
13300
+ };
13301
+ export type FindAllTeamsQueryVariables = Exact<{
13302
+ [key: string]: never;
13303
+ }>;
13304
+ export type FindAllTeamsQuery = {
13305
+ findAllTeams: Array<{
13306
+ _id: string;
13307
+ name: string;
13308
+ description?: string | null;
13309
+ approved?: boolean | null;
13310
+ joinPolicy?: string | null;
13311
+ maxRosterSize?: number | null;
13312
+ visibility?: string | null;
13313
+ stripeAccountId?: string | null;
13314
+ vtxScore?: number | null;
13315
+ sports?: Array<{
13316
+ _id: string;
13317
+ name: string;
13318
+ }> | null;
13319
+ logo?: {
13320
+ _id: string;
13321
+ url: string;
13322
+ key: string;
13323
+ } | null;
13324
+ banner?: {
13325
+ _id: string;
13326
+ url: string;
13327
+ key: string;
13328
+ } | null;
13329
+ club?: {
13330
+ _id: string;
13331
+ name: string;
13332
+ logo?: {
13333
+ _id: string;
13334
+ url: string;
13335
+ key: string;
13336
+ } | null;
13337
+ } | null;
13338
+ athletes?: Array<{
13339
+ _id: string;
13340
+ role: string;
13341
+ status: string;
13342
+ joinedAt?: string | null;
13343
+ leftAt?: string | null;
13344
+ athlete?: {
13345
+ _id: string;
13346
+ firstName?: string | null;
13347
+ lastName?: string | null;
13348
+ screenName?: string | null;
13349
+ vtxScore?: number | null;
13350
+ } | null;
13351
+ sport?: {
13352
+ _id: string;
13353
+ name: string;
13354
+ } | null;
13355
+ }> | null;
13356
+ }>;
13357
+ };
13358
+ export type GetTeamRosterQueryVariables = Exact<{
13359
+ teamId: Scalars['String']['input'];
13360
+ }>;
13361
+ export type GetTeamRosterQuery = {
13362
+ getTeamRoster: Array<{
13363
+ _id: string;
13364
+ role: string;
13365
+ status: string;
13366
+ joinedAt?: string | null;
13367
+ leftAt?: string | null;
13368
+ athlete?: {
13369
+ _id: string;
13370
+ firstName?: string | null;
13371
+ lastName?: string | null;
13372
+ screenName?: string | null;
13373
+ vtxScore?: number | null;
13374
+ profilePicture?: {
13375
+ _id: string;
13376
+ url: string;
13377
+ key: string;
13378
+ } | null;
13379
+ } | null;
13380
+ sport?: {
13381
+ _id: string;
13382
+ name: string;
13383
+ } | null;
13384
+ }>;
13385
+ };
13386
+ export type GetTeamAnalyticsQueryVariables = Exact<{
13387
+ teamId: Scalars['String']['input'];
13388
+ }>;
13389
+ export type GetTeamAnalyticsQuery = {
13390
+ getTeamAnalytics: {
13391
+ teamId: string;
13392
+ teamName: string;
13393
+ vtxScore?: number | null;
13394
+ athleteCount: number;
13395
+ rosterSize?: number | null;
13396
+ vtxScoreHistory?: Array<{
13397
+ date: string;
13398
+ score: number;
13399
+ }> | null;
13400
+ topPerformers?: Array<{
13401
+ athleteId: string;
13402
+ athleteName: string;
13403
+ athletePhoto?: string | null;
13404
+ sport?: string | null;
13405
+ vtxScore: number;
13406
+ rank: number;
13407
+ tpiScore?: number | null;
13408
+ spiScore?: number | null;
13409
+ apiScore?: number | null;
13410
+ }> | null;
13411
+ };
13412
+ };
13413
+ export type GetTeamLeaderboardQueryVariables = Exact<{
13414
+ teamId: Scalars['String']['input'];
13415
+ }>;
13416
+ export type GetTeamLeaderboardQuery = {
13417
+ getTeamLeaderboard: Array<{
13418
+ athleteId: string;
13419
+ athleteName: string;
13420
+ athletePhoto?: string | null;
13421
+ sport?: string | null;
13422
+ vtxScore: number;
13423
+ rank: number;
13424
+ tpiScore?: number | null;
13425
+ spiScore?: number | null;
13426
+ apiScore?: number | null;
13427
+ }>;
13428
+ };
13429
+ export type GetTeamDashboardQueryVariables = Exact<{
13430
+ teamId: Scalars['String']['input'];
13431
+ }>;
13432
+ export type GetTeamDashboardQuery = {
13433
+ getTeamDashboard: {
13434
+ analytics: {
13435
+ teamId: string;
13436
+ teamName: string;
13437
+ vtxScore?: number | null;
13438
+ athleteCount: number;
13439
+ rosterSize?: number | null;
13440
+ vtxScoreHistory?: Array<{
13441
+ date: string;
13442
+ score: number;
13443
+ }> | null;
13444
+ topPerformers?: Array<{
13445
+ athleteId: string;
13446
+ athleteName: string;
13447
+ athletePhoto?: string | null;
13448
+ sport?: string | null;
13449
+ vtxScore: number;
13450
+ rank: number;
13451
+ tpiScore?: number | null;
13452
+ spiScore?: number | null;
13453
+ apiScore?: number | null;
13454
+ }> | null;
13455
+ };
13456
+ roster: {
13457
+ totalActive: number;
13458
+ totalInactive: number;
13459
+ recentJoins: number;
13460
+ recentDepartures: number;
13461
+ };
13462
+ leaderboard: Array<{
13463
+ athleteId: string;
13464
+ athleteName: string;
13465
+ athletePhoto?: string | null;
13466
+ sport?: string | null;
13467
+ vtxScore: number;
13468
+ rank: number;
13469
+ tpiScore?: number | null;
13470
+ spiScore?: number | null;
13471
+ apiScore?: number | null;
13472
+ }>;
13473
+ };
13474
+ };
13475
+ export type GetTeamStripeAccountStatusQueryVariables = Exact<{
13476
+ teamId: Scalars['String']['input'];
13477
+ }>;
13478
+ export type GetTeamStripeAccountStatusQuery = {
13479
+ getTeamStripeAccountStatus?: {
13480
+ chargesEnabled: boolean;
13481
+ payoutsEnabled: boolean;
13482
+ detailsSubmitted: boolean;
13483
+ } | null;
13484
+ };
13485
+ export type CreateTeamMutationVariables = Exact<{
13486
+ input: CreateTeamInput;
13487
+ }>;
13488
+ export type CreateTeamMutation = {
13489
+ createTeam: {
13490
+ _id: string;
13491
+ name: string;
13492
+ description?: string | null;
13493
+ approved?: boolean | null;
13494
+ joinPolicy?: string | null;
13495
+ maxRosterSize?: number | null;
13496
+ visibility?: string | null;
13497
+ stripeAccountId?: string | null;
13498
+ vtxScore?: number | null;
13499
+ sports?: Array<{
13500
+ _id: string;
13501
+ name: string;
13502
+ }> | null;
13503
+ logo?: {
13504
+ _id: string;
13505
+ url: string;
13506
+ key: string;
13507
+ } | null;
13508
+ banner?: {
13509
+ _id: string;
13510
+ url: string;
13511
+ key: string;
13512
+ } | null;
13513
+ club?: {
13514
+ _id: string;
13515
+ name: string;
13516
+ logo?: {
13517
+ _id: string;
13518
+ url: string;
13519
+ key: string;
13520
+ } | null;
13521
+ } | null;
13522
+ athletes?: Array<{
13523
+ _id: string;
13524
+ role: string;
13525
+ status: string;
13526
+ joinedAt?: string | null;
13527
+ leftAt?: string | null;
13528
+ athlete?: {
13529
+ _id: string;
13530
+ firstName?: string | null;
13531
+ lastName?: string | null;
13532
+ screenName?: string | null;
13533
+ vtxScore?: number | null;
13534
+ } | null;
13535
+ sport?: {
13536
+ _id: string;
13537
+ name: string;
13538
+ } | null;
13539
+ }> | null;
13540
+ };
13541
+ };
13542
+ export type UpdateTeamMutationVariables = Exact<{
13543
+ input: UpdateTeamInput;
13544
+ }>;
13545
+ export type UpdateTeamMutation = {
13546
+ updateTeam: {
13547
+ _id: string;
13548
+ name: string;
13549
+ description?: string | null;
13550
+ approved?: boolean | null;
13551
+ joinPolicy?: string | null;
13552
+ maxRosterSize?: number | null;
13553
+ visibility?: string | null;
13554
+ stripeAccountId?: string | null;
13555
+ vtxScore?: number | null;
13556
+ sports?: Array<{
13557
+ _id: string;
13558
+ name: string;
13559
+ }> | null;
13560
+ logo?: {
13561
+ _id: string;
13562
+ url: string;
13563
+ key: string;
13564
+ } | null;
13565
+ banner?: {
13566
+ _id: string;
13567
+ url: string;
13568
+ key: string;
13569
+ } | null;
13570
+ club?: {
13571
+ _id: string;
13572
+ name: string;
13573
+ logo?: {
13574
+ _id: string;
13575
+ url: string;
13576
+ key: string;
13577
+ } | null;
13578
+ } | null;
13579
+ athletes?: Array<{
13580
+ _id: string;
13581
+ role: string;
13582
+ status: string;
13583
+ joinedAt?: string | null;
13584
+ leftAt?: string | null;
13585
+ athlete?: {
13586
+ _id: string;
13587
+ firstName?: string | null;
13588
+ lastName?: string | null;
13589
+ screenName?: string | null;
13590
+ vtxScore?: number | null;
13591
+ } | null;
13592
+ sport?: {
13593
+ _id: string;
13594
+ name: string;
13595
+ } | null;
13596
+ }> | null;
13597
+ };
13598
+ };
13599
+ export type JoinTeamMutationVariables = Exact<{
13600
+ input: JoinTeamInput;
13601
+ }>;
13602
+ export type JoinTeamMutation = {
13603
+ joinTeam: {
13604
+ _id: string;
13605
+ role: string;
13606
+ status: string;
13607
+ joinedAt?: string | null;
13608
+ leftAt?: string | null;
13609
+ athlete?: {
13610
+ _id: string;
13611
+ firstName?: string | null;
13612
+ lastName?: string | null;
13613
+ screenName?: string | null;
13614
+ vtxScore?: number | null;
13615
+ profilePicture?: {
13616
+ _id: string;
13617
+ url: string;
13618
+ key: string;
13619
+ } | null;
13620
+ } | null;
13621
+ sport?: {
13622
+ _id: string;
13623
+ name: string;
13624
+ } | null;
13625
+ };
13626
+ };
13627
+ export type LeaveTeamMutationVariables = Exact<{
13628
+ teamId: Scalars['String']['input'];
13629
+ }>;
13630
+ export type LeaveTeamMutation = {
13631
+ leaveTeam: {
13632
+ _id: string;
13633
+ role: string;
13634
+ status: string;
13635
+ joinedAt?: string | null;
13636
+ leftAt?: string | null;
13637
+ athlete?: {
13638
+ _id: string;
13639
+ firstName?: string | null;
13640
+ lastName?: string | null;
13641
+ screenName?: string | null;
13642
+ vtxScore?: number | null;
13643
+ profilePicture?: {
13644
+ _id: string;
13645
+ url: string;
13646
+ key: string;
13647
+ } | null;
13648
+ } | null;
13649
+ sport?: {
13650
+ _id: string;
13651
+ name: string;
13652
+ } | null;
13653
+ };
13654
+ };
13655
+ export type InviteToTeamMutationVariables = Exact<{
13656
+ teamId: Scalars['String']['input'];
13657
+ athleteId: Scalars['String']['input'];
13658
+ sportId: Scalars['String']['input'];
13659
+ }>;
13660
+ export type InviteToTeamMutation = {
13661
+ inviteToTeam: {
13662
+ _id: string;
13663
+ role: string;
13664
+ status: string;
13665
+ joinedAt?: string | null;
13666
+ leftAt?: string | null;
13667
+ athlete?: {
13668
+ _id: string;
13669
+ firstName?: string | null;
13670
+ lastName?: string | null;
13671
+ screenName?: string | null;
13672
+ vtxScore?: number | null;
13673
+ profilePicture?: {
13674
+ _id: string;
13675
+ url: string;
13676
+ key: string;
13677
+ } | null;
13678
+ } | null;
13679
+ sport?: {
13680
+ _id: string;
13681
+ name: string;
13682
+ } | null;
13683
+ };
13684
+ };
13685
+ export type ManageTeamMemberMutationVariables = Exact<{
13686
+ input: ManageTeamMemberInput;
13687
+ }>;
13688
+ export type ManageTeamMemberMutation = {
13689
+ manageTeamMember: {
13690
+ _id: string;
13691
+ role: string;
13692
+ status: string;
13693
+ joinedAt?: string | null;
13694
+ leftAt?: string | null;
13695
+ athlete?: {
13696
+ _id: string;
13697
+ firstName?: string | null;
13698
+ lastName?: string | null;
13699
+ screenName?: string | null;
13700
+ vtxScore?: number | null;
13701
+ profilePicture?: {
13702
+ _id: string;
13703
+ url: string;
13704
+ key: string;
13705
+ } | null;
13706
+ } | null;
13707
+ sport?: {
13708
+ _id: string;
13709
+ name: string;
13710
+ } | null;
13711
+ };
13712
+ };
13713
+ export type CreateTeamStripeAccountMutationVariables = Exact<{
13714
+ teamId: Scalars['String']['input'];
13715
+ }>;
13716
+ export type CreateTeamStripeAccountMutation = {
13717
+ createTeamStripeAccount: string;
13718
+ };
13719
+ export type CreateTeamDonationCheckoutMutationVariables = Exact<{
13720
+ teamId: Scalars['String']['input'];
13721
+ amount: Scalars['Float']['input'];
13722
+ currency?: Scalars['String']['input'];
13723
+ donorEmail?: InputMaybe<Scalars['String']['input']>;
13724
+ donorName?: InputMaybe<Scalars['String']['input']>;
13725
+ }>;
13726
+ export type CreateTeamDonationCheckoutMutation = {
13727
+ createTeamDonationCheckout: string;
13728
+ };
13729
+ export type FindClubByIdQueryVariables = Exact<{
13730
+ clubId: Scalars['String']['input'];
13731
+ }>;
13732
+ export type FindClubByIdQuery = {
13733
+ findClubById: {
13734
+ _id: string;
13735
+ name: string;
13736
+ description?: string | null;
13737
+ location?: string | null;
13738
+ website?: string | null;
13739
+ membershipType: string;
13740
+ feeStructure?: any | null;
13741
+ approved?: boolean | null;
13742
+ visibility: string;
13743
+ stripeAccountId?: string | null;
13744
+ sports?: Array<{
13745
+ _id: string;
13746
+ name: string;
13747
+ }> | null;
13748
+ logo?: {
13749
+ _id: string;
13750
+ url: string;
13751
+ key: string;
13752
+ } | null;
13753
+ banner?: {
13754
+ _id: string;
13755
+ url: string;
13756
+ key: string;
13757
+ } | null;
13758
+ teams?: Array<{
13759
+ _id: string;
13760
+ name: string;
13761
+ vtxScore?: number | null;
13762
+ sports?: Array<{
13763
+ _id: string;
13764
+ name: string;
13765
+ }> | null;
13766
+ logo?: {
13767
+ _id: string;
13768
+ url: string;
13769
+ key: string;
13770
+ } | null;
13771
+ }> | null;
13772
+ };
13773
+ };
13774
+ export type FindClubsQueryVariables = Exact<{
13775
+ sportId?: InputMaybe<Scalars['String']['input']>;
13776
+ }>;
13777
+ export type FindClubsQuery = {
13778
+ findClubs: Array<{
13779
+ _id: string;
13780
+ name: string;
13781
+ description?: string | null;
13782
+ location?: string | null;
13783
+ website?: string | null;
13784
+ membershipType: string;
13785
+ feeStructure?: any | null;
13786
+ approved?: boolean | null;
13787
+ visibility: string;
13788
+ stripeAccountId?: string | null;
13789
+ sports?: Array<{
13790
+ _id: string;
13791
+ name: string;
13792
+ }> | null;
13793
+ logo?: {
13794
+ _id: string;
13795
+ url: string;
13796
+ key: string;
13797
+ } | null;
13798
+ banner?: {
13799
+ _id: string;
13800
+ url: string;
13801
+ key: string;
13802
+ } | null;
13803
+ teams?: Array<{
13804
+ _id: string;
13805
+ name: string;
13806
+ vtxScore?: number | null;
13807
+ sports?: Array<{
13808
+ _id: string;
13809
+ name: string;
13810
+ }> | null;
13811
+ logo?: {
13812
+ _id: string;
13813
+ url: string;
13814
+ key: string;
13815
+ } | null;
13816
+ }> | null;
13817
+ }>;
13818
+ };
13819
+ export type FindAllClubsQueryVariables = Exact<{
13820
+ [key: string]: never;
13821
+ }>;
13822
+ export type FindAllClubsQuery = {
13823
+ findAllClubs: Array<{
13824
+ _id: string;
13825
+ name: string;
13826
+ description?: string | null;
13827
+ location?: string | null;
13828
+ website?: string | null;
13829
+ membershipType: string;
13830
+ feeStructure?: any | null;
13831
+ approved?: boolean | null;
13832
+ visibility: string;
13833
+ stripeAccountId?: string | null;
13834
+ sports?: Array<{
13835
+ _id: string;
13836
+ name: string;
13837
+ }> | null;
13838
+ logo?: {
13839
+ _id: string;
13840
+ url: string;
13841
+ key: string;
13842
+ } | null;
13843
+ banner?: {
13844
+ _id: string;
13845
+ url: string;
13846
+ key: string;
13847
+ } | null;
13848
+ teams?: Array<{
13849
+ _id: string;
13850
+ name: string;
13851
+ vtxScore?: number | null;
13852
+ sports?: Array<{
13853
+ _id: string;
13854
+ name: string;
13855
+ }> | null;
13856
+ logo?: {
13857
+ _id: string;
13858
+ url: string;
13859
+ key: string;
13860
+ } | null;
13861
+ }> | null;
13862
+ }>;
13863
+ };
13864
+ export type GetClubMembersQueryVariables = Exact<{
13865
+ clubId: Scalars['String']['input'];
13866
+ }>;
13867
+ export type GetClubMembersQuery = {
13868
+ getClubMembers: Array<{
13869
+ _id: string;
13870
+ role: string;
13871
+ status: string;
13872
+ joinedAt?: string | null;
13873
+ leftAt?: string | null;
13874
+ athlete?: {
13875
+ _id: string;
13876
+ firstName?: string | null;
13877
+ lastName?: string | null;
13878
+ screenName?: string | null;
13879
+ profilePicture?: {
13880
+ _id: string;
13881
+ url: string;
13882
+ key: string;
13883
+ } | null;
13884
+ } | null;
13885
+ club?: {
13886
+ _id: string;
13887
+ name: string;
13888
+ } | null;
13889
+ }>;
13890
+ };
13891
+ export type GetClubStripeAccountStatusQueryVariables = Exact<{
13892
+ clubId: Scalars['String']['input'];
13893
+ }>;
13894
+ export type GetClubStripeAccountStatusQuery = {
13895
+ getClubStripeAccountStatus?: {
13896
+ chargesEnabled: boolean;
13897
+ payoutsEnabled: boolean;
13898
+ detailsSubmitted: boolean;
13899
+ } | null;
13900
+ };
13901
+ export type CreateClubMutationVariables = Exact<{
13902
+ input: CreateClubInput;
13903
+ }>;
13904
+ export type CreateClubMutation = {
13905
+ createClub: {
13906
+ _id: string;
13907
+ name: string;
13908
+ description?: string | null;
13909
+ location?: string | null;
13910
+ website?: string | null;
13911
+ membershipType: string;
13912
+ feeStructure?: any | null;
13913
+ approved?: boolean | null;
13914
+ visibility: string;
13915
+ stripeAccountId?: string | null;
13916
+ sports?: Array<{
13917
+ _id: string;
13918
+ name: string;
13919
+ }> | null;
13920
+ logo?: {
13921
+ _id: string;
13922
+ url: string;
13923
+ key: string;
13924
+ } | null;
13925
+ banner?: {
13926
+ _id: string;
13927
+ url: string;
13928
+ key: string;
13929
+ } | null;
13930
+ teams?: Array<{
13931
+ _id: string;
13932
+ name: string;
13933
+ vtxScore?: number | null;
13934
+ sports?: Array<{
13935
+ _id: string;
13936
+ name: string;
13937
+ }> | null;
13938
+ logo?: {
13939
+ _id: string;
13940
+ url: string;
13941
+ key: string;
13942
+ } | null;
13943
+ }> | null;
13944
+ };
13945
+ };
13946
+ export type UpdateClubMutationVariables = Exact<{
13947
+ input: UpdateClubInput;
13948
+ }>;
13949
+ export type UpdateClubMutation = {
13950
+ updateClub: {
13951
+ _id: string;
13952
+ name: string;
13953
+ description?: string | null;
13954
+ location?: string | null;
13955
+ website?: string | null;
13956
+ membershipType: string;
13957
+ feeStructure?: any | null;
13958
+ approved?: boolean | null;
13959
+ visibility: string;
13960
+ stripeAccountId?: string | null;
13961
+ sports?: Array<{
13962
+ _id: string;
13963
+ name: string;
13964
+ }> | null;
13965
+ logo?: {
13966
+ _id: string;
13967
+ url: string;
13968
+ key: string;
13969
+ } | null;
13970
+ banner?: {
13971
+ _id: string;
13972
+ url: string;
13973
+ key: string;
13974
+ } | null;
13975
+ teams?: Array<{
13976
+ _id: string;
13977
+ name: string;
13978
+ vtxScore?: number | null;
13979
+ sports?: Array<{
13980
+ _id: string;
13981
+ name: string;
13982
+ }> | null;
13983
+ logo?: {
13984
+ _id: string;
13985
+ url: string;
13986
+ key: string;
13987
+ } | null;
13988
+ }> | null;
13989
+ };
13990
+ };
13991
+ export type JoinClubMutationVariables = Exact<{
13992
+ input: JoinClubInput;
13993
+ }>;
13994
+ export type JoinClubMutation = {
13995
+ joinClub: {
13996
+ _id: string;
13997
+ role: string;
13998
+ status: string;
13999
+ joinedAt?: string | null;
14000
+ leftAt?: string | null;
14001
+ athlete?: {
14002
+ _id: string;
14003
+ firstName?: string | null;
14004
+ lastName?: string | null;
14005
+ screenName?: string | null;
14006
+ profilePicture?: {
14007
+ _id: string;
14008
+ url: string;
14009
+ key: string;
14010
+ } | null;
14011
+ } | null;
14012
+ club?: {
14013
+ _id: string;
14014
+ name: string;
14015
+ } | null;
14016
+ };
14017
+ };
14018
+ export type LeaveClubMutationVariables = Exact<{
14019
+ clubId: Scalars['String']['input'];
14020
+ }>;
14021
+ export type LeaveClubMutation = {
14022
+ leaveClub: {
14023
+ _id: string;
14024
+ role: string;
14025
+ status: string;
14026
+ joinedAt?: string | null;
14027
+ leftAt?: string | null;
14028
+ athlete?: {
14029
+ _id: string;
14030
+ firstName?: string | null;
14031
+ lastName?: string | null;
14032
+ screenName?: string | null;
14033
+ profilePicture?: {
14034
+ _id: string;
14035
+ url: string;
14036
+ key: string;
14037
+ } | null;
14038
+ } | null;
14039
+ club?: {
14040
+ _id: string;
14041
+ name: string;
14042
+ } | null;
14043
+ };
14044
+ };
14045
+ export type InviteToClubMutationVariables = Exact<{
14046
+ clubId: Scalars['String']['input'];
14047
+ athleteId: Scalars['String']['input'];
14048
+ }>;
14049
+ export type InviteToClubMutation = {
14050
+ inviteToClub: {
14051
+ _id: string;
14052
+ role: string;
14053
+ status: string;
14054
+ joinedAt?: string | null;
14055
+ leftAt?: string | null;
14056
+ athlete?: {
14057
+ _id: string;
14058
+ firstName?: string | null;
14059
+ lastName?: string | null;
14060
+ screenName?: string | null;
14061
+ profilePicture?: {
14062
+ _id: string;
14063
+ url: string;
14064
+ key: string;
14065
+ } | null;
14066
+ } | null;
14067
+ club?: {
14068
+ _id: string;
14069
+ name: string;
14070
+ } | null;
14071
+ };
14072
+ };
14073
+ export type ManageClubMemberMutationVariables = Exact<{
14074
+ input: ManageClubMemberInput;
14075
+ }>;
14076
+ export type ManageClubMemberMutation = {
14077
+ manageClubMember: {
14078
+ _id: string;
14079
+ role: string;
14080
+ status: string;
14081
+ joinedAt?: string | null;
14082
+ leftAt?: string | null;
14083
+ athlete?: {
14084
+ _id: string;
14085
+ firstName?: string | null;
14086
+ lastName?: string | null;
14087
+ screenName?: string | null;
14088
+ profilePicture?: {
14089
+ _id: string;
14090
+ url: string;
14091
+ key: string;
14092
+ } | null;
14093
+ } | null;
14094
+ club?: {
14095
+ _id: string;
14096
+ name: string;
14097
+ } | null;
14098
+ };
14099
+ };
14100
+ export type CreateClubStripeAccountMutationVariables = Exact<{
14101
+ clubId: Scalars['String']['input'];
14102
+ }>;
14103
+ export type CreateClubStripeAccountMutation = {
14104
+ createClubStripeAccount: string;
14105
+ };
14106
+ export type CreateClubDonationCheckoutMutationVariables = Exact<{
14107
+ clubId: Scalars['String']['input'];
14108
+ amount: Scalars['Float']['input'];
14109
+ currency?: Scalars['String']['input'];
14110
+ donorEmail?: InputMaybe<Scalars['String']['input']>;
14111
+ donorName?: InputMaybe<Scalars['String']['input']>;
14112
+ }>;
14113
+ export type CreateClubDonationCheckoutMutation = {
14114
+ createClubDonationCheckout: string;
14115
+ };
14116
+ export type CreateMembershipFeeCheckoutMutationVariables = Exact<{
14117
+ clubId: Scalars['String']['input'];
14118
+ }>;
14119
+ export type CreateMembershipFeeCheckoutMutation = {
14120
+ createMembershipFeeCheckout?: string | null;
14121
+ };
12721
14122
  export type FindUserByEmailQueryVariables = Exact<{
12722
14123
  email: Scalars['String']['input'];
12723
14124
  }>;
@@ -13223,6 +14624,12 @@ export declare const Awss3FileFieldsFragmentDoc: import("graphql").DocumentNode;
13223
14624
  export declare const BrandFullFieldsFragmentDoc: import("graphql").DocumentNode;
13224
14625
  export declare const SponsorshipFullFieldsFragmentDoc: import("graphql").DocumentNode;
13225
14626
  export declare const PaginationInfoFieldsFragmentDoc: import("graphql").DocumentNode;
14627
+ export declare const TeamFieldsFragmentDoc: import("graphql").DocumentNode;
14628
+ export declare const ClubFieldsFragmentDoc: import("graphql").DocumentNode;
14629
+ export declare const AthleteTeamFieldsFragmentDoc: import("graphql").DocumentNode;
14630
+ export declare const AthleteClubFieldsFragmentDoc: import("graphql").DocumentNode;
14631
+ export declare const TeamAnalyticsFieldsFragmentDoc: import("graphql").DocumentNode;
14632
+ export declare const TeamLeaderboardEntryFieldsFragmentDoc: import("graphql").DocumentNode;
13226
14633
  export declare const GetAiCoachThreadDocument: import("graphql").DocumentNode;
13227
14634
  export declare const GetAiCoachThreadHistoryDocument: import("graphql").DocumentNode;
13228
14635
  export declare const GetAiCoachThreadMessagesDocument: import("graphql").DocumentNode;
@@ -13434,6 +14841,36 @@ export declare const CreateSportLevelDocument: import("graphql").DocumentNode;
13434
14841
  export declare const CreateCountryDocument: import("graphql").DocumentNode;
13435
14842
  export declare const CreateStateDocument: import("graphql").DocumentNode;
13436
14843
  export declare const CreateCityDocument: import("graphql").DocumentNode;
14844
+ export declare const FindTeamByIdDocument: import("graphql").DocumentNode;
14845
+ export declare const FindTeamsDocument: import("graphql").DocumentNode;
14846
+ export declare const FindAllTeamsDocument: import("graphql").DocumentNode;
14847
+ export declare const GetTeamRosterDocument: import("graphql").DocumentNode;
14848
+ export declare const GetTeamAnalyticsDocument: import("graphql").DocumentNode;
14849
+ export declare const GetTeamLeaderboardDocument: import("graphql").DocumentNode;
14850
+ export declare const GetTeamDashboardDocument: import("graphql").DocumentNode;
14851
+ export declare const GetTeamStripeAccountStatusDocument: import("graphql").DocumentNode;
14852
+ export declare const CreateTeamDocument: import("graphql").DocumentNode;
14853
+ export declare const UpdateTeamDocument: import("graphql").DocumentNode;
14854
+ export declare const JoinTeamDocument: import("graphql").DocumentNode;
14855
+ export declare const LeaveTeamDocument: import("graphql").DocumentNode;
14856
+ export declare const InviteToTeamDocument: import("graphql").DocumentNode;
14857
+ export declare const ManageTeamMemberDocument: import("graphql").DocumentNode;
14858
+ export declare const CreateTeamStripeAccountDocument: import("graphql").DocumentNode;
14859
+ export declare const CreateTeamDonationCheckoutDocument: import("graphql").DocumentNode;
14860
+ export declare const FindClubByIdDocument: import("graphql").DocumentNode;
14861
+ export declare const FindClubsDocument: import("graphql").DocumentNode;
14862
+ export declare const FindAllClubsDocument: import("graphql").DocumentNode;
14863
+ export declare const GetClubMembersDocument: import("graphql").DocumentNode;
14864
+ export declare const GetClubStripeAccountStatusDocument: import("graphql").DocumentNode;
14865
+ export declare const CreateClubDocument: import("graphql").DocumentNode;
14866
+ export declare const UpdateClubDocument: import("graphql").DocumentNode;
14867
+ export declare const JoinClubDocument: import("graphql").DocumentNode;
14868
+ export declare const LeaveClubDocument: import("graphql").DocumentNode;
14869
+ export declare const InviteToClubDocument: import("graphql").DocumentNode;
14870
+ export declare const ManageClubMemberDocument: import("graphql").DocumentNode;
14871
+ export declare const CreateClubStripeAccountDocument: import("graphql").DocumentNode;
14872
+ export declare const CreateClubDonationCheckoutDocument: import("graphql").DocumentNode;
14873
+ export declare const CreateMembershipFeeCheckoutDocument: import("graphql").DocumentNode;
13437
14874
  export declare const FindUserByEmailDocument: import("graphql").DocumentNode;
13438
14875
  export declare const FindVtxUserDocument: import("graphql").DocumentNode;
13439
14876
  export declare const GetUserImagesFromEmailDocument: import("graphql").DocumentNode;
@@ -13663,6 +15100,36 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
13663
15100
  CreateCountry(variables: CreateCountryMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CreateCountryMutation>;
13664
15101
  CreateState(variables: CreateStateMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CreateStateMutation>;
13665
15102
  CreateCity(variables: CreateCityMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CreateCityMutation>;
15103
+ FindTeamById(variables: FindTeamByIdQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<FindTeamByIdQuery>;
15104
+ FindTeams(variables?: FindTeamsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<FindTeamsQuery>;
15105
+ FindAllTeams(variables?: FindAllTeamsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<FindAllTeamsQuery>;
15106
+ GetTeamRoster(variables: GetTeamRosterQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetTeamRosterQuery>;
15107
+ GetTeamAnalytics(variables: GetTeamAnalyticsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetTeamAnalyticsQuery>;
15108
+ GetTeamLeaderboard(variables: GetTeamLeaderboardQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetTeamLeaderboardQuery>;
15109
+ GetTeamDashboard(variables: GetTeamDashboardQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetTeamDashboardQuery>;
15110
+ GetTeamStripeAccountStatus(variables: GetTeamStripeAccountStatusQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetTeamStripeAccountStatusQuery>;
15111
+ CreateTeam(variables: CreateTeamMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CreateTeamMutation>;
15112
+ UpdateTeam(variables: UpdateTeamMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<UpdateTeamMutation>;
15113
+ JoinTeam(variables: JoinTeamMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<JoinTeamMutation>;
15114
+ LeaveTeam(variables: LeaveTeamMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<LeaveTeamMutation>;
15115
+ InviteToTeam(variables: InviteToTeamMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<InviteToTeamMutation>;
15116
+ ManageTeamMember(variables: ManageTeamMemberMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ManageTeamMemberMutation>;
15117
+ CreateTeamStripeAccount(variables: CreateTeamStripeAccountMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CreateTeamStripeAccountMutation>;
15118
+ CreateTeamDonationCheckout(variables: CreateTeamDonationCheckoutMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CreateTeamDonationCheckoutMutation>;
15119
+ FindClubById(variables: FindClubByIdQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<FindClubByIdQuery>;
15120
+ FindClubs(variables?: FindClubsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<FindClubsQuery>;
15121
+ FindAllClubs(variables?: FindAllClubsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<FindAllClubsQuery>;
15122
+ GetClubMembers(variables: GetClubMembersQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetClubMembersQuery>;
15123
+ GetClubStripeAccountStatus(variables: GetClubStripeAccountStatusQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetClubStripeAccountStatusQuery>;
15124
+ CreateClub(variables: CreateClubMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CreateClubMutation>;
15125
+ UpdateClub(variables: UpdateClubMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<UpdateClubMutation>;
15126
+ JoinClub(variables: JoinClubMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<JoinClubMutation>;
15127
+ LeaveClub(variables: LeaveClubMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<LeaveClubMutation>;
15128
+ InviteToClub(variables: InviteToClubMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<InviteToClubMutation>;
15129
+ ManageClubMember(variables: ManageClubMemberMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ManageClubMemberMutation>;
15130
+ CreateClubStripeAccount(variables: CreateClubStripeAccountMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CreateClubStripeAccountMutation>;
15131
+ CreateClubDonationCheckout(variables: CreateClubDonationCheckoutMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CreateClubDonationCheckoutMutation>;
15132
+ CreateMembershipFeeCheckout(variables: CreateMembershipFeeCheckoutMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CreateMembershipFeeCheckoutMutation>;
13666
15133
  FindUserByEmail(variables: FindUserByEmailQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<FindUserByEmailQuery>;
13667
15134
  FindVtxUser(variables: FindVtxUserQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<FindVtxUserQuery>;
13668
15135
  GetUserImagesFromEmail(variables: GetUserImagesFromEmailQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetUserImagesFromEmailQuery>;