@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.
- package/package.json +1 -1
- package/src/api/vtx-base-api.d.ts +38 -0
- package/src/api/vtx-base-api.js +72 -0
- package/src/api/vtx-base-api.js.map +1 -1
- package/src/client/schema.d.ts +606 -0
- package/src/client/schema.js +96 -4
- package/src/client/schema.js.map +1 -1
- package/src/client/types.d.ts +334 -1
- package/src/client/types.js +1597 -683
- package/src/client/types.js.map +1 -1
- package/src/generated/graphql.d.ts +1849 -115
- package/src/generated/graphql.js +561 -6
- package/src/generated/graphql.js.map +1 -1
package/src/client/schema.d.ts
CHANGED
|
@@ -656,6 +656,31 @@ export interface AthleteRankings {
|
|
|
656
656
|
cityRanking: (Ranking | null);
|
|
657
657
|
__typename: 'AthleteRankings';
|
|
658
658
|
}
|
|
659
|
+
export interface AthleteTeamMember {
|
|
660
|
+
_id: Scalars['String'];
|
|
661
|
+
firstName: (Scalars['String'] | null);
|
|
662
|
+
lastName: (Scalars['String'] | null);
|
|
663
|
+
screenName: (Scalars['String'] | null);
|
|
664
|
+
vtxScore: (Scalars['Float'] | null);
|
|
665
|
+
profilePicture: (AWSS3File | null);
|
|
666
|
+
__typename: 'AthleteTeamMember';
|
|
667
|
+
}
|
|
668
|
+
export interface AthleteTeam {
|
|
669
|
+
_id: Scalars['String'];
|
|
670
|
+
athlete: (AthleteTeamMember | null);
|
|
671
|
+
sport: (Sport | null);
|
|
672
|
+
role: Scalars['String'];
|
|
673
|
+
status: Scalars['String'];
|
|
674
|
+
joinedAt: (Scalars['DateTime'] | null);
|
|
675
|
+
leftAt: (Scalars['DateTime'] | null);
|
|
676
|
+
__typename: 'AthleteTeam';
|
|
677
|
+
}
|
|
678
|
+
export interface TeamClubReference {
|
|
679
|
+
_id: Scalars['String'];
|
|
680
|
+
name: Scalars['String'];
|
|
681
|
+
logo: (AWSS3File | null);
|
|
682
|
+
__typename: 'TeamClubReference';
|
|
683
|
+
}
|
|
659
684
|
export interface Team {
|
|
660
685
|
_id: Scalars['String'];
|
|
661
686
|
name: Scalars['String'];
|
|
@@ -664,6 +689,13 @@ export interface Team {
|
|
|
664
689
|
approved: (Scalars['Boolean'] | null);
|
|
665
690
|
logo: (AWSS3File | null);
|
|
666
691
|
banner: (AWSS3File | null);
|
|
692
|
+
club: (TeamClubReference | null);
|
|
693
|
+
athletes: (AthleteTeam[] | null);
|
|
694
|
+
joinPolicy: (Scalars['String'] | null);
|
|
695
|
+
maxRosterSize: (Scalars['Int'] | null);
|
|
696
|
+
visibility: (Scalars['String'] | null);
|
|
697
|
+
stripeAccountId: (Scalars['String'] | null);
|
|
698
|
+
vtxScore: (Scalars['Float'] | null);
|
|
667
699
|
__typename: 'Team';
|
|
668
700
|
}
|
|
669
701
|
export interface WorldLocation {
|
|
@@ -835,6 +867,9 @@ export interface FundRaisingCampaign {
|
|
|
835
867
|
vtxComissionPct: Scalars['Float'];
|
|
836
868
|
video: (Video | null);
|
|
837
869
|
coverImage: (AWSS3File | null);
|
|
870
|
+
thankYouMessage: (Scalars['String'] | null);
|
|
871
|
+
thankYouMediaUrl: (Scalars['String'] | null);
|
|
872
|
+
autoSendThankYou: Scalars['Boolean'];
|
|
838
873
|
__typename: 'FundRaisingCampaign';
|
|
839
874
|
}
|
|
840
875
|
export interface StripeCapabilityType {
|
|
@@ -1649,6 +1684,41 @@ export interface PaginatedSports {
|
|
|
1649
1684
|
pagination: EnhancedPaginationInfoType;
|
|
1650
1685
|
__typename: 'PaginatedSports';
|
|
1651
1686
|
}
|
|
1687
|
+
export interface Club {
|
|
1688
|
+
_id: Scalars['String'];
|
|
1689
|
+
name: Scalars['String'];
|
|
1690
|
+
description: (Scalars['String'] | null);
|
|
1691
|
+
sports: (Sport[] | null);
|
|
1692
|
+
logo: (AWSS3File | null);
|
|
1693
|
+
banner: (AWSS3File | null);
|
|
1694
|
+
location: (Scalars['String'] | null);
|
|
1695
|
+
website: (Scalars['String'] | null);
|
|
1696
|
+
membershipType: Scalars['String'];
|
|
1697
|
+
feeStructure: (Scalars['JSON'] | null);
|
|
1698
|
+
approved: (Scalars['Boolean'] | null);
|
|
1699
|
+
visibility: Scalars['String'];
|
|
1700
|
+
teams: (Team[] | null);
|
|
1701
|
+
stripeAccountId: (Scalars['String'] | null);
|
|
1702
|
+
__typename: 'Club';
|
|
1703
|
+
}
|
|
1704
|
+
export interface AthleteClubMember {
|
|
1705
|
+
_id: Scalars['String'];
|
|
1706
|
+
firstName: (Scalars['String'] | null);
|
|
1707
|
+
lastName: (Scalars['String'] | null);
|
|
1708
|
+
screenName: (Scalars['String'] | null);
|
|
1709
|
+
profilePicture: (AWSS3File | null);
|
|
1710
|
+
__typename: 'AthleteClubMember';
|
|
1711
|
+
}
|
|
1712
|
+
export interface AthleteClub {
|
|
1713
|
+
_id: Scalars['String'];
|
|
1714
|
+
athlete: (AthleteClubMember | null);
|
|
1715
|
+
club: (Club | null);
|
|
1716
|
+
role: Scalars['String'];
|
|
1717
|
+
status: Scalars['String'];
|
|
1718
|
+
joinedAt: (Scalars['DateTime'] | null);
|
|
1719
|
+
leftAt: (Scalars['DateTime'] | null);
|
|
1720
|
+
__typename: 'AthleteClub';
|
|
1721
|
+
}
|
|
1652
1722
|
export interface UserImages {
|
|
1653
1723
|
profilePictureUrl: (Scalars['String'] | null);
|
|
1654
1724
|
cardPictureUrl: (Scalars['String'] | null);
|
|
@@ -1713,6 +1783,17 @@ export interface PaginatedDonations {
|
|
|
1713
1783
|
pagination: EnhancedPaginationInfoType;
|
|
1714
1784
|
__typename: 'PaginatedDonations';
|
|
1715
1785
|
}
|
|
1786
|
+
export interface DonationThankYou {
|
|
1787
|
+
_id: Scalars['String'];
|
|
1788
|
+
message: Scalars['String'];
|
|
1789
|
+
mediaUrl: (Scalars['String'] | null);
|
|
1790
|
+
autoSent: Scalars['Boolean'];
|
|
1791
|
+
emailSent: Scalars['Boolean'];
|
|
1792
|
+
donorEmail: (Scalars['String'] | null);
|
|
1793
|
+
donorName: (Scalars['String'] | null);
|
|
1794
|
+
sentDate: Scalars['DateTime'];
|
|
1795
|
+
__typename: 'DonationThankYou';
|
|
1796
|
+
}
|
|
1716
1797
|
export interface CurrencyAmountType {
|
|
1717
1798
|
amount: Scalars['Float'];
|
|
1718
1799
|
currency: Scalars['String'];
|
|
@@ -2159,6 +2240,52 @@ export interface AiCoachUnreadNudgeCountResponse {
|
|
|
2159
2240
|
count: Scalars['Int'];
|
|
2160
2241
|
__typename: 'AiCoachUnreadNudgeCountResponse';
|
|
2161
2242
|
}
|
|
2243
|
+
export interface StripeAccountStatus {
|
|
2244
|
+
chargesEnabled: Scalars['Boolean'];
|
|
2245
|
+
payoutsEnabled: Scalars['Boolean'];
|
|
2246
|
+
detailsSubmitted: Scalars['Boolean'];
|
|
2247
|
+
__typename: 'StripeAccountStatus';
|
|
2248
|
+
}
|
|
2249
|
+
export interface TeamVtxScoreHistoryEntry {
|
|
2250
|
+
date: Scalars['DateTime'];
|
|
2251
|
+
score: Scalars['Float'];
|
|
2252
|
+
__typename: 'TeamVtxScoreHistoryEntry';
|
|
2253
|
+
}
|
|
2254
|
+
export interface TeamLeaderboardEntry {
|
|
2255
|
+
athleteId: Scalars['String'];
|
|
2256
|
+
athleteName: Scalars['String'];
|
|
2257
|
+
athletePhoto: (Scalars['String'] | null);
|
|
2258
|
+
sport: (Scalars['String'] | null);
|
|
2259
|
+
vtxScore: Scalars['Float'];
|
|
2260
|
+
rank: Scalars['Int'];
|
|
2261
|
+
tpiScore: (Scalars['Float'] | null);
|
|
2262
|
+
spiScore: (Scalars['Float'] | null);
|
|
2263
|
+
apiScore: (Scalars['Float'] | null);
|
|
2264
|
+
__typename: 'TeamLeaderboardEntry';
|
|
2265
|
+
}
|
|
2266
|
+
export interface TeamAnalytics {
|
|
2267
|
+
teamId: Scalars['String'];
|
|
2268
|
+
teamName: Scalars['String'];
|
|
2269
|
+
vtxScore: (Scalars['Float'] | null);
|
|
2270
|
+
athleteCount: Scalars['Int'];
|
|
2271
|
+
rosterSize: (Scalars['Int'] | null);
|
|
2272
|
+
vtxScoreHistory: (TeamVtxScoreHistoryEntry[] | null);
|
|
2273
|
+
topPerformers: (TeamLeaderboardEntry[] | null);
|
|
2274
|
+
__typename: 'TeamAnalytics';
|
|
2275
|
+
}
|
|
2276
|
+
export interface TeamRosterOverview {
|
|
2277
|
+
totalActive: Scalars['Int'];
|
|
2278
|
+
totalInactive: Scalars['Int'];
|
|
2279
|
+
recentJoins: Scalars['Int'];
|
|
2280
|
+
recentDepartures: Scalars['Int'];
|
|
2281
|
+
__typename: 'TeamRosterOverview';
|
|
2282
|
+
}
|
|
2283
|
+
export interface TeamDashboard {
|
|
2284
|
+
analytics: TeamAnalytics;
|
|
2285
|
+
roster: TeamRosterOverview;
|
|
2286
|
+
leaderboard: TeamLeaderboardEntry[];
|
|
2287
|
+
__typename: 'TeamDashboard';
|
|
2288
|
+
}
|
|
2162
2289
|
export type TimeRange = 'SEVEN_DAYS' | 'THIRTY_DAYS' | 'NINETY_DAYS' | 'ONE_YEAR' | 'ALL_TIME';
|
|
2163
2290
|
export type DonationMode = 'PUBLIC' | 'PRIVATE' | 'ANONYMOUS';
|
|
2164
2291
|
export type OfferClaimStatus = 'ACTIVE' | 'EXPIRED' | 'ALL';
|
|
@@ -2239,6 +2366,8 @@ export interface Query {
|
|
|
2239
2366
|
getBudgetItemUnits: BudgetItemUnit[];
|
|
2240
2367
|
getDonationDatesForCalendar: DonationDates;
|
|
2241
2368
|
getDonationsPaginated: PaginatedDonations;
|
|
2369
|
+
campaignThankYous: DonationThankYou[];
|
|
2370
|
+
donationThankYou: (DonationThankYou | null);
|
|
2242
2371
|
getMembershipOrganizations: MembershipOrganizationReference[];
|
|
2243
2372
|
getAthleteStravaIntegration: AthleteIntegrationReference;
|
|
2244
2373
|
getAthleteInstagramIntegration: AthleteIntegrationReference;
|
|
@@ -2291,6 +2420,19 @@ export interface Query {
|
|
|
2291
2420
|
getAiCoachConfig: AiCoachConfig;
|
|
2292
2421
|
getAiCoachNudges: AiCoachNudgeListResponse;
|
|
2293
2422
|
getAiCoachUnreadNudgeCount: AiCoachUnreadNudgeCountResponse;
|
|
2423
|
+
findAllTeams: Team[];
|
|
2424
|
+
getTeamStripeAccountStatus: (StripeAccountStatus | null);
|
|
2425
|
+
findTeamById: Team;
|
|
2426
|
+
findTeams: Team[];
|
|
2427
|
+
getTeamRoster: AthleteTeam[];
|
|
2428
|
+
getTeamAnalytics: TeamAnalytics;
|
|
2429
|
+
getTeamLeaderboard: TeamLeaderboardEntry[];
|
|
2430
|
+
getTeamDashboard: TeamDashboard;
|
|
2431
|
+
findAllClubs: Club[];
|
|
2432
|
+
getClubStripeAccountStatus: (StripeAccountStatus | null);
|
|
2433
|
+
findClubById: Club;
|
|
2434
|
+
findClubs: Club[];
|
|
2435
|
+
getClubMembers: AthleteClub[];
|
|
2294
2436
|
__typename: 'Query';
|
|
2295
2437
|
}
|
|
2296
2438
|
export interface Mutation {
|
|
@@ -2369,6 +2511,8 @@ export interface Mutation {
|
|
|
2369
2511
|
editCompetitionBudget: Scalars['Boolean'];
|
|
2370
2512
|
editCampaignBudget: Scalars['Boolean'];
|
|
2371
2513
|
editCompetitionBudgetForCampaign: Scalars['Boolean'];
|
|
2514
|
+
sendThankYou: DonationThankYou;
|
|
2515
|
+
updateThankYouTemplate: FundRaisingCampaign;
|
|
2372
2516
|
createMembershipOrganization: MembershipOrganizationReference;
|
|
2373
2517
|
createAthleteMembershipAffilation: AthleteMembership;
|
|
2374
2518
|
deleteAthleteMembershipAffilation: DeleteSingleValueResponse;
|
|
@@ -2412,6 +2556,25 @@ export interface Mutation {
|
|
|
2412
2556
|
sendAiCoachMessage: AiCoachMessage;
|
|
2413
2557
|
updateAiCoachConfig: AiCoachConfig;
|
|
2414
2558
|
markAiCoachNudgeRead: Scalars['Boolean'];
|
|
2559
|
+
createTeam: Team;
|
|
2560
|
+
updateTeam: Team;
|
|
2561
|
+
joinTeam: AthleteTeam;
|
|
2562
|
+
leaveTeam: AthleteTeam;
|
|
2563
|
+
inviteToTeam: AthleteTeam;
|
|
2564
|
+
manageTeamMember: AthleteTeam;
|
|
2565
|
+
approveTeam: Team;
|
|
2566
|
+
createTeamStripeAccount: Scalars['String'];
|
|
2567
|
+
createTeamDonationCheckout: Scalars['String'];
|
|
2568
|
+
createClub: Club;
|
|
2569
|
+
updateClub: Club;
|
|
2570
|
+
joinClub: AthleteClub;
|
|
2571
|
+
leaveClub: AthleteClub;
|
|
2572
|
+
inviteToClub: AthleteClub;
|
|
2573
|
+
manageClubMember: AthleteClub;
|
|
2574
|
+
approveClub: Club;
|
|
2575
|
+
createClubStripeAccount: Scalars['String'];
|
|
2576
|
+
createClubDonationCheckout: Scalars['String'];
|
|
2577
|
+
createMembershipFeeCheckout: (Scalars['String'] | null);
|
|
2415
2578
|
__typename: 'Mutation';
|
|
2416
2579
|
}
|
|
2417
2580
|
export interface UserGenqlSelection {
|
|
@@ -3138,6 +3301,34 @@ export interface AthleteRankingsGenqlSelection {
|
|
|
3138
3301
|
__typename?: boolean | number;
|
|
3139
3302
|
__scalar?: boolean | number;
|
|
3140
3303
|
}
|
|
3304
|
+
export interface AthleteTeamMemberGenqlSelection {
|
|
3305
|
+
_id?: boolean | number;
|
|
3306
|
+
firstName?: boolean | number;
|
|
3307
|
+
lastName?: boolean | number;
|
|
3308
|
+
screenName?: boolean | number;
|
|
3309
|
+
vtxScore?: boolean | number;
|
|
3310
|
+
profilePicture?: AWSS3FileGenqlSelection;
|
|
3311
|
+
__typename?: boolean | number;
|
|
3312
|
+
__scalar?: boolean | number;
|
|
3313
|
+
}
|
|
3314
|
+
export interface AthleteTeamGenqlSelection {
|
|
3315
|
+
_id?: boolean | number;
|
|
3316
|
+
athlete?: AthleteTeamMemberGenqlSelection;
|
|
3317
|
+
sport?: SportGenqlSelection;
|
|
3318
|
+
role?: boolean | number;
|
|
3319
|
+
status?: boolean | number;
|
|
3320
|
+
joinedAt?: boolean | number;
|
|
3321
|
+
leftAt?: boolean | number;
|
|
3322
|
+
__typename?: boolean | number;
|
|
3323
|
+
__scalar?: boolean | number;
|
|
3324
|
+
}
|
|
3325
|
+
export interface TeamClubReferenceGenqlSelection {
|
|
3326
|
+
_id?: boolean | number;
|
|
3327
|
+
name?: boolean | number;
|
|
3328
|
+
logo?: AWSS3FileGenqlSelection;
|
|
3329
|
+
__typename?: boolean | number;
|
|
3330
|
+
__scalar?: boolean | number;
|
|
3331
|
+
}
|
|
3141
3332
|
export interface TeamGenqlSelection {
|
|
3142
3333
|
_id?: boolean | number;
|
|
3143
3334
|
name?: boolean | number;
|
|
@@ -3146,6 +3337,13 @@ export interface TeamGenqlSelection {
|
|
|
3146
3337
|
approved?: boolean | number;
|
|
3147
3338
|
logo?: AWSS3FileGenqlSelection;
|
|
3148
3339
|
banner?: AWSS3FileGenqlSelection;
|
|
3340
|
+
club?: TeamClubReferenceGenqlSelection;
|
|
3341
|
+
athletes?: AthleteTeamGenqlSelection;
|
|
3342
|
+
joinPolicy?: boolean | number;
|
|
3343
|
+
maxRosterSize?: boolean | number;
|
|
3344
|
+
visibility?: boolean | number;
|
|
3345
|
+
stripeAccountId?: boolean | number;
|
|
3346
|
+
vtxScore?: boolean | number;
|
|
3149
3347
|
__typename?: boolean | number;
|
|
3150
3348
|
__scalar?: boolean | number;
|
|
3151
3349
|
}
|
|
@@ -3333,6 +3531,9 @@ export interface FundRaisingCampaignGenqlSelection {
|
|
|
3333
3531
|
vtxComissionPct?: boolean | number;
|
|
3334
3532
|
video?: VideoGenqlSelection;
|
|
3335
3533
|
coverImage?: AWSS3FileGenqlSelection;
|
|
3534
|
+
thankYouMessage?: boolean | number;
|
|
3535
|
+
thankYouMediaUrl?: boolean | number;
|
|
3536
|
+
autoSendThankYou?: boolean | number;
|
|
3336
3537
|
__typename?: boolean | number;
|
|
3337
3538
|
__scalar?: boolean | number;
|
|
3338
3539
|
}
|
|
@@ -4222,6 +4423,44 @@ export interface PaginatedSportsGenqlSelection {
|
|
|
4222
4423
|
__typename?: boolean | number;
|
|
4223
4424
|
__scalar?: boolean | number;
|
|
4224
4425
|
}
|
|
4426
|
+
export interface ClubGenqlSelection {
|
|
4427
|
+
_id?: boolean | number;
|
|
4428
|
+
name?: boolean | number;
|
|
4429
|
+
description?: boolean | number;
|
|
4430
|
+
sports?: SportGenqlSelection;
|
|
4431
|
+
logo?: AWSS3FileGenqlSelection;
|
|
4432
|
+
banner?: AWSS3FileGenqlSelection;
|
|
4433
|
+
location?: boolean | number;
|
|
4434
|
+
website?: boolean | number;
|
|
4435
|
+
membershipType?: boolean | number;
|
|
4436
|
+
feeStructure?: boolean | number;
|
|
4437
|
+
approved?: boolean | number;
|
|
4438
|
+
visibility?: boolean | number;
|
|
4439
|
+
teams?: TeamGenqlSelection;
|
|
4440
|
+
stripeAccountId?: boolean | number;
|
|
4441
|
+
__typename?: boolean | number;
|
|
4442
|
+
__scalar?: boolean | number;
|
|
4443
|
+
}
|
|
4444
|
+
export interface AthleteClubMemberGenqlSelection {
|
|
4445
|
+
_id?: boolean | number;
|
|
4446
|
+
firstName?: boolean | number;
|
|
4447
|
+
lastName?: boolean | number;
|
|
4448
|
+
screenName?: boolean | number;
|
|
4449
|
+
profilePicture?: AWSS3FileGenqlSelection;
|
|
4450
|
+
__typename?: boolean | number;
|
|
4451
|
+
__scalar?: boolean | number;
|
|
4452
|
+
}
|
|
4453
|
+
export interface AthleteClubGenqlSelection {
|
|
4454
|
+
_id?: boolean | number;
|
|
4455
|
+
athlete?: AthleteClubMemberGenqlSelection;
|
|
4456
|
+
club?: ClubGenqlSelection;
|
|
4457
|
+
role?: boolean | number;
|
|
4458
|
+
status?: boolean | number;
|
|
4459
|
+
joinedAt?: boolean | number;
|
|
4460
|
+
leftAt?: boolean | number;
|
|
4461
|
+
__typename?: boolean | number;
|
|
4462
|
+
__scalar?: boolean | number;
|
|
4463
|
+
}
|
|
4225
4464
|
export interface UserImagesGenqlSelection {
|
|
4226
4465
|
profilePictureUrl?: boolean | number;
|
|
4227
4466
|
cardPictureUrl?: boolean | number;
|
|
@@ -4294,6 +4533,18 @@ export interface PaginatedDonationsGenqlSelection {
|
|
|
4294
4533
|
__typename?: boolean | number;
|
|
4295
4534
|
__scalar?: boolean | number;
|
|
4296
4535
|
}
|
|
4536
|
+
export interface DonationThankYouGenqlSelection {
|
|
4537
|
+
_id?: boolean | number;
|
|
4538
|
+
message?: boolean | number;
|
|
4539
|
+
mediaUrl?: boolean | number;
|
|
4540
|
+
autoSent?: boolean | number;
|
|
4541
|
+
emailSent?: boolean | number;
|
|
4542
|
+
donorEmail?: boolean | number;
|
|
4543
|
+
donorName?: boolean | number;
|
|
4544
|
+
sentDate?: boolean | number;
|
|
4545
|
+
__typename?: boolean | number;
|
|
4546
|
+
__scalar?: boolean | number;
|
|
4547
|
+
}
|
|
4297
4548
|
export interface CurrencyAmountTypeGenqlSelection {
|
|
4298
4549
|
amount?: boolean | number;
|
|
4299
4550
|
currency?: boolean | number;
|
|
@@ -4786,6 +5037,58 @@ export interface AiCoachUnreadNudgeCountResponseGenqlSelection {
|
|
|
4786
5037
|
__typename?: boolean | number;
|
|
4787
5038
|
__scalar?: boolean | number;
|
|
4788
5039
|
}
|
|
5040
|
+
export interface StripeAccountStatusGenqlSelection {
|
|
5041
|
+
chargesEnabled?: boolean | number;
|
|
5042
|
+
payoutsEnabled?: boolean | number;
|
|
5043
|
+
detailsSubmitted?: boolean | number;
|
|
5044
|
+
__typename?: boolean | number;
|
|
5045
|
+
__scalar?: boolean | number;
|
|
5046
|
+
}
|
|
5047
|
+
export interface TeamVtxScoreHistoryEntryGenqlSelection {
|
|
5048
|
+
date?: boolean | number;
|
|
5049
|
+
score?: boolean | number;
|
|
5050
|
+
__typename?: boolean | number;
|
|
5051
|
+
__scalar?: boolean | number;
|
|
5052
|
+
}
|
|
5053
|
+
export interface TeamLeaderboardEntryGenqlSelection {
|
|
5054
|
+
athleteId?: boolean | number;
|
|
5055
|
+
athleteName?: boolean | number;
|
|
5056
|
+
athletePhoto?: boolean | number;
|
|
5057
|
+
sport?: boolean | number;
|
|
5058
|
+
vtxScore?: boolean | number;
|
|
5059
|
+
rank?: boolean | number;
|
|
5060
|
+
tpiScore?: boolean | number;
|
|
5061
|
+
spiScore?: boolean | number;
|
|
5062
|
+
apiScore?: boolean | number;
|
|
5063
|
+
__typename?: boolean | number;
|
|
5064
|
+
__scalar?: boolean | number;
|
|
5065
|
+
}
|
|
5066
|
+
export interface TeamAnalyticsGenqlSelection {
|
|
5067
|
+
teamId?: boolean | number;
|
|
5068
|
+
teamName?: boolean | number;
|
|
5069
|
+
vtxScore?: boolean | number;
|
|
5070
|
+
athleteCount?: boolean | number;
|
|
5071
|
+
rosterSize?: boolean | number;
|
|
5072
|
+
vtxScoreHistory?: TeamVtxScoreHistoryEntryGenqlSelection;
|
|
5073
|
+
topPerformers?: TeamLeaderboardEntryGenqlSelection;
|
|
5074
|
+
__typename?: boolean | number;
|
|
5075
|
+
__scalar?: boolean | number;
|
|
5076
|
+
}
|
|
5077
|
+
export interface TeamRosterOverviewGenqlSelection {
|
|
5078
|
+
totalActive?: boolean | number;
|
|
5079
|
+
totalInactive?: boolean | number;
|
|
5080
|
+
recentJoins?: boolean | number;
|
|
5081
|
+
recentDepartures?: boolean | number;
|
|
5082
|
+
__typename?: boolean | number;
|
|
5083
|
+
__scalar?: boolean | number;
|
|
5084
|
+
}
|
|
5085
|
+
export interface TeamDashboardGenqlSelection {
|
|
5086
|
+
analytics?: TeamAnalyticsGenqlSelection;
|
|
5087
|
+
roster?: TeamRosterOverviewGenqlSelection;
|
|
5088
|
+
leaderboard?: TeamLeaderboardEntryGenqlSelection;
|
|
5089
|
+
__typename?: boolean | number;
|
|
5090
|
+
__scalar?: boolean | number;
|
|
5091
|
+
}
|
|
4789
5092
|
export interface CreateDatabaseFileDto {
|
|
4790
5093
|
identifier: Scalars['String'];
|
|
4791
5094
|
version?: Scalars['String'];
|
|
@@ -5250,6 +5553,9 @@ export interface CreateFundingCampaignDto {
|
|
|
5250
5553
|
competitionIds?: (Scalars['String'][] | null);
|
|
5251
5554
|
video?: (CreateVideoDto | null);
|
|
5252
5555
|
coverImageId?: (Scalars['String'] | null);
|
|
5556
|
+
thankYouMessage?: (Scalars['String'] | null);
|
|
5557
|
+
thankYouMediaUrl?: (Scalars['String'] | null);
|
|
5558
|
+
autoSendThankYou?: (Scalars['Boolean'] | null);
|
|
5253
5559
|
}
|
|
5254
5560
|
export interface CreateFundingCampaignForDto {
|
|
5255
5561
|
budgetMode: Scalars['String'];
|
|
@@ -5265,6 +5571,9 @@ export interface CreateFundingCampaignForDto {
|
|
|
5265
5571
|
competitionIds?: (Scalars['String'][] | null);
|
|
5266
5572
|
video?: (CreateVideoDto | null);
|
|
5267
5573
|
coverImageId?: (Scalars['String'] | null);
|
|
5574
|
+
thankYouMessage?: (Scalars['String'] | null);
|
|
5575
|
+
thankYouMediaUrl?: (Scalars['String'] | null);
|
|
5576
|
+
autoSendThankYou?: (Scalars['Boolean'] | null);
|
|
5268
5577
|
loginEmail: Scalars['String'];
|
|
5269
5578
|
}
|
|
5270
5579
|
export interface UpdateFundingCampaignDto {
|
|
@@ -5281,6 +5590,9 @@ export interface UpdateFundingCampaignDto {
|
|
|
5281
5590
|
competitionIds?: (Scalars['String'][] | null);
|
|
5282
5591
|
video?: (CreateVideoDto | null);
|
|
5283
5592
|
coverImageId?: (Scalars['String'] | null);
|
|
5593
|
+
thankYouMessage?: (Scalars['String'] | null);
|
|
5594
|
+
thankYouMediaUrl?: (Scalars['String'] | null);
|
|
5595
|
+
autoSendThankYou?: (Scalars['Boolean'] | null);
|
|
5284
5596
|
_id: Scalars['String'];
|
|
5285
5597
|
}
|
|
5286
5598
|
export interface SetFundingStatusDto {
|
|
@@ -5555,6 +5867,64 @@ export interface UpdateAiCoachConfigDto {
|
|
|
5555
5867
|
export interface NudgeQueryDto {
|
|
5556
5868
|
unreadOnly?: (Scalars['Boolean'] | null);
|
|
5557
5869
|
}
|
|
5870
|
+
export interface CreateTeamInput {
|
|
5871
|
+
name: Scalars['String'];
|
|
5872
|
+
description?: (Scalars['String'] | null);
|
|
5873
|
+
sportIds: Scalars['String'][];
|
|
5874
|
+
joinPolicy?: (Scalars['String'] | null);
|
|
5875
|
+
maxRosterSize?: (Scalars['Int'] | null);
|
|
5876
|
+
visibility?: (Scalars['String'] | null);
|
|
5877
|
+
clubId?: (Scalars['String'] | null);
|
|
5878
|
+
}
|
|
5879
|
+
export interface UpdateTeamInput {
|
|
5880
|
+
teamId: Scalars['String'];
|
|
5881
|
+
name?: (Scalars['String'] | null);
|
|
5882
|
+
description?: (Scalars['String'] | null);
|
|
5883
|
+
joinPolicy?: (Scalars['String'] | null);
|
|
5884
|
+
maxRosterSize?: (Scalars['Int'] | null);
|
|
5885
|
+
visibility?: (Scalars['String'] | null);
|
|
5886
|
+
}
|
|
5887
|
+
export interface JoinTeamInput {
|
|
5888
|
+
teamId: Scalars['String'];
|
|
5889
|
+
sportId: Scalars['String'];
|
|
5890
|
+
message?: (Scalars['String'] | null);
|
|
5891
|
+
}
|
|
5892
|
+
export interface ManageTeamMemberInput {
|
|
5893
|
+
teamId: Scalars['String'];
|
|
5894
|
+
athleteId: Scalars['String'];
|
|
5895
|
+
action: Scalars['String'];
|
|
5896
|
+
role?: (Scalars['String'] | null);
|
|
5897
|
+
}
|
|
5898
|
+
export interface CreateClubInput {
|
|
5899
|
+
name: Scalars['String'];
|
|
5900
|
+
description?: (Scalars['String'] | null);
|
|
5901
|
+
sportIds: Scalars['String'][];
|
|
5902
|
+
membershipType?: (Scalars['String'] | null);
|
|
5903
|
+
feeStructure?: (Scalars['JSON'] | null);
|
|
5904
|
+
visibility?: (Scalars['String'] | null);
|
|
5905
|
+
location?: (Scalars['String'] | null);
|
|
5906
|
+
website?: (Scalars['String'] | null);
|
|
5907
|
+
}
|
|
5908
|
+
export interface UpdateClubInput {
|
|
5909
|
+
clubId: Scalars['String'];
|
|
5910
|
+
name?: (Scalars['String'] | null);
|
|
5911
|
+
description?: (Scalars['String'] | null);
|
|
5912
|
+
membershipType?: (Scalars['String'] | null);
|
|
5913
|
+
feeStructure?: (Scalars['JSON'] | null);
|
|
5914
|
+
visibility?: (Scalars['String'] | null);
|
|
5915
|
+
location?: (Scalars['String'] | null);
|
|
5916
|
+
website?: (Scalars['String'] | null);
|
|
5917
|
+
}
|
|
5918
|
+
export interface JoinClubInput {
|
|
5919
|
+
clubId: Scalars['String'];
|
|
5920
|
+
message?: (Scalars['String'] | null);
|
|
5921
|
+
}
|
|
5922
|
+
export interface ManageClubMemberInput {
|
|
5923
|
+
clubId: Scalars['String'];
|
|
5924
|
+
athleteId: Scalars['String'];
|
|
5925
|
+
action: Scalars['String'];
|
|
5926
|
+
role?: (Scalars['String'] | null);
|
|
5927
|
+
}
|
|
5558
5928
|
export interface QueryGenqlSelection {
|
|
5559
5929
|
findTenantById?: (TenantGenqlSelection & {
|
|
5560
5930
|
__args: {
|
|
@@ -5852,6 +6222,16 @@ export interface QueryGenqlSelection {
|
|
|
5852
6222
|
query?: (DonationQueryDto | null);
|
|
5853
6223
|
};
|
|
5854
6224
|
});
|
|
6225
|
+
campaignThankYous?: (DonationThankYouGenqlSelection & {
|
|
6226
|
+
__args: {
|
|
6227
|
+
campaignId: Scalars['String'];
|
|
6228
|
+
};
|
|
6229
|
+
});
|
|
6230
|
+
donationThankYou?: (DonationThankYouGenqlSelection & {
|
|
6231
|
+
__args: {
|
|
6232
|
+
donationId: Scalars['String'];
|
|
6233
|
+
};
|
|
6234
|
+
});
|
|
5855
6235
|
getMembershipOrganizations?: MembershipOrganizationReferenceGenqlSelection;
|
|
5856
6236
|
getAthleteStravaIntegration?: AthleteIntegrationReferenceGenqlSelection;
|
|
5857
6237
|
getAthleteInstagramIntegration?: AthleteIntegrationReferenceGenqlSelection;
|
|
@@ -6062,6 +6442,64 @@ export interface QueryGenqlSelection {
|
|
|
6062
6442
|
};
|
|
6063
6443
|
});
|
|
6064
6444
|
getAiCoachUnreadNudgeCount?: AiCoachUnreadNudgeCountResponseGenqlSelection;
|
|
6445
|
+
findAllTeams?: TeamGenqlSelection;
|
|
6446
|
+
getTeamStripeAccountStatus?: (StripeAccountStatusGenqlSelection & {
|
|
6447
|
+
__args: {
|
|
6448
|
+
teamId: Scalars['String'];
|
|
6449
|
+
};
|
|
6450
|
+
});
|
|
6451
|
+
findTeamById?: (TeamGenqlSelection & {
|
|
6452
|
+
__args: {
|
|
6453
|
+
teamId: Scalars['String'];
|
|
6454
|
+
};
|
|
6455
|
+
});
|
|
6456
|
+
findTeams?: (TeamGenqlSelection & {
|
|
6457
|
+
__args?: {
|
|
6458
|
+
sportId?: (Scalars['String'] | null);
|
|
6459
|
+
clubId?: (Scalars['String'] | null);
|
|
6460
|
+
};
|
|
6461
|
+
});
|
|
6462
|
+
getTeamRoster?: (AthleteTeamGenqlSelection & {
|
|
6463
|
+
__args: {
|
|
6464
|
+
teamId: Scalars['String'];
|
|
6465
|
+
};
|
|
6466
|
+
});
|
|
6467
|
+
getTeamAnalytics?: (TeamAnalyticsGenqlSelection & {
|
|
6468
|
+
__args: {
|
|
6469
|
+
teamId: Scalars['String'];
|
|
6470
|
+
};
|
|
6471
|
+
});
|
|
6472
|
+
getTeamLeaderboard?: (TeamLeaderboardEntryGenqlSelection & {
|
|
6473
|
+
__args: {
|
|
6474
|
+
teamId: Scalars['String'];
|
|
6475
|
+
};
|
|
6476
|
+
});
|
|
6477
|
+
getTeamDashboard?: (TeamDashboardGenqlSelection & {
|
|
6478
|
+
__args: {
|
|
6479
|
+
teamId: Scalars['String'];
|
|
6480
|
+
};
|
|
6481
|
+
});
|
|
6482
|
+
findAllClubs?: ClubGenqlSelection;
|
|
6483
|
+
getClubStripeAccountStatus?: (StripeAccountStatusGenqlSelection & {
|
|
6484
|
+
__args: {
|
|
6485
|
+
clubId: Scalars['String'];
|
|
6486
|
+
};
|
|
6487
|
+
});
|
|
6488
|
+
findClubById?: (ClubGenqlSelection & {
|
|
6489
|
+
__args: {
|
|
6490
|
+
clubId: Scalars['String'];
|
|
6491
|
+
};
|
|
6492
|
+
});
|
|
6493
|
+
findClubs?: (ClubGenqlSelection & {
|
|
6494
|
+
__args?: {
|
|
6495
|
+
sportId?: (Scalars['String'] | null);
|
|
6496
|
+
};
|
|
6497
|
+
});
|
|
6498
|
+
getClubMembers?: (AthleteClubGenqlSelection & {
|
|
6499
|
+
__args: {
|
|
6500
|
+
clubId: Scalars['String'];
|
|
6501
|
+
};
|
|
6502
|
+
});
|
|
6065
6503
|
__typename?: boolean | number;
|
|
6066
6504
|
__scalar?: boolean | number;
|
|
6067
6505
|
}
|
|
@@ -6464,6 +6902,16 @@ export interface MutationGenqlSelection {
|
|
|
6464
6902
|
input: EditCampaignBudgetDto;
|
|
6465
6903
|
};
|
|
6466
6904
|
};
|
|
6905
|
+
sendThankYou?: (DonationThankYouGenqlSelection & {
|
|
6906
|
+
__args: {
|
|
6907
|
+
input: SendThankYouDto;
|
|
6908
|
+
};
|
|
6909
|
+
});
|
|
6910
|
+
updateThankYouTemplate?: (FundRaisingCampaignGenqlSelection & {
|
|
6911
|
+
__args: {
|
|
6912
|
+
input: UpdateThankYouTemplateDto;
|
|
6913
|
+
};
|
|
6914
|
+
});
|
|
6467
6915
|
createMembershipOrganization?: (MembershipOrganizationReferenceGenqlSelection & {
|
|
6468
6916
|
__args: {
|
|
6469
6917
|
input: CreateMembershipOrganizationDto;
|
|
@@ -6664,6 +7112,114 @@ export interface MutationGenqlSelection {
|
|
|
6664
7112
|
nudgeId: Scalars['String'];
|
|
6665
7113
|
};
|
|
6666
7114
|
};
|
|
7115
|
+
createTeam?: (TeamGenqlSelection & {
|
|
7116
|
+
__args: {
|
|
7117
|
+
input: CreateTeamInput;
|
|
7118
|
+
};
|
|
7119
|
+
});
|
|
7120
|
+
updateTeam?: (TeamGenqlSelection & {
|
|
7121
|
+
__args: {
|
|
7122
|
+
input: UpdateTeamInput;
|
|
7123
|
+
};
|
|
7124
|
+
});
|
|
7125
|
+
joinTeam?: (AthleteTeamGenqlSelection & {
|
|
7126
|
+
__args: {
|
|
7127
|
+
input: JoinTeamInput;
|
|
7128
|
+
};
|
|
7129
|
+
});
|
|
7130
|
+
leaveTeam?: (AthleteTeamGenqlSelection & {
|
|
7131
|
+
__args: {
|
|
7132
|
+
teamId: Scalars['String'];
|
|
7133
|
+
};
|
|
7134
|
+
});
|
|
7135
|
+
inviteToTeam?: (AthleteTeamGenqlSelection & {
|
|
7136
|
+
__args: {
|
|
7137
|
+
teamId: Scalars['String'];
|
|
7138
|
+
athleteId: Scalars['String'];
|
|
7139
|
+
sportId: Scalars['String'];
|
|
7140
|
+
};
|
|
7141
|
+
});
|
|
7142
|
+
manageTeamMember?: (AthleteTeamGenqlSelection & {
|
|
7143
|
+
__args: {
|
|
7144
|
+
input: ManageTeamMemberInput;
|
|
7145
|
+
};
|
|
7146
|
+
});
|
|
7147
|
+
approveTeam?: (TeamGenqlSelection & {
|
|
7148
|
+
__args: {
|
|
7149
|
+
teamId: Scalars['String'];
|
|
7150
|
+
approved: Scalars['Boolean'];
|
|
7151
|
+
};
|
|
7152
|
+
});
|
|
7153
|
+
createTeamStripeAccount?: {
|
|
7154
|
+
__args: {
|
|
7155
|
+
teamId: Scalars['String'];
|
|
7156
|
+
};
|
|
7157
|
+
};
|
|
7158
|
+
createTeamDonationCheckout?: {
|
|
7159
|
+
__args: {
|
|
7160
|
+
teamId: Scalars['String'];
|
|
7161
|
+
amount: Scalars['Float'];
|
|
7162
|
+
currency?: Scalars['String'];
|
|
7163
|
+
donorEmail?: (Scalars['String'] | null);
|
|
7164
|
+
donorName?: (Scalars['String'] | null);
|
|
7165
|
+
};
|
|
7166
|
+
};
|
|
7167
|
+
createClub?: (ClubGenqlSelection & {
|
|
7168
|
+
__args: {
|
|
7169
|
+
input: CreateClubInput;
|
|
7170
|
+
};
|
|
7171
|
+
});
|
|
7172
|
+
updateClub?: (ClubGenqlSelection & {
|
|
7173
|
+
__args: {
|
|
7174
|
+
input: UpdateClubInput;
|
|
7175
|
+
};
|
|
7176
|
+
});
|
|
7177
|
+
joinClub?: (AthleteClubGenqlSelection & {
|
|
7178
|
+
__args: {
|
|
7179
|
+
input: JoinClubInput;
|
|
7180
|
+
};
|
|
7181
|
+
});
|
|
7182
|
+
leaveClub?: (AthleteClubGenqlSelection & {
|
|
7183
|
+
__args: {
|
|
7184
|
+
clubId: Scalars['String'];
|
|
7185
|
+
};
|
|
7186
|
+
});
|
|
7187
|
+
inviteToClub?: (AthleteClubGenqlSelection & {
|
|
7188
|
+
__args: {
|
|
7189
|
+
clubId: Scalars['String'];
|
|
7190
|
+
athleteId: Scalars['String'];
|
|
7191
|
+
};
|
|
7192
|
+
});
|
|
7193
|
+
manageClubMember?: (AthleteClubGenqlSelection & {
|
|
7194
|
+
__args: {
|
|
7195
|
+
input: ManageClubMemberInput;
|
|
7196
|
+
};
|
|
7197
|
+
});
|
|
7198
|
+
approveClub?: (ClubGenqlSelection & {
|
|
7199
|
+
__args: {
|
|
7200
|
+
clubId: Scalars['String'];
|
|
7201
|
+
approved: Scalars['Boolean'];
|
|
7202
|
+
};
|
|
7203
|
+
});
|
|
7204
|
+
createClubStripeAccount?: {
|
|
7205
|
+
__args: {
|
|
7206
|
+
clubId: Scalars['String'];
|
|
7207
|
+
};
|
|
7208
|
+
};
|
|
7209
|
+
createClubDonationCheckout?: {
|
|
7210
|
+
__args: {
|
|
7211
|
+
clubId: Scalars['String'];
|
|
7212
|
+
amount: Scalars['Float'];
|
|
7213
|
+
currency?: Scalars['String'];
|
|
7214
|
+
donorEmail?: (Scalars['String'] | null);
|
|
7215
|
+
donorName?: (Scalars['String'] | null);
|
|
7216
|
+
};
|
|
7217
|
+
};
|
|
7218
|
+
createMembershipFeeCheckout?: {
|
|
7219
|
+
__args: {
|
|
7220
|
+
clubId: Scalars['String'];
|
|
7221
|
+
};
|
|
7222
|
+
};
|
|
6667
7223
|
__typename?: boolean | number;
|
|
6668
7224
|
__scalar?: boolean | number;
|
|
6669
7225
|
}
|
|
@@ -6859,6 +7415,17 @@ export interface CreateSportEventDto {
|
|
|
6859
7415
|
banner?: (AWSS3UploadedFileDto | null);
|
|
6860
7416
|
eventLevel?: (Scalars['String'] | null);
|
|
6861
7417
|
}
|
|
7418
|
+
export interface SendThankYouDto {
|
|
7419
|
+
campaignId: Scalars['String'];
|
|
7420
|
+
donationId: Scalars['String'];
|
|
7421
|
+
customMessage?: (Scalars['String'] | null);
|
|
7422
|
+
}
|
|
7423
|
+
export interface UpdateThankYouTemplateDto {
|
|
7424
|
+
campaignId: Scalars['String'];
|
|
7425
|
+
thankYouMessage?: (Scalars['String'] | null);
|
|
7426
|
+
thankYouMediaUrl?: (Scalars['String'] | null);
|
|
7427
|
+
autoSendThankYou?: (Scalars['Boolean'] | null);
|
|
7428
|
+
}
|
|
6862
7429
|
export interface CreateStripeAccountDto {
|
|
6863
7430
|
countryId: Scalars['String'];
|
|
6864
7431
|
acceptedTermsId: Scalars['String'];
|
|
@@ -7097,6 +7664,15 @@ export declare const isRanking: (obj?: {
|
|
|
7097
7664
|
export declare const isAthleteRankings: (obj?: {
|
|
7098
7665
|
__typename?: any;
|
|
7099
7666
|
} | null) => obj is AthleteRankings;
|
|
7667
|
+
export declare const isAthleteTeamMember: (obj?: {
|
|
7668
|
+
__typename?: any;
|
|
7669
|
+
} | null) => obj is AthleteTeamMember;
|
|
7670
|
+
export declare const isAthleteTeam: (obj?: {
|
|
7671
|
+
__typename?: any;
|
|
7672
|
+
} | null) => obj is AthleteTeam;
|
|
7673
|
+
export declare const isTeamClubReference: (obj?: {
|
|
7674
|
+
__typename?: any;
|
|
7675
|
+
} | null) => obj is TeamClubReference;
|
|
7100
7676
|
export declare const isTeam: (obj?: {
|
|
7101
7677
|
__typename?: any;
|
|
7102
7678
|
} | null) => obj is Team;
|
|
@@ -7382,6 +7958,15 @@ export declare const isPublicIntegrationStatus: (obj?: {
|
|
|
7382
7958
|
export declare const isPaginatedSports: (obj?: {
|
|
7383
7959
|
__typename?: any;
|
|
7384
7960
|
} | null) => obj is PaginatedSports;
|
|
7961
|
+
export declare const isClub: (obj?: {
|
|
7962
|
+
__typename?: any;
|
|
7963
|
+
} | null) => obj is Club;
|
|
7964
|
+
export declare const isAthleteClubMember: (obj?: {
|
|
7965
|
+
__typename?: any;
|
|
7966
|
+
} | null) => obj is AthleteClubMember;
|
|
7967
|
+
export declare const isAthleteClub: (obj?: {
|
|
7968
|
+
__typename?: any;
|
|
7969
|
+
} | null) => obj is AthleteClub;
|
|
7385
7970
|
export declare const isUserImages: (obj?: {
|
|
7386
7971
|
__typename?: any;
|
|
7387
7972
|
} | null) => obj is UserImages;
|
|
@@ -7406,6 +7991,9 @@ export declare const isDonationDates: (obj?: {
|
|
|
7406
7991
|
export declare const isPaginatedDonations: (obj?: {
|
|
7407
7992
|
__typename?: any;
|
|
7408
7993
|
} | null) => obj is PaginatedDonations;
|
|
7994
|
+
export declare const isDonationThankYou: (obj?: {
|
|
7995
|
+
__typename?: any;
|
|
7996
|
+
} | null) => obj is DonationThankYou;
|
|
7409
7997
|
export declare const isCurrencyAmountType: (obj?: {
|
|
7410
7998
|
__typename?: any;
|
|
7411
7999
|
} | null) => obj is CurrencyAmountType;
|
|
@@ -7559,6 +8147,24 @@ export declare const isAiCoachNudgeListResponse: (obj?: {
|
|
|
7559
8147
|
export declare const isAiCoachUnreadNudgeCountResponse: (obj?: {
|
|
7560
8148
|
__typename?: any;
|
|
7561
8149
|
} | null) => obj is AiCoachUnreadNudgeCountResponse;
|
|
8150
|
+
export declare const isStripeAccountStatus: (obj?: {
|
|
8151
|
+
__typename?: any;
|
|
8152
|
+
} | null) => obj is StripeAccountStatus;
|
|
8153
|
+
export declare const isTeamVtxScoreHistoryEntry: (obj?: {
|
|
8154
|
+
__typename?: any;
|
|
8155
|
+
} | null) => obj is TeamVtxScoreHistoryEntry;
|
|
8156
|
+
export declare const isTeamLeaderboardEntry: (obj?: {
|
|
8157
|
+
__typename?: any;
|
|
8158
|
+
} | null) => obj is TeamLeaderboardEntry;
|
|
8159
|
+
export declare const isTeamAnalytics: (obj?: {
|
|
8160
|
+
__typename?: any;
|
|
8161
|
+
} | null) => obj is TeamAnalytics;
|
|
8162
|
+
export declare const isTeamRosterOverview: (obj?: {
|
|
8163
|
+
__typename?: any;
|
|
8164
|
+
} | null) => obj is TeamRosterOverview;
|
|
8165
|
+
export declare const isTeamDashboard: (obj?: {
|
|
8166
|
+
__typename?: any;
|
|
8167
|
+
} | null) => obj is TeamDashboard;
|
|
7562
8168
|
export declare const isQuery: (obj?: {
|
|
7563
8169
|
__typename?: any;
|
|
7564
8170
|
} | null) => obj is Query;
|