@matchi/api 0.20260522.1 → 0.20260527.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 +754 -115
- package/dist/main/index.d.ts +754 -115
- package/dist/main/index.js +16 -10
- package/dist/main/index.mjs +16 -10
- package/package.json +1 -1
package/dist/main/index.d.ts
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.
|
|
@@ -3629,14 +3635,6 @@ type CommunityListResponse = {
|
|
|
3629
3635
|
items: Array<CommunityItem>;
|
|
3630
3636
|
meta: PaginationMeta;
|
|
3631
3637
|
};
|
|
3632
|
-
type CommunityPayload = {
|
|
3633
|
-
comment_id?: string;
|
|
3634
|
-
community_id?: string;
|
|
3635
|
-
description: string;
|
|
3636
|
-
post_id?: string;
|
|
3637
|
-
title: string;
|
|
3638
|
-
topic: Topic;
|
|
3639
|
-
};
|
|
3640
3638
|
type CreateCommentRequest = {
|
|
3641
3639
|
content: string;
|
|
3642
3640
|
};
|
|
@@ -3677,14 +3675,24 @@ type ExternalService = {
|
|
|
3677
3675
|
name: string;
|
|
3678
3676
|
};
|
|
3679
3677
|
type Facility = {
|
|
3680
|
-
|
|
3681
|
-
|
|
3682
|
-
|
|
3683
|
-
|
|
3678
|
+
active?: boolean;
|
|
3679
|
+
address: Address;
|
|
3680
|
+
bookable?: boolean;
|
|
3681
|
+
currency?: string;
|
|
3682
|
+
description?: string;
|
|
3683
|
+
email?: string;
|
|
3684
|
+
id: number;
|
|
3685
|
+
logo_url: string;
|
|
3686
|
+
name: string;
|
|
3687
|
+
phone_number?: string;
|
|
3688
|
+
position: Position;
|
|
3689
|
+
resource_types: Array<string>;
|
|
3690
|
+
sports?: Array<string>;
|
|
3691
|
+
website?: string;
|
|
3684
3692
|
};
|
|
3685
3693
|
type FacilityList = {
|
|
3686
3694
|
items: Array<Facility>;
|
|
3687
|
-
|
|
3695
|
+
result_set: PkgOpenapiSharedOffsetPaginatedResultSet;
|
|
3688
3696
|
};
|
|
3689
3697
|
type FacilityMessagePayload = {
|
|
3690
3698
|
description: string;
|
|
@@ -3968,7 +3976,7 @@ type Notification = {
|
|
|
3968
3976
|
source_id: string;
|
|
3969
3977
|
topic: Topic;
|
|
3970
3978
|
};
|
|
3971
|
-
type NotificationPayload = FacilityMessagePayload
|
|
3979
|
+
type NotificationPayload = FacilityMessagePayload;
|
|
3972
3980
|
type NotificationRequestBody = {
|
|
3973
3981
|
/**
|
|
3974
3982
|
* true to mark as read, false to mark as unread
|
|
@@ -4007,18 +4015,19 @@ type PaginationMeta = {
|
|
|
4007
4015
|
};
|
|
4008
4016
|
};
|
|
4009
4017
|
/**
|
|
4010
|
-
*
|
|
4018
|
+
* Player-facing participant row with join timestamp. Tagged union over
|
|
4019
|
+
* PUBLIC and PRIVATE variants — see ParticipantSummary.
|
|
4020
|
+
*
|
|
4021
|
+
*/
|
|
4022
|
+
type ParticipantDetail = PublicParticipantDetail | PrivateParticipantDetail;
|
|
4023
|
+
/**
|
|
4024
|
+
* Player-facing participant row. Tagged union over PUBLIC (full data) and
|
|
4025
|
+
* PRIVATE (placeholder for users with searchable=false), distinguished by
|
|
4026
|
+
* the `kind` property on each variant. See
|
|
4027
|
+
* openspec/specs/match-participant-privacy/spec.md in team-discovery-docs.
|
|
4028
|
+
*
|
|
4011
4029
|
*/
|
|
4012
|
-
type
|
|
4013
|
-
joined_at: string;
|
|
4014
|
-
};
|
|
4015
|
-
type ParticipantSummary = {
|
|
4016
|
-
first_name: string | null;
|
|
4017
|
-
last_name: string | null;
|
|
4018
|
-
level?: string | null;
|
|
4019
|
-
profile_image_url?: string | null;
|
|
4020
|
-
user_id: string | null;
|
|
4021
|
-
};
|
|
4030
|
+
type ParticipantSummary = PublicParticipantSummary | PrivateParticipantSummary;
|
|
4022
4031
|
type PatchCommentRequest = {
|
|
4023
4032
|
is_read?: boolean;
|
|
4024
4033
|
};
|
|
@@ -4048,6 +4057,10 @@ type PaymentDetails = {
|
|
|
4048
4057
|
price?: number | null;
|
|
4049
4058
|
status?: string | null;
|
|
4050
4059
|
};
|
|
4060
|
+
type Position = {
|
|
4061
|
+
latitude: number;
|
|
4062
|
+
longitude: number;
|
|
4063
|
+
};
|
|
4051
4064
|
type Post = {
|
|
4052
4065
|
author: Author;
|
|
4053
4066
|
comment_count: number;
|
|
@@ -4082,6 +4095,46 @@ type Preference = {
|
|
|
4082
4095
|
type PreferencesResponse = {
|
|
4083
4096
|
items: Array<Preference>;
|
|
4084
4097
|
};
|
|
4098
|
+
/**
|
|
4099
|
+
* PRIVATE variant of ParticipantDetail. Carries only kind, participation_id, and joined_at.
|
|
4100
|
+
*/
|
|
4101
|
+
type PrivateParticipantDetail = {
|
|
4102
|
+
joined_at: string;
|
|
4103
|
+
kind: 'PRIVATE';
|
|
4104
|
+
participation_id: string;
|
|
4105
|
+
};
|
|
4106
|
+
/**
|
|
4107
|
+
* Minimal placeholder for a participant whose User.searchable is false. Carries only kind and participation_id — no PII.
|
|
4108
|
+
*/
|
|
4109
|
+
type PrivateParticipantSummary = {
|
|
4110
|
+
kind: 'PRIVATE';
|
|
4111
|
+
participation_id: string;
|
|
4112
|
+
};
|
|
4113
|
+
type PublicParticipantDetail = {
|
|
4114
|
+
first_name?: string | null;
|
|
4115
|
+
joined_at: string;
|
|
4116
|
+
kind: 'PUBLIC';
|
|
4117
|
+
last_name?: string | null;
|
|
4118
|
+
level?: string | null;
|
|
4119
|
+
participation_id: string;
|
|
4120
|
+
profile_image_url?: string | null;
|
|
4121
|
+
user_id?: string | null;
|
|
4122
|
+
};
|
|
4123
|
+
type PublicParticipantSummary = {
|
|
4124
|
+
first_name?: string | null;
|
|
4125
|
+
kind: 'PUBLIC';
|
|
4126
|
+
last_name?: string | null;
|
|
4127
|
+
level?: string | null;
|
|
4128
|
+
/**
|
|
4129
|
+
* Opaque per-row identifier sourced from Participation.id.
|
|
4130
|
+
*/
|
|
4131
|
+
participation_id: string;
|
|
4132
|
+
profile_image_url?: string | null;
|
|
4133
|
+
/**
|
|
4134
|
+
* Matchi user ID. Null for guest customers (no Matchi user).
|
|
4135
|
+
*/
|
|
4136
|
+
user_id?: string | null;
|
|
4137
|
+
};
|
|
4085
4138
|
/**
|
|
4086
4139
|
* A personalized recommendation. The common fields describe what, where, and when. Use type + id to navigate to the specific entity.
|
|
4087
4140
|
*
|
|
@@ -4180,9 +4233,23 @@ type RegisterDeviceRequest = {
|
|
|
4180
4233
|
language?: string;
|
|
4181
4234
|
os: 'ios' | 'android';
|
|
4182
4235
|
};
|
|
4236
|
+
type Resource = {
|
|
4237
|
+
description?: string;
|
|
4238
|
+
facility_id: number;
|
|
4239
|
+
id: number;
|
|
4240
|
+
indoor?: boolean;
|
|
4241
|
+
name: string;
|
|
4242
|
+
/**
|
|
4243
|
+
* Sport type. Available sports are served from the /config endpoint.
|
|
4244
|
+
*/
|
|
4245
|
+
sport?: string;
|
|
4246
|
+
/**
|
|
4247
|
+
* Court surface type. Available surfaces are served from the /config endpoint.
|
|
4248
|
+
*/
|
|
4249
|
+
surface?: string;
|
|
4250
|
+
};
|
|
4183
4251
|
declare const Source: {
|
|
4184
4252
|
readonly FACILITY: "FACILITY";
|
|
4185
|
-
readonly COMMUNITY: "COMMUNITY";
|
|
4186
4253
|
};
|
|
4187
4254
|
type Source = typeof Source[keyof typeof Source];
|
|
4188
4255
|
type SportAuthoritiesResponse = {
|
|
@@ -4276,11 +4343,6 @@ type SportProfilesResponse = {
|
|
|
4276
4343
|
};
|
|
4277
4344
|
declare const Topic: {
|
|
4278
4345
|
readonly FACILITY_MESSAGE: "FACILITY_MESSAGE";
|
|
4279
|
-
readonly COMMUNITY_USER_INVITED: "COMMUNITY_USER_INVITED";
|
|
4280
|
-
readonly COMMUNITY_USER_REMOVED: "COMMUNITY_USER_REMOVED";
|
|
4281
|
-
readonly COMMUNITY_POST_CREATED: "COMMUNITY_POST_CREATED";
|
|
4282
|
-
readonly COMMUNITY_COMMENT_CREATED: "COMMUNITY_COMMENT_CREATED";
|
|
4283
|
-
readonly COMMUNITY_BLOCKED_USER_JOINED: "COMMUNITY_BLOCKED_USER_JOINED";
|
|
4284
4346
|
};
|
|
4285
4347
|
type Topic = typeof Topic[keyof typeof Topic];
|
|
4286
4348
|
type UpdatePreferencesRequestBody = {
|
|
@@ -4394,6 +4456,36 @@ type PkgOpenapiSharedError = {
|
|
|
4394
4456
|
* An array of error details to accompany a problem details response.
|
|
4395
4457
|
*/
|
|
4396
4458
|
type PkgOpenapiSharedErrors = Array<PkgOpenapiSharedError>;
|
|
4459
|
+
/**
|
|
4460
|
+
* String filter in PostgREST format: `operator.value`
|
|
4461
|
+
*
|
|
4462
|
+
* **Allowed operators:** eq, like, ilike, is, in
|
|
4463
|
+
* **Negation:** Prefix with `not.` (e.g., `not.eq.value`)
|
|
4464
|
+
*
|
|
4465
|
+
* **Supported use cases:**
|
|
4466
|
+
* - International names: Any Unicode letters (Chinese, Arabic, Cyrillic, etc.)
|
|
4467
|
+
* - Names with apostrophes: `eq.O'Brien`, `eq.D'Angelo`
|
|
4468
|
+
* - Email addresses: `eq.user@example.com`
|
|
4469
|
+
* - Nordic characters: `eq.København`, `like.träning*`
|
|
4470
|
+
* - Wildcards: `like.train*`, `ilike.*search*`
|
|
4471
|
+
* - Special chars: dots, hyphens, underscores, @, +, spaces, etc.
|
|
4472
|
+
* - Lists: `in.(value1,value2,value3)` or `not.in.(value1,value2,value3)`
|
|
4473
|
+
*
|
|
4474
|
+
* Examples:
|
|
4475
|
+
* - `eq.training` - Exact match
|
|
4476
|
+
* - `eq.O'Brien` - Name with apostrophe
|
|
4477
|
+
* - `eq.user@example.com` - Email address
|
|
4478
|
+
* - `eq.名前` - Japanese characters
|
|
4479
|
+
* - `eq.Björk` - Nordic characters
|
|
4480
|
+
* - `like.münchen*` - German with wildcard
|
|
4481
|
+
* - `ilike.*josé*` - Spanish name search
|
|
4482
|
+
* - `is.null` - Is NULL
|
|
4483
|
+
* - `not.eq.value` - Not equal
|
|
4484
|
+
* - `in.(value1,value2,value3)` - List of values
|
|
4485
|
+
* - `not.in.(value1,value2,value3)` - Not in list
|
|
4486
|
+
*
|
|
4487
|
+
*/
|
|
4488
|
+
type PkgOpenapiSharedFilterableString = string;
|
|
4397
4489
|
/**
|
|
4398
4490
|
* 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
4491
|
*
|
|
@@ -4436,6 +4528,7 @@ type FacilityIdPath = string;
|
|
|
4436
4528
|
type NotificationsFilterParam = NotificationsFilter;
|
|
4437
4529
|
type OfferIdPath = string;
|
|
4438
4530
|
type PostIdParam = string;
|
|
4531
|
+
type ResourceIdPath = string;
|
|
4439
4532
|
/**
|
|
4440
4533
|
* The sport profile ID
|
|
4441
4534
|
*/
|
|
@@ -5007,6 +5100,105 @@ type MarkCommentReadResponses = {
|
|
|
5007
5100
|
200: Comment;
|
|
5008
5101
|
};
|
|
5009
5102
|
type MarkCommentReadResponse = MarkCommentReadResponses[keyof MarkCommentReadResponses];
|
|
5103
|
+
type ListFacilitiesData = {
|
|
5104
|
+
body?: never;
|
|
5105
|
+
path?: never;
|
|
5106
|
+
query?: {
|
|
5107
|
+
/**
|
|
5108
|
+
* Filter by city name. Example: `eq.Stockholm`, `like.Stock%`
|
|
5109
|
+
*
|
|
5110
|
+
*/
|
|
5111
|
+
city?: PkgOpenapiSharedFilterableString;
|
|
5112
|
+
/**
|
|
5113
|
+
* Filter by ISO 3166-1 alpha-2 country code. Example: `eq.SE`, `in.(SE,NO,DK)`
|
|
5114
|
+
*
|
|
5115
|
+
*/
|
|
5116
|
+
country_code?: PkgOpenapiSharedFilterableString;
|
|
5117
|
+
/**
|
|
5118
|
+
* Filter by facility name. Example: `ilike.%padel%`
|
|
5119
|
+
*
|
|
5120
|
+
*/
|
|
5121
|
+
name?: PkgOpenapiSharedFilterableString;
|
|
5122
|
+
/**
|
|
5123
|
+
* Latitude for geographic search. Must be provided together with longitude.
|
|
5124
|
+
*/
|
|
5125
|
+
latitude?: number;
|
|
5126
|
+
/**
|
|
5127
|
+
* Longitude for geographic search. Must be provided together with latitude.
|
|
5128
|
+
*/
|
|
5129
|
+
longitude?: number;
|
|
5130
|
+
/**
|
|
5131
|
+
* Search radius in kilometers. Only used with latitude/longitude.
|
|
5132
|
+
*/
|
|
5133
|
+
radius_km?: number;
|
|
5134
|
+
/**
|
|
5135
|
+
* Filter by resource types available at the facility. Available types are served from the /config endpoint.
|
|
5136
|
+
*
|
|
5137
|
+
*/
|
|
5138
|
+
resource_types?: Array<string>;
|
|
5139
|
+
/**
|
|
5140
|
+
* Number of items to skip before returning the results.
|
|
5141
|
+
*/
|
|
5142
|
+
offset?: number;
|
|
5143
|
+
/**
|
|
5144
|
+
* Maximum number of items to return.
|
|
5145
|
+
*/
|
|
5146
|
+
limit?: number;
|
|
5147
|
+
};
|
|
5148
|
+
url: '/facilities';
|
|
5149
|
+
};
|
|
5150
|
+
type ListFacilitiesErrors = {
|
|
5151
|
+
/**
|
|
5152
|
+
* The request was malformed or could not be processed.
|
|
5153
|
+
*/
|
|
5154
|
+
400: PkgOpenapiSharedProblemDetails;
|
|
5155
|
+
/**
|
|
5156
|
+
* Access token is not set or invalid.
|
|
5157
|
+
*/
|
|
5158
|
+
401: PkgOpenapiSharedProblemDetails;
|
|
5159
|
+
/**
|
|
5160
|
+
* The server encountered an unexpected error
|
|
5161
|
+
*/
|
|
5162
|
+
500: PkgOpenapiSharedProblemDetails;
|
|
5163
|
+
};
|
|
5164
|
+
type ListFacilitiesError = ListFacilitiesErrors[keyof ListFacilitiesErrors];
|
|
5165
|
+
type ListFacilitiesResponses = {
|
|
5166
|
+
/**
|
|
5167
|
+
* OK
|
|
5168
|
+
*/
|
|
5169
|
+
200: FacilityList;
|
|
5170
|
+
};
|
|
5171
|
+
type ListFacilitiesResponse = ListFacilitiesResponses[keyof ListFacilitiesResponses];
|
|
5172
|
+
type GetFacilityData = {
|
|
5173
|
+
body?: never;
|
|
5174
|
+
path: {
|
|
5175
|
+
facility_id: string;
|
|
5176
|
+
};
|
|
5177
|
+
query?: never;
|
|
5178
|
+
url: '/facilities/{facility_id}';
|
|
5179
|
+
};
|
|
5180
|
+
type GetFacilityErrors = {
|
|
5181
|
+
/**
|
|
5182
|
+
* Access token is not set or invalid.
|
|
5183
|
+
*/
|
|
5184
|
+
401: PkgOpenapiSharedProblemDetails;
|
|
5185
|
+
/**
|
|
5186
|
+
* The requested resource was not found.
|
|
5187
|
+
*/
|
|
5188
|
+
404: PkgOpenapiSharedProblemDetails;
|
|
5189
|
+
/**
|
|
5190
|
+
* The server encountered an unexpected error
|
|
5191
|
+
*/
|
|
5192
|
+
500: PkgOpenapiSharedProblemDetails;
|
|
5193
|
+
};
|
|
5194
|
+
type GetFacilityError = GetFacilityErrors[keyof GetFacilityErrors];
|
|
5195
|
+
type GetFacilityResponses = {
|
|
5196
|
+
/**
|
|
5197
|
+
* OK
|
|
5198
|
+
*/
|
|
5199
|
+
200: Facility;
|
|
5200
|
+
};
|
|
5201
|
+
type GetFacilityResponse = GetFacilityResponses[keyof GetFacilityResponses];
|
|
5010
5202
|
type ListFacilityOffersData = {
|
|
5011
5203
|
body?: never;
|
|
5012
5204
|
path: {
|
|
@@ -5090,6 +5282,39 @@ type CreateFacilityOfferOrderResponses = {
|
|
|
5090
5282
|
200: FacilityOfferOrder;
|
|
5091
5283
|
};
|
|
5092
5284
|
type CreateFacilityOfferOrderResponse = CreateFacilityOfferOrderResponses[keyof CreateFacilityOfferOrderResponses];
|
|
5285
|
+
type ListFacilityResourcesData = {
|
|
5286
|
+
body?: never;
|
|
5287
|
+
path: {
|
|
5288
|
+
facility_id: string;
|
|
5289
|
+
};
|
|
5290
|
+
query?: never;
|
|
5291
|
+
url: '/facilities/{facility_id}/resources';
|
|
5292
|
+
};
|
|
5293
|
+
type ListFacilityResourcesErrors = {
|
|
5294
|
+
/**
|
|
5295
|
+
* Access token is not set or invalid.
|
|
5296
|
+
*/
|
|
5297
|
+
401: PkgOpenapiSharedProblemDetails;
|
|
5298
|
+
/**
|
|
5299
|
+
* The requested resource was not found.
|
|
5300
|
+
*/
|
|
5301
|
+
404: PkgOpenapiSharedProblemDetails;
|
|
5302
|
+
/**
|
|
5303
|
+
* The server encountered an unexpected error
|
|
5304
|
+
*/
|
|
5305
|
+
500: PkgOpenapiSharedProblemDetails;
|
|
5306
|
+
};
|
|
5307
|
+
type ListFacilityResourcesError = ListFacilityResourcesErrors[keyof ListFacilityResourcesErrors];
|
|
5308
|
+
type ListFacilityResourcesResponses = {
|
|
5309
|
+
/**
|
|
5310
|
+
* OK
|
|
5311
|
+
*/
|
|
5312
|
+
200: {
|
|
5313
|
+
items: Array<Resource>;
|
|
5314
|
+
result_set: PkgOpenapiSharedOffsetPaginatedResultSet;
|
|
5315
|
+
};
|
|
5316
|
+
};
|
|
5317
|
+
type ListFacilityResourcesResponse = ListFacilityResourcesResponses[keyof ListFacilityResourcesResponses];
|
|
5093
5318
|
type ListMatchesData = {
|
|
5094
5319
|
body?: never;
|
|
5095
5320
|
path?: never;
|
|
@@ -5416,7 +5641,7 @@ type UpdateNotificationsPreferencesData = {
|
|
|
5416
5641
|
body: UpdatePreferencesRequestBody;
|
|
5417
5642
|
path?: never;
|
|
5418
5643
|
query: {
|
|
5419
|
-
topic:
|
|
5644
|
+
topic: Topic;
|
|
5420
5645
|
source?: Source;
|
|
5421
5646
|
source_id?: string;
|
|
5422
5647
|
};
|
|
@@ -5524,6 +5749,36 @@ type UpdateNotificationResponses = {
|
|
|
5524
5749
|
200: Notification;
|
|
5525
5750
|
};
|
|
5526
5751
|
type UpdateNotificationResponse = UpdateNotificationResponses[keyof UpdateNotificationResponses];
|
|
5752
|
+
type GetResourceData = {
|
|
5753
|
+
body?: never;
|
|
5754
|
+
path: {
|
|
5755
|
+
resource_id: string;
|
|
5756
|
+
};
|
|
5757
|
+
query?: never;
|
|
5758
|
+
url: '/resources/{resource_id}';
|
|
5759
|
+
};
|
|
5760
|
+
type GetResourceErrors = {
|
|
5761
|
+
/**
|
|
5762
|
+
* Access token is not set or invalid.
|
|
5763
|
+
*/
|
|
5764
|
+
401: PkgOpenapiSharedProblemDetails;
|
|
5765
|
+
/**
|
|
5766
|
+
* The requested resource was not found.
|
|
5767
|
+
*/
|
|
5768
|
+
404: PkgOpenapiSharedProblemDetails;
|
|
5769
|
+
/**
|
|
5770
|
+
* The server encountered an unexpected error
|
|
5771
|
+
*/
|
|
5772
|
+
500: PkgOpenapiSharedProblemDetails;
|
|
5773
|
+
};
|
|
5774
|
+
type GetResourceError = GetResourceErrors[keyof GetResourceErrors];
|
|
5775
|
+
type GetResourceResponses = {
|
|
5776
|
+
/**
|
|
5777
|
+
* OK
|
|
5778
|
+
*/
|
|
5779
|
+
200: Resource;
|
|
5780
|
+
};
|
|
5781
|
+
type GetResourceResponse = GetResourceResponses[keyof GetResourceResponses];
|
|
5527
5782
|
type GetSportAuthoritiesData = {
|
|
5528
5783
|
body?: never;
|
|
5529
5784
|
path?: never;
|
|
@@ -6139,6 +6394,23 @@ type UpdateUserSportProfileLevelResponse = UpdateUserSportProfileLevelResponses[
|
|
|
6139
6394
|
|
|
6140
6395
|
declare const client: Client;
|
|
6141
6396
|
|
|
6397
|
+
declare const AddressSchema: {
|
|
6398
|
+
readonly properties: {
|
|
6399
|
+
readonly city: {
|
|
6400
|
+
readonly type: "string";
|
|
6401
|
+
};
|
|
6402
|
+
readonly country: {
|
|
6403
|
+
readonly type: "string";
|
|
6404
|
+
};
|
|
6405
|
+
readonly street: {
|
|
6406
|
+
readonly type: "string";
|
|
6407
|
+
};
|
|
6408
|
+
readonly zip: {
|
|
6409
|
+
readonly type: "string";
|
|
6410
|
+
};
|
|
6411
|
+
};
|
|
6412
|
+
readonly type: "object";
|
|
6413
|
+
};
|
|
6142
6414
|
declare const AuthorSchema: {
|
|
6143
6415
|
readonly properties: {
|
|
6144
6416
|
readonly type: {
|
|
@@ -6267,34 +6539,6 @@ declare const CommunityListResponseSchema: {
|
|
|
6267
6539
|
readonly required: readonly ["items", "meta"];
|
|
6268
6540
|
readonly type: "object";
|
|
6269
6541
|
};
|
|
6270
|
-
declare const CommunityPayloadSchema: {
|
|
6271
|
-
readonly additionalProperties: false;
|
|
6272
|
-
readonly properties: {
|
|
6273
|
-
readonly comment_id: {
|
|
6274
|
-
readonly format: "uuid";
|
|
6275
|
-
readonly type: "string";
|
|
6276
|
-
};
|
|
6277
|
-
readonly community_id: {
|
|
6278
|
-
readonly format: "uuid";
|
|
6279
|
-
readonly type: "string";
|
|
6280
|
-
};
|
|
6281
|
-
readonly description: {
|
|
6282
|
-
readonly type: "string";
|
|
6283
|
-
};
|
|
6284
|
-
readonly post_id: {
|
|
6285
|
-
readonly format: "uuid";
|
|
6286
|
-
readonly type: "string";
|
|
6287
|
-
};
|
|
6288
|
-
readonly title: {
|
|
6289
|
-
readonly type: "string";
|
|
6290
|
-
};
|
|
6291
|
-
readonly topic: {
|
|
6292
|
-
readonly $ref: "#/components/schemas/Topic";
|
|
6293
|
-
};
|
|
6294
|
-
};
|
|
6295
|
-
readonly required: readonly ["topic", "title", "description"];
|
|
6296
|
-
readonly type: "object";
|
|
6297
|
-
};
|
|
6298
6542
|
declare const CreateCommentRequestSchema: {
|
|
6299
6543
|
readonly properties: {
|
|
6300
6544
|
readonly content: {
|
|
@@ -6398,22 +6642,59 @@ declare const ExternalServiceSchema: {
|
|
|
6398
6642
|
};
|
|
6399
6643
|
declare const FacilitySchema: {
|
|
6400
6644
|
readonly properties: {
|
|
6401
|
-
readonly
|
|
6645
|
+
readonly active: {
|
|
6646
|
+
readonly type: "boolean";
|
|
6647
|
+
};
|
|
6648
|
+
readonly address: {
|
|
6649
|
+
readonly $ref: "#/components/schemas/Address";
|
|
6650
|
+
};
|
|
6651
|
+
readonly bookable: {
|
|
6652
|
+
readonly type: "boolean";
|
|
6653
|
+
};
|
|
6654
|
+
readonly currency: {
|
|
6655
|
+
readonly type: "string";
|
|
6656
|
+
};
|
|
6657
|
+
readonly description: {
|
|
6658
|
+
readonly type: "string";
|
|
6659
|
+
};
|
|
6660
|
+
readonly email: {
|
|
6661
|
+
readonly format: "email";
|
|
6402
6662
|
readonly type: "string";
|
|
6403
6663
|
};
|
|
6404
6664
|
readonly id: {
|
|
6405
|
-
readonly
|
|
6665
|
+
readonly type: "integer";
|
|
6666
|
+
};
|
|
6667
|
+
readonly logo_url: {
|
|
6668
|
+
readonly format: "uri";
|
|
6406
6669
|
readonly type: "string";
|
|
6407
6670
|
};
|
|
6408
|
-
readonly
|
|
6409
|
-
readonly format: "date-time";
|
|
6671
|
+
readonly name: {
|
|
6410
6672
|
readonly type: "string";
|
|
6411
6673
|
};
|
|
6412
|
-
readonly
|
|
6674
|
+
readonly phone_number: {
|
|
6675
|
+
readonly type: "string";
|
|
6676
|
+
};
|
|
6677
|
+
readonly position: {
|
|
6678
|
+
readonly $ref: "#/components/schemas/Position";
|
|
6679
|
+
};
|
|
6680
|
+
readonly resource_types: {
|
|
6681
|
+
readonly items: {
|
|
6682
|
+
readonly type: "string";
|
|
6683
|
+
};
|
|
6684
|
+
readonly type: "array";
|
|
6685
|
+
};
|
|
6686
|
+
readonly sports: {
|
|
6687
|
+
readonly items: {
|
|
6688
|
+
readonly type: "string";
|
|
6689
|
+
};
|
|
6690
|
+
readonly type: "array";
|
|
6691
|
+
};
|
|
6692
|
+
readonly website: {
|
|
6693
|
+
readonly format: "uri";
|
|
6413
6694
|
readonly type: "string";
|
|
6414
6695
|
};
|
|
6415
6696
|
};
|
|
6416
|
-
readonly required: readonly ["id"];
|
|
6697
|
+
readonly required: readonly ["id", "name", "logo_url", "address", "position", "resource_types"];
|
|
6417
6698
|
readonly type: "object";
|
|
6418
6699
|
};
|
|
6419
6700
|
declare const FacilityListSchema: {
|
|
@@ -6424,15 +6705,14 @@ declare const FacilityListSchema: {
|
|
|
6424
6705
|
};
|
|
6425
6706
|
readonly type: "array";
|
|
6426
6707
|
};
|
|
6427
|
-
readonly
|
|
6428
|
-
readonly $ref: "#/components/schemas/
|
|
6708
|
+
readonly result_set: {
|
|
6709
|
+
readonly $ref: "#/components/schemas/pkgOpenapiSharedOffsetPaginatedResultSet";
|
|
6429
6710
|
};
|
|
6430
6711
|
};
|
|
6431
|
-
readonly required: readonly ["
|
|
6712
|
+
readonly required: readonly ["result_set", "items"];
|
|
6432
6713
|
readonly type: "object";
|
|
6433
6714
|
};
|
|
6434
6715
|
declare const FacilityMessagePayloadSchema: {
|
|
6435
|
-
readonly additionalProperties: false;
|
|
6436
6716
|
readonly properties: {
|
|
6437
6717
|
readonly description: {
|
|
6438
6718
|
readonly type: "string";
|
|
@@ -7180,8 +7460,6 @@ declare const NotificationSchema: {
|
|
|
7180
7460
|
declare const NotificationPayloadSchema: {
|
|
7181
7461
|
readonly oneOf: readonly [{
|
|
7182
7462
|
readonly $ref: "#/components/schemas/FacilityMessagePayload";
|
|
7183
|
-
}, {
|
|
7184
|
-
readonly $ref: "#/components/schemas/CommunityPayload";
|
|
7185
7463
|
}];
|
|
7186
7464
|
};
|
|
7187
7465
|
declare const NotificationRequestBodySchema: {
|
|
@@ -7278,46 +7556,20 @@ declare const PaginationMetaSchema: {
|
|
|
7278
7556
|
readonly type: "object";
|
|
7279
7557
|
};
|
|
7280
7558
|
declare const ParticipantDetailSchema: {
|
|
7281
|
-
readonly
|
|
7282
|
-
|
|
7559
|
+
readonly description: "Player-facing participant row with join timestamp. Tagged union over\nPUBLIC and PRIVATE variants — see ParticipantSummary.\n";
|
|
7560
|
+
readonly oneOf: readonly [{
|
|
7561
|
+
readonly $ref: "#/components/schemas/PublicParticipantDetail";
|
|
7283
7562
|
}, {
|
|
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";
|
|
7563
|
+
readonly $ref: "#/components/schemas/PrivateParticipantDetail";
|
|
7292
7564
|
}];
|
|
7293
|
-
readonly description: "Participant with join timestamp. Extends ParticipantSummary.";
|
|
7294
7565
|
};
|
|
7295
7566
|
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";
|
|
7567
|
+
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";
|
|
7568
|
+
readonly oneOf: readonly [{
|
|
7569
|
+
readonly $ref: "#/components/schemas/PublicParticipantSummary";
|
|
7570
|
+
}, {
|
|
7571
|
+
readonly $ref: "#/components/schemas/PrivateParticipantSummary";
|
|
7572
|
+
}];
|
|
7321
7573
|
};
|
|
7322
7574
|
declare const PatchCommentRequestSchema: {
|
|
7323
7575
|
readonly properties: {
|
|
@@ -7384,6 +7636,20 @@ declare const PaymentDetailsSchema: {
|
|
|
7384
7636
|
readonly required: readonly ["id"];
|
|
7385
7637
|
readonly type: "object";
|
|
7386
7638
|
};
|
|
7639
|
+
declare const PositionSchema: {
|
|
7640
|
+
readonly properties: {
|
|
7641
|
+
readonly latitude: {
|
|
7642
|
+
readonly format: "double";
|
|
7643
|
+
readonly type: "number";
|
|
7644
|
+
};
|
|
7645
|
+
readonly longitude: {
|
|
7646
|
+
readonly format: "double";
|
|
7647
|
+
readonly type: "number";
|
|
7648
|
+
};
|
|
7649
|
+
};
|
|
7650
|
+
readonly required: readonly ["latitude", "longitude"];
|
|
7651
|
+
readonly type: "object";
|
|
7652
|
+
};
|
|
7387
7653
|
declare const PostSchema: {
|
|
7388
7654
|
readonly properties: {
|
|
7389
7655
|
readonly author: {
|
|
@@ -7488,6 +7754,112 @@ declare const PreferencesResponseSchema: {
|
|
|
7488
7754
|
readonly required: readonly ["items"];
|
|
7489
7755
|
readonly type: "object";
|
|
7490
7756
|
};
|
|
7757
|
+
declare const PrivateParticipantDetailSchema: {
|
|
7758
|
+
readonly description: "PRIVATE variant of ParticipantDetail. Carries only kind, participation_id, and joined_at.";
|
|
7759
|
+
readonly properties: {
|
|
7760
|
+
readonly joined_at: {
|
|
7761
|
+
readonly format: "date-time";
|
|
7762
|
+
readonly type: "string";
|
|
7763
|
+
};
|
|
7764
|
+
readonly kind: {
|
|
7765
|
+
readonly enum: readonly ["PRIVATE"];
|
|
7766
|
+
readonly type: "string";
|
|
7767
|
+
};
|
|
7768
|
+
readonly participation_id: {
|
|
7769
|
+
readonly type: "string";
|
|
7770
|
+
};
|
|
7771
|
+
};
|
|
7772
|
+
readonly required: readonly ["kind", "participation_id", "joined_at"];
|
|
7773
|
+
readonly type: "object";
|
|
7774
|
+
};
|
|
7775
|
+
declare const PrivateParticipantSummarySchema: {
|
|
7776
|
+
readonly description: "Minimal placeholder for a participant whose User.searchable is false. Carries only kind and participation_id — no PII.";
|
|
7777
|
+
readonly properties: {
|
|
7778
|
+
readonly kind: {
|
|
7779
|
+
readonly enum: readonly ["PRIVATE"];
|
|
7780
|
+
readonly type: "string";
|
|
7781
|
+
};
|
|
7782
|
+
readonly participation_id: {
|
|
7783
|
+
readonly type: "string";
|
|
7784
|
+
};
|
|
7785
|
+
};
|
|
7786
|
+
readonly required: readonly ["kind", "participation_id"];
|
|
7787
|
+
readonly type: "object";
|
|
7788
|
+
};
|
|
7789
|
+
declare const PublicParticipantDetailSchema: {
|
|
7790
|
+
readonly properties: {
|
|
7791
|
+
readonly first_name: {
|
|
7792
|
+
readonly nullable: true;
|
|
7793
|
+
readonly type: "string";
|
|
7794
|
+
};
|
|
7795
|
+
readonly joined_at: {
|
|
7796
|
+
readonly format: "date-time";
|
|
7797
|
+
readonly type: "string";
|
|
7798
|
+
};
|
|
7799
|
+
readonly kind: {
|
|
7800
|
+
readonly enum: readonly ["PUBLIC"];
|
|
7801
|
+
readonly type: "string";
|
|
7802
|
+
};
|
|
7803
|
+
readonly last_name: {
|
|
7804
|
+
readonly nullable: true;
|
|
7805
|
+
readonly type: "string";
|
|
7806
|
+
};
|
|
7807
|
+
readonly level: {
|
|
7808
|
+
readonly nullable: true;
|
|
7809
|
+
readonly type: "string";
|
|
7810
|
+
};
|
|
7811
|
+
readonly participation_id: {
|
|
7812
|
+
readonly type: "string";
|
|
7813
|
+
};
|
|
7814
|
+
readonly profile_image_url: {
|
|
7815
|
+
readonly nullable: true;
|
|
7816
|
+
readonly type: "string";
|
|
7817
|
+
};
|
|
7818
|
+
readonly user_id: {
|
|
7819
|
+
readonly format: "uuid";
|
|
7820
|
+
readonly nullable: true;
|
|
7821
|
+
readonly type: "string";
|
|
7822
|
+
};
|
|
7823
|
+
};
|
|
7824
|
+
readonly required: readonly ["kind", "participation_id", "joined_at"];
|
|
7825
|
+
readonly type: "object";
|
|
7826
|
+
};
|
|
7827
|
+
declare const PublicParticipantSummarySchema: {
|
|
7828
|
+
readonly properties: {
|
|
7829
|
+
readonly first_name: {
|
|
7830
|
+
readonly nullable: true;
|
|
7831
|
+
readonly type: "string";
|
|
7832
|
+
};
|
|
7833
|
+
readonly kind: {
|
|
7834
|
+
readonly enum: readonly ["PUBLIC"];
|
|
7835
|
+
readonly type: "string";
|
|
7836
|
+
};
|
|
7837
|
+
readonly last_name: {
|
|
7838
|
+
readonly nullable: true;
|
|
7839
|
+
readonly type: "string";
|
|
7840
|
+
};
|
|
7841
|
+
readonly level: {
|
|
7842
|
+
readonly nullable: true;
|
|
7843
|
+
readonly type: "string";
|
|
7844
|
+
};
|
|
7845
|
+
readonly participation_id: {
|
|
7846
|
+
readonly description: "Opaque per-row identifier sourced from Participation.id.";
|
|
7847
|
+
readonly type: "string";
|
|
7848
|
+
};
|
|
7849
|
+
readonly profile_image_url: {
|
|
7850
|
+
readonly nullable: true;
|
|
7851
|
+
readonly type: "string";
|
|
7852
|
+
};
|
|
7853
|
+
readonly user_id: {
|
|
7854
|
+
readonly description: "Matchi user ID. Null for guest customers (no Matchi user).";
|
|
7855
|
+
readonly format: "uuid";
|
|
7856
|
+
readonly nullable: true;
|
|
7857
|
+
readonly type: "string";
|
|
7858
|
+
};
|
|
7859
|
+
};
|
|
7860
|
+
readonly required: readonly ["kind", "participation_id"];
|
|
7861
|
+
readonly type: "object";
|
|
7862
|
+
};
|
|
7491
7863
|
declare const RecommendationSchema: {
|
|
7492
7864
|
readonly description: "A personalized recommendation. The common fields describe what, where, and when. Use type + id to navigate to the specific entity.\n";
|
|
7493
7865
|
readonly properties: {
|
|
@@ -7647,8 +8019,37 @@ declare const RegisterDeviceRequestSchema: {
|
|
|
7647
8019
|
readonly required: readonly ["fcm_token", "os", "app_version"];
|
|
7648
8020
|
readonly type: "object";
|
|
7649
8021
|
};
|
|
8022
|
+
declare const ResourceSchema: {
|
|
8023
|
+
readonly properties: {
|
|
8024
|
+
readonly description: {
|
|
8025
|
+
readonly type: "string";
|
|
8026
|
+
};
|
|
8027
|
+
readonly facility_id: {
|
|
8028
|
+
readonly type: "integer";
|
|
8029
|
+
};
|
|
8030
|
+
readonly id: {
|
|
8031
|
+
readonly type: "integer";
|
|
8032
|
+
};
|
|
8033
|
+
readonly indoor: {
|
|
8034
|
+
readonly type: "boolean";
|
|
8035
|
+
};
|
|
8036
|
+
readonly name: {
|
|
8037
|
+
readonly type: "string";
|
|
8038
|
+
};
|
|
8039
|
+
readonly sport: {
|
|
8040
|
+
readonly description: "Sport type. Available sports are served from the /config endpoint.";
|
|
8041
|
+
readonly type: "string";
|
|
8042
|
+
};
|
|
8043
|
+
readonly surface: {
|
|
8044
|
+
readonly description: "Court surface type. Available surfaces are served from the /config endpoint.";
|
|
8045
|
+
readonly type: "string";
|
|
8046
|
+
};
|
|
8047
|
+
};
|
|
8048
|
+
readonly required: readonly ["id", "name", "facility_id"];
|
|
8049
|
+
readonly type: "object";
|
|
8050
|
+
};
|
|
7650
8051
|
declare const SourceSchema: {
|
|
7651
|
-
readonly enum: readonly ["FACILITY"
|
|
8052
|
+
readonly enum: readonly ["FACILITY"];
|
|
7652
8053
|
readonly type: "string";
|
|
7653
8054
|
};
|
|
7654
8055
|
declare const SportAuthoritiesResponseSchema: {
|
|
@@ -7803,7 +8204,7 @@ declare const SportProfilesResponseSchema: {
|
|
|
7803
8204
|
readonly type: "object";
|
|
7804
8205
|
};
|
|
7805
8206
|
declare const TopicSchema: {
|
|
7806
|
-
readonly enum: readonly ["FACILITY_MESSAGE"
|
|
8207
|
+
readonly enum: readonly ["FACILITY_MESSAGE"];
|
|
7807
8208
|
readonly type: "string";
|
|
7808
8209
|
};
|
|
7809
8210
|
declare const UpdatePreferencesRequestBodySchema: {
|
|
@@ -8013,6 +8414,13 @@ declare const pkgOpenapiSharedErrorsSchema: {
|
|
|
8013
8414
|
readonly maxItems: 1000;
|
|
8014
8415
|
readonly type: "array";
|
|
8015
8416
|
};
|
|
8417
|
+
declare const pkgOpenapiSharedFilterableStringSchema: {
|
|
8418
|
+
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";
|
|
8419
|
+
readonly example: "eq.training";
|
|
8420
|
+
readonly maxLength: 500;
|
|
8421
|
+
readonly pattern: "^(eq|like|ilike|not\\.(eq|like|ilike))\\..+$|^(is|not\\.is)\\.null$|^(in|not\\.in)\\.\\(.+(,.+)*\\)$";
|
|
8422
|
+
readonly type: "string";
|
|
8423
|
+
};
|
|
8016
8424
|
declare const pkgOpenapiSharedOffsetPaginatedResultSetSchema: {
|
|
8017
8425
|
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
8426
|
readonly properties: {
|
|
@@ -8067,13 +8475,13 @@ declare const pkgOpenapiSharedProblemDetailsSchema: {
|
|
|
8067
8475
|
readonly type: "object";
|
|
8068
8476
|
};
|
|
8069
8477
|
|
|
8478
|
+
declare const schemas_gen_AddressSchema: typeof AddressSchema;
|
|
8070
8479
|
declare const schemas_gen_AuthorSchema: typeof AuthorSchema;
|
|
8071
8480
|
declare const schemas_gen_ChannelsSchema: typeof ChannelsSchema;
|
|
8072
8481
|
declare const schemas_gen_CommentListResponseSchema: typeof CommentListResponseSchema;
|
|
8073
8482
|
declare const schemas_gen_CommentSchema: typeof CommentSchema;
|
|
8074
8483
|
declare const schemas_gen_CommunityItemSchema: typeof CommunityItemSchema;
|
|
8075
8484
|
declare const schemas_gen_CommunityListResponseSchema: typeof CommunityListResponseSchema;
|
|
8076
|
-
declare const schemas_gen_CommunityPayloadSchema: typeof CommunityPayloadSchema;
|
|
8077
8485
|
declare const schemas_gen_CreateCommentRequestSchema: typeof CreateCommentRequestSchema;
|
|
8078
8486
|
declare const schemas_gen_CreateMatchParticipationRequestSchema: typeof CreateMatchParticipationRequestSchema;
|
|
8079
8487
|
declare const schemas_gen_CreatePostRequestSchema: typeof CreatePostRequestSchema;
|
|
@@ -8130,16 +8538,22 @@ declare const schemas_gen_PatchCommentRequestSchema: typeof PatchCommentRequestS
|
|
|
8130
8538
|
declare const schemas_gen_PatchPostRequestSchema: typeof PatchPostRequestSchema;
|
|
8131
8539
|
declare const schemas_gen_PaymentCommandSchema: typeof PaymentCommandSchema;
|
|
8132
8540
|
declare const schemas_gen_PaymentDetailsSchema: typeof PaymentDetailsSchema;
|
|
8541
|
+
declare const schemas_gen_PositionSchema: typeof PositionSchema;
|
|
8133
8542
|
declare const schemas_gen_PostLinkSchema: typeof PostLinkSchema;
|
|
8134
8543
|
declare const schemas_gen_PostListResponseSchema: typeof PostListResponseSchema;
|
|
8135
8544
|
declare const schemas_gen_PostSchema: typeof PostSchema;
|
|
8136
8545
|
declare const schemas_gen_PostingPermissionSchema: typeof PostingPermissionSchema;
|
|
8137
8546
|
declare const schemas_gen_PreferenceSchema: typeof PreferenceSchema;
|
|
8138
8547
|
declare const schemas_gen_PreferencesResponseSchema: typeof PreferencesResponseSchema;
|
|
8548
|
+
declare const schemas_gen_PrivateParticipantDetailSchema: typeof PrivateParticipantDetailSchema;
|
|
8549
|
+
declare const schemas_gen_PrivateParticipantSummarySchema: typeof PrivateParticipantSummarySchema;
|
|
8550
|
+
declare const schemas_gen_PublicParticipantDetailSchema: typeof PublicParticipantDetailSchema;
|
|
8551
|
+
declare const schemas_gen_PublicParticipantSummarySchema: typeof PublicParticipantSummarySchema;
|
|
8139
8552
|
declare const schemas_gen_RecommendationListSchema: typeof RecommendationListSchema;
|
|
8140
8553
|
declare const schemas_gen_RecommendationSchema: typeof RecommendationSchema;
|
|
8141
8554
|
declare const schemas_gen_RefundPolicySchema: typeof RefundPolicySchema;
|
|
8142
8555
|
declare const schemas_gen_RegisterDeviceRequestSchema: typeof RegisterDeviceRequestSchema;
|
|
8556
|
+
declare const schemas_gen_ResourceSchema: typeof ResourceSchema;
|
|
8143
8557
|
declare const schemas_gen_SourceSchema: typeof SourceSchema;
|
|
8144
8558
|
declare const schemas_gen_SportAuthoritiesResponseSchema: typeof SportAuthoritiesResponseSchema;
|
|
8145
8559
|
declare const schemas_gen_SportAuthoritySchema: typeof SportAuthoritySchema;
|
|
@@ -8160,10 +8574,11 @@ declare const schemas_gen_VisibilitySchema: typeof VisibilitySchema;
|
|
|
8160
8574
|
declare const schemas_gen_pkgOpenapiSharedCursorPaginatedResultSetSchema: typeof pkgOpenapiSharedCursorPaginatedResultSetSchema;
|
|
8161
8575
|
declare const schemas_gen_pkgOpenapiSharedErrorSchema: typeof pkgOpenapiSharedErrorSchema;
|
|
8162
8576
|
declare const schemas_gen_pkgOpenapiSharedErrorsSchema: typeof pkgOpenapiSharedErrorsSchema;
|
|
8577
|
+
declare const schemas_gen_pkgOpenapiSharedFilterableStringSchema: typeof pkgOpenapiSharedFilterableStringSchema;
|
|
8163
8578
|
declare const schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema: typeof pkgOpenapiSharedOffsetPaginatedResultSetSchema;
|
|
8164
8579
|
declare const schemas_gen_pkgOpenapiSharedProblemDetailsSchema: typeof pkgOpenapiSharedProblemDetailsSchema;
|
|
8165
8580
|
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,
|
|
8581
|
+
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_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
8582
|
}
|
|
8168
8583
|
|
|
8169
8584
|
type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
|
|
@@ -8263,6 +8678,18 @@ declare const deleteComment: <ThrowOnError extends boolean = false>(options: Opt
|
|
|
8263
8678
|
* Marks a comment as read by the authenticated player.
|
|
8264
8679
|
*/
|
|
8265
8680
|
declare const markCommentRead: <ThrowOnError extends boolean = false>(options: Options<MarkCommentReadData, ThrowOnError>) => RequestResult<MarkCommentReadResponses, MarkCommentReadErrors, ThrowOnError, "fields">;
|
|
8681
|
+
/**
|
|
8682
|
+
* List facilities
|
|
8683
|
+
*
|
|
8684
|
+
* Search and filter facilities
|
|
8685
|
+
*/
|
|
8686
|
+
declare const listFacilities: <ThrowOnError extends boolean = false>(options?: Options<ListFacilitiesData, ThrowOnError>) => RequestResult<ListFacilitiesResponses, ListFacilitiesErrors, ThrowOnError, "fields">;
|
|
8687
|
+
/**
|
|
8688
|
+
* Get facility details
|
|
8689
|
+
*
|
|
8690
|
+
* Retrieve details for a single facility
|
|
8691
|
+
*/
|
|
8692
|
+
declare const getFacility: <ThrowOnError extends boolean = false>(options: Options<GetFacilityData, ThrowOnError>) => RequestResult<GetFacilityResponses, GetFacilityErrors, ThrowOnError, "fields">;
|
|
8266
8693
|
/**
|
|
8267
8694
|
* List all offers for a facility
|
|
8268
8695
|
*
|
|
@@ -8275,6 +8702,12 @@ declare const listFacilityOffers: <ThrowOnError extends boolean = false>(options
|
|
|
8275
8702
|
* Will create a facility offer order and return the order object
|
|
8276
8703
|
*/
|
|
8277
8704
|
declare const createFacilityOfferOrder: <ThrowOnError extends boolean = false>(options: Options<CreateFacilityOfferOrderData, ThrowOnError>) => RequestResult<CreateFacilityOfferOrderResponses, CreateFacilityOfferOrderErrors, ThrowOnError, "fields">;
|
|
8705
|
+
/**
|
|
8706
|
+
* List facility resources
|
|
8707
|
+
*
|
|
8708
|
+
* Retrieve a list of resources (courts) for a facility
|
|
8709
|
+
*/
|
|
8710
|
+
declare const listFacilityResources: <ThrowOnError extends boolean = false>(options: Options<ListFacilityResourcesData, ThrowOnError>) => RequestResult<ListFacilityResourcesResponses, ListFacilityResourcesErrors, ThrowOnError, "fields">;
|
|
8278
8711
|
/**
|
|
8279
8712
|
* List matches
|
|
8280
8713
|
*
|
|
@@ -8352,6 +8785,12 @@ declare const getNotificationById: <ThrowOnError extends boolean = false>(option
|
|
|
8352
8785
|
* Update notification
|
|
8353
8786
|
*/
|
|
8354
8787
|
declare const updateNotification: <ThrowOnError extends boolean = false>(options: Options<UpdateNotificationData, ThrowOnError>) => RequestResult<UpdateNotificationResponses, UpdateNotificationErrors, ThrowOnError, "fields">;
|
|
8788
|
+
/**
|
|
8789
|
+
* Get resource details
|
|
8790
|
+
*
|
|
8791
|
+
* Retrieve details for a single resource (court)
|
|
8792
|
+
*/
|
|
8793
|
+
declare const getResource: <ThrowOnError extends boolean = false>(options: Options<GetResourceData, ThrowOnError>) => RequestResult<GetResourceResponses, GetResourceErrors, ThrowOnError, "fields">;
|
|
8355
8794
|
/**
|
|
8356
8795
|
* Get sport authorities
|
|
8357
8796
|
*
|
|
@@ -8769,6 +9208,92 @@ declare const deleteCommentMutation: (options?: Partial<Options<DeleteCommentDat
|
|
|
8769
9208
|
* Marks a comment as read by the authenticated player.
|
|
8770
9209
|
*/
|
|
8771
9210
|
declare const markCommentReadMutation: (options?: Partial<Options<MarkCommentReadData>>) => UseMutationOptions<MarkCommentReadResponse, MarkCommentReadError, Options<MarkCommentReadData>>;
|
|
9211
|
+
declare const listFacilitiesQueryKey: (options?: Options<ListFacilitiesData>) => [Pick<Options<ListFacilitiesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9212
|
+
_id: string;
|
|
9213
|
+
_infinite?: boolean;
|
|
9214
|
+
tags?: ReadonlyArray<string>;
|
|
9215
|
+
}];
|
|
9216
|
+
/**
|
|
9217
|
+
* List facilities
|
|
9218
|
+
*
|
|
9219
|
+
* Search and filter facilities
|
|
9220
|
+
*/
|
|
9221
|
+
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"> & {
|
|
9222
|
+
_id: string;
|
|
9223
|
+
_infinite?: boolean;
|
|
9224
|
+
tags?: ReadonlyArray<string>;
|
|
9225
|
+
}]>, "queryFn"> & {
|
|
9226
|
+
queryFn?: _tanstack_react_query.QueryFunction<FacilityList, [Pick<Options<ListFacilitiesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9227
|
+
_id: string;
|
|
9228
|
+
_infinite?: boolean;
|
|
9229
|
+
tags?: ReadonlyArray<string>;
|
|
9230
|
+
}], never> | undefined;
|
|
9231
|
+
} & {
|
|
9232
|
+
queryKey: [Pick<Options<ListFacilitiesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9233
|
+
_id: string;
|
|
9234
|
+
_infinite?: boolean;
|
|
9235
|
+
tags?: ReadonlyArray<string>;
|
|
9236
|
+
}] & {
|
|
9237
|
+
[dataTagSymbol]: FacilityList;
|
|
9238
|
+
[dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
|
|
9239
|
+
};
|
|
9240
|
+
};
|
|
9241
|
+
declare const listFacilitiesInfiniteQueryKey: (options?: Options<ListFacilitiesData>) => QueryKey<Options<ListFacilitiesData>>;
|
|
9242
|
+
/**
|
|
9243
|
+
* List facilities
|
|
9244
|
+
*
|
|
9245
|
+
* Search and filter facilities
|
|
9246
|
+
*/
|
|
9247
|
+
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"> & {
|
|
9248
|
+
_id: string;
|
|
9249
|
+
_infinite?: boolean;
|
|
9250
|
+
tags?: ReadonlyArray<string>;
|
|
9251
|
+
}, "query" | "body" | "headers" | "path">> & {
|
|
9252
|
+
initialData: InfiniteData<FacilityList, number | Pick<Pick<Options<ListFacilitiesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9253
|
+
_id: string;
|
|
9254
|
+
_infinite?: boolean;
|
|
9255
|
+
tags?: ReadonlyArray<string>;
|
|
9256
|
+
}, "query" | "body" | "headers" | "path">> | (() => InfiniteData<FacilityList, number | Pick<Pick<Options<ListFacilitiesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9257
|
+
_id: string;
|
|
9258
|
+
_infinite?: boolean;
|
|
9259
|
+
tags?: ReadonlyArray<string>;
|
|
9260
|
+
}, "query" | "body" | "headers" | "path">>) | undefined;
|
|
9261
|
+
} & {
|
|
9262
|
+
queryKey: QueryKey<Options<ListFacilitiesData>> & {
|
|
9263
|
+
[dataTagSymbol]: InfiniteData<FacilityList, unknown>;
|
|
9264
|
+
[dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
|
|
9265
|
+
};
|
|
9266
|
+
};
|
|
9267
|
+
declare const getFacilityQueryKey: (options: Options<GetFacilityData>) => [Pick<Options<GetFacilityData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9268
|
+
_id: string;
|
|
9269
|
+
_infinite?: boolean;
|
|
9270
|
+
tags?: ReadonlyArray<string>;
|
|
9271
|
+
}];
|
|
9272
|
+
/**
|
|
9273
|
+
* Get facility details
|
|
9274
|
+
*
|
|
9275
|
+
* Retrieve details for a single facility
|
|
9276
|
+
*/
|
|
9277
|
+
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"> & {
|
|
9278
|
+
_id: string;
|
|
9279
|
+
_infinite?: boolean;
|
|
9280
|
+
tags?: ReadonlyArray<string>;
|
|
9281
|
+
}]>, "queryFn"> & {
|
|
9282
|
+
queryFn?: _tanstack_react_query.QueryFunction<Facility, [Pick<Options<GetFacilityData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9283
|
+
_id: string;
|
|
9284
|
+
_infinite?: boolean;
|
|
9285
|
+
tags?: ReadonlyArray<string>;
|
|
9286
|
+
}], never> | undefined;
|
|
9287
|
+
} & {
|
|
9288
|
+
queryKey: [Pick<Options<GetFacilityData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9289
|
+
_id: string;
|
|
9290
|
+
_infinite?: boolean;
|
|
9291
|
+
tags?: ReadonlyArray<string>;
|
|
9292
|
+
}] & {
|
|
9293
|
+
[dataTagSymbol]: Facility;
|
|
9294
|
+
[dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
|
|
9295
|
+
};
|
|
9296
|
+
};
|
|
8772
9297
|
declare const listFacilityOffersQueryKey: (options: Options<ListFacilityOffersData>) => [Pick<Options<ListFacilityOffersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8773
9298
|
_id: string;
|
|
8774
9299
|
_infinite?: boolean;
|
|
@@ -8831,6 +9356,48 @@ declare const listFacilityOffersInfiniteOptions: (options: Options<ListFacilityO
|
|
|
8831
9356
|
* Will create a facility offer order and return the order object
|
|
8832
9357
|
*/
|
|
8833
9358
|
declare const createFacilityOfferOrderMutation: (options?: Partial<Options<CreateFacilityOfferOrderData>>) => UseMutationOptions<CreateFacilityOfferOrderResponse, CreateFacilityOfferOrderError, Options<CreateFacilityOfferOrderData>>;
|
|
9359
|
+
declare const listFacilityResourcesQueryKey: (options: Options<ListFacilityResourcesData>) => [Pick<Options<ListFacilityResourcesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9360
|
+
_id: string;
|
|
9361
|
+
_infinite?: boolean;
|
|
9362
|
+
tags?: ReadonlyArray<string>;
|
|
9363
|
+
}];
|
|
9364
|
+
/**
|
|
9365
|
+
* List facility resources
|
|
9366
|
+
*
|
|
9367
|
+
* Retrieve a list of resources (courts) for a facility
|
|
9368
|
+
*/
|
|
9369
|
+
declare const listFacilityResourcesOptions: (options: Options<ListFacilityResourcesData>) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<{
|
|
9370
|
+
items: Array<Resource>;
|
|
9371
|
+
result_set: PkgOpenapiSharedOffsetPaginatedResultSet;
|
|
9372
|
+
}, PkgOpenapiSharedProblemDetails, {
|
|
9373
|
+
items: Array<Resource>;
|
|
9374
|
+
result_set: PkgOpenapiSharedOffsetPaginatedResultSet;
|
|
9375
|
+
}, [Pick<Options<ListFacilityResourcesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9376
|
+
_id: string;
|
|
9377
|
+
_infinite?: boolean;
|
|
9378
|
+
tags?: ReadonlyArray<string>;
|
|
9379
|
+
}]>, "queryFn"> & {
|
|
9380
|
+
queryFn?: _tanstack_react_query.QueryFunction<{
|
|
9381
|
+
items: Array<Resource>;
|
|
9382
|
+
result_set: PkgOpenapiSharedOffsetPaginatedResultSet;
|
|
9383
|
+
}, [Pick<Options<ListFacilityResourcesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9384
|
+
_id: string;
|
|
9385
|
+
_infinite?: boolean;
|
|
9386
|
+
tags?: ReadonlyArray<string>;
|
|
9387
|
+
}], never> | undefined;
|
|
9388
|
+
} & {
|
|
9389
|
+
queryKey: [Pick<Options<ListFacilityResourcesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9390
|
+
_id: string;
|
|
9391
|
+
_infinite?: boolean;
|
|
9392
|
+
tags?: ReadonlyArray<string>;
|
|
9393
|
+
}] & {
|
|
9394
|
+
[dataTagSymbol]: {
|
|
9395
|
+
items: Array<Resource>;
|
|
9396
|
+
result_set: PkgOpenapiSharedOffsetPaginatedResultSet;
|
|
9397
|
+
};
|
|
9398
|
+
[dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
|
|
9399
|
+
};
|
|
9400
|
+
};
|
|
8834
9401
|
declare const listMatchesQueryKey: (options: Options<ListMatchesData>) => [Pick<Options<ListMatchesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
8835
9402
|
_id: string;
|
|
8836
9403
|
_infinite?: boolean;
|
|
@@ -9104,6 +9671,36 @@ declare const getNotificationByIdOptions: (options: Options<GetNotificationByIdD
|
|
|
9104
9671
|
* Update notification
|
|
9105
9672
|
*/
|
|
9106
9673
|
declare const updateNotificationMutation: (options?: Partial<Options<UpdateNotificationData>>) => UseMutationOptions<UpdateNotificationResponse, UpdateNotificationError, Options<UpdateNotificationData>>;
|
|
9674
|
+
declare const getResourceQueryKey: (options: Options<GetResourceData>) => [Pick<Options<GetResourceData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9675
|
+
_id: string;
|
|
9676
|
+
_infinite?: boolean;
|
|
9677
|
+
tags?: ReadonlyArray<string>;
|
|
9678
|
+
}];
|
|
9679
|
+
/**
|
|
9680
|
+
* Get resource details
|
|
9681
|
+
*
|
|
9682
|
+
* Retrieve details for a single resource (court)
|
|
9683
|
+
*/
|
|
9684
|
+
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"> & {
|
|
9685
|
+
_id: string;
|
|
9686
|
+
_infinite?: boolean;
|
|
9687
|
+
tags?: ReadonlyArray<string>;
|
|
9688
|
+
}]>, "queryFn"> & {
|
|
9689
|
+
queryFn?: _tanstack_react_query.QueryFunction<Resource, [Pick<Options<GetResourceData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9690
|
+
_id: string;
|
|
9691
|
+
_infinite?: boolean;
|
|
9692
|
+
tags?: ReadonlyArray<string>;
|
|
9693
|
+
}], never> | undefined;
|
|
9694
|
+
} & {
|
|
9695
|
+
queryKey: [Pick<Options<GetResourceData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9696
|
+
_id: string;
|
|
9697
|
+
_infinite?: boolean;
|
|
9698
|
+
tags?: ReadonlyArray<string>;
|
|
9699
|
+
}] & {
|
|
9700
|
+
[dataTagSymbol]: Resource;
|
|
9701
|
+
[dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
|
|
9702
|
+
};
|
|
9703
|
+
};
|
|
9107
9704
|
declare const getSportAuthoritiesQueryKey: (options?: Options<GetSportAuthoritiesData>) => [Pick<Options<GetSportAuthoritiesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
9108
9705
|
_id: string;
|
|
9109
9706
|
_infinite?: boolean;
|
|
@@ -9394,6 +9991,8 @@ declare const reactQuery_gen_deleteUserSportProfileLevelMutation: typeof deleteU
|
|
|
9394
9991
|
declare const reactQuery_gen_deleteUserSportProfileMutation: typeof deleteUserSportProfileMutation;
|
|
9395
9992
|
declare const reactQuery_gen_getCommunityOptions: typeof getCommunityOptions;
|
|
9396
9993
|
declare const reactQuery_gen_getCommunityQueryKey: typeof getCommunityQueryKey;
|
|
9994
|
+
declare const reactQuery_gen_getFacilityOptions: typeof getFacilityOptions;
|
|
9995
|
+
declare const reactQuery_gen_getFacilityQueryKey: typeof getFacilityQueryKey;
|
|
9397
9996
|
declare const reactQuery_gen_getMatchOptions: typeof getMatchOptions;
|
|
9398
9997
|
declare const reactQuery_gen_getMatchQueryKey: typeof getMatchQueryKey;
|
|
9399
9998
|
declare const reactQuery_gen_getMatchUserPriceOptions: typeof getMatchUserPriceOptions;
|
|
@@ -9412,6 +10011,8 @@ declare const reactQuery_gen_getRecommendationsInfiniteOptions: typeof getRecomm
|
|
|
9412
10011
|
declare const reactQuery_gen_getRecommendationsInfiniteQueryKey: typeof getRecommendationsInfiniteQueryKey;
|
|
9413
10012
|
declare const reactQuery_gen_getRecommendationsOptions: typeof getRecommendationsOptions;
|
|
9414
10013
|
declare const reactQuery_gen_getRecommendationsQueryKey: typeof getRecommendationsQueryKey;
|
|
10014
|
+
declare const reactQuery_gen_getResourceOptions: typeof getResourceOptions;
|
|
10015
|
+
declare const reactQuery_gen_getResourceQueryKey: typeof getResourceQueryKey;
|
|
9415
10016
|
declare const reactQuery_gen_getSportAuthoritiesOptions: typeof getSportAuthoritiesOptions;
|
|
9416
10017
|
declare const reactQuery_gen_getSportAuthoritiesQueryKey: typeof getSportAuthoritiesQueryKey;
|
|
9417
10018
|
declare const reactQuery_gen_getUserFacilityPermissionsOptions: typeof getUserFacilityPermissionsOptions;
|
|
@@ -9429,10 +10030,16 @@ declare const reactQuery_gen_listCommunitiesInfiniteOptions: typeof listCommunit
|
|
|
9429
10030
|
declare const reactQuery_gen_listCommunitiesInfiniteQueryKey: typeof listCommunitiesInfiniteQueryKey;
|
|
9430
10031
|
declare const reactQuery_gen_listCommunitiesOptions: typeof listCommunitiesOptions;
|
|
9431
10032
|
declare const reactQuery_gen_listCommunitiesQueryKey: typeof listCommunitiesQueryKey;
|
|
10033
|
+
declare const reactQuery_gen_listFacilitiesInfiniteOptions: typeof listFacilitiesInfiniteOptions;
|
|
10034
|
+
declare const reactQuery_gen_listFacilitiesInfiniteQueryKey: typeof listFacilitiesInfiniteQueryKey;
|
|
10035
|
+
declare const reactQuery_gen_listFacilitiesOptions: typeof listFacilitiesOptions;
|
|
10036
|
+
declare const reactQuery_gen_listFacilitiesQueryKey: typeof listFacilitiesQueryKey;
|
|
9432
10037
|
declare const reactQuery_gen_listFacilityOffersInfiniteOptions: typeof listFacilityOffersInfiniteOptions;
|
|
9433
10038
|
declare const reactQuery_gen_listFacilityOffersInfiniteQueryKey: typeof listFacilityOffersInfiniteQueryKey;
|
|
9434
10039
|
declare const reactQuery_gen_listFacilityOffersOptions: typeof listFacilityOffersOptions;
|
|
9435
10040
|
declare const reactQuery_gen_listFacilityOffersQueryKey: typeof listFacilityOffersQueryKey;
|
|
10041
|
+
declare const reactQuery_gen_listFacilityResourcesOptions: typeof listFacilityResourcesOptions;
|
|
10042
|
+
declare const reactQuery_gen_listFacilityResourcesQueryKey: typeof listFacilityResourcesQueryKey;
|
|
9436
10043
|
declare const reactQuery_gen_listMatchesInfiniteOptions: typeof listMatchesInfiniteOptions;
|
|
9437
10044
|
declare const reactQuery_gen_listMatchesInfiniteQueryKey: typeof listMatchesInfiniteQueryKey;
|
|
9438
10045
|
declare const reactQuery_gen_listMatchesOptions: typeof listMatchesOptions;
|
|
@@ -9458,7 +10065,7 @@ declare const reactQuery_gen_updateNotificationsPreferencesMutation: typeof upda
|
|
|
9458
10065
|
declare const reactQuery_gen_updateUserProfileMutation: typeof updateUserProfileMutation;
|
|
9459
10066
|
declare const reactQuery_gen_updateUserSportProfileLevelMutation: typeof updateUserSportProfileLevelMutation;
|
|
9460
10067
|
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 };
|
|
10068
|
+
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
10069
|
}
|
|
9463
10070
|
|
|
9464
10071
|
type indexV1_AcceptInvitationData = AcceptInvitationData;
|
|
@@ -9471,6 +10078,7 @@ type indexV1_AddUserSportProfileLevelError = AddUserSportProfileLevelError;
|
|
|
9471
10078
|
type indexV1_AddUserSportProfileLevelErrors = AddUserSportProfileLevelErrors;
|
|
9472
10079
|
type indexV1_AddUserSportProfileLevelResponse = AddUserSportProfileLevelResponse;
|
|
9473
10080
|
type indexV1_AddUserSportProfileLevelResponses = AddUserSportProfileLevelResponses;
|
|
10081
|
+
type indexV1_Address = Address;
|
|
9474
10082
|
type indexV1_Author = Author;
|
|
9475
10083
|
type indexV1_AuthoritySlug = AuthoritySlug;
|
|
9476
10084
|
type indexV1_Channels = Channels;
|
|
@@ -9481,7 +10089,6 @@ type indexV1_CommentListResponse = CommentListResponse;
|
|
|
9481
10089
|
type indexV1_CommunityIdParam = CommunityIdParam;
|
|
9482
10090
|
type indexV1_CommunityItem = CommunityItem;
|
|
9483
10091
|
type indexV1_CommunityListResponse = CommunityListResponse;
|
|
9484
|
-
type indexV1_CommunityPayload = CommunityPayload;
|
|
9485
10092
|
type indexV1_CreateCommentData = CreateCommentData;
|
|
9486
10093
|
type indexV1_CreateCommentError = CreateCommentError;
|
|
9487
10094
|
type indexV1_CreateCommentErrors = CreateCommentErrors;
|
|
@@ -9562,6 +10169,11 @@ type indexV1_GetCommunityError = GetCommunityError;
|
|
|
9562
10169
|
type indexV1_GetCommunityErrors = GetCommunityErrors;
|
|
9563
10170
|
type indexV1_GetCommunityResponse = GetCommunityResponse;
|
|
9564
10171
|
type indexV1_GetCommunityResponses = GetCommunityResponses;
|
|
10172
|
+
type indexV1_GetFacilityData = GetFacilityData;
|
|
10173
|
+
type indexV1_GetFacilityError = GetFacilityError;
|
|
10174
|
+
type indexV1_GetFacilityErrors = GetFacilityErrors;
|
|
10175
|
+
type indexV1_GetFacilityResponse = GetFacilityResponse;
|
|
10176
|
+
type indexV1_GetFacilityResponses = GetFacilityResponses;
|
|
9565
10177
|
type indexV1_GetMatchData = GetMatchData;
|
|
9566
10178
|
type indexV1_GetMatchError = GetMatchError;
|
|
9567
10179
|
type indexV1_GetMatchErrors = GetMatchErrors;
|
|
@@ -9597,6 +10209,11 @@ type indexV1_GetRecommendationsError = GetRecommendationsError;
|
|
|
9597
10209
|
type indexV1_GetRecommendationsErrors = GetRecommendationsErrors;
|
|
9598
10210
|
type indexV1_GetRecommendationsResponse = GetRecommendationsResponse;
|
|
9599
10211
|
type indexV1_GetRecommendationsResponses = GetRecommendationsResponses;
|
|
10212
|
+
type indexV1_GetResourceData = GetResourceData;
|
|
10213
|
+
type indexV1_GetResourceError = GetResourceError;
|
|
10214
|
+
type indexV1_GetResourceErrors = GetResourceErrors;
|
|
10215
|
+
type indexV1_GetResourceResponse = GetResourceResponse;
|
|
10216
|
+
type indexV1_GetResourceResponses = GetResourceResponses;
|
|
9600
10217
|
type indexV1_GetSportAuthoritiesData = GetSportAuthoritiesData;
|
|
9601
10218
|
type indexV1_GetSportAuthoritiesError = GetSportAuthoritiesError;
|
|
9602
10219
|
type indexV1_GetSportAuthoritiesErrors = GetSportAuthoritiesErrors;
|
|
@@ -9633,11 +10250,21 @@ type indexV1_ListCommunitiesError = ListCommunitiesError;
|
|
|
9633
10250
|
type indexV1_ListCommunitiesErrors = ListCommunitiesErrors;
|
|
9634
10251
|
type indexV1_ListCommunitiesResponse = ListCommunitiesResponse;
|
|
9635
10252
|
type indexV1_ListCommunitiesResponses = ListCommunitiesResponses;
|
|
10253
|
+
type indexV1_ListFacilitiesData = ListFacilitiesData;
|
|
10254
|
+
type indexV1_ListFacilitiesError = ListFacilitiesError;
|
|
10255
|
+
type indexV1_ListFacilitiesErrors = ListFacilitiesErrors;
|
|
10256
|
+
type indexV1_ListFacilitiesResponse = ListFacilitiesResponse;
|
|
10257
|
+
type indexV1_ListFacilitiesResponses = ListFacilitiesResponses;
|
|
9636
10258
|
type indexV1_ListFacilityOffersData = ListFacilityOffersData;
|
|
9637
10259
|
type indexV1_ListFacilityOffersError = ListFacilityOffersError;
|
|
9638
10260
|
type indexV1_ListFacilityOffersErrors = ListFacilityOffersErrors;
|
|
9639
10261
|
type indexV1_ListFacilityOffersResponse = ListFacilityOffersResponse;
|
|
9640
10262
|
type indexV1_ListFacilityOffersResponses = ListFacilityOffersResponses;
|
|
10263
|
+
type indexV1_ListFacilityResourcesData = ListFacilityResourcesData;
|
|
10264
|
+
type indexV1_ListFacilityResourcesError = ListFacilityResourcesError;
|
|
10265
|
+
type indexV1_ListFacilityResourcesErrors = ListFacilityResourcesErrors;
|
|
10266
|
+
type indexV1_ListFacilityResourcesResponse = ListFacilityResourcesResponse;
|
|
10267
|
+
type indexV1_ListFacilityResourcesResponses = ListFacilityResourcesResponses;
|
|
9641
10268
|
type indexV1_ListMatchesData = ListMatchesData;
|
|
9642
10269
|
type indexV1_ListMatchesError = ListMatchesError;
|
|
9643
10270
|
type indexV1_ListMatchesErrors = ListMatchesErrors;
|
|
@@ -9702,10 +10329,12 @@ type indexV1_PkgOpenapiSharedCursorPaginatedResultSet = PkgOpenapiSharedCursorPa
|
|
|
9702
10329
|
type indexV1_PkgOpenapiSharedCursorParam = PkgOpenapiSharedCursorParam;
|
|
9703
10330
|
type indexV1_PkgOpenapiSharedError = PkgOpenapiSharedError;
|
|
9704
10331
|
type indexV1_PkgOpenapiSharedErrors = PkgOpenapiSharedErrors;
|
|
10332
|
+
type indexV1_PkgOpenapiSharedFilterableString = PkgOpenapiSharedFilterableString;
|
|
9705
10333
|
type indexV1_PkgOpenapiSharedOffsetLimitParam = PkgOpenapiSharedOffsetLimitParam;
|
|
9706
10334
|
type indexV1_PkgOpenapiSharedOffsetPaginatedResultSet = PkgOpenapiSharedOffsetPaginatedResultSet;
|
|
9707
10335
|
type indexV1_PkgOpenapiSharedOffsetParam = PkgOpenapiSharedOffsetParam;
|
|
9708
10336
|
type indexV1_PkgOpenapiSharedProblemDetails = PkgOpenapiSharedProblemDetails;
|
|
10337
|
+
type indexV1_Position = Position;
|
|
9709
10338
|
type indexV1_Post = Post;
|
|
9710
10339
|
type indexV1_PostIdParam = PostIdParam;
|
|
9711
10340
|
type indexV1_PostLink = PostLink;
|
|
@@ -9713,6 +10342,10 @@ type indexV1_PostListResponse = PostListResponse;
|
|
|
9713
10342
|
type indexV1_PostingPermission = PostingPermission;
|
|
9714
10343
|
type indexV1_Preference = Preference;
|
|
9715
10344
|
type indexV1_PreferencesResponse = PreferencesResponse;
|
|
10345
|
+
type indexV1_PrivateParticipantDetail = PrivateParticipantDetail;
|
|
10346
|
+
type indexV1_PrivateParticipantSummary = PrivateParticipantSummary;
|
|
10347
|
+
type indexV1_PublicParticipantDetail = PublicParticipantDetail;
|
|
10348
|
+
type indexV1_PublicParticipantSummary = PublicParticipantSummary;
|
|
9716
10349
|
type indexV1_Recommendation = Recommendation;
|
|
9717
10350
|
type indexV1_RecommendationList = RecommendationList;
|
|
9718
10351
|
type indexV1_RefundPolicy = RefundPolicy;
|
|
@@ -9722,6 +10355,8 @@ type indexV1_RegisterDeviceErrors = RegisterDeviceErrors;
|
|
|
9722
10355
|
type indexV1_RegisterDeviceRequest = RegisterDeviceRequest;
|
|
9723
10356
|
type indexV1_RegisterDeviceResponse = RegisterDeviceResponse;
|
|
9724
10357
|
type indexV1_RegisterDeviceResponses = RegisterDeviceResponses;
|
|
10358
|
+
type indexV1_Resource = Resource;
|
|
10359
|
+
type indexV1_ResourceIdPath = ResourceIdPath;
|
|
9725
10360
|
type indexV1_SearchUsersData = SearchUsersData;
|
|
9726
10361
|
type indexV1_SearchUsersError = SearchUsersError;
|
|
9727
10362
|
type indexV1_SearchUsersErrors = SearchUsersErrors;
|
|
@@ -9786,6 +10421,7 @@ declare const indexV1_deletePost: typeof deletePost;
|
|
|
9786
10421
|
declare const indexV1_deleteUserSportProfile: typeof deleteUserSportProfile;
|
|
9787
10422
|
declare const indexV1_deleteUserSportProfileLevel: typeof deleteUserSportProfileLevel;
|
|
9788
10423
|
declare const indexV1_getCommunity: typeof getCommunity;
|
|
10424
|
+
declare const indexV1_getFacility: typeof getFacility;
|
|
9789
10425
|
declare const indexV1_getMatch: typeof getMatch;
|
|
9790
10426
|
declare const indexV1_getMatchUserPrice: typeof getMatchUserPrice;
|
|
9791
10427
|
declare const indexV1_getNotificationById: typeof getNotificationById;
|
|
@@ -9793,6 +10429,7 @@ declare const indexV1_getNotifications: typeof getNotifications;
|
|
|
9793
10429
|
declare const indexV1_getNotificationsPreferences: typeof getNotificationsPreferences;
|
|
9794
10430
|
declare const indexV1_getPost: typeof getPost;
|
|
9795
10431
|
declare const indexV1_getRecommendations: typeof getRecommendations;
|
|
10432
|
+
declare const indexV1_getResource: typeof getResource;
|
|
9796
10433
|
declare const indexV1_getSportAuthorities: typeof getSportAuthorities;
|
|
9797
10434
|
declare const indexV1_getUserFacilityPermissions: typeof getUserFacilityPermissions;
|
|
9798
10435
|
declare const indexV1_getUserSportProfile: typeof getUserSportProfile;
|
|
@@ -9800,7 +10437,9 @@ declare const indexV1_getUserSportProfiles: typeof getUserSportProfiles;
|
|
|
9800
10437
|
declare const indexV1_leaveCommunity: typeof leaveCommunity;
|
|
9801
10438
|
declare const indexV1_listComments: typeof listComments;
|
|
9802
10439
|
declare const indexV1_listCommunities: typeof listCommunities;
|
|
10440
|
+
declare const indexV1_listFacilities: typeof listFacilities;
|
|
9803
10441
|
declare const indexV1_listFacilityOffers: typeof listFacilityOffers;
|
|
10442
|
+
declare const indexV1_listFacilityResources: typeof listFacilityResources;
|
|
9804
10443
|
declare const indexV1_listMatches: typeof listMatches;
|
|
9805
10444
|
declare const indexV1_listMembers: typeof listMembers;
|
|
9806
10445
|
declare const indexV1_listPosts: typeof listPosts;
|
|
@@ -9814,7 +10453,7 @@ declare const indexV1_updateNotificationsPreferences: typeof updateNotifications
|
|
|
9814
10453
|
declare const indexV1_updateUserProfile: typeof updateUserProfile;
|
|
9815
10454
|
declare const indexV1_updateUserSportProfileLevel: typeof updateUserSportProfileLevel;
|
|
9816
10455
|
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 };
|
|
10456
|
+
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_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
10457
|
}
|
|
9819
10458
|
|
|
9820
10459
|
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 };
|