@matchi/api 0.20260814.1 → 0.20260818.1
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 +370 -8
- package/dist/main/index.d.ts +370 -8
- 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
|
@@ -3752,13 +3752,36 @@ type CommunityListResponse = {
|
|
|
3752
3752
|
items: Array<CommunityItem>;
|
|
3753
3753
|
meta: PaginationMeta;
|
|
3754
3754
|
};
|
|
3755
|
+
/**
|
|
3756
|
+
* ProblemDetails extended with the webapp's machine-readable conflict
|
|
3757
|
+
* code so clients can branch on the conflict cause.
|
|
3758
|
+
*
|
|
3759
|
+
*/
|
|
3760
|
+
type ConflictDetails = PkgOpenapiSharedProblemDetails$1 & {
|
|
3761
|
+
/**
|
|
3762
|
+
* Conflict cause: SPOT_OCCUPIED — the requested spot is
|
|
3763
|
+
* already taken (offer picking another spot); CONFLICT —
|
|
3764
|
+
* generic conflict. Absent when the webapp supplied no code.
|
|
3765
|
+
*
|
|
3766
|
+
*/
|
|
3767
|
+
code?: string;
|
|
3768
|
+
};
|
|
3755
3769
|
type CreateCommentRequest = {
|
|
3756
3770
|
content: string;
|
|
3757
3771
|
};
|
|
3758
3772
|
type CreateMatchParticipationRequest = {
|
|
3759
3773
|
accept_terms: boolean;
|
|
3760
3774
|
payment: PaymentCommand;
|
|
3775
|
+
position?: SpotPosition;
|
|
3761
3776
|
promo_code?: string | null;
|
|
3777
|
+
/**
|
|
3778
|
+
* Team handling: id of the team whose spot is being claimed (from
|
|
3779
|
+
* the occasion's teams layout). Must be sent together with
|
|
3780
|
+
* position; omit both to have a spot auto-assigned (the behavior
|
|
3781
|
+
* of app versions that predate spot picking).
|
|
3782
|
+
*
|
|
3783
|
+
*/
|
|
3784
|
+
team_id?: string;
|
|
3762
3785
|
user_message?: string | null;
|
|
3763
3786
|
};
|
|
3764
3787
|
/**
|
|
@@ -3987,6 +4010,21 @@ type MatchOccasion = {
|
|
|
3987
4010
|
participants: MatchParticipants;
|
|
3988
4011
|
price: MatchBasePrice;
|
|
3989
4012
|
start_date_time: string;
|
|
4013
|
+
/**
|
|
4014
|
+
* Team handling: the match's team layout (exactly HOME + AWAY, in
|
|
4015
|
+
* that order), rendered ALONGSIDE the participant list. Spot
|
|
4016
|
+
* occupants carry user_id only when visible to the viewer (same
|
|
4017
|
+
* PUBLIC/PRIVATE rules as participant rows); occupancy is signalled
|
|
4018
|
+
* by is_assigned, and a spot is joinable when both is_assigned and
|
|
4019
|
+
* is_locked are false. Rows and spots join on (team_id, position).
|
|
4020
|
+
*
|
|
4021
|
+
* Degraded state: when the webapp cannot resolve a match's teams
|
|
4022
|
+
* the array is EMPTY instead of failing the request — clients must
|
|
4023
|
+
* tolerate an empty or absent teams array and fall back to
|
|
4024
|
+
* rendering the plain participant list.
|
|
4025
|
+
*
|
|
4026
|
+
*/
|
|
4027
|
+
teams?: Array<MatchTeam>;
|
|
3990
4028
|
type?: string | null;
|
|
3991
4029
|
};
|
|
3992
4030
|
/**
|
|
@@ -4035,6 +4073,69 @@ declare const MatchStatus: {
|
|
|
4035
4073
|
readonly MEMBERS_ONLY: "MEMBERS_ONLY";
|
|
4036
4074
|
};
|
|
4037
4075
|
type MatchStatus = typeof MatchStatus[keyof typeof MatchStatus];
|
|
4076
|
+
/**
|
|
4077
|
+
* One of a match's two stored teams. team_id is the stable external
|
|
4078
|
+
* id — spot claims (join with a position) and, later, Result Reporting
|
|
4079
|
+
* key off it.
|
|
4080
|
+
*
|
|
4081
|
+
*/
|
|
4082
|
+
type MatchTeam = {
|
|
4083
|
+
/**
|
|
4084
|
+
* Optional display name. Null → clients render a "Team 1/2" fallback.
|
|
4085
|
+
*/
|
|
4086
|
+
name?: string | null;
|
|
4087
|
+
/**
|
|
4088
|
+
* The team's spots, in canonical order.
|
|
4089
|
+
*/
|
|
4090
|
+
positions: Array<MatchTeamSpot>;
|
|
4091
|
+
side: 'HOME' | 'AWAY';
|
|
4092
|
+
team_id: string;
|
|
4093
|
+
};
|
|
4094
|
+
/**
|
|
4095
|
+
* One spot in a team's layout. The occupant is identified by user_id
|
|
4096
|
+
* when — and only when — the viewer is allowed to see it: the same
|
|
4097
|
+
* PUBLIC/PRIVATE visibility rules as the participant rows. An occupied
|
|
4098
|
+
* spot with no user_id means the occupant's identity is withheld
|
|
4099
|
+
* (private participant) or the occupant has no MATCHi user (venue
|
|
4100
|
+
* guest customer). Read is_assigned for occupancy — NEVER infer it
|
|
4101
|
+
* from user_id presence.
|
|
4102
|
+
*
|
|
4103
|
+
*/
|
|
4104
|
+
type MatchTeamSpot = {
|
|
4105
|
+
/**
|
|
4106
|
+
* Authoritative "spot is taken" signal. Exists as its own field
|
|
4107
|
+
* because an occupied spot can carry no user_id — clients must
|
|
4108
|
+
* read THIS field, never infer occupancy from the presence of an
|
|
4109
|
+
* identity field.
|
|
4110
|
+
*
|
|
4111
|
+
*/
|
|
4112
|
+
is_assigned: boolean;
|
|
4113
|
+
/**
|
|
4114
|
+
* Per-spot booker lock, carried for shared-contract symmetry with
|
|
4115
|
+
* the play-sessions layout. Always false on venue-created matches
|
|
4116
|
+
* (there is no booker).
|
|
4117
|
+
*
|
|
4118
|
+
*/
|
|
4119
|
+
is_locked: boolean;
|
|
4120
|
+
position: SpotPosition;
|
|
4121
|
+
/**
|
|
4122
|
+
* Matchi user id of the occupant, present only when the occupant
|
|
4123
|
+
* is PUBLIC to the viewer. ABSENT (never null) when the spot is
|
|
4124
|
+
* free, the occupant is private, or the occupant is a guest
|
|
4125
|
+
* customer without a MATCHi user.
|
|
4126
|
+
*
|
|
4127
|
+
*/
|
|
4128
|
+
user_id?: string;
|
|
4129
|
+
};
|
|
4130
|
+
/**
|
|
4131
|
+
* The match's team layout. Degraded state: when the webapp cannot
|
|
4132
|
+
* resolve the teams the array is EMPTY instead of failing the
|
|
4133
|
+
* request — clients fall back to the plain participant list.
|
|
4134
|
+
*
|
|
4135
|
+
*/
|
|
4136
|
+
type MatchTeamsResponse = {
|
|
4137
|
+
teams: Array<MatchTeam>;
|
|
4138
|
+
};
|
|
4038
4139
|
type MatchUserPrice = {
|
|
4039
4140
|
applied_category: string;
|
|
4040
4141
|
can_use_promo_code: boolean;
|
|
@@ -4227,19 +4328,35 @@ type PreferencesResponse$1 = {
|
|
|
4227
4328
|
items: Array<Preference$1>;
|
|
4228
4329
|
};
|
|
4229
4330
|
/**
|
|
4230
|
-
* PRIVATE variant of ParticipantDetail. Carries only kind, participation_id, and
|
|
4331
|
+
* PRIVATE variant of ParticipantDetail. Carries only kind, participation_id, joined_at, and the (non-PII) team assignment.
|
|
4231
4332
|
*/
|
|
4232
4333
|
type PrivateParticipantDetail = {
|
|
4233
4334
|
joined_at: string;
|
|
4234
4335
|
kind: 'PRIVATE';
|
|
4235
4336
|
participation_id: string;
|
|
4337
|
+
position?: SpotPosition;
|
|
4338
|
+
/**
|
|
4339
|
+
* Team handling: id of the team this participant is assigned to.
|
|
4340
|
+
* Absent when unassigned. Needed to render the layout for PRIVATE
|
|
4341
|
+
* rows too.
|
|
4342
|
+
*
|
|
4343
|
+
*/
|
|
4344
|
+
team_id?: string;
|
|
4236
4345
|
};
|
|
4237
4346
|
/**
|
|
4238
|
-
* Minimal placeholder for a participant whose User.searchable is false. Carries only kind and participation_id — no PII.
|
|
4347
|
+
* Minimal placeholder for a participant whose User.searchable is false. Carries only kind and participation_id — no PII (team assignment is not PII).
|
|
4239
4348
|
*/
|
|
4240
4349
|
type PrivateParticipantSummary = {
|
|
4241
4350
|
kind: 'PRIVATE';
|
|
4242
4351
|
participation_id: string;
|
|
4352
|
+
position?: SpotPosition;
|
|
4353
|
+
/**
|
|
4354
|
+
* Team handling: id of the team this participant is assigned to.
|
|
4355
|
+
* Absent when unassigned. Needed to render the layout for PRIVATE
|
|
4356
|
+
* rows too.
|
|
4357
|
+
*
|
|
4358
|
+
*/
|
|
4359
|
+
team_id?: string;
|
|
4243
4360
|
};
|
|
4244
4361
|
type PublicParticipantDetail = {
|
|
4245
4362
|
first_name?: string | null;
|
|
@@ -4248,7 +4365,15 @@ type PublicParticipantDetail = {
|
|
|
4248
4365
|
last_name?: string | null;
|
|
4249
4366
|
level?: string | null;
|
|
4250
4367
|
participation_id: string;
|
|
4368
|
+
position?: SpotPosition;
|
|
4251
4369
|
profile_image_url?: string | null;
|
|
4370
|
+
/**
|
|
4371
|
+
* Team handling: id of the team this participant is assigned to.
|
|
4372
|
+
* Absent when unassigned. Joins with the occasion's teams layout
|
|
4373
|
+
* on (team_id, position).
|
|
4374
|
+
*
|
|
4375
|
+
*/
|
|
4376
|
+
team_id?: string;
|
|
4252
4377
|
user_id?: string | null;
|
|
4253
4378
|
};
|
|
4254
4379
|
type PublicParticipantSummary = {
|
|
@@ -4260,7 +4385,15 @@ type PublicParticipantSummary = {
|
|
|
4260
4385
|
* Opaque per-row identifier sourced from Participation.id.
|
|
4261
4386
|
*/
|
|
4262
4387
|
participation_id: string;
|
|
4388
|
+
position?: SpotPosition;
|
|
4263
4389
|
profile_image_url?: string | null;
|
|
4390
|
+
/**
|
|
4391
|
+
* Team handling: id of the team this participant is assigned to.
|
|
4392
|
+
* Absent when unassigned. Joins with the occasion's teams layout
|
|
4393
|
+
* on (team_id, position).
|
|
4394
|
+
*
|
|
4395
|
+
*/
|
|
4396
|
+
team_id?: string;
|
|
4264
4397
|
/**
|
|
4265
4398
|
* Matchi user ID. Null for guest customers (no Matchi user).
|
|
4266
4399
|
*/
|
|
@@ -4282,6 +4415,9 @@ declare const ReactionType: {
|
|
|
4282
4415
|
readonly FIRE: "FIRE";
|
|
4283
4416
|
};
|
|
4284
4417
|
type ReactionType = typeof ReactionType[keyof typeof ReactionType];
|
|
4418
|
+
type RearrangeMatchTeamsRequest = {
|
|
4419
|
+
moves: Array<SpotMove>;
|
|
4420
|
+
};
|
|
4285
4421
|
/**
|
|
4286
4422
|
* A personalized recommendation. The common fields describe what, where, and when. Use type + id to navigate to the specific entity.
|
|
4287
4423
|
*
|
|
@@ -4497,6 +4633,36 @@ type SportProfileLevel = {
|
|
|
4497
4633
|
type SportProfilesResponse = {
|
|
4498
4634
|
items: Array<SportProfile>;
|
|
4499
4635
|
};
|
|
4636
|
+
/**
|
|
4637
|
+
* One spot-to-spot move. No player identity — the occupant of `from` at apply time is relocated.
|
|
4638
|
+
*
|
|
4639
|
+
*/
|
|
4640
|
+
type SpotMove = {
|
|
4641
|
+
from: SpotRef;
|
|
4642
|
+
to: SpotRef;
|
|
4643
|
+
};
|
|
4644
|
+
/**
|
|
4645
|
+
* Spot within a team. The layout derives from the match format:
|
|
4646
|
+
* SINGLES matches have one SINGLE spot per team, DOUBLES matches have
|
|
4647
|
+
* LEFT + RIGHT (court side).
|
|
4648
|
+
*
|
|
4649
|
+
*/
|
|
4650
|
+
declare const SpotPosition: {
|
|
4651
|
+
readonly SINGLE: "SINGLE";
|
|
4652
|
+
readonly LEFT: "LEFT";
|
|
4653
|
+
readonly RIGHT: "RIGHT";
|
|
4654
|
+
};
|
|
4655
|
+
/**
|
|
4656
|
+
* Spot within a team. The layout derives from the match format:
|
|
4657
|
+
* SINGLES matches have one SINGLE spot per team, DOUBLES matches have
|
|
4658
|
+
* LEFT + RIGHT (court side).
|
|
4659
|
+
*
|
|
4660
|
+
*/
|
|
4661
|
+
type SpotPosition = typeof SpotPosition[keyof typeof SpotPosition];
|
|
4662
|
+
type SpotRef = {
|
|
4663
|
+
position: SpotPosition;
|
|
4664
|
+
team_id: string;
|
|
4665
|
+
};
|
|
4500
4666
|
declare const Topic$1: {
|
|
4501
4667
|
readonly FACILITY_MESSAGE: "FACILITY_MESSAGE";
|
|
4502
4668
|
};
|
|
@@ -5773,9 +5939,13 @@ type CreateMatchParticipationErrors = {
|
|
|
5773
5939
|
*/
|
|
5774
5940
|
404: PkgOpenapiSharedProblemDetails$1;
|
|
5775
5941
|
/**
|
|
5776
|
-
* The
|
|
5942
|
+
* Conflict. The body's `code` distinguishes the cause:
|
|
5943
|
+
* SPOT_OCCUPIED — the requested spot (team_id + position) is
|
|
5944
|
+
* already taken, offer picking another spot; CONFLICT — generic
|
|
5945
|
+
* conflict (match full, already participating).
|
|
5946
|
+
*
|
|
5777
5947
|
*/
|
|
5778
|
-
409:
|
|
5948
|
+
409: ConflictDetails;
|
|
5779
5949
|
/**
|
|
5780
5950
|
* The server encountered an unexpected error
|
|
5781
5951
|
*/
|
|
@@ -6893,6 +7063,20 @@ declare const CommunityListResponseSchema: {
|
|
|
6893
7063
|
readonly required: readonly ["items", "meta"];
|
|
6894
7064
|
readonly type: "object";
|
|
6895
7065
|
};
|
|
7066
|
+
declare const ConflictDetailsSchema: {
|
|
7067
|
+
readonly allOf: readonly [{
|
|
7068
|
+
readonly $ref: "#/components/schemas/pkgOpenapiSharedProblemDetails";
|
|
7069
|
+
}, {
|
|
7070
|
+
readonly properties: {
|
|
7071
|
+
readonly code: {
|
|
7072
|
+
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";
|
|
7073
|
+
readonly type: "string";
|
|
7074
|
+
};
|
|
7075
|
+
};
|
|
7076
|
+
readonly type: "object";
|
|
7077
|
+
}];
|
|
7078
|
+
readonly description: "ProblemDetails extended with the webapp's machine-readable conflict\ncode so clients can branch on the conflict cause.\n";
|
|
7079
|
+
};
|
|
6896
7080
|
declare const CreateCommentRequestSchema: {
|
|
6897
7081
|
readonly properties: {
|
|
6898
7082
|
readonly content: {
|
|
@@ -6912,10 +7096,18 @@ declare const CreateMatchParticipationRequestSchema: {
|
|
|
6912
7096
|
readonly payment: {
|
|
6913
7097
|
readonly $ref: "#/components/schemas/PaymentCommand";
|
|
6914
7098
|
};
|
|
7099
|
+
readonly position: {
|
|
7100
|
+
readonly $ref: "#/components/schemas/SpotPosition";
|
|
7101
|
+
};
|
|
6915
7102
|
readonly promo_code: {
|
|
6916
7103
|
readonly nullable: true;
|
|
6917
7104
|
readonly type: "string";
|
|
6918
7105
|
};
|
|
7106
|
+
readonly team_id: {
|
|
7107
|
+
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";
|
|
7108
|
+
readonly format: "uuid";
|
|
7109
|
+
readonly type: "string";
|
|
7110
|
+
};
|
|
6919
7111
|
readonly user_message: {
|
|
6920
7112
|
readonly nullable: true;
|
|
6921
7113
|
readonly type: "string";
|
|
@@ -7592,6 +7784,13 @@ declare const MatchOccasionSchema: {
|
|
|
7592
7784
|
readonly format: "date-time";
|
|
7593
7785
|
readonly type: "string";
|
|
7594
7786
|
};
|
|
7787
|
+
readonly teams: {
|
|
7788
|
+
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";
|
|
7789
|
+
readonly items: {
|
|
7790
|
+
readonly $ref: "#/components/schemas/MatchTeam";
|
|
7791
|
+
};
|
|
7792
|
+
readonly type: "array";
|
|
7793
|
+
};
|
|
7595
7794
|
readonly type: {
|
|
7596
7795
|
readonly nullable: true;
|
|
7597
7796
|
readonly type: "string";
|
|
@@ -7704,6 +7903,69 @@ declare const MatchStatusSchema: {
|
|
|
7704
7903
|
readonly enum: readonly ["OPEN", "FULL", "REGISTRATION_CLOSED", "REGISTRATION_NOT_OPEN", "CANCELLED", "COMPLETED", "MEMBERS_ONLY"];
|
|
7705
7904
|
readonly type: "string";
|
|
7706
7905
|
};
|
|
7906
|
+
declare const MatchTeamSchema: {
|
|
7907
|
+
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";
|
|
7908
|
+
readonly properties: {
|
|
7909
|
+
readonly name: {
|
|
7910
|
+
readonly description: "Optional display name. Null → clients render a \"Team 1/2\" fallback.";
|
|
7911
|
+
readonly nullable: true;
|
|
7912
|
+
readonly type: "string";
|
|
7913
|
+
};
|
|
7914
|
+
readonly positions: {
|
|
7915
|
+
readonly description: "The team's spots, in canonical order.";
|
|
7916
|
+
readonly items: {
|
|
7917
|
+
readonly $ref: "#/components/schemas/MatchTeamSpot";
|
|
7918
|
+
};
|
|
7919
|
+
readonly type: "array";
|
|
7920
|
+
};
|
|
7921
|
+
readonly side: {
|
|
7922
|
+
readonly enum: readonly ["HOME", "AWAY"];
|
|
7923
|
+
readonly type: "string";
|
|
7924
|
+
};
|
|
7925
|
+
readonly team_id: {
|
|
7926
|
+
readonly format: "uuid";
|
|
7927
|
+
readonly type: "string";
|
|
7928
|
+
};
|
|
7929
|
+
};
|
|
7930
|
+
readonly required: readonly ["team_id", "side", "positions"];
|
|
7931
|
+
readonly type: "object";
|
|
7932
|
+
};
|
|
7933
|
+
declare const MatchTeamSpotSchema: {
|
|
7934
|
+
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";
|
|
7935
|
+
readonly properties: {
|
|
7936
|
+
readonly is_assigned: {
|
|
7937
|
+
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";
|
|
7938
|
+
readonly type: "boolean";
|
|
7939
|
+
};
|
|
7940
|
+
readonly is_locked: {
|
|
7941
|
+
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";
|
|
7942
|
+
readonly type: "boolean";
|
|
7943
|
+
};
|
|
7944
|
+
readonly position: {
|
|
7945
|
+
readonly $ref: "#/components/schemas/SpotPosition";
|
|
7946
|
+
};
|
|
7947
|
+
readonly user_id: {
|
|
7948
|
+
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";
|
|
7949
|
+
readonly format: "uuid";
|
|
7950
|
+
readonly type: "string";
|
|
7951
|
+
};
|
|
7952
|
+
};
|
|
7953
|
+
readonly required: readonly ["position", "is_assigned", "is_locked"];
|
|
7954
|
+
readonly type: "object";
|
|
7955
|
+
};
|
|
7956
|
+
declare const MatchTeamsResponseSchema: {
|
|
7957
|
+
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";
|
|
7958
|
+
readonly properties: {
|
|
7959
|
+
readonly teams: {
|
|
7960
|
+
readonly items: {
|
|
7961
|
+
readonly $ref: "#/components/schemas/MatchTeam";
|
|
7962
|
+
};
|
|
7963
|
+
readonly type: "array";
|
|
7964
|
+
};
|
|
7965
|
+
};
|
|
7966
|
+
readonly required: readonly ["teams"];
|
|
7967
|
+
readonly type: "object";
|
|
7968
|
+
};
|
|
7707
7969
|
declare const MatchUserPriceSchema: {
|
|
7708
7970
|
readonly properties: {
|
|
7709
7971
|
readonly applied_category: {
|
|
@@ -8129,7 +8391,7 @@ declare const PreferencesResponseSchema$1: {
|
|
|
8129
8391
|
readonly type: "object";
|
|
8130
8392
|
};
|
|
8131
8393
|
declare const PrivateParticipantDetailSchema: {
|
|
8132
|
-
readonly description: "PRIVATE variant of ParticipantDetail. Carries only kind, participation_id, and
|
|
8394
|
+
readonly description: "PRIVATE variant of ParticipantDetail. Carries only kind, participation_id, joined_at, and the (non-PII) team assignment.";
|
|
8133
8395
|
readonly properties: {
|
|
8134
8396
|
readonly joined_at: {
|
|
8135
8397
|
readonly format: "date-time";
|
|
@@ -8142,12 +8404,20 @@ declare const PrivateParticipantDetailSchema: {
|
|
|
8142
8404
|
readonly participation_id: {
|
|
8143
8405
|
readonly type: "string";
|
|
8144
8406
|
};
|
|
8407
|
+
readonly position: {
|
|
8408
|
+
readonly $ref: "#/components/schemas/SpotPosition";
|
|
8409
|
+
};
|
|
8410
|
+
readonly team_id: {
|
|
8411
|
+
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";
|
|
8412
|
+
readonly format: "uuid";
|
|
8413
|
+
readonly type: "string";
|
|
8414
|
+
};
|
|
8145
8415
|
};
|
|
8146
8416
|
readonly required: readonly ["kind", "participation_id", "joined_at"];
|
|
8147
8417
|
readonly type: "object";
|
|
8148
8418
|
};
|
|
8149
8419
|
declare const PrivateParticipantSummarySchema: {
|
|
8150
|
-
readonly description: "Minimal placeholder for a participant whose User.searchable is false. Carries only kind and participation_id — no PII.";
|
|
8420
|
+
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
8421
|
readonly properties: {
|
|
8152
8422
|
readonly kind: {
|
|
8153
8423
|
readonly enum: readonly ["PRIVATE"];
|
|
@@ -8156,6 +8426,14 @@ declare const PrivateParticipantSummarySchema: {
|
|
|
8156
8426
|
readonly participation_id: {
|
|
8157
8427
|
readonly type: "string";
|
|
8158
8428
|
};
|
|
8429
|
+
readonly position: {
|
|
8430
|
+
readonly $ref: "#/components/schemas/SpotPosition";
|
|
8431
|
+
};
|
|
8432
|
+
readonly team_id: {
|
|
8433
|
+
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";
|
|
8434
|
+
readonly format: "uuid";
|
|
8435
|
+
readonly type: "string";
|
|
8436
|
+
};
|
|
8159
8437
|
};
|
|
8160
8438
|
readonly required: readonly ["kind", "participation_id"];
|
|
8161
8439
|
readonly type: "object";
|
|
@@ -8185,10 +8463,18 @@ declare const PublicParticipantDetailSchema: {
|
|
|
8185
8463
|
readonly participation_id: {
|
|
8186
8464
|
readonly type: "string";
|
|
8187
8465
|
};
|
|
8466
|
+
readonly position: {
|
|
8467
|
+
readonly $ref: "#/components/schemas/SpotPosition";
|
|
8468
|
+
};
|
|
8188
8469
|
readonly profile_image_url: {
|
|
8189
8470
|
readonly nullable: true;
|
|
8190
8471
|
readonly type: "string";
|
|
8191
8472
|
};
|
|
8473
|
+
readonly team_id: {
|
|
8474
|
+
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";
|
|
8475
|
+
readonly format: "uuid";
|
|
8476
|
+
readonly type: "string";
|
|
8477
|
+
};
|
|
8192
8478
|
readonly user_id: {
|
|
8193
8479
|
readonly format: "uuid";
|
|
8194
8480
|
readonly nullable: true;
|
|
@@ -8220,10 +8506,18 @@ declare const PublicParticipantSummarySchema: {
|
|
|
8220
8506
|
readonly description: "Opaque per-row identifier sourced from Participation.id.";
|
|
8221
8507
|
readonly type: "string";
|
|
8222
8508
|
};
|
|
8509
|
+
readonly position: {
|
|
8510
|
+
readonly $ref: "#/components/schemas/SpotPosition";
|
|
8511
|
+
};
|
|
8223
8512
|
readonly profile_image_url: {
|
|
8224
8513
|
readonly nullable: true;
|
|
8225
8514
|
readonly type: "string";
|
|
8226
8515
|
};
|
|
8516
|
+
readonly team_id: {
|
|
8517
|
+
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";
|
|
8518
|
+
readonly format: "uuid";
|
|
8519
|
+
readonly type: "string";
|
|
8520
|
+
};
|
|
8227
8521
|
readonly user_id: {
|
|
8228
8522
|
readonly description: "Matchi user ID. Null for guest customers (no Matchi user).";
|
|
8229
8523
|
readonly format: "uuid";
|
|
@@ -8262,6 +8556,19 @@ declare const ReactionTypeSchema: {
|
|
|
8262
8556
|
readonly enum: readonly ["THUMBS_UP", "HEART", "SWEAT_SMILE", "LAUGHING", "HUSHED", "FIRE"];
|
|
8263
8557
|
readonly type: "string";
|
|
8264
8558
|
};
|
|
8559
|
+
declare const RearrangeMatchTeamsRequestSchema: {
|
|
8560
|
+
readonly properties: {
|
|
8561
|
+
readonly moves: {
|
|
8562
|
+
readonly items: {
|
|
8563
|
+
readonly $ref: "#/components/schemas/SpotMove";
|
|
8564
|
+
};
|
|
8565
|
+
readonly minItems: 1;
|
|
8566
|
+
readonly type: "array";
|
|
8567
|
+
};
|
|
8568
|
+
};
|
|
8569
|
+
readonly required: readonly ["moves"];
|
|
8570
|
+
readonly type: "object";
|
|
8571
|
+
};
|
|
8265
8572
|
declare const RecommendationSchema: {
|
|
8266
8573
|
readonly description: "A personalized recommendation. The common fields describe what, where, and when. Use type + id to navigate to the specific entity.\n";
|
|
8267
8574
|
readonly properties: {
|
|
@@ -8609,6 +8916,37 @@ declare const SportProfilesResponseSchema: {
|
|
|
8609
8916
|
readonly required: readonly ["items"];
|
|
8610
8917
|
readonly type: "object";
|
|
8611
8918
|
};
|
|
8919
|
+
declare const SpotMoveSchema: {
|
|
8920
|
+
readonly description: "One spot-to-spot move. No player identity — the occupant of `from` at apply time is relocated.\n";
|
|
8921
|
+
readonly properties: {
|
|
8922
|
+
readonly from: {
|
|
8923
|
+
readonly $ref: "#/components/schemas/SpotRef";
|
|
8924
|
+
};
|
|
8925
|
+
readonly to: {
|
|
8926
|
+
readonly $ref: "#/components/schemas/SpotRef";
|
|
8927
|
+
};
|
|
8928
|
+
};
|
|
8929
|
+
readonly required: readonly ["from", "to"];
|
|
8930
|
+
readonly type: "object";
|
|
8931
|
+
};
|
|
8932
|
+
declare const SpotPositionSchema: {
|
|
8933
|
+
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";
|
|
8934
|
+
readonly enum: readonly ["SINGLE", "LEFT", "RIGHT"];
|
|
8935
|
+
readonly type: "string";
|
|
8936
|
+
};
|
|
8937
|
+
declare const SpotRefSchema: {
|
|
8938
|
+
readonly properties: {
|
|
8939
|
+
readonly position: {
|
|
8940
|
+
readonly $ref: "#/components/schemas/SpotPosition";
|
|
8941
|
+
};
|
|
8942
|
+
readonly team_id: {
|
|
8943
|
+
readonly format: "uuid";
|
|
8944
|
+
readonly type: "string";
|
|
8945
|
+
};
|
|
8946
|
+
};
|
|
8947
|
+
readonly required: readonly ["team_id", "position"];
|
|
8948
|
+
readonly type: "object";
|
|
8949
|
+
};
|
|
8612
8950
|
declare const TopicSchema$1: {
|
|
8613
8951
|
readonly enum: readonly ["FACILITY_MESSAGE"];
|
|
8614
8952
|
readonly type: "string";
|
|
@@ -8887,6 +9225,7 @@ declare const schemas_gen$1_CommentListResponseSchema: typeof CommentListRespons
|
|
|
8887
9225
|
declare const schemas_gen$1_CommentSchema: typeof CommentSchema;
|
|
8888
9226
|
declare const schemas_gen$1_CommunityItemSchema: typeof CommunityItemSchema;
|
|
8889
9227
|
declare const schemas_gen$1_CommunityListResponseSchema: typeof CommunityListResponseSchema;
|
|
9228
|
+
declare const schemas_gen$1_ConflictDetailsSchema: typeof ConflictDetailsSchema;
|
|
8890
9229
|
declare const schemas_gen$1_CreateCommentRequestSchema: typeof CreateCommentRequestSchema;
|
|
8891
9230
|
declare const schemas_gen$1_CreateMatchParticipationRequestSchema: typeof CreateMatchParticipationRequestSchema;
|
|
8892
9231
|
declare const schemas_gen$1_CreatePostRequestSchema: typeof CreatePostRequestSchema;
|
|
@@ -8923,6 +9262,9 @@ declare const schemas_gen$1_MatchParticipantsSchema: typeof MatchParticipantsSch
|
|
|
8923
9262
|
declare const schemas_gen$1_MatchPriceListEntrySchema: typeof MatchPriceListEntrySchema;
|
|
8924
9263
|
declare const schemas_gen$1_MatchSchema: typeof MatchSchema;
|
|
8925
9264
|
declare const schemas_gen$1_MatchStatusSchema: typeof MatchStatusSchema;
|
|
9265
|
+
declare const schemas_gen$1_MatchTeamSchema: typeof MatchTeamSchema;
|
|
9266
|
+
declare const schemas_gen$1_MatchTeamSpotSchema: typeof MatchTeamSpotSchema;
|
|
9267
|
+
declare const schemas_gen$1_MatchTeamsResponseSchema: typeof MatchTeamsResponseSchema;
|
|
8926
9268
|
declare const schemas_gen$1_MatchUserPriceSchema: typeof MatchUserPriceSchema;
|
|
8927
9269
|
declare const schemas_gen$1_MemberListResponseSchema: typeof MemberListResponseSchema;
|
|
8928
9270
|
declare const schemas_gen$1_MemberRelationSchema: typeof MemberRelationSchema;
|
|
@@ -8949,6 +9291,7 @@ declare const schemas_gen$1_PublicParticipantSummarySchema: typeof PublicPartici
|
|
|
8949
9291
|
declare const schemas_gen$1_ReactionGroupSchema: typeof ReactionGroupSchema;
|
|
8950
9292
|
declare const schemas_gen$1_ReactionRequestSchema: typeof ReactionRequestSchema;
|
|
8951
9293
|
declare const schemas_gen$1_ReactionTypeSchema: typeof ReactionTypeSchema;
|
|
9294
|
+
declare const schemas_gen$1_RearrangeMatchTeamsRequestSchema: typeof RearrangeMatchTeamsRequestSchema;
|
|
8952
9295
|
declare const schemas_gen$1_RecommendationListSchema: typeof RecommendationListSchema;
|
|
8953
9296
|
declare const schemas_gen$1_RecommendationSchema: typeof RecommendationSchema;
|
|
8954
9297
|
declare const schemas_gen$1_RefundPolicySchema: typeof RefundPolicySchema;
|
|
@@ -8961,6 +9304,9 @@ declare const schemas_gen$1_SportProfileAttributeSchema: typeof SportProfileAttr
|
|
|
8961
9304
|
declare const schemas_gen$1_SportProfileLevelSchema: typeof SportProfileLevelSchema;
|
|
8962
9305
|
declare const schemas_gen$1_SportProfileSchema: typeof SportProfileSchema;
|
|
8963
9306
|
declare const schemas_gen$1_SportProfilesResponseSchema: typeof SportProfilesResponseSchema;
|
|
9307
|
+
declare const schemas_gen$1_SpotMoveSchema: typeof SpotMoveSchema;
|
|
9308
|
+
declare const schemas_gen$1_SpotPositionSchema: typeof SpotPositionSchema;
|
|
9309
|
+
declare const schemas_gen$1_SpotRefSchema: typeof SpotRefSchema;
|
|
8964
9310
|
declare const schemas_gen$1_UpdateSportProfileLevelRequestSchema: typeof UpdateSportProfileLevelRequestSchema;
|
|
8965
9311
|
declare const schemas_gen$1_UpdateUsersProfilesRequestSchema: typeof UpdateUsersProfilesRequestSchema;
|
|
8966
9312
|
declare const schemas_gen$1_UserParticipationStatusSchema: typeof UserParticipationStatusSchema;
|
|
@@ -8971,7 +9317,7 @@ declare const schemas_gen$1_VisibilitySchema: typeof VisibilitySchema;
|
|
|
8971
9317
|
declare const schemas_gen$1_pkgOpenapiSharedFilterableStringSchema: typeof pkgOpenapiSharedFilterableStringSchema;
|
|
8972
9318
|
declare const schemas_gen$1_pkgOpenapiSharedOffsetPaginatedResultSetSchema: typeof pkgOpenapiSharedOffsetPaginatedResultSetSchema;
|
|
8973
9319
|
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 };
|
|
9320
|
+
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
9321
|
}
|
|
8976
9322
|
|
|
8977
9323
|
type Options$2<TData extends TDataShape$1 = TDataShape$1, ThrowOnError extends boolean = boolean> = Options$3<TData, ThrowOnError> & {
|
|
@@ -9156,6 +9502,10 @@ declare const getMatch: <ThrowOnError extends boolean = false>(options: Options$
|
|
|
9156
9502
|
* `checkout_url` the client redirects to; for inline/free flows it is
|
|
9157
9503
|
* absent.
|
|
9158
9504
|
*
|
|
9505
|
+
* Team handling: send `team_id` + `position` to claim a specific spot
|
|
9506
|
+
* from the occasion's teams layout; omit both to have a spot
|
|
9507
|
+
* auto-assigned. A taken spot yields 409 with code SPOT_OCCUPIED.
|
|
9508
|
+
*
|
|
9159
9509
|
*/
|
|
9160
9510
|
declare const createMatchParticipation: <ThrowOnError extends boolean = false>(options: Options$2<CreateMatchParticipationData, ThrowOnError>) => RequestResult$1<CreateMatchParticipationResponses, CreateMatchParticipationErrors, ThrowOnError, "fields">;
|
|
9161
9511
|
/**
|
|
@@ -9954,6 +10304,10 @@ declare const getMatchOptions: (options: Options$2<GetMatchData>) => _tanstack_r
|
|
|
9954
10304
|
* `checkout_url` the client redirects to; for inline/free flows it is
|
|
9955
10305
|
* absent.
|
|
9956
10306
|
*
|
|
10307
|
+
* Team handling: send `team_id` + `position` to claim a specific spot
|
|
10308
|
+
* from the occasion's teams layout; omit both to have a spot
|
|
10309
|
+
* auto-assigned. A taken spot yields 409 with code SPOT_OCCUPIED.
|
|
10310
|
+
*
|
|
9957
10311
|
*/
|
|
9958
10312
|
declare const createMatchParticipationMutation: (options?: Partial<Options$2<CreateMatchParticipationData>>) => UseMutationOptions<CreateMatchParticipationResponse, CreateMatchParticipationError, Options$2<CreateMatchParticipationData>>;
|
|
9959
10313
|
/**
|
|
@@ -10540,6 +10894,7 @@ type indexV1_CommentListResponse = CommentListResponse;
|
|
|
10540
10894
|
type indexV1_CommunityIdParam = CommunityIdParam;
|
|
10541
10895
|
type indexV1_CommunityItem = CommunityItem;
|
|
10542
10896
|
type indexV1_CommunityListResponse = CommunityListResponse;
|
|
10897
|
+
type indexV1_ConflictDetails = ConflictDetails;
|
|
10543
10898
|
type indexV1_CreateCommentData = CreateCommentData;
|
|
10544
10899
|
type indexV1_CreateCommentError = CreateCommentError;
|
|
10545
10900
|
type indexV1_CreateCommentErrors = CreateCommentErrors;
|
|
@@ -10752,6 +11107,9 @@ type indexV1_MatchOccasionDetail = MatchOccasionDetail;
|
|
|
10752
11107
|
type indexV1_MatchParticipants = MatchParticipants;
|
|
10753
11108
|
type indexV1_MatchPriceListEntry = MatchPriceListEntry;
|
|
10754
11109
|
type indexV1_MatchStatus = MatchStatus;
|
|
11110
|
+
type indexV1_MatchTeam = MatchTeam;
|
|
11111
|
+
type indexV1_MatchTeamSpot = MatchTeamSpot;
|
|
11112
|
+
type indexV1_MatchTeamsResponse = MatchTeamsResponse;
|
|
10755
11113
|
type indexV1_MatchUserPrice = MatchUserPrice;
|
|
10756
11114
|
type indexV1_Member = Member;
|
|
10757
11115
|
type indexV1_MemberListResponse = MemberListResponse;
|
|
@@ -10785,6 +11143,7 @@ type indexV1_PublicParticipantSummary = PublicParticipantSummary;
|
|
|
10785
11143
|
type indexV1_ReactionGroup = ReactionGroup;
|
|
10786
11144
|
type indexV1_ReactionRequest = ReactionRequest;
|
|
10787
11145
|
type indexV1_ReactionType = ReactionType;
|
|
11146
|
+
type indexV1_RearrangeMatchTeamsRequest = RearrangeMatchTeamsRequest;
|
|
10788
11147
|
type indexV1_Recommendation = Recommendation;
|
|
10789
11148
|
type indexV1_RecommendationList = RecommendationList;
|
|
10790
11149
|
type indexV1_RefundPolicy = RefundPolicy;
|
|
@@ -10804,6 +11163,9 @@ type indexV1_SportProfileAttribute = SportProfileAttribute;
|
|
|
10804
11163
|
type indexV1_SportProfileId = SportProfileId;
|
|
10805
11164
|
type indexV1_SportProfileLevel = SportProfileLevel;
|
|
10806
11165
|
type indexV1_SportProfilesResponse = SportProfilesResponse;
|
|
11166
|
+
type indexV1_SpotMove = SpotMove;
|
|
11167
|
+
type indexV1_SpotPosition = SpotPosition;
|
|
11168
|
+
type indexV1_SpotRef = SpotRef;
|
|
10807
11169
|
type indexV1_UpdateSportProfileLevelRequest = UpdateSportProfileLevelRequest;
|
|
10808
11170
|
type indexV1_UpdateUserProfileData = UpdateUserProfileData;
|
|
10809
11171
|
type indexV1_UpdateUserProfileError = UpdateUserProfileError;
|
|
@@ -10876,7 +11238,7 @@ declare const indexV1_updateUserSportProfileLevel: typeof updateUserSportProfile
|
|
|
10876
11238
|
declare const indexV1_upsertCommentReaction: typeof upsertCommentReaction;
|
|
10877
11239
|
declare const indexV1_upsertPostReaction: typeof upsertPostReaction;
|
|
10878
11240
|
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 };
|
|
11241
|
+
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
11242
|
}
|
|
10881
11243
|
|
|
10882
11244
|
type AuthToken = string | undefined;
|