@matchi/api 0.20260416.1 → 0.20260422.3
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 +1007 -28
- package/dist/main/index.d.ts +1007 -28
- package/dist/main/index.js +8 -6
- package/dist/main/index.mjs +8 -6
- package/package.json +1 -1
package/dist/main/index.d.mts
CHANGED
|
@@ -3596,6 +3596,24 @@ type CreateSportProfileRequest = {
|
|
|
3596
3596
|
level?: string;
|
|
3597
3597
|
sport_id: number;
|
|
3598
3598
|
};
|
|
3599
|
+
type ExternalService = {
|
|
3600
|
+
config?: Array<{
|
|
3601
|
+
[key: string]: unknown;
|
|
3602
|
+
}>;
|
|
3603
|
+
link?: string | null;
|
|
3604
|
+
logo?: string | null;
|
|
3605
|
+
name: string;
|
|
3606
|
+
};
|
|
3607
|
+
type Facility = {
|
|
3608
|
+
created_by?: string;
|
|
3609
|
+
id: string;
|
|
3610
|
+
updated_at?: string;
|
|
3611
|
+
updated_by?: string;
|
|
3612
|
+
};
|
|
3613
|
+
type FacilityList = {
|
|
3614
|
+
items: Array<Facility>;
|
|
3615
|
+
meta: OffsetPaginatedResultSet;
|
|
3616
|
+
};
|
|
3599
3617
|
type FacilityMessagePayload = {
|
|
3600
3618
|
description: string;
|
|
3601
3619
|
image_url?: string;
|
|
@@ -3699,6 +3717,112 @@ declare const LinkType: {
|
|
|
3699
3717
|
readonly MATCH: "match";
|
|
3700
3718
|
};
|
|
3701
3719
|
type LinkType = typeof LinkType[keyof typeof LinkType];
|
|
3720
|
+
type Match = {
|
|
3721
|
+
court_id: number;
|
|
3722
|
+
facility_id: number;
|
|
3723
|
+
facility_name: string;
|
|
3724
|
+
id: string;
|
|
3725
|
+
image_url?: string | null;
|
|
3726
|
+
occasion: MatchOccasion;
|
|
3727
|
+
sport_id: number | null;
|
|
3728
|
+
title: string;
|
|
3729
|
+
};
|
|
3730
|
+
type MatchBasePrice = {
|
|
3731
|
+
currency: string;
|
|
3732
|
+
default_price: number;
|
|
3733
|
+
members_price?: number | null;
|
|
3734
|
+
};
|
|
3735
|
+
type MatchCourt = {
|
|
3736
|
+
id: number;
|
|
3737
|
+
name: string;
|
|
3738
|
+
};
|
|
3739
|
+
/**
|
|
3740
|
+
* Match for the detail view. Extends Match with description, terms, message_title and upgrades occasion to MatchOccasionDetail.
|
|
3741
|
+
*
|
|
3742
|
+
*/
|
|
3743
|
+
type MatchDetail = Match & {
|
|
3744
|
+
description?: string | null;
|
|
3745
|
+
message_title?: string | null;
|
|
3746
|
+
occasion?: MatchOccasionDetail;
|
|
3747
|
+
terms?: string | null;
|
|
3748
|
+
};
|
|
3749
|
+
type MatchEvent = {
|
|
3750
|
+
name?: string;
|
|
3751
|
+
supported_by?: string | null;
|
|
3752
|
+
} | null;
|
|
3753
|
+
type MatchList = {
|
|
3754
|
+
items: Array<Match>;
|
|
3755
|
+
meta: OffsetPaginatedResultSet;
|
|
3756
|
+
};
|
|
3757
|
+
type MatchOccasion = {
|
|
3758
|
+
automatic_cancellation_date_time?: string | null;
|
|
3759
|
+
courts: Array<MatchCourt>;
|
|
3760
|
+
end_date_time: string;
|
|
3761
|
+
has_not_closed_registration: boolean;
|
|
3762
|
+
has_opened_registration: boolean;
|
|
3763
|
+
id: number;
|
|
3764
|
+
is_bookable: boolean;
|
|
3765
|
+
is_participating: boolean;
|
|
3766
|
+
level_max?: number | null;
|
|
3767
|
+
level_min?: number | null;
|
|
3768
|
+
members_only: boolean;
|
|
3769
|
+
message?: string | null;
|
|
3770
|
+
participants: MatchParticipants;
|
|
3771
|
+
price: MatchBasePrice;
|
|
3772
|
+
start_date_time: string;
|
|
3773
|
+
type?: string | null;
|
|
3774
|
+
};
|
|
3775
|
+
/**
|
|
3776
|
+
* Enriched occasion for the detail view. Extends MatchOccasion with price_list, refund_policy, can_be_cancelled_by_user, participant_details, status, user_status, external_services, event.
|
|
3777
|
+
*
|
|
3778
|
+
*/
|
|
3779
|
+
type MatchOccasionDetail = MatchOccasion & {
|
|
3780
|
+
can_be_cancelled_by_user: boolean;
|
|
3781
|
+
event: MatchEvent;
|
|
3782
|
+
external_services: Array<ExternalService>;
|
|
3783
|
+
participant_details: Array<ParticipantDetail>;
|
|
3784
|
+
price_list: Array<MatchPriceListEntry>;
|
|
3785
|
+
refund_policy: RefundPolicy;
|
|
3786
|
+
status: MatchStatus;
|
|
3787
|
+
user_status: UserParticipationStatus;
|
|
3788
|
+
};
|
|
3789
|
+
type MatchParticipants = {
|
|
3790
|
+
available: number;
|
|
3791
|
+
current: number;
|
|
3792
|
+
max: number;
|
|
3793
|
+
min?: number | null;
|
|
3794
|
+
users: Array<ParticipantSummary>;
|
|
3795
|
+
};
|
|
3796
|
+
type MatchPriceListEntry = {
|
|
3797
|
+
category_name: string;
|
|
3798
|
+
is_default_category: boolean;
|
|
3799
|
+
price: number | null;
|
|
3800
|
+
};
|
|
3801
|
+
declare const MatchStatus: {
|
|
3802
|
+
readonly OPEN: "OPEN";
|
|
3803
|
+
readonly FULL: "FULL";
|
|
3804
|
+
readonly REGISTRATION_CLOSED: "REGISTRATION_CLOSED";
|
|
3805
|
+
readonly REGISTRATION_NOT_OPEN: "REGISTRATION_NOT_OPEN";
|
|
3806
|
+
readonly CANCELLED: "CANCELLED";
|
|
3807
|
+
readonly COMPLETED: "COMPLETED";
|
|
3808
|
+
readonly MEMBERS_ONLY: "MEMBERS_ONLY";
|
|
3809
|
+
};
|
|
3810
|
+
type MatchStatus = typeof MatchStatus[keyof typeof MatchStatus];
|
|
3811
|
+
type MatchUserPrice = {
|
|
3812
|
+
applied_category: string;
|
|
3813
|
+
can_use_promo_code: boolean;
|
|
3814
|
+
currency: string;
|
|
3815
|
+
fee: number | null;
|
|
3816
|
+
ordinary_price: number;
|
|
3817
|
+
/**
|
|
3818
|
+
* Map of available payment methods keyed by method name
|
|
3819
|
+
*/
|
|
3820
|
+
payment_methods: {
|
|
3821
|
+
[key: string]: unknown;
|
|
3822
|
+
};
|
|
3823
|
+
price: number;
|
|
3824
|
+
vat: number;
|
|
3825
|
+
};
|
|
3702
3826
|
type Member = {
|
|
3703
3827
|
first_name: string;
|
|
3704
3828
|
last_name: string;
|
|
@@ -3777,12 +3901,35 @@ type NotificationsSummary = {
|
|
|
3777
3901
|
global_unread_count: number;
|
|
3778
3902
|
unread_count: number;
|
|
3779
3903
|
};
|
|
3904
|
+
/**
|
|
3905
|
+
* 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.
|
|
3906
|
+
*
|
|
3907
|
+
*/
|
|
3908
|
+
type OffsetPaginatedResultSet = {
|
|
3909
|
+
limit: number;
|
|
3910
|
+
more_results: boolean;
|
|
3911
|
+
offset: number;
|
|
3912
|
+
total_count?: number;
|
|
3913
|
+
};
|
|
3780
3914
|
type PaginationMeta = {
|
|
3781
3915
|
pagination: PkgOpenapiSharedOffsetPaginatedResultSet;
|
|
3782
3916
|
summary: {
|
|
3783
3917
|
total: number;
|
|
3784
3918
|
};
|
|
3785
3919
|
};
|
|
3920
|
+
/**
|
|
3921
|
+
* Participant with join timestamp. Extends ParticipantSummary.
|
|
3922
|
+
*/
|
|
3923
|
+
type ParticipantDetail = ParticipantSummary & {
|
|
3924
|
+
joined_at: string;
|
|
3925
|
+
};
|
|
3926
|
+
type ParticipantSummary = {
|
|
3927
|
+
first_name: string | null;
|
|
3928
|
+
last_name: string | null;
|
|
3929
|
+
level?: string | null;
|
|
3930
|
+
profile_image_url?: string | null;
|
|
3931
|
+
user_id: string | null;
|
|
3932
|
+
};
|
|
3786
3933
|
type PatchCommentRequest = {
|
|
3787
3934
|
is_read: boolean;
|
|
3788
3935
|
};
|
|
@@ -3903,6 +4050,10 @@ type RecommendationList = {
|
|
|
3903
4050
|
items: Array<Recommendation>;
|
|
3904
4051
|
meta: PkgOpenapiSharedOffsetPaginatedResultSet;
|
|
3905
4052
|
};
|
|
4053
|
+
type RefundPolicy = {
|
|
4054
|
+
args: Array<unknown>;
|
|
4055
|
+
code: string;
|
|
4056
|
+
} | null;
|
|
3906
4057
|
type RegisterDeviceRequest = {
|
|
3907
4058
|
app_version: string;
|
|
3908
4059
|
fcm_token: string;
|
|
@@ -4033,6 +4184,12 @@ type UpdateUsersProfilesRequest = {
|
|
|
4033
4184
|
telephone?: string;
|
|
4034
4185
|
zipcode?: string;
|
|
4035
4186
|
};
|
|
4187
|
+
declare const UserParticipationStatus: {
|
|
4188
|
+
readonly NOT_PARTICIPATING: "NOT_PARTICIPATING";
|
|
4189
|
+
readonly PARTICIPATING: "PARTICIPATING";
|
|
4190
|
+
readonly WAITLISTED: "WAITLISTED";
|
|
4191
|
+
};
|
|
4192
|
+
type UserParticipationStatus = typeof UserParticipationStatus[keyof typeof UserParticipationStatus];
|
|
4036
4193
|
type UserProfile = {
|
|
4037
4194
|
address?: string;
|
|
4038
4195
|
birthday?: string;
|
|
@@ -4265,6 +4422,130 @@ type CreateFacilityOfferOrderResponses = {
|
|
|
4265
4422
|
200: FacilityOfferOrder;
|
|
4266
4423
|
};
|
|
4267
4424
|
type CreateFacilityOfferOrderResponse = CreateFacilityOfferOrderResponses[keyof CreateFacilityOfferOrderResponses];
|
|
4425
|
+
type ListMatchesData = {
|
|
4426
|
+
body?: never;
|
|
4427
|
+
path?: never;
|
|
4428
|
+
query: {
|
|
4429
|
+
/**
|
|
4430
|
+
* Start of date range (ISO 8601 UTC)
|
|
4431
|
+
*/
|
|
4432
|
+
start_date_time: string;
|
|
4433
|
+
/**
|
|
4434
|
+
* End of date range (ISO 8601 UTC)
|
|
4435
|
+
*/
|
|
4436
|
+
end_date_time: string;
|
|
4437
|
+
/**
|
|
4438
|
+
* Filter by facility IDs
|
|
4439
|
+
*/
|
|
4440
|
+
facility_ids?: Array<number>;
|
|
4441
|
+
/**
|
|
4442
|
+
* Filter by sport IDs
|
|
4443
|
+
*/
|
|
4444
|
+
sport_ids?: Array<number>;
|
|
4445
|
+
/**
|
|
4446
|
+
* Minimum number of available spots
|
|
4447
|
+
*/
|
|
4448
|
+
available_spots?: number;
|
|
4449
|
+
/**
|
|
4450
|
+
* Number of items to skip before returning the results.
|
|
4451
|
+
*/
|
|
4452
|
+
offset?: number;
|
|
4453
|
+
/**
|
|
4454
|
+
* Maximum number of items to return.
|
|
4455
|
+
*/
|
|
4456
|
+
limit?: number;
|
|
4457
|
+
};
|
|
4458
|
+
url: '/matches';
|
|
4459
|
+
};
|
|
4460
|
+
type ListMatchesErrors = {
|
|
4461
|
+
/**
|
|
4462
|
+
* The request was malformed or could not be processed.
|
|
4463
|
+
*/
|
|
4464
|
+
400: PkgOpenapiSharedProblemDetails;
|
|
4465
|
+
/**
|
|
4466
|
+
* Access token is not set or invalid.
|
|
4467
|
+
*/
|
|
4468
|
+
401: PkgOpenapiSharedProblemDetails;
|
|
4469
|
+
/**
|
|
4470
|
+
* The server encountered an unexpected error
|
|
4471
|
+
*/
|
|
4472
|
+
500: PkgOpenapiSharedProblemDetails;
|
|
4473
|
+
};
|
|
4474
|
+
type ListMatchesError = ListMatchesErrors[keyof ListMatchesErrors];
|
|
4475
|
+
type ListMatchesResponses = {
|
|
4476
|
+
/**
|
|
4477
|
+
* OK
|
|
4478
|
+
*/
|
|
4479
|
+
200: MatchList;
|
|
4480
|
+
};
|
|
4481
|
+
type ListMatchesResponse = ListMatchesResponses[keyof ListMatchesResponses];
|
|
4482
|
+
type GetMatchData = {
|
|
4483
|
+
body?: never;
|
|
4484
|
+
path: {
|
|
4485
|
+
match_id: string;
|
|
4486
|
+
};
|
|
4487
|
+
query?: never;
|
|
4488
|
+
url: '/matches/{match_id}';
|
|
4489
|
+
};
|
|
4490
|
+
type GetMatchErrors = {
|
|
4491
|
+
/**
|
|
4492
|
+
* Access token is not set or invalid.
|
|
4493
|
+
*/
|
|
4494
|
+
401: PkgOpenapiSharedProblemDetails;
|
|
4495
|
+
/**
|
|
4496
|
+
* The requested resource was not found.
|
|
4497
|
+
*/
|
|
4498
|
+
404: PkgOpenapiSharedProblemDetails;
|
|
4499
|
+
/**
|
|
4500
|
+
* The server encountered an unexpected error
|
|
4501
|
+
*/
|
|
4502
|
+
500: PkgOpenapiSharedProblemDetails;
|
|
4503
|
+
};
|
|
4504
|
+
type GetMatchError = GetMatchErrors[keyof GetMatchErrors];
|
|
4505
|
+
type GetMatchResponses = {
|
|
4506
|
+
/**
|
|
4507
|
+
* OK
|
|
4508
|
+
*/
|
|
4509
|
+
200: MatchDetail;
|
|
4510
|
+
};
|
|
4511
|
+
type GetMatchResponse = GetMatchResponses[keyof GetMatchResponses];
|
|
4512
|
+
type GetMatchUserPriceData = {
|
|
4513
|
+
body?: never;
|
|
4514
|
+
path: {
|
|
4515
|
+
match_id: string;
|
|
4516
|
+
user_id: string;
|
|
4517
|
+
};
|
|
4518
|
+
query?: {
|
|
4519
|
+
promo_code?: string;
|
|
4520
|
+
};
|
|
4521
|
+
url: '/matches/{match_id}/prices/{user_id}';
|
|
4522
|
+
};
|
|
4523
|
+
type GetMatchUserPriceErrors = {
|
|
4524
|
+
/**
|
|
4525
|
+
* Access token is not set or invalid.
|
|
4526
|
+
*/
|
|
4527
|
+
401: PkgOpenapiSharedProblemDetails;
|
|
4528
|
+
/**
|
|
4529
|
+
* The requestor is not authorized to perform this operation on the resource.
|
|
4530
|
+
*/
|
|
4531
|
+
403: PkgOpenapiSharedProblemDetails;
|
|
4532
|
+
/**
|
|
4533
|
+
* The requested resource was not found.
|
|
4534
|
+
*/
|
|
4535
|
+
404: PkgOpenapiSharedProblemDetails;
|
|
4536
|
+
/**
|
|
4537
|
+
* The server encountered an unexpected error
|
|
4538
|
+
*/
|
|
4539
|
+
500: PkgOpenapiSharedProblemDetails;
|
|
4540
|
+
};
|
|
4541
|
+
type GetMatchUserPriceError = GetMatchUserPriceErrors[keyof GetMatchUserPriceErrors];
|
|
4542
|
+
type GetMatchUserPriceResponses = {
|
|
4543
|
+
/**
|
|
4544
|
+
* OK
|
|
4545
|
+
*/
|
|
4546
|
+
200: MatchUserPrice;
|
|
4547
|
+
};
|
|
4548
|
+
type GetMatchUserPriceResponse = GetMatchUserPriceResponses[keyof GetMatchUserPriceResponses];
|
|
4268
4549
|
type GetNotificationsData = {
|
|
4269
4550
|
body?: never;
|
|
4270
4551
|
path?: never;
|
|
@@ -4571,6 +4852,40 @@ type SearchUsersResponses = {
|
|
|
4571
4852
|
200: UsersProfilesPaginatedResponse;
|
|
4572
4853
|
};
|
|
4573
4854
|
type SearchUsersResponse = SearchUsersResponses[keyof SearchUsersResponses];
|
|
4855
|
+
type RegisterDeviceData = {
|
|
4856
|
+
body: RegisterDeviceRequest;
|
|
4857
|
+
path: {
|
|
4858
|
+
user_id: string;
|
|
4859
|
+
};
|
|
4860
|
+
query?: never;
|
|
4861
|
+
url: '/users/{user_id}/devices';
|
|
4862
|
+
};
|
|
4863
|
+
type RegisterDeviceErrors = {
|
|
4864
|
+
/**
|
|
4865
|
+
* The request was malformed or could not be processed.
|
|
4866
|
+
*/
|
|
4867
|
+
400: PkgOpenapiSharedProblemDetails;
|
|
4868
|
+
/**
|
|
4869
|
+
* Access token is not set or invalid.
|
|
4870
|
+
*/
|
|
4871
|
+
401: PkgOpenapiSharedProblemDetails;
|
|
4872
|
+
/**
|
|
4873
|
+
* The requestor is not authorized to perform this operation on the resource.
|
|
4874
|
+
*/
|
|
4875
|
+
403: PkgOpenapiSharedProblemDetails;
|
|
4876
|
+
/**
|
|
4877
|
+
* The server encountered an unexpected error
|
|
4878
|
+
*/
|
|
4879
|
+
500: PkgOpenapiSharedProblemDetails;
|
|
4880
|
+
};
|
|
4881
|
+
type RegisterDeviceError = RegisterDeviceErrors[keyof RegisterDeviceErrors];
|
|
4882
|
+
type RegisterDeviceResponses = {
|
|
4883
|
+
/**
|
|
4884
|
+
* Device registered successfully
|
|
4885
|
+
*/
|
|
4886
|
+
204: void;
|
|
4887
|
+
};
|
|
4888
|
+
type RegisterDeviceResponse = RegisterDeviceResponses[keyof RegisterDeviceResponses];
|
|
4574
4889
|
type GetUserFacilityPermissionsData = {
|
|
4575
4890
|
body?: never;
|
|
4576
4891
|
path: {
|
|
@@ -5279,6 +5594,64 @@ declare const CreateSportProfileRequestSchema: {
|
|
|
5279
5594
|
readonly required: readonly ["sport_id"];
|
|
5280
5595
|
readonly type: "object";
|
|
5281
5596
|
};
|
|
5597
|
+
declare const ExternalServiceSchema: {
|
|
5598
|
+
readonly properties: {
|
|
5599
|
+
readonly config: {
|
|
5600
|
+
readonly items: {
|
|
5601
|
+
readonly type: "object";
|
|
5602
|
+
};
|
|
5603
|
+
readonly type: "array";
|
|
5604
|
+
};
|
|
5605
|
+
readonly link: {
|
|
5606
|
+
readonly nullable: true;
|
|
5607
|
+
readonly type: "string";
|
|
5608
|
+
};
|
|
5609
|
+
readonly logo: {
|
|
5610
|
+
readonly nullable: true;
|
|
5611
|
+
readonly type: "string";
|
|
5612
|
+
};
|
|
5613
|
+
readonly name: {
|
|
5614
|
+
readonly type: "string";
|
|
5615
|
+
};
|
|
5616
|
+
};
|
|
5617
|
+
readonly required: readonly ["name"];
|
|
5618
|
+
readonly type: "object";
|
|
5619
|
+
};
|
|
5620
|
+
declare const FacilitySchema: {
|
|
5621
|
+
readonly properties: {
|
|
5622
|
+
readonly created_by: {
|
|
5623
|
+
readonly type: "string";
|
|
5624
|
+
};
|
|
5625
|
+
readonly id: {
|
|
5626
|
+
readonly format: "uuid";
|
|
5627
|
+
readonly type: "string";
|
|
5628
|
+
};
|
|
5629
|
+
readonly updated_at: {
|
|
5630
|
+
readonly format: "date-time";
|
|
5631
|
+
readonly type: "string";
|
|
5632
|
+
};
|
|
5633
|
+
readonly updated_by: {
|
|
5634
|
+
readonly type: "string";
|
|
5635
|
+
};
|
|
5636
|
+
};
|
|
5637
|
+
readonly required: readonly ["id"];
|
|
5638
|
+
readonly type: "object";
|
|
5639
|
+
};
|
|
5640
|
+
declare const FacilityListSchema: {
|
|
5641
|
+
readonly properties: {
|
|
5642
|
+
readonly items: {
|
|
5643
|
+
readonly items: {
|
|
5644
|
+
readonly $ref: "#/components/schemas/Facility";
|
|
5645
|
+
};
|
|
5646
|
+
readonly type: "array";
|
|
5647
|
+
};
|
|
5648
|
+
readonly meta: {
|
|
5649
|
+
readonly $ref: "#/components/schemas/OffsetPaginatedResultSet";
|
|
5650
|
+
};
|
|
5651
|
+
};
|
|
5652
|
+
readonly required: readonly ["items", "meta"];
|
|
5653
|
+
readonly type: "object";
|
|
5654
|
+
};
|
|
5282
5655
|
declare const FacilityMessagePayloadSchema: {
|
|
5283
5656
|
readonly properties: {
|
|
5284
5657
|
readonly description: {
|
|
@@ -5614,50 +5987,362 @@ declare const LinkTypeSchema: {
|
|
|
5614
5987
|
readonly enum: readonly ["activity", "match"];
|
|
5615
5988
|
readonly type: "string";
|
|
5616
5989
|
};
|
|
5617
|
-
declare const
|
|
5990
|
+
declare const MatchSchema: {
|
|
5618
5991
|
readonly properties: {
|
|
5619
|
-
readonly
|
|
5992
|
+
readonly court_id: {
|
|
5993
|
+
readonly format: "int64";
|
|
5994
|
+
readonly type: "integer";
|
|
5995
|
+
};
|
|
5996
|
+
readonly facility_id: {
|
|
5997
|
+
readonly format: "int64";
|
|
5998
|
+
readonly type: "integer";
|
|
5999
|
+
};
|
|
6000
|
+
readonly facility_name: {
|
|
5620
6001
|
readonly type: "string";
|
|
5621
6002
|
};
|
|
5622
|
-
readonly
|
|
6003
|
+
readonly id: {
|
|
6004
|
+
readonly format: "uuid";
|
|
5623
6005
|
readonly type: "string";
|
|
5624
6006
|
};
|
|
5625
|
-
readonly
|
|
6007
|
+
readonly image_url: {
|
|
6008
|
+
readonly nullable: true;
|
|
5626
6009
|
readonly type: "string";
|
|
5627
6010
|
};
|
|
5628
|
-
readonly
|
|
5629
|
-
readonly $ref: "#/components/schemas/
|
|
6011
|
+
readonly occasion: {
|
|
6012
|
+
readonly $ref: "#/components/schemas/MatchOccasion";
|
|
5630
6013
|
};
|
|
5631
|
-
readonly
|
|
5632
|
-
readonly format: "
|
|
6014
|
+
readonly sport_id: {
|
|
6015
|
+
readonly format: "int64";
|
|
6016
|
+
readonly nullable: true;
|
|
6017
|
+
readonly type: "integer";
|
|
6018
|
+
};
|
|
6019
|
+
readonly title: {
|
|
5633
6020
|
readonly type: "string";
|
|
5634
6021
|
};
|
|
5635
6022
|
};
|
|
5636
|
-
readonly required: readonly ["
|
|
6023
|
+
readonly required: readonly ["id", "title", "sport_id", "facility_id", "facility_name", "court_id", "occasion"];
|
|
5637
6024
|
readonly type: "object";
|
|
5638
6025
|
};
|
|
5639
|
-
declare const
|
|
6026
|
+
declare const MatchBasePriceSchema: {
|
|
5640
6027
|
readonly properties: {
|
|
5641
|
-
readonly
|
|
5642
|
-
readonly
|
|
5643
|
-
readonly $ref: "#/components/schemas/Member";
|
|
5644
|
-
};
|
|
5645
|
-
readonly type: "array";
|
|
6028
|
+
readonly currency: {
|
|
6029
|
+
readonly type: "string";
|
|
5646
6030
|
};
|
|
5647
|
-
readonly
|
|
5648
|
-
readonly
|
|
6031
|
+
readonly default_price: {
|
|
6032
|
+
readonly type: "number";
|
|
6033
|
+
};
|
|
6034
|
+
readonly members_price: {
|
|
6035
|
+
readonly nullable: true;
|
|
6036
|
+
readonly type: "number";
|
|
5649
6037
|
};
|
|
5650
6038
|
};
|
|
5651
|
-
readonly required: readonly ["
|
|
6039
|
+
readonly required: readonly ["default_price", "currency"];
|
|
5652
6040
|
readonly type: "object";
|
|
5653
6041
|
};
|
|
5654
|
-
declare const
|
|
5655
|
-
readonly
|
|
5656
|
-
|
|
5657
|
-
|
|
5658
|
-
|
|
5659
|
-
|
|
5660
|
-
|
|
6042
|
+
declare const MatchCourtSchema: {
|
|
6043
|
+
readonly properties: {
|
|
6044
|
+
readonly id: {
|
|
6045
|
+
readonly format: "int64";
|
|
6046
|
+
readonly type: "integer";
|
|
6047
|
+
};
|
|
6048
|
+
readonly name: {
|
|
6049
|
+
readonly type: "string";
|
|
6050
|
+
};
|
|
6051
|
+
};
|
|
6052
|
+
readonly required: readonly ["id", "name"];
|
|
6053
|
+
readonly type: "object";
|
|
6054
|
+
};
|
|
6055
|
+
declare const MatchDetailSchema: {
|
|
6056
|
+
readonly allOf: readonly [{
|
|
6057
|
+
readonly $ref: "#/components/schemas/Match";
|
|
6058
|
+
}, {
|
|
6059
|
+
readonly properties: {
|
|
6060
|
+
readonly description: {
|
|
6061
|
+
readonly nullable: true;
|
|
6062
|
+
readonly type: "string";
|
|
6063
|
+
};
|
|
6064
|
+
readonly message_title: {
|
|
6065
|
+
readonly nullable: true;
|
|
6066
|
+
readonly type: "string";
|
|
6067
|
+
};
|
|
6068
|
+
readonly occasion: {
|
|
6069
|
+
readonly $ref: "#/components/schemas/MatchOccasionDetail";
|
|
6070
|
+
};
|
|
6071
|
+
readonly terms: {
|
|
6072
|
+
readonly nullable: true;
|
|
6073
|
+
readonly type: "string";
|
|
6074
|
+
};
|
|
6075
|
+
};
|
|
6076
|
+
readonly type: "object";
|
|
6077
|
+
}];
|
|
6078
|
+
readonly description: "Match for the detail view. Extends Match with description, terms, message_title and upgrades occasion to MatchOccasionDetail.\n";
|
|
6079
|
+
};
|
|
6080
|
+
declare const MatchEventSchema: {
|
|
6081
|
+
readonly nullable: true;
|
|
6082
|
+
readonly properties: {
|
|
6083
|
+
readonly name: {
|
|
6084
|
+
readonly type: "string";
|
|
6085
|
+
};
|
|
6086
|
+
readonly supported_by: {
|
|
6087
|
+
readonly nullable: true;
|
|
6088
|
+
readonly type: "string";
|
|
6089
|
+
};
|
|
6090
|
+
};
|
|
6091
|
+
readonly type: "object";
|
|
6092
|
+
};
|
|
6093
|
+
declare const MatchListSchema: {
|
|
6094
|
+
readonly properties: {
|
|
6095
|
+
readonly items: {
|
|
6096
|
+
readonly items: {
|
|
6097
|
+
readonly $ref: "#/components/schemas/Match";
|
|
6098
|
+
};
|
|
6099
|
+
readonly type: "array";
|
|
6100
|
+
};
|
|
6101
|
+
readonly meta: {
|
|
6102
|
+
readonly $ref: "#/components/schemas/OffsetPaginatedResultSet";
|
|
6103
|
+
};
|
|
6104
|
+
};
|
|
6105
|
+
readonly required: readonly ["items", "meta"];
|
|
6106
|
+
readonly type: "object";
|
|
6107
|
+
};
|
|
6108
|
+
declare const MatchOccasionSchema: {
|
|
6109
|
+
readonly properties: {
|
|
6110
|
+
readonly automatic_cancellation_date_time: {
|
|
6111
|
+
readonly format: "date-time";
|
|
6112
|
+
readonly nullable: true;
|
|
6113
|
+
readonly type: "string";
|
|
6114
|
+
};
|
|
6115
|
+
readonly courts: {
|
|
6116
|
+
readonly items: {
|
|
6117
|
+
readonly $ref: "#/components/schemas/MatchCourt";
|
|
6118
|
+
};
|
|
6119
|
+
readonly type: "array";
|
|
6120
|
+
};
|
|
6121
|
+
readonly end_date_time: {
|
|
6122
|
+
readonly format: "date-time";
|
|
6123
|
+
readonly type: "string";
|
|
6124
|
+
};
|
|
6125
|
+
readonly has_not_closed_registration: {
|
|
6126
|
+
readonly type: "boolean";
|
|
6127
|
+
};
|
|
6128
|
+
readonly has_opened_registration: {
|
|
6129
|
+
readonly type: "boolean";
|
|
6130
|
+
};
|
|
6131
|
+
readonly id: {
|
|
6132
|
+
readonly format: "int64";
|
|
6133
|
+
readonly type: "integer";
|
|
6134
|
+
};
|
|
6135
|
+
readonly is_bookable: {
|
|
6136
|
+
readonly type: "boolean";
|
|
6137
|
+
};
|
|
6138
|
+
readonly is_participating: {
|
|
6139
|
+
readonly type: "boolean";
|
|
6140
|
+
};
|
|
6141
|
+
readonly level_max: {
|
|
6142
|
+
readonly format: "int32";
|
|
6143
|
+
readonly nullable: true;
|
|
6144
|
+
readonly type: "integer";
|
|
6145
|
+
};
|
|
6146
|
+
readonly level_min: {
|
|
6147
|
+
readonly format: "int32";
|
|
6148
|
+
readonly nullable: true;
|
|
6149
|
+
readonly type: "integer";
|
|
6150
|
+
};
|
|
6151
|
+
readonly members_only: {
|
|
6152
|
+
readonly type: "boolean";
|
|
6153
|
+
};
|
|
6154
|
+
readonly message: {
|
|
6155
|
+
readonly nullable: true;
|
|
6156
|
+
readonly type: "string";
|
|
6157
|
+
};
|
|
6158
|
+
readonly participants: {
|
|
6159
|
+
readonly $ref: "#/components/schemas/MatchParticipants";
|
|
6160
|
+
};
|
|
6161
|
+
readonly price: {
|
|
6162
|
+
readonly $ref: "#/components/schemas/MatchBasePrice";
|
|
6163
|
+
};
|
|
6164
|
+
readonly start_date_time: {
|
|
6165
|
+
readonly format: "date-time";
|
|
6166
|
+
readonly type: "string";
|
|
6167
|
+
};
|
|
6168
|
+
readonly type: {
|
|
6169
|
+
readonly nullable: true;
|
|
6170
|
+
readonly type: "string";
|
|
6171
|
+
};
|
|
6172
|
+
};
|
|
6173
|
+
readonly required: readonly ["id", "start_date_time", "end_date_time", "courts", "participants", "price", "is_bookable", "is_participating", "has_opened_registration", "has_not_closed_registration", "members_only"];
|
|
6174
|
+
readonly type: "object";
|
|
6175
|
+
};
|
|
6176
|
+
declare const MatchOccasionDetailSchema: {
|
|
6177
|
+
readonly allOf: readonly [{
|
|
6178
|
+
readonly $ref: "#/components/schemas/MatchOccasion";
|
|
6179
|
+
}, {
|
|
6180
|
+
readonly properties: {
|
|
6181
|
+
readonly can_be_cancelled_by_user: {
|
|
6182
|
+
readonly type: "boolean";
|
|
6183
|
+
};
|
|
6184
|
+
readonly event: {
|
|
6185
|
+
readonly $ref: "#/components/schemas/MatchEvent";
|
|
6186
|
+
};
|
|
6187
|
+
readonly external_services: {
|
|
6188
|
+
readonly items: {
|
|
6189
|
+
readonly $ref: "#/components/schemas/ExternalService";
|
|
6190
|
+
};
|
|
6191
|
+
readonly type: "array";
|
|
6192
|
+
};
|
|
6193
|
+
readonly participant_details: {
|
|
6194
|
+
readonly items: {
|
|
6195
|
+
readonly $ref: "#/components/schemas/ParticipantDetail";
|
|
6196
|
+
};
|
|
6197
|
+
readonly type: "array";
|
|
6198
|
+
};
|
|
6199
|
+
readonly price_list: {
|
|
6200
|
+
readonly items: {
|
|
6201
|
+
readonly $ref: "#/components/schemas/MatchPriceListEntry";
|
|
6202
|
+
};
|
|
6203
|
+
readonly type: "array";
|
|
6204
|
+
};
|
|
6205
|
+
readonly refund_policy: {
|
|
6206
|
+
readonly $ref: "#/components/schemas/RefundPolicy";
|
|
6207
|
+
};
|
|
6208
|
+
readonly status: {
|
|
6209
|
+
readonly $ref: "#/components/schemas/MatchStatus";
|
|
6210
|
+
};
|
|
6211
|
+
readonly user_status: {
|
|
6212
|
+
readonly $ref: "#/components/schemas/UserParticipationStatus";
|
|
6213
|
+
};
|
|
6214
|
+
};
|
|
6215
|
+
readonly required: readonly ["price_list", "refund_policy", "can_be_cancelled_by_user", "participant_details", "status", "user_status", "external_services", "event"];
|
|
6216
|
+
readonly type: "object";
|
|
6217
|
+
}];
|
|
6218
|
+
readonly description: "Enriched occasion for the detail view. Extends MatchOccasion with price_list, refund_policy, can_be_cancelled_by_user, participant_details, status, user_status, external_services, event.\n";
|
|
6219
|
+
};
|
|
6220
|
+
declare const MatchParticipantsSchema: {
|
|
6221
|
+
readonly properties: {
|
|
6222
|
+
readonly available: {
|
|
6223
|
+
readonly format: "int32";
|
|
6224
|
+
readonly type: "integer";
|
|
6225
|
+
};
|
|
6226
|
+
readonly current: {
|
|
6227
|
+
readonly format: "int32";
|
|
6228
|
+
readonly type: "integer";
|
|
6229
|
+
};
|
|
6230
|
+
readonly max: {
|
|
6231
|
+
readonly format: "int32";
|
|
6232
|
+
readonly type: "integer";
|
|
6233
|
+
};
|
|
6234
|
+
readonly min: {
|
|
6235
|
+
readonly format: "int32";
|
|
6236
|
+
readonly nullable: true;
|
|
6237
|
+
readonly type: "integer";
|
|
6238
|
+
};
|
|
6239
|
+
readonly users: {
|
|
6240
|
+
readonly items: {
|
|
6241
|
+
readonly $ref: "#/components/schemas/ParticipantSummary";
|
|
6242
|
+
};
|
|
6243
|
+
readonly type: "array";
|
|
6244
|
+
};
|
|
6245
|
+
};
|
|
6246
|
+
readonly required: readonly ["current", "max", "available", "users"];
|
|
6247
|
+
readonly type: "object";
|
|
6248
|
+
};
|
|
6249
|
+
declare const MatchPriceListEntrySchema: {
|
|
6250
|
+
readonly properties: {
|
|
6251
|
+
readonly category_name: {
|
|
6252
|
+
readonly type: "string";
|
|
6253
|
+
};
|
|
6254
|
+
readonly is_default_category: {
|
|
6255
|
+
readonly type: "boolean";
|
|
6256
|
+
};
|
|
6257
|
+
readonly price: {
|
|
6258
|
+
readonly nullable: true;
|
|
6259
|
+
readonly type: "number";
|
|
6260
|
+
};
|
|
6261
|
+
};
|
|
6262
|
+
readonly required: readonly ["price", "category_name", "is_default_category"];
|
|
6263
|
+
readonly type: "object";
|
|
6264
|
+
};
|
|
6265
|
+
declare const MatchStatusSchema: {
|
|
6266
|
+
readonly enum: readonly ["OPEN", "FULL", "REGISTRATION_CLOSED", "REGISTRATION_NOT_OPEN", "CANCELLED", "COMPLETED", "MEMBERS_ONLY"];
|
|
6267
|
+
readonly type: "string";
|
|
6268
|
+
};
|
|
6269
|
+
declare const MatchUserPriceSchema: {
|
|
6270
|
+
readonly properties: {
|
|
6271
|
+
readonly applied_category: {
|
|
6272
|
+
readonly type: "string";
|
|
6273
|
+
};
|
|
6274
|
+
readonly can_use_promo_code: {
|
|
6275
|
+
readonly type: "boolean";
|
|
6276
|
+
};
|
|
6277
|
+
readonly currency: {
|
|
6278
|
+
readonly type: "string";
|
|
6279
|
+
};
|
|
6280
|
+
readonly fee: {
|
|
6281
|
+
readonly nullable: true;
|
|
6282
|
+
readonly type: "number";
|
|
6283
|
+
};
|
|
6284
|
+
readonly ordinary_price: {
|
|
6285
|
+
readonly type: "number";
|
|
6286
|
+
};
|
|
6287
|
+
readonly payment_methods: {
|
|
6288
|
+
readonly additionalProperties: true;
|
|
6289
|
+
readonly description: "Map of available payment methods keyed by method name";
|
|
6290
|
+
readonly type: "object";
|
|
6291
|
+
};
|
|
6292
|
+
readonly price: {
|
|
6293
|
+
readonly type: "number";
|
|
6294
|
+
};
|
|
6295
|
+
readonly vat: {
|
|
6296
|
+
readonly type: "number";
|
|
6297
|
+
};
|
|
6298
|
+
};
|
|
6299
|
+
readonly required: readonly ["price", "vat", "ordinary_price", "currency", "applied_category", "can_use_promo_code", "payment_methods", "fee"];
|
|
6300
|
+
readonly type: "object";
|
|
6301
|
+
};
|
|
6302
|
+
declare const MemberSchema: {
|
|
6303
|
+
readonly properties: {
|
|
6304
|
+
readonly first_name: {
|
|
6305
|
+
readonly type: "string";
|
|
6306
|
+
};
|
|
6307
|
+
readonly last_name: {
|
|
6308
|
+
readonly type: "string";
|
|
6309
|
+
};
|
|
6310
|
+
readonly profile_image_url: {
|
|
6311
|
+
readonly type: "string";
|
|
6312
|
+
};
|
|
6313
|
+
readonly relation_status: {
|
|
6314
|
+
readonly $ref: "#/components/schemas/MemberRelation";
|
|
6315
|
+
};
|
|
6316
|
+
readonly user_id: {
|
|
6317
|
+
readonly format: "uuid";
|
|
6318
|
+
readonly type: "string";
|
|
6319
|
+
};
|
|
6320
|
+
};
|
|
6321
|
+
readonly required: readonly ["user_id", "first_name", "last_name", "relation_status"];
|
|
6322
|
+
readonly type: "object";
|
|
6323
|
+
};
|
|
6324
|
+
declare const MemberListResponseSchema: {
|
|
6325
|
+
readonly properties: {
|
|
6326
|
+
readonly items: {
|
|
6327
|
+
readonly items: {
|
|
6328
|
+
readonly $ref: "#/components/schemas/Member";
|
|
6329
|
+
};
|
|
6330
|
+
readonly type: "array";
|
|
6331
|
+
};
|
|
6332
|
+
readonly meta: {
|
|
6333
|
+
readonly $ref: "#/components/schemas/PaginationMeta";
|
|
6334
|
+
};
|
|
6335
|
+
};
|
|
6336
|
+
readonly required: readonly ["items", "meta"];
|
|
6337
|
+
readonly type: "object";
|
|
6338
|
+
};
|
|
6339
|
+
declare const MemberRelationSchema: {
|
|
6340
|
+
readonly description: "Returns :\n* `FRIENDS` - The user is a friend.\n* `OUTGOING` - The user has sent a friend request to the current user.\n* `INCOMING` - The user has received a friend request from the current user.\n* `NO_RELATION` - The user has no ongoing relation with the current user.\n* `BLOCK` - The user is blocked by the current user\n";
|
|
6341
|
+
readonly enum: readonly ["FRIENDS", "OUTGOING", "INCOMING", "NO_RELATION", "BLOCK"];
|
|
6342
|
+
readonly type: "string";
|
|
6343
|
+
};
|
|
6344
|
+
declare const MembershipStatusSchema: {
|
|
6345
|
+
readonly enum: readonly ["ACTIVE", "INVITED", "LEFT"];
|
|
5661
6346
|
readonly type: "string";
|
|
5662
6347
|
};
|
|
5663
6348
|
declare const MetadataSchema: {
|
|
@@ -5763,6 +6448,25 @@ declare const NotificationsSummarySchema: {
|
|
|
5763
6448
|
readonly required: readonly ["count", "unread_count", "global_count", "global_unread_count"];
|
|
5764
6449
|
readonly type: "object";
|
|
5765
6450
|
};
|
|
6451
|
+
declare const OffsetPaginatedResultSetSchema: {
|
|
6452
|
+
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";
|
|
6453
|
+
readonly properties: {
|
|
6454
|
+
readonly limit: {
|
|
6455
|
+
readonly type: "integer";
|
|
6456
|
+
};
|
|
6457
|
+
readonly more_results: {
|
|
6458
|
+
readonly type: "boolean";
|
|
6459
|
+
};
|
|
6460
|
+
readonly offset: {
|
|
6461
|
+
readonly type: "integer";
|
|
6462
|
+
};
|
|
6463
|
+
readonly total_count: {
|
|
6464
|
+
readonly type: "integer";
|
|
6465
|
+
};
|
|
6466
|
+
};
|
|
6467
|
+
readonly required: readonly ["offset", "limit", "more_results"];
|
|
6468
|
+
readonly type: "object";
|
|
6469
|
+
};
|
|
5766
6470
|
declare const PaginationMetaSchema: {
|
|
5767
6471
|
readonly properties: {
|
|
5768
6472
|
readonly pagination: {
|
|
@@ -5781,6 +6485,48 @@ declare const PaginationMetaSchema: {
|
|
|
5781
6485
|
readonly required: readonly ["pagination", "summary"];
|
|
5782
6486
|
readonly type: "object";
|
|
5783
6487
|
};
|
|
6488
|
+
declare const ParticipantDetailSchema: {
|
|
6489
|
+
readonly allOf: readonly [{
|
|
6490
|
+
readonly $ref: "#/components/schemas/ParticipantSummary";
|
|
6491
|
+
}, {
|
|
6492
|
+
readonly properties: {
|
|
6493
|
+
readonly joined_at: {
|
|
6494
|
+
readonly format: "date-time";
|
|
6495
|
+
readonly type: "string";
|
|
6496
|
+
};
|
|
6497
|
+
};
|
|
6498
|
+
readonly required: readonly ["joined_at"];
|
|
6499
|
+
readonly type: "object";
|
|
6500
|
+
}];
|
|
6501
|
+
readonly description: "Participant with join timestamp. Extends ParticipantSummary.";
|
|
6502
|
+
};
|
|
6503
|
+
declare const ParticipantSummarySchema: {
|
|
6504
|
+
readonly properties: {
|
|
6505
|
+
readonly first_name: {
|
|
6506
|
+
readonly nullable: true;
|
|
6507
|
+
readonly type: "string";
|
|
6508
|
+
};
|
|
6509
|
+
readonly last_name: {
|
|
6510
|
+
readonly nullable: true;
|
|
6511
|
+
readonly type: "string";
|
|
6512
|
+
};
|
|
6513
|
+
readonly level: {
|
|
6514
|
+
readonly nullable: true;
|
|
6515
|
+
readonly type: "string";
|
|
6516
|
+
};
|
|
6517
|
+
readonly profile_image_url: {
|
|
6518
|
+
readonly nullable: true;
|
|
6519
|
+
readonly type: "string";
|
|
6520
|
+
};
|
|
6521
|
+
readonly user_id: {
|
|
6522
|
+
readonly format: "uuid";
|
|
6523
|
+
readonly nullable: true;
|
|
6524
|
+
readonly type: "string";
|
|
6525
|
+
};
|
|
6526
|
+
};
|
|
6527
|
+
readonly required: readonly ["user_id", "first_name", "last_name"];
|
|
6528
|
+
readonly type: "object";
|
|
6529
|
+
};
|
|
5784
6530
|
declare const PatchCommentRequestSchema: {
|
|
5785
6531
|
readonly properties: {
|
|
5786
6532
|
readonly is_read: {
|
|
@@ -6020,6 +6766,20 @@ declare const RecommendationListSchema: {
|
|
|
6020
6766
|
readonly required: readonly ["items", "meta"];
|
|
6021
6767
|
readonly type: "object";
|
|
6022
6768
|
};
|
|
6769
|
+
declare const RefundPolicySchema: {
|
|
6770
|
+
readonly nullable: true;
|
|
6771
|
+
readonly properties: {
|
|
6772
|
+
readonly args: {
|
|
6773
|
+
readonly items: {};
|
|
6774
|
+
readonly type: "array";
|
|
6775
|
+
};
|
|
6776
|
+
readonly code: {
|
|
6777
|
+
readonly type: "string";
|
|
6778
|
+
};
|
|
6779
|
+
};
|
|
6780
|
+
readonly required: readonly ["code", "args"];
|
|
6781
|
+
readonly type: "object";
|
|
6782
|
+
};
|
|
6023
6783
|
declare const RegisterDeviceRequestSchema: {
|
|
6024
6784
|
readonly properties: {
|
|
6025
6785
|
readonly app_version: {
|
|
@@ -6281,6 +7041,10 @@ declare const UpdateUsersProfilesRequestSchema: {
|
|
|
6281
7041
|
};
|
|
6282
7042
|
readonly type: "object";
|
|
6283
7043
|
};
|
|
7044
|
+
declare const UserParticipationStatusSchema: {
|
|
7045
|
+
readonly enum: readonly ["NOT_PARTICIPATING", "PARTICIPATING", "WAITLISTED"];
|
|
7046
|
+
readonly type: "string";
|
|
7047
|
+
};
|
|
6284
7048
|
declare const UserProfileSchema: {
|
|
6285
7049
|
readonly properties: {
|
|
6286
7050
|
readonly address: {
|
|
@@ -6469,6 +7233,8 @@ declare const schemas_gen_CreateCommentRequestSchema: typeof CreateCommentReques
|
|
|
6469
7233
|
declare const schemas_gen_CreatePostRequestSchema: typeof CreatePostRequestSchema;
|
|
6470
7234
|
declare const schemas_gen_CreateSportProfileLevelRequestSchema: typeof CreateSportProfileLevelRequestSchema;
|
|
6471
7235
|
declare const schemas_gen_CreateSportProfileRequestSchema: typeof CreateSportProfileRequestSchema;
|
|
7236
|
+
declare const schemas_gen_ExternalServiceSchema: typeof ExternalServiceSchema;
|
|
7237
|
+
declare const schemas_gen_FacilityListSchema: typeof FacilityListSchema;
|
|
6472
7238
|
declare const schemas_gen_FacilityMessagePayloadSchema: typeof FacilityMessagePayloadSchema;
|
|
6473
7239
|
declare const schemas_gen_FacilityOfferConditionActivitiesSchema: typeof FacilityOfferConditionActivitiesSchema;
|
|
6474
7240
|
declare const schemas_gen_FacilityOfferConditionCourtsSchema: typeof FacilityOfferConditionCourtsSchema;
|
|
@@ -6483,9 +7249,22 @@ declare const schemas_gen_FacilityOfferSchema: typeof FacilityOfferSchema;
|
|
|
6483
7249
|
declare const schemas_gen_FacilityPermissionSchema: typeof FacilityPermissionSchema;
|
|
6484
7250
|
declare const schemas_gen_FacilityPermissionsResponseSchema: typeof FacilityPermissionsResponseSchema;
|
|
6485
7251
|
declare const schemas_gen_FacilityPunchCardDataSchema: typeof FacilityPunchCardDataSchema;
|
|
7252
|
+
declare const schemas_gen_FacilitySchema: typeof FacilitySchema;
|
|
6486
7253
|
declare const schemas_gen_FacilityValueCardDataSchema: typeof FacilityValueCardDataSchema;
|
|
6487
7254
|
declare const schemas_gen_GenderSchema: typeof GenderSchema;
|
|
6488
7255
|
declare const schemas_gen_LinkTypeSchema: typeof LinkTypeSchema;
|
|
7256
|
+
declare const schemas_gen_MatchBasePriceSchema: typeof MatchBasePriceSchema;
|
|
7257
|
+
declare const schemas_gen_MatchCourtSchema: typeof MatchCourtSchema;
|
|
7258
|
+
declare const schemas_gen_MatchDetailSchema: typeof MatchDetailSchema;
|
|
7259
|
+
declare const schemas_gen_MatchEventSchema: typeof MatchEventSchema;
|
|
7260
|
+
declare const schemas_gen_MatchListSchema: typeof MatchListSchema;
|
|
7261
|
+
declare const schemas_gen_MatchOccasionDetailSchema: typeof MatchOccasionDetailSchema;
|
|
7262
|
+
declare const schemas_gen_MatchOccasionSchema: typeof MatchOccasionSchema;
|
|
7263
|
+
declare const schemas_gen_MatchParticipantsSchema: typeof MatchParticipantsSchema;
|
|
7264
|
+
declare const schemas_gen_MatchPriceListEntrySchema: typeof MatchPriceListEntrySchema;
|
|
7265
|
+
declare const schemas_gen_MatchSchema: typeof MatchSchema;
|
|
7266
|
+
declare const schemas_gen_MatchStatusSchema: typeof MatchStatusSchema;
|
|
7267
|
+
declare const schemas_gen_MatchUserPriceSchema: typeof MatchUserPriceSchema;
|
|
6489
7268
|
declare const schemas_gen_MemberListResponseSchema: typeof MemberListResponseSchema;
|
|
6490
7269
|
declare const schemas_gen_MemberRelationSchema: typeof MemberRelationSchema;
|
|
6491
7270
|
declare const schemas_gen_MemberSchema: typeof MemberSchema;
|
|
@@ -6497,7 +7276,10 @@ declare const schemas_gen_NotificationSchema: typeof NotificationSchema;
|
|
|
6497
7276
|
declare const schemas_gen_NotificationsFilterSchema: typeof NotificationsFilterSchema;
|
|
6498
7277
|
declare const schemas_gen_NotificationsPaginatedResponseSchema: typeof NotificationsPaginatedResponseSchema;
|
|
6499
7278
|
declare const schemas_gen_NotificationsSummarySchema: typeof NotificationsSummarySchema;
|
|
7279
|
+
declare const schemas_gen_OffsetPaginatedResultSetSchema: typeof OffsetPaginatedResultSetSchema;
|
|
6500
7280
|
declare const schemas_gen_PaginationMetaSchema: typeof PaginationMetaSchema;
|
|
7281
|
+
declare const schemas_gen_ParticipantDetailSchema: typeof ParticipantDetailSchema;
|
|
7282
|
+
declare const schemas_gen_ParticipantSummarySchema: typeof ParticipantSummarySchema;
|
|
6501
7283
|
declare const schemas_gen_PatchCommentRequestSchema: typeof PatchCommentRequestSchema;
|
|
6502
7284
|
declare const schemas_gen_PatchPostRequestSchema: typeof PatchPostRequestSchema;
|
|
6503
7285
|
declare const schemas_gen_PostLinkSchema: typeof PostLinkSchema;
|
|
@@ -6508,6 +7290,7 @@ declare const schemas_gen_PreferenceSchema: typeof PreferenceSchema;
|
|
|
6508
7290
|
declare const schemas_gen_PreferencesResponseSchema: typeof PreferencesResponseSchema;
|
|
6509
7291
|
declare const schemas_gen_RecommendationListSchema: typeof RecommendationListSchema;
|
|
6510
7292
|
declare const schemas_gen_RecommendationSchema: typeof RecommendationSchema;
|
|
7293
|
+
declare const schemas_gen_RefundPolicySchema: typeof RefundPolicySchema;
|
|
6511
7294
|
declare const schemas_gen_RegisterDeviceRequestSchema: typeof RegisterDeviceRequestSchema;
|
|
6512
7295
|
declare const schemas_gen_SourceSchema: typeof SourceSchema;
|
|
6513
7296
|
declare const schemas_gen_SportAuthoritiesResponseSchema: typeof SportAuthoritiesResponseSchema;
|
|
@@ -6521,6 +7304,7 @@ declare const schemas_gen_TopicSchema: typeof TopicSchema;
|
|
|
6521
7304
|
declare const schemas_gen_UpdatePreferencesRequestBodySchema: typeof UpdatePreferencesRequestBodySchema;
|
|
6522
7305
|
declare const schemas_gen_UpdateSportProfileLevelRequestSchema: typeof UpdateSportProfileLevelRequestSchema;
|
|
6523
7306
|
declare const schemas_gen_UpdateUsersProfilesRequestSchema: typeof UpdateUsersProfilesRequestSchema;
|
|
7307
|
+
declare const schemas_gen_UserParticipationStatusSchema: typeof UserParticipationStatusSchema;
|
|
6524
7308
|
declare const schemas_gen_UserProfileSchema: typeof UserProfileSchema;
|
|
6525
7309
|
declare const schemas_gen_UserRelationSchema: typeof UserRelationSchema;
|
|
6526
7310
|
declare const schemas_gen_UsersProfilesPaginatedResponseSchema: typeof UsersProfilesPaginatedResponseSchema;
|
|
@@ -6531,7 +7315,7 @@ declare const schemas_gen_pkgOpenapiSharedErrorsSchema: typeof pkgOpenapiSharedE
|
|
|
6531
7315
|
declare const schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema: typeof pkgOpenapiSharedOffsetPaginatedResultSetSchema;
|
|
6532
7316
|
declare const schemas_gen_pkgOpenapiSharedProblemDetailsSchema: typeof pkgOpenapiSharedProblemDetailsSchema;
|
|
6533
7317
|
declare namespace schemas_gen {
|
|
6534
|
-
export { schemas_gen_AuthorSchema as AuthorSchema, schemas_gen_ChannelsSchema as ChannelsSchema, schemas_gen_CommentListResponseSchema as CommentListResponseSchema, schemas_gen_CommentSchema as CommentSchema, schemas_gen_CommunityItemSchema as CommunityItemSchema, schemas_gen_CommunityListResponseSchema as CommunityListResponseSchema, schemas_gen_CreateCommentRequestSchema as CreateCommentRequestSchema, schemas_gen_CreatePostRequestSchema as CreatePostRequestSchema, schemas_gen_CreateSportProfileLevelRequestSchema as CreateSportProfileLevelRequestSchema, schemas_gen_CreateSportProfileRequestSchema as CreateSportProfileRequestSchema, 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_FacilityValueCardDataSchema as FacilityValueCardDataSchema, schemas_gen_GenderSchema as GenderSchema, schemas_gen_LinkTypeSchema as LinkTypeSchema, 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_PaginationMetaSchema as PaginationMetaSchema, schemas_gen_PatchCommentRequestSchema as PatchCommentRequestSchema, schemas_gen_PatchPostRequestSchema as PatchPostRequestSchema, schemas_gen_PostLinkSchema as PostLinkSchema, schemas_gen_PostListResponseSchema as PostListResponseSchema, schemas_gen_PostSchema as PostSchema, schemas_gen_PostingPermissionSchema as PostingPermissionSchema, schemas_gen_PreferenceSchema as PreferenceSchema, schemas_gen_PreferencesResponseSchema as PreferencesResponseSchema, schemas_gen_RecommendationListSchema as RecommendationListSchema, schemas_gen_RecommendationSchema as RecommendationSchema, schemas_gen_RegisterDeviceRequestSchema as RegisterDeviceRequestSchema, schemas_gen_SourceSchema as SourceSchema, schemas_gen_SportAuthoritiesResponseSchema as SportAuthoritiesResponseSchema, schemas_gen_SportAuthoritySchema as SportAuthoritySchema, schemas_gen_SportLevelSchema as SportLevelSchema, schemas_gen_SportProfileAttributeSchema as SportProfileAttributeSchema, schemas_gen_SportProfileLevelSchema as SportProfileLevelSchema, schemas_gen_SportProfileSchema as SportProfileSchema, schemas_gen_SportProfilesResponseSchema as SportProfilesResponseSchema, schemas_gen_TopicSchema as TopicSchema, schemas_gen_UpdatePreferencesRequestBodySchema as UpdatePreferencesRequestBodySchema, schemas_gen_UpdateSportProfileLevelRequestSchema as UpdateSportProfileLevelRequestSchema, schemas_gen_UpdateUsersProfilesRequestSchema as UpdateUsersProfilesRequestSchema, schemas_gen_UserProfileSchema as UserProfileSchema, schemas_gen_UserRelationSchema as UserRelationSchema, schemas_gen_UsersProfilesPaginatedResponseSchema as UsersProfilesPaginatedResponseSchema, schemas_gen_VisibilitySchema as VisibilitySchema, schemas_gen_pkgOpenapiSharedCursorPaginatedResultSetSchema as pkgOpenapiSharedCursorPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedErrorSchema as pkgOpenapiSharedErrorSchema, schemas_gen_pkgOpenapiSharedErrorsSchema as pkgOpenapiSharedErrorsSchema, schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema as pkgOpenapiSharedOffsetPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedProblemDetailsSchema as pkgOpenapiSharedProblemDetailsSchema };
|
|
7318
|
+
export { schemas_gen_AuthorSchema as AuthorSchema, schemas_gen_ChannelsSchema as ChannelsSchema, schemas_gen_CommentListResponseSchema as CommentListResponseSchema, schemas_gen_CommentSchema as CommentSchema, schemas_gen_CommunityItemSchema as CommunityItemSchema, schemas_gen_CommunityListResponseSchema as CommunityListResponseSchema, schemas_gen_CreateCommentRequestSchema as CreateCommentRequestSchema, 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_PostLinkSchema as PostLinkSchema, schemas_gen_PostListResponseSchema as PostListResponseSchema, schemas_gen_PostSchema as PostSchema, schemas_gen_PostingPermissionSchema as PostingPermissionSchema, schemas_gen_PreferenceSchema as PreferenceSchema, schemas_gen_PreferencesResponseSchema as PreferencesResponseSchema, schemas_gen_RecommendationListSchema as RecommendationListSchema, schemas_gen_RecommendationSchema as RecommendationSchema, schemas_gen_RefundPolicySchema as RefundPolicySchema, schemas_gen_RegisterDeviceRequestSchema as RegisterDeviceRequestSchema, schemas_gen_SourceSchema as SourceSchema, schemas_gen_SportAuthoritiesResponseSchema as SportAuthoritiesResponseSchema, schemas_gen_SportAuthoritySchema as SportAuthoritySchema, schemas_gen_SportLevelSchema as SportLevelSchema, schemas_gen_SportProfileAttributeSchema as SportProfileAttributeSchema, schemas_gen_SportProfileLevelSchema as SportProfileLevelSchema, schemas_gen_SportProfileSchema as SportProfileSchema, schemas_gen_SportProfilesResponseSchema as SportProfilesResponseSchema, schemas_gen_TopicSchema as TopicSchema, schemas_gen_UpdatePreferencesRequestBodySchema as UpdatePreferencesRequestBodySchema, schemas_gen_UpdateSportProfileLevelRequestSchema as UpdateSportProfileLevelRequestSchema, schemas_gen_UpdateUsersProfilesRequestSchema as UpdateUsersProfilesRequestSchema, schemas_gen_UserParticipationStatusSchema as UserParticipationStatusSchema, schemas_gen_UserProfileSchema as UserProfileSchema, schemas_gen_UserRelationSchema as UserRelationSchema, schemas_gen_UsersProfilesPaginatedResponseSchema as UsersProfilesPaginatedResponseSchema, schemas_gen_VisibilitySchema as VisibilitySchema, schemas_gen_pkgOpenapiSharedCursorPaginatedResultSetSchema as pkgOpenapiSharedCursorPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedErrorSchema as pkgOpenapiSharedErrorSchema, schemas_gen_pkgOpenapiSharedErrorsSchema as pkgOpenapiSharedErrorsSchema, schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema as pkgOpenapiSharedOffsetPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedProblemDetailsSchema as pkgOpenapiSharedProblemDetailsSchema };
|
|
6535
7319
|
}
|
|
6536
7320
|
|
|
6537
7321
|
type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
|
|
@@ -6559,6 +7343,24 @@ declare const listFacilityOffers: <ThrowOnError extends boolean = false>(options
|
|
|
6559
7343
|
* Will create a facility offer order and return the order object
|
|
6560
7344
|
*/
|
|
6561
7345
|
declare const createFacilityOfferOrder: <ThrowOnError extends boolean = false>(options: Options<CreateFacilityOfferOrderData, ThrowOnError>) => RequestResult<CreateFacilityOfferOrderResponses, CreateFacilityOfferOrderErrors, ThrowOnError, "fields">;
|
|
7346
|
+
/**
|
|
7347
|
+
* List matches
|
|
7348
|
+
*
|
|
7349
|
+
* List venue-created matches filtered by date range and optional criteria
|
|
7350
|
+
*/
|
|
7351
|
+
declare const listMatches: <ThrowOnError extends boolean = false>(options: Options<ListMatchesData, ThrowOnError>) => RequestResult<ListMatchesResponses, ListMatchesErrors, ThrowOnError, "fields">;
|
|
7352
|
+
/**
|
|
7353
|
+
* Get match detail
|
|
7354
|
+
*
|
|
7355
|
+
* Get detailed information about a specific match
|
|
7356
|
+
*/
|
|
7357
|
+
declare const getMatch: <ThrowOnError extends boolean = false>(options: Options<GetMatchData, ThrowOnError>) => RequestResult<GetMatchResponses, GetMatchErrors, ThrowOnError, "fields">;
|
|
7358
|
+
/**
|
|
7359
|
+
* Get user-specific match pricing
|
|
7360
|
+
*
|
|
7361
|
+
* Get personalized pricing for a match. The path user_id must match the authenticated user.
|
|
7362
|
+
*/
|
|
7363
|
+
declare const getMatchUserPrice: <ThrowOnError extends boolean = false>(options: Options<GetMatchUserPriceData, ThrowOnError>) => RequestResult<GetMatchUserPriceResponses, GetMatchUserPriceErrors, ThrowOnError, "fields">;
|
|
6562
7364
|
/**
|
|
6563
7365
|
* Get all notifications
|
|
6564
7366
|
*
|
|
@@ -6607,6 +7409,10 @@ declare const getSportAuthorities: <ThrowOnError extends boolean = false>(option
|
|
|
6607
7409
|
* Get a list of users based on the current user's search query
|
|
6608
7410
|
*/
|
|
6609
7411
|
declare const searchUsers: <ThrowOnError extends boolean = false>(options?: Options<SearchUsersData, ThrowOnError>) => RequestResult<SearchUsersResponses, SearchUsersErrors, ThrowOnError, "fields">;
|
|
7412
|
+
/**
|
|
7413
|
+
* Register or update an FCM device token for the authenticated user
|
|
7414
|
+
*/
|
|
7415
|
+
declare const registerDevice: <ThrowOnError extends boolean = false>(options: Options<RegisterDeviceData, ThrowOnError>) => RequestResult<RegisterDeviceResponses, RegisterDeviceErrors, ThrowOnError, "fields">;
|
|
6610
7416
|
/**
|
|
6611
7417
|
* Get facility permissions for a user
|
|
6612
7418
|
*
|
|
@@ -6738,6 +7544,122 @@ declare const listFacilityOffersInfiniteOptions: (options: Options<ListFacilityO
|
|
|
6738
7544
|
* Will create a facility offer order and return the order object
|
|
6739
7545
|
*/
|
|
6740
7546
|
declare const createFacilityOfferOrderMutation: (options?: Partial<Options<CreateFacilityOfferOrderData>>) => UseMutationOptions<CreateFacilityOfferOrderResponse, CreateFacilityOfferOrderError, Options<CreateFacilityOfferOrderData>>;
|
|
7547
|
+
declare const listMatchesQueryKey: (options: Options<ListMatchesData>) => [Pick<Options<ListMatchesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
7548
|
+
_id: string;
|
|
7549
|
+
_infinite?: boolean;
|
|
7550
|
+
tags?: ReadonlyArray<string>;
|
|
7551
|
+
}];
|
|
7552
|
+
/**
|
|
7553
|
+
* List matches
|
|
7554
|
+
*
|
|
7555
|
+
* List venue-created matches filtered by date range and optional criteria
|
|
7556
|
+
*/
|
|
7557
|
+
declare const listMatchesOptions: (options: Options<ListMatchesData>) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<MatchList, PkgOpenapiSharedProblemDetails, MatchList, [Pick<Options<ListMatchesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
7558
|
+
_id: string;
|
|
7559
|
+
_infinite?: boolean;
|
|
7560
|
+
tags?: ReadonlyArray<string>;
|
|
7561
|
+
}]>, "queryFn"> & {
|
|
7562
|
+
queryFn?: _tanstack_react_query.QueryFunction<MatchList, [Pick<Options<ListMatchesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
7563
|
+
_id: string;
|
|
7564
|
+
_infinite?: boolean;
|
|
7565
|
+
tags?: ReadonlyArray<string>;
|
|
7566
|
+
}], never> | undefined;
|
|
7567
|
+
} & {
|
|
7568
|
+
queryKey: [Pick<Options<ListMatchesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
7569
|
+
_id: string;
|
|
7570
|
+
_infinite?: boolean;
|
|
7571
|
+
tags?: ReadonlyArray<string>;
|
|
7572
|
+
}] & {
|
|
7573
|
+
[dataTagSymbol]: MatchList;
|
|
7574
|
+
[dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
|
|
7575
|
+
};
|
|
7576
|
+
};
|
|
7577
|
+
declare const listMatchesInfiniteQueryKey: (options: Options<ListMatchesData>) => QueryKey<Options<ListMatchesData>>;
|
|
7578
|
+
/**
|
|
7579
|
+
* List matches
|
|
7580
|
+
*
|
|
7581
|
+
* List venue-created matches filtered by date range and optional criteria
|
|
7582
|
+
*/
|
|
7583
|
+
declare const listMatchesInfiniteOptions: (options: Options<ListMatchesData>) => _tanstack_react_query.UseInfiniteQueryOptions<MatchList, PkgOpenapiSharedProblemDetails, InfiniteData<MatchList, unknown>, QueryKey<Options<ListMatchesData>>, number | Pick<Pick<Options<ListMatchesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
7584
|
+
_id: string;
|
|
7585
|
+
_infinite?: boolean;
|
|
7586
|
+
tags?: ReadonlyArray<string>;
|
|
7587
|
+
}, "query" | "body" | "headers" | "path">> & {
|
|
7588
|
+
initialData: InfiniteData<MatchList, number | Pick<Pick<Options<ListMatchesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
7589
|
+
_id: string;
|
|
7590
|
+
_infinite?: boolean;
|
|
7591
|
+
tags?: ReadonlyArray<string>;
|
|
7592
|
+
}, "query" | "body" | "headers" | "path">> | (() => InfiniteData<MatchList, number | Pick<Pick<Options<ListMatchesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
7593
|
+
_id: string;
|
|
7594
|
+
_infinite?: boolean;
|
|
7595
|
+
tags?: ReadonlyArray<string>;
|
|
7596
|
+
}, "query" | "body" | "headers" | "path">>) | undefined;
|
|
7597
|
+
} & {
|
|
7598
|
+
queryKey: QueryKey<Options<ListMatchesData>> & {
|
|
7599
|
+
[dataTagSymbol]: InfiniteData<MatchList, unknown>;
|
|
7600
|
+
[dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
|
|
7601
|
+
};
|
|
7602
|
+
};
|
|
7603
|
+
declare const getMatchQueryKey: (options: Options<GetMatchData>) => [Pick<Options<GetMatchData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
7604
|
+
_id: string;
|
|
7605
|
+
_infinite?: boolean;
|
|
7606
|
+
tags?: ReadonlyArray<string>;
|
|
7607
|
+
}];
|
|
7608
|
+
/**
|
|
7609
|
+
* Get match detail
|
|
7610
|
+
*
|
|
7611
|
+
* Get detailed information about a specific match
|
|
7612
|
+
*/
|
|
7613
|
+
declare const getMatchOptions: (options: Options<GetMatchData>) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<MatchDetail, PkgOpenapiSharedProblemDetails, MatchDetail, [Pick<Options<GetMatchData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
7614
|
+
_id: string;
|
|
7615
|
+
_infinite?: boolean;
|
|
7616
|
+
tags?: ReadonlyArray<string>;
|
|
7617
|
+
}]>, "queryFn"> & {
|
|
7618
|
+
queryFn?: _tanstack_react_query.QueryFunction<MatchDetail, [Pick<Options<GetMatchData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
7619
|
+
_id: string;
|
|
7620
|
+
_infinite?: boolean;
|
|
7621
|
+
tags?: ReadonlyArray<string>;
|
|
7622
|
+
}], never> | undefined;
|
|
7623
|
+
} & {
|
|
7624
|
+
queryKey: [Pick<Options<GetMatchData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
7625
|
+
_id: string;
|
|
7626
|
+
_infinite?: boolean;
|
|
7627
|
+
tags?: ReadonlyArray<string>;
|
|
7628
|
+
}] & {
|
|
7629
|
+
[dataTagSymbol]: MatchDetail;
|
|
7630
|
+
[dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
|
|
7631
|
+
};
|
|
7632
|
+
};
|
|
7633
|
+
declare const getMatchUserPriceQueryKey: (options: Options<GetMatchUserPriceData>) => [Pick<Options<GetMatchUserPriceData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
7634
|
+
_id: string;
|
|
7635
|
+
_infinite?: boolean;
|
|
7636
|
+
tags?: ReadonlyArray<string>;
|
|
7637
|
+
}];
|
|
7638
|
+
/**
|
|
7639
|
+
* Get user-specific match pricing
|
|
7640
|
+
*
|
|
7641
|
+
* Get personalized pricing for a match. The path user_id must match the authenticated user.
|
|
7642
|
+
*/
|
|
7643
|
+
declare const getMatchUserPriceOptions: (options: Options<GetMatchUserPriceData>) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<MatchUserPrice, PkgOpenapiSharedProblemDetails, MatchUserPrice, [Pick<Options<GetMatchUserPriceData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
7644
|
+
_id: string;
|
|
7645
|
+
_infinite?: boolean;
|
|
7646
|
+
tags?: ReadonlyArray<string>;
|
|
7647
|
+
}]>, "queryFn"> & {
|
|
7648
|
+
queryFn?: _tanstack_react_query.QueryFunction<MatchUserPrice, [Pick<Options<GetMatchUserPriceData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
7649
|
+
_id: string;
|
|
7650
|
+
_infinite?: boolean;
|
|
7651
|
+
tags?: ReadonlyArray<string>;
|
|
7652
|
+
}], never> | undefined;
|
|
7653
|
+
} & {
|
|
7654
|
+
queryKey: [Pick<Options<GetMatchUserPriceData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
7655
|
+
_id: string;
|
|
7656
|
+
_infinite?: boolean;
|
|
7657
|
+
tags?: ReadonlyArray<string>;
|
|
7658
|
+
}] & {
|
|
7659
|
+
[dataTagSymbol]: MatchUserPrice;
|
|
7660
|
+
[dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
|
|
7661
|
+
};
|
|
7662
|
+
};
|
|
6741
7663
|
declare const getNotificationsQueryKey: (options?: Options<GetNotificationsData>) => [Pick<Options<GetNotificationsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
6742
7664
|
_id: string;
|
|
6743
7665
|
_infinite?: boolean;
|
|
@@ -6958,6 +7880,10 @@ declare const searchUsersInfiniteOptions: (options?: Options<SearchUsersData>) =
|
|
|
6958
7880
|
[dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
|
|
6959
7881
|
};
|
|
6960
7882
|
};
|
|
7883
|
+
/**
|
|
7884
|
+
* Register or update an FCM device token for the authenticated user
|
|
7885
|
+
*/
|
|
7886
|
+
declare const registerDeviceMutation: (options?: Partial<Options<RegisterDeviceData>>) => UseMutationOptions<RegisterDeviceResponse, RegisterDeviceError, Options<RegisterDeviceData>>;
|
|
6961
7887
|
declare const getUserFacilityPermissionsQueryKey: (options: Options<GetUserFacilityPermissionsData>) => [Pick<Options<GetUserFacilityPermissionsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
6962
7888
|
_id: string;
|
|
6963
7889
|
_infinite?: boolean;
|
|
@@ -7149,6 +8075,10 @@ declare const reactQuery_gen_createFacilityOfferOrderMutation: typeof createFaci
|
|
|
7149
8075
|
declare const reactQuery_gen_createUserSportProfileMutation: typeof createUserSportProfileMutation;
|
|
7150
8076
|
declare const reactQuery_gen_deleteUserSportProfileLevelMutation: typeof deleteUserSportProfileLevelMutation;
|
|
7151
8077
|
declare const reactQuery_gen_deleteUserSportProfileMutation: typeof deleteUserSportProfileMutation;
|
|
8078
|
+
declare const reactQuery_gen_getMatchOptions: typeof getMatchOptions;
|
|
8079
|
+
declare const reactQuery_gen_getMatchQueryKey: typeof getMatchQueryKey;
|
|
8080
|
+
declare const reactQuery_gen_getMatchUserPriceOptions: typeof getMatchUserPriceOptions;
|
|
8081
|
+
declare const reactQuery_gen_getMatchUserPriceQueryKey: typeof getMatchUserPriceQueryKey;
|
|
7152
8082
|
declare const reactQuery_gen_getNotificationByIdOptions: typeof getNotificationByIdOptions;
|
|
7153
8083
|
declare const reactQuery_gen_getNotificationByIdQueryKey: typeof getNotificationByIdQueryKey;
|
|
7154
8084
|
declare const reactQuery_gen_getNotificationsInfiniteOptions: typeof getNotificationsInfiniteOptions;
|
|
@@ -7173,6 +8103,11 @@ declare const reactQuery_gen_listFacilityOffersInfiniteOptions: typeof listFacil
|
|
|
7173
8103
|
declare const reactQuery_gen_listFacilityOffersInfiniteQueryKey: typeof listFacilityOffersInfiniteQueryKey;
|
|
7174
8104
|
declare const reactQuery_gen_listFacilityOffersOptions: typeof listFacilityOffersOptions;
|
|
7175
8105
|
declare const reactQuery_gen_listFacilityOffersQueryKey: typeof listFacilityOffersQueryKey;
|
|
8106
|
+
declare const reactQuery_gen_listMatchesInfiniteOptions: typeof listMatchesInfiniteOptions;
|
|
8107
|
+
declare const reactQuery_gen_listMatchesInfiniteQueryKey: typeof listMatchesInfiniteQueryKey;
|
|
8108
|
+
declare const reactQuery_gen_listMatchesOptions: typeof listMatchesOptions;
|
|
8109
|
+
declare const reactQuery_gen_listMatchesQueryKey: typeof listMatchesQueryKey;
|
|
8110
|
+
declare const reactQuery_gen_registerDeviceMutation: typeof registerDeviceMutation;
|
|
7176
8111
|
declare const reactQuery_gen_searchUsersInfiniteOptions: typeof searchUsersInfiniteOptions;
|
|
7177
8112
|
declare const reactQuery_gen_searchUsersInfiniteQueryKey: typeof searchUsersInfiniteQueryKey;
|
|
7178
8113
|
declare const reactQuery_gen_searchUsersOptions: typeof searchUsersOptions;
|
|
@@ -7183,7 +8118,7 @@ declare const reactQuery_gen_updateNotificationsPreferencesMutation: typeof upda
|
|
|
7183
8118
|
declare const reactQuery_gen_updateUserProfileMutation: typeof updateUserProfileMutation;
|
|
7184
8119
|
declare const reactQuery_gen_updateUserSportProfileLevelMutation: typeof updateUserSportProfileLevelMutation;
|
|
7185
8120
|
declare namespace reactQuery_gen {
|
|
7186
|
-
export { type reactQuery_gen_QueryKey as QueryKey, reactQuery_gen_addUserSportProfileLevelMutation as addUserSportProfileLevelMutation, reactQuery_gen_createFacilityOfferOrderMutation as createFacilityOfferOrderMutation, reactQuery_gen_createUserSportProfileMutation as createUserSportProfileMutation, reactQuery_gen_deleteUserSportProfileLevelMutation as deleteUserSportProfileLevelMutation, reactQuery_gen_deleteUserSportProfileMutation as deleteUserSportProfileMutation, 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_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_listFacilityOffersInfiniteOptions as listFacilityOffersInfiniteOptions, reactQuery_gen_listFacilityOffersInfiniteQueryKey as listFacilityOffersInfiniteQueryKey, reactQuery_gen_listFacilityOffersOptions as listFacilityOffersOptions, reactQuery_gen_listFacilityOffersQueryKey as listFacilityOffersQueryKey, 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 };
|
|
8121
|
+
export { type reactQuery_gen_QueryKey as QueryKey, reactQuery_gen_addUserSportProfileLevelMutation as addUserSportProfileLevelMutation, reactQuery_gen_createFacilityOfferOrderMutation as createFacilityOfferOrderMutation, reactQuery_gen_createUserSportProfileMutation as createUserSportProfileMutation, reactQuery_gen_deleteUserSportProfileLevelMutation as deleteUserSportProfileLevelMutation, reactQuery_gen_deleteUserSportProfileMutation as deleteUserSportProfileMutation, 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_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_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_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 };
|
|
7187
8122
|
}
|
|
7188
8123
|
|
|
7189
8124
|
type indexV1_AddUserSportProfileLevelData = AddUserSportProfileLevelData;
|
|
@@ -7225,7 +8160,10 @@ type indexV1_DeleteUserSportProfileLevelResponse = DeleteUserSportProfileLevelRe
|
|
|
7225
8160
|
type indexV1_DeleteUserSportProfileLevelResponses = DeleteUserSportProfileLevelResponses;
|
|
7226
8161
|
type indexV1_DeleteUserSportProfileResponse = DeleteUserSportProfileResponse;
|
|
7227
8162
|
type indexV1_DeleteUserSportProfileResponses = DeleteUserSportProfileResponses;
|
|
8163
|
+
type indexV1_ExternalService = ExternalService;
|
|
8164
|
+
type indexV1_Facility = Facility;
|
|
7228
8165
|
type indexV1_FacilityIdPath = FacilityIdPath;
|
|
8166
|
+
type indexV1_FacilityList = FacilityList;
|
|
7229
8167
|
type indexV1_FacilityMessagePayload = FacilityMessagePayload;
|
|
7230
8168
|
type indexV1_FacilityOffer = FacilityOffer;
|
|
7231
8169
|
type indexV1_FacilityOfferCondition = FacilityOfferCondition;
|
|
@@ -7242,6 +8180,16 @@ type indexV1_FacilityPermissionsResponse = FacilityPermissionsResponse;
|
|
|
7242
8180
|
type indexV1_FacilityPunchCardData = FacilityPunchCardData;
|
|
7243
8181
|
type indexV1_FacilityValueCardData = FacilityValueCardData;
|
|
7244
8182
|
type indexV1_Gender = Gender;
|
|
8183
|
+
type indexV1_GetMatchData = GetMatchData;
|
|
8184
|
+
type indexV1_GetMatchError = GetMatchError;
|
|
8185
|
+
type indexV1_GetMatchErrors = GetMatchErrors;
|
|
8186
|
+
type indexV1_GetMatchResponse = GetMatchResponse;
|
|
8187
|
+
type indexV1_GetMatchResponses = GetMatchResponses;
|
|
8188
|
+
type indexV1_GetMatchUserPriceData = GetMatchUserPriceData;
|
|
8189
|
+
type indexV1_GetMatchUserPriceError = GetMatchUserPriceError;
|
|
8190
|
+
type indexV1_GetMatchUserPriceErrors = GetMatchUserPriceErrors;
|
|
8191
|
+
type indexV1_GetMatchUserPriceResponse = GetMatchUserPriceResponse;
|
|
8192
|
+
type indexV1_GetMatchUserPriceResponses = GetMatchUserPriceResponses;
|
|
7245
8193
|
type indexV1_GetNotificationByIdData = GetNotificationByIdData;
|
|
7246
8194
|
type indexV1_GetNotificationByIdError = GetNotificationByIdError;
|
|
7247
8195
|
type indexV1_GetNotificationByIdErrors = GetNotificationByIdErrors;
|
|
@@ -7288,6 +8236,23 @@ type indexV1_ListFacilityOffersError = ListFacilityOffersError;
|
|
|
7288
8236
|
type indexV1_ListFacilityOffersErrors = ListFacilityOffersErrors;
|
|
7289
8237
|
type indexV1_ListFacilityOffersResponse = ListFacilityOffersResponse;
|
|
7290
8238
|
type indexV1_ListFacilityOffersResponses = ListFacilityOffersResponses;
|
|
8239
|
+
type indexV1_ListMatchesData = ListMatchesData;
|
|
8240
|
+
type indexV1_ListMatchesError = ListMatchesError;
|
|
8241
|
+
type indexV1_ListMatchesErrors = ListMatchesErrors;
|
|
8242
|
+
type indexV1_ListMatchesResponse = ListMatchesResponse;
|
|
8243
|
+
type indexV1_ListMatchesResponses = ListMatchesResponses;
|
|
8244
|
+
type indexV1_Match = Match;
|
|
8245
|
+
type indexV1_MatchBasePrice = MatchBasePrice;
|
|
8246
|
+
type indexV1_MatchCourt = MatchCourt;
|
|
8247
|
+
type indexV1_MatchDetail = MatchDetail;
|
|
8248
|
+
type indexV1_MatchEvent = MatchEvent;
|
|
8249
|
+
type indexV1_MatchList = MatchList;
|
|
8250
|
+
type indexV1_MatchOccasion = MatchOccasion;
|
|
8251
|
+
type indexV1_MatchOccasionDetail = MatchOccasionDetail;
|
|
8252
|
+
type indexV1_MatchParticipants = MatchParticipants;
|
|
8253
|
+
type indexV1_MatchPriceListEntry = MatchPriceListEntry;
|
|
8254
|
+
type indexV1_MatchStatus = MatchStatus;
|
|
8255
|
+
type indexV1_MatchUserPrice = MatchUserPrice;
|
|
7291
8256
|
type indexV1_Member = Member;
|
|
7292
8257
|
type indexV1_MemberListResponse = MemberListResponse;
|
|
7293
8258
|
type indexV1_MemberRelation = MemberRelation;
|
|
@@ -7301,8 +8266,11 @@ type indexV1_NotificationsFilterParam = NotificationsFilterParam;
|
|
|
7301
8266
|
type indexV1_NotificationsPaginatedResponse = NotificationsPaginatedResponse;
|
|
7302
8267
|
type indexV1_NotificationsSummary = NotificationsSummary;
|
|
7303
8268
|
type indexV1_OfferIdPath = OfferIdPath;
|
|
8269
|
+
type indexV1_OffsetPaginatedResultSet = OffsetPaginatedResultSet;
|
|
7304
8270
|
type indexV1_Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options<TData, ThrowOnError>;
|
|
7305
8271
|
type indexV1_PaginationMeta = PaginationMeta;
|
|
8272
|
+
type indexV1_ParticipantDetail = ParticipantDetail;
|
|
8273
|
+
type indexV1_ParticipantSummary = ParticipantSummary;
|
|
7306
8274
|
type indexV1_PatchCommentRequest = PatchCommentRequest;
|
|
7307
8275
|
type indexV1_PatchPostRequest = PatchPostRequest;
|
|
7308
8276
|
type indexV1_PkgOpenapiSharedCursorLimitParam = PkgOpenapiSharedCursorLimitParam;
|
|
@@ -7323,7 +8291,13 @@ type indexV1_Preference = Preference;
|
|
|
7323
8291
|
type indexV1_PreferencesResponse = PreferencesResponse;
|
|
7324
8292
|
type indexV1_Recommendation = Recommendation;
|
|
7325
8293
|
type indexV1_RecommendationList = RecommendationList;
|
|
8294
|
+
type indexV1_RefundPolicy = RefundPolicy;
|
|
8295
|
+
type indexV1_RegisterDeviceData = RegisterDeviceData;
|
|
8296
|
+
type indexV1_RegisterDeviceError = RegisterDeviceError;
|
|
8297
|
+
type indexV1_RegisterDeviceErrors = RegisterDeviceErrors;
|
|
7326
8298
|
type indexV1_RegisterDeviceRequest = RegisterDeviceRequest;
|
|
8299
|
+
type indexV1_RegisterDeviceResponse = RegisterDeviceResponse;
|
|
8300
|
+
type indexV1_RegisterDeviceResponses = RegisterDeviceResponses;
|
|
7327
8301
|
type indexV1_SearchUsersData = SearchUsersData;
|
|
7328
8302
|
type indexV1_SearchUsersError = SearchUsersError;
|
|
7329
8303
|
type indexV1_SearchUsersErrors = SearchUsersErrors;
|
|
@@ -7369,6 +8343,7 @@ type indexV1_UpdateUserSportProfileLevelResponses = UpdateUserSportProfileLevelR
|
|
|
7369
8343
|
type indexV1_UpdateUsersProfilesRequest = UpdateUsersProfilesRequest;
|
|
7370
8344
|
type indexV1_UserId = UserId;
|
|
7371
8345
|
type indexV1_UserIdParam = UserIdParam;
|
|
8346
|
+
type indexV1_UserParticipationStatus = UserParticipationStatus;
|
|
7372
8347
|
type indexV1_UserProfile = UserProfile;
|
|
7373
8348
|
type indexV1_UserRelation = UserRelation;
|
|
7374
8349
|
type indexV1_UsersProfilesPaginatedResponse = UsersProfilesPaginatedResponse;
|
|
@@ -7379,6 +8354,8 @@ declare const indexV1_createFacilityOfferOrder: typeof createFacilityOfferOrder;
|
|
|
7379
8354
|
declare const indexV1_createUserSportProfile: typeof createUserSportProfile;
|
|
7380
8355
|
declare const indexV1_deleteUserSportProfile: typeof deleteUserSportProfile;
|
|
7381
8356
|
declare const indexV1_deleteUserSportProfileLevel: typeof deleteUserSportProfileLevel;
|
|
8357
|
+
declare const indexV1_getMatch: typeof getMatch;
|
|
8358
|
+
declare const indexV1_getMatchUserPrice: typeof getMatchUserPrice;
|
|
7382
8359
|
declare const indexV1_getNotificationById: typeof getNotificationById;
|
|
7383
8360
|
declare const indexV1_getNotifications: typeof getNotifications;
|
|
7384
8361
|
declare const indexV1_getNotificationsPreferences: typeof getNotificationsPreferences;
|
|
@@ -7388,6 +8365,8 @@ declare const indexV1_getUserFacilityPermissions: typeof getUserFacilityPermissi
|
|
|
7388
8365
|
declare const indexV1_getUserSportProfile: typeof getUserSportProfile;
|
|
7389
8366
|
declare const indexV1_getUserSportProfiles: typeof getUserSportProfiles;
|
|
7390
8367
|
declare const indexV1_listFacilityOffers: typeof listFacilityOffers;
|
|
8368
|
+
declare const indexV1_listMatches: typeof listMatches;
|
|
8369
|
+
declare const indexV1_registerDevice: typeof registerDevice;
|
|
7391
8370
|
declare const indexV1_searchUsers: typeof searchUsers;
|
|
7392
8371
|
declare const indexV1_updateAllNotifications: typeof updateAllNotifications;
|
|
7393
8372
|
declare const indexV1_updateNotification: typeof updateNotification;
|
|
@@ -7395,7 +8374,7 @@ declare const indexV1_updateNotificationsPreferences: typeof updateNotifications
|
|
|
7395
8374
|
declare const indexV1_updateUserProfile: typeof updateUserProfile;
|
|
7396
8375
|
declare const indexV1_updateUserSportProfileLevel: typeof updateUserSportProfileLevel;
|
|
7397
8376
|
declare namespace indexV1 {
|
|
7398
|
-
export { 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_CreateCommentRequest as CreateCommentRequest, 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_CreatePostRequest as CreatePostRequest, 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_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_FacilityIdPath as FacilityIdPath, 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_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_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_LinkType as LinkType, 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_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_Options as Options, type indexV1_PaginationMeta as PaginationMeta, type indexV1_PatchCommentRequest as PatchCommentRequest, type indexV1_PatchPostRequest as PatchPostRequest, 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_RegisterDeviceRequest as RegisterDeviceRequest, 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_UserProfile as UserProfile, type indexV1_UserRelation as UserRelation, type indexV1_UsersProfilesPaginatedResponse as UsersProfilesPaginatedResponse, type indexV1_Visibility as Visibility, indexV1_addUserSportProfileLevel as addUserSportProfileLevel, indexV1_client as client, indexV1_createFacilityOfferOrder as createFacilityOfferOrder, indexV1_createUserSportProfile as createUserSportProfile, indexV1_deleteUserSportProfile as deleteUserSportProfile, indexV1_deleteUserSportProfileLevel as deleteUserSportProfileLevel, indexV1_getNotificationById as getNotificationById, indexV1_getNotifications as getNotifications, indexV1_getNotificationsPreferences as getNotificationsPreferences, indexV1_getRecommendations as getRecommendations, indexV1_getSportAuthorities as getSportAuthorities, indexV1_getUserFacilityPermissions as getUserFacilityPermissions, indexV1_getUserSportProfile as getUserSportProfile, indexV1_getUserSportProfiles as getUserSportProfiles, indexV1_listFacilityOffers as listFacilityOffers, reactQuery_gen as queries, 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 };
|
|
8377
|
+
export { 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_CreateCommentRequest as CreateCommentRequest, 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_CreatePostRequest as CreatePostRequest, 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_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_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_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_LinkType as LinkType, 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_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_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_addUserSportProfileLevel as addUserSportProfileLevel, indexV1_client as client, indexV1_createFacilityOfferOrder as createFacilityOfferOrder, indexV1_createUserSportProfile as createUserSportProfile, indexV1_deleteUserSportProfile as deleteUserSportProfile, indexV1_deleteUserSportProfileLevel as deleteUserSportProfileLevel, indexV1_getMatch as getMatch, indexV1_getMatchUserPrice as getMatchUserPrice, indexV1_getNotificationById as getNotificationById, indexV1_getNotifications as getNotifications, indexV1_getNotificationsPreferences as getNotificationsPreferences, indexV1_getRecommendations as getRecommendations, indexV1_getSportAuthorities as getSportAuthorities, indexV1_getUserFacilityPermissions as getUserFacilityPermissions, indexV1_getUserSportProfile as getUserSportProfile, indexV1_getUserSportProfiles as getUserSportProfiles, indexV1_listFacilityOffers as listFacilityOffers, indexV1_listMatches as listMatches, 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 };
|
|
7399
8378
|
}
|
|
7400
8379
|
|
|
7401
8380
|
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 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, 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 };
|