@matchi/api 0.20260814.1 → 0.20260818.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main/index.d.mts +483 -9
- package/dist/main/index.d.ts +483 -9
- package/dist/main/index.js +71 -12
- package/dist/main/index.mjs +73 -14
- package/package.json +1 -1
package/dist/main/index.d.mts
CHANGED
|
@@ -1624,6 +1624,36 @@ declare namespace playSessionSettings {
|
|
|
1624
1624
|
}
|
|
1625
1625
|
}
|
|
1626
1626
|
|
|
1627
|
+
/**
|
|
1628
|
+
* A named place on the court inside a team.
|
|
1629
|
+
* * `SINGLE` - The team's only spot, when each team has one.
|
|
1630
|
+
* * `LEFT` - The left spot, when each team has two.
|
|
1631
|
+
* * `RIGHT` - The right spot, when each team has two.
|
|
1632
|
+
* On a `users` entry (`requestedPosition`) this is the spot the player asked for. It is a preference, not a
|
|
1633
|
+
* reservation: it is resolved against the layout when the request is made and again when the player is confirmed
|
|
1634
|
+
* or approved, and the player may end up on a different spot if this one was taken meanwhile.
|
|
1635
|
+
*
|
|
1636
|
+
*/
|
|
1637
|
+
declare enum spotPosition {
|
|
1638
|
+
SINGLE = "SINGLE",
|
|
1639
|
+
LEFT = "LEFT",
|
|
1640
|
+
RIGHT = "RIGHT"
|
|
1641
|
+
}
|
|
1642
|
+
|
|
1643
|
+
/**
|
|
1644
|
+
* The side of the court a team plays on. Stable for the life of the play session — rearranging players never
|
|
1645
|
+
* renames, reorders or swaps the teams themselves.
|
|
1646
|
+
* * `HOME` - The booker's side. The booker always occupies the first position of this team.
|
|
1647
|
+
* * `AWAY` - The opposing side.
|
|
1648
|
+
* On a `users` entry (`requestedTeam`) this is the side the player asked for, which is a preference and not a
|
|
1649
|
+
* reservation — see `requestedPosition`.
|
|
1650
|
+
*
|
|
1651
|
+
*/
|
|
1652
|
+
declare enum teamSide {
|
|
1653
|
+
HOME = "HOME",
|
|
1654
|
+
AWAY = "AWAY"
|
|
1655
|
+
}
|
|
1656
|
+
|
|
1627
1657
|
/**
|
|
1628
1658
|
* The user is identified with either userId or email
|
|
1629
1659
|
*/
|
|
@@ -1642,6 +1672,8 @@ type playSessionUser = {
|
|
|
1642
1672
|
*
|
|
1643
1673
|
*/
|
|
1644
1674
|
joiningMethod?: playSessionUser.joiningMethod;
|
|
1675
|
+
requestedTeam?: teamSide;
|
|
1676
|
+
requestedPosition?: spotPosition;
|
|
1645
1677
|
};
|
|
1646
1678
|
declare namespace playSessionUser {
|
|
1647
1679
|
/**
|
|
@@ -1656,6 +1688,78 @@ declare namespace playSessionUser {
|
|
|
1656
1688
|
}
|
|
1657
1689
|
}
|
|
1658
1690
|
|
|
1691
|
+
/**
|
|
1692
|
+
* A spot inside a team, taken or not. `isAssigned` and `isReserved` are never both true, and neither is ever true
|
|
1693
|
+
* at the same time as `isLocked` — a locked spot is always empty.
|
|
1694
|
+
*
|
|
1695
|
+
*/
|
|
1696
|
+
type teamSpot = {
|
|
1697
|
+
position: spotPosition;
|
|
1698
|
+
/**
|
|
1699
|
+
* The player holding this spot. Omitted when the spot is empty, when the player has no MATCHi account, and
|
|
1700
|
+
* when the requester is not allowed to see who they are — in the last two cases `isAssigned` or `isReserved`
|
|
1701
|
+
* is still true, because occupancy is public and identity is not. It is therefore never an occupancy check.
|
|
1702
|
+
*
|
|
1703
|
+
*/
|
|
1704
|
+
userId?: string;
|
|
1705
|
+
/**
|
|
1706
|
+
* Whether a player firmly holds this spot. Only a player who has confirmed or paid is assigned — someone
|
|
1707
|
+
* who has taken the spot without securing it yet is `isReserved` instead, and a player whose request to
|
|
1708
|
+
* join has not been approved does not appear in the layout at all. True even when the requester is not
|
|
1709
|
+
* allowed to see who the player is, in which case `userId` is omitted.
|
|
1710
|
+
*
|
|
1711
|
+
*/
|
|
1712
|
+
isAssigned: boolean;
|
|
1713
|
+
/**
|
|
1714
|
+
* Whether a player has taken this spot without securing it yet — one who still owes a payment or a
|
|
1715
|
+
* confirmation. Nobody else can have it, so a reserved spot is never available. `userId` is set only
|
|
1716
|
+
* for those entitled to know whose it is, which is the booking owner and the player themselves.
|
|
1717
|
+
*
|
|
1718
|
+
*/
|
|
1719
|
+
isReserved: boolean;
|
|
1720
|
+
/**
|
|
1721
|
+
* Whether the booking owner is holding this spot back from joiners, for instance to keep the spot next
|
|
1722
|
+
* to them free for a partner. Held back from everybody rather than for somebody, so it names nobody. This is
|
|
1723
|
+
* not a freeze of the team structure.
|
|
1724
|
+
*
|
|
1725
|
+
*/
|
|
1726
|
+
isLocked: boolean;
|
|
1727
|
+
/**
|
|
1728
|
+
* Whether a player can take this spot right now. Computed by the server, and not derivable from the
|
|
1729
|
+
* layout alone: beyond occupancy and the lock, it accounts for the remaining capacity of the play session and
|
|
1730
|
+
* for whether the play session is joinable at all.
|
|
1731
|
+
*
|
|
1732
|
+
*/
|
|
1733
|
+
isJoinable: boolean;
|
|
1734
|
+
};
|
|
1735
|
+
|
|
1736
|
+
/**
|
|
1737
|
+
* One side of the match and the spots it consists of. A play session with a team layout always has exactly two
|
|
1738
|
+
* teams, one per side, however many spots each of them has.
|
|
1739
|
+
*
|
|
1740
|
+
*/
|
|
1741
|
+
type team = {
|
|
1742
|
+
/**
|
|
1743
|
+
* Identifies the team, and is how a spot is addressed together with its `position`. Stable for the life of
|
|
1744
|
+
* the play session.
|
|
1745
|
+
*
|
|
1746
|
+
*/
|
|
1747
|
+
teamId: string;
|
|
1748
|
+
side: teamSide;
|
|
1749
|
+
/**
|
|
1750
|
+
* Optional display name. Omitted when the team has none, which is every team today — clients fall back to
|
|
1751
|
+
* naming the teams by their side.
|
|
1752
|
+
*
|
|
1753
|
+
*/
|
|
1754
|
+
name?: string;
|
|
1755
|
+
/**
|
|
1756
|
+
* The team's spots, in canonical order. One spot per team in a singles match, two in a doubles match.
|
|
1757
|
+
* Unfilled spots are included.
|
|
1758
|
+
*
|
|
1759
|
+
*/
|
|
1760
|
+
positions: Array<teamSpot>;
|
|
1761
|
+
};
|
|
1762
|
+
|
|
1659
1763
|
type playSession = {
|
|
1660
1764
|
startDateTime: timeStamp;
|
|
1661
1765
|
endDateTime: timeStamp;
|
|
@@ -1667,6 +1771,14 @@ type playSession = {
|
|
|
1667
1771
|
url: string;
|
|
1668
1772
|
splitPayment: boolean;
|
|
1669
1773
|
chatId?: string;
|
|
1774
|
+
/**
|
|
1775
|
+
* The team layout of the play session: every team and every spot it consists of, including unfilled ones.
|
|
1776
|
+
* Omitted when team handling does not apply to this play session — an unsupported sport, or more players than
|
|
1777
|
+
* the court layout has spots. Clients fall back to the flat `users` list when it is absent.
|
|
1778
|
+
* Whether the match is singles or doubles is not a field: it follows from how many spots each team has.
|
|
1779
|
+
*
|
|
1780
|
+
*/
|
|
1781
|
+
readonly teams?: Array<team>;
|
|
1670
1782
|
};
|
|
1671
1783
|
|
|
1672
1784
|
type playSessionResponse = {
|
|
@@ -3752,13 +3864,36 @@ type CommunityListResponse = {
|
|
|
3752
3864
|
items: Array<CommunityItem>;
|
|
3753
3865
|
meta: PaginationMeta;
|
|
3754
3866
|
};
|
|
3867
|
+
/**
|
|
3868
|
+
* ProblemDetails extended with the webapp's machine-readable conflict
|
|
3869
|
+
* code so clients can branch on the conflict cause.
|
|
3870
|
+
*
|
|
3871
|
+
*/
|
|
3872
|
+
type ConflictDetails = PkgOpenapiSharedProblemDetails$1 & {
|
|
3873
|
+
/**
|
|
3874
|
+
* Conflict cause: SPOT_OCCUPIED — the requested spot is
|
|
3875
|
+
* already taken (offer picking another spot); CONFLICT —
|
|
3876
|
+
* generic conflict. Absent when the webapp supplied no code.
|
|
3877
|
+
*
|
|
3878
|
+
*/
|
|
3879
|
+
code?: string;
|
|
3880
|
+
};
|
|
3755
3881
|
type CreateCommentRequest = {
|
|
3756
3882
|
content: string;
|
|
3757
3883
|
};
|
|
3758
3884
|
type CreateMatchParticipationRequest = {
|
|
3759
3885
|
accept_terms: boolean;
|
|
3760
3886
|
payment: PaymentCommand;
|
|
3887
|
+
position?: SpotPosition;
|
|
3761
3888
|
promo_code?: string | null;
|
|
3889
|
+
/**
|
|
3890
|
+
* Team handling: id of the team whose spot is being claimed (from
|
|
3891
|
+
* the occasion's teams layout). Must be sent together with
|
|
3892
|
+
* position; omit both to have a spot auto-assigned (the behavior
|
|
3893
|
+
* of app versions that predate spot picking).
|
|
3894
|
+
*
|
|
3895
|
+
*/
|
|
3896
|
+
team_id?: string;
|
|
3762
3897
|
user_message?: string | null;
|
|
3763
3898
|
};
|
|
3764
3899
|
/**
|
|
@@ -3987,6 +4122,21 @@ type MatchOccasion = {
|
|
|
3987
4122
|
participants: MatchParticipants;
|
|
3988
4123
|
price: MatchBasePrice;
|
|
3989
4124
|
start_date_time: string;
|
|
4125
|
+
/**
|
|
4126
|
+
* Team handling: the match's team layout (exactly HOME + AWAY, in
|
|
4127
|
+
* that order), rendered ALONGSIDE the participant list. Spot
|
|
4128
|
+
* occupants carry user_id only when visible to the viewer (same
|
|
4129
|
+
* PUBLIC/PRIVATE rules as participant rows); occupancy is signalled
|
|
4130
|
+
* by is_assigned, and a spot is joinable when both is_assigned and
|
|
4131
|
+
* is_locked are false. Rows and spots join on (team_id, position).
|
|
4132
|
+
*
|
|
4133
|
+
* Degraded state: when the webapp cannot resolve a match's teams
|
|
4134
|
+
* the array is EMPTY instead of failing the request — clients must
|
|
4135
|
+
* tolerate an empty or absent teams array and fall back to
|
|
4136
|
+
* rendering the plain participant list.
|
|
4137
|
+
*
|
|
4138
|
+
*/
|
|
4139
|
+
teams?: Array<MatchTeam>;
|
|
3990
4140
|
type?: string | null;
|
|
3991
4141
|
};
|
|
3992
4142
|
/**
|
|
@@ -4035,6 +4185,69 @@ declare const MatchStatus: {
|
|
|
4035
4185
|
readonly MEMBERS_ONLY: "MEMBERS_ONLY";
|
|
4036
4186
|
};
|
|
4037
4187
|
type MatchStatus = typeof MatchStatus[keyof typeof MatchStatus];
|
|
4188
|
+
/**
|
|
4189
|
+
* One of a match's two stored teams. team_id is the stable external
|
|
4190
|
+
* id — spot claims (join with a position) and, later, Result Reporting
|
|
4191
|
+
* key off it.
|
|
4192
|
+
*
|
|
4193
|
+
*/
|
|
4194
|
+
type MatchTeam = {
|
|
4195
|
+
/**
|
|
4196
|
+
* Optional display name. Null → clients render a "Team 1/2" fallback.
|
|
4197
|
+
*/
|
|
4198
|
+
name?: string | null;
|
|
4199
|
+
/**
|
|
4200
|
+
* The team's spots, in canonical order.
|
|
4201
|
+
*/
|
|
4202
|
+
positions: Array<MatchTeamSpot>;
|
|
4203
|
+
side: 'HOME' | 'AWAY';
|
|
4204
|
+
team_id: string;
|
|
4205
|
+
};
|
|
4206
|
+
/**
|
|
4207
|
+
* One spot in a team's layout. The occupant is identified by user_id
|
|
4208
|
+
* when — and only when — the viewer is allowed to see it: the same
|
|
4209
|
+
* PUBLIC/PRIVATE visibility rules as the participant rows. An occupied
|
|
4210
|
+
* spot with no user_id means the occupant's identity is withheld
|
|
4211
|
+
* (private participant) or the occupant has no MATCHi user (venue
|
|
4212
|
+
* guest customer). Read is_assigned for occupancy — NEVER infer it
|
|
4213
|
+
* from user_id presence.
|
|
4214
|
+
*
|
|
4215
|
+
*/
|
|
4216
|
+
type MatchTeamSpot = {
|
|
4217
|
+
/**
|
|
4218
|
+
* Authoritative "spot is taken" signal. Exists as its own field
|
|
4219
|
+
* because an occupied spot can carry no user_id — clients must
|
|
4220
|
+
* read THIS field, never infer occupancy from the presence of an
|
|
4221
|
+
* identity field.
|
|
4222
|
+
*
|
|
4223
|
+
*/
|
|
4224
|
+
is_assigned: boolean;
|
|
4225
|
+
/**
|
|
4226
|
+
* Per-spot booker lock, carried for shared-contract symmetry with
|
|
4227
|
+
* the play-sessions layout. Always false on venue-created matches
|
|
4228
|
+
* (there is no booker).
|
|
4229
|
+
*
|
|
4230
|
+
*/
|
|
4231
|
+
is_locked: boolean;
|
|
4232
|
+
position: SpotPosition;
|
|
4233
|
+
/**
|
|
4234
|
+
* Matchi user id of the occupant, present only when the occupant
|
|
4235
|
+
* is PUBLIC to the viewer. ABSENT (never null) when the spot is
|
|
4236
|
+
* free, the occupant is private, or the occupant is a guest
|
|
4237
|
+
* customer without a MATCHi user.
|
|
4238
|
+
*
|
|
4239
|
+
*/
|
|
4240
|
+
user_id?: string;
|
|
4241
|
+
};
|
|
4242
|
+
/**
|
|
4243
|
+
* The match's team layout. Degraded state: when the webapp cannot
|
|
4244
|
+
* resolve the teams the array is EMPTY instead of failing the
|
|
4245
|
+
* request — clients fall back to the plain participant list.
|
|
4246
|
+
*
|
|
4247
|
+
*/
|
|
4248
|
+
type MatchTeamsResponse = {
|
|
4249
|
+
teams: Array<MatchTeam>;
|
|
4250
|
+
};
|
|
4038
4251
|
type MatchUserPrice = {
|
|
4039
4252
|
applied_category: string;
|
|
4040
4253
|
can_use_promo_code: boolean;
|
|
@@ -4227,19 +4440,35 @@ type PreferencesResponse$1 = {
|
|
|
4227
4440
|
items: Array<Preference$1>;
|
|
4228
4441
|
};
|
|
4229
4442
|
/**
|
|
4230
|
-
* PRIVATE variant of ParticipantDetail. Carries only kind, participation_id, and
|
|
4443
|
+
* PRIVATE variant of ParticipantDetail. Carries only kind, participation_id, joined_at, and the (non-PII) team assignment.
|
|
4231
4444
|
*/
|
|
4232
4445
|
type PrivateParticipantDetail = {
|
|
4233
4446
|
joined_at: string;
|
|
4234
4447
|
kind: 'PRIVATE';
|
|
4235
4448
|
participation_id: string;
|
|
4449
|
+
position?: SpotPosition;
|
|
4450
|
+
/**
|
|
4451
|
+
* Team handling: id of the team this participant is assigned to.
|
|
4452
|
+
* Absent when unassigned. Needed to render the layout for PRIVATE
|
|
4453
|
+
* rows too.
|
|
4454
|
+
*
|
|
4455
|
+
*/
|
|
4456
|
+
team_id?: string;
|
|
4236
4457
|
};
|
|
4237
4458
|
/**
|
|
4238
|
-
* Minimal placeholder for a participant whose User.searchable is false. Carries only kind and participation_id — no PII.
|
|
4459
|
+
* Minimal placeholder for a participant whose User.searchable is false. Carries only kind and participation_id — no PII (team assignment is not PII).
|
|
4239
4460
|
*/
|
|
4240
4461
|
type PrivateParticipantSummary = {
|
|
4241
4462
|
kind: 'PRIVATE';
|
|
4242
4463
|
participation_id: string;
|
|
4464
|
+
position?: SpotPosition;
|
|
4465
|
+
/**
|
|
4466
|
+
* Team handling: id of the team this participant is assigned to.
|
|
4467
|
+
* Absent when unassigned. Needed to render the layout for PRIVATE
|
|
4468
|
+
* rows too.
|
|
4469
|
+
*
|
|
4470
|
+
*/
|
|
4471
|
+
team_id?: string;
|
|
4243
4472
|
};
|
|
4244
4473
|
type PublicParticipantDetail = {
|
|
4245
4474
|
first_name?: string | null;
|
|
@@ -4248,7 +4477,15 @@ type PublicParticipantDetail = {
|
|
|
4248
4477
|
last_name?: string | null;
|
|
4249
4478
|
level?: string | null;
|
|
4250
4479
|
participation_id: string;
|
|
4480
|
+
position?: SpotPosition;
|
|
4251
4481
|
profile_image_url?: string | null;
|
|
4482
|
+
/**
|
|
4483
|
+
* Team handling: id of the team this participant is assigned to.
|
|
4484
|
+
* Absent when unassigned. Joins with the occasion's teams layout
|
|
4485
|
+
* on (team_id, position).
|
|
4486
|
+
*
|
|
4487
|
+
*/
|
|
4488
|
+
team_id?: string;
|
|
4252
4489
|
user_id?: string | null;
|
|
4253
4490
|
};
|
|
4254
4491
|
type PublicParticipantSummary = {
|
|
@@ -4260,7 +4497,15 @@ type PublicParticipantSummary = {
|
|
|
4260
4497
|
* Opaque per-row identifier sourced from Participation.id.
|
|
4261
4498
|
*/
|
|
4262
4499
|
participation_id: string;
|
|
4500
|
+
position?: SpotPosition;
|
|
4263
4501
|
profile_image_url?: string | null;
|
|
4502
|
+
/**
|
|
4503
|
+
* Team handling: id of the team this participant is assigned to.
|
|
4504
|
+
* Absent when unassigned. Joins with the occasion's teams layout
|
|
4505
|
+
* on (team_id, position).
|
|
4506
|
+
*
|
|
4507
|
+
*/
|
|
4508
|
+
team_id?: string;
|
|
4264
4509
|
/**
|
|
4265
4510
|
* Matchi user ID. Null for guest customers (no Matchi user).
|
|
4266
4511
|
*/
|
|
@@ -4282,6 +4527,9 @@ declare const ReactionType: {
|
|
|
4282
4527
|
readonly FIRE: "FIRE";
|
|
4283
4528
|
};
|
|
4284
4529
|
type ReactionType = typeof ReactionType[keyof typeof ReactionType];
|
|
4530
|
+
type RearrangeMatchTeamsRequest = {
|
|
4531
|
+
moves: Array<SpotMove>;
|
|
4532
|
+
};
|
|
4285
4533
|
/**
|
|
4286
4534
|
* A personalized recommendation. The common fields describe what, where, and when. Use type + id to navigate to the specific entity.
|
|
4287
4535
|
*
|
|
@@ -4497,6 +4745,36 @@ type SportProfileLevel = {
|
|
|
4497
4745
|
type SportProfilesResponse = {
|
|
4498
4746
|
items: Array<SportProfile>;
|
|
4499
4747
|
};
|
|
4748
|
+
/**
|
|
4749
|
+
* One spot-to-spot move. No player identity — the occupant of `from` at apply time is relocated.
|
|
4750
|
+
*
|
|
4751
|
+
*/
|
|
4752
|
+
type SpotMove = {
|
|
4753
|
+
from: SpotRef;
|
|
4754
|
+
to: SpotRef;
|
|
4755
|
+
};
|
|
4756
|
+
/**
|
|
4757
|
+
* Spot within a team. The layout derives from the match format:
|
|
4758
|
+
* SINGLES matches have one SINGLE spot per team, DOUBLES matches have
|
|
4759
|
+
* LEFT + RIGHT (court side).
|
|
4760
|
+
*
|
|
4761
|
+
*/
|
|
4762
|
+
declare const SpotPosition: {
|
|
4763
|
+
readonly SINGLE: "SINGLE";
|
|
4764
|
+
readonly LEFT: "LEFT";
|
|
4765
|
+
readonly RIGHT: "RIGHT";
|
|
4766
|
+
};
|
|
4767
|
+
/**
|
|
4768
|
+
* Spot within a team. The layout derives from the match format:
|
|
4769
|
+
* SINGLES matches have one SINGLE spot per team, DOUBLES matches have
|
|
4770
|
+
* LEFT + RIGHT (court side).
|
|
4771
|
+
*
|
|
4772
|
+
*/
|
|
4773
|
+
type SpotPosition = typeof SpotPosition[keyof typeof SpotPosition];
|
|
4774
|
+
type SpotRef = {
|
|
4775
|
+
position: SpotPosition;
|
|
4776
|
+
team_id: string;
|
|
4777
|
+
};
|
|
4500
4778
|
declare const Topic$1: {
|
|
4501
4779
|
readonly FACILITY_MESSAGE: "FACILITY_MESSAGE";
|
|
4502
4780
|
};
|
|
@@ -5773,9 +6051,13 @@ type CreateMatchParticipationErrors = {
|
|
|
5773
6051
|
*/
|
|
5774
6052
|
404: PkgOpenapiSharedProblemDetails$1;
|
|
5775
6053
|
/**
|
|
5776
|
-
* The
|
|
6054
|
+
* Conflict. The body's `code` distinguishes the cause:
|
|
6055
|
+
* SPOT_OCCUPIED — the requested spot (team_id + position) is
|
|
6056
|
+
* already taken, offer picking another spot; CONFLICT — generic
|
|
6057
|
+
* conflict (match full, already participating).
|
|
6058
|
+
*
|
|
5777
6059
|
*/
|
|
5778
|
-
409:
|
|
6060
|
+
409: ConflictDetails;
|
|
5779
6061
|
/**
|
|
5780
6062
|
* The server encountered an unexpected error
|
|
5781
6063
|
*/
|
|
@@ -6893,6 +7175,20 @@ declare const CommunityListResponseSchema: {
|
|
|
6893
7175
|
readonly required: readonly ["items", "meta"];
|
|
6894
7176
|
readonly type: "object";
|
|
6895
7177
|
};
|
|
7178
|
+
declare const ConflictDetailsSchema: {
|
|
7179
|
+
readonly allOf: readonly [{
|
|
7180
|
+
readonly $ref: "#/components/schemas/pkgOpenapiSharedProblemDetails";
|
|
7181
|
+
}, {
|
|
7182
|
+
readonly properties: {
|
|
7183
|
+
readonly code: {
|
|
7184
|
+
readonly description: "Conflict cause: SPOT_OCCUPIED — the requested spot is\nalready taken (offer picking another spot); CONFLICT —\ngeneric conflict. Absent when the webapp supplied no code.\n";
|
|
7185
|
+
readonly type: "string";
|
|
7186
|
+
};
|
|
7187
|
+
};
|
|
7188
|
+
readonly type: "object";
|
|
7189
|
+
}];
|
|
7190
|
+
readonly description: "ProblemDetails extended with the webapp's machine-readable conflict\ncode so clients can branch on the conflict cause.\n";
|
|
7191
|
+
};
|
|
6896
7192
|
declare const CreateCommentRequestSchema: {
|
|
6897
7193
|
readonly properties: {
|
|
6898
7194
|
readonly content: {
|
|
@@ -6912,10 +7208,18 @@ declare const CreateMatchParticipationRequestSchema: {
|
|
|
6912
7208
|
readonly payment: {
|
|
6913
7209
|
readonly $ref: "#/components/schemas/PaymentCommand";
|
|
6914
7210
|
};
|
|
7211
|
+
readonly position: {
|
|
7212
|
+
readonly $ref: "#/components/schemas/SpotPosition";
|
|
7213
|
+
};
|
|
6915
7214
|
readonly promo_code: {
|
|
6916
7215
|
readonly nullable: true;
|
|
6917
7216
|
readonly type: "string";
|
|
6918
7217
|
};
|
|
7218
|
+
readonly team_id: {
|
|
7219
|
+
readonly description: "Team handling: id of the team whose spot is being claimed (from\nthe occasion's teams layout). Must be sent together with\nposition; omit both to have a spot auto-assigned (the behavior\nof app versions that predate spot picking).\n";
|
|
7220
|
+
readonly format: "uuid";
|
|
7221
|
+
readonly type: "string";
|
|
7222
|
+
};
|
|
6919
7223
|
readonly user_message: {
|
|
6920
7224
|
readonly nullable: true;
|
|
6921
7225
|
readonly type: "string";
|
|
@@ -7592,6 +7896,13 @@ declare const MatchOccasionSchema: {
|
|
|
7592
7896
|
readonly format: "date-time";
|
|
7593
7897
|
readonly type: "string";
|
|
7594
7898
|
};
|
|
7899
|
+
readonly teams: {
|
|
7900
|
+
readonly description: "Team handling: the match's team layout (exactly HOME + AWAY, in\nthat order), rendered ALONGSIDE the participant list. Spot\noccupants carry user_id only when visible to the viewer (same\nPUBLIC/PRIVATE rules as participant rows); occupancy is signalled\nby is_assigned, and a spot is joinable when both is_assigned and\nis_locked are false. Rows and spots join on (team_id, position).\n\nDegraded state: when the webapp cannot resolve a match's teams\nthe array is EMPTY instead of failing the request — clients must\ntolerate an empty or absent teams array and fall back to\nrendering the plain participant list.\n";
|
|
7901
|
+
readonly items: {
|
|
7902
|
+
readonly $ref: "#/components/schemas/MatchTeam";
|
|
7903
|
+
};
|
|
7904
|
+
readonly type: "array";
|
|
7905
|
+
};
|
|
7595
7906
|
readonly type: {
|
|
7596
7907
|
readonly nullable: true;
|
|
7597
7908
|
readonly type: "string";
|
|
@@ -7704,6 +8015,69 @@ declare const MatchStatusSchema: {
|
|
|
7704
8015
|
readonly enum: readonly ["OPEN", "FULL", "REGISTRATION_CLOSED", "REGISTRATION_NOT_OPEN", "CANCELLED", "COMPLETED", "MEMBERS_ONLY"];
|
|
7705
8016
|
readonly type: "string";
|
|
7706
8017
|
};
|
|
8018
|
+
declare const MatchTeamSchema: {
|
|
8019
|
+
readonly description: "One of a match's two stored teams. team_id is the stable external\nid — spot claims (join with a position) and, later, Result Reporting\nkey off it.\n";
|
|
8020
|
+
readonly properties: {
|
|
8021
|
+
readonly name: {
|
|
8022
|
+
readonly description: "Optional display name. Null → clients render a \"Team 1/2\" fallback.";
|
|
8023
|
+
readonly nullable: true;
|
|
8024
|
+
readonly type: "string";
|
|
8025
|
+
};
|
|
8026
|
+
readonly positions: {
|
|
8027
|
+
readonly description: "The team's spots, in canonical order.";
|
|
8028
|
+
readonly items: {
|
|
8029
|
+
readonly $ref: "#/components/schemas/MatchTeamSpot";
|
|
8030
|
+
};
|
|
8031
|
+
readonly type: "array";
|
|
8032
|
+
};
|
|
8033
|
+
readonly side: {
|
|
8034
|
+
readonly enum: readonly ["HOME", "AWAY"];
|
|
8035
|
+
readonly type: "string";
|
|
8036
|
+
};
|
|
8037
|
+
readonly team_id: {
|
|
8038
|
+
readonly format: "uuid";
|
|
8039
|
+
readonly type: "string";
|
|
8040
|
+
};
|
|
8041
|
+
};
|
|
8042
|
+
readonly required: readonly ["team_id", "side", "positions"];
|
|
8043
|
+
readonly type: "object";
|
|
8044
|
+
};
|
|
8045
|
+
declare const MatchTeamSpotSchema: {
|
|
8046
|
+
readonly description: "One spot in a team's layout. The occupant is identified by user_id\nwhen — and only when — the viewer is allowed to see it: the same\nPUBLIC/PRIVATE visibility rules as the participant rows. An occupied\nspot with no user_id means the occupant's identity is withheld\n(private participant) or the occupant has no MATCHi user (venue\nguest customer). Read is_assigned for occupancy — NEVER infer it\nfrom user_id presence.\n";
|
|
8047
|
+
readonly properties: {
|
|
8048
|
+
readonly is_assigned: {
|
|
8049
|
+
readonly description: "Authoritative \"spot is taken\" signal. Exists as its own field\nbecause an occupied spot can carry no user_id — clients must\nread THIS field, never infer occupancy from the presence of an\nidentity field.\n";
|
|
8050
|
+
readonly type: "boolean";
|
|
8051
|
+
};
|
|
8052
|
+
readonly is_locked: {
|
|
8053
|
+
readonly description: "Per-spot booker lock, carried for shared-contract symmetry with\nthe play-sessions layout. Always false on venue-created matches\n(there is no booker).\n";
|
|
8054
|
+
readonly type: "boolean";
|
|
8055
|
+
};
|
|
8056
|
+
readonly position: {
|
|
8057
|
+
readonly $ref: "#/components/schemas/SpotPosition";
|
|
8058
|
+
};
|
|
8059
|
+
readonly user_id: {
|
|
8060
|
+
readonly description: "Matchi user id of the occupant, present only when the occupant\nis PUBLIC to the viewer. ABSENT (never null) when the spot is\nfree, the occupant is private, or the occupant is a guest\ncustomer without a MATCHi user.\n";
|
|
8061
|
+
readonly format: "uuid";
|
|
8062
|
+
readonly type: "string";
|
|
8063
|
+
};
|
|
8064
|
+
};
|
|
8065
|
+
readonly required: readonly ["position", "is_assigned", "is_locked"];
|
|
8066
|
+
readonly type: "object";
|
|
8067
|
+
};
|
|
8068
|
+
declare const MatchTeamsResponseSchema: {
|
|
8069
|
+
readonly description: "The match's team layout. Degraded state: when the webapp cannot\nresolve the teams the array is EMPTY instead of failing the\nrequest — clients fall back to the plain participant list.\n";
|
|
8070
|
+
readonly properties: {
|
|
8071
|
+
readonly teams: {
|
|
8072
|
+
readonly items: {
|
|
8073
|
+
readonly $ref: "#/components/schemas/MatchTeam";
|
|
8074
|
+
};
|
|
8075
|
+
readonly type: "array";
|
|
8076
|
+
};
|
|
8077
|
+
};
|
|
8078
|
+
readonly required: readonly ["teams"];
|
|
8079
|
+
readonly type: "object";
|
|
8080
|
+
};
|
|
7707
8081
|
declare const MatchUserPriceSchema: {
|
|
7708
8082
|
readonly properties: {
|
|
7709
8083
|
readonly applied_category: {
|
|
@@ -8129,7 +8503,7 @@ declare const PreferencesResponseSchema$1: {
|
|
|
8129
8503
|
readonly type: "object";
|
|
8130
8504
|
};
|
|
8131
8505
|
declare const PrivateParticipantDetailSchema: {
|
|
8132
|
-
readonly description: "PRIVATE variant of ParticipantDetail. Carries only kind, participation_id, and
|
|
8506
|
+
readonly description: "PRIVATE variant of ParticipantDetail. Carries only kind, participation_id, joined_at, and the (non-PII) team assignment.";
|
|
8133
8507
|
readonly properties: {
|
|
8134
8508
|
readonly joined_at: {
|
|
8135
8509
|
readonly format: "date-time";
|
|
@@ -8142,12 +8516,20 @@ declare const PrivateParticipantDetailSchema: {
|
|
|
8142
8516
|
readonly participation_id: {
|
|
8143
8517
|
readonly type: "string";
|
|
8144
8518
|
};
|
|
8519
|
+
readonly position: {
|
|
8520
|
+
readonly $ref: "#/components/schemas/SpotPosition";
|
|
8521
|
+
};
|
|
8522
|
+
readonly team_id: {
|
|
8523
|
+
readonly description: "Team handling: id of the team this participant is assigned to.\nAbsent when unassigned. Needed to render the layout for PRIVATE\nrows too.\n";
|
|
8524
|
+
readonly format: "uuid";
|
|
8525
|
+
readonly type: "string";
|
|
8526
|
+
};
|
|
8145
8527
|
};
|
|
8146
8528
|
readonly required: readonly ["kind", "participation_id", "joined_at"];
|
|
8147
8529
|
readonly type: "object";
|
|
8148
8530
|
};
|
|
8149
8531
|
declare const PrivateParticipantSummarySchema: {
|
|
8150
|
-
readonly description: "Minimal placeholder for a participant whose User.searchable is false. Carries only kind and participation_id — no PII.";
|
|
8532
|
+
readonly description: "Minimal placeholder for a participant whose User.searchable is false. Carries only kind and participation_id — no PII (team assignment is not PII).";
|
|
8151
8533
|
readonly properties: {
|
|
8152
8534
|
readonly kind: {
|
|
8153
8535
|
readonly enum: readonly ["PRIVATE"];
|
|
@@ -8156,6 +8538,14 @@ declare const PrivateParticipantSummarySchema: {
|
|
|
8156
8538
|
readonly participation_id: {
|
|
8157
8539
|
readonly type: "string";
|
|
8158
8540
|
};
|
|
8541
|
+
readonly position: {
|
|
8542
|
+
readonly $ref: "#/components/schemas/SpotPosition";
|
|
8543
|
+
};
|
|
8544
|
+
readonly team_id: {
|
|
8545
|
+
readonly description: "Team handling: id of the team this participant is assigned to.\nAbsent when unassigned. Needed to render the layout for PRIVATE\nrows too.\n";
|
|
8546
|
+
readonly format: "uuid";
|
|
8547
|
+
readonly type: "string";
|
|
8548
|
+
};
|
|
8159
8549
|
};
|
|
8160
8550
|
readonly required: readonly ["kind", "participation_id"];
|
|
8161
8551
|
readonly type: "object";
|
|
@@ -8185,10 +8575,18 @@ declare const PublicParticipantDetailSchema: {
|
|
|
8185
8575
|
readonly participation_id: {
|
|
8186
8576
|
readonly type: "string";
|
|
8187
8577
|
};
|
|
8578
|
+
readonly position: {
|
|
8579
|
+
readonly $ref: "#/components/schemas/SpotPosition";
|
|
8580
|
+
};
|
|
8188
8581
|
readonly profile_image_url: {
|
|
8189
8582
|
readonly nullable: true;
|
|
8190
8583
|
readonly type: "string";
|
|
8191
8584
|
};
|
|
8585
|
+
readonly team_id: {
|
|
8586
|
+
readonly description: "Team handling: id of the team this participant is assigned to.\nAbsent when unassigned. Joins with the occasion's teams layout\non (team_id, position).\n";
|
|
8587
|
+
readonly format: "uuid";
|
|
8588
|
+
readonly type: "string";
|
|
8589
|
+
};
|
|
8192
8590
|
readonly user_id: {
|
|
8193
8591
|
readonly format: "uuid";
|
|
8194
8592
|
readonly nullable: true;
|
|
@@ -8220,10 +8618,18 @@ declare const PublicParticipantSummarySchema: {
|
|
|
8220
8618
|
readonly description: "Opaque per-row identifier sourced from Participation.id.";
|
|
8221
8619
|
readonly type: "string";
|
|
8222
8620
|
};
|
|
8621
|
+
readonly position: {
|
|
8622
|
+
readonly $ref: "#/components/schemas/SpotPosition";
|
|
8623
|
+
};
|
|
8223
8624
|
readonly profile_image_url: {
|
|
8224
8625
|
readonly nullable: true;
|
|
8225
8626
|
readonly type: "string";
|
|
8226
8627
|
};
|
|
8628
|
+
readonly team_id: {
|
|
8629
|
+
readonly description: "Team handling: id of the team this participant is assigned to.\nAbsent when unassigned. Joins with the occasion's teams layout\non (team_id, position).\n";
|
|
8630
|
+
readonly format: "uuid";
|
|
8631
|
+
readonly type: "string";
|
|
8632
|
+
};
|
|
8227
8633
|
readonly user_id: {
|
|
8228
8634
|
readonly description: "Matchi user ID. Null for guest customers (no Matchi user).";
|
|
8229
8635
|
readonly format: "uuid";
|
|
@@ -8262,6 +8668,19 @@ declare const ReactionTypeSchema: {
|
|
|
8262
8668
|
readonly enum: readonly ["THUMBS_UP", "HEART", "SWEAT_SMILE", "LAUGHING", "HUSHED", "FIRE"];
|
|
8263
8669
|
readonly type: "string";
|
|
8264
8670
|
};
|
|
8671
|
+
declare const RearrangeMatchTeamsRequestSchema: {
|
|
8672
|
+
readonly properties: {
|
|
8673
|
+
readonly moves: {
|
|
8674
|
+
readonly items: {
|
|
8675
|
+
readonly $ref: "#/components/schemas/SpotMove";
|
|
8676
|
+
};
|
|
8677
|
+
readonly minItems: 1;
|
|
8678
|
+
readonly type: "array";
|
|
8679
|
+
};
|
|
8680
|
+
};
|
|
8681
|
+
readonly required: readonly ["moves"];
|
|
8682
|
+
readonly type: "object";
|
|
8683
|
+
};
|
|
8265
8684
|
declare const RecommendationSchema: {
|
|
8266
8685
|
readonly description: "A personalized recommendation. The common fields describe what, where, and when. Use type + id to navigate to the specific entity.\n";
|
|
8267
8686
|
readonly properties: {
|
|
@@ -8609,6 +9028,37 @@ declare const SportProfilesResponseSchema: {
|
|
|
8609
9028
|
readonly required: readonly ["items"];
|
|
8610
9029
|
readonly type: "object";
|
|
8611
9030
|
};
|
|
9031
|
+
declare const SpotMoveSchema: {
|
|
9032
|
+
readonly description: "One spot-to-spot move. No player identity — the occupant of `from` at apply time is relocated.\n";
|
|
9033
|
+
readonly properties: {
|
|
9034
|
+
readonly from: {
|
|
9035
|
+
readonly $ref: "#/components/schemas/SpotRef";
|
|
9036
|
+
};
|
|
9037
|
+
readonly to: {
|
|
9038
|
+
readonly $ref: "#/components/schemas/SpotRef";
|
|
9039
|
+
};
|
|
9040
|
+
};
|
|
9041
|
+
readonly required: readonly ["from", "to"];
|
|
9042
|
+
readonly type: "object";
|
|
9043
|
+
};
|
|
9044
|
+
declare const SpotPositionSchema: {
|
|
9045
|
+
readonly description: "Spot within a team. The layout derives from the match format:\nSINGLES matches have one SINGLE spot per team, DOUBLES matches have\nLEFT + RIGHT (court side).\n";
|
|
9046
|
+
readonly enum: readonly ["SINGLE", "LEFT", "RIGHT"];
|
|
9047
|
+
readonly type: "string";
|
|
9048
|
+
};
|
|
9049
|
+
declare const SpotRefSchema: {
|
|
9050
|
+
readonly properties: {
|
|
9051
|
+
readonly position: {
|
|
9052
|
+
readonly $ref: "#/components/schemas/SpotPosition";
|
|
9053
|
+
};
|
|
9054
|
+
readonly team_id: {
|
|
9055
|
+
readonly format: "uuid";
|
|
9056
|
+
readonly type: "string";
|
|
9057
|
+
};
|
|
9058
|
+
};
|
|
9059
|
+
readonly required: readonly ["team_id", "position"];
|
|
9060
|
+
readonly type: "object";
|
|
9061
|
+
};
|
|
8612
9062
|
declare const TopicSchema$1: {
|
|
8613
9063
|
readonly enum: readonly ["FACILITY_MESSAGE"];
|
|
8614
9064
|
readonly type: "string";
|
|
@@ -8887,6 +9337,7 @@ declare const schemas_gen$1_CommentListResponseSchema: typeof CommentListRespons
|
|
|
8887
9337
|
declare const schemas_gen$1_CommentSchema: typeof CommentSchema;
|
|
8888
9338
|
declare const schemas_gen$1_CommunityItemSchema: typeof CommunityItemSchema;
|
|
8889
9339
|
declare const schemas_gen$1_CommunityListResponseSchema: typeof CommunityListResponseSchema;
|
|
9340
|
+
declare const schemas_gen$1_ConflictDetailsSchema: typeof ConflictDetailsSchema;
|
|
8890
9341
|
declare const schemas_gen$1_CreateCommentRequestSchema: typeof CreateCommentRequestSchema;
|
|
8891
9342
|
declare const schemas_gen$1_CreateMatchParticipationRequestSchema: typeof CreateMatchParticipationRequestSchema;
|
|
8892
9343
|
declare const schemas_gen$1_CreatePostRequestSchema: typeof CreatePostRequestSchema;
|
|
@@ -8923,6 +9374,9 @@ declare const schemas_gen$1_MatchParticipantsSchema: typeof MatchParticipantsSch
|
|
|
8923
9374
|
declare const schemas_gen$1_MatchPriceListEntrySchema: typeof MatchPriceListEntrySchema;
|
|
8924
9375
|
declare const schemas_gen$1_MatchSchema: typeof MatchSchema;
|
|
8925
9376
|
declare const schemas_gen$1_MatchStatusSchema: typeof MatchStatusSchema;
|
|
9377
|
+
declare const schemas_gen$1_MatchTeamSchema: typeof MatchTeamSchema;
|
|
9378
|
+
declare const schemas_gen$1_MatchTeamSpotSchema: typeof MatchTeamSpotSchema;
|
|
9379
|
+
declare const schemas_gen$1_MatchTeamsResponseSchema: typeof MatchTeamsResponseSchema;
|
|
8926
9380
|
declare const schemas_gen$1_MatchUserPriceSchema: typeof MatchUserPriceSchema;
|
|
8927
9381
|
declare const schemas_gen$1_MemberListResponseSchema: typeof MemberListResponseSchema;
|
|
8928
9382
|
declare const schemas_gen$1_MemberRelationSchema: typeof MemberRelationSchema;
|
|
@@ -8949,6 +9403,7 @@ declare const schemas_gen$1_PublicParticipantSummarySchema: typeof PublicPartici
|
|
|
8949
9403
|
declare const schemas_gen$1_ReactionGroupSchema: typeof ReactionGroupSchema;
|
|
8950
9404
|
declare const schemas_gen$1_ReactionRequestSchema: typeof ReactionRequestSchema;
|
|
8951
9405
|
declare const schemas_gen$1_ReactionTypeSchema: typeof ReactionTypeSchema;
|
|
9406
|
+
declare const schemas_gen$1_RearrangeMatchTeamsRequestSchema: typeof RearrangeMatchTeamsRequestSchema;
|
|
8952
9407
|
declare const schemas_gen$1_RecommendationListSchema: typeof RecommendationListSchema;
|
|
8953
9408
|
declare const schemas_gen$1_RecommendationSchema: typeof RecommendationSchema;
|
|
8954
9409
|
declare const schemas_gen$1_RefundPolicySchema: typeof RefundPolicySchema;
|
|
@@ -8961,6 +9416,9 @@ declare const schemas_gen$1_SportProfileAttributeSchema: typeof SportProfileAttr
|
|
|
8961
9416
|
declare const schemas_gen$1_SportProfileLevelSchema: typeof SportProfileLevelSchema;
|
|
8962
9417
|
declare const schemas_gen$1_SportProfileSchema: typeof SportProfileSchema;
|
|
8963
9418
|
declare const schemas_gen$1_SportProfilesResponseSchema: typeof SportProfilesResponseSchema;
|
|
9419
|
+
declare const schemas_gen$1_SpotMoveSchema: typeof SpotMoveSchema;
|
|
9420
|
+
declare const schemas_gen$1_SpotPositionSchema: typeof SpotPositionSchema;
|
|
9421
|
+
declare const schemas_gen$1_SpotRefSchema: typeof SpotRefSchema;
|
|
8964
9422
|
declare const schemas_gen$1_UpdateSportProfileLevelRequestSchema: typeof UpdateSportProfileLevelRequestSchema;
|
|
8965
9423
|
declare const schemas_gen$1_UpdateUsersProfilesRequestSchema: typeof UpdateUsersProfilesRequestSchema;
|
|
8966
9424
|
declare const schemas_gen$1_UserParticipationStatusSchema: typeof UserParticipationStatusSchema;
|
|
@@ -8971,7 +9429,7 @@ declare const schemas_gen$1_VisibilitySchema: typeof VisibilitySchema;
|
|
|
8971
9429
|
declare const schemas_gen$1_pkgOpenapiSharedFilterableStringSchema: typeof pkgOpenapiSharedFilterableStringSchema;
|
|
8972
9430
|
declare const schemas_gen$1_pkgOpenapiSharedOffsetPaginatedResultSetSchema: typeof pkgOpenapiSharedOffsetPaginatedResultSetSchema;
|
|
8973
9431
|
declare namespace schemas_gen$1 {
|
|
8974
|
-
export { schemas_gen$1_AddressSchema as AddressSchema, schemas_gen$1_AuthorSchema as AuthorSchema, ChannelsSchema$1 as ChannelsSchema, schemas_gen$1_CommentListResponseSchema as CommentListResponseSchema, schemas_gen$1_CommentSchema as CommentSchema, schemas_gen$1_CommunityItemSchema as CommunityItemSchema, schemas_gen$1_CommunityListResponseSchema as CommunityListResponseSchema, schemas_gen$1_CreateCommentRequestSchema as CreateCommentRequestSchema, schemas_gen$1_CreateMatchParticipationRequestSchema as CreateMatchParticipationRequestSchema, schemas_gen$1_CreatePostRequestSchema as CreatePostRequestSchema, schemas_gen$1_CreateSportProfileLevelRequestSchema as CreateSportProfileLevelRequestSchema, schemas_gen$1_CreateSportProfileRequestSchema as CreateSportProfileRequestSchema, schemas_gen$1_ExternalServiceSchema as ExternalServiceSchema, schemas_gen$1_FacilityListSchema as FacilityListSchema, FacilityMessagePayloadSchema$1 as FacilityMessagePayloadSchema, schemas_gen$1_FacilityOfferConditionActivitiesSchema as FacilityOfferConditionActivitiesSchema, schemas_gen$1_FacilityOfferConditionCourtsSchema as FacilityOfferConditionCourtsSchema, schemas_gen$1_FacilityOfferConditionDateSchema as FacilityOfferConditionDateSchema, schemas_gen$1_FacilityOfferConditionHoursinadvanceSchema as FacilityOfferConditionHoursinadvanceSchema, schemas_gen$1_FacilityOfferConditionSchema as FacilityOfferConditionSchema, schemas_gen$1_FacilityOfferConditionTimeSchema as FacilityOfferConditionTimeSchema, schemas_gen$1_FacilityOfferConditionWeekdaysSchema as FacilityOfferConditionWeekdaysSchema, schemas_gen$1_FacilityOfferListSchema as FacilityOfferListSchema, schemas_gen$1_FacilityOfferOrderSchema as FacilityOfferOrderSchema, schemas_gen$1_FacilityOfferSchema as FacilityOfferSchema, schemas_gen$1_FacilityPermissionSchema as FacilityPermissionSchema, schemas_gen$1_FacilityPermissionsResponseSchema as FacilityPermissionsResponseSchema, schemas_gen$1_FacilityPunchCardDataSchema as FacilityPunchCardDataSchema, schemas_gen$1_FacilitySchema as FacilitySchema, schemas_gen$1_FacilityValueCardDataSchema as FacilityValueCardDataSchema, schemas_gen$1_GenderSchema as GenderSchema, schemas_gen$1_JoinCommunityResponseSchema as JoinCommunityResponseSchema, schemas_gen$1_LinkTypeSchema as LinkTypeSchema, schemas_gen$1_MatchBasePriceSchema as MatchBasePriceSchema, schemas_gen$1_MatchCourtSchema as MatchCourtSchema, schemas_gen$1_MatchDetailSchema as MatchDetailSchema, schemas_gen$1_MatchEventSchema as MatchEventSchema, schemas_gen$1_MatchListSchema as MatchListSchema, schemas_gen$1_MatchOccasionDetailSchema as MatchOccasionDetailSchema, schemas_gen$1_MatchOccasionSchema as MatchOccasionSchema, schemas_gen$1_MatchParticipantsSchema as MatchParticipantsSchema, schemas_gen$1_MatchPriceListEntrySchema as MatchPriceListEntrySchema, schemas_gen$1_MatchSchema as MatchSchema, schemas_gen$1_MatchStatusSchema as MatchStatusSchema, schemas_gen$1_MatchUserPriceSchema as MatchUserPriceSchema, schemas_gen$1_MemberListResponseSchema as MemberListResponseSchema, schemas_gen$1_MemberRelationSchema as MemberRelationSchema, schemas_gen$1_MemberSchema as MemberSchema, schemas_gen$1_MembershipStatusSchema as MembershipStatusSchema, MetadataSchema$1 as MetadataSchema, NotificationPayloadSchema$1 as NotificationPayloadSchema, NotificationRequestBodySchema$1 as NotificationRequestBodySchema, NotificationSchema$1 as NotificationSchema, schemas_gen$1_NotificationsFilterSchema as NotificationsFilterSchema, NotificationsPaginatedResponseSchema$1 as NotificationsPaginatedResponseSchema, NotificationsSummarySchema$1 as NotificationsSummarySchema, schemas_gen$1_OffsetPaginatedResultSetSchema as OffsetPaginatedResultSetSchema, schemas_gen$1_PaginationMetaSchema as PaginationMetaSchema, schemas_gen$1_ParticipantDetailSchema as ParticipantDetailSchema, schemas_gen$1_ParticipantSummarySchema as ParticipantSummarySchema, schemas_gen$1_PatchCommentRequestSchema as PatchCommentRequestSchema, schemas_gen$1_PatchPostRequestSchema as PatchPostRequestSchema, schemas_gen$1_PaymentCommandSchema as PaymentCommandSchema, schemas_gen$1_PaymentDetailsSchema as PaymentDetailsSchema, schemas_gen$1_PositionSchema as PositionSchema, schemas_gen$1_PostLinkSchema as PostLinkSchema, schemas_gen$1_PostListResponseSchema as PostListResponseSchema, schemas_gen$1_PostSchema as PostSchema, schemas_gen$1_PostingPermissionSchema as PostingPermissionSchema, PreferenceSchema$1 as PreferenceSchema, PreferencesResponseSchema$1 as PreferencesResponseSchema, schemas_gen$1_PrivateParticipantDetailSchema as PrivateParticipantDetailSchema, schemas_gen$1_PrivateParticipantSummarySchema as PrivateParticipantSummarySchema, schemas_gen$1_PublicParticipantDetailSchema as PublicParticipantDetailSchema, schemas_gen$1_PublicParticipantSummarySchema as PublicParticipantSummarySchema, schemas_gen$1_ReactionGroupSchema as ReactionGroupSchema, schemas_gen$1_ReactionRequestSchema as ReactionRequestSchema, schemas_gen$1_ReactionTypeSchema as ReactionTypeSchema, schemas_gen$1_RecommendationListSchema as RecommendationListSchema, schemas_gen$1_RecommendationSchema as RecommendationSchema, schemas_gen$1_RefundPolicySchema as RefundPolicySchema, RegisterDeviceRequestSchema$1 as RegisterDeviceRequestSchema, schemas_gen$1_ResourceSchema as ResourceSchema, schemas_gen$1_SourceSchema as SourceSchema, schemas_gen$1_SportAuthoritiesResponseSchema as SportAuthoritiesResponseSchema, schemas_gen$1_SportAuthoritySchema as SportAuthoritySchema, schemas_gen$1_SportLevelSchema as SportLevelSchema, schemas_gen$1_SportProfileAttributeSchema as SportProfileAttributeSchema, schemas_gen$1_SportProfileLevelSchema as SportProfileLevelSchema, schemas_gen$1_SportProfileSchema as SportProfileSchema, schemas_gen$1_SportProfilesResponseSchema as SportProfilesResponseSchema, TopicSchema$1 as TopicSchema, UpdatePreferencesRequestBodySchema$1 as UpdatePreferencesRequestBodySchema, schemas_gen$1_UpdateSportProfileLevelRequestSchema as UpdateSportProfileLevelRequestSchema, schemas_gen$1_UpdateUsersProfilesRequestSchema as UpdateUsersProfilesRequestSchema, schemas_gen$1_UserParticipationStatusSchema as UserParticipationStatusSchema, schemas_gen$1_UserProfileSchema as UserProfileSchema, schemas_gen$1_UserRelationSchema as UserRelationSchema, schemas_gen$1_UsersProfilesPaginatedResponseSchema as UsersProfilesPaginatedResponseSchema, schemas_gen$1_VisibilitySchema as VisibilitySchema, pkgOpenapiSharedCursorPaginatedResultSetSchema$1 as pkgOpenapiSharedCursorPaginatedResultSetSchema, pkgOpenapiSharedErrorSchema$1 as pkgOpenapiSharedErrorSchema, pkgOpenapiSharedErrorsSchema$1 as pkgOpenapiSharedErrorsSchema, schemas_gen$1_pkgOpenapiSharedFilterableStringSchema as pkgOpenapiSharedFilterableStringSchema, schemas_gen$1_pkgOpenapiSharedOffsetPaginatedResultSetSchema as pkgOpenapiSharedOffsetPaginatedResultSetSchema, pkgOpenapiSharedProblemDetailsSchema$1 as pkgOpenapiSharedProblemDetailsSchema };
|
|
9432
|
+
export { schemas_gen$1_AddressSchema as AddressSchema, schemas_gen$1_AuthorSchema as AuthorSchema, ChannelsSchema$1 as ChannelsSchema, schemas_gen$1_CommentListResponseSchema as CommentListResponseSchema, schemas_gen$1_CommentSchema as CommentSchema, schemas_gen$1_CommunityItemSchema as CommunityItemSchema, schemas_gen$1_CommunityListResponseSchema as CommunityListResponseSchema, schemas_gen$1_ConflictDetailsSchema as ConflictDetailsSchema, schemas_gen$1_CreateCommentRequestSchema as CreateCommentRequestSchema, schemas_gen$1_CreateMatchParticipationRequestSchema as CreateMatchParticipationRequestSchema, schemas_gen$1_CreatePostRequestSchema as CreatePostRequestSchema, schemas_gen$1_CreateSportProfileLevelRequestSchema as CreateSportProfileLevelRequestSchema, schemas_gen$1_CreateSportProfileRequestSchema as CreateSportProfileRequestSchema, schemas_gen$1_ExternalServiceSchema as ExternalServiceSchema, schemas_gen$1_FacilityListSchema as FacilityListSchema, FacilityMessagePayloadSchema$1 as FacilityMessagePayloadSchema, schemas_gen$1_FacilityOfferConditionActivitiesSchema as FacilityOfferConditionActivitiesSchema, schemas_gen$1_FacilityOfferConditionCourtsSchema as FacilityOfferConditionCourtsSchema, schemas_gen$1_FacilityOfferConditionDateSchema as FacilityOfferConditionDateSchema, schemas_gen$1_FacilityOfferConditionHoursinadvanceSchema as FacilityOfferConditionHoursinadvanceSchema, schemas_gen$1_FacilityOfferConditionSchema as FacilityOfferConditionSchema, schemas_gen$1_FacilityOfferConditionTimeSchema as FacilityOfferConditionTimeSchema, schemas_gen$1_FacilityOfferConditionWeekdaysSchema as FacilityOfferConditionWeekdaysSchema, schemas_gen$1_FacilityOfferListSchema as FacilityOfferListSchema, schemas_gen$1_FacilityOfferOrderSchema as FacilityOfferOrderSchema, schemas_gen$1_FacilityOfferSchema as FacilityOfferSchema, schemas_gen$1_FacilityPermissionSchema as FacilityPermissionSchema, schemas_gen$1_FacilityPermissionsResponseSchema as FacilityPermissionsResponseSchema, schemas_gen$1_FacilityPunchCardDataSchema as FacilityPunchCardDataSchema, schemas_gen$1_FacilitySchema as FacilitySchema, schemas_gen$1_FacilityValueCardDataSchema as FacilityValueCardDataSchema, schemas_gen$1_GenderSchema as GenderSchema, schemas_gen$1_JoinCommunityResponseSchema as JoinCommunityResponseSchema, schemas_gen$1_LinkTypeSchema as LinkTypeSchema, schemas_gen$1_MatchBasePriceSchema as MatchBasePriceSchema, schemas_gen$1_MatchCourtSchema as MatchCourtSchema, schemas_gen$1_MatchDetailSchema as MatchDetailSchema, schemas_gen$1_MatchEventSchema as MatchEventSchema, schemas_gen$1_MatchListSchema as MatchListSchema, schemas_gen$1_MatchOccasionDetailSchema as MatchOccasionDetailSchema, schemas_gen$1_MatchOccasionSchema as MatchOccasionSchema, schemas_gen$1_MatchParticipantsSchema as MatchParticipantsSchema, schemas_gen$1_MatchPriceListEntrySchema as MatchPriceListEntrySchema, schemas_gen$1_MatchSchema as MatchSchema, schemas_gen$1_MatchStatusSchema as MatchStatusSchema, schemas_gen$1_MatchTeamSchema as MatchTeamSchema, schemas_gen$1_MatchTeamSpotSchema as MatchTeamSpotSchema, schemas_gen$1_MatchTeamsResponseSchema as MatchTeamsResponseSchema, schemas_gen$1_MatchUserPriceSchema as MatchUserPriceSchema, schemas_gen$1_MemberListResponseSchema as MemberListResponseSchema, schemas_gen$1_MemberRelationSchema as MemberRelationSchema, schemas_gen$1_MemberSchema as MemberSchema, schemas_gen$1_MembershipStatusSchema as MembershipStatusSchema, MetadataSchema$1 as MetadataSchema, NotificationPayloadSchema$1 as NotificationPayloadSchema, NotificationRequestBodySchema$1 as NotificationRequestBodySchema, NotificationSchema$1 as NotificationSchema, schemas_gen$1_NotificationsFilterSchema as NotificationsFilterSchema, NotificationsPaginatedResponseSchema$1 as NotificationsPaginatedResponseSchema, NotificationsSummarySchema$1 as NotificationsSummarySchema, schemas_gen$1_OffsetPaginatedResultSetSchema as OffsetPaginatedResultSetSchema, schemas_gen$1_PaginationMetaSchema as PaginationMetaSchema, schemas_gen$1_ParticipantDetailSchema as ParticipantDetailSchema, schemas_gen$1_ParticipantSummarySchema as ParticipantSummarySchema, schemas_gen$1_PatchCommentRequestSchema as PatchCommentRequestSchema, schemas_gen$1_PatchPostRequestSchema as PatchPostRequestSchema, schemas_gen$1_PaymentCommandSchema as PaymentCommandSchema, schemas_gen$1_PaymentDetailsSchema as PaymentDetailsSchema, schemas_gen$1_PositionSchema as PositionSchema, schemas_gen$1_PostLinkSchema as PostLinkSchema, schemas_gen$1_PostListResponseSchema as PostListResponseSchema, schemas_gen$1_PostSchema as PostSchema, schemas_gen$1_PostingPermissionSchema as PostingPermissionSchema, PreferenceSchema$1 as PreferenceSchema, PreferencesResponseSchema$1 as PreferencesResponseSchema, schemas_gen$1_PrivateParticipantDetailSchema as PrivateParticipantDetailSchema, schemas_gen$1_PrivateParticipantSummarySchema as PrivateParticipantSummarySchema, schemas_gen$1_PublicParticipantDetailSchema as PublicParticipantDetailSchema, schemas_gen$1_PublicParticipantSummarySchema as PublicParticipantSummarySchema, schemas_gen$1_ReactionGroupSchema as ReactionGroupSchema, schemas_gen$1_ReactionRequestSchema as ReactionRequestSchema, schemas_gen$1_ReactionTypeSchema as ReactionTypeSchema, schemas_gen$1_RearrangeMatchTeamsRequestSchema as RearrangeMatchTeamsRequestSchema, schemas_gen$1_RecommendationListSchema as RecommendationListSchema, schemas_gen$1_RecommendationSchema as RecommendationSchema, schemas_gen$1_RefundPolicySchema as RefundPolicySchema, RegisterDeviceRequestSchema$1 as RegisterDeviceRequestSchema, schemas_gen$1_ResourceSchema as ResourceSchema, schemas_gen$1_SourceSchema as SourceSchema, schemas_gen$1_SportAuthoritiesResponseSchema as SportAuthoritiesResponseSchema, schemas_gen$1_SportAuthoritySchema as SportAuthoritySchema, schemas_gen$1_SportLevelSchema as SportLevelSchema, schemas_gen$1_SportProfileAttributeSchema as SportProfileAttributeSchema, schemas_gen$1_SportProfileLevelSchema as SportProfileLevelSchema, schemas_gen$1_SportProfileSchema as SportProfileSchema, schemas_gen$1_SportProfilesResponseSchema as SportProfilesResponseSchema, schemas_gen$1_SpotMoveSchema as SpotMoveSchema, schemas_gen$1_SpotPositionSchema as SpotPositionSchema, schemas_gen$1_SpotRefSchema as SpotRefSchema, TopicSchema$1 as TopicSchema, UpdatePreferencesRequestBodySchema$1 as UpdatePreferencesRequestBodySchema, schemas_gen$1_UpdateSportProfileLevelRequestSchema as UpdateSportProfileLevelRequestSchema, schemas_gen$1_UpdateUsersProfilesRequestSchema as UpdateUsersProfilesRequestSchema, schemas_gen$1_UserParticipationStatusSchema as UserParticipationStatusSchema, schemas_gen$1_UserProfileSchema as UserProfileSchema, schemas_gen$1_UserRelationSchema as UserRelationSchema, schemas_gen$1_UsersProfilesPaginatedResponseSchema as UsersProfilesPaginatedResponseSchema, schemas_gen$1_VisibilitySchema as VisibilitySchema, pkgOpenapiSharedCursorPaginatedResultSetSchema$1 as pkgOpenapiSharedCursorPaginatedResultSetSchema, pkgOpenapiSharedErrorSchema$1 as pkgOpenapiSharedErrorSchema, pkgOpenapiSharedErrorsSchema$1 as pkgOpenapiSharedErrorsSchema, schemas_gen$1_pkgOpenapiSharedFilterableStringSchema as pkgOpenapiSharedFilterableStringSchema, schemas_gen$1_pkgOpenapiSharedOffsetPaginatedResultSetSchema as pkgOpenapiSharedOffsetPaginatedResultSetSchema, pkgOpenapiSharedProblemDetailsSchema$1 as pkgOpenapiSharedProblemDetailsSchema };
|
|
8975
9433
|
}
|
|
8976
9434
|
|
|
8977
9435
|
type Options$2<TData extends TDataShape$1 = TDataShape$1, ThrowOnError extends boolean = boolean> = Options$3<TData, ThrowOnError> & {
|
|
@@ -9156,6 +9614,10 @@ declare const getMatch: <ThrowOnError extends boolean = false>(options: Options$
|
|
|
9156
9614
|
* `checkout_url` the client redirects to; for inline/free flows it is
|
|
9157
9615
|
* absent.
|
|
9158
9616
|
*
|
|
9617
|
+
* Team handling: send `team_id` + `position` to claim a specific spot
|
|
9618
|
+
* from the occasion's teams layout; omit both to have a spot
|
|
9619
|
+
* auto-assigned. A taken spot yields 409 with code SPOT_OCCUPIED.
|
|
9620
|
+
*
|
|
9159
9621
|
*/
|
|
9160
9622
|
declare const createMatchParticipation: <ThrowOnError extends boolean = false>(options: Options$2<CreateMatchParticipationData, ThrowOnError>) => RequestResult$1<CreateMatchParticipationResponses, CreateMatchParticipationErrors, ThrowOnError, "fields">;
|
|
9161
9623
|
/**
|
|
@@ -9954,6 +10416,10 @@ declare const getMatchOptions: (options: Options$2<GetMatchData>) => _tanstack_r
|
|
|
9954
10416
|
* `checkout_url` the client redirects to; for inline/free flows it is
|
|
9955
10417
|
* absent.
|
|
9956
10418
|
*
|
|
10419
|
+
* Team handling: send `team_id` + `position` to claim a specific spot
|
|
10420
|
+
* from the occasion's teams layout; omit both to have a spot
|
|
10421
|
+
* auto-assigned. A taken spot yields 409 with code SPOT_OCCUPIED.
|
|
10422
|
+
*
|
|
9957
10423
|
*/
|
|
9958
10424
|
declare const createMatchParticipationMutation: (options?: Partial<Options$2<CreateMatchParticipationData>>) => UseMutationOptions<CreateMatchParticipationResponse, CreateMatchParticipationError, Options$2<CreateMatchParticipationData>>;
|
|
9959
10425
|
/**
|
|
@@ -10540,6 +11006,7 @@ type indexV1_CommentListResponse = CommentListResponse;
|
|
|
10540
11006
|
type indexV1_CommunityIdParam = CommunityIdParam;
|
|
10541
11007
|
type indexV1_CommunityItem = CommunityItem;
|
|
10542
11008
|
type indexV1_CommunityListResponse = CommunityListResponse;
|
|
11009
|
+
type indexV1_ConflictDetails = ConflictDetails;
|
|
10543
11010
|
type indexV1_CreateCommentData = CreateCommentData;
|
|
10544
11011
|
type indexV1_CreateCommentError = CreateCommentError;
|
|
10545
11012
|
type indexV1_CreateCommentErrors = CreateCommentErrors;
|
|
@@ -10752,6 +11219,9 @@ type indexV1_MatchOccasionDetail = MatchOccasionDetail;
|
|
|
10752
11219
|
type indexV1_MatchParticipants = MatchParticipants;
|
|
10753
11220
|
type indexV1_MatchPriceListEntry = MatchPriceListEntry;
|
|
10754
11221
|
type indexV1_MatchStatus = MatchStatus;
|
|
11222
|
+
type indexV1_MatchTeam = MatchTeam;
|
|
11223
|
+
type indexV1_MatchTeamSpot = MatchTeamSpot;
|
|
11224
|
+
type indexV1_MatchTeamsResponse = MatchTeamsResponse;
|
|
10755
11225
|
type indexV1_MatchUserPrice = MatchUserPrice;
|
|
10756
11226
|
type indexV1_Member = Member;
|
|
10757
11227
|
type indexV1_MemberListResponse = MemberListResponse;
|
|
@@ -10785,6 +11255,7 @@ type indexV1_PublicParticipantSummary = PublicParticipantSummary;
|
|
|
10785
11255
|
type indexV1_ReactionGroup = ReactionGroup;
|
|
10786
11256
|
type indexV1_ReactionRequest = ReactionRequest;
|
|
10787
11257
|
type indexV1_ReactionType = ReactionType;
|
|
11258
|
+
type indexV1_RearrangeMatchTeamsRequest = RearrangeMatchTeamsRequest;
|
|
10788
11259
|
type indexV1_Recommendation = Recommendation;
|
|
10789
11260
|
type indexV1_RecommendationList = RecommendationList;
|
|
10790
11261
|
type indexV1_RefundPolicy = RefundPolicy;
|
|
@@ -10804,6 +11275,9 @@ type indexV1_SportProfileAttribute = SportProfileAttribute;
|
|
|
10804
11275
|
type indexV1_SportProfileId = SportProfileId;
|
|
10805
11276
|
type indexV1_SportProfileLevel = SportProfileLevel;
|
|
10806
11277
|
type indexV1_SportProfilesResponse = SportProfilesResponse;
|
|
11278
|
+
type indexV1_SpotMove = SpotMove;
|
|
11279
|
+
type indexV1_SpotPosition = SpotPosition;
|
|
11280
|
+
type indexV1_SpotRef = SpotRef;
|
|
10807
11281
|
type indexV1_UpdateSportProfileLevelRequest = UpdateSportProfileLevelRequest;
|
|
10808
11282
|
type indexV1_UpdateUserProfileData = UpdateUserProfileData;
|
|
10809
11283
|
type indexV1_UpdateUserProfileError = UpdateUserProfileError;
|
|
@@ -10876,7 +11350,7 @@ declare const indexV1_updateUserSportProfileLevel: typeof updateUserSportProfile
|
|
|
10876
11350
|
declare const indexV1_upsertCommentReaction: typeof upsertCommentReaction;
|
|
10877
11351
|
declare const indexV1_upsertPostReaction: typeof upsertPostReaction;
|
|
10878
11352
|
declare namespace indexV1 {
|
|
10879
|
-
export { type indexV1_AcceptInvitationData as AcceptInvitationData, type indexV1_AcceptInvitationError as AcceptInvitationError, type indexV1_AcceptInvitationErrors as AcceptInvitationErrors, type indexV1_AcceptInvitationResponse as AcceptInvitationResponse, type indexV1_AcceptInvitationResponses as AcceptInvitationResponses, type indexV1_AddUserSportProfileLevelData as AddUserSportProfileLevelData, type indexV1_AddUserSportProfileLevelError as AddUserSportProfileLevelError, type indexV1_AddUserSportProfileLevelErrors as AddUserSportProfileLevelErrors, type indexV1_AddUserSportProfileLevelResponse as AddUserSportProfileLevelResponse, type indexV1_AddUserSportProfileLevelResponses as AddUserSportProfileLevelResponses, type indexV1_Address as Address, type indexV1_Author as Author, type indexV1_AuthoritySlug as AuthoritySlug, type Channels$1 as Channels, type ClientOptions$2 as ClientOptions, type indexV1_Comment as Comment, type indexV1_CommentIdParam as CommentIdParam, type indexV1_CommentListResponse as CommentListResponse, type indexV1_CommunityIdParam as CommunityIdParam, type indexV1_CommunityItem as CommunityItem, type indexV1_CommunityListResponse as CommunityListResponse, type indexV1_CreateCommentData as CreateCommentData, type indexV1_CreateCommentError as CreateCommentError, type indexV1_CreateCommentErrors as CreateCommentErrors, type indexV1_CreateCommentRequest as CreateCommentRequest, type indexV1_CreateCommentResponse as CreateCommentResponse, type indexV1_CreateCommentResponses as CreateCommentResponses, type indexV1_CreateFacilityOfferOrderData as CreateFacilityOfferOrderData, type indexV1_CreateFacilityOfferOrderError as CreateFacilityOfferOrderError, type indexV1_CreateFacilityOfferOrderErrors as CreateFacilityOfferOrderErrors, type indexV1_CreateFacilityOfferOrderResponse as CreateFacilityOfferOrderResponse, type indexV1_CreateFacilityOfferOrderResponses as CreateFacilityOfferOrderResponses, type indexV1_CreateMatchParticipationData as CreateMatchParticipationData, type indexV1_CreateMatchParticipationError as CreateMatchParticipationError, type indexV1_CreateMatchParticipationErrors as CreateMatchParticipationErrors, type indexV1_CreateMatchParticipationRequest as CreateMatchParticipationRequest, type indexV1_CreateMatchParticipationResponse as CreateMatchParticipationResponse, type indexV1_CreateMatchParticipationResponses as CreateMatchParticipationResponses, type indexV1_CreatePostData as CreatePostData, type indexV1_CreatePostError as CreatePostError, type indexV1_CreatePostErrors as CreatePostErrors, type indexV1_CreatePostRequest as CreatePostRequest, type indexV1_CreatePostResponse as CreatePostResponse, type indexV1_CreatePostResponses as CreatePostResponses, type indexV1_CreateSportProfileLevelRequest as CreateSportProfileLevelRequest, type indexV1_CreateSportProfileRequest as CreateSportProfileRequest, type indexV1_CreateUserSportProfileData as CreateUserSportProfileData, type indexV1_CreateUserSportProfileError as CreateUserSportProfileError, type indexV1_CreateUserSportProfileErrors as CreateUserSportProfileErrors, type indexV1_CreateUserSportProfileResponse as CreateUserSportProfileResponse, type indexV1_CreateUserSportProfileResponses as CreateUserSportProfileResponses, type indexV1_DeleteCommentData as DeleteCommentData, type indexV1_DeleteCommentError as DeleteCommentError, type indexV1_DeleteCommentErrors as DeleteCommentErrors, type indexV1_DeleteCommentReactionData as DeleteCommentReactionData, type indexV1_DeleteCommentReactionError as DeleteCommentReactionError, type indexV1_DeleteCommentReactionErrors as DeleteCommentReactionErrors, type indexV1_DeleteCommentReactionResponse as DeleteCommentReactionResponse, type indexV1_DeleteCommentReactionResponses as DeleteCommentReactionResponses, type indexV1_DeleteCommentResponse as DeleteCommentResponse, type indexV1_DeleteCommentResponses as DeleteCommentResponses, type indexV1_DeleteMatchParticipationData as DeleteMatchParticipationData, type indexV1_DeleteMatchParticipationError as DeleteMatchParticipationError, type indexV1_DeleteMatchParticipationErrors as DeleteMatchParticipationErrors, type indexV1_DeleteMatchParticipationResponse as DeleteMatchParticipationResponse, type indexV1_DeleteMatchParticipationResponses as DeleteMatchParticipationResponses, type indexV1_DeletePostData as DeletePostData, type indexV1_DeletePostError as DeletePostError, type indexV1_DeletePostErrors as DeletePostErrors, type indexV1_DeletePostReactionData as DeletePostReactionData, type indexV1_DeletePostReactionError as DeletePostReactionError, type indexV1_DeletePostReactionErrors as DeletePostReactionErrors, type indexV1_DeletePostReactionResponse as DeletePostReactionResponse, type indexV1_DeletePostReactionResponses as DeletePostReactionResponses, type indexV1_DeletePostResponse as DeletePostResponse, type indexV1_DeletePostResponses as DeletePostResponses, type indexV1_DeleteUserSportProfileData as DeleteUserSportProfileData, type indexV1_DeleteUserSportProfileError as DeleteUserSportProfileError, type indexV1_DeleteUserSportProfileErrors as DeleteUserSportProfileErrors, type indexV1_DeleteUserSportProfileLevelData as DeleteUserSportProfileLevelData, type indexV1_DeleteUserSportProfileLevelError as DeleteUserSportProfileLevelError, type indexV1_DeleteUserSportProfileLevelErrors as DeleteUserSportProfileLevelErrors, type indexV1_DeleteUserSportProfileLevelResponse as DeleteUserSportProfileLevelResponse, type indexV1_DeleteUserSportProfileLevelResponses as DeleteUserSportProfileLevelResponses, type indexV1_DeleteUserSportProfileResponse as DeleteUserSportProfileResponse, type indexV1_DeleteUserSportProfileResponses as DeleteUserSportProfileResponses, type indexV1_ExternalService as ExternalService, type indexV1_Facility as Facility, type indexV1_FacilityIdPath as FacilityIdPath, type indexV1_FacilityList as FacilityList, type FacilityMessagePayload$1 as FacilityMessagePayload, type indexV1_FacilityOffer as FacilityOffer, type indexV1_FacilityOfferCondition as FacilityOfferCondition, type indexV1_FacilityOfferConditionActivities as FacilityOfferConditionActivities, type indexV1_FacilityOfferConditionCourts as FacilityOfferConditionCourts, type indexV1_FacilityOfferConditionDate as FacilityOfferConditionDate, type indexV1_FacilityOfferConditionHoursinadvance as FacilityOfferConditionHoursinadvance, type indexV1_FacilityOfferConditionTime as FacilityOfferConditionTime, type indexV1_FacilityOfferConditionWeekdays as FacilityOfferConditionWeekdays, type indexV1_FacilityOfferList as FacilityOfferList, type indexV1_FacilityOfferOrder as FacilityOfferOrder, type indexV1_FacilityPermission as FacilityPermission, type indexV1_FacilityPermissionsResponse as FacilityPermissionsResponse, type indexV1_FacilityPunchCardData as FacilityPunchCardData, type indexV1_FacilityValueCardData as FacilityValueCardData, type indexV1_Gender as Gender, type indexV1_GetCommunityData as GetCommunityData, type indexV1_GetCommunityError as GetCommunityError, type indexV1_GetCommunityErrors as GetCommunityErrors, type indexV1_GetCommunityResponse as GetCommunityResponse, type indexV1_GetCommunityResponses as GetCommunityResponses, type indexV1_GetFacilityData as GetFacilityData, type indexV1_GetFacilityError as GetFacilityError, type indexV1_GetFacilityErrors as GetFacilityErrors, type indexV1_GetFacilityResponse as GetFacilityResponse, type indexV1_GetFacilityResponses as GetFacilityResponses, type indexV1_GetMatchData as GetMatchData, type indexV1_GetMatchError as GetMatchError, type indexV1_GetMatchErrors as GetMatchErrors, type indexV1_GetMatchResponse as GetMatchResponse, type indexV1_GetMatchResponses as GetMatchResponses, type indexV1_GetMatchUserPriceData as GetMatchUserPriceData, type indexV1_GetMatchUserPriceError as GetMatchUserPriceError, type indexV1_GetMatchUserPriceErrors as GetMatchUserPriceErrors, type indexV1_GetMatchUserPriceResponse as GetMatchUserPriceResponse, type indexV1_GetMatchUserPriceResponses as GetMatchUserPriceResponses, type GetNotificationByIdData$1 as GetNotificationByIdData, type GetNotificationByIdError$1 as GetNotificationByIdError, type GetNotificationByIdErrors$1 as GetNotificationByIdErrors, type GetNotificationByIdResponse$1 as GetNotificationByIdResponse, type GetNotificationByIdResponses$1 as GetNotificationByIdResponses, type GetNotificationsData$1 as GetNotificationsData, type GetNotificationsError$1 as GetNotificationsError, type GetNotificationsErrors$1 as GetNotificationsErrors, type GetNotificationsPreferencesData$1 as GetNotificationsPreferencesData, type GetNotificationsPreferencesError$1 as GetNotificationsPreferencesError, type GetNotificationsPreferencesErrors$1 as GetNotificationsPreferencesErrors, type GetNotificationsPreferencesResponse$1 as GetNotificationsPreferencesResponse, type GetNotificationsPreferencesResponses$1 as GetNotificationsPreferencesResponses, type GetNotificationsResponse$1 as GetNotificationsResponse, type GetNotificationsResponses$1 as GetNotificationsResponses, type indexV1_GetPostData as GetPostData, type indexV1_GetPostError as GetPostError, type indexV1_GetPostErrors as GetPostErrors, type indexV1_GetPostResponse as GetPostResponse, type indexV1_GetPostResponses as GetPostResponses, type indexV1_GetRecommendationsData as GetRecommendationsData, type indexV1_GetRecommendationsError as GetRecommendationsError, type indexV1_GetRecommendationsErrors as GetRecommendationsErrors, type indexV1_GetRecommendationsResponse as GetRecommendationsResponse, type indexV1_GetRecommendationsResponses as GetRecommendationsResponses, type indexV1_GetResourceData as GetResourceData, type indexV1_GetResourceError as GetResourceError, type indexV1_GetResourceErrors as GetResourceErrors, type indexV1_GetResourceResponse as GetResourceResponse, type indexV1_GetResourceResponses as GetResourceResponses, type indexV1_GetSportAuthoritiesData as GetSportAuthoritiesData, type indexV1_GetSportAuthoritiesError as GetSportAuthoritiesError, type indexV1_GetSportAuthoritiesErrors as GetSportAuthoritiesErrors, type indexV1_GetSportAuthoritiesResponse as GetSportAuthoritiesResponse, type indexV1_GetSportAuthoritiesResponses as GetSportAuthoritiesResponses, type indexV1_GetUserFacilityPermissionsData as GetUserFacilityPermissionsData, type indexV1_GetUserFacilityPermissionsError as GetUserFacilityPermissionsError, type indexV1_GetUserFacilityPermissionsErrors as GetUserFacilityPermissionsErrors, type indexV1_GetUserFacilityPermissionsResponse as GetUserFacilityPermissionsResponse, type indexV1_GetUserFacilityPermissionsResponses as GetUserFacilityPermissionsResponses, type indexV1_GetUserSportProfileData as GetUserSportProfileData, type indexV1_GetUserSportProfileError as GetUserSportProfileError, type indexV1_GetUserSportProfileErrors as GetUserSportProfileErrors, type indexV1_GetUserSportProfileResponse as GetUserSportProfileResponse, type indexV1_GetUserSportProfileResponses as GetUserSportProfileResponses, type indexV1_GetUserSportProfilesData as GetUserSportProfilesData, type indexV1_GetUserSportProfilesError as GetUserSportProfilesError, type indexV1_GetUserSportProfilesErrors as GetUserSportProfilesErrors, type indexV1_GetUserSportProfilesResponse as GetUserSportProfilesResponse, type indexV1_GetUserSportProfilesResponses as GetUserSportProfilesResponses, type indexV1_JoinCommunityData as JoinCommunityData, type indexV1_JoinCommunityError as JoinCommunityError, type indexV1_JoinCommunityErrors as JoinCommunityErrors, type indexV1_JoinCommunityResponse as JoinCommunityResponse, type indexV1_JoinCommunityResponse2 as JoinCommunityResponse2, type indexV1_JoinCommunityResponses as JoinCommunityResponses, type indexV1_LeaveCommunityData as LeaveCommunityData, type indexV1_LeaveCommunityError as LeaveCommunityError, type indexV1_LeaveCommunityErrors as LeaveCommunityErrors, type indexV1_LeaveCommunityResponse as LeaveCommunityResponse, type indexV1_LeaveCommunityResponses as LeaveCommunityResponses, type indexV1_LinkType as LinkType, type indexV1_ListCommentsData as ListCommentsData, type indexV1_ListCommentsError as ListCommentsError, type indexV1_ListCommentsErrors as ListCommentsErrors, type indexV1_ListCommentsResponse as ListCommentsResponse, type indexV1_ListCommentsResponses as ListCommentsResponses, type indexV1_ListCommunitiesData as ListCommunitiesData, type indexV1_ListCommunitiesError as ListCommunitiesError, type indexV1_ListCommunitiesErrors as ListCommunitiesErrors, type indexV1_ListCommunitiesResponse as ListCommunitiesResponse, type indexV1_ListCommunitiesResponses as ListCommunitiesResponses, type indexV1_ListFacilitiesData as ListFacilitiesData, type indexV1_ListFacilitiesError as ListFacilitiesError, type indexV1_ListFacilitiesErrors as ListFacilitiesErrors, type indexV1_ListFacilitiesResponse as ListFacilitiesResponse, type indexV1_ListFacilitiesResponses as ListFacilitiesResponses, type indexV1_ListFacilityOffersData as ListFacilityOffersData, type indexV1_ListFacilityOffersError as ListFacilityOffersError, type indexV1_ListFacilityOffersErrors as ListFacilityOffersErrors, type indexV1_ListFacilityOffersResponse as ListFacilityOffersResponse, type indexV1_ListFacilityOffersResponses as ListFacilityOffersResponses, type indexV1_ListFacilityResourcesData as ListFacilityResourcesData, type indexV1_ListFacilityResourcesError as ListFacilityResourcesError, type indexV1_ListFacilityResourcesErrors as ListFacilityResourcesErrors, type indexV1_ListFacilityResourcesResponse as ListFacilityResourcesResponse, type indexV1_ListFacilityResourcesResponses as ListFacilityResourcesResponses, type indexV1_ListMatchesData as ListMatchesData, type indexV1_ListMatchesError as ListMatchesError, type indexV1_ListMatchesErrors as ListMatchesErrors, type indexV1_ListMatchesResponse as ListMatchesResponse, type indexV1_ListMatchesResponses as ListMatchesResponses, type indexV1_ListMembersData as ListMembersData, type indexV1_ListMembersError as ListMembersError, type indexV1_ListMembersErrors as ListMembersErrors, type indexV1_ListMembersResponse as ListMembersResponse, type indexV1_ListMembersResponses as ListMembersResponses, type indexV1_ListPostsData as ListPostsData, type indexV1_ListPostsError as ListPostsError, type indexV1_ListPostsErrors as ListPostsErrors, type indexV1_ListPostsResponse as ListPostsResponse, type indexV1_ListPostsResponses as ListPostsResponses, type indexV1_MarkCommentReadData as MarkCommentReadData, type indexV1_MarkCommentReadError as MarkCommentReadError, type indexV1_MarkCommentReadErrors as MarkCommentReadErrors, type indexV1_MarkCommentReadResponse as MarkCommentReadResponse, type indexV1_MarkCommentReadResponses as MarkCommentReadResponses, type indexV1_MarkPostReadData as MarkPostReadData, type indexV1_MarkPostReadError as MarkPostReadError, type indexV1_MarkPostReadErrors as MarkPostReadErrors, type indexV1_MarkPostReadResponse as MarkPostReadResponse, type indexV1_MarkPostReadResponses as MarkPostReadResponses, type indexV1_Match as Match, type indexV1_MatchBasePrice as MatchBasePrice, type indexV1_MatchCourt as MatchCourt, type indexV1_MatchDetail as MatchDetail, type indexV1_MatchEvent as MatchEvent, type indexV1_MatchList as MatchList, type indexV1_MatchOccasion as MatchOccasion, type indexV1_MatchOccasionDetail as MatchOccasionDetail, type indexV1_MatchParticipants as MatchParticipants, type indexV1_MatchPriceListEntry as MatchPriceListEntry, type indexV1_MatchStatus as MatchStatus, type indexV1_MatchUserPrice as MatchUserPrice, type indexV1_Member as Member, type indexV1_MemberListResponse as MemberListResponse, type indexV1_MemberRelation as MemberRelation, type indexV1_MembershipStatus as MembershipStatus, type Metadata$1 as Metadata, type Notification$1 as Notification, type NotificationPayload$1 as NotificationPayload, type NotificationRequestBody$1 as NotificationRequestBody, type indexV1_NotificationsFilter as NotificationsFilter, type indexV1_NotificationsFilterParam as NotificationsFilterParam, type NotificationsPaginatedResponse$1 as NotificationsPaginatedResponse, type NotificationsSummary$1 as NotificationsSummary, type indexV1_OfferIdPath as OfferIdPath, type indexV1_OffsetPaginatedResultSet as OffsetPaginatedResultSet, type Options$2 as Options, type indexV1_PaginationMeta as PaginationMeta, type indexV1_ParticipantDetail as ParticipantDetail, type indexV1_ParticipantSummary as ParticipantSummary, type indexV1_PatchCommentRequest as PatchCommentRequest, type indexV1_PatchPostRequest as PatchPostRequest, type indexV1_PaymentCommand as PaymentCommand, type indexV1_PaymentDetails as PaymentDetails, type PkgOpenapiSharedCursorLimitParam$1 as PkgOpenapiSharedCursorLimitParam, type PkgOpenapiSharedCursorPaginatedResultSet$1 as PkgOpenapiSharedCursorPaginatedResultSet, type PkgOpenapiSharedCursorParam$1 as PkgOpenapiSharedCursorParam, type PkgOpenapiSharedError$1 as PkgOpenapiSharedError, type PkgOpenapiSharedErrors$1 as PkgOpenapiSharedErrors, type indexV1_PkgOpenapiSharedFilterableString as PkgOpenapiSharedFilterableString, type indexV1_PkgOpenapiSharedOffsetLimitParam as PkgOpenapiSharedOffsetLimitParam, type indexV1_PkgOpenapiSharedOffsetPaginatedResultSet as PkgOpenapiSharedOffsetPaginatedResultSet, type indexV1_PkgOpenapiSharedOffsetParam as PkgOpenapiSharedOffsetParam, type PkgOpenapiSharedProblemDetails$1 as PkgOpenapiSharedProblemDetails, type indexV1_Position as Position, type indexV1_Post as Post, type indexV1_PostIdParam as PostIdParam, type indexV1_PostLink as PostLink, type indexV1_PostListResponse as PostListResponse, type indexV1_PostingPermission as PostingPermission, type Preference$1 as Preference, type PreferencesResponse$1 as PreferencesResponse, type indexV1_PrivateParticipantDetail as PrivateParticipantDetail, type indexV1_PrivateParticipantSummary as PrivateParticipantSummary, type indexV1_PublicParticipantDetail as PublicParticipantDetail, type indexV1_PublicParticipantSummary as PublicParticipantSummary, type indexV1_ReactionGroup as ReactionGroup, type indexV1_ReactionRequest as ReactionRequest, type indexV1_ReactionType as ReactionType, type indexV1_Recommendation as Recommendation, type indexV1_RecommendationList as RecommendationList, type indexV1_RefundPolicy as RefundPolicy, type RegisterDeviceData$1 as RegisterDeviceData, type RegisterDeviceError$1 as RegisterDeviceError, type RegisterDeviceErrors$1 as RegisterDeviceErrors, type RegisterDeviceRequest$1 as RegisterDeviceRequest, type RegisterDeviceResponse$1 as RegisterDeviceResponse, type RegisterDeviceResponses$1 as RegisterDeviceResponses, type indexV1_Resource as Resource, type indexV1_ResourceIdPath as ResourceIdPath, type indexV1_SearchUsersData as SearchUsersData, type indexV1_SearchUsersError as SearchUsersError, type indexV1_SearchUsersErrors as SearchUsersErrors, type indexV1_SearchUsersResponse as SearchUsersResponse, type indexV1_SearchUsersResponses as SearchUsersResponses, type indexV1_Source as Source, type indexV1_SportAuthoritiesResponse as SportAuthoritiesResponse, type indexV1_SportAuthority as SportAuthority, type indexV1_SportLevel as SportLevel, type indexV1_SportProfile as SportProfile, type indexV1_SportProfileAttribute as SportProfileAttribute, type indexV1_SportProfileId as SportProfileId, type indexV1_SportProfileLevel as SportProfileLevel, type indexV1_SportProfilesResponse as SportProfilesResponse, Topic$1 as Topic, type UpdateAllNotificationsData$1 as UpdateAllNotificationsData, type UpdateAllNotificationsError$1 as UpdateAllNotificationsError, type UpdateAllNotificationsErrors$1 as UpdateAllNotificationsErrors, type UpdateAllNotificationsResponse$1 as UpdateAllNotificationsResponse, type UpdateAllNotificationsResponses$1 as UpdateAllNotificationsResponses, type UpdateNotificationData$1 as UpdateNotificationData, type UpdateNotificationError$1 as UpdateNotificationError, type UpdateNotificationErrors$1 as UpdateNotificationErrors, type UpdateNotificationResponse$1 as UpdateNotificationResponse, type UpdateNotificationResponses$1 as UpdateNotificationResponses, type UpdateNotificationsPreferencesData$1 as UpdateNotificationsPreferencesData, type UpdateNotificationsPreferencesError$1 as UpdateNotificationsPreferencesError, type UpdateNotificationsPreferencesErrors$1 as UpdateNotificationsPreferencesErrors, type UpdateNotificationsPreferencesResponse$1 as UpdateNotificationsPreferencesResponse, type UpdateNotificationsPreferencesResponses$1 as UpdateNotificationsPreferencesResponses, type UpdatePreferencesRequestBody$1 as UpdatePreferencesRequestBody, type indexV1_UpdateSportProfileLevelRequest as UpdateSportProfileLevelRequest, type indexV1_UpdateUserProfileData as UpdateUserProfileData, type indexV1_UpdateUserProfileError as UpdateUserProfileError, type indexV1_UpdateUserProfileErrors as UpdateUserProfileErrors, type indexV1_UpdateUserProfileResponse as UpdateUserProfileResponse, type indexV1_UpdateUserProfileResponses as UpdateUserProfileResponses, type indexV1_UpdateUserSportProfileLevelData as UpdateUserSportProfileLevelData, type indexV1_UpdateUserSportProfileLevelError as UpdateUserSportProfileLevelError, type indexV1_UpdateUserSportProfileLevelErrors as UpdateUserSportProfileLevelErrors, type indexV1_UpdateUserSportProfileLevelResponse as UpdateUserSportProfileLevelResponse, type indexV1_UpdateUserSportProfileLevelResponses as UpdateUserSportProfileLevelResponses, type indexV1_UpdateUsersProfilesRequest as UpdateUsersProfilesRequest, type indexV1_UpsertCommentReactionData as UpsertCommentReactionData, type indexV1_UpsertCommentReactionError as UpsertCommentReactionError, type indexV1_UpsertCommentReactionErrors as UpsertCommentReactionErrors, type indexV1_UpsertCommentReactionResponse as UpsertCommentReactionResponse, type indexV1_UpsertCommentReactionResponses as UpsertCommentReactionResponses, type indexV1_UpsertPostReactionData as UpsertPostReactionData, type indexV1_UpsertPostReactionError as UpsertPostReactionError, type indexV1_UpsertPostReactionErrors as UpsertPostReactionErrors, type indexV1_UpsertPostReactionResponse as UpsertPostReactionResponse, type indexV1_UpsertPostReactionResponses as UpsertPostReactionResponses, type indexV1_UserId as UserId, type indexV1_UserIdParam as UserIdParam, type indexV1_UserParticipationStatus as UserParticipationStatus, type indexV1_UserProfile as UserProfile, type indexV1_UserRelation as UserRelation, type indexV1_UsersProfilesPaginatedResponse as UsersProfilesPaginatedResponse, type indexV1_Visibility as Visibility, indexV1_acceptInvitation as acceptInvitation, indexV1_addUserSportProfileLevel as addUserSportProfileLevel, client$1 as client, indexV1_createComment as createComment, indexV1_createFacilityOfferOrder as createFacilityOfferOrder, indexV1_createMatchParticipation as createMatchParticipation, indexV1_createPost as createPost, indexV1_createUserSportProfile as createUserSportProfile, indexV1_deleteComment as deleteComment, indexV1_deleteCommentReaction as deleteCommentReaction, indexV1_deleteMatchParticipation as deleteMatchParticipation, indexV1_deletePost as deletePost, indexV1_deletePostReaction as deletePostReaction, indexV1_deleteUserSportProfile as deleteUserSportProfile, indexV1_deleteUserSportProfileLevel as deleteUserSportProfileLevel, indexV1_getCommunity as getCommunity, indexV1_getFacility as getFacility, indexV1_getMatch as getMatch, indexV1_getMatchUserPrice as getMatchUserPrice, getNotificationById$1 as getNotificationById, getNotifications$1 as getNotifications, getNotificationsPreferences$1 as getNotificationsPreferences, indexV1_getPost as getPost, indexV1_getRecommendations as getRecommendations, indexV1_getResource as getResource, indexV1_getSportAuthorities as getSportAuthorities, indexV1_getUserFacilityPermissions as getUserFacilityPermissions, indexV1_getUserSportProfile as getUserSportProfile, indexV1_getUserSportProfiles as getUserSportProfiles, indexV1_joinCommunity as joinCommunity, indexV1_leaveCommunity as leaveCommunity, indexV1_listComments as listComments, indexV1_listCommunities as listCommunities, indexV1_listFacilities as listFacilities, indexV1_listFacilityOffers as listFacilityOffers, indexV1_listFacilityResources as listFacilityResources, indexV1_listMatches as listMatches, indexV1_listMembers as listMembers, indexV1_listPosts as listPosts, indexV1_markCommentRead as markCommentRead, indexV1_markPostRead as markPostRead, reactQuery_gen$1 as queries, registerDevice$1 as registerDevice, schemas_gen$1 as schemas, indexV1_searchUsers as searchUsers, updateAllNotifications$1 as updateAllNotifications, updateNotification$1 as updateNotification, updateNotificationsPreferences$1 as updateNotificationsPreferences, indexV1_updateUserProfile as updateUserProfile, indexV1_updateUserSportProfileLevel as updateUserSportProfileLevel, indexV1_upsertCommentReaction as upsertCommentReaction, indexV1_upsertPostReaction as upsertPostReaction };
|
|
11353
|
+
export { type indexV1_AcceptInvitationData as AcceptInvitationData, type indexV1_AcceptInvitationError as AcceptInvitationError, type indexV1_AcceptInvitationErrors as AcceptInvitationErrors, type indexV1_AcceptInvitationResponse as AcceptInvitationResponse, type indexV1_AcceptInvitationResponses as AcceptInvitationResponses, type indexV1_AddUserSportProfileLevelData as AddUserSportProfileLevelData, type indexV1_AddUserSportProfileLevelError as AddUserSportProfileLevelError, type indexV1_AddUserSportProfileLevelErrors as AddUserSportProfileLevelErrors, type indexV1_AddUserSportProfileLevelResponse as AddUserSportProfileLevelResponse, type indexV1_AddUserSportProfileLevelResponses as AddUserSportProfileLevelResponses, type indexV1_Address as Address, type indexV1_Author as Author, type indexV1_AuthoritySlug as AuthoritySlug, type Channels$1 as Channels, type ClientOptions$2 as ClientOptions, type indexV1_Comment as Comment, type indexV1_CommentIdParam as CommentIdParam, type indexV1_CommentListResponse as CommentListResponse, type indexV1_CommunityIdParam as CommunityIdParam, type indexV1_CommunityItem as CommunityItem, type indexV1_CommunityListResponse as CommunityListResponse, type indexV1_ConflictDetails as ConflictDetails, type indexV1_CreateCommentData as CreateCommentData, type indexV1_CreateCommentError as CreateCommentError, type indexV1_CreateCommentErrors as CreateCommentErrors, type indexV1_CreateCommentRequest as CreateCommentRequest, type indexV1_CreateCommentResponse as CreateCommentResponse, type indexV1_CreateCommentResponses as CreateCommentResponses, type indexV1_CreateFacilityOfferOrderData as CreateFacilityOfferOrderData, type indexV1_CreateFacilityOfferOrderError as CreateFacilityOfferOrderError, type indexV1_CreateFacilityOfferOrderErrors as CreateFacilityOfferOrderErrors, type indexV1_CreateFacilityOfferOrderResponse as CreateFacilityOfferOrderResponse, type indexV1_CreateFacilityOfferOrderResponses as CreateFacilityOfferOrderResponses, type indexV1_CreateMatchParticipationData as CreateMatchParticipationData, type indexV1_CreateMatchParticipationError as CreateMatchParticipationError, type indexV1_CreateMatchParticipationErrors as CreateMatchParticipationErrors, type indexV1_CreateMatchParticipationRequest as CreateMatchParticipationRequest, type indexV1_CreateMatchParticipationResponse as CreateMatchParticipationResponse, type indexV1_CreateMatchParticipationResponses as CreateMatchParticipationResponses, type indexV1_CreatePostData as CreatePostData, type indexV1_CreatePostError as CreatePostError, type indexV1_CreatePostErrors as CreatePostErrors, type indexV1_CreatePostRequest as CreatePostRequest, type indexV1_CreatePostResponse as CreatePostResponse, type indexV1_CreatePostResponses as CreatePostResponses, type indexV1_CreateSportProfileLevelRequest as CreateSportProfileLevelRequest, type indexV1_CreateSportProfileRequest as CreateSportProfileRequest, type indexV1_CreateUserSportProfileData as CreateUserSportProfileData, type indexV1_CreateUserSportProfileError as CreateUserSportProfileError, type indexV1_CreateUserSportProfileErrors as CreateUserSportProfileErrors, type indexV1_CreateUserSportProfileResponse as CreateUserSportProfileResponse, type indexV1_CreateUserSportProfileResponses as CreateUserSportProfileResponses, type indexV1_DeleteCommentData as DeleteCommentData, type indexV1_DeleteCommentError as DeleteCommentError, type indexV1_DeleteCommentErrors as DeleteCommentErrors, type indexV1_DeleteCommentReactionData as DeleteCommentReactionData, type indexV1_DeleteCommentReactionError as DeleteCommentReactionError, type indexV1_DeleteCommentReactionErrors as DeleteCommentReactionErrors, type indexV1_DeleteCommentReactionResponse as DeleteCommentReactionResponse, type indexV1_DeleteCommentReactionResponses as DeleteCommentReactionResponses, type indexV1_DeleteCommentResponse as DeleteCommentResponse, type indexV1_DeleteCommentResponses as DeleteCommentResponses, type indexV1_DeleteMatchParticipationData as DeleteMatchParticipationData, type indexV1_DeleteMatchParticipationError as DeleteMatchParticipationError, type indexV1_DeleteMatchParticipationErrors as DeleteMatchParticipationErrors, type indexV1_DeleteMatchParticipationResponse as DeleteMatchParticipationResponse, type indexV1_DeleteMatchParticipationResponses as DeleteMatchParticipationResponses, type indexV1_DeletePostData as DeletePostData, type indexV1_DeletePostError as DeletePostError, type indexV1_DeletePostErrors as DeletePostErrors, type indexV1_DeletePostReactionData as DeletePostReactionData, type indexV1_DeletePostReactionError as DeletePostReactionError, type indexV1_DeletePostReactionErrors as DeletePostReactionErrors, type indexV1_DeletePostReactionResponse as DeletePostReactionResponse, type indexV1_DeletePostReactionResponses as DeletePostReactionResponses, type indexV1_DeletePostResponse as DeletePostResponse, type indexV1_DeletePostResponses as DeletePostResponses, type indexV1_DeleteUserSportProfileData as DeleteUserSportProfileData, type indexV1_DeleteUserSportProfileError as DeleteUserSportProfileError, type indexV1_DeleteUserSportProfileErrors as DeleteUserSportProfileErrors, type indexV1_DeleteUserSportProfileLevelData as DeleteUserSportProfileLevelData, type indexV1_DeleteUserSportProfileLevelError as DeleteUserSportProfileLevelError, type indexV1_DeleteUserSportProfileLevelErrors as DeleteUserSportProfileLevelErrors, type indexV1_DeleteUserSportProfileLevelResponse as DeleteUserSportProfileLevelResponse, type indexV1_DeleteUserSportProfileLevelResponses as DeleteUserSportProfileLevelResponses, type indexV1_DeleteUserSportProfileResponse as DeleteUserSportProfileResponse, type indexV1_DeleteUserSportProfileResponses as DeleteUserSportProfileResponses, type indexV1_ExternalService as ExternalService, type indexV1_Facility as Facility, type indexV1_FacilityIdPath as FacilityIdPath, type indexV1_FacilityList as FacilityList, type FacilityMessagePayload$1 as FacilityMessagePayload, type indexV1_FacilityOffer as FacilityOffer, type indexV1_FacilityOfferCondition as FacilityOfferCondition, type indexV1_FacilityOfferConditionActivities as FacilityOfferConditionActivities, type indexV1_FacilityOfferConditionCourts as FacilityOfferConditionCourts, type indexV1_FacilityOfferConditionDate as FacilityOfferConditionDate, type indexV1_FacilityOfferConditionHoursinadvance as FacilityOfferConditionHoursinadvance, type indexV1_FacilityOfferConditionTime as FacilityOfferConditionTime, type indexV1_FacilityOfferConditionWeekdays as FacilityOfferConditionWeekdays, type indexV1_FacilityOfferList as FacilityOfferList, type indexV1_FacilityOfferOrder as FacilityOfferOrder, type indexV1_FacilityPermission as FacilityPermission, type indexV1_FacilityPermissionsResponse as FacilityPermissionsResponse, type indexV1_FacilityPunchCardData as FacilityPunchCardData, type indexV1_FacilityValueCardData as FacilityValueCardData, type indexV1_Gender as Gender, type indexV1_GetCommunityData as GetCommunityData, type indexV1_GetCommunityError as GetCommunityError, type indexV1_GetCommunityErrors as GetCommunityErrors, type indexV1_GetCommunityResponse as GetCommunityResponse, type indexV1_GetCommunityResponses as GetCommunityResponses, type indexV1_GetFacilityData as GetFacilityData, type indexV1_GetFacilityError as GetFacilityError, type indexV1_GetFacilityErrors as GetFacilityErrors, type indexV1_GetFacilityResponse as GetFacilityResponse, type indexV1_GetFacilityResponses as GetFacilityResponses, type indexV1_GetMatchData as GetMatchData, type indexV1_GetMatchError as GetMatchError, type indexV1_GetMatchErrors as GetMatchErrors, type indexV1_GetMatchResponse as GetMatchResponse, type indexV1_GetMatchResponses as GetMatchResponses, type indexV1_GetMatchUserPriceData as GetMatchUserPriceData, type indexV1_GetMatchUserPriceError as GetMatchUserPriceError, type indexV1_GetMatchUserPriceErrors as GetMatchUserPriceErrors, type indexV1_GetMatchUserPriceResponse as GetMatchUserPriceResponse, type indexV1_GetMatchUserPriceResponses as GetMatchUserPriceResponses, type GetNotificationByIdData$1 as GetNotificationByIdData, type GetNotificationByIdError$1 as GetNotificationByIdError, type GetNotificationByIdErrors$1 as GetNotificationByIdErrors, type GetNotificationByIdResponse$1 as GetNotificationByIdResponse, type GetNotificationByIdResponses$1 as GetNotificationByIdResponses, type GetNotificationsData$1 as GetNotificationsData, type GetNotificationsError$1 as GetNotificationsError, type GetNotificationsErrors$1 as GetNotificationsErrors, type GetNotificationsPreferencesData$1 as GetNotificationsPreferencesData, type GetNotificationsPreferencesError$1 as GetNotificationsPreferencesError, type GetNotificationsPreferencesErrors$1 as GetNotificationsPreferencesErrors, type GetNotificationsPreferencesResponse$1 as GetNotificationsPreferencesResponse, type GetNotificationsPreferencesResponses$1 as GetNotificationsPreferencesResponses, type GetNotificationsResponse$1 as GetNotificationsResponse, type GetNotificationsResponses$1 as GetNotificationsResponses, type indexV1_GetPostData as GetPostData, type indexV1_GetPostError as GetPostError, type indexV1_GetPostErrors as GetPostErrors, type indexV1_GetPostResponse as GetPostResponse, type indexV1_GetPostResponses as GetPostResponses, type indexV1_GetRecommendationsData as GetRecommendationsData, type indexV1_GetRecommendationsError as GetRecommendationsError, type indexV1_GetRecommendationsErrors as GetRecommendationsErrors, type indexV1_GetRecommendationsResponse as GetRecommendationsResponse, type indexV1_GetRecommendationsResponses as GetRecommendationsResponses, type indexV1_GetResourceData as GetResourceData, type indexV1_GetResourceError as GetResourceError, type indexV1_GetResourceErrors as GetResourceErrors, type indexV1_GetResourceResponse as GetResourceResponse, type indexV1_GetResourceResponses as GetResourceResponses, type indexV1_GetSportAuthoritiesData as GetSportAuthoritiesData, type indexV1_GetSportAuthoritiesError as GetSportAuthoritiesError, type indexV1_GetSportAuthoritiesErrors as GetSportAuthoritiesErrors, type indexV1_GetSportAuthoritiesResponse as GetSportAuthoritiesResponse, type indexV1_GetSportAuthoritiesResponses as GetSportAuthoritiesResponses, type indexV1_GetUserFacilityPermissionsData as GetUserFacilityPermissionsData, type indexV1_GetUserFacilityPermissionsError as GetUserFacilityPermissionsError, type indexV1_GetUserFacilityPermissionsErrors as GetUserFacilityPermissionsErrors, type indexV1_GetUserFacilityPermissionsResponse as GetUserFacilityPermissionsResponse, type indexV1_GetUserFacilityPermissionsResponses as GetUserFacilityPermissionsResponses, type indexV1_GetUserSportProfileData as GetUserSportProfileData, type indexV1_GetUserSportProfileError as GetUserSportProfileError, type indexV1_GetUserSportProfileErrors as GetUserSportProfileErrors, type indexV1_GetUserSportProfileResponse as GetUserSportProfileResponse, type indexV1_GetUserSportProfileResponses as GetUserSportProfileResponses, type indexV1_GetUserSportProfilesData as GetUserSportProfilesData, type indexV1_GetUserSportProfilesError as GetUserSportProfilesError, type indexV1_GetUserSportProfilesErrors as GetUserSportProfilesErrors, type indexV1_GetUserSportProfilesResponse as GetUserSportProfilesResponse, type indexV1_GetUserSportProfilesResponses as GetUserSportProfilesResponses, type indexV1_JoinCommunityData as JoinCommunityData, type indexV1_JoinCommunityError as JoinCommunityError, type indexV1_JoinCommunityErrors as JoinCommunityErrors, type indexV1_JoinCommunityResponse as JoinCommunityResponse, type indexV1_JoinCommunityResponse2 as JoinCommunityResponse2, type indexV1_JoinCommunityResponses as JoinCommunityResponses, type indexV1_LeaveCommunityData as LeaveCommunityData, type indexV1_LeaveCommunityError as LeaveCommunityError, type indexV1_LeaveCommunityErrors as LeaveCommunityErrors, type indexV1_LeaveCommunityResponse as LeaveCommunityResponse, type indexV1_LeaveCommunityResponses as LeaveCommunityResponses, type indexV1_LinkType as LinkType, type indexV1_ListCommentsData as ListCommentsData, type indexV1_ListCommentsError as ListCommentsError, type indexV1_ListCommentsErrors as ListCommentsErrors, type indexV1_ListCommentsResponse as ListCommentsResponse, type indexV1_ListCommentsResponses as ListCommentsResponses, type indexV1_ListCommunitiesData as ListCommunitiesData, type indexV1_ListCommunitiesError as ListCommunitiesError, type indexV1_ListCommunitiesErrors as ListCommunitiesErrors, type indexV1_ListCommunitiesResponse as ListCommunitiesResponse, type indexV1_ListCommunitiesResponses as ListCommunitiesResponses, type indexV1_ListFacilitiesData as ListFacilitiesData, type indexV1_ListFacilitiesError as ListFacilitiesError, type indexV1_ListFacilitiesErrors as ListFacilitiesErrors, type indexV1_ListFacilitiesResponse as ListFacilitiesResponse, type indexV1_ListFacilitiesResponses as ListFacilitiesResponses, type indexV1_ListFacilityOffersData as ListFacilityOffersData, type indexV1_ListFacilityOffersError as ListFacilityOffersError, type indexV1_ListFacilityOffersErrors as ListFacilityOffersErrors, type indexV1_ListFacilityOffersResponse as ListFacilityOffersResponse, type indexV1_ListFacilityOffersResponses as ListFacilityOffersResponses, type indexV1_ListFacilityResourcesData as ListFacilityResourcesData, type indexV1_ListFacilityResourcesError as ListFacilityResourcesError, type indexV1_ListFacilityResourcesErrors as ListFacilityResourcesErrors, type indexV1_ListFacilityResourcesResponse as ListFacilityResourcesResponse, type indexV1_ListFacilityResourcesResponses as ListFacilityResourcesResponses, type indexV1_ListMatchesData as ListMatchesData, type indexV1_ListMatchesError as ListMatchesError, type indexV1_ListMatchesErrors as ListMatchesErrors, type indexV1_ListMatchesResponse as ListMatchesResponse, type indexV1_ListMatchesResponses as ListMatchesResponses, type indexV1_ListMembersData as ListMembersData, type indexV1_ListMembersError as ListMembersError, type indexV1_ListMembersErrors as ListMembersErrors, type indexV1_ListMembersResponse as ListMembersResponse, type indexV1_ListMembersResponses as ListMembersResponses, type indexV1_ListPostsData as ListPostsData, type indexV1_ListPostsError as ListPostsError, type indexV1_ListPostsErrors as ListPostsErrors, type indexV1_ListPostsResponse as ListPostsResponse, type indexV1_ListPostsResponses as ListPostsResponses, type indexV1_MarkCommentReadData as MarkCommentReadData, type indexV1_MarkCommentReadError as MarkCommentReadError, type indexV1_MarkCommentReadErrors as MarkCommentReadErrors, type indexV1_MarkCommentReadResponse as MarkCommentReadResponse, type indexV1_MarkCommentReadResponses as MarkCommentReadResponses, type indexV1_MarkPostReadData as MarkPostReadData, type indexV1_MarkPostReadError as MarkPostReadError, type indexV1_MarkPostReadErrors as MarkPostReadErrors, type indexV1_MarkPostReadResponse as MarkPostReadResponse, type indexV1_MarkPostReadResponses as MarkPostReadResponses, type indexV1_Match as Match, type indexV1_MatchBasePrice as MatchBasePrice, type indexV1_MatchCourt as MatchCourt, type indexV1_MatchDetail as MatchDetail, type indexV1_MatchEvent as MatchEvent, type indexV1_MatchList as MatchList, type indexV1_MatchOccasion as MatchOccasion, type indexV1_MatchOccasionDetail as MatchOccasionDetail, type indexV1_MatchParticipants as MatchParticipants, type indexV1_MatchPriceListEntry as MatchPriceListEntry, type indexV1_MatchStatus as MatchStatus, type indexV1_MatchTeam as MatchTeam, type indexV1_MatchTeamSpot as MatchTeamSpot, type indexV1_MatchTeamsResponse as MatchTeamsResponse, type indexV1_MatchUserPrice as MatchUserPrice, type indexV1_Member as Member, type indexV1_MemberListResponse as MemberListResponse, type indexV1_MemberRelation as MemberRelation, type indexV1_MembershipStatus as MembershipStatus, type Metadata$1 as Metadata, type Notification$1 as Notification, type NotificationPayload$1 as NotificationPayload, type NotificationRequestBody$1 as NotificationRequestBody, type indexV1_NotificationsFilter as NotificationsFilter, type indexV1_NotificationsFilterParam as NotificationsFilterParam, type NotificationsPaginatedResponse$1 as NotificationsPaginatedResponse, type NotificationsSummary$1 as NotificationsSummary, type indexV1_OfferIdPath as OfferIdPath, type indexV1_OffsetPaginatedResultSet as OffsetPaginatedResultSet, type Options$2 as Options, type indexV1_PaginationMeta as PaginationMeta, type indexV1_ParticipantDetail as ParticipantDetail, type indexV1_ParticipantSummary as ParticipantSummary, type indexV1_PatchCommentRequest as PatchCommentRequest, type indexV1_PatchPostRequest as PatchPostRequest, type indexV1_PaymentCommand as PaymentCommand, type indexV1_PaymentDetails as PaymentDetails, type PkgOpenapiSharedCursorLimitParam$1 as PkgOpenapiSharedCursorLimitParam, type PkgOpenapiSharedCursorPaginatedResultSet$1 as PkgOpenapiSharedCursorPaginatedResultSet, type PkgOpenapiSharedCursorParam$1 as PkgOpenapiSharedCursorParam, type PkgOpenapiSharedError$1 as PkgOpenapiSharedError, type PkgOpenapiSharedErrors$1 as PkgOpenapiSharedErrors, type indexV1_PkgOpenapiSharedFilterableString as PkgOpenapiSharedFilterableString, type indexV1_PkgOpenapiSharedOffsetLimitParam as PkgOpenapiSharedOffsetLimitParam, type indexV1_PkgOpenapiSharedOffsetPaginatedResultSet as PkgOpenapiSharedOffsetPaginatedResultSet, type indexV1_PkgOpenapiSharedOffsetParam as PkgOpenapiSharedOffsetParam, type PkgOpenapiSharedProblemDetails$1 as PkgOpenapiSharedProblemDetails, type indexV1_Position as Position, type indexV1_Post as Post, type indexV1_PostIdParam as PostIdParam, type indexV1_PostLink as PostLink, type indexV1_PostListResponse as PostListResponse, type indexV1_PostingPermission as PostingPermission, type Preference$1 as Preference, type PreferencesResponse$1 as PreferencesResponse, type indexV1_PrivateParticipantDetail as PrivateParticipantDetail, type indexV1_PrivateParticipantSummary as PrivateParticipantSummary, type indexV1_PublicParticipantDetail as PublicParticipantDetail, type indexV1_PublicParticipantSummary as PublicParticipantSummary, type indexV1_ReactionGroup as ReactionGroup, type indexV1_ReactionRequest as ReactionRequest, type indexV1_ReactionType as ReactionType, type indexV1_RearrangeMatchTeamsRequest as RearrangeMatchTeamsRequest, type indexV1_Recommendation as Recommendation, type indexV1_RecommendationList as RecommendationList, type indexV1_RefundPolicy as RefundPolicy, type RegisterDeviceData$1 as RegisterDeviceData, type RegisterDeviceError$1 as RegisterDeviceError, type RegisterDeviceErrors$1 as RegisterDeviceErrors, type RegisterDeviceRequest$1 as RegisterDeviceRequest, type RegisterDeviceResponse$1 as RegisterDeviceResponse, type RegisterDeviceResponses$1 as RegisterDeviceResponses, type indexV1_Resource as Resource, type indexV1_ResourceIdPath as ResourceIdPath, type indexV1_SearchUsersData as SearchUsersData, type indexV1_SearchUsersError as SearchUsersError, type indexV1_SearchUsersErrors as SearchUsersErrors, type indexV1_SearchUsersResponse as SearchUsersResponse, type indexV1_SearchUsersResponses as SearchUsersResponses, type indexV1_Source as Source, type indexV1_SportAuthoritiesResponse as SportAuthoritiesResponse, type indexV1_SportAuthority as SportAuthority, type indexV1_SportLevel as SportLevel, type indexV1_SportProfile as SportProfile, type indexV1_SportProfileAttribute as SportProfileAttribute, type indexV1_SportProfileId as SportProfileId, type indexV1_SportProfileLevel as SportProfileLevel, type indexV1_SportProfilesResponse as SportProfilesResponse, type indexV1_SpotMove as SpotMove, type indexV1_SpotPosition as SpotPosition, type indexV1_SpotRef as SpotRef, Topic$1 as Topic, type UpdateAllNotificationsData$1 as UpdateAllNotificationsData, type UpdateAllNotificationsError$1 as UpdateAllNotificationsError, type UpdateAllNotificationsErrors$1 as UpdateAllNotificationsErrors, type UpdateAllNotificationsResponse$1 as UpdateAllNotificationsResponse, type UpdateAllNotificationsResponses$1 as UpdateAllNotificationsResponses, type UpdateNotificationData$1 as UpdateNotificationData, type UpdateNotificationError$1 as UpdateNotificationError, type UpdateNotificationErrors$1 as UpdateNotificationErrors, type UpdateNotificationResponse$1 as UpdateNotificationResponse, type UpdateNotificationResponses$1 as UpdateNotificationResponses, type UpdateNotificationsPreferencesData$1 as UpdateNotificationsPreferencesData, type UpdateNotificationsPreferencesError$1 as UpdateNotificationsPreferencesError, type UpdateNotificationsPreferencesErrors$1 as UpdateNotificationsPreferencesErrors, type UpdateNotificationsPreferencesResponse$1 as UpdateNotificationsPreferencesResponse, type UpdateNotificationsPreferencesResponses$1 as UpdateNotificationsPreferencesResponses, type UpdatePreferencesRequestBody$1 as UpdatePreferencesRequestBody, type indexV1_UpdateSportProfileLevelRequest as UpdateSportProfileLevelRequest, type indexV1_UpdateUserProfileData as UpdateUserProfileData, type indexV1_UpdateUserProfileError as UpdateUserProfileError, type indexV1_UpdateUserProfileErrors as UpdateUserProfileErrors, type indexV1_UpdateUserProfileResponse as UpdateUserProfileResponse, type indexV1_UpdateUserProfileResponses as UpdateUserProfileResponses, type indexV1_UpdateUserSportProfileLevelData as UpdateUserSportProfileLevelData, type indexV1_UpdateUserSportProfileLevelError as UpdateUserSportProfileLevelError, type indexV1_UpdateUserSportProfileLevelErrors as UpdateUserSportProfileLevelErrors, type indexV1_UpdateUserSportProfileLevelResponse as UpdateUserSportProfileLevelResponse, type indexV1_UpdateUserSportProfileLevelResponses as UpdateUserSportProfileLevelResponses, type indexV1_UpdateUsersProfilesRequest as UpdateUsersProfilesRequest, type indexV1_UpsertCommentReactionData as UpsertCommentReactionData, type indexV1_UpsertCommentReactionError as UpsertCommentReactionError, type indexV1_UpsertCommentReactionErrors as UpsertCommentReactionErrors, type indexV1_UpsertCommentReactionResponse as UpsertCommentReactionResponse, type indexV1_UpsertCommentReactionResponses as UpsertCommentReactionResponses, type indexV1_UpsertPostReactionData as UpsertPostReactionData, type indexV1_UpsertPostReactionError as UpsertPostReactionError, type indexV1_UpsertPostReactionErrors as UpsertPostReactionErrors, type indexV1_UpsertPostReactionResponse as UpsertPostReactionResponse, type indexV1_UpsertPostReactionResponses as UpsertPostReactionResponses, type indexV1_UserId as UserId, type indexV1_UserIdParam as UserIdParam, type indexV1_UserParticipationStatus as UserParticipationStatus, type indexV1_UserProfile as UserProfile, type indexV1_UserRelation as UserRelation, type indexV1_UsersProfilesPaginatedResponse as UsersProfilesPaginatedResponse, type indexV1_Visibility as Visibility, indexV1_acceptInvitation as acceptInvitation, indexV1_addUserSportProfileLevel as addUserSportProfileLevel, client$1 as client, indexV1_createComment as createComment, indexV1_createFacilityOfferOrder as createFacilityOfferOrder, indexV1_createMatchParticipation as createMatchParticipation, indexV1_createPost as createPost, indexV1_createUserSportProfile as createUserSportProfile, indexV1_deleteComment as deleteComment, indexV1_deleteCommentReaction as deleteCommentReaction, indexV1_deleteMatchParticipation as deleteMatchParticipation, indexV1_deletePost as deletePost, indexV1_deletePostReaction as deletePostReaction, indexV1_deleteUserSportProfile as deleteUserSportProfile, indexV1_deleteUserSportProfileLevel as deleteUserSportProfileLevel, indexV1_getCommunity as getCommunity, indexV1_getFacility as getFacility, indexV1_getMatch as getMatch, indexV1_getMatchUserPrice as getMatchUserPrice, getNotificationById$1 as getNotificationById, getNotifications$1 as getNotifications, getNotificationsPreferences$1 as getNotificationsPreferences, indexV1_getPost as getPost, indexV1_getRecommendations as getRecommendations, indexV1_getResource as getResource, indexV1_getSportAuthorities as getSportAuthorities, indexV1_getUserFacilityPermissions as getUserFacilityPermissions, indexV1_getUserSportProfile as getUserSportProfile, indexV1_getUserSportProfiles as getUserSportProfiles, indexV1_joinCommunity as joinCommunity, indexV1_leaveCommunity as leaveCommunity, indexV1_listComments as listComments, indexV1_listCommunities as listCommunities, indexV1_listFacilities as listFacilities, indexV1_listFacilityOffers as listFacilityOffers, indexV1_listFacilityResources as listFacilityResources, indexV1_listMatches as listMatches, indexV1_listMembers as listMembers, indexV1_listPosts as listPosts, indexV1_markCommentRead as markCommentRead, indexV1_markPostRead as markPostRead, reactQuery_gen$1 as queries, registerDevice$1 as registerDevice, schemas_gen$1 as schemas, indexV1_searchUsers as searchUsers, updateAllNotifications$1 as updateAllNotifications, updateNotification$1 as updateNotification, updateNotificationsPreferences$1 as updateNotificationsPreferences, indexV1_updateUserProfile as updateUserProfile, indexV1_updateUserSportProfileLevel as updateUserSportProfileLevel, indexV1_upsertCommentReaction as upsertCommentReaction, indexV1_upsertPostReaction as upsertPostReaction };
|
|
10880
11354
|
}
|
|
10881
11355
|
|
|
10882
11356
|
type AuthToken = string | undefined;
|
|
@@ -12319,4 +12793,4 @@ declare namespace indexV2 {
|
|
|
12319
12793
|
export { type indexV2_Channels as Channels, type indexV2_ClientOptions as ClientOptions, type indexV2_CommunityInvitationPayload as CommunityInvitationPayload, type indexV2_FacilityMessagePayload as FacilityMessagePayload, type indexV2_GetNotificationByIdData as GetNotificationByIdData, type indexV2_GetNotificationByIdError as GetNotificationByIdError, type indexV2_GetNotificationByIdErrors as GetNotificationByIdErrors, type indexV2_GetNotificationByIdResponse as GetNotificationByIdResponse, type indexV2_GetNotificationByIdResponses as GetNotificationByIdResponses, type indexV2_GetNotificationsData as GetNotificationsData, type indexV2_GetNotificationsError as GetNotificationsError, type indexV2_GetNotificationsErrors as GetNotificationsErrors, type indexV2_GetNotificationsPreferencesData as GetNotificationsPreferencesData, type indexV2_GetNotificationsPreferencesError as GetNotificationsPreferencesError, type indexV2_GetNotificationsPreferencesErrors as GetNotificationsPreferencesErrors, type indexV2_GetNotificationsPreferencesResponse as GetNotificationsPreferencesResponse, type indexV2_GetNotificationsPreferencesResponses as GetNotificationsPreferencesResponses, type indexV2_GetNotificationsResponse as GetNotificationsResponse, type indexV2_GetNotificationsResponses as GetNotificationsResponses, type indexV2_Localization as Localization, type indexV2_Metadata as Metadata, type indexV2_Notification as Notification, type indexV2_NotificationPayload as NotificationPayload, type indexV2_NotificationRequestBody as NotificationRequestBody, type indexV2_NotificationResourceIcon as NotificationResourceIcon, type indexV2_NotificationSource as NotificationSource, type indexV2_NotificationSourceIdParam as NotificationSourceIdParam, type indexV2_NotificationSourceParam as NotificationSourceParam, type indexV2_NotificationType as NotificationType, type indexV2_NotificationTypeParam as NotificationTypeParam, type indexV2_NotificationsPaginatedResponse as NotificationsPaginatedResponse, type indexV2_NotificationsSummary as NotificationsSummary, type indexV2_Options as Options, type indexV2_PkgOpenapiSharedCursorLimitParam as PkgOpenapiSharedCursorLimitParam, type indexV2_PkgOpenapiSharedCursorPaginatedResultSet as PkgOpenapiSharedCursorPaginatedResultSet, type indexV2_PkgOpenapiSharedCursorParam as PkgOpenapiSharedCursorParam, type indexV2_PkgOpenapiSharedError as PkgOpenapiSharedError, type indexV2_PkgOpenapiSharedErrors as PkgOpenapiSharedErrors, type indexV2_PkgOpenapiSharedProblemDetails as PkgOpenapiSharedProblemDetails, type indexV2_Preference as Preference, type indexV2_PreferencesResponse as PreferencesResponse, type indexV2_RegisterDeviceData as RegisterDeviceData, type indexV2_RegisterDeviceError as RegisterDeviceError, type indexV2_RegisterDeviceErrors as RegisterDeviceErrors, type indexV2_RegisterDeviceRequest as RegisterDeviceRequest, type indexV2_RegisterDeviceResponse as RegisterDeviceResponse, type indexV2_RegisterDeviceResponses as RegisterDeviceResponses, type indexV2_SimpleNotificationPayload as SimpleNotificationPayload, type indexV2_Topic as Topic, type indexV2_TopicSource as TopicSource, type indexV2_UpdateAllNotificationsData as UpdateAllNotificationsData, type indexV2_UpdateAllNotificationsError as UpdateAllNotificationsError, type indexV2_UpdateAllNotificationsErrors as UpdateAllNotificationsErrors, type indexV2_UpdateAllNotificationsResponse as UpdateAllNotificationsResponse, type indexV2_UpdateAllNotificationsResponses as UpdateAllNotificationsResponses, type indexV2_UpdateNotificationData as UpdateNotificationData, type indexV2_UpdateNotificationError as UpdateNotificationError, type indexV2_UpdateNotificationErrors as UpdateNotificationErrors, type indexV2_UpdateNotificationResponse as UpdateNotificationResponse, type indexV2_UpdateNotificationResponses as UpdateNotificationResponses, type indexV2_UpdateNotificationsPreferencesData as UpdateNotificationsPreferencesData, type indexV2_UpdateNotificationsPreferencesError as UpdateNotificationsPreferencesError, type indexV2_UpdateNotificationsPreferencesErrors as UpdateNotificationsPreferencesErrors, type indexV2_UpdateNotificationsPreferencesResponse as UpdateNotificationsPreferencesResponse, type indexV2_UpdateNotificationsPreferencesResponses as UpdateNotificationsPreferencesResponses, type indexV2_UpdatePreferencesRequestBody as UpdatePreferencesRequestBody, indexV2_client as client, indexV2_getNotificationById as getNotificationById, indexV2_getNotifications as getNotifications, indexV2_getNotificationsPreferences as getNotificationsPreferences, reactQuery_gen as queries, indexV2_registerDevice as registerDevice, schemas_gen as schemas, indexV2_updateAllNotifications as updateAllNotifications, indexV2_updateNotification as updateNotification, indexV2_updateNotificationsPreferences as updateNotificationsPreferences };
|
|
12320
12794
|
}
|
|
12321
12795
|
|
|
12322
|
-
export { type ActivityEvent, ActivityServiceV1Service, type AdminOccasionDetails, AnonymousService, ApiClientServiceV1Service, ApiError, AuthorizedService, BookingServiceV1Service, CancelError, CancelablePromise, CheckoutServiceV1Service, CompetitionServiceV1Service, CorsService, type Error$1 as Error, type ExternalServiceProperty, LoyaltyServiceV1Service, MembershipServiceV1Service, type OccasionCourt, OpenAPI, type OpenAPIConfig, type OrderPaymentDetails, type OrderPriceDetails, type OrderSplitPayments, type OrderSplitPaymentsRow, type OrderSplitPrice, type PaymentMethodPaymentRefund, PlaySessionServiceV1Service, type ServiceFeeSettings, UserServiceV1Service, type access, type activitiesResponse, type activity, type activityOccasion, type activityType, type actor, type address, type adyenGiftCardOutcome, type apiClient, type apiClientInput, type apiClientListResponse, type article, type articleMetadata, type authoritySportLevels, type availability, type booking, type bookingGroup, bookingRestriction, type bookingRestrictions, bookingSubType, bookingSubscription, type bookingSubscriptionPayment, type bookingUser, bookingUserStatus, type bookingUsersResponse, type bookingsResponse, type camera, cancellationPolicy, chat, type chatAuth, chatCreation, chatTarget, type checkoutResponse, clientType, type competitionAdminAccount, type config, type configuration, type configurationEntry, type configurationMap, type configurationResource, type coupon, type createBookingEventExternal, type createPromoCode, type dailyQuota, type days, type deleteBookingEventExternal, directionParam, type endTimePriceDetail, type endTimesWithRestrictions, type exposeOccasions, type facilitiesResponse, type facility, type facilityConfiguration, type facilityDetails, type friendRelationResponse, type friendRelationsResponse, type giftCard, type hideFullyBooked, type hours, type internalPaymentMethod, type levelRange, type limitParam, type listOfChats, type listUserRelations, type match, type membershipRequest, type membershipRequestItem, type monthlyUsage, months, type newMessageNotification, notificationChatGroup, type notificationChatMember, notificationEntity, type notificationMessage, type notificationMessageData, type occasionBooking, type occasionParticipant, type offsetParam, type openingHours, type order, type orderSplitBaseResponse, type participants, type payment, type paymentDetails, type paymentInfo, type paymentInterval, type paymentMethodPaymentDetail, type paymentMethods, type paymentType, type paymentsResponse, pendingPayment, type phoneRequirementResponse, type phoneStatus, type phoneUpdate, type playSession, type playSessionBooking, type playSessionBookingPayment, type playSessionResponse, playSessionSettings, playSessionUser, type playerLevels, playerRefundInfo, playerStatusParam, playingUserResponse, type playingUsersResponse, type playsessionUserDetails, type position, type price, type priceDetails, type priceDetailsActivity, type profile, type promoCode, type promoCodeOutcome, type pspSession, type resource, type resultSet, type serviceFee, type sportLevels, type subscriptionLimitParam, type timeOfDay, type timeStamp, type usagePlan, type userCardUsageHistoryItem, userChatStatusParam, userChatTargetParam, type userFacility, type userId, type userInfo, type userMembership, type userOfferPunchCardsResponse, type userOfferValueCardsResponse, type userPublicProfile, userPunchCard, userRelation, userRelationStatusParam, type userValueCard, indexV1 as v1, indexV2 as v2, type valueCardOutcome };
|
|
12796
|
+
export { type ActivityEvent, ActivityServiceV1Service, type AdminOccasionDetails, AnonymousService, ApiClientServiceV1Service, ApiError, AuthorizedService, BookingServiceV1Service, CancelError, CancelablePromise, CheckoutServiceV1Service, CompetitionServiceV1Service, CorsService, type Error$1 as Error, type ExternalServiceProperty, LoyaltyServiceV1Service, MembershipServiceV1Service, type OccasionCourt, OpenAPI, type OpenAPIConfig, type OrderPaymentDetails, type OrderPriceDetails, type OrderSplitPayments, type OrderSplitPaymentsRow, type OrderSplitPrice, type PaymentMethodPaymentRefund, PlaySessionServiceV1Service, type ServiceFeeSettings, UserServiceV1Service, type access, type activitiesResponse, type activity, type activityOccasion, type activityType, type actor, type address, type adyenGiftCardOutcome, type apiClient, type apiClientInput, type apiClientListResponse, type article, type articleMetadata, type authoritySportLevels, type availability, type booking, type bookingGroup, bookingRestriction, type bookingRestrictions, bookingSubType, bookingSubscription, type bookingSubscriptionPayment, type bookingUser, bookingUserStatus, type bookingUsersResponse, type bookingsResponse, type camera, cancellationPolicy, chat, type chatAuth, chatCreation, chatTarget, type checkoutResponse, clientType, type competitionAdminAccount, type config, type configuration, type configurationEntry, type configurationMap, type configurationResource, type coupon, type createBookingEventExternal, type createPromoCode, type dailyQuota, type days, type deleteBookingEventExternal, directionParam, type endTimePriceDetail, type endTimesWithRestrictions, type exposeOccasions, type facilitiesResponse, type facility, type facilityConfiguration, type facilityDetails, type friendRelationResponse, type friendRelationsResponse, type giftCard, type hideFullyBooked, type hours, type internalPaymentMethod, type levelRange, type limitParam, type listOfChats, type listUserRelations, type match, type membershipRequest, type membershipRequestItem, type monthlyUsage, months, type newMessageNotification, notificationChatGroup, type notificationChatMember, notificationEntity, type notificationMessage, type notificationMessageData, type occasionBooking, type occasionParticipant, type offsetParam, type openingHours, type order, type orderSplitBaseResponse, type participants, type payment, type paymentDetails, type paymentInfo, type paymentInterval, type paymentMethodPaymentDetail, type paymentMethods, type paymentType, type paymentsResponse, pendingPayment, type phoneRequirementResponse, type phoneStatus, type phoneUpdate, type playSession, type playSessionBooking, type playSessionBookingPayment, type playSessionResponse, playSessionSettings, playSessionUser, type playerLevels, playerRefundInfo, playerStatusParam, playingUserResponse, type playingUsersResponse, type playsessionUserDetails, type position, type price, type priceDetails, type priceDetailsActivity, type profile, type promoCode, type promoCodeOutcome, type pspSession, type resource, type resultSet, type serviceFee, type sportLevels, spotPosition, type subscriptionLimitParam, type team, teamSide, type teamSpot, type timeOfDay, type timeStamp, type usagePlan, type userCardUsageHistoryItem, userChatStatusParam, userChatTargetParam, type userFacility, type userId, type userInfo, type userMembership, type userOfferPunchCardsResponse, type userOfferValueCardsResponse, type userPublicProfile, userPunchCard, userRelation, userRelationStatusParam, type userValueCard, indexV1 as v1, indexV2 as v2, type valueCardOutcome };
|