@vertikalx/vtx-backend-client 3.0.1-dev-max.4 → 3.0.1-dev-max.6

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']>;
@@ -903,6 +962,7 @@ export type CreateEmailSegmentDto = {
903
962
  name: Scalars['String']['input'];
904
963
  };
905
964
  export type CreateFundingCampaignDto = {
965
+ autoSendThankYou?: InputMaybe<Scalars['Boolean']['input']>;
906
966
  budget?: InputMaybe<CreateBudgetDto>;
907
967
  budgetMode: Scalars['String']['input'];
908
968
  cityId?: InputMaybe<Scalars['String']['input']>;
@@ -913,11 +973,14 @@ export type CreateFundingCampaignDto = {
913
973
  fundsRequired: Scalars['Float']['input'];
914
974
  initialFundsObtained?: Scalars['Float']['input'];
915
975
  motivation: Scalars['String']['input'];
976
+ thankYouMediaUrl?: InputMaybe<Scalars['String']['input']>;
977
+ thankYouMessage?: InputMaybe<Scalars['String']['input']>;
916
978
  title: Scalars['String']['input'];
917
979
  video?: InputMaybe<CreateVideoDto>;
918
980
  website?: InputMaybe<Scalars['String']['input']>;
919
981
  };
920
982
  export type CreateFundingCampaignForDto = {
983
+ autoSendThankYou?: InputMaybe<Scalars['Boolean']['input']>;
921
984
  budget?: InputMaybe<CreateBudgetDto>;
922
985
  budgetMode: Scalars['String']['input'];
923
986
  cityId?: InputMaybe<Scalars['String']['input']>;
@@ -929,6 +992,8 @@ export type CreateFundingCampaignForDto = {
929
992
  initialFundsObtained?: Scalars['Float']['input'];
930
993
  loginEmail: Scalars['String']['input'];
931
994
  motivation: Scalars['String']['input'];
995
+ thankYouMediaUrl?: InputMaybe<Scalars['String']['input']>;
996
+ thankYouMessage?: InputMaybe<Scalars['String']['input']>;
932
997
  title: Scalars['String']['input'];
933
998
  video?: InputMaybe<CreateVideoDto>;
934
999
  website?: InputMaybe<Scalars['String']['input']>;
@@ -1025,6 +1090,15 @@ export type CreateStripeAccountDto = {
1025
1090
  acceptedTermsId: Scalars['String']['input'];
1026
1091
  countryId: Scalars['String']['input'];
1027
1092
  };
1093
+ export type CreateTeamInput = {
1094
+ clubId?: InputMaybe<Scalars['String']['input']>;
1095
+ description?: InputMaybe<Scalars['String']['input']>;
1096
+ joinPolicy?: InputMaybe<Scalars['String']['input']>;
1097
+ maxRosterSize?: InputMaybe<Scalars['Int']['input']>;
1098
+ name: Scalars['String']['input'];
1099
+ sportIds: Array<Scalars['String']['input']>;
1100
+ visibility?: InputMaybe<Scalars['String']['input']>;
1101
+ };
1028
1102
  export type CreateTenantInput = {
1029
1103
  domain: Scalars['String']['input'];
1030
1104
  email: Scalars['String']['input'];
@@ -1229,6 +1303,16 @@ export type DonationQueryDto = {
1229
1303
  sortField?: InputMaybe<Scalars['String']['input']>;
1230
1304
  sortOrder?: InputMaybe<Scalars['String']['input']>;
1231
1305
  };
1306
+ export type DonationThankYou = {
1307
+ _id: Scalars['String']['output'];
1308
+ autoSent: Scalars['Boolean']['output'];
1309
+ donorEmail?: Maybe<Scalars['String']['output']>;
1310
+ donorName?: Maybe<Scalars['String']['output']>;
1311
+ emailSent: Scalars['Boolean']['output'];
1312
+ mediaUrl?: Maybe<Scalars['String']['output']>;
1313
+ message: Scalars['String']['output'];
1314
+ sentDate: Scalars['DateTime']['output'];
1315
+ };
1232
1316
  export type Duration = {
1233
1317
  length: Scalars['Float']['output'];
1234
1318
  unit: Scalars['String']['output'];
@@ -1429,6 +1513,7 @@ export type FundCampaignFilterDto = {
1429
1513
  export type FundRaisingCampaign = {
1430
1514
  _id: Scalars['String']['output'];
1431
1515
  athlete: AthleteReference;
1516
+ autoSendThankYou: Scalars['Boolean']['output'];
1432
1517
  budget?: Maybe<Budget>;
1433
1518
  budgetMode: Scalars['String']['output'];
1434
1519
  competitions?: Maybe<Array<AthleteCompetition>>;
@@ -1442,6 +1527,8 @@ export type FundRaisingCampaign = {
1442
1527
  motivation?: Maybe<Scalars['String']['output']>;
1443
1528
  slug?: Maybe<Scalars['String']['output']>;
1444
1529
  status: Scalars['String']['output'];
1530
+ thankYouMediaUrl?: Maybe<Scalars['String']['output']>;
1531
+ thankYouMessage?: Maybe<Scalars['String']['output']>;
1445
1532
  title: Scalars['String']['output'];
1446
1533
  video?: Maybe<Video>;
1447
1534
  vtxComissionPct: Scalars['Float']['output'];
@@ -1607,6 +1694,15 @@ export type IsFollowingAthleteInput = {
1607
1694
  export type IsFollowingResponse = {
1608
1695
  isFollowing: Scalars['Boolean']['output'];
1609
1696
  };
1697
+ export type JoinClubInput = {
1698
+ clubId: Scalars['String']['input'];
1699
+ message?: InputMaybe<Scalars['String']['input']>;
1700
+ };
1701
+ export type JoinTeamInput = {
1702
+ message?: InputMaybe<Scalars['String']['input']>;
1703
+ sportId: Scalars['String']['input'];
1704
+ teamId: Scalars['String']['input'];
1705
+ };
1610
1706
  export type LeaderboardEntry = {
1611
1707
  athleteId: Scalars['String']['output'];
1612
1708
  cityName?: Maybe<Scalars['String']['output']>;
@@ -1676,6 +1772,18 @@ export type MagicLink = {
1676
1772
  type: Scalars['String']['output'];
1677
1773
  url: Scalars['String']['output'];
1678
1774
  };
1775
+ export type ManageClubMemberInput = {
1776
+ action: Scalars['String']['input'];
1777
+ athleteId: Scalars['String']['input'];
1778
+ clubId: Scalars['String']['input'];
1779
+ role?: InputMaybe<Scalars['String']['input']>;
1780
+ };
1781
+ export type ManageTeamMemberInput = {
1782
+ action: Scalars['String']['input'];
1783
+ athleteId: Scalars['String']['input'];
1784
+ role?: InputMaybe<Scalars['String']['input']>;
1785
+ teamId: Scalars['String']['input'];
1786
+ };
1679
1787
  export type MarkNotificationReadDto = {
1680
1788
  notificationId: Scalars['String']['input'];
1681
1789
  };
@@ -1739,6 +1847,8 @@ export type Mutation = {
1739
1847
  activateOffer: Offer;
1740
1848
  addAthleteCompetition: AthleteCompetition;
1741
1849
  addCompetitionBudget: Scalars['Boolean']['output'];
1850
+ approveClub: Club;
1851
+ approveTeam: Team;
1742
1852
  cancelScheduledEmail: EmailCampaign;
1743
1853
  claimOffer: OfferClaim;
1744
1854
  cloneEmailCampaign: EmailCampaign;
@@ -1749,11 +1859,15 @@ export type Mutation = {
1749
1859
  createAthleteStripeSession: StripeSession;
1750
1860
  createBrand: Brand;
1751
1861
  createCity: City;
1862
+ createClub: Club;
1863
+ createClubDonationCheckout: Scalars['String']['output'];
1864
+ createClubStripeAccount: Scalars['String']['output'];
1752
1865
  createCountry: Country;
1753
1866
  createEmailCampaign: EmailCampaign;
1754
1867
  createEmailSegment: EmailSegment;
1755
1868
  createFundingCampaign: FundRaisingCampaign;
1756
1869
  createIndustry: Industry;
1870
+ createMembershipFeeCheckout?: Maybe<Scalars['String']['output']>;
1757
1871
  createMembershipOrganization: MembershipOrganizationReference;
1758
1872
  createOffer: Offer;
1759
1873
  createResetPasswordCode: EditValueResponse;
@@ -1767,6 +1881,9 @@ export type Mutation = {
1767
1881
  createStripeAccountLink: Scalars['String']['output'];
1768
1882
  createStripeCheckoutSession: StripeCheckoutSession;
1769
1883
  createStripeLoginLink: Scalars['String']['output'];
1884
+ createTeam: Team;
1885
+ createTeamDonationCheckout: Scalars['String']['output'];
1886
+ createTeamStripeAccount: Scalars['String']['output'];
1770
1887
  createUserAndLogin: UserWithToken;
1771
1888
  deactivateOffer: Offer;
1772
1889
  deleteAthleteAlbum: DeleteSingleValueResponse;
@@ -1798,10 +1915,18 @@ export type Mutation = {
1798
1915
  followAthlete: Scalars['Boolean']['output'];
1799
1916
  forceDeleteAthleteCompetition: DeleteSingleValueResponse;
1800
1917
  forceRefreshAthleteScores: ForceScoreRefreshResponse;
1918
+ inviteToClub: AthleteClub;
1919
+ inviteToTeam: AthleteTeam;
1920
+ joinClub: AthleteClub;
1921
+ joinTeam: AthleteTeam;
1922
+ leaveClub: AthleteClub;
1923
+ leaveTeam: AthleteTeam;
1801
1924
  linkBrandToSponsor: Brand;
1802
1925
  loginUserFromCredentials: UserWithToken;
1803
1926
  loginUserFromCredentialsVtx: UserWithToken;
1804
1927
  loginUserFromEmail: UserToken;
1928
+ manageClubMember: AthleteClub;
1929
+ manageTeamMember: AthleteTeam;
1805
1930
  markAiCoachNudgeRead: Scalars['Boolean']['output'];
1806
1931
  markAllNotificationsAsRead: Scalars['Int']['output'];
1807
1932
  markNotificationAsRead: Notification;
@@ -1829,6 +1954,7 @@ export type Mutation = {
1829
1954
  sendAthleteInvitations: Array<SponsorAthleteInvitation>;
1830
1955
  sendBulkEmail: Scalars['Boolean']['output'];
1831
1956
  sendTestEmail: Scalars['Boolean']['output'];
1957
+ sendThankYou: DonationThankYou;
1832
1958
  setCurrentCampaign: FundRaisingCampaign;
1833
1959
  setFundingStatus: FundRaisingCampaign;
1834
1960
  setOfferStatus: Offer;
@@ -1841,6 +1967,7 @@ export type Mutation = {
1841
1967
  updateAthleteIntegration: Scalars['Boolean']['output'];
1842
1968
  updateAthleteScores: Athlete;
1843
1969
  updateBrand: Brand;
1970
+ updateClub: Club;
1844
1971
  updateEmailCampaign: EmailCampaign;
1845
1972
  updateEmailSegment: EmailSegment;
1846
1973
  updateFundingCampaign: FundRaisingCampaign;
@@ -1850,6 +1977,8 @@ export type Mutation = {
1850
1977
  updateSponsor: Sponsor;
1851
1978
  updateSport: Sport;
1852
1979
  updateSportsEvent: SportsEvent;
1980
+ updateTeam: Team;
1981
+ updateThankYouTemplate: FundRaisingCampaign;
1853
1982
  updateUserSuspendedStatus: EditValueResponse;
1854
1983
  uploadCouponCodes: UploadResult;
1855
1984
  validateToken: ValidatedToken;
@@ -1866,6 +1995,14 @@ export type MutationAddAthleteCompetitionArgs = {
1866
1995
  export type MutationAddCompetitionBudgetArgs = {
1867
1996
  input: AddCompetitionBudgetDto;
1868
1997
  };
1998
+ export type MutationApproveClubArgs = {
1999
+ approved: Scalars['Boolean']['input'];
2000
+ clubId: Scalars['String']['input'];
2001
+ };
2002
+ export type MutationApproveTeamArgs = {
2003
+ approved: Scalars['Boolean']['input'];
2004
+ teamId: Scalars['String']['input'];
2005
+ };
1869
2006
  export type MutationCancelScheduledEmailArgs = {
1870
2007
  campaignId: Scalars['String']['input'];
1871
2008
  };
@@ -1894,6 +2031,19 @@ export type MutationCreateBrandArgs = {
1894
2031
  export type MutationCreateCityArgs = {
1895
2032
  input: CreateCityDto;
1896
2033
  };
2034
+ export type MutationCreateClubArgs = {
2035
+ input: CreateClubInput;
2036
+ };
2037
+ export type MutationCreateClubDonationCheckoutArgs = {
2038
+ amount: Scalars['Float']['input'];
2039
+ clubId: Scalars['String']['input'];
2040
+ currency?: Scalars['String']['input'];
2041
+ donorEmail?: InputMaybe<Scalars['String']['input']>;
2042
+ donorName?: InputMaybe<Scalars['String']['input']>;
2043
+ };
2044
+ export type MutationCreateClubStripeAccountArgs = {
2045
+ clubId: Scalars['String']['input'];
2046
+ };
1897
2047
  export type MutationCreateCountryArgs = {
1898
2048
  input: CreateCountryDto;
1899
2049
  };
@@ -1909,6 +2059,9 @@ export type MutationCreateFundingCampaignArgs = {
1909
2059
  export type MutationCreateIndustryArgs = {
1910
2060
  input: CreateIndustryDto;
1911
2061
  };
2062
+ export type MutationCreateMembershipFeeCheckoutArgs = {
2063
+ clubId: Scalars['String']['input'];
2064
+ };
1912
2065
  export type MutationCreateMembershipOrganizationArgs = {
1913
2066
  input: CreateMembershipOrganizationDto;
1914
2067
  };
@@ -1942,6 +2095,19 @@ export type MutationCreateStripeAccountArgs = {
1942
2095
  export type MutationCreateStripeCheckoutSessionArgs = {
1943
2096
  input: DonationCheckoutDto;
1944
2097
  };
2098
+ export type MutationCreateTeamArgs = {
2099
+ input: CreateTeamInput;
2100
+ };
2101
+ export type MutationCreateTeamDonationCheckoutArgs = {
2102
+ amount: Scalars['Float']['input'];
2103
+ currency?: Scalars['String']['input'];
2104
+ donorEmail?: InputMaybe<Scalars['String']['input']>;
2105
+ donorName?: InputMaybe<Scalars['String']['input']>;
2106
+ teamId: Scalars['String']['input'];
2107
+ };
2108
+ export type MutationCreateTeamStripeAccountArgs = {
2109
+ teamId: Scalars['String']['input'];
2110
+ };
1945
2111
  export type MutationCreateUserAndLoginArgs = {
1946
2112
  user: CreateActiveUserInput;
1947
2113
  };
@@ -2029,6 +2195,27 @@ export type MutationForceDeleteAthleteCompetitionArgs = {
2029
2195
  export type MutationForceRefreshAthleteScoresArgs = {
2030
2196
  input: ForceScoreRefreshDto;
2031
2197
  };
2198
+ export type MutationInviteToClubArgs = {
2199
+ athleteId: Scalars['String']['input'];
2200
+ clubId: Scalars['String']['input'];
2201
+ };
2202
+ export type MutationInviteToTeamArgs = {
2203
+ athleteId: Scalars['String']['input'];
2204
+ sportId: Scalars['String']['input'];
2205
+ teamId: Scalars['String']['input'];
2206
+ };
2207
+ export type MutationJoinClubArgs = {
2208
+ input: JoinClubInput;
2209
+ };
2210
+ export type MutationJoinTeamArgs = {
2211
+ input: JoinTeamInput;
2212
+ };
2213
+ export type MutationLeaveClubArgs = {
2214
+ clubId: Scalars['String']['input'];
2215
+ };
2216
+ export type MutationLeaveTeamArgs = {
2217
+ teamId: Scalars['String']['input'];
2218
+ };
2032
2219
  export type MutationLinkBrandToSponsorArgs = {
2033
2220
  brandId: Scalars['String']['input'];
2034
2221
  sponsorId: Scalars['String']['input'];
@@ -2045,6 +2232,12 @@ export type MutationLoginUserFromEmailArgs = {
2045
2232
  email: Scalars['String']['input'];
2046
2233
  loginMethod: Scalars['String']['input'];
2047
2234
  };
2235
+ export type MutationManageClubMemberArgs = {
2236
+ input: ManageClubMemberInput;
2237
+ };
2238
+ export type MutationManageTeamMemberArgs = {
2239
+ input: ManageTeamMemberInput;
2240
+ };
2048
2241
  export type MutationMarkAiCoachNudgeReadArgs = {
2049
2242
  nudgeId: Scalars['String']['input'];
2050
2243
  };
@@ -2123,6 +2316,9 @@ export type MutationSendTestEmailArgs = {
2123
2316
  adminEmail: Scalars['String']['input'];
2124
2317
  campaignId: Scalars['String']['input'];
2125
2318
  };
2319
+ export type MutationSendThankYouArgs = {
2320
+ input: SendThankYouDto;
2321
+ };
2126
2322
  export type MutationSetCurrentCampaignArgs = {
2127
2323
  input: SetCurrentCampaignDto;
2128
2324
  };
@@ -2153,6 +2349,9 @@ export type MutationUpdateBrandArgs = {
2153
2349
  id: Scalars['String']['input'];
2154
2350
  input: CreateBrandDto;
2155
2351
  };
2352
+ export type MutationUpdateClubArgs = {
2353
+ input: UpdateClubInput;
2354
+ };
2156
2355
  export type MutationUpdateEmailCampaignArgs = {
2157
2356
  id: Scalars['String']['input'];
2158
2357
  input: UpdateEmailCampaignDto;
@@ -2184,6 +2383,12 @@ export type MutationUpdateSportArgs = {
2184
2383
  export type MutationUpdateSportsEventArgs = {
2185
2384
  input: UpdateSportEventDto;
2186
2385
  };
2386
+ export type MutationUpdateTeamArgs = {
2387
+ input: UpdateTeamInput;
2388
+ };
2389
+ export type MutationUpdateThankYouTemplateArgs = {
2390
+ input: UpdateThankYouTemplateDto;
2391
+ };
2187
2392
  export type MutationUpdateUserSuspendedStatusArgs = {
2188
2393
  input: UpdateUserSuspendedStatusDto;
2189
2394
  };
@@ -2519,17 +2724,25 @@ export type Query = {
2519
2724
  athleteScoreHistory: Array<ScoreHistoryEntry>;
2520
2725
  brands: Array<Brand>;
2521
2726
  browseCampaigns: BrowseCampaignsResult;
2727
+ campaignThankYous: Array<DonationThankYou>;
2522
2728
  checkScoreRefreshCapabilities: CheckScoreRefreshCapabilityResponse;
2729
+ donationThankYou?: Maybe<DonationThankYou>;
2523
2730
  existsValidSponsorForEmail: Sponsor;
2731
+ findAllClubs: Array<Club>;
2732
+ findAllTeams: Array<Team>;
2524
2733
  findAthleteById: Athlete;
2525
2734
  findAthleteForUser: Athlete;
2526
2735
  findAthletebyIdpublic: Athlete;
2527
2736
  findCitiesStartingWith: Array<City>;
2528
2737
  findCityById: City;
2738
+ findClubById: Club;
2739
+ findClubs: Array<Club>;
2529
2740
  findIndustryById: Industry;
2530
2741
  findMemberForUser: Member;
2531
2742
  findSponsorAthleteInvitation: SponsorAthleteInvitation;
2532
2743
  findSportById: Sport;
2744
+ findTeamById: Team;
2745
+ findTeams: Array<Team>;
2533
2746
  findTenantByEmail: Tenant;
2534
2747
  findTenantById: Tenant;
2535
2748
  findUserByEmail: User;
@@ -2562,6 +2775,8 @@ export type Query = {
2562
2775
  getBudgetConcepts: Array<BudgetConcept>;
2563
2776
  getBudgetItemUnits: Array<BudgetItemUnit>;
2564
2777
  getBudgetsByAthlete: BudgetData;
2778
+ getClubMembers: Array<AthleteClub>;
2779
+ getClubStripeAccountStatus?: Maybe<StripeAccountStatus>;
2565
2780
  getCountries: Array<Country>;
2566
2781
  getCountryStates: Array<State>;
2567
2782
  getDatabaseTextFile: TextDatabaseFile;
@@ -2602,6 +2817,11 @@ export type Query = {
2602
2817
  getStates: Array<State>;
2603
2818
  getStravaLoginUrl: Scalars['String']['output'];
2604
2819
  getStripeBalance: StripeBalance;
2820
+ getTeamAnalytics: TeamAnalytics;
2821
+ getTeamDashboard: TeamDashboard;
2822
+ getTeamLeaderboard: Array<TeamLeaderboardEntry>;
2823
+ getTeamRoster: Array<AthleteTeam>;
2824
+ getTeamStripeAccountStatus?: Maybe<StripeAccountStatus>;
2605
2825
  getTenantSponsorships: Array<Sponsorship>;
2606
2826
  getTenants: Array<Tenant>;
2607
2827
  getTransactionDetails: TransactionDetails;
@@ -2664,9 +2884,15 @@ export type QueryAthleteScoreHistoryArgs = {
2664
2884
  export type QueryBrowseCampaignsArgs = {
2665
2885
  input: BrowseCampaignsDto;
2666
2886
  };
2887
+ export type QueryCampaignThankYousArgs = {
2888
+ campaignId: Scalars['String']['input'];
2889
+ };
2667
2890
  export type QueryCheckScoreRefreshCapabilitiesArgs = {
2668
2891
  input: CheckScoreRefreshCapabilityDto;
2669
2892
  };
2893
+ export type QueryDonationThankYouArgs = {
2894
+ donationId: Scalars['String']['input'];
2895
+ };
2670
2896
  export type QueryExistsValidSponsorForEmailArgs = {
2671
2897
  loginEmail: Scalars['String']['input'];
2672
2898
  };
@@ -2685,6 +2911,12 @@ export type QueryFindCitiesStartingWithArgs = {
2685
2911
  export type QueryFindCityByIdArgs = {
2686
2912
  cityId: Scalars['String']['input'];
2687
2913
  };
2914
+ export type QueryFindClubByIdArgs = {
2915
+ clubId: Scalars['String']['input'];
2916
+ };
2917
+ export type QueryFindClubsArgs = {
2918
+ sportId?: InputMaybe<Scalars['String']['input']>;
2919
+ };
2688
2920
  export type QueryFindIndustryByIdArgs = {
2689
2921
  industryId: Scalars['String']['input'];
2690
2922
  };
@@ -2697,6 +2929,13 @@ export type QueryFindSponsorAthleteInvitationArgs = {
2697
2929
  export type QueryFindSportByIdArgs = {
2698
2930
  sportId: Scalars['String']['input'];
2699
2931
  };
2932
+ export type QueryFindTeamByIdArgs = {
2933
+ teamId: Scalars['String']['input'];
2934
+ };
2935
+ export type QueryFindTeamsArgs = {
2936
+ clubId?: InputMaybe<Scalars['String']['input']>;
2937
+ sportId?: InputMaybe<Scalars['String']['input']>;
2938
+ };
2700
2939
  export type QueryFindTenantByEmailArgs = {
2701
2940
  domainId: Scalars['String']['input'];
2702
2941
  email: Scalars['String']['input'];
@@ -2757,6 +2996,12 @@ export type QueryGetBrandTranslationArgs = {
2757
2996
  export type QueryGetBrandsPaginatedArgs = {
2758
2997
  query?: InputMaybe<BrandQueryDto>;
2759
2998
  };
2999
+ export type QueryGetClubMembersArgs = {
3000
+ clubId: Scalars['String']['input'];
3001
+ };
3002
+ export type QueryGetClubStripeAccountStatusArgs = {
3003
+ clubId: Scalars['String']['input'];
3004
+ };
2760
3005
  export type QueryGetCountryStatesArgs = {
2761
3006
  countryId: Scalars['String']['input'];
2762
3007
  };
@@ -2835,6 +3080,21 @@ export type QueryGetSportsPaginatedArgs = {
2835
3080
  export type QueryGetStateCitiesArgs = {
2836
3081
  stateId: Scalars['String']['input'];
2837
3082
  };
3083
+ export type QueryGetTeamAnalyticsArgs = {
3084
+ teamId: Scalars['String']['input'];
3085
+ };
3086
+ export type QueryGetTeamDashboardArgs = {
3087
+ teamId: Scalars['String']['input'];
3088
+ };
3089
+ export type QueryGetTeamLeaderboardArgs = {
3090
+ teamId: Scalars['String']['input'];
3091
+ };
3092
+ export type QueryGetTeamRosterArgs = {
3093
+ teamId: Scalars['String']['input'];
3094
+ };
3095
+ export type QueryGetTeamStripeAccountStatusArgs = {
3096
+ teamId: Scalars['String']['input'];
3097
+ };
2838
3098
  export type QueryGetTransactionDetailsArgs = {
2839
3099
  input: GetTransactionDetailsDto;
2840
3100
  };
@@ -3091,6 +3351,11 @@ export type SendGridTemplate = {
3091
3351
  subject?: Maybe<Scalars['String']['output']>;
3092
3352
  updatedAt?: Maybe<Scalars['String']['output']>;
3093
3353
  };
3354
+ export type SendThankYouDto = {
3355
+ campaignId: Scalars['String']['input'];
3356
+ customMessage?: InputMaybe<Scalars['String']['input']>;
3357
+ donationId: Scalars['String']['input'];
3358
+ };
3094
3359
  export type SetCompetitionResultDto = {
3095
3360
  adversary?: InputMaybe<Scalars['String']['input']>;
3096
3361
  categoryName?: InputMaybe<Scalars['String']['input']>;
@@ -3454,6 +3719,11 @@ export type StripeAccountReference = {
3454
3719
  account?: Maybe<StripeAccount>;
3455
3720
  stripeAccountId: Scalars['String']['output'];
3456
3721
  };
3722
+ export type StripeAccountStatus = {
3723
+ chargesEnabled: Scalars['Boolean']['output'];
3724
+ detailsSubmitted: Scalars['Boolean']['output'];
3725
+ payoutsEnabled: Scalars['Boolean']['output'];
3726
+ };
3457
3727
  export type StripeBalance = {
3458
3728
  availableBalances: Array<CurrencyAmountType>;
3459
3729
  availableUSD: Scalars['Float']['output'];
@@ -3603,11 +3873,58 @@ export type SubscriptionPayment = {
3603
3873
  export type Team = {
3604
3874
  _id: Scalars['String']['output'];
3605
3875
  approved?: Maybe<Scalars['Boolean']['output']>;
3876
+ athletes?: Maybe<Array<AthleteTeam>>;
3606
3877
  banner?: Maybe<Awss3File>;
3878
+ club?: Maybe<TeamClubReference>;
3607
3879
  description?: Maybe<Scalars['String']['output']>;
3880
+ joinPolicy?: Maybe<Scalars['String']['output']>;
3608
3881
  logo?: Maybe<Awss3File>;
3882
+ maxRosterSize?: Maybe<Scalars['Int']['output']>;
3609
3883
  name: Scalars['String']['output'];
3610
3884
  sports?: Maybe<Array<Sport>>;
3885
+ stripeAccountId?: Maybe<Scalars['String']['output']>;
3886
+ visibility?: Maybe<Scalars['String']['output']>;
3887
+ vtxScore?: Maybe<Scalars['Float']['output']>;
3888
+ };
3889
+ export type TeamAnalytics = {
3890
+ athleteCount: Scalars['Int']['output'];
3891
+ rosterSize?: Maybe<Scalars['Int']['output']>;
3892
+ teamId: Scalars['String']['output'];
3893
+ teamName: Scalars['String']['output'];
3894
+ topPerformers?: Maybe<Array<TeamLeaderboardEntry>>;
3895
+ vtxScore?: Maybe<Scalars['Float']['output']>;
3896
+ vtxScoreHistory?: Maybe<Array<TeamVtxScoreHistoryEntry>>;
3897
+ };
3898
+ export type TeamClubReference = {
3899
+ _id: Scalars['String']['output'];
3900
+ logo?: Maybe<Awss3File>;
3901
+ name: Scalars['String']['output'];
3902
+ };
3903
+ export type TeamDashboard = {
3904
+ analytics: TeamAnalytics;
3905
+ leaderboard: Array<TeamLeaderboardEntry>;
3906
+ roster: TeamRosterOverview;
3907
+ };
3908
+ export type TeamLeaderboardEntry = {
3909
+ apiScore?: Maybe<Scalars['Float']['output']>;
3910
+ athleteId: Scalars['String']['output'];
3911
+ athleteName: Scalars['String']['output'];
3912
+ athletePhoto?: Maybe<Scalars['String']['output']>;
3913
+ rank: Scalars['Int']['output'];
3914
+ spiScore?: Maybe<Scalars['Float']['output']>;
3915
+ sport?: Maybe<Scalars['String']['output']>;
3916
+ tpiScore?: Maybe<Scalars['Float']['output']>;
3917
+ vtxScore: Scalars['Float']['output'];
3918
+ };
3919
+ export type TeamRosterOverview = {
3920
+ recentDepartures: Scalars['Int']['output'];
3921
+ recentJoins: Scalars['Int']['output'];
3922
+ totalActive: Scalars['Int']['output'];
3923
+ totalInactive: Scalars['Int']['output'];
3924
+ };
3925
+ export type TeamVtxScoreHistoryEntry = {
3926
+ date: Scalars['DateTime']['output'];
3927
+ score: Scalars['Float']['output'];
3611
3928
  };
3612
3929
  export type Tenant = {
3613
3930
  _id: Scalars['String']['output'];
@@ -3686,6 +4003,16 @@ export type UpdateAiCoachConfigDto = {
3686
4003
  nudgesEnabled?: InputMaybe<Scalars['Boolean']['input']>;
3687
4004
  preferredFocus?: InputMaybe<Scalars['String']['input']>;
3688
4005
  };
4006
+ export type UpdateClubInput = {
4007
+ clubId: Scalars['String']['input'];
4008
+ description?: InputMaybe<Scalars['String']['input']>;
4009
+ feeStructure?: InputMaybe<Scalars['JSON']['input']>;
4010
+ location?: InputMaybe<Scalars['String']['input']>;
4011
+ membershipType?: InputMaybe<Scalars['String']['input']>;
4012
+ name?: InputMaybe<Scalars['String']['input']>;
4013
+ visibility?: InputMaybe<Scalars['String']['input']>;
4014
+ website?: InputMaybe<Scalars['String']['input']>;
4015
+ };
3689
4016
  export type UpdateDatabaseFileDto = {
3690
4017
  _id: Scalars['String']['input'];
3691
4018
  contentType?: InputMaybe<Scalars['String']['input']>;
@@ -3707,6 +4034,7 @@ export type UpdateEmailSegmentDto = {
3707
4034
  };
3708
4035
  export type UpdateFundingCampaignDto = {
3709
4036
  _id: Scalars['String']['input'];
4037
+ autoSendThankYou?: InputMaybe<Scalars['Boolean']['input']>;
3710
4038
  budget?: InputMaybe<CreateBudgetDto>;
3711
4039
  budgetMode: Scalars['String']['input'];
3712
4040
  cityId?: InputMaybe<Scalars['String']['input']>;
@@ -3717,6 +4045,8 @@ export type UpdateFundingCampaignDto = {
3717
4045
  fundsRequired: Scalars['Float']['input'];
3718
4046
  initialFundsObtained?: Scalars['Float']['input'];
3719
4047
  motivation: Scalars['String']['input'];
4048
+ thankYouMediaUrl?: InputMaybe<Scalars['String']['input']>;
4049
+ thankYouMessage?: InputMaybe<Scalars['String']['input']>;
3720
4050
  title: Scalars['String']['input'];
3721
4051
  video?: InputMaybe<CreateVideoDto>;
3722
4052
  website?: InputMaybe<Scalars['String']['input']>;
@@ -3751,6 +4081,14 @@ export type UpdateSportEventDto = {
3751
4081
  startDate?: InputMaybe<Scalars['DateTime']['input']>;
3752
4082
  website?: InputMaybe<Scalars['String']['input']>;
3753
4083
  };
4084
+ export type UpdateTeamInput = {
4085
+ description?: InputMaybe<Scalars['String']['input']>;
4086
+ joinPolicy?: InputMaybe<Scalars['String']['input']>;
4087
+ maxRosterSize?: InputMaybe<Scalars['Int']['input']>;
4088
+ name?: InputMaybe<Scalars['String']['input']>;
4089
+ teamId: Scalars['String']['input'];
4090
+ visibility?: InputMaybe<Scalars['String']['input']>;
4091
+ };
3754
4092
  export type UpdateTextDatabaseFileDto = {
3755
4093
  _id: Scalars['String']['input'];
3756
4094
  content?: InputMaybe<Scalars['String']['input']>;
@@ -3758,6 +4096,12 @@ export type UpdateTextDatabaseFileDto = {
3758
4096
  identifier?: InputMaybe<Scalars['String']['input']>;
3759
4097
  version?: InputMaybe<Scalars['String']['input']>;
3760
4098
  };
4099
+ export type UpdateThankYouTemplateDto = {
4100
+ autoSendThankYou?: InputMaybe<Scalars['Boolean']['input']>;
4101
+ campaignId: Scalars['String']['input'];
4102
+ thankYouMediaUrl?: InputMaybe<Scalars['String']['input']>;
4103
+ thankYouMessage?: InputMaybe<Scalars['String']['input']>;
4104
+ };
3761
4105
  export type UpdateUserSuspendedStatusDto = {
3762
4106
  suspended: Scalars['Boolean']['input'];
3763
4107
  userId: Scalars['String']['input'];
@@ -8653,6 +8997,9 @@ export type CampaignFieldsFragment = {
8653
8997
  vtxComissionPct: number;
8654
8998
  createdDate: string;
8655
8999
  endingDate: string;
9000
+ thankYouMessage?: string | null;
9001
+ thankYouMediaUrl?: string | null;
9002
+ autoSendThankYou: boolean;
8656
9003
  video?: {
8657
9004
  _id: string;
8658
9005
  source: string;
@@ -8767,6 +9114,16 @@ export type CampaignFieldsFragment = {
8767
9114
  useType?: string | null;
8768
9115
  } | null;
8769
9116
  };
9117
+ export type DonationThankYouFieldsFragment = {
9118
+ _id: string;
9119
+ message: string;
9120
+ mediaUrl?: string | null;
9121
+ autoSent: boolean;
9122
+ emailSent: boolean;
9123
+ donorEmail?: string | null;
9124
+ donorName?: string | null;
9125
+ sentDate: string;
9126
+ };
8770
9127
  export type BrowseCampaignFieldsFragment = {
8771
9128
  _id: string;
8772
9129
  title: string;
@@ -8941,6 +9298,9 @@ export type GetAthleteCampaignsQuery = {
8941
9298
  vtxComissionPct: number;
8942
9299
  createdDate: string;
8943
9300
  endingDate: string;
9301
+ thankYouMessage?: string | null;
9302
+ thankYouMediaUrl?: string | null;
9303
+ autoSendThankYou: boolean;
8944
9304
  athlete: {
8945
9305
  _id: string;
8946
9306
  firstName: string;
@@ -9385,6 +9745,9 @@ export type CreateFundingCampaignMutation = {
9385
9745
  vtxComissionPct: number;
9386
9746
  createdDate: string;
9387
9747
  endingDate: string;
9748
+ thankYouMessage?: string | null;
9749
+ thankYouMediaUrl?: string | null;
9750
+ autoSendThankYou: boolean;
9388
9751
  video?: {
9389
9752
  _id: string;
9390
9753
  source: string;
@@ -9518,6 +9881,9 @@ export type UpdateFundingCampaignMutation = {
9518
9881
  vtxComissionPct: number;
9519
9882
  createdDate: string;
9520
9883
  endingDate: string;
9884
+ thankYouMessage?: string | null;
9885
+ thankYouMediaUrl?: string | null;
9886
+ autoSendThankYou: boolean;
9521
9887
  video?: {
9522
9888
  _id: string;
9523
9889
  source: string;
@@ -9678,6 +10044,9 @@ export type SetFundingStatusMutation = {
9678
10044
  vtxComissionPct: number;
9679
10045
  createdDate: string;
9680
10046
  endingDate: string;
10047
+ thankYouMessage?: string | null;
10048
+ thankYouMediaUrl?: string | null;
10049
+ autoSendThankYou: boolean;
9681
10050
  video?: {
9682
10051
  _id: string;
9683
10052
  source: string;
@@ -9811,6 +10180,9 @@ export type SetCurrentCampaignMutation = {
9811
10180
  vtxComissionPct: number;
9812
10181
  createdDate: string;
9813
10182
  endingDate: string;
10183
+ thankYouMessage?: string | null;
10184
+ thankYouMediaUrl?: string | null;
10185
+ autoSendThankYou: boolean;
9814
10186
  video?: {
9815
10187
  _id: string;
9816
10188
  source: string;
@@ -10479,131 +10851,312 @@ export type GetTransactionsPaginatedQuery = {
10479
10851
  };
10480
10852
  };
10481
10853
  };
10482
- export type GetEmailCampaignsQueryVariables = Exact<{
10483
- status?: InputMaybe<Scalars['String']['input']>;
10484
- search?: InputMaybe<Scalars['String']['input']>;
10485
- page?: InputMaybe<Scalars['Int']['input']>;
10486
- limit?: InputMaybe<Scalars['Int']['input']>;
10487
- }>;
10488
- export type GetEmailCampaignsQuery = {
10489
- getEmailCampaigns: {
10490
- total: number;
10491
- campaigns: Array<{
10492
- _id: string;
10493
- subject: string;
10494
- templateId?: string | null;
10495
- templateName?: string | null;
10496
- htmlContent?: string | null;
10497
- audienceFilters: any;
10498
- segmentId?: string | null;
10499
- status: string;
10500
- scheduledFor?: string | null;
10501
- sentAt?: string | null;
10502
- recipientCount?: number | null;
10503
- createdBy: string;
10504
- createdAt: string;
10505
- updatedAt?: string | null;
10506
- testSentAt?: string | null;
10507
- deliveryStats?: {
10508
- delivered: number;
10509
- opens: number;
10510
- uniqueOpens: number;
10511
- clicks: number;
10512
- uniqueClicks: number;
10513
- bounces: number;
10514
- spamReports: number;
10515
- lastUpdated: string;
10516
- } | null;
10517
- segment?: {
10518
- _id: string;
10519
- name: string;
10520
- filters: any;
10521
- createdBy: string;
10522
- createdAt: string;
10523
- } | null;
10524
- }>;
10525
- };
10526
- };
10527
- export type GetAudiencePreviewQueryVariables = Exact<{
10528
- filters: AudienceFilterDto;
10529
- }>;
10530
- export type GetAudiencePreviewQuery = {
10531
- getAudiencePreview: {
10532
- total: number;
10533
- users: Array<{
10534
- firstName?: string | null;
10535
- lastName?: string | null;
10536
- email: string;
10537
- userType: string;
10538
- }>;
10539
- };
10540
- };
10541
- export type GetSendGridTemplatesQueryVariables = Exact<{
10542
- [key: string]: never;
10543
- }>;
10544
- export type GetSendGridTemplatesQuery = {
10545
- getSendGridTemplates: Array<{
10546
- id: string;
10547
- name: string;
10548
- subject?: string | null;
10549
- updatedAt?: string | null;
10550
- }>;
10551
- };
10552
- export type GetSendGridTemplatePreviewQueryVariables = Exact<{
10553
- templateId: Scalars['String']['input'];
10554
- }>;
10555
- export type GetSendGridTemplatePreviewQuery = {
10556
- getSendGridTemplatePreview?: string | null;
10557
- };
10558
- export type GetEmailSegmentsQueryVariables = Exact<{
10559
- [key: string]: never;
10854
+ export type CampaignThankYousQueryVariables = Exact<{
10855
+ campaignId: Scalars['String']['input'];
10560
10856
  }>;
10561
- export type GetEmailSegmentsQuery = {
10562
- getEmailSegments: Array<{
10857
+ export type CampaignThankYousQuery = {
10858
+ campaignThankYous: Array<{
10563
10859
  _id: string;
10564
- name: string;
10565
- filters: any;
10566
- createdBy: string;
10567
- createdAt: string;
10860
+ message: string;
10861
+ mediaUrl?: string | null;
10862
+ autoSent: boolean;
10863
+ emailSent: boolean;
10864
+ donorEmail?: string | null;
10865
+ donorName?: string | null;
10866
+ sentDate: string;
10568
10867
  }>;
10569
10868
  };
10570
- export type CreateEmailCampaignMutationVariables = Exact<{
10571
- input: CreateEmailCampaignDto;
10869
+ export type DonationThankYouQueryVariables = Exact<{
10870
+ donationId: Scalars['String']['input'];
10572
10871
  }>;
10573
- export type CreateEmailCampaignMutation = {
10574
- createEmailCampaign: {
10872
+ export type DonationThankYouQuery = {
10873
+ donationThankYou?: {
10575
10874
  _id: string;
10576
- subject: string;
10577
- status: string;
10578
- createdAt: string;
10579
- updatedAt?: string | null;
10580
- };
10875
+ message: string;
10876
+ mediaUrl?: string | null;
10877
+ autoSent: boolean;
10878
+ emailSent: boolean;
10879
+ donorEmail?: string | null;
10880
+ donorName?: string | null;
10881
+ sentDate: string;
10882
+ } | null;
10581
10883
  };
10582
- export type UpdateEmailCampaignMutationVariables = Exact<{
10583
- id: Scalars['String']['input'];
10584
- input: UpdateEmailCampaignDto;
10884
+ export type UpdateThankYouTemplateMutationVariables = Exact<{
10885
+ input: UpdateThankYouTemplateDto;
10585
10886
  }>;
10586
- export type UpdateEmailCampaignMutation = {
10587
- updateEmailCampaign: {
10887
+ export type UpdateThankYouTemplateMutation = {
10888
+ updateThankYouTemplate: {
10588
10889
  _id: string;
10589
- subject: string;
10890
+ budgetMode: string;
10590
10891
  status: string;
10591
- updatedAt?: string | null;
10592
- };
10593
- };
10594
- export type DeleteEmailCampaignMutationVariables = Exact<{
10595
- id: Scalars['String']['input'];
10596
- }>;
10597
- export type DeleteEmailCampaignMutation = {
10598
- deleteEmailCampaign: boolean;
10599
- };
10600
- export type CloneEmailCampaignMutationVariables = Exact<{
10601
- id: Scalars['String']['input'];
10602
- }>;
10603
- export type CloneEmailCampaignMutation = {
10604
- cloneEmailCampaign: {
10605
- _id: string;
10606
- subject: string;
10892
+ title: string;
10893
+ slug?: string | null;
10894
+ motivation?: string | null;
10895
+ website?: string | null;
10896
+ fundsRequired: number;
10897
+ initialFundsObtained: number;
10898
+ fundsObtained: number;
10899
+ vtxComissionPct: number;
10900
+ createdDate: string;
10901
+ endingDate: string;
10902
+ thankYouMessage?: string | null;
10903
+ thankYouMediaUrl?: string | null;
10904
+ autoSendThankYou: boolean;
10905
+ video?: {
10906
+ _id: string;
10907
+ source: string;
10908
+ url: string;
10909
+ sourceData: string;
10910
+ } | null;
10911
+ location?: {
10912
+ userProvidedLatitude?: number | null;
10913
+ userProvidedLongitude?: number | null;
10914
+ cityNameGeocode?: string | null;
10915
+ stateNameGeocode?: string | null;
10916
+ countryIso2CodeGeocode?: string | null;
10917
+ timeZoneGeocode?: string | null;
10918
+ latitudeGeocode?: number | null;
10919
+ longitudeGeocode?: number | null;
10920
+ city?: {
10921
+ _id: string;
10922
+ name: string;
10923
+ localizedName: string;
10924
+ latitude?: number | null;
10925
+ longitude?: number | null;
10926
+ timezone?: string | null;
10927
+ state?: {
10928
+ _id: string;
10929
+ name: string;
10930
+ country?: {
10931
+ _id: string;
10932
+ name: string;
10933
+ } | null;
10934
+ } | null;
10935
+ } | null;
10936
+ } | null;
10937
+ budget?: {
10938
+ initialFunds: number;
10939
+ totalRequired: number;
10940
+ items?: Array<{
10941
+ _id: string;
10942
+ quantity: number;
10943
+ concept: string;
10944
+ itemCost: number;
10945
+ unit?: string | null;
10946
+ }> | null;
10947
+ } | null;
10948
+ competitions?: Array<{
10949
+ _id: string;
10950
+ participationDate?: string | null;
10951
+ competitionNumber?: string | null;
10952
+ fundRaisingCampaignIds?: Array<string> | null;
10953
+ event: {
10954
+ _id: string;
10955
+ name: string;
10956
+ eventWebSite?: string | null;
10957
+ startDate: string;
10958
+ endDate?: string | null;
10959
+ verified: boolean;
10960
+ mainSport?: {
10961
+ _id: string;
10962
+ name: string;
10963
+ } | null;
10964
+ banner?: {
10965
+ _id: string;
10966
+ name?: string | null;
10967
+ contentType?: string | null;
10968
+ size?: number | null;
10969
+ useType?: string | null;
10970
+ url: string;
10971
+ key: string;
10972
+ } | null;
10973
+ location?: {
10974
+ _id: string;
10975
+ userProvidedLatitude?: number | null;
10976
+ userProvidedLongitude?: number | null;
10977
+ cityNameGeocode?: string | null;
10978
+ stateNameGeocode?: string | null;
10979
+ countryIso2CodeGeocode?: string | null;
10980
+ timeZoneGeocode?: string | null;
10981
+ latitudeGeocode?: number | null;
10982
+ longitudeGeocode?: number | null;
10983
+ city?: {
10984
+ _id: string;
10985
+ name: string;
10986
+ localizedName: string;
10987
+ latitude?: number | null;
10988
+ longitude?: number | null;
10989
+ timezone?: string | null;
10990
+ state?: {
10991
+ _id: string;
10992
+ name: string;
10993
+ country?: {
10994
+ _id: string;
10995
+ name: string;
10996
+ } | null;
10997
+ } | null;
10998
+ } | null;
10999
+ } | null;
11000
+ };
11001
+ result?: {
11002
+ resultType: string;
11003
+ position?: number | null;
11004
+ score?: string | null;
11005
+ finishTimeMS?: number | null;
11006
+ resultWebLink?: string | null;
11007
+ } | null;
11008
+ }> | null;
11009
+ coverImage?: {
11010
+ _id: string;
11011
+ url: string;
11012
+ key: string;
11013
+ name?: string | null;
11014
+ contentType?: string | null;
11015
+ size?: number | null;
11016
+ useType?: string | null;
11017
+ } | null;
11018
+ };
11019
+ };
11020
+ export type SendThankYouMutationVariables = Exact<{
11021
+ input: SendThankYouDto;
11022
+ }>;
11023
+ export type SendThankYouMutation = {
11024
+ sendThankYou: {
11025
+ _id: string;
11026
+ message: string;
11027
+ mediaUrl?: string | null;
11028
+ autoSent: boolean;
11029
+ emailSent: boolean;
11030
+ donorEmail?: string | null;
11031
+ donorName?: string | null;
11032
+ sentDate: string;
11033
+ };
11034
+ };
11035
+ export type GetEmailCampaignsQueryVariables = Exact<{
11036
+ status?: InputMaybe<Scalars['String']['input']>;
11037
+ search?: InputMaybe<Scalars['String']['input']>;
11038
+ page?: InputMaybe<Scalars['Int']['input']>;
11039
+ limit?: InputMaybe<Scalars['Int']['input']>;
11040
+ }>;
11041
+ export type GetEmailCampaignsQuery = {
11042
+ getEmailCampaigns: {
11043
+ total: number;
11044
+ campaigns: Array<{
11045
+ _id: string;
11046
+ subject: string;
11047
+ templateId?: string | null;
11048
+ templateName?: string | null;
11049
+ htmlContent?: string | null;
11050
+ audienceFilters: any;
11051
+ segmentId?: string | null;
11052
+ status: string;
11053
+ scheduledFor?: string | null;
11054
+ sentAt?: string | null;
11055
+ recipientCount?: number | null;
11056
+ createdBy: string;
11057
+ createdAt: string;
11058
+ updatedAt?: string | null;
11059
+ testSentAt?: string | null;
11060
+ deliveryStats?: {
11061
+ delivered: number;
11062
+ opens: number;
11063
+ uniqueOpens: number;
11064
+ clicks: number;
11065
+ uniqueClicks: number;
11066
+ bounces: number;
11067
+ spamReports: number;
11068
+ lastUpdated: string;
11069
+ } | null;
11070
+ segment?: {
11071
+ _id: string;
11072
+ name: string;
11073
+ filters: any;
11074
+ createdBy: string;
11075
+ createdAt: string;
11076
+ } | null;
11077
+ }>;
11078
+ };
11079
+ };
11080
+ export type GetAudiencePreviewQueryVariables = Exact<{
11081
+ filters: AudienceFilterDto;
11082
+ }>;
11083
+ export type GetAudiencePreviewQuery = {
11084
+ getAudiencePreview: {
11085
+ total: number;
11086
+ users: Array<{
11087
+ firstName?: string | null;
11088
+ lastName?: string | null;
11089
+ email: string;
11090
+ userType: string;
11091
+ }>;
11092
+ };
11093
+ };
11094
+ export type GetSendGridTemplatesQueryVariables = Exact<{
11095
+ [key: string]: never;
11096
+ }>;
11097
+ export type GetSendGridTemplatesQuery = {
11098
+ getSendGridTemplates: Array<{
11099
+ id: string;
11100
+ name: string;
11101
+ subject?: string | null;
11102
+ updatedAt?: string | null;
11103
+ }>;
11104
+ };
11105
+ export type GetSendGridTemplatePreviewQueryVariables = Exact<{
11106
+ templateId: Scalars['String']['input'];
11107
+ }>;
11108
+ export type GetSendGridTemplatePreviewQuery = {
11109
+ getSendGridTemplatePreview?: string | null;
11110
+ };
11111
+ export type GetEmailSegmentsQueryVariables = Exact<{
11112
+ [key: string]: never;
11113
+ }>;
11114
+ export type GetEmailSegmentsQuery = {
11115
+ getEmailSegments: Array<{
11116
+ _id: string;
11117
+ name: string;
11118
+ filters: any;
11119
+ createdBy: string;
11120
+ createdAt: string;
11121
+ }>;
11122
+ };
11123
+ export type CreateEmailCampaignMutationVariables = Exact<{
11124
+ input: CreateEmailCampaignDto;
11125
+ }>;
11126
+ export type CreateEmailCampaignMutation = {
11127
+ createEmailCampaign: {
11128
+ _id: string;
11129
+ subject: string;
11130
+ status: string;
11131
+ createdAt: string;
11132
+ updatedAt?: string | null;
11133
+ };
11134
+ };
11135
+ export type UpdateEmailCampaignMutationVariables = Exact<{
11136
+ id: Scalars['String']['input'];
11137
+ input: UpdateEmailCampaignDto;
11138
+ }>;
11139
+ export type UpdateEmailCampaignMutation = {
11140
+ updateEmailCampaign: {
11141
+ _id: string;
11142
+ subject: string;
11143
+ status: string;
11144
+ updatedAt?: string | null;
11145
+ };
11146
+ };
11147
+ export type DeleteEmailCampaignMutationVariables = Exact<{
11148
+ id: Scalars['String']['input'];
11149
+ }>;
11150
+ export type DeleteEmailCampaignMutation = {
11151
+ deleteEmailCampaign: boolean;
11152
+ };
11153
+ export type CloneEmailCampaignMutationVariables = Exact<{
11154
+ id: Scalars['String']['input'];
11155
+ }>;
11156
+ export type CloneEmailCampaignMutation = {
11157
+ cloneEmailCampaign: {
11158
+ _id: string;
11159
+ subject: string;
10607
11160
  status: string;
10608
11161
  createdAt: string;
10609
11162
  };
@@ -12718,6 +13271,1112 @@ export type CreateCityMutation = {
12718
13271
  timezone?: string | null;
12719
13272
  };
12720
13273
  };
13274
+ export type TeamFieldsFragment = {
13275
+ _id: string;
13276
+ name: string;
13277
+ description?: string | null;
13278
+ approved?: boolean | null;
13279
+ joinPolicy?: string | null;
13280
+ maxRosterSize?: number | null;
13281
+ visibility?: string | null;
13282
+ stripeAccountId?: string | null;
13283
+ vtxScore?: number | null;
13284
+ sports?: Array<{
13285
+ _id: string;
13286
+ name: string;
13287
+ }> | null;
13288
+ logo?: {
13289
+ _id: string;
13290
+ url: string;
13291
+ key: string;
13292
+ } | null;
13293
+ banner?: {
13294
+ _id: string;
13295
+ url: string;
13296
+ key: string;
13297
+ } | null;
13298
+ club?: {
13299
+ _id: string;
13300
+ name: string;
13301
+ logo?: {
13302
+ _id: string;
13303
+ url: string;
13304
+ key: string;
13305
+ } | null;
13306
+ } | null;
13307
+ athletes?: Array<{
13308
+ _id: string;
13309
+ role: string;
13310
+ status: string;
13311
+ joinedAt?: string | null;
13312
+ leftAt?: string | null;
13313
+ athlete?: {
13314
+ _id: string;
13315
+ firstName?: string | null;
13316
+ lastName?: string | null;
13317
+ screenName?: string | null;
13318
+ vtxScore?: number | null;
13319
+ } | null;
13320
+ sport?: {
13321
+ _id: string;
13322
+ name: string;
13323
+ } | null;
13324
+ }> | null;
13325
+ };
13326
+ export type ClubFieldsFragment = {
13327
+ _id: string;
13328
+ name: string;
13329
+ description?: string | null;
13330
+ location?: string | null;
13331
+ website?: string | null;
13332
+ membershipType: string;
13333
+ feeStructure?: any | null;
13334
+ approved?: boolean | null;
13335
+ visibility: string;
13336
+ stripeAccountId?: string | null;
13337
+ sports?: Array<{
13338
+ _id: string;
13339
+ name: string;
13340
+ }> | null;
13341
+ logo?: {
13342
+ _id: string;
13343
+ url: string;
13344
+ key: string;
13345
+ } | null;
13346
+ banner?: {
13347
+ _id: string;
13348
+ url: string;
13349
+ key: string;
13350
+ } | null;
13351
+ teams?: Array<{
13352
+ _id: string;
13353
+ name: string;
13354
+ vtxScore?: number | null;
13355
+ sports?: Array<{
13356
+ _id: string;
13357
+ name: string;
13358
+ }> | null;
13359
+ logo?: {
13360
+ _id: string;
13361
+ url: string;
13362
+ key: string;
13363
+ } | null;
13364
+ }> | null;
13365
+ };
13366
+ export type AthleteTeamFieldsFragment = {
13367
+ _id: string;
13368
+ role: string;
13369
+ status: string;
13370
+ joinedAt?: string | null;
13371
+ leftAt?: string | null;
13372
+ athlete?: {
13373
+ _id: string;
13374
+ firstName?: string | null;
13375
+ lastName?: string | null;
13376
+ screenName?: string | null;
13377
+ vtxScore?: number | null;
13378
+ profilePicture?: {
13379
+ _id: string;
13380
+ url: string;
13381
+ key: string;
13382
+ } | null;
13383
+ } | null;
13384
+ sport?: {
13385
+ _id: string;
13386
+ name: string;
13387
+ } | null;
13388
+ };
13389
+ export type AthleteClubFieldsFragment = {
13390
+ _id: string;
13391
+ role: string;
13392
+ status: string;
13393
+ joinedAt?: string | null;
13394
+ leftAt?: string | null;
13395
+ athlete?: {
13396
+ _id: string;
13397
+ firstName?: string | null;
13398
+ lastName?: string | null;
13399
+ screenName?: string | null;
13400
+ profilePicture?: {
13401
+ _id: string;
13402
+ url: string;
13403
+ key: string;
13404
+ } | null;
13405
+ } | null;
13406
+ club?: {
13407
+ _id: string;
13408
+ name: string;
13409
+ } | null;
13410
+ };
13411
+ export type TeamAnalyticsFieldsFragment = {
13412
+ teamId: string;
13413
+ teamName: string;
13414
+ vtxScore?: number | null;
13415
+ athleteCount: number;
13416
+ rosterSize?: number | null;
13417
+ vtxScoreHistory?: Array<{
13418
+ date: string;
13419
+ score: number;
13420
+ }> | null;
13421
+ topPerformers?: Array<{
13422
+ athleteId: string;
13423
+ athleteName: string;
13424
+ athletePhoto?: string | null;
13425
+ sport?: string | null;
13426
+ vtxScore: number;
13427
+ rank: number;
13428
+ tpiScore?: number | null;
13429
+ spiScore?: number | null;
13430
+ apiScore?: number | null;
13431
+ }> | null;
13432
+ };
13433
+ export type TeamLeaderboardEntryFieldsFragment = {
13434
+ athleteId: string;
13435
+ athleteName: string;
13436
+ athletePhoto?: string | null;
13437
+ sport?: string | null;
13438
+ vtxScore: number;
13439
+ rank: number;
13440
+ tpiScore?: number | null;
13441
+ spiScore?: number | null;
13442
+ apiScore?: number | null;
13443
+ };
13444
+ export type FindTeamByIdQueryVariables = Exact<{
13445
+ teamId: Scalars['String']['input'];
13446
+ }>;
13447
+ export type FindTeamByIdQuery = {
13448
+ findTeamById: {
13449
+ _id: string;
13450
+ name: string;
13451
+ description?: string | null;
13452
+ approved?: boolean | null;
13453
+ joinPolicy?: string | null;
13454
+ maxRosterSize?: number | null;
13455
+ visibility?: string | null;
13456
+ stripeAccountId?: string | null;
13457
+ vtxScore?: number | null;
13458
+ sports?: Array<{
13459
+ _id: string;
13460
+ name: string;
13461
+ }> | null;
13462
+ logo?: {
13463
+ _id: string;
13464
+ url: string;
13465
+ key: string;
13466
+ } | null;
13467
+ banner?: {
13468
+ _id: string;
13469
+ url: string;
13470
+ key: string;
13471
+ } | null;
13472
+ club?: {
13473
+ _id: string;
13474
+ name: string;
13475
+ logo?: {
13476
+ _id: string;
13477
+ url: string;
13478
+ key: string;
13479
+ } | null;
13480
+ } | null;
13481
+ athletes?: Array<{
13482
+ _id: string;
13483
+ role: string;
13484
+ status: string;
13485
+ joinedAt?: string | null;
13486
+ leftAt?: string | null;
13487
+ athlete?: {
13488
+ _id: string;
13489
+ firstName?: string | null;
13490
+ lastName?: string | null;
13491
+ screenName?: string | null;
13492
+ vtxScore?: number | null;
13493
+ } | null;
13494
+ sport?: {
13495
+ _id: string;
13496
+ name: string;
13497
+ } | null;
13498
+ }> | null;
13499
+ };
13500
+ };
13501
+ export type FindTeamsQueryVariables = Exact<{
13502
+ sportId?: InputMaybe<Scalars['String']['input']>;
13503
+ clubId?: InputMaybe<Scalars['String']['input']>;
13504
+ }>;
13505
+ export type FindTeamsQuery = {
13506
+ findTeams: Array<{
13507
+ _id: string;
13508
+ name: string;
13509
+ description?: string | null;
13510
+ approved?: boolean | null;
13511
+ joinPolicy?: string | null;
13512
+ maxRosterSize?: number | null;
13513
+ visibility?: string | null;
13514
+ stripeAccountId?: string | null;
13515
+ vtxScore?: number | null;
13516
+ sports?: Array<{
13517
+ _id: string;
13518
+ name: string;
13519
+ }> | null;
13520
+ logo?: {
13521
+ _id: string;
13522
+ url: string;
13523
+ key: string;
13524
+ } | null;
13525
+ banner?: {
13526
+ _id: string;
13527
+ url: string;
13528
+ key: string;
13529
+ } | null;
13530
+ club?: {
13531
+ _id: string;
13532
+ name: string;
13533
+ logo?: {
13534
+ _id: string;
13535
+ url: string;
13536
+ key: string;
13537
+ } | null;
13538
+ } | null;
13539
+ athletes?: Array<{
13540
+ _id: string;
13541
+ role: string;
13542
+ status: string;
13543
+ joinedAt?: string | null;
13544
+ leftAt?: string | null;
13545
+ athlete?: {
13546
+ _id: string;
13547
+ firstName?: string | null;
13548
+ lastName?: string | null;
13549
+ screenName?: string | null;
13550
+ vtxScore?: number | null;
13551
+ } | null;
13552
+ sport?: {
13553
+ _id: string;
13554
+ name: string;
13555
+ } | null;
13556
+ }> | null;
13557
+ }>;
13558
+ };
13559
+ export type FindAllTeamsQueryVariables = Exact<{
13560
+ [key: string]: never;
13561
+ }>;
13562
+ export type FindAllTeamsQuery = {
13563
+ findAllTeams: Array<{
13564
+ _id: string;
13565
+ name: string;
13566
+ description?: string | null;
13567
+ approved?: boolean | null;
13568
+ joinPolicy?: string | null;
13569
+ maxRosterSize?: number | null;
13570
+ visibility?: string | null;
13571
+ stripeAccountId?: string | null;
13572
+ vtxScore?: number | null;
13573
+ sports?: Array<{
13574
+ _id: string;
13575
+ name: string;
13576
+ }> | null;
13577
+ logo?: {
13578
+ _id: string;
13579
+ url: string;
13580
+ key: string;
13581
+ } | null;
13582
+ banner?: {
13583
+ _id: string;
13584
+ url: string;
13585
+ key: string;
13586
+ } | null;
13587
+ club?: {
13588
+ _id: string;
13589
+ name: string;
13590
+ logo?: {
13591
+ _id: string;
13592
+ url: string;
13593
+ key: string;
13594
+ } | null;
13595
+ } | null;
13596
+ athletes?: Array<{
13597
+ _id: string;
13598
+ role: string;
13599
+ status: string;
13600
+ joinedAt?: string | null;
13601
+ leftAt?: string | null;
13602
+ athlete?: {
13603
+ _id: string;
13604
+ firstName?: string | null;
13605
+ lastName?: string | null;
13606
+ screenName?: string | null;
13607
+ vtxScore?: number | null;
13608
+ } | null;
13609
+ sport?: {
13610
+ _id: string;
13611
+ name: string;
13612
+ } | null;
13613
+ }> | null;
13614
+ }>;
13615
+ };
13616
+ export type GetTeamRosterQueryVariables = Exact<{
13617
+ teamId: Scalars['String']['input'];
13618
+ }>;
13619
+ export type GetTeamRosterQuery = {
13620
+ getTeamRoster: Array<{
13621
+ _id: string;
13622
+ role: string;
13623
+ status: string;
13624
+ joinedAt?: string | null;
13625
+ leftAt?: string | null;
13626
+ athlete?: {
13627
+ _id: string;
13628
+ firstName?: string | null;
13629
+ lastName?: string | null;
13630
+ screenName?: string | null;
13631
+ vtxScore?: number | null;
13632
+ profilePicture?: {
13633
+ _id: string;
13634
+ url: string;
13635
+ key: string;
13636
+ } | null;
13637
+ } | null;
13638
+ sport?: {
13639
+ _id: string;
13640
+ name: string;
13641
+ } | null;
13642
+ }>;
13643
+ };
13644
+ export type GetTeamAnalyticsQueryVariables = Exact<{
13645
+ teamId: Scalars['String']['input'];
13646
+ }>;
13647
+ export type GetTeamAnalyticsQuery = {
13648
+ getTeamAnalytics: {
13649
+ teamId: string;
13650
+ teamName: string;
13651
+ vtxScore?: number | null;
13652
+ athleteCount: number;
13653
+ rosterSize?: number | null;
13654
+ vtxScoreHistory?: Array<{
13655
+ date: string;
13656
+ score: number;
13657
+ }> | null;
13658
+ topPerformers?: Array<{
13659
+ athleteId: string;
13660
+ athleteName: string;
13661
+ athletePhoto?: string | null;
13662
+ sport?: string | null;
13663
+ vtxScore: number;
13664
+ rank: number;
13665
+ tpiScore?: number | null;
13666
+ spiScore?: number | null;
13667
+ apiScore?: number | null;
13668
+ }> | null;
13669
+ };
13670
+ };
13671
+ export type GetTeamLeaderboardQueryVariables = Exact<{
13672
+ teamId: Scalars['String']['input'];
13673
+ }>;
13674
+ export type GetTeamLeaderboardQuery = {
13675
+ getTeamLeaderboard: Array<{
13676
+ athleteId: string;
13677
+ athleteName: string;
13678
+ athletePhoto?: string | null;
13679
+ sport?: string | null;
13680
+ vtxScore: number;
13681
+ rank: number;
13682
+ tpiScore?: number | null;
13683
+ spiScore?: number | null;
13684
+ apiScore?: number | null;
13685
+ }>;
13686
+ };
13687
+ export type GetTeamDashboardQueryVariables = Exact<{
13688
+ teamId: Scalars['String']['input'];
13689
+ }>;
13690
+ export type GetTeamDashboardQuery = {
13691
+ getTeamDashboard: {
13692
+ analytics: {
13693
+ teamId: string;
13694
+ teamName: string;
13695
+ vtxScore?: number | null;
13696
+ athleteCount: number;
13697
+ rosterSize?: number | null;
13698
+ vtxScoreHistory?: Array<{
13699
+ date: string;
13700
+ score: number;
13701
+ }> | null;
13702
+ topPerformers?: Array<{
13703
+ athleteId: string;
13704
+ athleteName: string;
13705
+ athletePhoto?: string | null;
13706
+ sport?: string | null;
13707
+ vtxScore: number;
13708
+ rank: number;
13709
+ tpiScore?: number | null;
13710
+ spiScore?: number | null;
13711
+ apiScore?: number | null;
13712
+ }> | null;
13713
+ };
13714
+ roster: {
13715
+ totalActive: number;
13716
+ totalInactive: number;
13717
+ recentJoins: number;
13718
+ recentDepartures: number;
13719
+ };
13720
+ leaderboard: Array<{
13721
+ athleteId: string;
13722
+ athleteName: string;
13723
+ athletePhoto?: string | null;
13724
+ sport?: string | null;
13725
+ vtxScore: number;
13726
+ rank: number;
13727
+ tpiScore?: number | null;
13728
+ spiScore?: number | null;
13729
+ apiScore?: number | null;
13730
+ }>;
13731
+ };
13732
+ };
13733
+ export type GetTeamStripeAccountStatusQueryVariables = Exact<{
13734
+ teamId: Scalars['String']['input'];
13735
+ }>;
13736
+ export type GetTeamStripeAccountStatusQuery = {
13737
+ getTeamStripeAccountStatus?: {
13738
+ chargesEnabled: boolean;
13739
+ payoutsEnabled: boolean;
13740
+ detailsSubmitted: boolean;
13741
+ } | null;
13742
+ };
13743
+ export type CreateTeamMutationVariables = Exact<{
13744
+ input: CreateTeamInput;
13745
+ }>;
13746
+ export type CreateTeamMutation = {
13747
+ createTeam: {
13748
+ _id: string;
13749
+ name: string;
13750
+ description?: string | null;
13751
+ approved?: boolean | null;
13752
+ joinPolicy?: string | null;
13753
+ maxRosterSize?: number | null;
13754
+ visibility?: string | null;
13755
+ stripeAccountId?: string | null;
13756
+ vtxScore?: number | null;
13757
+ sports?: Array<{
13758
+ _id: string;
13759
+ name: string;
13760
+ }> | null;
13761
+ logo?: {
13762
+ _id: string;
13763
+ url: string;
13764
+ key: string;
13765
+ } | null;
13766
+ banner?: {
13767
+ _id: string;
13768
+ url: string;
13769
+ key: string;
13770
+ } | null;
13771
+ club?: {
13772
+ _id: string;
13773
+ name: string;
13774
+ logo?: {
13775
+ _id: string;
13776
+ url: string;
13777
+ key: string;
13778
+ } | null;
13779
+ } | null;
13780
+ athletes?: Array<{
13781
+ _id: string;
13782
+ role: string;
13783
+ status: string;
13784
+ joinedAt?: string | null;
13785
+ leftAt?: string | null;
13786
+ athlete?: {
13787
+ _id: string;
13788
+ firstName?: string | null;
13789
+ lastName?: string | null;
13790
+ screenName?: string | null;
13791
+ vtxScore?: number | null;
13792
+ } | null;
13793
+ sport?: {
13794
+ _id: string;
13795
+ name: string;
13796
+ } | null;
13797
+ }> | null;
13798
+ };
13799
+ };
13800
+ export type UpdateTeamMutationVariables = Exact<{
13801
+ input: UpdateTeamInput;
13802
+ }>;
13803
+ export type UpdateTeamMutation = {
13804
+ updateTeam: {
13805
+ _id: string;
13806
+ name: string;
13807
+ description?: string | null;
13808
+ approved?: boolean | null;
13809
+ joinPolicy?: string | null;
13810
+ maxRosterSize?: number | null;
13811
+ visibility?: string | null;
13812
+ stripeAccountId?: string | null;
13813
+ vtxScore?: number | null;
13814
+ sports?: Array<{
13815
+ _id: string;
13816
+ name: string;
13817
+ }> | null;
13818
+ logo?: {
13819
+ _id: string;
13820
+ url: string;
13821
+ key: string;
13822
+ } | null;
13823
+ banner?: {
13824
+ _id: string;
13825
+ url: string;
13826
+ key: string;
13827
+ } | null;
13828
+ club?: {
13829
+ _id: string;
13830
+ name: string;
13831
+ logo?: {
13832
+ _id: string;
13833
+ url: string;
13834
+ key: string;
13835
+ } | null;
13836
+ } | null;
13837
+ athletes?: Array<{
13838
+ _id: string;
13839
+ role: string;
13840
+ status: string;
13841
+ joinedAt?: string | null;
13842
+ leftAt?: string | null;
13843
+ athlete?: {
13844
+ _id: string;
13845
+ firstName?: string | null;
13846
+ lastName?: string | null;
13847
+ screenName?: string | null;
13848
+ vtxScore?: number | null;
13849
+ } | null;
13850
+ sport?: {
13851
+ _id: string;
13852
+ name: string;
13853
+ } | null;
13854
+ }> | null;
13855
+ };
13856
+ };
13857
+ export type JoinTeamMutationVariables = Exact<{
13858
+ input: JoinTeamInput;
13859
+ }>;
13860
+ export type JoinTeamMutation = {
13861
+ joinTeam: {
13862
+ _id: string;
13863
+ role: string;
13864
+ status: string;
13865
+ joinedAt?: string | null;
13866
+ leftAt?: string | null;
13867
+ athlete?: {
13868
+ _id: string;
13869
+ firstName?: string | null;
13870
+ lastName?: string | null;
13871
+ screenName?: string | null;
13872
+ vtxScore?: number | null;
13873
+ profilePicture?: {
13874
+ _id: string;
13875
+ url: string;
13876
+ key: string;
13877
+ } | null;
13878
+ } | null;
13879
+ sport?: {
13880
+ _id: string;
13881
+ name: string;
13882
+ } | null;
13883
+ };
13884
+ };
13885
+ export type LeaveTeamMutationVariables = Exact<{
13886
+ teamId: Scalars['String']['input'];
13887
+ }>;
13888
+ export type LeaveTeamMutation = {
13889
+ leaveTeam: {
13890
+ _id: string;
13891
+ role: string;
13892
+ status: string;
13893
+ joinedAt?: string | null;
13894
+ leftAt?: string | null;
13895
+ athlete?: {
13896
+ _id: string;
13897
+ firstName?: string | null;
13898
+ lastName?: string | null;
13899
+ screenName?: string | null;
13900
+ vtxScore?: number | null;
13901
+ profilePicture?: {
13902
+ _id: string;
13903
+ url: string;
13904
+ key: string;
13905
+ } | null;
13906
+ } | null;
13907
+ sport?: {
13908
+ _id: string;
13909
+ name: string;
13910
+ } | null;
13911
+ };
13912
+ };
13913
+ export type InviteToTeamMutationVariables = Exact<{
13914
+ teamId: Scalars['String']['input'];
13915
+ athleteId: Scalars['String']['input'];
13916
+ sportId: Scalars['String']['input'];
13917
+ }>;
13918
+ export type InviteToTeamMutation = {
13919
+ inviteToTeam: {
13920
+ _id: string;
13921
+ role: string;
13922
+ status: string;
13923
+ joinedAt?: string | null;
13924
+ leftAt?: string | null;
13925
+ athlete?: {
13926
+ _id: string;
13927
+ firstName?: string | null;
13928
+ lastName?: string | null;
13929
+ screenName?: string | null;
13930
+ vtxScore?: number | null;
13931
+ profilePicture?: {
13932
+ _id: string;
13933
+ url: string;
13934
+ key: string;
13935
+ } | null;
13936
+ } | null;
13937
+ sport?: {
13938
+ _id: string;
13939
+ name: string;
13940
+ } | null;
13941
+ };
13942
+ };
13943
+ export type ManageTeamMemberMutationVariables = Exact<{
13944
+ input: ManageTeamMemberInput;
13945
+ }>;
13946
+ export type ManageTeamMemberMutation = {
13947
+ manageTeamMember: {
13948
+ _id: string;
13949
+ role: string;
13950
+ status: string;
13951
+ joinedAt?: string | null;
13952
+ leftAt?: string | null;
13953
+ athlete?: {
13954
+ _id: string;
13955
+ firstName?: string | null;
13956
+ lastName?: string | null;
13957
+ screenName?: string | null;
13958
+ vtxScore?: number | null;
13959
+ profilePicture?: {
13960
+ _id: string;
13961
+ url: string;
13962
+ key: string;
13963
+ } | null;
13964
+ } | null;
13965
+ sport?: {
13966
+ _id: string;
13967
+ name: string;
13968
+ } | null;
13969
+ };
13970
+ };
13971
+ export type CreateTeamStripeAccountMutationVariables = Exact<{
13972
+ teamId: Scalars['String']['input'];
13973
+ }>;
13974
+ export type CreateTeamStripeAccountMutation = {
13975
+ createTeamStripeAccount: string;
13976
+ };
13977
+ export type CreateTeamDonationCheckoutMutationVariables = Exact<{
13978
+ teamId: Scalars['String']['input'];
13979
+ amount: Scalars['Float']['input'];
13980
+ currency?: Scalars['String']['input'];
13981
+ donorEmail?: InputMaybe<Scalars['String']['input']>;
13982
+ donorName?: InputMaybe<Scalars['String']['input']>;
13983
+ }>;
13984
+ export type CreateTeamDonationCheckoutMutation = {
13985
+ createTeamDonationCheckout: string;
13986
+ };
13987
+ export type FindClubByIdQueryVariables = Exact<{
13988
+ clubId: Scalars['String']['input'];
13989
+ }>;
13990
+ export type FindClubByIdQuery = {
13991
+ findClubById: {
13992
+ _id: string;
13993
+ name: string;
13994
+ description?: string | null;
13995
+ location?: string | null;
13996
+ website?: string | null;
13997
+ membershipType: string;
13998
+ feeStructure?: any | null;
13999
+ approved?: boolean | null;
14000
+ visibility: string;
14001
+ stripeAccountId?: string | null;
14002
+ sports?: Array<{
14003
+ _id: string;
14004
+ name: string;
14005
+ }> | null;
14006
+ logo?: {
14007
+ _id: string;
14008
+ url: string;
14009
+ key: string;
14010
+ } | null;
14011
+ banner?: {
14012
+ _id: string;
14013
+ url: string;
14014
+ key: string;
14015
+ } | null;
14016
+ teams?: Array<{
14017
+ _id: string;
14018
+ name: string;
14019
+ vtxScore?: number | null;
14020
+ sports?: Array<{
14021
+ _id: string;
14022
+ name: string;
14023
+ }> | null;
14024
+ logo?: {
14025
+ _id: string;
14026
+ url: string;
14027
+ key: string;
14028
+ } | null;
14029
+ }> | null;
14030
+ };
14031
+ };
14032
+ export type FindClubsQueryVariables = Exact<{
14033
+ sportId?: InputMaybe<Scalars['String']['input']>;
14034
+ }>;
14035
+ export type FindClubsQuery = {
14036
+ findClubs: Array<{
14037
+ _id: string;
14038
+ name: string;
14039
+ description?: string | null;
14040
+ location?: string | null;
14041
+ website?: string | null;
14042
+ membershipType: string;
14043
+ feeStructure?: any | null;
14044
+ approved?: boolean | null;
14045
+ visibility: string;
14046
+ stripeAccountId?: string | null;
14047
+ sports?: Array<{
14048
+ _id: string;
14049
+ name: string;
14050
+ }> | null;
14051
+ logo?: {
14052
+ _id: string;
14053
+ url: string;
14054
+ key: string;
14055
+ } | null;
14056
+ banner?: {
14057
+ _id: string;
14058
+ url: string;
14059
+ key: string;
14060
+ } | null;
14061
+ teams?: Array<{
14062
+ _id: string;
14063
+ name: string;
14064
+ vtxScore?: number | null;
14065
+ sports?: Array<{
14066
+ _id: string;
14067
+ name: string;
14068
+ }> | null;
14069
+ logo?: {
14070
+ _id: string;
14071
+ url: string;
14072
+ key: string;
14073
+ } | null;
14074
+ }> | null;
14075
+ }>;
14076
+ };
14077
+ export type FindAllClubsQueryVariables = Exact<{
14078
+ [key: string]: never;
14079
+ }>;
14080
+ export type FindAllClubsQuery = {
14081
+ findAllClubs: Array<{
14082
+ _id: string;
14083
+ name: string;
14084
+ description?: string | null;
14085
+ location?: string | null;
14086
+ website?: string | null;
14087
+ membershipType: string;
14088
+ feeStructure?: any | null;
14089
+ approved?: boolean | null;
14090
+ visibility: string;
14091
+ stripeAccountId?: string | null;
14092
+ sports?: Array<{
14093
+ _id: string;
14094
+ name: string;
14095
+ }> | null;
14096
+ logo?: {
14097
+ _id: string;
14098
+ url: string;
14099
+ key: string;
14100
+ } | null;
14101
+ banner?: {
14102
+ _id: string;
14103
+ url: string;
14104
+ key: string;
14105
+ } | null;
14106
+ teams?: Array<{
14107
+ _id: string;
14108
+ name: string;
14109
+ vtxScore?: number | null;
14110
+ sports?: Array<{
14111
+ _id: string;
14112
+ name: string;
14113
+ }> | null;
14114
+ logo?: {
14115
+ _id: string;
14116
+ url: string;
14117
+ key: string;
14118
+ } | null;
14119
+ }> | null;
14120
+ }>;
14121
+ };
14122
+ export type GetClubMembersQueryVariables = Exact<{
14123
+ clubId: Scalars['String']['input'];
14124
+ }>;
14125
+ export type GetClubMembersQuery = {
14126
+ getClubMembers: Array<{
14127
+ _id: string;
14128
+ role: string;
14129
+ status: string;
14130
+ joinedAt?: string | null;
14131
+ leftAt?: string | null;
14132
+ athlete?: {
14133
+ _id: string;
14134
+ firstName?: string | null;
14135
+ lastName?: string | null;
14136
+ screenName?: string | null;
14137
+ profilePicture?: {
14138
+ _id: string;
14139
+ url: string;
14140
+ key: string;
14141
+ } | null;
14142
+ } | null;
14143
+ club?: {
14144
+ _id: string;
14145
+ name: string;
14146
+ } | null;
14147
+ }>;
14148
+ };
14149
+ export type GetClubStripeAccountStatusQueryVariables = Exact<{
14150
+ clubId: Scalars['String']['input'];
14151
+ }>;
14152
+ export type GetClubStripeAccountStatusQuery = {
14153
+ getClubStripeAccountStatus?: {
14154
+ chargesEnabled: boolean;
14155
+ payoutsEnabled: boolean;
14156
+ detailsSubmitted: boolean;
14157
+ } | null;
14158
+ };
14159
+ export type CreateClubMutationVariables = Exact<{
14160
+ input: CreateClubInput;
14161
+ }>;
14162
+ export type CreateClubMutation = {
14163
+ createClub: {
14164
+ _id: string;
14165
+ name: string;
14166
+ description?: string | null;
14167
+ location?: string | null;
14168
+ website?: string | null;
14169
+ membershipType: string;
14170
+ feeStructure?: any | null;
14171
+ approved?: boolean | null;
14172
+ visibility: string;
14173
+ stripeAccountId?: string | null;
14174
+ sports?: Array<{
14175
+ _id: string;
14176
+ name: string;
14177
+ }> | null;
14178
+ logo?: {
14179
+ _id: string;
14180
+ url: string;
14181
+ key: string;
14182
+ } | null;
14183
+ banner?: {
14184
+ _id: string;
14185
+ url: string;
14186
+ key: string;
14187
+ } | null;
14188
+ teams?: Array<{
14189
+ _id: string;
14190
+ name: string;
14191
+ vtxScore?: number | null;
14192
+ sports?: Array<{
14193
+ _id: string;
14194
+ name: string;
14195
+ }> | null;
14196
+ logo?: {
14197
+ _id: string;
14198
+ url: string;
14199
+ key: string;
14200
+ } | null;
14201
+ }> | null;
14202
+ };
14203
+ };
14204
+ export type UpdateClubMutationVariables = Exact<{
14205
+ input: UpdateClubInput;
14206
+ }>;
14207
+ export type UpdateClubMutation = {
14208
+ updateClub: {
14209
+ _id: string;
14210
+ name: string;
14211
+ description?: string | null;
14212
+ location?: string | null;
14213
+ website?: string | null;
14214
+ membershipType: string;
14215
+ feeStructure?: any | null;
14216
+ approved?: boolean | null;
14217
+ visibility: string;
14218
+ stripeAccountId?: string | null;
14219
+ sports?: Array<{
14220
+ _id: string;
14221
+ name: string;
14222
+ }> | null;
14223
+ logo?: {
14224
+ _id: string;
14225
+ url: string;
14226
+ key: string;
14227
+ } | null;
14228
+ banner?: {
14229
+ _id: string;
14230
+ url: string;
14231
+ key: string;
14232
+ } | null;
14233
+ teams?: Array<{
14234
+ _id: string;
14235
+ name: string;
14236
+ vtxScore?: number | null;
14237
+ sports?: Array<{
14238
+ _id: string;
14239
+ name: string;
14240
+ }> | null;
14241
+ logo?: {
14242
+ _id: string;
14243
+ url: string;
14244
+ key: string;
14245
+ } | null;
14246
+ }> | null;
14247
+ };
14248
+ };
14249
+ export type JoinClubMutationVariables = Exact<{
14250
+ input: JoinClubInput;
14251
+ }>;
14252
+ export type JoinClubMutation = {
14253
+ joinClub: {
14254
+ _id: string;
14255
+ role: string;
14256
+ status: string;
14257
+ joinedAt?: string | null;
14258
+ leftAt?: string | null;
14259
+ athlete?: {
14260
+ _id: string;
14261
+ firstName?: string | null;
14262
+ lastName?: string | null;
14263
+ screenName?: string | null;
14264
+ profilePicture?: {
14265
+ _id: string;
14266
+ url: string;
14267
+ key: string;
14268
+ } | null;
14269
+ } | null;
14270
+ club?: {
14271
+ _id: string;
14272
+ name: string;
14273
+ } | null;
14274
+ };
14275
+ };
14276
+ export type LeaveClubMutationVariables = Exact<{
14277
+ clubId: Scalars['String']['input'];
14278
+ }>;
14279
+ export type LeaveClubMutation = {
14280
+ leaveClub: {
14281
+ _id: string;
14282
+ role: string;
14283
+ status: string;
14284
+ joinedAt?: string | null;
14285
+ leftAt?: string | null;
14286
+ athlete?: {
14287
+ _id: string;
14288
+ firstName?: string | null;
14289
+ lastName?: string | null;
14290
+ screenName?: string | null;
14291
+ profilePicture?: {
14292
+ _id: string;
14293
+ url: string;
14294
+ key: string;
14295
+ } | null;
14296
+ } | null;
14297
+ club?: {
14298
+ _id: string;
14299
+ name: string;
14300
+ } | null;
14301
+ };
14302
+ };
14303
+ export type InviteToClubMutationVariables = Exact<{
14304
+ clubId: Scalars['String']['input'];
14305
+ athleteId: Scalars['String']['input'];
14306
+ }>;
14307
+ export type InviteToClubMutation = {
14308
+ inviteToClub: {
14309
+ _id: string;
14310
+ role: string;
14311
+ status: string;
14312
+ joinedAt?: string | null;
14313
+ leftAt?: string | null;
14314
+ athlete?: {
14315
+ _id: string;
14316
+ firstName?: string | null;
14317
+ lastName?: string | null;
14318
+ screenName?: string | null;
14319
+ profilePicture?: {
14320
+ _id: string;
14321
+ url: string;
14322
+ key: string;
14323
+ } | null;
14324
+ } | null;
14325
+ club?: {
14326
+ _id: string;
14327
+ name: string;
14328
+ } | null;
14329
+ };
14330
+ };
14331
+ export type ManageClubMemberMutationVariables = Exact<{
14332
+ input: ManageClubMemberInput;
14333
+ }>;
14334
+ export type ManageClubMemberMutation = {
14335
+ manageClubMember: {
14336
+ _id: string;
14337
+ role: string;
14338
+ status: string;
14339
+ joinedAt?: string | null;
14340
+ leftAt?: string | null;
14341
+ athlete?: {
14342
+ _id: string;
14343
+ firstName?: string | null;
14344
+ lastName?: string | null;
14345
+ screenName?: string | null;
14346
+ profilePicture?: {
14347
+ _id: string;
14348
+ url: string;
14349
+ key: string;
14350
+ } | null;
14351
+ } | null;
14352
+ club?: {
14353
+ _id: string;
14354
+ name: string;
14355
+ } | null;
14356
+ };
14357
+ };
14358
+ export type CreateClubStripeAccountMutationVariables = Exact<{
14359
+ clubId: Scalars['String']['input'];
14360
+ }>;
14361
+ export type CreateClubStripeAccountMutation = {
14362
+ createClubStripeAccount: string;
14363
+ };
14364
+ export type CreateClubDonationCheckoutMutationVariables = Exact<{
14365
+ clubId: Scalars['String']['input'];
14366
+ amount: Scalars['Float']['input'];
14367
+ currency?: Scalars['String']['input'];
14368
+ donorEmail?: InputMaybe<Scalars['String']['input']>;
14369
+ donorName?: InputMaybe<Scalars['String']['input']>;
14370
+ }>;
14371
+ export type CreateClubDonationCheckoutMutation = {
14372
+ createClubDonationCheckout: string;
14373
+ };
14374
+ export type CreateMembershipFeeCheckoutMutationVariables = Exact<{
14375
+ clubId: Scalars['String']['input'];
14376
+ }>;
14377
+ export type CreateMembershipFeeCheckoutMutation = {
14378
+ createMembershipFeeCheckout?: string | null;
14379
+ };
12721
14380
  export type FindUserByEmailQueryVariables = Exact<{
12722
14381
  email: Scalars['String']['input'];
12723
14382
  }>;
@@ -13209,6 +14868,7 @@ export declare const CurrentCampaignFieldsFragmentDoc: import("graphql").Documen
13209
14868
  export declare const HistoricalScoreFieldsFragmentDoc: import("graphql").DocumentNode;
13210
14869
  export declare const HistoricalScoresPeriodFieldsFragmentDoc: import("graphql").DocumentNode;
13211
14870
  export declare const CampaignFieldsFragmentDoc: import("graphql").DocumentNode;
14871
+ export declare const DonationThankYouFieldsFragmentDoc: import("graphql").DocumentNode;
13212
14872
  export declare const BrowseCampaignFieldsFragmentDoc: import("graphql").DocumentNode;
13213
14873
  export declare const DonationFieldsFragmentDoc: import("graphql").DocumentNode;
13214
14874
  export declare const DonationAthleteRefFragmentDoc: import("graphql").DocumentNode;
@@ -13223,6 +14883,12 @@ export declare const Awss3FileFieldsFragmentDoc: import("graphql").DocumentNode;
13223
14883
  export declare const BrandFullFieldsFragmentDoc: import("graphql").DocumentNode;
13224
14884
  export declare const SponsorshipFullFieldsFragmentDoc: import("graphql").DocumentNode;
13225
14885
  export declare const PaginationInfoFieldsFragmentDoc: import("graphql").DocumentNode;
14886
+ export declare const TeamFieldsFragmentDoc: import("graphql").DocumentNode;
14887
+ export declare const ClubFieldsFragmentDoc: import("graphql").DocumentNode;
14888
+ export declare const AthleteTeamFieldsFragmentDoc: import("graphql").DocumentNode;
14889
+ export declare const AthleteClubFieldsFragmentDoc: import("graphql").DocumentNode;
14890
+ export declare const TeamAnalyticsFieldsFragmentDoc: import("graphql").DocumentNode;
14891
+ export declare const TeamLeaderboardEntryFieldsFragmentDoc: import("graphql").DocumentNode;
13226
14892
  export declare const GetAiCoachThreadDocument: import("graphql").DocumentNode;
13227
14893
  export declare const GetAiCoachThreadHistoryDocument: import("graphql").DocumentNode;
13228
14894
  export declare const GetAiCoachThreadMessagesDocument: import("graphql").DocumentNode;
@@ -13335,6 +15001,10 @@ export declare const GetReceiptDocument: import("graphql").DocumentNode;
13335
15001
  export declare const GetTransactionDetailsDocument: import("graphql").DocumentNode;
13336
15002
  export declare const GetAllTransactionsDocument: import("graphql").DocumentNode;
13337
15003
  export declare const GetTransactionsPaginatedDocument: import("graphql").DocumentNode;
15004
+ export declare const CampaignThankYousDocument: import("graphql").DocumentNode;
15005
+ export declare const DonationThankYouDocument: import("graphql").DocumentNode;
15006
+ export declare const UpdateThankYouTemplateDocument: import("graphql").DocumentNode;
15007
+ export declare const SendThankYouDocument: import("graphql").DocumentNode;
13338
15008
  export declare const GetEmailCampaignsDocument: import("graphql").DocumentNode;
13339
15009
  export declare const GetAudiencePreviewDocument: import("graphql").DocumentNode;
13340
15010
  export declare const GetSendGridTemplatesDocument: import("graphql").DocumentNode;
@@ -13434,6 +15104,36 @@ export declare const CreateSportLevelDocument: import("graphql").DocumentNode;
13434
15104
  export declare const CreateCountryDocument: import("graphql").DocumentNode;
13435
15105
  export declare const CreateStateDocument: import("graphql").DocumentNode;
13436
15106
  export declare const CreateCityDocument: import("graphql").DocumentNode;
15107
+ export declare const FindTeamByIdDocument: import("graphql").DocumentNode;
15108
+ export declare const FindTeamsDocument: import("graphql").DocumentNode;
15109
+ export declare const FindAllTeamsDocument: import("graphql").DocumentNode;
15110
+ export declare const GetTeamRosterDocument: import("graphql").DocumentNode;
15111
+ export declare const GetTeamAnalyticsDocument: import("graphql").DocumentNode;
15112
+ export declare const GetTeamLeaderboardDocument: import("graphql").DocumentNode;
15113
+ export declare const GetTeamDashboardDocument: import("graphql").DocumentNode;
15114
+ export declare const GetTeamStripeAccountStatusDocument: import("graphql").DocumentNode;
15115
+ export declare const CreateTeamDocument: import("graphql").DocumentNode;
15116
+ export declare const UpdateTeamDocument: import("graphql").DocumentNode;
15117
+ export declare const JoinTeamDocument: import("graphql").DocumentNode;
15118
+ export declare const LeaveTeamDocument: import("graphql").DocumentNode;
15119
+ export declare const InviteToTeamDocument: import("graphql").DocumentNode;
15120
+ export declare const ManageTeamMemberDocument: import("graphql").DocumentNode;
15121
+ export declare const CreateTeamStripeAccountDocument: import("graphql").DocumentNode;
15122
+ export declare const CreateTeamDonationCheckoutDocument: import("graphql").DocumentNode;
15123
+ export declare const FindClubByIdDocument: import("graphql").DocumentNode;
15124
+ export declare const FindClubsDocument: import("graphql").DocumentNode;
15125
+ export declare const FindAllClubsDocument: import("graphql").DocumentNode;
15126
+ export declare const GetClubMembersDocument: import("graphql").DocumentNode;
15127
+ export declare const GetClubStripeAccountStatusDocument: import("graphql").DocumentNode;
15128
+ export declare const CreateClubDocument: import("graphql").DocumentNode;
15129
+ export declare const UpdateClubDocument: import("graphql").DocumentNode;
15130
+ export declare const JoinClubDocument: import("graphql").DocumentNode;
15131
+ export declare const LeaveClubDocument: import("graphql").DocumentNode;
15132
+ export declare const InviteToClubDocument: import("graphql").DocumentNode;
15133
+ export declare const ManageClubMemberDocument: import("graphql").DocumentNode;
15134
+ export declare const CreateClubStripeAccountDocument: import("graphql").DocumentNode;
15135
+ export declare const CreateClubDonationCheckoutDocument: import("graphql").DocumentNode;
15136
+ export declare const CreateMembershipFeeCheckoutDocument: import("graphql").DocumentNode;
13437
15137
  export declare const FindUserByEmailDocument: import("graphql").DocumentNode;
13438
15138
  export declare const FindVtxUserDocument: import("graphql").DocumentNode;
13439
15139
  export declare const GetUserImagesFromEmailDocument: import("graphql").DocumentNode;
@@ -13564,6 +15264,10 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
13564
15264
  GetTransactionDetails(variables: GetTransactionDetailsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetTransactionDetailsQuery>;
13565
15265
  GetAllTransactions(variables?: GetAllTransactionsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetAllTransactionsQuery>;
13566
15266
  GetTransactionsPaginated(variables?: GetTransactionsPaginatedQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetTransactionsPaginatedQuery>;
15267
+ CampaignThankYous(variables: CampaignThankYousQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CampaignThankYousQuery>;
15268
+ DonationThankYou(variables: DonationThankYouQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<DonationThankYouQuery>;
15269
+ UpdateThankYouTemplate(variables: UpdateThankYouTemplateMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<UpdateThankYouTemplateMutation>;
15270
+ SendThankYou(variables: SendThankYouMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<SendThankYouMutation>;
13567
15271
  GetEmailCampaigns(variables?: GetEmailCampaignsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetEmailCampaignsQuery>;
13568
15272
  GetAudiencePreview(variables: GetAudiencePreviewQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetAudiencePreviewQuery>;
13569
15273
  GetSendGridTemplates(variables?: GetSendGridTemplatesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetSendGridTemplatesQuery>;
@@ -13663,6 +15367,36 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
13663
15367
  CreateCountry(variables: CreateCountryMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CreateCountryMutation>;
13664
15368
  CreateState(variables: CreateStateMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CreateStateMutation>;
13665
15369
  CreateCity(variables: CreateCityMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CreateCityMutation>;
15370
+ FindTeamById(variables: FindTeamByIdQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<FindTeamByIdQuery>;
15371
+ FindTeams(variables?: FindTeamsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<FindTeamsQuery>;
15372
+ FindAllTeams(variables?: FindAllTeamsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<FindAllTeamsQuery>;
15373
+ GetTeamRoster(variables: GetTeamRosterQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetTeamRosterQuery>;
15374
+ GetTeamAnalytics(variables: GetTeamAnalyticsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetTeamAnalyticsQuery>;
15375
+ GetTeamLeaderboard(variables: GetTeamLeaderboardQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetTeamLeaderboardQuery>;
15376
+ GetTeamDashboard(variables: GetTeamDashboardQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetTeamDashboardQuery>;
15377
+ GetTeamStripeAccountStatus(variables: GetTeamStripeAccountStatusQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetTeamStripeAccountStatusQuery>;
15378
+ CreateTeam(variables: CreateTeamMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CreateTeamMutation>;
15379
+ UpdateTeam(variables: UpdateTeamMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<UpdateTeamMutation>;
15380
+ JoinTeam(variables: JoinTeamMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<JoinTeamMutation>;
15381
+ LeaveTeam(variables: LeaveTeamMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<LeaveTeamMutation>;
15382
+ InviteToTeam(variables: InviteToTeamMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<InviteToTeamMutation>;
15383
+ ManageTeamMember(variables: ManageTeamMemberMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ManageTeamMemberMutation>;
15384
+ CreateTeamStripeAccount(variables: CreateTeamStripeAccountMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CreateTeamStripeAccountMutation>;
15385
+ CreateTeamDonationCheckout(variables: CreateTeamDonationCheckoutMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CreateTeamDonationCheckoutMutation>;
15386
+ FindClubById(variables: FindClubByIdQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<FindClubByIdQuery>;
15387
+ FindClubs(variables?: FindClubsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<FindClubsQuery>;
15388
+ FindAllClubs(variables?: FindAllClubsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<FindAllClubsQuery>;
15389
+ GetClubMembers(variables: GetClubMembersQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetClubMembersQuery>;
15390
+ GetClubStripeAccountStatus(variables: GetClubStripeAccountStatusQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetClubStripeAccountStatusQuery>;
15391
+ CreateClub(variables: CreateClubMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CreateClubMutation>;
15392
+ UpdateClub(variables: UpdateClubMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<UpdateClubMutation>;
15393
+ JoinClub(variables: JoinClubMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<JoinClubMutation>;
15394
+ LeaveClub(variables: LeaveClubMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<LeaveClubMutation>;
15395
+ InviteToClub(variables: InviteToClubMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<InviteToClubMutation>;
15396
+ ManageClubMember(variables: ManageClubMemberMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<ManageClubMemberMutation>;
15397
+ CreateClubStripeAccount(variables: CreateClubStripeAccountMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CreateClubStripeAccountMutation>;
15398
+ CreateClubDonationCheckout(variables: CreateClubDonationCheckoutMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CreateClubDonationCheckoutMutation>;
15399
+ CreateMembershipFeeCheckout(variables: CreateMembershipFeeCheckoutMutationVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<CreateMembershipFeeCheckoutMutation>;
13666
15400
  FindUserByEmail(variables: FindUserByEmailQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<FindUserByEmailQuery>;
13667
15401
  FindVtxUser(variables: FindVtxUserQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<FindVtxUserQuery>;
13668
15402
  GetUserImagesFromEmail(variables: GetUserImagesFromEmailQueryVariables, requestHeaders?: GraphQLClientRequestHeaders, signal?: RequestInit["signal"]): Promise<GetUserImagesFromEmailQuery>;