@matchi/api 0.20260522.1 → 0.20260525.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 +750 -64
- package/dist/main/index.d.ts +750 -64
- package/dist/main/index.js +16 -10
- package/dist/main/index.mjs +16 -10
- package/package.json +1 -1
package/dist/main/index.d.mts
CHANGED
|
@@ -3584,6 +3584,12 @@ type Options$1<TData extends TDataShape = TDataShape, ThrowOnError extends boole
|
|
|
3584
3584
|
type ClientOptions = {
|
|
3585
3585
|
baseUrl: 'https://api.matchi.com/v1' | (string & {});
|
|
3586
3586
|
};
|
|
3587
|
+
type Address = {
|
|
3588
|
+
city?: string;
|
|
3589
|
+
country?: string;
|
|
3590
|
+
street?: string;
|
|
3591
|
+
zip?: string;
|
|
3592
|
+
};
|
|
3587
3593
|
type Author = {
|
|
3588
3594
|
/**
|
|
3589
3595
|
* ADMIN — the post or comment was authored by a facility admin.
|
|
@@ -3677,14 +3683,24 @@ type ExternalService = {
|
|
|
3677
3683
|
name: string;
|
|
3678
3684
|
};
|
|
3679
3685
|
type Facility = {
|
|
3680
|
-
|
|
3681
|
-
|
|
3682
|
-
|
|
3683
|
-
|
|
3686
|
+
active?: boolean;
|
|
3687
|
+
address: Address;
|
|
3688
|
+
bookable?: boolean;
|
|
3689
|
+
currency?: string;
|
|
3690
|
+
description?: string;
|
|
3691
|
+
email?: string;
|
|
3692
|
+
id: number;
|
|
3693
|
+
logo_url: string;
|
|
3694
|
+
name: string;
|
|
3695
|
+
phone_number?: string;
|
|
3696
|
+
position: Position;
|
|
3697
|
+
resource_types: Array<string>;
|
|
3698
|
+
sports?: Array<string>;
|
|
3699
|
+
website?: string;
|
|
3684
3700
|
};
|
|
3685
3701
|
type FacilityList = {
|
|
3686
3702
|
items: Array<Facility>;
|
|
3687
|
-
|
|
3703
|
+
result_set: PkgOpenapiSharedOffsetPaginatedResultSet;
|
|
3688
3704
|
};
|
|
3689
3705
|
type FacilityMessagePayload = {
|
|
3690
3706
|
description: string;
|
|
@@ -4007,18 +4023,19 @@ type PaginationMeta = {
|
|
|
4007
4023
|
};
|
|
4008
4024
|
};
|
|
4009
4025
|
/**
|
|
4010
|
-
*
|
|
4026
|
+
* Player-facing participant row with join timestamp. Tagged union over
|
|
4027
|
+
* PUBLIC and PRIVATE variants — see ParticipantSummary.
|
|
4028
|
+
*
|
|
4011
4029
|
*/
|
|
4012
|
-
type ParticipantDetail =
|
|
4013
|
-
|
|
4014
|
-
|
|
4015
|
-
|
|
4016
|
-
|
|
4017
|
-
|
|
4018
|
-
|
|
4019
|
-
|
|
4020
|
-
|
|
4021
|
-
};
|
|
4030
|
+
type ParticipantDetail = PublicParticipantDetail | PrivateParticipantDetail;
|
|
4031
|
+
/**
|
|
4032
|
+
* Player-facing participant row. Tagged union over PUBLIC (full data) and
|
|
4033
|
+
* PRIVATE (placeholder for users with searchable=false), distinguished by
|
|
4034
|
+
* the `kind` property on each variant. See
|
|
4035
|
+
* openspec/specs/match-participant-privacy/spec.md in team-discovery-docs.
|
|
4036
|
+
*
|
|
4037
|
+
*/
|
|
4038
|
+
type ParticipantSummary = PublicParticipantSummary | PrivateParticipantSummary;
|
|
4022
4039
|
type PatchCommentRequest = {
|
|
4023
4040
|
is_read?: boolean;
|
|
4024
4041
|
};
|
|
@@ -4048,6 +4065,10 @@ type PaymentDetails = {
|
|
|
4048
4065
|
price?: number | null;
|
|
4049
4066
|
status?: string | null;
|
|
4050
4067
|
};
|
|
4068
|
+
type Position = {
|
|
4069
|
+
latitude: number;
|
|
4070
|
+
longitude: number;
|
|
4071
|
+
};
|
|
4051
4072
|
type Post = {
|
|
4052
4073
|
author: Author;
|
|
4053
4074
|
comment_count: number;
|
|
@@ -4082,6 +4103,46 @@ type Preference = {
|
|
|
4082
4103
|
type PreferencesResponse = {
|
|
4083
4104
|
items: Array<Preference>;
|
|
4084
4105
|
};
|
|
4106
|
+
/**
|
|
4107
|
+
* PRIVATE variant of ParticipantDetail. Carries only kind, participation_id, and joined_at.
|
|
4108
|
+
*/
|
|
4109
|
+
type PrivateParticipantDetail = {
|
|
4110
|
+
joined_at: string;
|
|
4111
|
+
kind: 'PRIVATE';
|
|
4112
|
+
participation_id: string;
|
|
4113
|
+
};
|
|
4114
|
+
/**
|
|
4115
|
+
* Minimal placeholder for a participant whose User.searchable is false. Carries only kind and participation_id — no PII.
|
|
4116
|
+
*/
|
|
4117
|
+
type PrivateParticipantSummary = {
|
|
4118
|
+
kind: 'PRIVATE';
|
|
4119
|
+
participation_id: string;
|
|
4120
|
+
};
|
|
4121
|
+
type PublicParticipantDetail = {
|
|
4122
|
+
first_name?: string | null;
|
|
4123
|
+
joined_at: string;
|
|
4124
|
+
kind: 'PUBLIC';
|
|
4125
|
+
last_name?: string | null;
|
|
4126
|
+
level?: string | null;
|
|
4127
|
+
participation_id: string;
|
|
4128
|
+
profile_image_url?: string | null;
|
|
4129
|
+
user_id?: string | null;
|
|
4130
|
+
};
|
|
4131
|
+
type PublicParticipantSummary = {
|
|
4132
|
+
first_name?: string | null;
|
|
4133
|
+
kind: 'PUBLIC';
|
|
4134
|
+
last_name?: string | null;
|
|
4135
|
+
level?: string | null;
|
|
4136
|
+
/**
|
|
4137
|
+
* Opaque per-row identifier sourced from Participation.id.
|
|
4138
|
+
*/
|
|
4139
|
+
participation_id: string;
|
|
4140
|
+
profile_image_url?: string | null;
|
|
4141
|
+
/**
|
|
4142
|
+
* Matchi user ID. Null for guest customers (no Matchi user).
|
|
4143
|
+
*/
|
|
4144
|
+
user_id?: string | null;
|
|
4145
|
+
};
|
|
4085
4146
|
/**
|
|
4086
4147
|
* A personalized recommendation. The common fields describe what, where, and when. Use type + id to navigate to the specific entity.
|
|
4087
4148
|
*
|
|
@@ -4180,6 +4241,21 @@ type RegisterDeviceRequest = {
|
|
|
4180
4241
|
language?: string;
|
|
4181
4242
|
os: 'ios' | 'android';
|
|
4182
4243
|
};
|
|
4244
|
+
type Resource = {
|
|
4245
|
+
description?: string;
|
|
4246
|
+
facility_id: number;
|
|
4247
|
+
id: number;
|
|
4248
|
+
indoor?: boolean;
|
|
4249
|
+
name: string;
|
|
4250
|
+
/**
|
|
4251
|
+
* Sport type. Available sports are served from the /config endpoint.
|
|
4252
|
+
*/
|
|
4253
|
+
sport?: string;
|
|
4254
|
+
/**
|
|
4255
|
+
* Court surface type. Available surfaces are served from the /config endpoint.
|
|
4256
|
+
*/
|
|
4257
|
+
surface?: string;
|
|
4258
|
+
};
|
|
4183
4259
|
declare const Source: {
|
|
4184
4260
|
readonly FACILITY: "FACILITY";
|
|
4185
4261
|
readonly COMMUNITY: "COMMUNITY";
|
|
@@ -4394,6 +4470,36 @@ type PkgOpenapiSharedError = {
|
|
|
4394
4470
|
* An array of error details to accompany a problem details response.
|
|
4395
4471
|
*/
|
|
4396
4472
|
type PkgOpenapiSharedErrors = Array<PkgOpenapiSharedError>;
|
|
4473
|
+
/**
|
|
4474
|
+
* String filter in PostgREST format: `operator.value`
|
|
4475
|
+
*
|
|
4476
|
+
* **Allowed operators:** eq, like, ilike, is, in
|
|
4477
|
+
* **Negation:** Prefix with `not.` (e.g., `not.eq.value`)
|
|
4478
|
+
*
|
|
4479
|
+
* **Supported use cases:**
|
|
4480
|
+
* - International names: Any Unicode letters (Chinese, Arabic, Cyrillic, etc.)
|
|
4481
|
+
* - Names with apostrophes: `eq.O'Brien`, `eq.D'Angelo`
|
|
4482
|
+
* - Email addresses: `eq.user@example.com`
|
|
4483
|
+
* - Nordic characters: `eq.København`, `like.träning*`
|
|
4484
|
+
* - Wildcards: `like.train*`, `ilike.*search*`
|
|
4485
|
+
* - Special chars: dots, hyphens, underscores, @, +, spaces, etc.
|
|
4486
|
+
* - Lists: `in.(value1,value2,value3)` or `not.in.(value1,value2,value3)`
|
|
4487
|
+
*
|
|
4488
|
+
* Examples:
|
|
4489
|
+
* - `eq.training` - Exact match
|
|
4490
|
+
* - `eq.O'Brien` - Name with apostrophe
|
|
4491
|
+
* - `eq.user@example.com` - Email address
|
|
4492
|
+
* - `eq.名前` - Japanese characters
|
|
4493
|
+
* - `eq.Björk` - Nordic characters
|
|
4494
|
+
* - `like.münchen*` - German with wildcard
|
|
4495
|
+
* - `ilike.*josé*` - Spanish name search
|
|
4496
|
+
* - `is.null` - Is NULL
|
|
4497
|
+
* - `not.eq.value` - Not equal
|
|
4498
|
+
* - `in.(value1,value2,value3)` - List of values
|
|
4499
|
+
* - `not.in.(value1,value2,value3)` - Not in list
|
|
4500
|
+
*
|
|
4501
|
+
*/
|
|
4502
|
+
type PkgOpenapiSharedFilterableString = string;
|
|
4397
4503
|
/**
|
|
4398
4504
|
* Metadata about the offset based pagination for the result. This information is coupled with the OffsetParam and OffsetLimitParam. Intended to be used as the `meta` field in a list response, next to an `items` array field containing the data.
|
|
4399
4505
|
*
|
|
@@ -4436,6 +4542,7 @@ type FacilityIdPath = string;
|
|
|
4436
4542
|
type NotificationsFilterParam = NotificationsFilter;
|
|
4437
4543
|
type OfferIdPath = string;
|
|
4438
4544
|
type PostIdParam = string;
|
|
4545
|
+
type ResourceIdPath = string;
|
|
4439
4546
|
/**
|
|
4440
4547
|
* The sport profile ID
|
|
4441
4548
|
*/
|
|
@@ -5007,6 +5114,105 @@ type MarkCommentReadResponses = {
|
|
|
5007
5114
|
200: Comment;
|
|
5008
5115
|
};
|
|
5009
5116
|
type MarkCommentReadResponse = MarkCommentReadResponses[keyof MarkCommentReadResponses];
|
|
5117
|
+
type ListFacilitiesData = {
|
|
5118
|
+
body?: never;
|
|
5119
|
+
path?: never;
|
|
5120
|
+
query?: {
|
|
5121
|
+
/**
|
|
5122
|
+
* Filter by city name. Example: `eq.Stockholm`, `like.Stock%`
|
|
5123
|
+
*
|
|
5124
|
+
*/
|
|
5125
|
+
city?: PkgOpenapiSharedFilterableString;
|
|
5126
|
+
/**
|
|
5127
|
+
* Filter by ISO 3166-1 alpha-2 country code. Example: `eq.SE`, `in.(SE,NO,DK)`
|
|
5128
|
+
*
|
|
5129
|
+
*/
|
|
5130
|
+
country_code?: PkgOpenapiSharedFilterableString;
|
|
5131
|
+
/**
|
|
5132
|
+
* Filter by facility name. Example: `ilike.%padel%`
|
|
5133
|
+
*
|
|
5134
|
+
*/
|
|
5135
|
+
name?: PkgOpenapiSharedFilterableString;
|
|
5136
|
+
/**
|
|
5137
|
+
* Latitude for geographic search. Must be provided together with longitude.
|
|
5138
|
+
*/
|
|
5139
|
+
latitude?: number;
|
|
5140
|
+
/**
|
|
5141
|
+
* Longitude for geographic search. Must be provided together with latitude.
|
|
5142
|
+
*/
|
|
5143
|
+
longitude?: number;
|
|
5144
|
+
/**
|
|
5145
|
+
* Search radius in kilometers. Only used with latitude/longitude.
|
|
5146
|
+
*/
|
|
5147
|
+
radius_km?: number;
|
|
5148
|
+
/**
|
|
5149
|
+
* Filter by resource types available at the facility. Available types are served from the /config endpoint.
|
|
5150
|
+
*
|
|
5151
|
+
*/
|
|
5152
|
+
resource_types?: Array<string>;
|
|
5153
|
+
/**
|
|
5154
|
+
* Number of items to skip before returning the results.
|
|
5155
|
+
*/
|
|
5156
|
+
offset?: number;
|
|
5157
|
+
/**
|
|
5158
|
+
* Maximum number of items to return.
|
|
5159
|
+
*/
|
|
5160
|
+
limit?: number;
|
|
5161
|
+
};
|
|
5162
|
+
url: '/facilities';
|
|
5163
|
+
};
|
|
5164
|
+
type ListFacilitiesErrors = {
|
|
5165
|
+
/**
|
|
5166
|
+
* The request was malformed or could not be processed.
|
|
5167
|
+
*/
|
|
5168
|
+
400: PkgOpenapiSharedProblemDetails;
|
|
5169
|
+
/**
|
|
5170
|
+
* Access token is not set or invalid.
|
|
5171
|
+
*/
|
|
5172
|
+
401: PkgOpenapiSharedProblemDetails;
|
|
5173
|
+
/**
|
|
5174
|
+
* The server encountered an unexpected error
|
|
5175
|
+
*/
|
|
5176
|
+
500: PkgOpenapiSharedProblemDetails;
|
|
5177
|
+
};
|
|
5178
|
+
type ListFacilitiesError = ListFacilitiesErrors[keyof ListFacilitiesErrors];
|
|
5179
|
+
type ListFacilitiesResponses = {
|
|
5180
|
+
/**
|
|
5181
|
+
* OK
|
|
5182
|
+
*/
|
|
5183
|
+
200: FacilityList;
|
|
5184
|
+
};
|
|
5185
|
+
type ListFacilitiesResponse = ListFacilitiesResponses[keyof ListFacilitiesResponses];
|
|
5186
|
+
type GetFacilityData = {
|
|
5187
|
+
body?: never;
|
|
5188
|
+
path: {
|
|
5189
|
+
facility_id: string;
|
|
5190
|
+
};
|
|
5191
|
+
query?: never;
|
|
5192
|
+
url: '/facilities/{facility_id}';
|
|
5193
|
+
};
|
|
5194
|
+
type GetFacilityErrors = {
|
|
5195
|
+
/**
|
|
5196
|
+
* Access token is not set or invalid.
|
|
5197
|
+
*/
|
|
5198
|
+
401: PkgOpenapiSharedProblemDetails;
|
|
5199
|
+
/**
|
|
5200
|
+
* The requested resource was not found.
|
|
5201
|
+
*/
|
|
5202
|
+
404: PkgOpenapiSharedProblemDetails;
|
|
5203
|
+
/**
|
|
5204
|
+
* The server encountered an unexpected error
|
|
5205
|
+
*/
|
|
5206
|
+
500: PkgOpenapiSharedProblemDetails;
|
|
5207
|
+
};
|
|
5208
|
+
type GetFacilityError = GetFacilityErrors[keyof GetFacilityErrors];
|
|
5209
|
+
type GetFacilityResponses = {
|
|
5210
|
+
/**
|
|
5211
|
+
* OK
|
|
5212
|
+
*/
|
|
5213
|
+
200: Facility;
|
|
5214
|
+
};
|
|
5215
|
+
type GetFacilityResponse = GetFacilityResponses[keyof GetFacilityResponses];
|
|
5010
5216
|
type ListFacilityOffersData = {
|
|
5011
5217
|
body?: never;
|
|
5012
5218
|
path: {
|
|
@@ -5090,6 +5296,39 @@ type CreateFacilityOfferOrderResponses = {
|
|
|
5090
5296
|
200: FacilityOfferOrder;
|
|
5091
5297
|
};
|
|
5092
5298
|
type CreateFacilityOfferOrderResponse = CreateFacilityOfferOrderResponses[keyof CreateFacilityOfferOrderResponses];
|
|
5299
|
+
type ListFacilityResourcesData = {
|
|
5300
|
+
body?: never;
|
|
5301
|
+
path: {
|
|
5302
|
+
facility_id: string;
|
|
5303
|
+
};
|
|
5304
|
+
query?: never;
|
|
5305
|
+
url: '/facilities/{facility_id}/resources';
|
|
5306
|
+
};
|
|
5307
|
+
type ListFacilityResourcesErrors = {
|
|
5308
|
+
/**
|
|
5309
|
+
* Access token is not set or invalid.
|
|
5310
|
+
*/
|
|
5311
|
+
401: PkgOpenapiSharedProblemDetails;
|
|
5312
|
+
/**
|
|
5313
|
+
* The requested resource was not found.
|
|
5314
|
+
*/
|
|
5315
|
+
404: PkgOpenapiSharedProblemDetails;
|
|
5316
|
+
/**
|
|
5317
|
+
* The server encountered an unexpected error
|
|
5318
|
+
*/
|
|
5319
|
+
500: PkgOpenapiSharedProblemDetails;
|
|
5320
|
+
};
|
|
5321
|
+
type ListFacilityResourcesError = ListFacilityResourcesErrors[keyof ListFacilityResourcesErrors];
|
|
5322
|
+
type ListFacilityResourcesResponses = {
|
|
5323
|
+
/**
|
|
5324
|
+
* OK
|
|
5325
|
+
*/
|
|
5326
|
+
200: {
|
|
5327
|
+
items: Array<Resource>;
|
|
5328
|
+
result_set: PkgOpenapiSharedOffsetPaginatedResultSet;
|
|
5329
|
+
};
|
|
5330
|
+
};
|
|
5331
|
+
type ListFacilityResourcesResponse = ListFacilityResourcesResponses[keyof ListFacilityResourcesResponses];
|
|
5093
5332
|
type ListMatchesData = {
|
|
5094
5333
|
body?: never;
|
|
5095
5334
|
path?: never;
|
|
@@ -5524,6 +5763,36 @@ type UpdateNotificationResponses = {
|
|
|
5524
5763
|
200: Notification;
|
|
5525
5764
|
};
|
|
5526
5765
|
type UpdateNotificationResponse = UpdateNotificationResponses[keyof UpdateNotificationResponses];
|
|
5766
|
+
type GetResourceData = {
|
|
5767
|
+
body?: never;
|
|
5768
|
+
path: {
|
|
5769
|
+
resource_id: string;
|
|
5770
|
+
};
|
|
5771
|
+
query?: never;
|
|
5772
|
+
url: '/resources/{resource_id}';
|
|
5773
|
+
};
|
|
5774
|
+
type GetResourceErrors = {
|
|
5775
|
+
/**
|
|
5776
|
+
* Access token is not set or invalid.
|
|
5777
|
+
*/
|
|
5778
|
+
401: PkgOpenapiSharedProblemDetails;
|
|
5779
|
+
/**
|
|
5780
|
+
* The requested resource was not found.
|
|
5781
|
+
*/
|
|
5782
|
+
404: PkgOpenapiSharedProblemDetails;
|
|
5783
|
+
/**
|
|
5784
|
+
* The server encountered an unexpected error
|
|
5785
|
+
*/
|
|
5786
|
+
500: PkgOpenapiSharedProblemDetails;
|
|
5787
|
+
};
|
|
5788
|
+
type GetResourceError = GetResourceErrors[keyof GetResourceErrors];
|
|
5789
|
+
type GetResourceResponses = {
|
|
5790
|
+
/**
|
|
5791
|
+
* OK
|
|
5792
|
+
*/
|
|
5793
|
+
200: Resource;
|
|
5794
|
+
};
|
|
5795
|
+
type GetResourceResponse = GetResourceResponses[keyof GetResourceResponses];
|
|
5527
5796
|
type GetSportAuthoritiesData = {
|
|
5528
5797
|
body?: never;
|
|
5529
5798
|
path?: never;
|
|
@@ -6139,6 +6408,23 @@ type UpdateUserSportProfileLevelResponse = UpdateUserSportProfileLevelResponses[
|
|
|
6139
6408
|
|
|
6140
6409
|
declare const client: Client;
|
|
6141
6410
|
|
|
6411
|
+
declare const AddressSchema: {
|
|
6412
|
+
readonly properties: {
|
|
6413
|
+
readonly city: {
|
|
6414
|
+
readonly type: "string";
|
|
6415
|
+
};
|
|
6416
|
+
readonly country: {
|
|
6417
|
+
readonly type: "string";
|
|
6418
|
+
};
|
|
6419
|
+
readonly street: {
|
|
6420
|
+
readonly type: "string";
|
|
6421
|
+
};
|
|
6422
|
+
readonly zip: {
|
|
6423
|
+
readonly type: "string";
|
|
6424
|
+
};
|
|
6425
|
+
};
|
|
6426
|
+
readonly type: "object";
|
|
6427
|
+
};
|
|
6142
6428
|
declare const AuthorSchema: {
|
|
6143
6429
|
readonly properties: {
|
|
6144
6430
|
readonly type: {
|
|
@@ -6398,22 +6684,59 @@ declare const ExternalServiceSchema: {
|
|
|
6398
6684
|
};
|
|
6399
6685
|
declare const FacilitySchema: {
|
|
6400
6686
|
readonly properties: {
|
|
6401
|
-
readonly
|
|
6687
|
+
readonly active: {
|
|
6688
|
+
readonly type: "boolean";
|
|
6689
|
+
};
|
|
6690
|
+
readonly address: {
|
|
6691
|
+
readonly $ref: "#/components/schemas/Address";
|
|
6692
|
+
};
|
|
6693
|
+
readonly bookable: {
|
|
6694
|
+
readonly type: "boolean";
|
|
6695
|
+
};
|
|
6696
|
+
readonly currency: {
|
|
6697
|
+
readonly type: "string";
|
|
6698
|
+
};
|
|
6699
|
+
readonly description: {
|
|
6700
|
+
readonly type: "string";
|
|
6701
|
+
};
|
|
6702
|
+
readonly email: {
|
|
6703
|
+
readonly format: "email";
|
|
6402
6704
|
readonly type: "string";
|
|
6403
6705
|
};
|
|
6404
6706
|
readonly id: {
|
|
6405
|
-
readonly
|
|
6707
|
+
readonly type: "integer";
|
|
6708
|
+
};
|
|
6709
|
+
readonly logo_url: {
|
|
6710
|
+
readonly format: "uri";
|
|
6406
6711
|
readonly type: "string";
|
|
6407
6712
|
};
|
|
6408
|
-
readonly
|
|
6409
|
-
readonly format: "date-time";
|
|
6713
|
+
readonly name: {
|
|
6410
6714
|
readonly type: "string";
|
|
6411
6715
|
};
|
|
6412
|
-
readonly
|
|
6716
|
+
readonly phone_number: {
|
|
6717
|
+
readonly type: "string";
|
|
6718
|
+
};
|
|
6719
|
+
readonly position: {
|
|
6720
|
+
readonly $ref: "#/components/schemas/Position";
|
|
6721
|
+
};
|
|
6722
|
+
readonly resource_types: {
|
|
6723
|
+
readonly items: {
|
|
6724
|
+
readonly type: "string";
|
|
6725
|
+
};
|
|
6726
|
+
readonly type: "array";
|
|
6727
|
+
};
|
|
6728
|
+
readonly sports: {
|
|
6729
|
+
readonly items: {
|
|
6730
|
+
readonly type: "string";
|
|
6731
|
+
};
|
|
6732
|
+
readonly type: "array";
|
|
6733
|
+
};
|
|
6734
|
+
readonly website: {
|
|
6735
|
+
readonly format: "uri";
|
|
6413
6736
|
readonly type: "string";
|
|
6414
6737
|
};
|
|
6415
6738
|
};
|
|
6416
|
-
readonly required: readonly ["id"];
|
|
6739
|
+
readonly required: readonly ["id", "name", "logo_url", "address", "position", "resource_types"];
|
|
6417
6740
|
readonly type: "object";
|
|
6418
6741
|
};
|
|
6419
6742
|
declare const FacilityListSchema: {
|
|
@@ -6424,11 +6747,11 @@ declare const FacilityListSchema: {
|
|
|
6424
6747
|
};
|
|
6425
6748
|
readonly type: "array";
|
|
6426
6749
|
};
|
|
6427
|
-
readonly
|
|
6428
|
-
readonly $ref: "#/components/schemas/
|
|
6750
|
+
readonly result_set: {
|
|
6751
|
+
readonly $ref: "#/components/schemas/pkgOpenapiSharedOffsetPaginatedResultSet";
|
|
6429
6752
|
};
|
|
6430
6753
|
};
|
|
6431
|
-
readonly required: readonly ["
|
|
6754
|
+
readonly required: readonly ["result_set", "items"];
|
|
6432
6755
|
readonly type: "object";
|
|
6433
6756
|
};
|
|
6434
6757
|
declare const FacilityMessagePayloadSchema: {
|
|
@@ -7278,46 +7601,20 @@ declare const PaginationMetaSchema: {
|
|
|
7278
7601
|
readonly type: "object";
|
|
7279
7602
|
};
|
|
7280
7603
|
declare const ParticipantDetailSchema: {
|
|
7281
|
-
readonly
|
|
7282
|
-
|
|
7604
|
+
readonly description: "Player-facing participant row with join timestamp. Tagged union over\nPUBLIC and PRIVATE variants — see ParticipantSummary.\n";
|
|
7605
|
+
readonly oneOf: readonly [{
|
|
7606
|
+
readonly $ref: "#/components/schemas/PublicParticipantDetail";
|
|
7283
7607
|
}, {
|
|
7284
|
-
readonly
|
|
7285
|
-
readonly joined_at: {
|
|
7286
|
-
readonly format: "date-time";
|
|
7287
|
-
readonly type: "string";
|
|
7288
|
-
};
|
|
7289
|
-
};
|
|
7290
|
-
readonly required: readonly ["joined_at"];
|
|
7291
|
-
readonly type: "object";
|
|
7608
|
+
readonly $ref: "#/components/schemas/PrivateParticipantDetail";
|
|
7292
7609
|
}];
|
|
7293
|
-
readonly description: "Participant with join timestamp. Extends ParticipantSummary.";
|
|
7294
7610
|
};
|
|
7295
7611
|
declare const ParticipantSummarySchema: {
|
|
7296
|
-
readonly
|
|
7297
|
-
|
|
7298
|
-
|
|
7299
|
-
|
|
7300
|
-
|
|
7301
|
-
|
|
7302
|
-
readonly nullable: true;
|
|
7303
|
-
readonly type: "string";
|
|
7304
|
-
};
|
|
7305
|
-
readonly level: {
|
|
7306
|
-
readonly nullable: true;
|
|
7307
|
-
readonly type: "string";
|
|
7308
|
-
};
|
|
7309
|
-
readonly profile_image_url: {
|
|
7310
|
-
readonly nullable: true;
|
|
7311
|
-
readonly type: "string";
|
|
7312
|
-
};
|
|
7313
|
-
readonly user_id: {
|
|
7314
|
-
readonly format: "uuid";
|
|
7315
|
-
readonly nullable: true;
|
|
7316
|
-
readonly type: "string";
|
|
7317
|
-
};
|
|
7318
|
-
};
|
|
7319
|
-
readonly required: readonly ["user_id", "first_name", "last_name"];
|
|
7320
|
-
readonly type: "object";
|
|
7612
|
+
readonly description: "Player-facing participant row. Tagged union over PUBLIC (full data) and\nPRIVATE (placeholder for users with searchable=false), distinguished by\nthe `kind` property on each variant. See\nopenspec/specs/match-participant-privacy/spec.md in team-discovery-docs.\n";
|
|
7613
|
+
readonly oneOf: readonly [{
|
|
7614
|
+
readonly $ref: "#/components/schemas/PublicParticipantSummary";
|
|
7615
|
+
}, {
|
|
7616
|
+
readonly $ref: "#/components/schemas/PrivateParticipantSummary";
|
|
7617
|
+
}];
|
|
7321
7618
|
};
|
|
7322
7619
|
declare const PatchCommentRequestSchema: {
|
|
7323
7620
|
readonly properties: {
|
|
@@ -7384,6 +7681,20 @@ declare const PaymentDetailsSchema: {
|
|
|
7384
7681
|
readonly required: readonly ["id"];
|
|
7385
7682
|
readonly type: "object";
|
|
7386
7683
|
};
|
|
7684
|
+
declare const PositionSchema: {
|
|
7685
|
+
readonly properties: {
|
|
7686
|
+
readonly latitude: {
|
|
7687
|
+
readonly format: "double";
|
|
7688
|
+
readonly type: "number";
|
|
7689
|
+
};
|
|
7690
|
+
readonly longitude: {
|
|
7691
|
+
readonly format: "double";
|
|
7692
|
+
readonly type: "number";
|
|
7693
|
+
};
|
|
7694
|
+
};
|
|
7695
|
+
readonly required: readonly ["latitude", "longitude"];
|
|
7696
|
+
readonly type: "object";
|
|
7697
|
+
};
|
|
7387
7698
|
declare const PostSchema: {
|
|
7388
7699
|
readonly properties: {
|
|
7389
7700
|
readonly author: {
|
|
@@ -7488,6 +7799,112 @@ declare const PreferencesResponseSchema: {
|
|
|
7488
7799
|
readonly required: readonly ["items"];
|
|
7489
7800
|
readonly type: "object";
|
|
7490
7801
|
};
|
|
7802
|
+
declare const PrivateParticipantDetailSchema: {
|
|
7803
|
+
readonly description: "PRIVATE variant of ParticipantDetail. Carries only kind, participation_id, and joined_at.";
|
|
7804
|
+
readonly properties: {
|
|
7805
|
+
readonly joined_at: {
|
|
7806
|
+
readonly format: "date-time";
|
|
7807
|
+
readonly type: "string";
|
|
7808
|
+
};
|
|
7809
|
+
readonly kind: {
|
|
7810
|
+
readonly enum: readonly ["PRIVATE"];
|
|
7811
|
+
readonly type: "string";
|
|
7812
|
+
};
|
|
7813
|
+
readonly participation_id: {
|
|
7814
|
+
readonly type: "string";
|
|
7815
|
+
};
|
|
7816
|
+
};
|
|
7817
|
+
readonly required: readonly ["kind", "participation_id", "joined_at"];
|
|
7818
|
+
readonly type: "object";
|
|
7819
|
+
};
|
|
7820
|
+
declare const PrivateParticipantSummarySchema: {
|
|
7821
|
+
readonly description: "Minimal placeholder for a participant whose User.searchable is false. Carries only kind and participation_id — no PII.";
|
|
7822
|
+
readonly properties: {
|
|
7823
|
+
readonly kind: {
|
|
7824
|
+
readonly enum: readonly ["PRIVATE"];
|
|
7825
|
+
readonly type: "string";
|
|
7826
|
+
};
|
|
7827
|
+
readonly participation_id: {
|
|
7828
|
+
readonly type: "string";
|
|
7829
|
+
};
|
|
7830
|
+
};
|
|
7831
|
+
readonly required: readonly ["kind", "participation_id"];
|
|
7832
|
+
readonly type: "object";
|
|
7833
|
+
};
|
|
7834
|
+
declare const PublicParticipantDetailSchema: {
|
|
7835
|
+
readonly properties: {
|
|
7836
|
+
readonly first_name: {
|
|
7837
|
+
readonly nullable: true;
|
|
7838
|
+
readonly type: "string";
|
|
7839
|
+
};
|
|
7840
|
+
readonly joined_at: {
|
|
7841
|
+
readonly format: "date-time";
|
|
7842
|
+
readonly type: "string";
|
|
7843
|
+
};
|
|
7844
|
+
readonly kind: {
|
|
7845
|
+
readonly enum: readonly ["PUBLIC"];
|
|
7846
|
+
readonly type: "string";
|
|
7847
|
+
};
|
|
7848
|
+
readonly last_name: {
|
|
7849
|
+
readonly nullable: true;
|
|
7850
|
+
readonly type: "string";
|
|
7851
|
+
};
|
|
7852
|
+
readonly level: {
|
|
7853
|
+
readonly nullable: true;
|
|
7854
|
+
readonly type: "string";
|
|
7855
|
+
};
|
|
7856
|
+
readonly participation_id: {
|
|
7857
|
+
readonly type: "string";
|
|
7858
|
+
};
|
|
7859
|
+
readonly profile_image_url: {
|
|
7860
|
+
readonly nullable: true;
|
|
7861
|
+
readonly type: "string";
|
|
7862
|
+
};
|
|
7863
|
+
readonly user_id: {
|
|
7864
|
+
readonly format: "uuid";
|
|
7865
|
+
readonly nullable: true;
|
|
7866
|
+
readonly type: "string";
|
|
7867
|
+
};
|
|
7868
|
+
};
|
|
7869
|
+
readonly required: readonly ["kind", "participation_id", "joined_at"];
|
|
7870
|
+
readonly type: "object";
|
|
7871
|
+
};
|
|
7872
|
+
declare const PublicParticipantSummarySchema: {
|
|
7873
|
+
readonly properties: {
|
|
7874
|
+
readonly first_name: {
|
|
7875
|
+
readonly nullable: true;
|
|
7876
|
+
readonly type: "string";
|
|
7877
|
+
};
|
|
7878
|
+
readonly kind: {
|
|
7879
|
+
readonly enum: readonly ["PUBLIC"];
|
|
7880
|
+
readonly type: "string";
|
|
7881
|
+
};
|
|
7882
|
+
readonly last_name: {
|
|
7883
|
+
readonly nullable: true;
|
|
7884
|
+
readonly type: "string";
|
|
7885
|
+
};
|
|
7886
|
+
readonly level: {
|
|
7887
|
+
readonly nullable: true;
|
|
7888
|
+
readonly type: "string";
|
|
7889
|
+
};
|
|
7890
|
+
readonly participation_id: {
|
|
7891
|
+
readonly description: "Opaque per-row identifier sourced from Participation.id.";
|
|
7892
|
+
readonly type: "string";
|
|
7893
|
+
};
|
|
7894
|
+
readonly profile_image_url: {
|
|
7895
|
+
readonly nullable: true;
|
|
7896
|
+
readonly type: "string";
|
|
7897
|
+
};
|
|
7898
|
+
readonly user_id: {
|
|
7899
|
+
readonly description: "Matchi user ID. Null for guest customers (no Matchi user).";
|
|
7900
|
+
readonly format: "uuid";
|
|
7901
|
+
readonly nullable: true;
|
|
7902
|
+
readonly type: "string";
|
|
7903
|
+
};
|
|
7904
|
+
};
|
|
7905
|
+
readonly required: readonly ["kind", "participation_id"];
|
|
7906
|
+
readonly type: "object";
|
|
7907
|
+
};
|
|
7491
7908
|
declare const RecommendationSchema: {
|
|
7492
7909
|
readonly description: "A personalized recommendation. The common fields describe what, where, and when. Use type + id to navigate to the specific entity.\n";
|
|
7493
7910
|
readonly properties: {
|
|
@@ -7647,6 +8064,35 @@ declare const RegisterDeviceRequestSchema: {
|
|
|
7647
8064
|
readonly required: readonly ["fcm_token", "os", "app_version"];
|
|
7648
8065
|
readonly type: "object";
|
|
7649
8066
|
};
|
|
8067
|
+
declare const ResourceSchema: {
|
|
8068
|
+
readonly properties: {
|
|
8069
|
+
readonly description: {
|
|
8070
|
+
readonly type: "string";
|
|
8071
|
+
};
|
|
8072
|
+
readonly facility_id: {
|
|
8073
|
+
readonly type: "integer";
|
|
8074
|
+
};
|
|
8075
|
+
readonly id: {
|
|
8076
|
+
readonly type: "integer";
|
|
8077
|
+
};
|
|
8078
|
+
readonly indoor: {
|
|
8079
|
+
readonly type: "boolean";
|
|
8080
|
+
};
|
|
8081
|
+
readonly name: {
|
|
8082
|
+
readonly type: "string";
|
|
8083
|
+
};
|
|
8084
|
+
readonly sport: {
|
|
8085
|
+
readonly description: "Sport type. Available sports are served from the /config endpoint.";
|
|
8086
|
+
readonly type: "string";
|
|
8087
|
+
};
|
|
8088
|
+
readonly surface: {
|
|
8089
|
+
readonly description: "Court surface type. Available surfaces are served from the /config endpoint.";
|
|
8090
|
+
readonly type: "string";
|
|
8091
|
+
};
|
|
8092
|
+
};
|
|
8093
|
+
readonly required: readonly ["id", "name", "facility_id"];
|
|
8094
|
+
readonly type: "object";
|
|
8095
|
+
};
|
|
7650
8096
|
declare const SourceSchema: {
|
|
7651
8097
|
readonly enum: readonly ["FACILITY", "COMMUNITY"];
|
|
7652
8098
|
readonly type: "string";
|
|
@@ -8013,6 +8459,13 @@ declare const pkgOpenapiSharedErrorsSchema: {
|
|
|
8013
8459
|
readonly maxItems: 1000;
|
|
8014
8460
|
readonly type: "array";
|
|
8015
8461
|
};
|
|
8462
|
+
declare const pkgOpenapiSharedFilterableStringSchema: {
|
|
8463
|
+
readonly description: "String filter in PostgREST format: `operator.value`\n\n**Allowed operators:** eq, like, ilike, is, in\n**Negation:** Prefix with `not.` (e.g., `not.eq.value`)\n\n**Supported use cases:**\n- International names: Any Unicode letters (Chinese, Arabic, Cyrillic, etc.)\n- Names with apostrophes: `eq.O'Brien`, `eq.D'Angelo`\n- Email addresses: `eq.user@example.com`\n- Nordic characters: `eq.København`, `like.träning*`\n- Wildcards: `like.train*`, `ilike.*search*`\n- Special chars: dots, hyphens, underscores, @, +, spaces, etc.\n- Lists: `in.(value1,value2,value3)` or `not.in.(value1,value2,value3)`\n\nExamples:\n- `eq.training` - Exact match\n- `eq.O'Brien` - Name with apostrophe\n- `eq.user@example.com` - Email address\n- `eq.名前` - Japanese characters\n- `eq.Björk` - Nordic characters\n- `like.münchen*` - German with wildcard\n- `ilike.*josé*` - Spanish name search\n- `is.null` - Is NULL\n- `not.eq.value` - Not equal\n- `in.(value1,value2,value3)` - List of values\n- `not.in.(value1,value2,value3)` - Not in list\n";
|
|
8464
|
+
readonly example: "eq.training";
|
|
8465
|
+
readonly maxLength: 500;
|
|
8466
|
+
readonly pattern: "^(eq|like|ilike|not\\.(eq|like|ilike))\\..+$|^(is|not\\.is)\\.null$|^(in|not\\.in)\\.\\(.+(,.+)*\\)$";
|
|
8467
|
+
readonly type: "string";
|
|
8468
|
+
};
|
|
8016
8469
|
declare const pkgOpenapiSharedOffsetPaginatedResultSetSchema: {
|
|
8017
8470
|
readonly description: "Metadata about the offset based pagination for the result. This information is coupled with the OffsetParam and OffsetLimitParam. Intended to be used as the `meta` field in a list response, next to an `items` array field containing the data.\n";
|
|
8018
8471
|
readonly properties: {
|
|
@@ -8067,6 +8520,7 @@ declare const pkgOpenapiSharedProblemDetailsSchema: {
|
|
|
8067
8520
|
readonly type: "object";
|
|
8068
8521
|
};
|
|
8069
8522
|
|
|
8523
|
+
declare const schemas_gen_AddressSchema: typeof AddressSchema;
|
|
8070
8524
|
declare const schemas_gen_AuthorSchema: typeof AuthorSchema;
|
|
8071
8525
|
declare const schemas_gen_ChannelsSchema: typeof ChannelsSchema;
|
|
8072
8526
|
declare const schemas_gen_CommentListResponseSchema: typeof CommentListResponseSchema;
|
|
@@ -8130,16 +8584,22 @@ declare const schemas_gen_PatchCommentRequestSchema: typeof PatchCommentRequestS
|
|
|
8130
8584
|
declare const schemas_gen_PatchPostRequestSchema: typeof PatchPostRequestSchema;
|
|
8131
8585
|
declare const schemas_gen_PaymentCommandSchema: typeof PaymentCommandSchema;
|
|
8132
8586
|
declare const schemas_gen_PaymentDetailsSchema: typeof PaymentDetailsSchema;
|
|
8587
|
+
declare const schemas_gen_PositionSchema: typeof PositionSchema;
|
|
8133
8588
|
declare const schemas_gen_PostLinkSchema: typeof PostLinkSchema;
|
|
8134
8589
|
declare const schemas_gen_PostListResponseSchema: typeof PostListResponseSchema;
|
|
8135
8590
|
declare const schemas_gen_PostSchema: typeof PostSchema;
|
|
8136
8591
|
declare const schemas_gen_PostingPermissionSchema: typeof PostingPermissionSchema;
|
|
8137
8592
|
declare const schemas_gen_PreferenceSchema: typeof PreferenceSchema;
|
|
8138
8593
|
declare const schemas_gen_PreferencesResponseSchema: typeof PreferencesResponseSchema;
|
|
8594
|
+
declare const schemas_gen_PrivateParticipantDetailSchema: typeof PrivateParticipantDetailSchema;
|
|
8595
|
+
declare const schemas_gen_PrivateParticipantSummarySchema: typeof PrivateParticipantSummarySchema;
|
|
8596
|
+
declare const schemas_gen_PublicParticipantDetailSchema: typeof PublicParticipantDetailSchema;
|
|
8597
|
+
declare const schemas_gen_PublicParticipantSummarySchema: typeof PublicParticipantSummarySchema;
|
|
8139
8598
|
declare const schemas_gen_RecommendationListSchema: typeof RecommendationListSchema;
|
|
8140
8599
|
declare const schemas_gen_RecommendationSchema: typeof RecommendationSchema;
|
|
8141
8600
|
declare const schemas_gen_RefundPolicySchema: typeof RefundPolicySchema;
|
|
8142
8601
|
declare const schemas_gen_RegisterDeviceRequestSchema: typeof RegisterDeviceRequestSchema;
|
|
8602
|
+
declare const schemas_gen_ResourceSchema: typeof ResourceSchema;
|
|
8143
8603
|
declare const schemas_gen_SourceSchema: typeof SourceSchema;
|
|
8144
8604
|
declare const schemas_gen_SportAuthoritiesResponseSchema: typeof SportAuthoritiesResponseSchema;
|
|
8145
8605
|
declare const schemas_gen_SportAuthoritySchema: typeof SportAuthoritySchema;
|
|
@@ -8160,10 +8620,11 @@ declare const schemas_gen_VisibilitySchema: typeof VisibilitySchema;
|
|
|
8160
8620
|
declare const schemas_gen_pkgOpenapiSharedCursorPaginatedResultSetSchema: typeof pkgOpenapiSharedCursorPaginatedResultSetSchema;
|
|
8161
8621
|
declare const schemas_gen_pkgOpenapiSharedErrorSchema: typeof pkgOpenapiSharedErrorSchema;
|
|
8162
8622
|
declare const schemas_gen_pkgOpenapiSharedErrorsSchema: typeof pkgOpenapiSharedErrorsSchema;
|
|
8623
|
+
declare const schemas_gen_pkgOpenapiSharedFilterableStringSchema: typeof pkgOpenapiSharedFilterableStringSchema;
|
|
8163
8624
|
declare const schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema: typeof pkgOpenapiSharedOffsetPaginatedResultSetSchema;
|
|
8164
8625
|
declare const schemas_gen_pkgOpenapiSharedProblemDetailsSchema: typeof pkgOpenapiSharedProblemDetailsSchema;
|
|
8165
8626
|
declare namespace schemas_gen {
|
|
8166
|
-
export { schemas_gen_AuthorSchema as AuthorSchema, schemas_gen_ChannelsSchema as ChannelsSchema, schemas_gen_CommentListResponseSchema as CommentListResponseSchema, schemas_gen_CommentSchema as CommentSchema, schemas_gen_CommunityItemSchema as CommunityItemSchema, schemas_gen_CommunityListResponseSchema as CommunityListResponseSchema, schemas_gen_CommunityPayloadSchema as CommunityPayloadSchema, schemas_gen_CreateCommentRequestSchema as CreateCommentRequestSchema, schemas_gen_CreateMatchParticipationRequestSchema as CreateMatchParticipationRequestSchema, schemas_gen_CreatePostRequestSchema as CreatePostRequestSchema, schemas_gen_CreateSportProfileLevelRequestSchema as CreateSportProfileLevelRequestSchema, schemas_gen_CreateSportProfileRequestSchema as CreateSportProfileRequestSchema, schemas_gen_ExternalServiceSchema as ExternalServiceSchema, schemas_gen_FacilityListSchema as FacilityListSchema, schemas_gen_FacilityMessagePayloadSchema as FacilityMessagePayloadSchema, schemas_gen_FacilityOfferConditionActivitiesSchema as FacilityOfferConditionActivitiesSchema, schemas_gen_FacilityOfferConditionCourtsSchema as FacilityOfferConditionCourtsSchema, schemas_gen_FacilityOfferConditionDateSchema as FacilityOfferConditionDateSchema, schemas_gen_FacilityOfferConditionHoursinadvanceSchema as FacilityOfferConditionHoursinadvanceSchema, schemas_gen_FacilityOfferConditionSchema as FacilityOfferConditionSchema, schemas_gen_FacilityOfferConditionTimeSchema as FacilityOfferConditionTimeSchema, schemas_gen_FacilityOfferConditionWeekdaysSchema as FacilityOfferConditionWeekdaysSchema, schemas_gen_FacilityOfferListSchema as FacilityOfferListSchema, schemas_gen_FacilityOfferOrderSchema as FacilityOfferOrderSchema, schemas_gen_FacilityOfferSchema as FacilityOfferSchema, schemas_gen_FacilityPermissionSchema as FacilityPermissionSchema, schemas_gen_FacilityPermissionsResponseSchema as FacilityPermissionsResponseSchema, schemas_gen_FacilityPunchCardDataSchema as FacilityPunchCardDataSchema, schemas_gen_FacilitySchema as FacilitySchema, schemas_gen_FacilityValueCardDataSchema as FacilityValueCardDataSchema, schemas_gen_GenderSchema as GenderSchema, schemas_gen_LinkTypeSchema as LinkTypeSchema, schemas_gen_MatchBasePriceSchema as MatchBasePriceSchema, schemas_gen_MatchCourtSchema as MatchCourtSchema, schemas_gen_MatchDetailSchema as MatchDetailSchema, schemas_gen_MatchEventSchema as MatchEventSchema, schemas_gen_MatchListSchema as MatchListSchema, schemas_gen_MatchOccasionDetailSchema as MatchOccasionDetailSchema, schemas_gen_MatchOccasionSchema as MatchOccasionSchema, schemas_gen_MatchParticipantsSchema as MatchParticipantsSchema, schemas_gen_MatchPriceListEntrySchema as MatchPriceListEntrySchema, schemas_gen_MatchSchema as MatchSchema, schemas_gen_MatchStatusSchema as MatchStatusSchema, schemas_gen_MatchUserPriceSchema as MatchUserPriceSchema, schemas_gen_MemberListResponseSchema as MemberListResponseSchema, schemas_gen_MemberRelationSchema as MemberRelationSchema, schemas_gen_MemberSchema as MemberSchema, schemas_gen_MembershipStatusSchema as MembershipStatusSchema, schemas_gen_MetadataSchema as MetadataSchema, schemas_gen_NotificationPayloadSchema as NotificationPayloadSchema, schemas_gen_NotificationRequestBodySchema as NotificationRequestBodySchema, schemas_gen_NotificationSchema as NotificationSchema, schemas_gen_NotificationsFilterSchema as NotificationsFilterSchema, schemas_gen_NotificationsPaginatedResponseSchema as NotificationsPaginatedResponseSchema, schemas_gen_NotificationsSummarySchema as NotificationsSummarySchema, schemas_gen_OffsetPaginatedResultSetSchema as OffsetPaginatedResultSetSchema, schemas_gen_PaginationMetaSchema as PaginationMetaSchema, schemas_gen_ParticipantDetailSchema as ParticipantDetailSchema, schemas_gen_ParticipantSummarySchema as ParticipantSummarySchema, schemas_gen_PatchCommentRequestSchema as PatchCommentRequestSchema, schemas_gen_PatchPostRequestSchema as PatchPostRequestSchema, schemas_gen_PaymentCommandSchema as PaymentCommandSchema, schemas_gen_PaymentDetailsSchema as PaymentDetailsSchema, schemas_gen_PostLinkSchema as PostLinkSchema, schemas_gen_PostListResponseSchema as PostListResponseSchema, schemas_gen_PostSchema as PostSchema, schemas_gen_PostingPermissionSchema as PostingPermissionSchema, schemas_gen_PreferenceSchema as PreferenceSchema, schemas_gen_PreferencesResponseSchema as PreferencesResponseSchema, schemas_gen_RecommendationListSchema as RecommendationListSchema, schemas_gen_RecommendationSchema as RecommendationSchema, schemas_gen_RefundPolicySchema as RefundPolicySchema, schemas_gen_RegisterDeviceRequestSchema as RegisterDeviceRequestSchema, schemas_gen_SourceSchema as SourceSchema, schemas_gen_SportAuthoritiesResponseSchema as SportAuthoritiesResponseSchema, schemas_gen_SportAuthoritySchema as SportAuthoritySchema, schemas_gen_SportLevelSchema as SportLevelSchema, schemas_gen_SportProfileAttributeSchema as SportProfileAttributeSchema, schemas_gen_SportProfileLevelSchema as SportProfileLevelSchema, schemas_gen_SportProfileSchema as SportProfileSchema, schemas_gen_SportProfilesResponseSchema as SportProfilesResponseSchema, schemas_gen_TopicSchema as TopicSchema, schemas_gen_UpdatePreferencesRequestBodySchema as UpdatePreferencesRequestBodySchema, schemas_gen_UpdateSportProfileLevelRequestSchema as UpdateSportProfileLevelRequestSchema, schemas_gen_UpdateUsersProfilesRequestSchema as UpdateUsersProfilesRequestSchema, schemas_gen_UserParticipationStatusSchema as UserParticipationStatusSchema, schemas_gen_UserProfileSchema as UserProfileSchema, schemas_gen_UserRelationSchema as UserRelationSchema, schemas_gen_UsersProfilesPaginatedResponseSchema as UsersProfilesPaginatedResponseSchema, schemas_gen_VisibilitySchema as VisibilitySchema, schemas_gen_pkgOpenapiSharedCursorPaginatedResultSetSchema as pkgOpenapiSharedCursorPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedErrorSchema as pkgOpenapiSharedErrorSchema, schemas_gen_pkgOpenapiSharedErrorsSchema as pkgOpenapiSharedErrorsSchema, schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema as pkgOpenapiSharedOffsetPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedProblemDetailsSchema as pkgOpenapiSharedProblemDetailsSchema };
|
|
8627
|
+
export { schemas_gen_AddressSchema as AddressSchema, schemas_gen_AuthorSchema as AuthorSchema, schemas_gen_ChannelsSchema as ChannelsSchema, schemas_gen_CommentListResponseSchema as CommentListResponseSchema, schemas_gen_CommentSchema as CommentSchema, schemas_gen_CommunityItemSchema as CommunityItemSchema, schemas_gen_CommunityListResponseSchema as CommunityListResponseSchema, schemas_gen_CommunityPayloadSchema as CommunityPayloadSchema, schemas_gen_CreateCommentRequestSchema as CreateCommentRequestSchema, schemas_gen_CreateMatchParticipationRequestSchema as CreateMatchParticipationRequestSchema, schemas_gen_CreatePostRequestSchema as CreatePostRequestSchema, schemas_gen_CreateSportProfileLevelRequestSchema as CreateSportProfileLevelRequestSchema, schemas_gen_CreateSportProfileRequestSchema as CreateSportProfileRequestSchema, schemas_gen_ExternalServiceSchema as ExternalServiceSchema, schemas_gen_FacilityListSchema as FacilityListSchema, schemas_gen_FacilityMessagePayloadSchema as FacilityMessagePayloadSchema, schemas_gen_FacilityOfferConditionActivitiesSchema as FacilityOfferConditionActivitiesSchema, schemas_gen_FacilityOfferConditionCourtsSchema as FacilityOfferConditionCourtsSchema, schemas_gen_FacilityOfferConditionDateSchema as FacilityOfferConditionDateSchema, schemas_gen_FacilityOfferConditionHoursinadvanceSchema as FacilityOfferConditionHoursinadvanceSchema, schemas_gen_FacilityOfferConditionSchema as FacilityOfferConditionSchema, schemas_gen_FacilityOfferConditionTimeSchema as FacilityOfferConditionTimeSchema, schemas_gen_FacilityOfferConditionWeekdaysSchema as FacilityOfferConditionWeekdaysSchema, schemas_gen_FacilityOfferListSchema as FacilityOfferListSchema, schemas_gen_FacilityOfferOrderSchema as FacilityOfferOrderSchema, schemas_gen_FacilityOfferSchema as FacilityOfferSchema, schemas_gen_FacilityPermissionSchema as FacilityPermissionSchema, schemas_gen_FacilityPermissionsResponseSchema as FacilityPermissionsResponseSchema, schemas_gen_FacilityPunchCardDataSchema as FacilityPunchCardDataSchema, schemas_gen_FacilitySchema as FacilitySchema, schemas_gen_FacilityValueCardDataSchema as FacilityValueCardDataSchema, schemas_gen_GenderSchema as GenderSchema, schemas_gen_LinkTypeSchema as LinkTypeSchema, schemas_gen_MatchBasePriceSchema as MatchBasePriceSchema, schemas_gen_MatchCourtSchema as MatchCourtSchema, schemas_gen_MatchDetailSchema as MatchDetailSchema, schemas_gen_MatchEventSchema as MatchEventSchema, schemas_gen_MatchListSchema as MatchListSchema, schemas_gen_MatchOccasionDetailSchema as MatchOccasionDetailSchema, schemas_gen_MatchOccasionSchema as MatchOccasionSchema, schemas_gen_MatchParticipantsSchema as MatchParticipantsSchema, schemas_gen_MatchPriceListEntrySchema as MatchPriceListEntrySchema, schemas_gen_MatchSchema as MatchSchema, schemas_gen_MatchStatusSchema as MatchStatusSchema, schemas_gen_MatchUserPriceSchema as MatchUserPriceSchema, schemas_gen_MemberListResponseSchema as MemberListResponseSchema, schemas_gen_MemberRelationSchema as MemberRelationSchema, schemas_gen_MemberSchema as MemberSchema, schemas_gen_MembershipStatusSchema as MembershipStatusSchema, schemas_gen_MetadataSchema as MetadataSchema, schemas_gen_NotificationPayloadSchema as NotificationPayloadSchema, schemas_gen_NotificationRequestBodySchema as NotificationRequestBodySchema, schemas_gen_NotificationSchema as NotificationSchema, schemas_gen_NotificationsFilterSchema as NotificationsFilterSchema, schemas_gen_NotificationsPaginatedResponseSchema as NotificationsPaginatedResponseSchema, schemas_gen_NotificationsSummarySchema as NotificationsSummarySchema, schemas_gen_OffsetPaginatedResultSetSchema as OffsetPaginatedResultSetSchema, schemas_gen_PaginationMetaSchema as PaginationMetaSchema, schemas_gen_ParticipantDetailSchema as ParticipantDetailSchema, schemas_gen_ParticipantSummarySchema as ParticipantSummarySchema, schemas_gen_PatchCommentRequestSchema as PatchCommentRequestSchema, schemas_gen_PatchPostRequestSchema as PatchPostRequestSchema, schemas_gen_PaymentCommandSchema as PaymentCommandSchema, schemas_gen_PaymentDetailsSchema as PaymentDetailsSchema, schemas_gen_PositionSchema as PositionSchema, schemas_gen_PostLinkSchema as PostLinkSchema, schemas_gen_PostListResponseSchema as PostListResponseSchema, schemas_gen_PostSchema as PostSchema, schemas_gen_PostingPermissionSchema as PostingPermissionSchema, schemas_gen_PreferenceSchema as PreferenceSchema, schemas_gen_PreferencesResponseSchema as PreferencesResponseSchema, schemas_gen_PrivateParticipantDetailSchema as PrivateParticipantDetailSchema, schemas_gen_PrivateParticipantSummarySchema as PrivateParticipantSummarySchema, schemas_gen_PublicParticipantDetailSchema as PublicParticipantDetailSchema, schemas_gen_PublicParticipantSummarySchema as PublicParticipantSummarySchema, schemas_gen_RecommendationListSchema as RecommendationListSchema, schemas_gen_RecommendationSchema as RecommendationSchema, schemas_gen_RefundPolicySchema as RefundPolicySchema, schemas_gen_RegisterDeviceRequestSchema as RegisterDeviceRequestSchema, schemas_gen_ResourceSchema as ResourceSchema, schemas_gen_SourceSchema as SourceSchema, schemas_gen_SportAuthoritiesResponseSchema as SportAuthoritiesResponseSchema, schemas_gen_SportAuthoritySchema as SportAuthoritySchema, schemas_gen_SportLevelSchema as SportLevelSchema, schemas_gen_SportProfileAttributeSchema as SportProfileAttributeSchema, schemas_gen_SportProfileLevelSchema as SportProfileLevelSchema, schemas_gen_SportProfileSchema as SportProfileSchema, schemas_gen_SportProfilesResponseSchema as SportProfilesResponseSchema, schemas_gen_TopicSchema as TopicSchema, schemas_gen_UpdatePreferencesRequestBodySchema as UpdatePreferencesRequestBodySchema, schemas_gen_UpdateSportProfileLevelRequestSchema as UpdateSportProfileLevelRequestSchema, schemas_gen_UpdateUsersProfilesRequestSchema as UpdateUsersProfilesRequestSchema, schemas_gen_UserParticipationStatusSchema as UserParticipationStatusSchema, schemas_gen_UserProfileSchema as UserProfileSchema, schemas_gen_UserRelationSchema as UserRelationSchema, schemas_gen_UsersProfilesPaginatedResponseSchema as UsersProfilesPaginatedResponseSchema, schemas_gen_VisibilitySchema as VisibilitySchema, schemas_gen_pkgOpenapiSharedCursorPaginatedResultSetSchema as pkgOpenapiSharedCursorPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedErrorSchema as pkgOpenapiSharedErrorSchema, schemas_gen_pkgOpenapiSharedErrorsSchema as pkgOpenapiSharedErrorsSchema, schemas_gen_pkgOpenapiSharedFilterableStringSchema as pkgOpenapiSharedFilterableStringSchema, schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema as pkgOpenapiSharedOffsetPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedProblemDetailsSchema as pkgOpenapiSharedProblemDetailsSchema };
|
|
8167
8628
|
}
|
|
8168
8629
|
|
|
8169
8630
|
type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
|
|
@@ -8263,6 +8724,18 @@ declare const deleteComment: <ThrowOnError extends boolean = false>(options: Opt
|
|
|
8263
8724
|
* Marks a comment as read by the authenticated player.
|
|
8264
8725
|
*/
|
|
8265
8726
|
declare const markCommentRead: <ThrowOnError extends boolean = false>(options: Options<MarkCommentReadData, ThrowOnError>) => RequestResult<MarkCommentReadResponses, MarkCommentReadErrors, ThrowOnError, "fields">;
|
|
8727
|
+
/**
|
|
8728
|
+
* List facilities
|
|
8729
|
+
*
|
|
8730
|
+
* Search and filter facilities
|
|
8731
|
+
*/
|
|
8732
|
+
declare const listFacilities: <ThrowOnError extends boolean = false>(options?: Options<ListFacilitiesData, ThrowOnError>) => RequestResult<ListFacilitiesResponses, ListFacilitiesErrors, ThrowOnError, "fields">;
|
|
8733
|
+
/**
|
|
8734
|
+
* Get facility details
|
|
8735
|
+
*
|
|
8736
|
+
* Retrieve details for a single facility
|
|
8737
|
+
*/
|
|
8738
|
+
declare const getFacility: <ThrowOnError extends boolean = false>(options: Options<GetFacilityData, ThrowOnError>) => RequestResult<GetFacilityResponses, GetFacilityErrors, ThrowOnError, "fields">;
|
|
8266
8739
|
/**
|
|
8267
8740
|
* List all offers for a facility
|
|
8268
8741
|
*
|
|
@@ -8275,6 +8748,12 @@ declare const listFacilityOffers: <ThrowOnError extends boolean = false>(options
|
|
|
8275
8748
|
* Will create a facility offer order and return the order object
|
|
8276
8749
|
*/
|
|
8277
8750
|
declare const createFacilityOfferOrder: <ThrowOnError extends boolean = false>(options: Options<CreateFacilityOfferOrderData, ThrowOnError>) => RequestResult<CreateFacilityOfferOrderResponses, CreateFacilityOfferOrderErrors, ThrowOnError, "fields">;
|
|
8751
|
+
/**
|
|
8752
|
+
* List facility resources
|
|
8753
|
+
*
|
|
8754
|
+
* Retrieve a list of resources (courts) for a facility
|
|
8755
|
+
*/
|
|
8756
|
+
declare const listFacilityResources: <ThrowOnError extends boolean = false>(options: Options<ListFacilityResourcesData, ThrowOnError>) => RequestResult<ListFacilityResourcesResponses, ListFacilityResourcesErrors, ThrowOnError, "fields">;
|
|
8278
8757
|
/**
|
|
8279
8758
|
* List matches
|
|
8280
8759
|
*
|
|
@@ -8352,6 +8831,12 @@ declare const getNotificationById: <ThrowOnError extends boolean = false>(option
|
|
|
8352
8831
|
* Update notification
|
|
8353
8832
|
*/
|
|
8354
8833
|
declare const updateNotification: <ThrowOnError extends boolean = false>(options: Options<UpdateNotificationData, ThrowOnError>) => RequestResult<UpdateNotificationResponses, UpdateNotificationErrors, ThrowOnError, "fields">;
|
|
8834
|
+
/**
|
|
8835
|
+
* Get resource details
|
|
8836
|
+
*
|
|
8837
|
+
* Retrieve details for a single resource (court)
|
|
8838
|
+
*/
|
|
8839
|
+
declare const getResource: <ThrowOnError extends boolean = false>(options: Options<GetResourceData, ThrowOnError>) => RequestResult<GetResourceResponses, GetResourceErrors, ThrowOnError, "fields">;
|
|
8355
8840
|
/**
|
|
8356
8841
|
* Get sport authorities
|
|
8357
8842
|
*
|
|
@@ -8769,6 +9254,92 @@ declare const deleteCommentMutation: (options?: Partial<Options<DeleteCommentDat
|
|
|
8769
9254
|
* Marks a comment as read by the authenticated player.
|
|
8770
9255
|
*/
|
|
8771
9256
|
declare const markCommentReadMutation: (options?: Partial<Options<MarkCommentReadData>>) => UseMutationOptions<MarkCommentReadResponse, MarkCommentReadError, Options<MarkCommentReadData>>;
|
|
9257
|
+
declare const listFacilitiesQueryKey: (options?: Options<ListFacilitiesData>) => [Pick<Options<ListFacilitiesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9258
|
+
_id: string;
|
|
9259
|
+
_infinite?: boolean;
|
|
9260
|
+
tags?: ReadonlyArray<string>;
|
|
9261
|
+
}];
|
|
9262
|
+
/**
|
|
9263
|
+
* List facilities
|
|
9264
|
+
*
|
|
9265
|
+
* Search and filter facilities
|
|
9266
|
+
*/
|
|
9267
|
+
declare const listFacilitiesOptions: (options?: Options<ListFacilitiesData>) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<FacilityList, PkgOpenapiSharedProblemDetails, FacilityList, [Pick<Options<ListFacilitiesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9268
|
+
_id: string;
|
|
9269
|
+
_infinite?: boolean;
|
|
9270
|
+
tags?: ReadonlyArray<string>;
|
|
9271
|
+
}]>, "queryFn"> & {
|
|
9272
|
+
queryFn?: _tanstack_react_query.QueryFunction<FacilityList, [Pick<Options<ListFacilitiesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9273
|
+
_id: string;
|
|
9274
|
+
_infinite?: boolean;
|
|
9275
|
+
tags?: ReadonlyArray<string>;
|
|
9276
|
+
}], never> | undefined;
|
|
9277
|
+
} & {
|
|
9278
|
+
queryKey: [Pick<Options<ListFacilitiesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9279
|
+
_id: string;
|
|
9280
|
+
_infinite?: boolean;
|
|
9281
|
+
tags?: ReadonlyArray<string>;
|
|
9282
|
+
}] & {
|
|
9283
|
+
[dataTagSymbol]: FacilityList;
|
|
9284
|
+
[dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
|
|
9285
|
+
};
|
|
9286
|
+
};
|
|
9287
|
+
declare const listFacilitiesInfiniteQueryKey: (options?: Options<ListFacilitiesData>) => QueryKey<Options<ListFacilitiesData>>;
|
|
9288
|
+
/**
|
|
9289
|
+
* List facilities
|
|
9290
|
+
*
|
|
9291
|
+
* Search and filter facilities
|
|
9292
|
+
*/
|
|
9293
|
+
declare const listFacilitiesInfiniteOptions: (options?: Options<ListFacilitiesData>) => _tanstack_react_query.UseInfiniteQueryOptions<FacilityList, PkgOpenapiSharedProblemDetails, InfiniteData<FacilityList, unknown>, QueryKey<Options<ListFacilitiesData>>, number | Pick<Pick<Options<ListFacilitiesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9294
|
+
_id: string;
|
|
9295
|
+
_infinite?: boolean;
|
|
9296
|
+
tags?: ReadonlyArray<string>;
|
|
9297
|
+
}, "query" | "body" | "headers" | "path">> & {
|
|
9298
|
+
initialData: InfiniteData<FacilityList, number | Pick<Pick<Options<ListFacilitiesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9299
|
+
_id: string;
|
|
9300
|
+
_infinite?: boolean;
|
|
9301
|
+
tags?: ReadonlyArray<string>;
|
|
9302
|
+
}, "query" | "body" | "headers" | "path">> | (() => InfiniteData<FacilityList, number | Pick<Pick<Options<ListFacilitiesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9303
|
+
_id: string;
|
|
9304
|
+
_infinite?: boolean;
|
|
9305
|
+
tags?: ReadonlyArray<string>;
|
|
9306
|
+
}, "query" | "body" | "headers" | "path">>) | undefined;
|
|
9307
|
+
} & {
|
|
9308
|
+
queryKey: QueryKey<Options<ListFacilitiesData>> & {
|
|
9309
|
+
[dataTagSymbol]: InfiniteData<FacilityList, unknown>;
|
|
9310
|
+
[dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
|
|
9311
|
+
};
|
|
9312
|
+
};
|
|
9313
|
+
declare const getFacilityQueryKey: (options: Options<GetFacilityData>) => [Pick<Options<GetFacilityData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9314
|
+
_id: string;
|
|
9315
|
+
_infinite?: boolean;
|
|
9316
|
+
tags?: ReadonlyArray<string>;
|
|
9317
|
+
}];
|
|
9318
|
+
/**
|
|
9319
|
+
* Get facility details
|
|
9320
|
+
*
|
|
9321
|
+
* Retrieve details for a single facility
|
|
9322
|
+
*/
|
|
9323
|
+
declare const getFacilityOptions: (options: Options<GetFacilityData>) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<Facility, PkgOpenapiSharedProblemDetails, Facility, [Pick<Options<GetFacilityData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9324
|
+
_id: string;
|
|
9325
|
+
_infinite?: boolean;
|
|
9326
|
+
tags?: ReadonlyArray<string>;
|
|
9327
|
+
}]>, "queryFn"> & {
|
|
9328
|
+
queryFn?: _tanstack_react_query.QueryFunction<Facility, [Pick<Options<GetFacilityData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9329
|
+
_id: string;
|
|
9330
|
+
_infinite?: boolean;
|
|
9331
|
+
tags?: ReadonlyArray<string>;
|
|
9332
|
+
}], never> | undefined;
|
|
9333
|
+
} & {
|
|
9334
|
+
queryKey: [Pick<Options<GetFacilityData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9335
|
+
_id: string;
|
|
9336
|
+
_infinite?: boolean;
|
|
9337
|
+
tags?: ReadonlyArray<string>;
|
|
9338
|
+
}] & {
|
|
9339
|
+
[dataTagSymbol]: Facility;
|
|
9340
|
+
[dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
|
|
9341
|
+
};
|
|
9342
|
+
};
|
|
8772
9343
|
declare const listFacilityOffersQueryKey: (options: Options<ListFacilityOffersData>) => [Pick<Options<ListFacilityOffersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8773
9344
|
_id: string;
|
|
8774
9345
|
_infinite?: boolean;
|
|
@@ -8831,6 +9402,48 @@ declare const listFacilityOffersInfiniteOptions: (options: Options<ListFacilityO
|
|
|
8831
9402
|
* Will create a facility offer order and return the order object
|
|
8832
9403
|
*/
|
|
8833
9404
|
declare const createFacilityOfferOrderMutation: (options?: Partial<Options<CreateFacilityOfferOrderData>>) => UseMutationOptions<CreateFacilityOfferOrderResponse, CreateFacilityOfferOrderError, Options<CreateFacilityOfferOrderData>>;
|
|
9405
|
+
declare const listFacilityResourcesQueryKey: (options: Options<ListFacilityResourcesData>) => [Pick<Options<ListFacilityResourcesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9406
|
+
_id: string;
|
|
9407
|
+
_infinite?: boolean;
|
|
9408
|
+
tags?: ReadonlyArray<string>;
|
|
9409
|
+
}];
|
|
9410
|
+
/**
|
|
9411
|
+
* List facility resources
|
|
9412
|
+
*
|
|
9413
|
+
* Retrieve a list of resources (courts) for a facility
|
|
9414
|
+
*/
|
|
9415
|
+
declare const listFacilityResourcesOptions: (options: Options<ListFacilityResourcesData>) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<{
|
|
9416
|
+
items: Array<Resource>;
|
|
9417
|
+
result_set: PkgOpenapiSharedOffsetPaginatedResultSet;
|
|
9418
|
+
}, PkgOpenapiSharedProblemDetails, {
|
|
9419
|
+
items: Array<Resource>;
|
|
9420
|
+
result_set: PkgOpenapiSharedOffsetPaginatedResultSet;
|
|
9421
|
+
}, [Pick<Options<ListFacilityResourcesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9422
|
+
_id: string;
|
|
9423
|
+
_infinite?: boolean;
|
|
9424
|
+
tags?: ReadonlyArray<string>;
|
|
9425
|
+
}]>, "queryFn"> & {
|
|
9426
|
+
queryFn?: _tanstack_react_query.QueryFunction<{
|
|
9427
|
+
items: Array<Resource>;
|
|
9428
|
+
result_set: PkgOpenapiSharedOffsetPaginatedResultSet;
|
|
9429
|
+
}, [Pick<Options<ListFacilityResourcesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9430
|
+
_id: string;
|
|
9431
|
+
_infinite?: boolean;
|
|
9432
|
+
tags?: ReadonlyArray<string>;
|
|
9433
|
+
}], never> | undefined;
|
|
9434
|
+
} & {
|
|
9435
|
+
queryKey: [Pick<Options<ListFacilityResourcesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9436
|
+
_id: string;
|
|
9437
|
+
_infinite?: boolean;
|
|
9438
|
+
tags?: ReadonlyArray<string>;
|
|
9439
|
+
}] & {
|
|
9440
|
+
[dataTagSymbol]: {
|
|
9441
|
+
items: Array<Resource>;
|
|
9442
|
+
result_set: PkgOpenapiSharedOffsetPaginatedResultSet;
|
|
9443
|
+
};
|
|
9444
|
+
[dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
|
|
9445
|
+
};
|
|
9446
|
+
};
|
|
8834
9447
|
declare const listMatchesQueryKey: (options: Options<ListMatchesData>) => [Pick<Options<ListMatchesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8835
9448
|
_id: string;
|
|
8836
9449
|
_infinite?: boolean;
|
|
@@ -9104,6 +9717,36 @@ declare const getNotificationByIdOptions: (options: Options<GetNotificationByIdD
|
|
|
9104
9717
|
* Update notification
|
|
9105
9718
|
*/
|
|
9106
9719
|
declare const updateNotificationMutation: (options?: Partial<Options<UpdateNotificationData>>) => UseMutationOptions<UpdateNotificationResponse, UpdateNotificationError, Options<UpdateNotificationData>>;
|
|
9720
|
+
declare const getResourceQueryKey: (options: Options<GetResourceData>) => [Pick<Options<GetResourceData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9721
|
+
_id: string;
|
|
9722
|
+
_infinite?: boolean;
|
|
9723
|
+
tags?: ReadonlyArray<string>;
|
|
9724
|
+
}];
|
|
9725
|
+
/**
|
|
9726
|
+
* Get resource details
|
|
9727
|
+
*
|
|
9728
|
+
* Retrieve details for a single resource (court)
|
|
9729
|
+
*/
|
|
9730
|
+
declare const getResourceOptions: (options: Options<GetResourceData>) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<Resource, PkgOpenapiSharedProblemDetails, Resource, [Pick<Options<GetResourceData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9731
|
+
_id: string;
|
|
9732
|
+
_infinite?: boolean;
|
|
9733
|
+
tags?: ReadonlyArray<string>;
|
|
9734
|
+
}]>, "queryFn"> & {
|
|
9735
|
+
queryFn?: _tanstack_react_query.QueryFunction<Resource, [Pick<Options<GetResourceData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9736
|
+
_id: string;
|
|
9737
|
+
_infinite?: boolean;
|
|
9738
|
+
tags?: ReadonlyArray<string>;
|
|
9739
|
+
}], never> | undefined;
|
|
9740
|
+
} & {
|
|
9741
|
+
queryKey: [Pick<Options<GetResourceData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9742
|
+
_id: string;
|
|
9743
|
+
_infinite?: boolean;
|
|
9744
|
+
tags?: ReadonlyArray<string>;
|
|
9745
|
+
}] & {
|
|
9746
|
+
[dataTagSymbol]: Resource;
|
|
9747
|
+
[dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
|
|
9748
|
+
};
|
|
9749
|
+
};
|
|
9107
9750
|
declare const getSportAuthoritiesQueryKey: (options?: Options<GetSportAuthoritiesData>) => [Pick<Options<GetSportAuthoritiesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9108
9751
|
_id: string;
|
|
9109
9752
|
_infinite?: boolean;
|
|
@@ -9394,6 +10037,8 @@ declare const reactQuery_gen_deleteUserSportProfileLevelMutation: typeof deleteU
|
|
|
9394
10037
|
declare const reactQuery_gen_deleteUserSportProfileMutation: typeof deleteUserSportProfileMutation;
|
|
9395
10038
|
declare const reactQuery_gen_getCommunityOptions: typeof getCommunityOptions;
|
|
9396
10039
|
declare const reactQuery_gen_getCommunityQueryKey: typeof getCommunityQueryKey;
|
|
10040
|
+
declare const reactQuery_gen_getFacilityOptions: typeof getFacilityOptions;
|
|
10041
|
+
declare const reactQuery_gen_getFacilityQueryKey: typeof getFacilityQueryKey;
|
|
9397
10042
|
declare const reactQuery_gen_getMatchOptions: typeof getMatchOptions;
|
|
9398
10043
|
declare const reactQuery_gen_getMatchQueryKey: typeof getMatchQueryKey;
|
|
9399
10044
|
declare const reactQuery_gen_getMatchUserPriceOptions: typeof getMatchUserPriceOptions;
|
|
@@ -9412,6 +10057,8 @@ declare const reactQuery_gen_getRecommendationsInfiniteOptions: typeof getRecomm
|
|
|
9412
10057
|
declare const reactQuery_gen_getRecommendationsInfiniteQueryKey: typeof getRecommendationsInfiniteQueryKey;
|
|
9413
10058
|
declare const reactQuery_gen_getRecommendationsOptions: typeof getRecommendationsOptions;
|
|
9414
10059
|
declare const reactQuery_gen_getRecommendationsQueryKey: typeof getRecommendationsQueryKey;
|
|
10060
|
+
declare const reactQuery_gen_getResourceOptions: typeof getResourceOptions;
|
|
10061
|
+
declare const reactQuery_gen_getResourceQueryKey: typeof getResourceQueryKey;
|
|
9415
10062
|
declare const reactQuery_gen_getSportAuthoritiesOptions: typeof getSportAuthoritiesOptions;
|
|
9416
10063
|
declare const reactQuery_gen_getSportAuthoritiesQueryKey: typeof getSportAuthoritiesQueryKey;
|
|
9417
10064
|
declare const reactQuery_gen_getUserFacilityPermissionsOptions: typeof getUserFacilityPermissionsOptions;
|
|
@@ -9429,10 +10076,16 @@ declare const reactQuery_gen_listCommunitiesInfiniteOptions: typeof listCommunit
|
|
|
9429
10076
|
declare const reactQuery_gen_listCommunitiesInfiniteQueryKey: typeof listCommunitiesInfiniteQueryKey;
|
|
9430
10077
|
declare const reactQuery_gen_listCommunitiesOptions: typeof listCommunitiesOptions;
|
|
9431
10078
|
declare const reactQuery_gen_listCommunitiesQueryKey: typeof listCommunitiesQueryKey;
|
|
10079
|
+
declare const reactQuery_gen_listFacilitiesInfiniteOptions: typeof listFacilitiesInfiniteOptions;
|
|
10080
|
+
declare const reactQuery_gen_listFacilitiesInfiniteQueryKey: typeof listFacilitiesInfiniteQueryKey;
|
|
10081
|
+
declare const reactQuery_gen_listFacilitiesOptions: typeof listFacilitiesOptions;
|
|
10082
|
+
declare const reactQuery_gen_listFacilitiesQueryKey: typeof listFacilitiesQueryKey;
|
|
9432
10083
|
declare const reactQuery_gen_listFacilityOffersInfiniteOptions: typeof listFacilityOffersInfiniteOptions;
|
|
9433
10084
|
declare const reactQuery_gen_listFacilityOffersInfiniteQueryKey: typeof listFacilityOffersInfiniteQueryKey;
|
|
9434
10085
|
declare const reactQuery_gen_listFacilityOffersOptions: typeof listFacilityOffersOptions;
|
|
9435
10086
|
declare const reactQuery_gen_listFacilityOffersQueryKey: typeof listFacilityOffersQueryKey;
|
|
10087
|
+
declare const reactQuery_gen_listFacilityResourcesOptions: typeof listFacilityResourcesOptions;
|
|
10088
|
+
declare const reactQuery_gen_listFacilityResourcesQueryKey: typeof listFacilityResourcesQueryKey;
|
|
9436
10089
|
declare const reactQuery_gen_listMatchesInfiniteOptions: typeof listMatchesInfiniteOptions;
|
|
9437
10090
|
declare const reactQuery_gen_listMatchesInfiniteQueryKey: typeof listMatchesInfiniteQueryKey;
|
|
9438
10091
|
declare const reactQuery_gen_listMatchesOptions: typeof listMatchesOptions;
|
|
@@ -9458,7 +10111,7 @@ declare const reactQuery_gen_updateNotificationsPreferencesMutation: typeof upda
|
|
|
9458
10111
|
declare const reactQuery_gen_updateUserProfileMutation: typeof updateUserProfileMutation;
|
|
9459
10112
|
declare const reactQuery_gen_updateUserSportProfileLevelMutation: typeof updateUserSportProfileLevelMutation;
|
|
9460
10113
|
declare namespace reactQuery_gen {
|
|
9461
|
-
export { type reactQuery_gen_QueryKey as QueryKey, reactQuery_gen_acceptInvitationMutation as acceptInvitationMutation, reactQuery_gen_addUserSportProfileLevelMutation as addUserSportProfileLevelMutation, reactQuery_gen_createCommentMutation as createCommentMutation, reactQuery_gen_createFacilityOfferOrderMutation as createFacilityOfferOrderMutation, reactQuery_gen_createMatchParticipationMutation as createMatchParticipationMutation, reactQuery_gen_createPostMutation as createPostMutation, reactQuery_gen_createUserSportProfileMutation as createUserSportProfileMutation, reactQuery_gen_deleteCommentMutation as deleteCommentMutation, reactQuery_gen_deleteMatchParticipationMutation as deleteMatchParticipationMutation, reactQuery_gen_deletePostMutation as deletePostMutation, reactQuery_gen_deleteUserSportProfileLevelMutation as deleteUserSportProfileLevelMutation, reactQuery_gen_deleteUserSportProfileMutation as deleteUserSportProfileMutation, reactQuery_gen_getCommunityOptions as getCommunityOptions, reactQuery_gen_getCommunityQueryKey as getCommunityQueryKey, reactQuery_gen_getMatchOptions as getMatchOptions, reactQuery_gen_getMatchQueryKey as getMatchQueryKey, reactQuery_gen_getMatchUserPriceOptions as getMatchUserPriceOptions, reactQuery_gen_getMatchUserPriceQueryKey as getMatchUserPriceQueryKey, reactQuery_gen_getNotificationByIdOptions as getNotificationByIdOptions, reactQuery_gen_getNotificationByIdQueryKey as getNotificationByIdQueryKey, reactQuery_gen_getNotificationsInfiniteOptions as getNotificationsInfiniteOptions, reactQuery_gen_getNotificationsInfiniteQueryKey as getNotificationsInfiniteQueryKey, reactQuery_gen_getNotificationsOptions as getNotificationsOptions, reactQuery_gen_getNotificationsPreferencesOptions as getNotificationsPreferencesOptions, reactQuery_gen_getNotificationsPreferencesQueryKey as getNotificationsPreferencesQueryKey, reactQuery_gen_getNotificationsQueryKey as getNotificationsQueryKey, reactQuery_gen_getPostOptions as getPostOptions, reactQuery_gen_getPostQueryKey as getPostQueryKey, reactQuery_gen_getRecommendationsInfiniteOptions as getRecommendationsInfiniteOptions, reactQuery_gen_getRecommendationsInfiniteQueryKey as getRecommendationsInfiniteQueryKey, reactQuery_gen_getRecommendationsOptions as getRecommendationsOptions, reactQuery_gen_getRecommendationsQueryKey as getRecommendationsQueryKey, reactQuery_gen_getSportAuthoritiesOptions as getSportAuthoritiesOptions, reactQuery_gen_getSportAuthoritiesQueryKey as getSportAuthoritiesQueryKey, reactQuery_gen_getUserFacilityPermissionsOptions as getUserFacilityPermissionsOptions, reactQuery_gen_getUserFacilityPermissionsQueryKey as getUserFacilityPermissionsQueryKey, reactQuery_gen_getUserSportProfileOptions as getUserSportProfileOptions, reactQuery_gen_getUserSportProfileQueryKey as getUserSportProfileQueryKey, reactQuery_gen_getUserSportProfilesOptions as getUserSportProfilesOptions, reactQuery_gen_getUserSportProfilesQueryKey as getUserSportProfilesQueryKey, reactQuery_gen_leaveCommunityMutation as leaveCommunityMutation, reactQuery_gen_listCommentsInfiniteOptions as listCommentsInfiniteOptions, reactQuery_gen_listCommentsInfiniteQueryKey as listCommentsInfiniteQueryKey, reactQuery_gen_listCommentsOptions as listCommentsOptions, reactQuery_gen_listCommentsQueryKey as listCommentsQueryKey, reactQuery_gen_listCommunitiesInfiniteOptions as listCommunitiesInfiniteOptions, reactQuery_gen_listCommunitiesInfiniteQueryKey as listCommunitiesInfiniteQueryKey, reactQuery_gen_listCommunitiesOptions as listCommunitiesOptions, reactQuery_gen_listCommunitiesQueryKey as listCommunitiesQueryKey, reactQuery_gen_listFacilityOffersInfiniteOptions as listFacilityOffersInfiniteOptions, reactQuery_gen_listFacilityOffersInfiniteQueryKey as listFacilityOffersInfiniteQueryKey, reactQuery_gen_listFacilityOffersOptions as listFacilityOffersOptions, reactQuery_gen_listFacilityOffersQueryKey as listFacilityOffersQueryKey, reactQuery_gen_listMatchesInfiniteOptions as listMatchesInfiniteOptions, reactQuery_gen_listMatchesInfiniteQueryKey as listMatchesInfiniteQueryKey, reactQuery_gen_listMatchesOptions as listMatchesOptions, reactQuery_gen_listMatchesQueryKey as listMatchesQueryKey, reactQuery_gen_listMembersInfiniteOptions as listMembersInfiniteOptions, reactQuery_gen_listMembersInfiniteQueryKey as listMembersInfiniteQueryKey, reactQuery_gen_listMembersOptions as listMembersOptions, reactQuery_gen_listMembersQueryKey as listMembersQueryKey, reactQuery_gen_listPostsInfiniteOptions as listPostsInfiniteOptions, reactQuery_gen_listPostsInfiniteQueryKey as listPostsInfiniteQueryKey, reactQuery_gen_listPostsOptions as listPostsOptions, reactQuery_gen_listPostsQueryKey as listPostsQueryKey, reactQuery_gen_markCommentReadMutation as markCommentReadMutation, reactQuery_gen_markPostReadMutation as markPostReadMutation, reactQuery_gen_registerDeviceMutation as registerDeviceMutation, reactQuery_gen_searchUsersInfiniteOptions as searchUsersInfiniteOptions, reactQuery_gen_searchUsersInfiniteQueryKey as searchUsersInfiniteQueryKey, reactQuery_gen_searchUsersOptions as searchUsersOptions, reactQuery_gen_searchUsersQueryKey as searchUsersQueryKey, reactQuery_gen_updateAllNotificationsMutation as updateAllNotificationsMutation, reactQuery_gen_updateNotificationMutation as updateNotificationMutation, reactQuery_gen_updateNotificationsPreferencesMutation as updateNotificationsPreferencesMutation, reactQuery_gen_updateUserProfileMutation as updateUserProfileMutation, reactQuery_gen_updateUserSportProfileLevelMutation as updateUserSportProfileLevelMutation };
|
|
10114
|
+
export { type reactQuery_gen_QueryKey as QueryKey, reactQuery_gen_acceptInvitationMutation as acceptInvitationMutation, reactQuery_gen_addUserSportProfileLevelMutation as addUserSportProfileLevelMutation, reactQuery_gen_createCommentMutation as createCommentMutation, reactQuery_gen_createFacilityOfferOrderMutation as createFacilityOfferOrderMutation, reactQuery_gen_createMatchParticipationMutation as createMatchParticipationMutation, reactQuery_gen_createPostMutation as createPostMutation, reactQuery_gen_createUserSportProfileMutation as createUserSportProfileMutation, reactQuery_gen_deleteCommentMutation as deleteCommentMutation, reactQuery_gen_deleteMatchParticipationMutation as deleteMatchParticipationMutation, reactQuery_gen_deletePostMutation as deletePostMutation, reactQuery_gen_deleteUserSportProfileLevelMutation as deleteUserSportProfileLevelMutation, reactQuery_gen_deleteUserSportProfileMutation as deleteUserSportProfileMutation, reactQuery_gen_getCommunityOptions as getCommunityOptions, reactQuery_gen_getCommunityQueryKey as getCommunityQueryKey, reactQuery_gen_getFacilityOptions as getFacilityOptions, reactQuery_gen_getFacilityQueryKey as getFacilityQueryKey, reactQuery_gen_getMatchOptions as getMatchOptions, reactQuery_gen_getMatchQueryKey as getMatchQueryKey, reactQuery_gen_getMatchUserPriceOptions as getMatchUserPriceOptions, reactQuery_gen_getMatchUserPriceQueryKey as getMatchUserPriceQueryKey, reactQuery_gen_getNotificationByIdOptions as getNotificationByIdOptions, reactQuery_gen_getNotificationByIdQueryKey as getNotificationByIdQueryKey, reactQuery_gen_getNotificationsInfiniteOptions as getNotificationsInfiniteOptions, reactQuery_gen_getNotificationsInfiniteQueryKey as getNotificationsInfiniteQueryKey, reactQuery_gen_getNotificationsOptions as getNotificationsOptions, reactQuery_gen_getNotificationsPreferencesOptions as getNotificationsPreferencesOptions, reactQuery_gen_getNotificationsPreferencesQueryKey as getNotificationsPreferencesQueryKey, reactQuery_gen_getNotificationsQueryKey as getNotificationsQueryKey, reactQuery_gen_getPostOptions as getPostOptions, reactQuery_gen_getPostQueryKey as getPostQueryKey, reactQuery_gen_getRecommendationsInfiniteOptions as getRecommendationsInfiniteOptions, reactQuery_gen_getRecommendationsInfiniteQueryKey as getRecommendationsInfiniteQueryKey, reactQuery_gen_getRecommendationsOptions as getRecommendationsOptions, reactQuery_gen_getRecommendationsQueryKey as getRecommendationsQueryKey, reactQuery_gen_getResourceOptions as getResourceOptions, reactQuery_gen_getResourceQueryKey as getResourceQueryKey, reactQuery_gen_getSportAuthoritiesOptions as getSportAuthoritiesOptions, reactQuery_gen_getSportAuthoritiesQueryKey as getSportAuthoritiesQueryKey, reactQuery_gen_getUserFacilityPermissionsOptions as getUserFacilityPermissionsOptions, reactQuery_gen_getUserFacilityPermissionsQueryKey as getUserFacilityPermissionsQueryKey, reactQuery_gen_getUserSportProfileOptions as getUserSportProfileOptions, reactQuery_gen_getUserSportProfileQueryKey as getUserSportProfileQueryKey, reactQuery_gen_getUserSportProfilesOptions as getUserSportProfilesOptions, reactQuery_gen_getUserSportProfilesQueryKey as getUserSportProfilesQueryKey, reactQuery_gen_leaveCommunityMutation as leaveCommunityMutation, reactQuery_gen_listCommentsInfiniteOptions as listCommentsInfiniteOptions, reactQuery_gen_listCommentsInfiniteQueryKey as listCommentsInfiniteQueryKey, reactQuery_gen_listCommentsOptions as listCommentsOptions, reactQuery_gen_listCommentsQueryKey as listCommentsQueryKey, reactQuery_gen_listCommunitiesInfiniteOptions as listCommunitiesInfiniteOptions, reactQuery_gen_listCommunitiesInfiniteQueryKey as listCommunitiesInfiniteQueryKey, reactQuery_gen_listCommunitiesOptions as listCommunitiesOptions, reactQuery_gen_listCommunitiesQueryKey as listCommunitiesQueryKey, reactQuery_gen_listFacilitiesInfiniteOptions as listFacilitiesInfiniteOptions, reactQuery_gen_listFacilitiesInfiniteQueryKey as listFacilitiesInfiniteQueryKey, reactQuery_gen_listFacilitiesOptions as listFacilitiesOptions, reactQuery_gen_listFacilitiesQueryKey as listFacilitiesQueryKey, reactQuery_gen_listFacilityOffersInfiniteOptions as listFacilityOffersInfiniteOptions, reactQuery_gen_listFacilityOffersInfiniteQueryKey as listFacilityOffersInfiniteQueryKey, reactQuery_gen_listFacilityOffersOptions as listFacilityOffersOptions, reactQuery_gen_listFacilityOffersQueryKey as listFacilityOffersQueryKey, reactQuery_gen_listFacilityResourcesOptions as listFacilityResourcesOptions, reactQuery_gen_listFacilityResourcesQueryKey as listFacilityResourcesQueryKey, reactQuery_gen_listMatchesInfiniteOptions as listMatchesInfiniteOptions, reactQuery_gen_listMatchesInfiniteQueryKey as listMatchesInfiniteQueryKey, reactQuery_gen_listMatchesOptions as listMatchesOptions, reactQuery_gen_listMatchesQueryKey as listMatchesQueryKey, reactQuery_gen_listMembersInfiniteOptions as listMembersInfiniteOptions, reactQuery_gen_listMembersInfiniteQueryKey as listMembersInfiniteQueryKey, reactQuery_gen_listMembersOptions as listMembersOptions, reactQuery_gen_listMembersQueryKey as listMembersQueryKey, reactQuery_gen_listPostsInfiniteOptions as listPostsInfiniteOptions, reactQuery_gen_listPostsInfiniteQueryKey as listPostsInfiniteQueryKey, reactQuery_gen_listPostsOptions as listPostsOptions, reactQuery_gen_listPostsQueryKey as listPostsQueryKey, reactQuery_gen_markCommentReadMutation as markCommentReadMutation, reactQuery_gen_markPostReadMutation as markPostReadMutation, reactQuery_gen_registerDeviceMutation as registerDeviceMutation, reactQuery_gen_searchUsersInfiniteOptions as searchUsersInfiniteOptions, reactQuery_gen_searchUsersInfiniteQueryKey as searchUsersInfiniteQueryKey, reactQuery_gen_searchUsersOptions as searchUsersOptions, reactQuery_gen_searchUsersQueryKey as searchUsersQueryKey, reactQuery_gen_updateAllNotificationsMutation as updateAllNotificationsMutation, reactQuery_gen_updateNotificationMutation as updateNotificationMutation, reactQuery_gen_updateNotificationsPreferencesMutation as updateNotificationsPreferencesMutation, reactQuery_gen_updateUserProfileMutation as updateUserProfileMutation, reactQuery_gen_updateUserSportProfileLevelMutation as updateUserSportProfileLevelMutation };
|
|
9462
10115
|
}
|
|
9463
10116
|
|
|
9464
10117
|
type indexV1_AcceptInvitationData = AcceptInvitationData;
|
|
@@ -9471,6 +10124,7 @@ type indexV1_AddUserSportProfileLevelError = AddUserSportProfileLevelError;
|
|
|
9471
10124
|
type indexV1_AddUserSportProfileLevelErrors = AddUserSportProfileLevelErrors;
|
|
9472
10125
|
type indexV1_AddUserSportProfileLevelResponse = AddUserSportProfileLevelResponse;
|
|
9473
10126
|
type indexV1_AddUserSportProfileLevelResponses = AddUserSportProfileLevelResponses;
|
|
10127
|
+
type indexV1_Address = Address;
|
|
9474
10128
|
type indexV1_Author = Author;
|
|
9475
10129
|
type indexV1_AuthoritySlug = AuthoritySlug;
|
|
9476
10130
|
type indexV1_Channels = Channels;
|
|
@@ -9562,6 +10216,11 @@ type indexV1_GetCommunityError = GetCommunityError;
|
|
|
9562
10216
|
type indexV1_GetCommunityErrors = GetCommunityErrors;
|
|
9563
10217
|
type indexV1_GetCommunityResponse = GetCommunityResponse;
|
|
9564
10218
|
type indexV1_GetCommunityResponses = GetCommunityResponses;
|
|
10219
|
+
type indexV1_GetFacilityData = GetFacilityData;
|
|
10220
|
+
type indexV1_GetFacilityError = GetFacilityError;
|
|
10221
|
+
type indexV1_GetFacilityErrors = GetFacilityErrors;
|
|
10222
|
+
type indexV1_GetFacilityResponse = GetFacilityResponse;
|
|
10223
|
+
type indexV1_GetFacilityResponses = GetFacilityResponses;
|
|
9565
10224
|
type indexV1_GetMatchData = GetMatchData;
|
|
9566
10225
|
type indexV1_GetMatchError = GetMatchError;
|
|
9567
10226
|
type indexV1_GetMatchErrors = GetMatchErrors;
|
|
@@ -9597,6 +10256,11 @@ type indexV1_GetRecommendationsError = GetRecommendationsError;
|
|
|
9597
10256
|
type indexV1_GetRecommendationsErrors = GetRecommendationsErrors;
|
|
9598
10257
|
type indexV1_GetRecommendationsResponse = GetRecommendationsResponse;
|
|
9599
10258
|
type indexV1_GetRecommendationsResponses = GetRecommendationsResponses;
|
|
10259
|
+
type indexV1_GetResourceData = GetResourceData;
|
|
10260
|
+
type indexV1_GetResourceError = GetResourceError;
|
|
10261
|
+
type indexV1_GetResourceErrors = GetResourceErrors;
|
|
10262
|
+
type indexV1_GetResourceResponse = GetResourceResponse;
|
|
10263
|
+
type indexV1_GetResourceResponses = GetResourceResponses;
|
|
9600
10264
|
type indexV1_GetSportAuthoritiesData = GetSportAuthoritiesData;
|
|
9601
10265
|
type indexV1_GetSportAuthoritiesError = GetSportAuthoritiesError;
|
|
9602
10266
|
type indexV1_GetSportAuthoritiesErrors = GetSportAuthoritiesErrors;
|
|
@@ -9633,11 +10297,21 @@ type indexV1_ListCommunitiesError = ListCommunitiesError;
|
|
|
9633
10297
|
type indexV1_ListCommunitiesErrors = ListCommunitiesErrors;
|
|
9634
10298
|
type indexV1_ListCommunitiesResponse = ListCommunitiesResponse;
|
|
9635
10299
|
type indexV1_ListCommunitiesResponses = ListCommunitiesResponses;
|
|
10300
|
+
type indexV1_ListFacilitiesData = ListFacilitiesData;
|
|
10301
|
+
type indexV1_ListFacilitiesError = ListFacilitiesError;
|
|
10302
|
+
type indexV1_ListFacilitiesErrors = ListFacilitiesErrors;
|
|
10303
|
+
type indexV1_ListFacilitiesResponse = ListFacilitiesResponse;
|
|
10304
|
+
type indexV1_ListFacilitiesResponses = ListFacilitiesResponses;
|
|
9636
10305
|
type indexV1_ListFacilityOffersData = ListFacilityOffersData;
|
|
9637
10306
|
type indexV1_ListFacilityOffersError = ListFacilityOffersError;
|
|
9638
10307
|
type indexV1_ListFacilityOffersErrors = ListFacilityOffersErrors;
|
|
9639
10308
|
type indexV1_ListFacilityOffersResponse = ListFacilityOffersResponse;
|
|
9640
10309
|
type indexV1_ListFacilityOffersResponses = ListFacilityOffersResponses;
|
|
10310
|
+
type indexV1_ListFacilityResourcesData = ListFacilityResourcesData;
|
|
10311
|
+
type indexV1_ListFacilityResourcesError = ListFacilityResourcesError;
|
|
10312
|
+
type indexV1_ListFacilityResourcesErrors = ListFacilityResourcesErrors;
|
|
10313
|
+
type indexV1_ListFacilityResourcesResponse = ListFacilityResourcesResponse;
|
|
10314
|
+
type indexV1_ListFacilityResourcesResponses = ListFacilityResourcesResponses;
|
|
9641
10315
|
type indexV1_ListMatchesData = ListMatchesData;
|
|
9642
10316
|
type indexV1_ListMatchesError = ListMatchesError;
|
|
9643
10317
|
type indexV1_ListMatchesErrors = ListMatchesErrors;
|
|
@@ -9702,10 +10376,12 @@ type indexV1_PkgOpenapiSharedCursorPaginatedResultSet = PkgOpenapiSharedCursorPa
|
|
|
9702
10376
|
type indexV1_PkgOpenapiSharedCursorParam = PkgOpenapiSharedCursorParam;
|
|
9703
10377
|
type indexV1_PkgOpenapiSharedError = PkgOpenapiSharedError;
|
|
9704
10378
|
type indexV1_PkgOpenapiSharedErrors = PkgOpenapiSharedErrors;
|
|
10379
|
+
type indexV1_PkgOpenapiSharedFilterableString = PkgOpenapiSharedFilterableString;
|
|
9705
10380
|
type indexV1_PkgOpenapiSharedOffsetLimitParam = PkgOpenapiSharedOffsetLimitParam;
|
|
9706
10381
|
type indexV1_PkgOpenapiSharedOffsetPaginatedResultSet = PkgOpenapiSharedOffsetPaginatedResultSet;
|
|
9707
10382
|
type indexV1_PkgOpenapiSharedOffsetParam = PkgOpenapiSharedOffsetParam;
|
|
9708
10383
|
type indexV1_PkgOpenapiSharedProblemDetails = PkgOpenapiSharedProblemDetails;
|
|
10384
|
+
type indexV1_Position = Position;
|
|
9709
10385
|
type indexV1_Post = Post;
|
|
9710
10386
|
type indexV1_PostIdParam = PostIdParam;
|
|
9711
10387
|
type indexV1_PostLink = PostLink;
|
|
@@ -9713,6 +10389,10 @@ type indexV1_PostListResponse = PostListResponse;
|
|
|
9713
10389
|
type indexV1_PostingPermission = PostingPermission;
|
|
9714
10390
|
type indexV1_Preference = Preference;
|
|
9715
10391
|
type indexV1_PreferencesResponse = PreferencesResponse;
|
|
10392
|
+
type indexV1_PrivateParticipantDetail = PrivateParticipantDetail;
|
|
10393
|
+
type indexV1_PrivateParticipantSummary = PrivateParticipantSummary;
|
|
10394
|
+
type indexV1_PublicParticipantDetail = PublicParticipantDetail;
|
|
10395
|
+
type indexV1_PublicParticipantSummary = PublicParticipantSummary;
|
|
9716
10396
|
type indexV1_Recommendation = Recommendation;
|
|
9717
10397
|
type indexV1_RecommendationList = RecommendationList;
|
|
9718
10398
|
type indexV1_RefundPolicy = RefundPolicy;
|
|
@@ -9722,6 +10402,8 @@ type indexV1_RegisterDeviceErrors = RegisterDeviceErrors;
|
|
|
9722
10402
|
type indexV1_RegisterDeviceRequest = RegisterDeviceRequest;
|
|
9723
10403
|
type indexV1_RegisterDeviceResponse = RegisterDeviceResponse;
|
|
9724
10404
|
type indexV1_RegisterDeviceResponses = RegisterDeviceResponses;
|
|
10405
|
+
type indexV1_Resource = Resource;
|
|
10406
|
+
type indexV1_ResourceIdPath = ResourceIdPath;
|
|
9725
10407
|
type indexV1_SearchUsersData = SearchUsersData;
|
|
9726
10408
|
type indexV1_SearchUsersError = SearchUsersError;
|
|
9727
10409
|
type indexV1_SearchUsersErrors = SearchUsersErrors;
|
|
@@ -9786,6 +10468,7 @@ declare const indexV1_deletePost: typeof deletePost;
|
|
|
9786
10468
|
declare const indexV1_deleteUserSportProfile: typeof deleteUserSportProfile;
|
|
9787
10469
|
declare const indexV1_deleteUserSportProfileLevel: typeof deleteUserSportProfileLevel;
|
|
9788
10470
|
declare const indexV1_getCommunity: typeof getCommunity;
|
|
10471
|
+
declare const indexV1_getFacility: typeof getFacility;
|
|
9789
10472
|
declare const indexV1_getMatch: typeof getMatch;
|
|
9790
10473
|
declare const indexV1_getMatchUserPrice: typeof getMatchUserPrice;
|
|
9791
10474
|
declare const indexV1_getNotificationById: typeof getNotificationById;
|
|
@@ -9793,6 +10476,7 @@ declare const indexV1_getNotifications: typeof getNotifications;
|
|
|
9793
10476
|
declare const indexV1_getNotificationsPreferences: typeof getNotificationsPreferences;
|
|
9794
10477
|
declare const indexV1_getPost: typeof getPost;
|
|
9795
10478
|
declare const indexV1_getRecommendations: typeof getRecommendations;
|
|
10479
|
+
declare const indexV1_getResource: typeof getResource;
|
|
9796
10480
|
declare const indexV1_getSportAuthorities: typeof getSportAuthorities;
|
|
9797
10481
|
declare const indexV1_getUserFacilityPermissions: typeof getUserFacilityPermissions;
|
|
9798
10482
|
declare const indexV1_getUserSportProfile: typeof getUserSportProfile;
|
|
@@ -9800,7 +10484,9 @@ declare const indexV1_getUserSportProfiles: typeof getUserSportProfiles;
|
|
|
9800
10484
|
declare const indexV1_leaveCommunity: typeof leaveCommunity;
|
|
9801
10485
|
declare const indexV1_listComments: typeof listComments;
|
|
9802
10486
|
declare const indexV1_listCommunities: typeof listCommunities;
|
|
10487
|
+
declare const indexV1_listFacilities: typeof listFacilities;
|
|
9803
10488
|
declare const indexV1_listFacilityOffers: typeof listFacilityOffers;
|
|
10489
|
+
declare const indexV1_listFacilityResources: typeof listFacilityResources;
|
|
9804
10490
|
declare const indexV1_listMatches: typeof listMatches;
|
|
9805
10491
|
declare const indexV1_listMembers: typeof listMembers;
|
|
9806
10492
|
declare const indexV1_listPosts: typeof listPosts;
|
|
@@ -9814,7 +10500,7 @@ declare const indexV1_updateNotificationsPreferences: typeof updateNotifications
|
|
|
9814
10500
|
declare const indexV1_updateUserProfile: typeof updateUserProfile;
|
|
9815
10501
|
declare const indexV1_updateUserSportProfileLevel: typeof updateUserSportProfileLevel;
|
|
9816
10502
|
declare namespace indexV1 {
|
|
9817
|
-
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_Author as Author, type indexV1_AuthoritySlug as AuthoritySlug, type indexV1_Channels as Channels, type indexV1_ClientOptions 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_CommunityPayload as CommunityPayload, 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_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_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 indexV1_FacilityMessagePayload 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_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 indexV1_GetNotificationByIdData as GetNotificationByIdData, type indexV1_GetNotificationByIdError as GetNotificationByIdError, type indexV1_GetNotificationByIdErrors as GetNotificationByIdErrors, type indexV1_GetNotificationByIdResponse as GetNotificationByIdResponse, type indexV1_GetNotificationByIdResponses as GetNotificationByIdResponses, type indexV1_GetNotificationsData as GetNotificationsData, type indexV1_GetNotificationsError as GetNotificationsError, type indexV1_GetNotificationsErrors as GetNotificationsErrors, type indexV1_GetNotificationsPreferencesData as GetNotificationsPreferencesData, type indexV1_GetNotificationsPreferencesError as GetNotificationsPreferencesError, type indexV1_GetNotificationsPreferencesErrors as GetNotificationsPreferencesErrors, type indexV1_GetNotificationsPreferencesResponse as GetNotificationsPreferencesResponse, type indexV1_GetNotificationsPreferencesResponses as GetNotificationsPreferencesResponses, type indexV1_GetNotificationsResponse as GetNotificationsResponse, type indexV1_GetNotificationsResponses 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_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_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_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_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 indexV1_Metadata as Metadata, type indexV1_Notification as Notification, type indexV1_NotificationPayload as NotificationPayload, type indexV1_NotificationRequestBody as NotificationRequestBody, type indexV1_NotificationsFilter as NotificationsFilter, type indexV1_NotificationsFilterParam as NotificationsFilterParam, type indexV1_NotificationsPaginatedResponse as NotificationsPaginatedResponse, type indexV1_NotificationsSummary as NotificationsSummary, type indexV1_OfferIdPath as OfferIdPath, type indexV1_OffsetPaginatedResultSet as OffsetPaginatedResultSet, type indexV1_Options 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 indexV1_PkgOpenapiSharedCursorLimitParam as PkgOpenapiSharedCursorLimitParam, type indexV1_PkgOpenapiSharedCursorPaginatedResultSet as PkgOpenapiSharedCursorPaginatedResultSet, type indexV1_PkgOpenapiSharedCursorParam as PkgOpenapiSharedCursorParam, type indexV1_PkgOpenapiSharedError as PkgOpenapiSharedError, type indexV1_PkgOpenapiSharedErrors as PkgOpenapiSharedErrors, type indexV1_PkgOpenapiSharedOffsetLimitParam as PkgOpenapiSharedOffsetLimitParam, type indexV1_PkgOpenapiSharedOffsetPaginatedResultSet as PkgOpenapiSharedOffsetPaginatedResultSet, type indexV1_PkgOpenapiSharedOffsetParam as PkgOpenapiSharedOffsetParam, type indexV1_PkgOpenapiSharedProblemDetails as PkgOpenapiSharedProblemDetails, 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 indexV1_Preference as Preference, type indexV1_PreferencesResponse as PreferencesResponse, type indexV1_Recommendation as Recommendation, type indexV1_RecommendationList as RecommendationList, type indexV1_RefundPolicy as RefundPolicy, type indexV1_RegisterDeviceData as RegisterDeviceData, type indexV1_RegisterDeviceError as RegisterDeviceError, type indexV1_RegisterDeviceErrors as RegisterDeviceErrors, type indexV1_RegisterDeviceRequest as RegisterDeviceRequest, type indexV1_RegisterDeviceResponse as RegisterDeviceResponse, type indexV1_RegisterDeviceResponses as RegisterDeviceResponses, 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_Topic as Topic, type indexV1_UpdateAllNotificationsData as UpdateAllNotificationsData, type indexV1_UpdateAllNotificationsError as UpdateAllNotificationsError, type indexV1_UpdateAllNotificationsErrors as UpdateAllNotificationsErrors, type indexV1_UpdateAllNotificationsResponse as UpdateAllNotificationsResponse, type indexV1_UpdateAllNotificationsResponses as UpdateAllNotificationsResponses, type indexV1_UpdateNotificationData as UpdateNotificationData, type indexV1_UpdateNotificationError as UpdateNotificationError, type indexV1_UpdateNotificationErrors as UpdateNotificationErrors, type indexV1_UpdateNotificationResponse as UpdateNotificationResponse, type indexV1_UpdateNotificationResponses as UpdateNotificationResponses, type indexV1_UpdateNotificationsPreferencesData as UpdateNotificationsPreferencesData, type indexV1_UpdateNotificationsPreferencesError as UpdateNotificationsPreferencesError, type indexV1_UpdateNotificationsPreferencesErrors as UpdateNotificationsPreferencesErrors, type indexV1_UpdateNotificationsPreferencesResponse as UpdateNotificationsPreferencesResponse, type indexV1_UpdateNotificationsPreferencesResponses as UpdateNotificationsPreferencesResponses, type indexV1_UpdatePreferencesRequestBody 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_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, indexV1_client 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_deleteMatchParticipation as deleteMatchParticipation, indexV1_deletePost as deletePost, indexV1_deleteUserSportProfile as deleteUserSportProfile, indexV1_deleteUserSportProfileLevel as deleteUserSportProfileLevel, indexV1_getCommunity as getCommunity, indexV1_getMatch as getMatch, indexV1_getMatchUserPrice as getMatchUserPrice, indexV1_getNotificationById as getNotificationById, indexV1_getNotifications as getNotifications, indexV1_getNotificationsPreferences as getNotificationsPreferences, indexV1_getPost as getPost, indexV1_getRecommendations as getRecommendations, indexV1_getSportAuthorities as getSportAuthorities, indexV1_getUserFacilityPermissions as getUserFacilityPermissions, indexV1_getUserSportProfile as getUserSportProfile, indexV1_getUserSportProfiles as getUserSportProfiles, indexV1_leaveCommunity as leaveCommunity, indexV1_listComments as listComments, indexV1_listCommunities as listCommunities, indexV1_listFacilityOffers as listFacilityOffers, indexV1_listMatches as listMatches, indexV1_listMembers as listMembers, indexV1_listPosts as listPosts, indexV1_markCommentRead as markCommentRead, indexV1_markPostRead as markPostRead, reactQuery_gen as queries, indexV1_registerDevice as registerDevice, schemas_gen as schemas, indexV1_searchUsers as searchUsers, indexV1_updateAllNotifications as updateAllNotifications, indexV1_updateNotification as updateNotification, indexV1_updateNotificationsPreferences as updateNotificationsPreferences, indexV1_updateUserProfile as updateUserProfile, indexV1_updateUserSportProfileLevel as updateUserSportProfileLevel };
|
|
10503
|
+
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 indexV1_Channels as Channels, type indexV1_ClientOptions 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_CommunityPayload as CommunityPayload, 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_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_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 indexV1_FacilityMessagePayload 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 indexV1_GetNotificationByIdData as GetNotificationByIdData, type indexV1_GetNotificationByIdError as GetNotificationByIdError, type indexV1_GetNotificationByIdErrors as GetNotificationByIdErrors, type indexV1_GetNotificationByIdResponse as GetNotificationByIdResponse, type indexV1_GetNotificationByIdResponses as GetNotificationByIdResponses, type indexV1_GetNotificationsData as GetNotificationsData, type indexV1_GetNotificationsError as GetNotificationsError, type indexV1_GetNotificationsErrors as GetNotificationsErrors, type indexV1_GetNotificationsPreferencesData as GetNotificationsPreferencesData, type indexV1_GetNotificationsPreferencesError as GetNotificationsPreferencesError, type indexV1_GetNotificationsPreferencesErrors as GetNotificationsPreferencesErrors, type indexV1_GetNotificationsPreferencesResponse as GetNotificationsPreferencesResponse, type indexV1_GetNotificationsPreferencesResponses as GetNotificationsPreferencesResponses, type indexV1_GetNotificationsResponse as GetNotificationsResponse, type indexV1_GetNotificationsResponses 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_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 indexV1_Metadata as Metadata, type indexV1_Notification as Notification, type indexV1_NotificationPayload as NotificationPayload, type indexV1_NotificationRequestBody as NotificationRequestBody, type indexV1_NotificationsFilter as NotificationsFilter, type indexV1_NotificationsFilterParam as NotificationsFilterParam, type indexV1_NotificationsPaginatedResponse as NotificationsPaginatedResponse, type indexV1_NotificationsSummary as NotificationsSummary, type indexV1_OfferIdPath as OfferIdPath, type indexV1_OffsetPaginatedResultSet as OffsetPaginatedResultSet, type indexV1_Options 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 indexV1_PkgOpenapiSharedCursorLimitParam as PkgOpenapiSharedCursorLimitParam, type indexV1_PkgOpenapiSharedCursorPaginatedResultSet as PkgOpenapiSharedCursorPaginatedResultSet, type indexV1_PkgOpenapiSharedCursorParam as PkgOpenapiSharedCursorParam, type indexV1_PkgOpenapiSharedError as PkgOpenapiSharedError, type indexV1_PkgOpenapiSharedErrors as PkgOpenapiSharedErrors, type indexV1_PkgOpenapiSharedFilterableString as PkgOpenapiSharedFilterableString, type indexV1_PkgOpenapiSharedOffsetLimitParam as PkgOpenapiSharedOffsetLimitParam, type indexV1_PkgOpenapiSharedOffsetPaginatedResultSet as PkgOpenapiSharedOffsetPaginatedResultSet, type indexV1_PkgOpenapiSharedOffsetParam as PkgOpenapiSharedOffsetParam, type indexV1_PkgOpenapiSharedProblemDetails 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 indexV1_Preference as Preference, type indexV1_PreferencesResponse as PreferencesResponse, type indexV1_PrivateParticipantDetail as PrivateParticipantDetail, type indexV1_PrivateParticipantSummary as PrivateParticipantSummary, type indexV1_PublicParticipantDetail as PublicParticipantDetail, type indexV1_PublicParticipantSummary as PublicParticipantSummary, type indexV1_Recommendation as Recommendation, type indexV1_RecommendationList as RecommendationList, type indexV1_RefundPolicy as RefundPolicy, type indexV1_RegisterDeviceData as RegisterDeviceData, type indexV1_RegisterDeviceError as RegisterDeviceError, type indexV1_RegisterDeviceErrors as RegisterDeviceErrors, type indexV1_RegisterDeviceRequest as RegisterDeviceRequest, type indexV1_RegisterDeviceResponse as RegisterDeviceResponse, type indexV1_RegisterDeviceResponses 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_Topic as Topic, type indexV1_UpdateAllNotificationsData as UpdateAllNotificationsData, type indexV1_UpdateAllNotificationsError as UpdateAllNotificationsError, type indexV1_UpdateAllNotificationsErrors as UpdateAllNotificationsErrors, type indexV1_UpdateAllNotificationsResponse as UpdateAllNotificationsResponse, type indexV1_UpdateAllNotificationsResponses as UpdateAllNotificationsResponses, type indexV1_UpdateNotificationData as UpdateNotificationData, type indexV1_UpdateNotificationError as UpdateNotificationError, type indexV1_UpdateNotificationErrors as UpdateNotificationErrors, type indexV1_UpdateNotificationResponse as UpdateNotificationResponse, type indexV1_UpdateNotificationResponses as UpdateNotificationResponses, type indexV1_UpdateNotificationsPreferencesData as UpdateNotificationsPreferencesData, type indexV1_UpdateNotificationsPreferencesError as UpdateNotificationsPreferencesError, type indexV1_UpdateNotificationsPreferencesErrors as UpdateNotificationsPreferencesErrors, type indexV1_UpdateNotificationsPreferencesResponse as UpdateNotificationsPreferencesResponse, type indexV1_UpdateNotificationsPreferencesResponses as UpdateNotificationsPreferencesResponses, type indexV1_UpdatePreferencesRequestBody 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_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, indexV1_client 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_deleteMatchParticipation as deleteMatchParticipation, indexV1_deletePost as deletePost, indexV1_deleteUserSportProfile as deleteUserSportProfile, indexV1_deleteUserSportProfileLevel as deleteUserSportProfileLevel, indexV1_getCommunity as getCommunity, indexV1_getFacility as getFacility, indexV1_getMatch as getMatch, indexV1_getMatchUserPrice as getMatchUserPrice, indexV1_getNotificationById as getNotificationById, indexV1_getNotifications as getNotifications, indexV1_getNotificationsPreferences 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_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 as queries, indexV1_registerDevice as registerDevice, schemas_gen as schemas, indexV1_searchUsers as searchUsers, indexV1_updateAllNotifications as updateAllNotifications, indexV1_updateNotification as updateNotification, indexV1_updateNotificationsPreferences as updateNotificationsPreferences, indexV1_updateUserProfile as updateUserProfile, indexV1_updateUserSportProfileLevel as updateUserSportProfileLevel };
|
|
9818
10504
|
}
|
|
9819
10505
|
|
|
9820
10506
|
export { type ActivityEvent, ActivityServiceV1Service, type AdminOccasionDetails, AnonymousService, ApiClientServiceV1Service, ApiError, AuthorizedService, BookingServiceV1Service, CancelError, CancelablePromise, CheckoutServiceV1Service, CompetitionServiceV1Service, CorsService, type Error$1 as Error, type ExternalServiceProperty, LoyaltyServiceV1Service, MembershipServiceV1Service, type OccasionCourt, OpenAPI, type OpenAPIConfig, type OrderPaymentDetails, type OrderPriceDetails, type OrderSplitPayments, type OrderSplitPaymentsRow, type OrderSplitPrice, type PaymentMethodPaymentRefund, PlaySessionServiceV1Service, type ServiceFeeSettings, UserServiceV1Service, type access, type activitiesResponse, type activity, type activityOccasion, type activityType, type actor, type address, type adyenGiftCardOutcome, type apiClient, type apiClientInput, type apiClientListResponse, type article, type articleMetadata, type authoritySportLevels, type availability, type booking, type bookingGroup, bookingRestriction, type bookingRestrictions, bookingSubType, bookingSubscription, type bookingSubscriptionPayment, type bookingUser, bookingUserStatus, type bookingUsersResponse, type bookingsResponse, type camera, cancellationPolicy, chat, type chatAuth, chatCreation, chatTarget, type checkoutResponse, clientType, type competitionAdminAccount, type config, type configuration, type configurationEntry, type configurationMap, type configurationResource, type coupon, type createBookingEventExternal, type createPromoCode, type dailyQuota, type days, type deleteBookingEventExternal, directionParam, type endTimePriceDetail, type endTimesWithRestrictions, type exposeOccasions, type facilitiesResponse, type facility, type facilityConfiguration, type facilityDetails, type friendRelationResponse, type friendRelationsResponse, type giftCard, type hideFullyBooked, type hours, type internalPaymentMethod, type levelRange, type limitParam, type listOfChats, type listUserRelations, type match, type membershipRequest, type membershipRequestItem, type monthlyUsage, months, type newMessageNotification, notificationChatGroup, type notificationChatMember, notificationEntity, type notificationMessage, type notificationMessageData, type occasionBooking, type occasionParticipant, type offsetParam, type openingHours, type order, type orderSplitBaseResponse, type participants, type payment, type paymentDetails, type paymentInfo, type paymentInterval, type paymentMethodPaymentDetail, type paymentMethods, type paymentType, type paymentsResponse, pendingPayment, type playSession, type playSessionBooking, type playSessionBookingPayment, type playSessionResponse, playSessionSettings, playSessionUser, type playerLevels, playerRefundInfo, playerStatusParam, playingUserResponse, type playingUsersResponse, type playsessionUserDetails, type position, type price, type priceDetails, type priceDetailsActivity, type profile, type promoCode, type promoCodeOutcome, type pspSession, type resource, type resultSet, type serviceFee, type sportLevels, type timeOfDay, type timeStamp, type usagePlan, userChatStatusParam, userChatTargetParam, type userFacility, type userId, type userInfo, type userMembership, type userOfferPunchCardsResponse, type userOfferValueCardsResponse, type userPublicProfile, userPunchCard, userRelation, userRelationStatusParam, type userValueCard, indexV1 as v1, type valueCardOutcome };
|