@matchi/api 0.20260324.1 → 0.20260414.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main/index.d.mts +923 -15
- package/dist/main/index.d.ts +923 -15
- package/dist/main/index.js +9 -5
- package/dist/main/index.mjs +9 -5
- package/package.json +1 -1
package/dist/main/index.d.mts
CHANGED
|
@@ -3527,10 +3527,57 @@ type Options$1<TData extends TDataShape = TDataShape, ThrowOnError extends boole
|
|
|
3527
3527
|
type ClientOptions = {
|
|
3528
3528
|
baseUrl: 'https://api.matchi.com/v1' | (string & {});
|
|
3529
3529
|
};
|
|
3530
|
+
type Author = {
|
|
3531
|
+
display_name?: string;
|
|
3532
|
+
facility_id?: number;
|
|
3533
|
+
first_name?: string;
|
|
3534
|
+
last_name?: string;
|
|
3535
|
+
profile_image_url?: string;
|
|
3536
|
+
relation_status?: MemberRelation;
|
|
3537
|
+
type: 'admin' | 'member';
|
|
3538
|
+
user_id?: string;
|
|
3539
|
+
};
|
|
3530
3540
|
type Channels = {
|
|
3531
3541
|
inapp: boolean;
|
|
3532
3542
|
push: boolean;
|
|
3533
3543
|
};
|
|
3544
|
+
type Comment = {
|
|
3545
|
+
author: Author;
|
|
3546
|
+
comment_id: string;
|
|
3547
|
+
content: string;
|
|
3548
|
+
created_at: string;
|
|
3549
|
+
is_read: boolean;
|
|
3550
|
+
post_id: string;
|
|
3551
|
+
};
|
|
3552
|
+
type CommentListResponse = {
|
|
3553
|
+
items: Array<Comment>;
|
|
3554
|
+
meta: PaginationMeta;
|
|
3555
|
+
};
|
|
3556
|
+
type CommunityItem = {
|
|
3557
|
+
community_id: string;
|
|
3558
|
+
cover_image_url?: string;
|
|
3559
|
+
created_at: string;
|
|
3560
|
+
description: string;
|
|
3561
|
+
facility_id: number;
|
|
3562
|
+
member_count: number;
|
|
3563
|
+
name: string;
|
|
3564
|
+
posting_permission: PostingPermission;
|
|
3565
|
+
status: MembershipStatus;
|
|
3566
|
+
unread_post_count: number;
|
|
3567
|
+
updated_at: string;
|
|
3568
|
+
visibility: Visibility;
|
|
3569
|
+
};
|
|
3570
|
+
type CommunityListResponse = {
|
|
3571
|
+
items: Array<CommunityItem>;
|
|
3572
|
+
meta: PaginationMeta;
|
|
3573
|
+
};
|
|
3574
|
+
type CreateCommentRequest = {
|
|
3575
|
+
content: string;
|
|
3576
|
+
};
|
|
3577
|
+
type CreatePostRequest = {
|
|
3578
|
+
content: string;
|
|
3579
|
+
links?: Array<PostLink>;
|
|
3580
|
+
};
|
|
3534
3581
|
type CreateSportProfileLevelRequest = {
|
|
3535
3582
|
/**
|
|
3536
3583
|
* Rating authority (defaults to "matchi" if omitted)
|
|
@@ -3647,6 +3694,54 @@ declare const Gender: {
|
|
|
3647
3694
|
readonly NOT_SPECIFIED: "NOT_SPECIFIED";
|
|
3648
3695
|
};
|
|
3649
3696
|
type Gender = typeof Gender[keyof typeof Gender];
|
|
3697
|
+
declare const LinkType: {
|
|
3698
|
+
readonly ACTIVITY: "activity";
|
|
3699
|
+
readonly MATCH: "match";
|
|
3700
|
+
};
|
|
3701
|
+
type LinkType = typeof LinkType[keyof typeof LinkType];
|
|
3702
|
+
type Member = {
|
|
3703
|
+
first_name: string;
|
|
3704
|
+
last_name: string;
|
|
3705
|
+
profile_image_url?: string;
|
|
3706
|
+
relation_status: MemberRelation;
|
|
3707
|
+
user_id: string;
|
|
3708
|
+
};
|
|
3709
|
+
type MemberListResponse = {
|
|
3710
|
+
items: Array<Member>;
|
|
3711
|
+
meta: PaginationMeta;
|
|
3712
|
+
};
|
|
3713
|
+
/**
|
|
3714
|
+
* Returns :
|
|
3715
|
+
* * `FRIENDS` - The user is a friend.
|
|
3716
|
+
* * `OUTGOING` - The user has sent a friend request to the current user.
|
|
3717
|
+
* * `INCOMING` - The user has received a friend request from the current user.
|
|
3718
|
+
* * `NO_RELATION` - The user has no ongoing relation with the current user.
|
|
3719
|
+
* * `BLOCK` - The user is blocked by the current user
|
|
3720
|
+
*
|
|
3721
|
+
*/
|
|
3722
|
+
declare const MemberRelation: {
|
|
3723
|
+
readonly FRIENDS: "FRIENDS";
|
|
3724
|
+
readonly OUTGOING: "OUTGOING";
|
|
3725
|
+
readonly INCOMING: "INCOMING";
|
|
3726
|
+
readonly NO_RELATION: "NO_RELATION";
|
|
3727
|
+
readonly BLOCK: "BLOCK";
|
|
3728
|
+
};
|
|
3729
|
+
/**
|
|
3730
|
+
* Returns :
|
|
3731
|
+
* * `FRIENDS` - The user is a friend.
|
|
3732
|
+
* * `OUTGOING` - The user has sent a friend request to the current user.
|
|
3733
|
+
* * `INCOMING` - The user has received a friend request from the current user.
|
|
3734
|
+
* * `NO_RELATION` - The user has no ongoing relation with the current user.
|
|
3735
|
+
* * `BLOCK` - The user is blocked by the current user
|
|
3736
|
+
*
|
|
3737
|
+
*/
|
|
3738
|
+
type MemberRelation = typeof MemberRelation[keyof typeof MemberRelation];
|
|
3739
|
+
declare const MembershipStatus: {
|
|
3740
|
+
readonly ACTIVE: "ACTIVE";
|
|
3741
|
+
readonly INVITED: "INVITED";
|
|
3742
|
+
readonly LEFT: "LEFT";
|
|
3743
|
+
};
|
|
3744
|
+
type MembershipStatus = typeof MembershipStatus[keyof typeof MembershipStatus];
|
|
3650
3745
|
type Metadata = {
|
|
3651
3746
|
pagination?: PkgOpenapiSharedCursorPaginatedResultSet;
|
|
3652
3747
|
summary: NotificationsSummary;
|
|
@@ -3682,6 +3777,43 @@ type NotificationsSummary = {
|
|
|
3682
3777
|
global_unread_count: number;
|
|
3683
3778
|
unread_count: number;
|
|
3684
3779
|
};
|
|
3780
|
+
type PaginationMeta = {
|
|
3781
|
+
pagination: PkgOpenapiSharedOffsetPaginatedResultSet;
|
|
3782
|
+
summary: {
|
|
3783
|
+
total: number;
|
|
3784
|
+
};
|
|
3785
|
+
};
|
|
3786
|
+
type PatchCommentRequest = {
|
|
3787
|
+
is_read: boolean;
|
|
3788
|
+
};
|
|
3789
|
+
type PatchPostRequest = {
|
|
3790
|
+
is_read: boolean;
|
|
3791
|
+
};
|
|
3792
|
+
type Post = {
|
|
3793
|
+
author: Author;
|
|
3794
|
+
comment_count: number;
|
|
3795
|
+
community_id: string;
|
|
3796
|
+
content?: string;
|
|
3797
|
+
created_at: string;
|
|
3798
|
+
is_read: boolean;
|
|
3799
|
+
links?: Array<PostLink>;
|
|
3800
|
+
post_id: string;
|
|
3801
|
+
unread_comment_count: number;
|
|
3802
|
+
updated_at: string;
|
|
3803
|
+
};
|
|
3804
|
+
type PostLink = {
|
|
3805
|
+
link_reference_id: string;
|
|
3806
|
+
link_type: LinkType;
|
|
3807
|
+
};
|
|
3808
|
+
type PostListResponse = {
|
|
3809
|
+
items: Array<Post>;
|
|
3810
|
+
meta: PaginationMeta;
|
|
3811
|
+
};
|
|
3812
|
+
declare const PostingPermission: {
|
|
3813
|
+
readonly ADMINS: "admins";
|
|
3814
|
+
readonly MEMBERS: "members";
|
|
3815
|
+
};
|
|
3816
|
+
type PostingPermission = typeof PostingPermission[keyof typeof PostingPermission];
|
|
3685
3817
|
type Preference = {
|
|
3686
3818
|
channels: Channels;
|
|
3687
3819
|
source?: Source;
|
|
@@ -3691,6 +3823,86 @@ type Preference = {
|
|
|
3691
3823
|
type PreferencesResponse = {
|
|
3692
3824
|
items: Array<Preference>;
|
|
3693
3825
|
};
|
|
3826
|
+
/**
|
|
3827
|
+
* A personalized recommendation. The common fields describe what, where, and when. Use type + id to navigate to the specific entity.
|
|
3828
|
+
*
|
|
3829
|
+
*/
|
|
3830
|
+
type Recommendation = {
|
|
3831
|
+
/**
|
|
3832
|
+
* Social context — which of the user's connections are signed up.
|
|
3833
|
+
*/
|
|
3834
|
+
connections: {
|
|
3835
|
+
/**
|
|
3836
|
+
* Number of the user's connections signed up.
|
|
3837
|
+
*/
|
|
3838
|
+
count: number;
|
|
3839
|
+
/**
|
|
3840
|
+
* User IDs of connected participants, ordered by connection strength.
|
|
3841
|
+
*/
|
|
3842
|
+
user_ids?: Array<string>;
|
|
3843
|
+
};
|
|
3844
|
+
date_end: string;
|
|
3845
|
+
date_start: string;
|
|
3846
|
+
facility_id: number;
|
|
3847
|
+
facility_name: string;
|
|
3848
|
+
/**
|
|
3849
|
+
* The recommended entity's ID. Use together with type to navigate to the appropriate detail page. Currently represents activity occasion IDs but may reference other entity types as the recommendation engine expands.
|
|
3850
|
+
*
|
|
3851
|
+
*/
|
|
3852
|
+
id: string;
|
|
3853
|
+
/**
|
|
3854
|
+
* Maximum skill level (1-10). Null if not set.
|
|
3855
|
+
*/
|
|
3856
|
+
level_max?: number | null;
|
|
3857
|
+
/**
|
|
3858
|
+
* Minimum skill level (1-10). Null if not set.
|
|
3859
|
+
*/
|
|
3860
|
+
level_min?: number | null;
|
|
3861
|
+
/**
|
|
3862
|
+
* Display name for the recommendation card.
|
|
3863
|
+
*/
|
|
3864
|
+
name: string;
|
|
3865
|
+
/**
|
|
3866
|
+
* Current number of confirmed participants.
|
|
3867
|
+
*/
|
|
3868
|
+
participant_count: number;
|
|
3869
|
+
/**
|
|
3870
|
+
* Maximum participant capacity. Null if no limit.
|
|
3871
|
+
*/
|
|
3872
|
+
participant_max?: number | null;
|
|
3873
|
+
/**
|
|
3874
|
+
* Recommendation relevance score (0-1). Higher is more relevant.
|
|
3875
|
+
*/
|
|
3876
|
+
score: number;
|
|
3877
|
+
/**
|
|
3878
|
+
* Sport associated with this recommendation.
|
|
3879
|
+
*/
|
|
3880
|
+
sport?: {
|
|
3881
|
+
id?: number;
|
|
3882
|
+
/**
|
|
3883
|
+
* Sport name (e.g. padel, tennis).
|
|
3884
|
+
*/
|
|
3885
|
+
name?: string;
|
|
3886
|
+
} | null;
|
|
3887
|
+
/**
|
|
3888
|
+
* Number of open spots. Null if no limit.
|
|
3889
|
+
*/
|
|
3890
|
+
spots_available?: number | null;
|
|
3891
|
+
/**
|
|
3892
|
+
* Categorization tags for visual treatment (icons, labels). Values are lowercase and derived from the recommended entity's metadata. Examples: ["competition", "americano"], ["match"], ["training", "group"]. Not a fixed enum — new values may appear as new entity types are added downstream.
|
|
3893
|
+
*
|
|
3894
|
+
*/
|
|
3895
|
+
tags: Array<string>;
|
|
3896
|
+
/**
|
|
3897
|
+
* The entity type. Determines what kind of detail page to navigate to.
|
|
3898
|
+
*
|
|
3899
|
+
*/
|
|
3900
|
+
type: 'CLASS_ACTIVITY' | 'EVENT_ACTIVITY' | 'COURSE_ACTIVITY' | 'MATCH_ACTIVITY';
|
|
3901
|
+
};
|
|
3902
|
+
type RecommendationList = {
|
|
3903
|
+
items: Array<Recommendation>;
|
|
3904
|
+
meta: PkgOpenapiSharedOffsetPaginatedResultSet;
|
|
3905
|
+
};
|
|
3694
3906
|
type RegisterDeviceRequest = {
|
|
3695
3907
|
app_version: string;
|
|
3696
3908
|
fcm_token: string;
|
|
@@ -3846,6 +4058,7 @@ type UserProfile = {
|
|
|
3846
4058
|
* * `OUTGOING` - The user has sent a friend request to the current user.
|
|
3847
4059
|
* * `INCOMING` - The user has received a friend request from the current user.
|
|
3848
4060
|
* * `NO_RELATION` - The user has no ongoing relation with the current user.
|
|
4061
|
+
* * `BLOCK` - The user is blocked by the current user
|
|
3849
4062
|
*
|
|
3850
4063
|
*/
|
|
3851
4064
|
declare const UserRelation: {
|
|
@@ -3853,6 +4066,7 @@ declare const UserRelation: {
|
|
|
3853
4066
|
readonly OUTGOING: "OUTGOING";
|
|
3854
4067
|
readonly INCOMING: "INCOMING";
|
|
3855
4068
|
readonly NO_RELATION: "NO_RELATION";
|
|
4069
|
+
readonly BLOCK: "BLOCK";
|
|
3856
4070
|
};
|
|
3857
4071
|
/**
|
|
3858
4072
|
* Returns :
|
|
@@ -3860,6 +4074,7 @@ declare const UserRelation: {
|
|
|
3860
4074
|
* * `OUTGOING` - The user has sent a friend request to the current user.
|
|
3861
4075
|
* * `INCOMING` - The user has received a friend request from the current user.
|
|
3862
4076
|
* * `NO_RELATION` - The user has no ongoing relation with the current user.
|
|
4077
|
+
* * `BLOCK` - The user is blocked by the current user
|
|
3863
4078
|
*
|
|
3864
4079
|
*/
|
|
3865
4080
|
type UserRelation = typeof UserRelation[keyof typeof UserRelation];
|
|
@@ -3867,6 +4082,10 @@ type UsersProfilesPaginatedResponse = {
|
|
|
3867
4082
|
items: Array<UserProfile>;
|
|
3868
4083
|
meta: PkgOpenapiSharedOffsetPaginatedResultSet;
|
|
3869
4084
|
};
|
|
4085
|
+
declare const Visibility: {
|
|
4086
|
+
readonly HIDDEN: "hidden";
|
|
4087
|
+
};
|
|
4088
|
+
type Visibility = typeof Visibility[keyof typeof Visibility];
|
|
3870
4089
|
/**
|
|
3871
4090
|
* Metadata about the cursor based pagination for the result. This information is coupled with the CursorParam and CursorLimitParam. Intended to be used as the `meta` field in a list response, next to an `items` array field containing the data.
|
|
3872
4091
|
*
|
|
@@ -3931,9 +4150,12 @@ type PkgOpenapiSharedProblemDetails = {
|
|
|
3931
4150
|
* The rating authority slug (e.g. "matchi", "dk-padel")
|
|
3932
4151
|
*/
|
|
3933
4152
|
type AuthoritySlug = string;
|
|
4153
|
+
type CommentIdParam = string;
|
|
4154
|
+
type CommunityIdParam = string;
|
|
3934
4155
|
type FacilityIdPath = string;
|
|
3935
4156
|
type NotificationsFilterParam = NotificationsFilter;
|
|
3936
4157
|
type OfferIdPath = string;
|
|
4158
|
+
type PostIdParam = string;
|
|
3937
4159
|
/**
|
|
3938
4160
|
* The sport profile ID
|
|
3939
4161
|
*/
|
|
@@ -3942,6 +4164,7 @@ type SportProfileId = number;
|
|
|
3942
4164
|
* The user ID
|
|
3943
4165
|
*/
|
|
3944
4166
|
type UserId = string;
|
|
4167
|
+
type UserIdParam = string;
|
|
3945
4168
|
/**
|
|
3946
4169
|
* Maximum number of items to return per page.
|
|
3947
4170
|
*/
|
|
@@ -4425,6 +4648,125 @@ type UpdateUserProfileResponses = {
|
|
|
4425
4648
|
200: UserProfile;
|
|
4426
4649
|
};
|
|
4427
4650
|
type UpdateUserProfileResponse = UpdateUserProfileResponses[keyof UpdateUserProfileResponses];
|
|
4651
|
+
type GetRecommendationsData = {
|
|
4652
|
+
body?: never;
|
|
4653
|
+
path: {
|
|
4654
|
+
/**
|
|
4655
|
+
* The user ID to get recommendations for. Must match the authenticated user.
|
|
4656
|
+
*/
|
|
4657
|
+
user_id: string;
|
|
4658
|
+
};
|
|
4659
|
+
query: {
|
|
4660
|
+
/**
|
|
4661
|
+
* The category of recommendations to return. ACTIVITIES includes all activity-based occasions (classes, events, courses, and matches).
|
|
4662
|
+
*
|
|
4663
|
+
*/
|
|
4664
|
+
type: 'ACTIVITIES';
|
|
4665
|
+
/**
|
|
4666
|
+
* Caller gender for filtering gender-restricted activities. Omit to show all.
|
|
4667
|
+
*/
|
|
4668
|
+
gender?: 'MALE' | 'FEMALE';
|
|
4669
|
+
/**
|
|
4670
|
+
* User latitude for spatial filtering. Omit for all facilities.
|
|
4671
|
+
*/
|
|
4672
|
+
latitude?: number;
|
|
4673
|
+
/**
|
|
4674
|
+
* User longitude for spatial filtering. Omit for all facilities.
|
|
4675
|
+
*/
|
|
4676
|
+
longitude?: number;
|
|
4677
|
+
/**
|
|
4678
|
+
* Search radius in kilometers.
|
|
4679
|
+
*/
|
|
4680
|
+
radius_km?: number;
|
|
4681
|
+
/**
|
|
4682
|
+
* Filter by sport names. Omit for all sports.
|
|
4683
|
+
*/
|
|
4684
|
+
sports?: Array<string>;
|
|
4685
|
+
/**
|
|
4686
|
+
* Filter by activity class (activity, match). Omit for all.
|
|
4687
|
+
*/
|
|
4688
|
+
activity_classes?: Array<string>;
|
|
4689
|
+
/**
|
|
4690
|
+
* How many days ahead to look for upcoming occasions.
|
|
4691
|
+
*/
|
|
4692
|
+
days_ahead?: number;
|
|
4693
|
+
/**
|
|
4694
|
+
* Include sold-out events.
|
|
4695
|
+
*/
|
|
4696
|
+
include_full?: boolean;
|
|
4697
|
+
/**
|
|
4698
|
+
* Weight for social connection signal (0-5).
|
|
4699
|
+
*/
|
|
4700
|
+
w_social?: number;
|
|
4701
|
+
/**
|
|
4702
|
+
* Weight for repeat attendance signal (0-5).
|
|
4703
|
+
*/
|
|
4704
|
+
w_repeat?: number;
|
|
4705
|
+
/**
|
|
4706
|
+
* Weight for sport preference signal (0-5).
|
|
4707
|
+
*/
|
|
4708
|
+
w_sport?: number;
|
|
4709
|
+
/**
|
|
4710
|
+
* Weight for facility preference signal (0-5).
|
|
4711
|
+
*/
|
|
4712
|
+
w_facility?: number;
|
|
4713
|
+
/**
|
|
4714
|
+
* Weight for time-of-day preference signal (0-5).
|
|
4715
|
+
*/
|
|
4716
|
+
w_time_of_day?: number;
|
|
4717
|
+
/**
|
|
4718
|
+
* Weight for weekday/weekend pattern signal (0-5).
|
|
4719
|
+
*/
|
|
4720
|
+
w_weekend?: number;
|
|
4721
|
+
/**
|
|
4722
|
+
* Weight for time urgency signal (0-5).
|
|
4723
|
+
*/
|
|
4724
|
+
w_urgency?: number;
|
|
4725
|
+
/**
|
|
4726
|
+
* Weight for capacity/fill rate signal (0-5).
|
|
4727
|
+
*/
|
|
4728
|
+
w_capacity?: number;
|
|
4729
|
+
/**
|
|
4730
|
+
* Recency decay half-life in days.
|
|
4731
|
+
*/
|
|
4732
|
+
decay_half_life?: number;
|
|
4733
|
+
/**
|
|
4734
|
+
* Minimum final_score threshold.
|
|
4735
|
+
*/
|
|
4736
|
+
min_score?: number;
|
|
4737
|
+
/**
|
|
4738
|
+
* Number of items to skip before returning the results.
|
|
4739
|
+
*/
|
|
4740
|
+
offset?: number;
|
|
4741
|
+
/**
|
|
4742
|
+
* Maximum number of items to return.
|
|
4743
|
+
*/
|
|
4744
|
+
limit?: number;
|
|
4745
|
+
};
|
|
4746
|
+
url: '/users/{user_id}/recommendations';
|
|
4747
|
+
};
|
|
4748
|
+
type GetRecommendationsErrors = {
|
|
4749
|
+
/**
|
|
4750
|
+
* Access token is not set or invalid.
|
|
4751
|
+
*/
|
|
4752
|
+
401: PkgOpenapiSharedProblemDetails;
|
|
4753
|
+
/**
|
|
4754
|
+
* The requestor is not authorized to perform this operation on the resource.
|
|
4755
|
+
*/
|
|
4756
|
+
403: PkgOpenapiSharedProblemDetails;
|
|
4757
|
+
/**
|
|
4758
|
+
* The server encountered an unexpected error
|
|
4759
|
+
*/
|
|
4760
|
+
500: PkgOpenapiSharedProblemDetails;
|
|
4761
|
+
};
|
|
4762
|
+
type GetRecommendationsError = GetRecommendationsErrors[keyof GetRecommendationsErrors];
|
|
4763
|
+
type GetRecommendationsResponses = {
|
|
4764
|
+
/**
|
|
4765
|
+
* OK
|
|
4766
|
+
*/
|
|
4767
|
+
200: RecommendationList;
|
|
4768
|
+
};
|
|
4769
|
+
type GetRecommendationsResponse = GetRecommendationsResponses[keyof GetRecommendationsResponses];
|
|
4428
4770
|
type GetUserSportProfilesData = {
|
|
4429
4771
|
body?: never;
|
|
4430
4772
|
path: {
|
|
@@ -4720,20 +5062,182 @@ type UpdateUserSportProfileLevelResponses = {
|
|
|
4720
5062
|
*/
|
|
4721
5063
|
200: SportProfileLevel;
|
|
4722
5064
|
};
|
|
4723
|
-
type UpdateUserSportProfileLevelResponse = UpdateUserSportProfileLevelResponses[keyof UpdateUserSportProfileLevelResponses];
|
|
4724
|
-
|
|
4725
|
-
declare const client: Client;
|
|
4726
|
-
|
|
4727
|
-
declare const
|
|
5065
|
+
type UpdateUserSportProfileLevelResponse = UpdateUserSportProfileLevelResponses[keyof UpdateUserSportProfileLevelResponses];
|
|
5066
|
+
|
|
5067
|
+
declare const client: Client;
|
|
5068
|
+
|
|
5069
|
+
declare const AuthorSchema: {
|
|
5070
|
+
readonly properties: {
|
|
5071
|
+
readonly display_name: {
|
|
5072
|
+
readonly type: "string";
|
|
5073
|
+
};
|
|
5074
|
+
readonly facility_id: {
|
|
5075
|
+
readonly type: "integer";
|
|
5076
|
+
};
|
|
5077
|
+
readonly first_name: {
|
|
5078
|
+
readonly type: "string";
|
|
5079
|
+
};
|
|
5080
|
+
readonly last_name: {
|
|
5081
|
+
readonly type: "string";
|
|
5082
|
+
};
|
|
5083
|
+
readonly profile_image_url: {
|
|
5084
|
+
readonly type: "string";
|
|
5085
|
+
};
|
|
5086
|
+
readonly relation_status: {
|
|
5087
|
+
readonly $ref: "#/components/schemas/MemberRelation";
|
|
5088
|
+
};
|
|
5089
|
+
readonly type: {
|
|
5090
|
+
readonly enum: readonly ["admin", "member"];
|
|
5091
|
+
readonly type: "string";
|
|
5092
|
+
};
|
|
5093
|
+
readonly user_id: {
|
|
5094
|
+
readonly format: "uuid";
|
|
5095
|
+
readonly type: "string";
|
|
5096
|
+
};
|
|
5097
|
+
};
|
|
5098
|
+
readonly required: readonly ["type"];
|
|
5099
|
+
readonly type: "object";
|
|
5100
|
+
};
|
|
5101
|
+
declare const ChannelsSchema: {
|
|
5102
|
+
readonly properties: {
|
|
5103
|
+
readonly inapp: {
|
|
5104
|
+
readonly type: "boolean";
|
|
5105
|
+
};
|
|
5106
|
+
readonly push: {
|
|
5107
|
+
readonly type: "boolean";
|
|
5108
|
+
};
|
|
5109
|
+
};
|
|
5110
|
+
readonly required: readonly ["inapp", "push"];
|
|
5111
|
+
readonly type: "object";
|
|
5112
|
+
};
|
|
5113
|
+
declare const CommentSchema: {
|
|
5114
|
+
readonly properties: {
|
|
5115
|
+
readonly author: {
|
|
5116
|
+
readonly $ref: "#/components/schemas/Author";
|
|
5117
|
+
};
|
|
5118
|
+
readonly comment_id: {
|
|
5119
|
+
readonly format: "uuid";
|
|
5120
|
+
readonly type: "string";
|
|
5121
|
+
};
|
|
5122
|
+
readonly content: {
|
|
5123
|
+
readonly type: "string";
|
|
5124
|
+
};
|
|
5125
|
+
readonly created_at: {
|
|
5126
|
+
readonly format: "date-time";
|
|
5127
|
+
readonly type: "string";
|
|
5128
|
+
};
|
|
5129
|
+
readonly is_read: {
|
|
5130
|
+
readonly type: "boolean";
|
|
5131
|
+
};
|
|
5132
|
+
readonly post_id: {
|
|
5133
|
+
readonly format: "uuid";
|
|
5134
|
+
readonly type: "string";
|
|
5135
|
+
};
|
|
5136
|
+
};
|
|
5137
|
+
readonly required: readonly ["comment_id", "post_id", "author", "content", "is_read", "created_at"];
|
|
5138
|
+
readonly type: "object";
|
|
5139
|
+
};
|
|
5140
|
+
declare const CommentListResponseSchema: {
|
|
5141
|
+
readonly properties: {
|
|
5142
|
+
readonly items: {
|
|
5143
|
+
readonly items: {
|
|
5144
|
+
readonly $ref: "#/components/schemas/Comment";
|
|
5145
|
+
};
|
|
5146
|
+
readonly type: "array";
|
|
5147
|
+
};
|
|
5148
|
+
readonly meta: {
|
|
5149
|
+
readonly $ref: "#/components/schemas/PaginationMeta";
|
|
5150
|
+
};
|
|
5151
|
+
};
|
|
5152
|
+
readonly required: readonly ["items", "meta"];
|
|
5153
|
+
readonly type: "object";
|
|
5154
|
+
};
|
|
5155
|
+
declare const CommunityItemSchema: {
|
|
5156
|
+
readonly properties: {
|
|
5157
|
+
readonly community_id: {
|
|
5158
|
+
readonly format: "uuid";
|
|
5159
|
+
readonly type: "string";
|
|
5160
|
+
};
|
|
5161
|
+
readonly cover_image_url: {
|
|
5162
|
+
readonly type: "string";
|
|
5163
|
+
};
|
|
5164
|
+
readonly created_at: {
|
|
5165
|
+
readonly format: "date-time";
|
|
5166
|
+
readonly type: "string";
|
|
5167
|
+
};
|
|
5168
|
+
readonly description: {
|
|
5169
|
+
readonly type: "string";
|
|
5170
|
+
};
|
|
5171
|
+
readonly facility_id: {
|
|
5172
|
+
readonly type: "integer";
|
|
5173
|
+
};
|
|
5174
|
+
readonly member_count: {
|
|
5175
|
+
readonly type: "integer";
|
|
5176
|
+
};
|
|
5177
|
+
readonly name: {
|
|
5178
|
+
readonly type: "string";
|
|
5179
|
+
};
|
|
5180
|
+
readonly posting_permission: {
|
|
5181
|
+
readonly $ref: "#/components/schemas/PostingPermission";
|
|
5182
|
+
};
|
|
5183
|
+
readonly status: {
|
|
5184
|
+
readonly $ref: "#/components/schemas/MembershipStatus";
|
|
5185
|
+
};
|
|
5186
|
+
readonly unread_post_count: {
|
|
5187
|
+
readonly type: "integer";
|
|
5188
|
+
};
|
|
5189
|
+
readonly updated_at: {
|
|
5190
|
+
readonly format: "date-time";
|
|
5191
|
+
readonly type: "string";
|
|
5192
|
+
};
|
|
5193
|
+
readonly visibility: {
|
|
5194
|
+
readonly $ref: "#/components/schemas/Visibility";
|
|
5195
|
+
};
|
|
5196
|
+
};
|
|
5197
|
+
readonly required: readonly ["community_id", "facility_id", "name", "description", "posting_permission", "visibility", "status", "member_count", "unread_post_count", "created_at", "updated_at"];
|
|
5198
|
+
readonly type: "object";
|
|
5199
|
+
};
|
|
5200
|
+
declare const CommunityListResponseSchema: {
|
|
5201
|
+
readonly properties: {
|
|
5202
|
+
readonly items: {
|
|
5203
|
+
readonly items: {
|
|
5204
|
+
readonly $ref: "#/components/schemas/CommunityItem";
|
|
5205
|
+
};
|
|
5206
|
+
readonly type: "array";
|
|
5207
|
+
};
|
|
5208
|
+
readonly meta: {
|
|
5209
|
+
readonly $ref: "#/components/schemas/PaginationMeta";
|
|
5210
|
+
};
|
|
5211
|
+
};
|
|
5212
|
+
readonly required: readonly ["items", "meta"];
|
|
5213
|
+
readonly type: "object";
|
|
5214
|
+
};
|
|
5215
|
+
declare const CreateCommentRequestSchema: {
|
|
4728
5216
|
readonly properties: {
|
|
4729
|
-
readonly
|
|
4730
|
-
readonly
|
|
5217
|
+
readonly content: {
|
|
5218
|
+
readonly maxLength: 2000;
|
|
5219
|
+
readonly minLength: 1;
|
|
5220
|
+
readonly type: "string";
|
|
4731
5221
|
};
|
|
4732
|
-
|
|
4733
|
-
|
|
5222
|
+
};
|
|
5223
|
+
readonly required: readonly ["content"];
|
|
5224
|
+
readonly type: "object";
|
|
5225
|
+
};
|
|
5226
|
+
declare const CreatePostRequestSchema: {
|
|
5227
|
+
readonly properties: {
|
|
5228
|
+
readonly content: {
|
|
5229
|
+
readonly maxLength: 5000;
|
|
5230
|
+
readonly minLength: 1;
|
|
5231
|
+
readonly type: "string";
|
|
5232
|
+
};
|
|
5233
|
+
readonly links: {
|
|
5234
|
+
readonly items: {
|
|
5235
|
+
readonly $ref: "#/components/schemas/PostLink";
|
|
5236
|
+
};
|
|
5237
|
+
readonly type: "array";
|
|
4734
5238
|
};
|
|
4735
5239
|
};
|
|
4736
|
-
readonly required: readonly ["
|
|
5240
|
+
readonly required: readonly ["content"];
|
|
4737
5241
|
readonly type: "object";
|
|
4738
5242
|
};
|
|
4739
5243
|
declare const CreateSportProfileLevelRequestSchema: {
|
|
@@ -5097,6 +5601,56 @@ declare const GenderSchema: {
|
|
|
5097
5601
|
readonly enum: readonly ["MALE", "FEMALE", "OTHER", "NOT_SPECIFIED"];
|
|
5098
5602
|
readonly type: "string";
|
|
5099
5603
|
};
|
|
5604
|
+
declare const LinkTypeSchema: {
|
|
5605
|
+
readonly enum: readonly ["activity", "match"];
|
|
5606
|
+
readonly type: "string";
|
|
5607
|
+
};
|
|
5608
|
+
declare const MemberSchema: {
|
|
5609
|
+
readonly properties: {
|
|
5610
|
+
readonly first_name: {
|
|
5611
|
+
readonly type: "string";
|
|
5612
|
+
};
|
|
5613
|
+
readonly last_name: {
|
|
5614
|
+
readonly type: "string";
|
|
5615
|
+
};
|
|
5616
|
+
readonly profile_image_url: {
|
|
5617
|
+
readonly type: "string";
|
|
5618
|
+
};
|
|
5619
|
+
readonly relation_status: {
|
|
5620
|
+
readonly $ref: "#/components/schemas/MemberRelation";
|
|
5621
|
+
};
|
|
5622
|
+
readonly user_id: {
|
|
5623
|
+
readonly format: "uuid";
|
|
5624
|
+
readonly type: "string";
|
|
5625
|
+
};
|
|
5626
|
+
};
|
|
5627
|
+
readonly required: readonly ["user_id", "first_name", "last_name", "relation_status"];
|
|
5628
|
+
readonly type: "object";
|
|
5629
|
+
};
|
|
5630
|
+
declare const MemberListResponseSchema: {
|
|
5631
|
+
readonly properties: {
|
|
5632
|
+
readonly items: {
|
|
5633
|
+
readonly items: {
|
|
5634
|
+
readonly $ref: "#/components/schemas/Member";
|
|
5635
|
+
};
|
|
5636
|
+
readonly type: "array";
|
|
5637
|
+
};
|
|
5638
|
+
readonly meta: {
|
|
5639
|
+
readonly $ref: "#/components/schemas/PaginationMeta";
|
|
5640
|
+
};
|
|
5641
|
+
};
|
|
5642
|
+
readonly required: readonly ["items", "meta"];
|
|
5643
|
+
readonly type: "object";
|
|
5644
|
+
};
|
|
5645
|
+
declare const MemberRelationSchema: {
|
|
5646
|
+
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";
|
|
5647
|
+
readonly enum: readonly ["FRIENDS", "OUTGOING", "INCOMING", "NO_RELATION", "BLOCK"];
|
|
5648
|
+
readonly type: "string";
|
|
5649
|
+
};
|
|
5650
|
+
declare const MembershipStatusSchema: {
|
|
5651
|
+
readonly enum: readonly ["ACTIVE", "INVITED", "LEFT"];
|
|
5652
|
+
readonly type: "string";
|
|
5653
|
+
};
|
|
5100
5654
|
declare const MetadataSchema: {
|
|
5101
5655
|
readonly properties: {
|
|
5102
5656
|
readonly pagination: {
|
|
@@ -5200,6 +5754,116 @@ declare const NotificationsSummarySchema: {
|
|
|
5200
5754
|
readonly required: readonly ["count", "unread_count", "global_count", "global_unread_count"];
|
|
5201
5755
|
readonly type: "object";
|
|
5202
5756
|
};
|
|
5757
|
+
declare const PaginationMetaSchema: {
|
|
5758
|
+
readonly properties: {
|
|
5759
|
+
readonly pagination: {
|
|
5760
|
+
readonly $ref: "#/components/schemas/pkgOpenapiSharedOffsetPaginatedResultSet";
|
|
5761
|
+
};
|
|
5762
|
+
readonly summary: {
|
|
5763
|
+
readonly properties: {
|
|
5764
|
+
readonly total: {
|
|
5765
|
+
readonly type: "integer";
|
|
5766
|
+
};
|
|
5767
|
+
};
|
|
5768
|
+
readonly required: readonly ["total"];
|
|
5769
|
+
readonly type: "object";
|
|
5770
|
+
};
|
|
5771
|
+
};
|
|
5772
|
+
readonly required: readonly ["pagination", "summary"];
|
|
5773
|
+
readonly type: "object";
|
|
5774
|
+
};
|
|
5775
|
+
declare const PatchCommentRequestSchema: {
|
|
5776
|
+
readonly properties: {
|
|
5777
|
+
readonly is_read: {
|
|
5778
|
+
readonly type: "boolean";
|
|
5779
|
+
};
|
|
5780
|
+
};
|
|
5781
|
+
readonly required: readonly ["is_read"];
|
|
5782
|
+
readonly type: "object";
|
|
5783
|
+
};
|
|
5784
|
+
declare const PatchPostRequestSchema: {
|
|
5785
|
+
readonly properties: {
|
|
5786
|
+
readonly is_read: {
|
|
5787
|
+
readonly type: "boolean";
|
|
5788
|
+
};
|
|
5789
|
+
};
|
|
5790
|
+
readonly required: readonly ["is_read"];
|
|
5791
|
+
readonly type: "object";
|
|
5792
|
+
};
|
|
5793
|
+
declare const PostSchema: {
|
|
5794
|
+
readonly properties: {
|
|
5795
|
+
readonly author: {
|
|
5796
|
+
readonly $ref: "#/components/schemas/Author";
|
|
5797
|
+
};
|
|
5798
|
+
readonly comment_count: {
|
|
5799
|
+
readonly type: "integer";
|
|
5800
|
+
};
|
|
5801
|
+
readonly community_id: {
|
|
5802
|
+
readonly format: "uuid";
|
|
5803
|
+
readonly type: "string";
|
|
5804
|
+
};
|
|
5805
|
+
readonly content: {
|
|
5806
|
+
readonly type: "string";
|
|
5807
|
+
};
|
|
5808
|
+
readonly created_at: {
|
|
5809
|
+
readonly format: "date-time";
|
|
5810
|
+
readonly type: "string";
|
|
5811
|
+
};
|
|
5812
|
+
readonly is_read: {
|
|
5813
|
+
readonly type: "boolean";
|
|
5814
|
+
};
|
|
5815
|
+
readonly links: {
|
|
5816
|
+
readonly items: {
|
|
5817
|
+
readonly $ref: "#/components/schemas/PostLink";
|
|
5818
|
+
};
|
|
5819
|
+
readonly type: "array";
|
|
5820
|
+
};
|
|
5821
|
+
readonly post_id: {
|
|
5822
|
+
readonly format: "uuid";
|
|
5823
|
+
readonly type: "string";
|
|
5824
|
+
};
|
|
5825
|
+
readonly unread_comment_count: {
|
|
5826
|
+
readonly type: "integer";
|
|
5827
|
+
};
|
|
5828
|
+
readonly updated_at: {
|
|
5829
|
+
readonly format: "date-time";
|
|
5830
|
+
readonly type: "string";
|
|
5831
|
+
};
|
|
5832
|
+
};
|
|
5833
|
+
readonly required: readonly ["post_id", "community_id", "author", "comment_count", "unread_comment_count", "is_read", "created_at", "updated_at"];
|
|
5834
|
+
readonly type: "object";
|
|
5835
|
+
};
|
|
5836
|
+
declare const PostLinkSchema: {
|
|
5837
|
+
readonly properties: {
|
|
5838
|
+
readonly link_reference_id: {
|
|
5839
|
+
readonly type: "string";
|
|
5840
|
+
};
|
|
5841
|
+
readonly link_type: {
|
|
5842
|
+
readonly $ref: "#/components/schemas/LinkType";
|
|
5843
|
+
};
|
|
5844
|
+
};
|
|
5845
|
+
readonly required: readonly ["link_type", "link_reference_id"];
|
|
5846
|
+
readonly type: "object";
|
|
5847
|
+
};
|
|
5848
|
+
declare const PostListResponseSchema: {
|
|
5849
|
+
readonly properties: {
|
|
5850
|
+
readonly items: {
|
|
5851
|
+
readonly items: {
|
|
5852
|
+
readonly $ref: "#/components/schemas/Post";
|
|
5853
|
+
};
|
|
5854
|
+
readonly type: "array";
|
|
5855
|
+
};
|
|
5856
|
+
readonly meta: {
|
|
5857
|
+
readonly $ref: "#/components/schemas/PaginationMeta";
|
|
5858
|
+
};
|
|
5859
|
+
};
|
|
5860
|
+
readonly required: readonly ["items", "meta"];
|
|
5861
|
+
readonly type: "object";
|
|
5862
|
+
};
|
|
5863
|
+
declare const PostingPermissionSchema: {
|
|
5864
|
+
readonly enum: readonly ["admins", "members"];
|
|
5865
|
+
readonly type: "string";
|
|
5866
|
+
};
|
|
5203
5867
|
declare const PreferenceSchema: {
|
|
5204
5868
|
readonly properties: {
|
|
5205
5869
|
readonly channels: {
|
|
@@ -5230,6 +5894,123 @@ declare const PreferencesResponseSchema: {
|
|
|
5230
5894
|
readonly required: readonly ["items"];
|
|
5231
5895
|
readonly type: "object";
|
|
5232
5896
|
};
|
|
5897
|
+
declare const RecommendationSchema: {
|
|
5898
|
+
readonly description: "A personalized recommendation. The common fields describe what, where, and when. Use type + id to navigate to the specific entity.\n";
|
|
5899
|
+
readonly properties: {
|
|
5900
|
+
readonly connections: {
|
|
5901
|
+
readonly description: "Social context — which of the user's connections are signed up.";
|
|
5902
|
+
readonly properties: {
|
|
5903
|
+
readonly count: {
|
|
5904
|
+
readonly description: "Number of the user's connections signed up.";
|
|
5905
|
+
readonly type: "integer";
|
|
5906
|
+
};
|
|
5907
|
+
readonly user_ids: {
|
|
5908
|
+
readonly description: "User IDs of connected participants, ordered by connection strength.";
|
|
5909
|
+
readonly items: {
|
|
5910
|
+
readonly type: "string";
|
|
5911
|
+
};
|
|
5912
|
+
readonly type: "array";
|
|
5913
|
+
};
|
|
5914
|
+
};
|
|
5915
|
+
readonly required: readonly ["count"];
|
|
5916
|
+
readonly type: "object";
|
|
5917
|
+
};
|
|
5918
|
+
readonly date_end: {
|
|
5919
|
+
readonly format: "date-time";
|
|
5920
|
+
readonly type: "string";
|
|
5921
|
+
};
|
|
5922
|
+
readonly date_start: {
|
|
5923
|
+
readonly format: "date-time";
|
|
5924
|
+
readonly type: "string";
|
|
5925
|
+
};
|
|
5926
|
+
readonly facility_id: {
|
|
5927
|
+
readonly type: "integer";
|
|
5928
|
+
};
|
|
5929
|
+
readonly facility_name: {
|
|
5930
|
+
readonly type: "string";
|
|
5931
|
+
};
|
|
5932
|
+
readonly id: {
|
|
5933
|
+
readonly description: "The recommended entity's ID. Use together with type to navigate to the appropriate detail page. Currently represents activity occasion IDs but may reference other entity types as the recommendation engine expands.\n";
|
|
5934
|
+
readonly type: "string";
|
|
5935
|
+
};
|
|
5936
|
+
readonly level_max: {
|
|
5937
|
+
readonly description: "Maximum skill level (1-10). Null if not set.";
|
|
5938
|
+
readonly nullable: true;
|
|
5939
|
+
readonly type: "integer";
|
|
5940
|
+
};
|
|
5941
|
+
readonly level_min: {
|
|
5942
|
+
readonly description: "Minimum skill level (1-10). Null if not set.";
|
|
5943
|
+
readonly nullable: true;
|
|
5944
|
+
readonly type: "integer";
|
|
5945
|
+
};
|
|
5946
|
+
readonly name: {
|
|
5947
|
+
readonly description: "Display name for the recommendation card.";
|
|
5948
|
+
readonly type: "string";
|
|
5949
|
+
};
|
|
5950
|
+
readonly participant_count: {
|
|
5951
|
+
readonly description: "Current number of confirmed participants.";
|
|
5952
|
+
readonly type: "integer";
|
|
5953
|
+
};
|
|
5954
|
+
readonly participant_max: {
|
|
5955
|
+
readonly description: "Maximum participant capacity. Null if no limit.";
|
|
5956
|
+
readonly nullable: true;
|
|
5957
|
+
readonly type: "integer";
|
|
5958
|
+
};
|
|
5959
|
+
readonly score: {
|
|
5960
|
+
readonly description: "Recommendation relevance score (0-1). Higher is more relevant.";
|
|
5961
|
+
readonly format: "float";
|
|
5962
|
+
readonly type: "number";
|
|
5963
|
+
};
|
|
5964
|
+
readonly sport: {
|
|
5965
|
+
readonly description: "Sport associated with this recommendation.";
|
|
5966
|
+
readonly nullable: true;
|
|
5967
|
+
readonly properties: {
|
|
5968
|
+
readonly id: {
|
|
5969
|
+
readonly type: "integer";
|
|
5970
|
+
};
|
|
5971
|
+
readonly name: {
|
|
5972
|
+
readonly description: "Sport name (e.g. padel, tennis).";
|
|
5973
|
+
readonly type: "string";
|
|
5974
|
+
};
|
|
5975
|
+
};
|
|
5976
|
+
readonly type: "object";
|
|
5977
|
+
};
|
|
5978
|
+
readonly spots_available: {
|
|
5979
|
+
readonly description: "Number of open spots. Null if no limit.";
|
|
5980
|
+
readonly nullable: true;
|
|
5981
|
+
readonly type: "integer";
|
|
5982
|
+
};
|
|
5983
|
+
readonly tags: {
|
|
5984
|
+
readonly description: "Categorization tags for visual treatment (icons, labels). Values are lowercase and derived from the recommended entity's metadata. Examples: [\"competition\", \"americano\"], [\"match\"], [\"training\", \"group\"]. Not a fixed enum — new values may appear as new entity types are added downstream.\n";
|
|
5985
|
+
readonly items: {
|
|
5986
|
+
readonly type: "string";
|
|
5987
|
+
};
|
|
5988
|
+
readonly type: "array";
|
|
5989
|
+
};
|
|
5990
|
+
readonly type: {
|
|
5991
|
+
readonly description: "The entity type. Determines what kind of detail page to navigate to.\n";
|
|
5992
|
+
readonly enum: readonly ["CLASS_ACTIVITY", "EVENT_ACTIVITY", "COURSE_ACTIVITY", "MATCH_ACTIVITY"];
|
|
5993
|
+
readonly type: "string";
|
|
5994
|
+
};
|
|
5995
|
+
};
|
|
5996
|
+
readonly required: readonly ["type", "id", "name", "facility_id", "facility_name", "date_start", "date_end", "participant_count", "score", "connections", "tags"];
|
|
5997
|
+
readonly type: "object";
|
|
5998
|
+
};
|
|
5999
|
+
declare const RecommendationListSchema: {
|
|
6000
|
+
readonly properties: {
|
|
6001
|
+
readonly items: {
|
|
6002
|
+
readonly items: {
|
|
6003
|
+
readonly $ref: "#/components/schemas/Recommendation";
|
|
6004
|
+
};
|
|
6005
|
+
readonly type: "array";
|
|
6006
|
+
};
|
|
6007
|
+
readonly meta: {
|
|
6008
|
+
readonly $ref: "#/components/schemas/pkgOpenapiSharedOffsetPaginatedResultSet";
|
|
6009
|
+
};
|
|
6010
|
+
};
|
|
6011
|
+
readonly required: readonly ["items", "meta"];
|
|
6012
|
+
readonly type: "object";
|
|
6013
|
+
};
|
|
5233
6014
|
declare const RegisterDeviceRequestSchema: {
|
|
5234
6015
|
readonly properties: {
|
|
5235
6016
|
readonly app_version: {
|
|
@@ -5556,8 +6337,8 @@ declare const UserProfileSchema: {
|
|
|
5556
6337
|
readonly type: "object";
|
|
5557
6338
|
};
|
|
5558
6339
|
declare const UserRelationSchema: {
|
|
5559
|
-
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";
|
|
5560
|
-
readonly enum: readonly ["FRIENDS", "OUTGOING", "INCOMING", "NO_RELATION"];
|
|
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"];
|
|
5561
6342
|
readonly type: "string";
|
|
5562
6343
|
};
|
|
5563
6344
|
declare const UsersProfilesPaginatedResponseSchema: {
|
|
@@ -5575,6 +6356,10 @@ declare const UsersProfilesPaginatedResponseSchema: {
|
|
|
5575
6356
|
readonly required: readonly ["items", "meta"];
|
|
5576
6357
|
readonly type: "object";
|
|
5577
6358
|
};
|
|
6359
|
+
declare const VisibilitySchema: {
|
|
6360
|
+
readonly enum: readonly ["hidden"];
|
|
6361
|
+
readonly type: "string";
|
|
6362
|
+
};
|
|
5578
6363
|
declare const pkgOpenapiSharedCursorPaginatedResultSetSchema: {
|
|
5579
6364
|
readonly description: "Metadata about the cursor based pagination for the result. This information is coupled with the CursorParam and CursorLimitParam. Intended to be used as the `meta` field in a list response, next to an `items` array field containing the data.\n";
|
|
5580
6365
|
readonly properties: {
|
|
@@ -5665,7 +6450,14 @@ declare const pkgOpenapiSharedProblemDetailsSchema: {
|
|
|
5665
6450
|
readonly type: "object";
|
|
5666
6451
|
};
|
|
5667
6452
|
|
|
6453
|
+
declare const schemas_gen_AuthorSchema: typeof AuthorSchema;
|
|
5668
6454
|
declare const schemas_gen_ChannelsSchema: typeof ChannelsSchema;
|
|
6455
|
+
declare const schemas_gen_CommentListResponseSchema: typeof CommentListResponseSchema;
|
|
6456
|
+
declare const schemas_gen_CommentSchema: typeof CommentSchema;
|
|
6457
|
+
declare const schemas_gen_CommunityItemSchema: typeof CommunityItemSchema;
|
|
6458
|
+
declare const schemas_gen_CommunityListResponseSchema: typeof CommunityListResponseSchema;
|
|
6459
|
+
declare const schemas_gen_CreateCommentRequestSchema: typeof CreateCommentRequestSchema;
|
|
6460
|
+
declare const schemas_gen_CreatePostRequestSchema: typeof CreatePostRequestSchema;
|
|
5669
6461
|
declare const schemas_gen_CreateSportProfileLevelRequestSchema: typeof CreateSportProfileLevelRequestSchema;
|
|
5670
6462
|
declare const schemas_gen_CreateSportProfileRequestSchema: typeof CreateSportProfileRequestSchema;
|
|
5671
6463
|
declare const schemas_gen_FacilityMessagePayloadSchema: typeof FacilityMessagePayloadSchema;
|
|
@@ -5684,6 +6476,11 @@ declare const schemas_gen_FacilityPermissionsResponseSchema: typeof FacilityPerm
|
|
|
5684
6476
|
declare const schemas_gen_FacilityPunchCardDataSchema: typeof FacilityPunchCardDataSchema;
|
|
5685
6477
|
declare const schemas_gen_FacilityValueCardDataSchema: typeof FacilityValueCardDataSchema;
|
|
5686
6478
|
declare const schemas_gen_GenderSchema: typeof GenderSchema;
|
|
6479
|
+
declare const schemas_gen_LinkTypeSchema: typeof LinkTypeSchema;
|
|
6480
|
+
declare const schemas_gen_MemberListResponseSchema: typeof MemberListResponseSchema;
|
|
6481
|
+
declare const schemas_gen_MemberRelationSchema: typeof MemberRelationSchema;
|
|
6482
|
+
declare const schemas_gen_MemberSchema: typeof MemberSchema;
|
|
6483
|
+
declare const schemas_gen_MembershipStatusSchema: typeof MembershipStatusSchema;
|
|
5687
6484
|
declare const schemas_gen_MetadataSchema: typeof MetadataSchema;
|
|
5688
6485
|
declare const schemas_gen_NotificationPayloadSchema: typeof NotificationPayloadSchema;
|
|
5689
6486
|
declare const schemas_gen_NotificationRequestBodySchema: typeof NotificationRequestBodySchema;
|
|
@@ -5691,8 +6488,17 @@ declare const schemas_gen_NotificationSchema: typeof NotificationSchema;
|
|
|
5691
6488
|
declare const schemas_gen_NotificationsFilterSchema: typeof NotificationsFilterSchema;
|
|
5692
6489
|
declare const schemas_gen_NotificationsPaginatedResponseSchema: typeof NotificationsPaginatedResponseSchema;
|
|
5693
6490
|
declare const schemas_gen_NotificationsSummarySchema: typeof NotificationsSummarySchema;
|
|
6491
|
+
declare const schemas_gen_PaginationMetaSchema: typeof PaginationMetaSchema;
|
|
6492
|
+
declare const schemas_gen_PatchCommentRequestSchema: typeof PatchCommentRequestSchema;
|
|
6493
|
+
declare const schemas_gen_PatchPostRequestSchema: typeof PatchPostRequestSchema;
|
|
6494
|
+
declare const schemas_gen_PostLinkSchema: typeof PostLinkSchema;
|
|
6495
|
+
declare const schemas_gen_PostListResponseSchema: typeof PostListResponseSchema;
|
|
6496
|
+
declare const schemas_gen_PostSchema: typeof PostSchema;
|
|
6497
|
+
declare const schemas_gen_PostingPermissionSchema: typeof PostingPermissionSchema;
|
|
5694
6498
|
declare const schemas_gen_PreferenceSchema: typeof PreferenceSchema;
|
|
5695
6499
|
declare const schemas_gen_PreferencesResponseSchema: typeof PreferencesResponseSchema;
|
|
6500
|
+
declare const schemas_gen_RecommendationListSchema: typeof RecommendationListSchema;
|
|
6501
|
+
declare const schemas_gen_RecommendationSchema: typeof RecommendationSchema;
|
|
5696
6502
|
declare const schemas_gen_RegisterDeviceRequestSchema: typeof RegisterDeviceRequestSchema;
|
|
5697
6503
|
declare const schemas_gen_SourceSchema: typeof SourceSchema;
|
|
5698
6504
|
declare const schemas_gen_SportAuthoritiesResponseSchema: typeof SportAuthoritiesResponseSchema;
|
|
@@ -5709,13 +6515,14 @@ declare const schemas_gen_UpdateUsersProfilesRequestSchema: typeof UpdateUsersPr
|
|
|
5709
6515
|
declare const schemas_gen_UserProfileSchema: typeof UserProfileSchema;
|
|
5710
6516
|
declare const schemas_gen_UserRelationSchema: typeof UserRelationSchema;
|
|
5711
6517
|
declare const schemas_gen_UsersProfilesPaginatedResponseSchema: typeof UsersProfilesPaginatedResponseSchema;
|
|
6518
|
+
declare const schemas_gen_VisibilitySchema: typeof VisibilitySchema;
|
|
5712
6519
|
declare const schemas_gen_pkgOpenapiSharedCursorPaginatedResultSetSchema: typeof pkgOpenapiSharedCursorPaginatedResultSetSchema;
|
|
5713
6520
|
declare const schemas_gen_pkgOpenapiSharedErrorSchema: typeof pkgOpenapiSharedErrorSchema;
|
|
5714
6521
|
declare const schemas_gen_pkgOpenapiSharedErrorsSchema: typeof pkgOpenapiSharedErrorsSchema;
|
|
5715
6522
|
declare const schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema: typeof pkgOpenapiSharedOffsetPaginatedResultSetSchema;
|
|
5716
6523
|
declare const schemas_gen_pkgOpenapiSharedProblemDetailsSchema: typeof pkgOpenapiSharedProblemDetailsSchema;
|
|
5717
6524
|
declare namespace schemas_gen {
|
|
5718
|
-
export { schemas_gen_ChannelsSchema as ChannelsSchema, 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_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_PreferenceSchema as PreferenceSchema, schemas_gen_PreferencesResponseSchema as PreferencesResponseSchema, 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_pkgOpenapiSharedCursorPaginatedResultSetSchema as pkgOpenapiSharedCursorPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedErrorSchema as pkgOpenapiSharedErrorSchema, schemas_gen_pkgOpenapiSharedErrorsSchema as pkgOpenapiSharedErrorsSchema, schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema as pkgOpenapiSharedOffsetPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedProblemDetailsSchema as pkgOpenapiSharedProblemDetailsSchema };
|
|
6525
|
+
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 };
|
|
5719
6526
|
}
|
|
5720
6527
|
|
|
5721
6528
|
type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
|
|
@@ -5803,6 +6610,13 @@ declare const getUserFacilityPermissions: <ThrowOnError extends boolean = false>
|
|
|
5803
6610
|
* Update authenticated user's profile information
|
|
5804
6611
|
*/
|
|
5805
6612
|
declare const updateUserProfile: <ThrowOnError extends boolean = false>(options: Options<UpdateUserProfileData, ThrowOnError>) => RequestResult<UpdateUserProfileResponses, UpdateUserProfileErrors, ThrowOnError, "fields">;
|
|
6613
|
+
/**
|
|
6614
|
+
* Get personalized recommendations
|
|
6615
|
+
*
|
|
6616
|
+
* Returns personalized recommendations for the given user. The type parameter determines what kind of recommendations to return. Results are ordered by relevance score (descending).
|
|
6617
|
+
*
|
|
6618
|
+
*/
|
|
6619
|
+
declare const getRecommendations: <ThrowOnError extends boolean = false>(options: Options<GetRecommendationsData, ThrowOnError>) => RequestResult<GetRecommendationsResponses, GetRecommendationsErrors, ThrowOnError, "fields">;
|
|
5806
6620
|
/**
|
|
5807
6621
|
* List sport profiles for a user
|
|
5808
6622
|
*
|
|
@@ -6171,6 +6985,64 @@ declare const getUserFacilityPermissionsOptions: (options: Options<GetUserFacili
|
|
|
6171
6985
|
* Update authenticated user's profile information
|
|
6172
6986
|
*/
|
|
6173
6987
|
declare const updateUserProfileMutation: (options?: Partial<Options<UpdateUserProfileData>>) => UseMutationOptions<UpdateUserProfileResponse, UpdateUserProfileError, Options<UpdateUserProfileData>>;
|
|
6988
|
+
declare const getRecommendationsQueryKey: (options: Options<GetRecommendationsData>) => [Pick<Options<GetRecommendationsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
6989
|
+
_id: string;
|
|
6990
|
+
_infinite?: boolean;
|
|
6991
|
+
tags?: ReadonlyArray<string>;
|
|
6992
|
+
}];
|
|
6993
|
+
/**
|
|
6994
|
+
* Get personalized recommendations
|
|
6995
|
+
*
|
|
6996
|
+
* Returns personalized recommendations for the given user. The type parameter determines what kind of recommendations to return. Results are ordered by relevance score (descending).
|
|
6997
|
+
*
|
|
6998
|
+
*/
|
|
6999
|
+
declare const getRecommendationsOptions: (options: Options<GetRecommendationsData>) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<RecommendationList, PkgOpenapiSharedProblemDetails, RecommendationList, [Pick<Options<GetRecommendationsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
7000
|
+
_id: string;
|
|
7001
|
+
_infinite?: boolean;
|
|
7002
|
+
tags?: ReadonlyArray<string>;
|
|
7003
|
+
}]>, "queryFn"> & {
|
|
7004
|
+
queryFn?: _tanstack_react_query.QueryFunction<RecommendationList, [Pick<Options<GetRecommendationsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
7005
|
+
_id: string;
|
|
7006
|
+
_infinite?: boolean;
|
|
7007
|
+
tags?: ReadonlyArray<string>;
|
|
7008
|
+
}], never> | undefined;
|
|
7009
|
+
} & {
|
|
7010
|
+
queryKey: [Pick<Options<GetRecommendationsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
7011
|
+
_id: string;
|
|
7012
|
+
_infinite?: boolean;
|
|
7013
|
+
tags?: ReadonlyArray<string>;
|
|
7014
|
+
}] & {
|
|
7015
|
+
[dataTagSymbol]: RecommendationList;
|
|
7016
|
+
[dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
|
|
7017
|
+
};
|
|
7018
|
+
};
|
|
7019
|
+
declare const getRecommendationsInfiniteQueryKey: (options: Options<GetRecommendationsData>) => QueryKey<Options<GetRecommendationsData>>;
|
|
7020
|
+
/**
|
|
7021
|
+
* Get personalized recommendations
|
|
7022
|
+
*
|
|
7023
|
+
* Returns personalized recommendations for the given user. The type parameter determines what kind of recommendations to return. Results are ordered by relevance score (descending).
|
|
7024
|
+
*
|
|
7025
|
+
*/
|
|
7026
|
+
declare const getRecommendationsInfiniteOptions: (options: Options<GetRecommendationsData>) => _tanstack_react_query.UseInfiniteQueryOptions<RecommendationList, PkgOpenapiSharedProblemDetails, InfiniteData<RecommendationList, unknown>, QueryKey<Options<GetRecommendationsData>>, number | Pick<Pick<Options<GetRecommendationsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
7027
|
+
_id: string;
|
|
7028
|
+
_infinite?: boolean;
|
|
7029
|
+
tags?: ReadonlyArray<string>;
|
|
7030
|
+
}, "query" | "body" | "headers" | "path">> & {
|
|
7031
|
+
initialData: InfiniteData<RecommendationList, number | Pick<Pick<Options<GetRecommendationsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
7032
|
+
_id: string;
|
|
7033
|
+
_infinite?: boolean;
|
|
7034
|
+
tags?: ReadonlyArray<string>;
|
|
7035
|
+
}, "query" | "body" | "headers" | "path">> | (() => InfiniteData<RecommendationList, number | Pick<Pick<Options<GetRecommendationsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
7036
|
+
_id: string;
|
|
7037
|
+
_infinite?: boolean;
|
|
7038
|
+
tags?: ReadonlyArray<string>;
|
|
7039
|
+
}, "query" | "body" | "headers" | "path">>) | undefined;
|
|
7040
|
+
} & {
|
|
7041
|
+
queryKey: QueryKey<Options<GetRecommendationsData>> & {
|
|
7042
|
+
[dataTagSymbol]: InfiniteData<RecommendationList, unknown>;
|
|
7043
|
+
[dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
|
|
7044
|
+
};
|
|
7045
|
+
};
|
|
6174
7046
|
declare const getUserSportProfilesQueryKey: (options: Options<GetUserSportProfilesData>) => [Pick<Options<GetUserSportProfilesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
6175
7047
|
_id: string;
|
|
6176
7048
|
_infinite?: boolean;
|
|
@@ -6276,6 +7148,10 @@ declare const reactQuery_gen_getNotificationsOptions: typeof getNotificationsOpt
|
|
|
6276
7148
|
declare const reactQuery_gen_getNotificationsPreferencesOptions: typeof getNotificationsPreferencesOptions;
|
|
6277
7149
|
declare const reactQuery_gen_getNotificationsPreferencesQueryKey: typeof getNotificationsPreferencesQueryKey;
|
|
6278
7150
|
declare const reactQuery_gen_getNotificationsQueryKey: typeof getNotificationsQueryKey;
|
|
7151
|
+
declare const reactQuery_gen_getRecommendationsInfiniteOptions: typeof getRecommendationsInfiniteOptions;
|
|
7152
|
+
declare const reactQuery_gen_getRecommendationsInfiniteQueryKey: typeof getRecommendationsInfiniteQueryKey;
|
|
7153
|
+
declare const reactQuery_gen_getRecommendationsOptions: typeof getRecommendationsOptions;
|
|
7154
|
+
declare const reactQuery_gen_getRecommendationsQueryKey: typeof getRecommendationsQueryKey;
|
|
6279
7155
|
declare const reactQuery_gen_getSportAuthoritiesOptions: typeof getSportAuthoritiesOptions;
|
|
6280
7156
|
declare const reactQuery_gen_getSportAuthoritiesQueryKey: typeof getSportAuthoritiesQueryKey;
|
|
6281
7157
|
declare const reactQuery_gen_getUserFacilityPermissionsOptions: typeof getUserFacilityPermissionsOptions;
|
|
@@ -6298,7 +7174,7 @@ declare const reactQuery_gen_updateNotificationsPreferencesMutation: typeof upda
|
|
|
6298
7174
|
declare const reactQuery_gen_updateUserProfileMutation: typeof updateUserProfileMutation;
|
|
6299
7175
|
declare const reactQuery_gen_updateUserSportProfileLevelMutation: typeof updateUserSportProfileLevelMutation;
|
|
6300
7176
|
declare namespace reactQuery_gen {
|
|
6301
|
-
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_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 };
|
|
7177
|
+
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 };
|
|
6302
7178
|
}
|
|
6303
7179
|
|
|
6304
7180
|
type indexV1_AddUserSportProfileLevelData = AddUserSportProfileLevelData;
|
|
@@ -6306,14 +7182,23 @@ type indexV1_AddUserSportProfileLevelError = AddUserSportProfileLevelError;
|
|
|
6306
7182
|
type indexV1_AddUserSportProfileLevelErrors = AddUserSportProfileLevelErrors;
|
|
6307
7183
|
type indexV1_AddUserSportProfileLevelResponse = AddUserSportProfileLevelResponse;
|
|
6308
7184
|
type indexV1_AddUserSportProfileLevelResponses = AddUserSportProfileLevelResponses;
|
|
7185
|
+
type indexV1_Author = Author;
|
|
6309
7186
|
type indexV1_AuthoritySlug = AuthoritySlug;
|
|
6310
7187
|
type indexV1_Channels = Channels;
|
|
6311
7188
|
type indexV1_ClientOptions = ClientOptions;
|
|
7189
|
+
type indexV1_Comment = Comment;
|
|
7190
|
+
type indexV1_CommentIdParam = CommentIdParam;
|
|
7191
|
+
type indexV1_CommentListResponse = CommentListResponse;
|
|
7192
|
+
type indexV1_CommunityIdParam = CommunityIdParam;
|
|
7193
|
+
type indexV1_CommunityItem = CommunityItem;
|
|
7194
|
+
type indexV1_CommunityListResponse = CommunityListResponse;
|
|
7195
|
+
type indexV1_CreateCommentRequest = CreateCommentRequest;
|
|
6312
7196
|
type indexV1_CreateFacilityOfferOrderData = CreateFacilityOfferOrderData;
|
|
6313
7197
|
type indexV1_CreateFacilityOfferOrderError = CreateFacilityOfferOrderError;
|
|
6314
7198
|
type indexV1_CreateFacilityOfferOrderErrors = CreateFacilityOfferOrderErrors;
|
|
6315
7199
|
type indexV1_CreateFacilityOfferOrderResponse = CreateFacilityOfferOrderResponse;
|
|
6316
7200
|
type indexV1_CreateFacilityOfferOrderResponses = CreateFacilityOfferOrderResponses;
|
|
7201
|
+
type indexV1_CreatePostRequest = CreatePostRequest;
|
|
6317
7202
|
type indexV1_CreateSportProfileLevelRequest = CreateSportProfileLevelRequest;
|
|
6318
7203
|
type indexV1_CreateSportProfileRequest = CreateSportProfileRequest;
|
|
6319
7204
|
type indexV1_CreateUserSportProfileData = CreateUserSportProfileData;
|
|
@@ -6363,6 +7248,11 @@ type indexV1_GetNotificationsPreferencesResponse = GetNotificationsPreferencesRe
|
|
|
6363
7248
|
type indexV1_GetNotificationsPreferencesResponses = GetNotificationsPreferencesResponses;
|
|
6364
7249
|
type indexV1_GetNotificationsResponse = GetNotificationsResponse;
|
|
6365
7250
|
type indexV1_GetNotificationsResponses = GetNotificationsResponses;
|
|
7251
|
+
type indexV1_GetRecommendationsData = GetRecommendationsData;
|
|
7252
|
+
type indexV1_GetRecommendationsError = GetRecommendationsError;
|
|
7253
|
+
type indexV1_GetRecommendationsErrors = GetRecommendationsErrors;
|
|
7254
|
+
type indexV1_GetRecommendationsResponse = GetRecommendationsResponse;
|
|
7255
|
+
type indexV1_GetRecommendationsResponses = GetRecommendationsResponses;
|
|
6366
7256
|
type indexV1_GetSportAuthoritiesData = GetSportAuthoritiesData;
|
|
6367
7257
|
type indexV1_GetSportAuthoritiesError = GetSportAuthoritiesError;
|
|
6368
7258
|
type indexV1_GetSportAuthoritiesErrors = GetSportAuthoritiesErrors;
|
|
@@ -6383,11 +7273,16 @@ type indexV1_GetUserSportProfilesError = GetUserSportProfilesError;
|
|
|
6383
7273
|
type indexV1_GetUserSportProfilesErrors = GetUserSportProfilesErrors;
|
|
6384
7274
|
type indexV1_GetUserSportProfilesResponse = GetUserSportProfilesResponse;
|
|
6385
7275
|
type indexV1_GetUserSportProfilesResponses = GetUserSportProfilesResponses;
|
|
7276
|
+
type indexV1_LinkType = LinkType;
|
|
6386
7277
|
type indexV1_ListFacilityOffersData = ListFacilityOffersData;
|
|
6387
7278
|
type indexV1_ListFacilityOffersError = ListFacilityOffersError;
|
|
6388
7279
|
type indexV1_ListFacilityOffersErrors = ListFacilityOffersErrors;
|
|
6389
7280
|
type indexV1_ListFacilityOffersResponse = ListFacilityOffersResponse;
|
|
6390
7281
|
type indexV1_ListFacilityOffersResponses = ListFacilityOffersResponses;
|
|
7282
|
+
type indexV1_Member = Member;
|
|
7283
|
+
type indexV1_MemberListResponse = MemberListResponse;
|
|
7284
|
+
type indexV1_MemberRelation = MemberRelation;
|
|
7285
|
+
type indexV1_MembershipStatus = MembershipStatus;
|
|
6391
7286
|
type indexV1_Metadata = Metadata;
|
|
6392
7287
|
type indexV1_Notification = Notification;
|
|
6393
7288
|
type indexV1_NotificationPayload = NotificationPayload;
|
|
@@ -6398,6 +7293,9 @@ type indexV1_NotificationsPaginatedResponse = NotificationsPaginatedResponse;
|
|
|
6398
7293
|
type indexV1_NotificationsSummary = NotificationsSummary;
|
|
6399
7294
|
type indexV1_OfferIdPath = OfferIdPath;
|
|
6400
7295
|
type indexV1_Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options<TData, ThrowOnError>;
|
|
7296
|
+
type indexV1_PaginationMeta = PaginationMeta;
|
|
7297
|
+
type indexV1_PatchCommentRequest = PatchCommentRequest;
|
|
7298
|
+
type indexV1_PatchPostRequest = PatchPostRequest;
|
|
6401
7299
|
type indexV1_PkgOpenapiSharedCursorLimitParam = PkgOpenapiSharedCursorLimitParam;
|
|
6402
7300
|
type indexV1_PkgOpenapiSharedCursorPaginatedResultSet = PkgOpenapiSharedCursorPaginatedResultSet;
|
|
6403
7301
|
type indexV1_PkgOpenapiSharedCursorParam = PkgOpenapiSharedCursorParam;
|
|
@@ -6407,8 +7305,15 @@ type indexV1_PkgOpenapiSharedOffsetLimitParam = PkgOpenapiSharedOffsetLimitParam
|
|
|
6407
7305
|
type indexV1_PkgOpenapiSharedOffsetPaginatedResultSet = PkgOpenapiSharedOffsetPaginatedResultSet;
|
|
6408
7306
|
type indexV1_PkgOpenapiSharedOffsetParam = PkgOpenapiSharedOffsetParam;
|
|
6409
7307
|
type indexV1_PkgOpenapiSharedProblemDetails = PkgOpenapiSharedProblemDetails;
|
|
7308
|
+
type indexV1_Post = Post;
|
|
7309
|
+
type indexV1_PostIdParam = PostIdParam;
|
|
7310
|
+
type indexV1_PostLink = PostLink;
|
|
7311
|
+
type indexV1_PostListResponse = PostListResponse;
|
|
7312
|
+
type indexV1_PostingPermission = PostingPermission;
|
|
6410
7313
|
type indexV1_Preference = Preference;
|
|
6411
7314
|
type indexV1_PreferencesResponse = PreferencesResponse;
|
|
7315
|
+
type indexV1_Recommendation = Recommendation;
|
|
7316
|
+
type indexV1_RecommendationList = RecommendationList;
|
|
6412
7317
|
type indexV1_RegisterDeviceRequest = RegisterDeviceRequest;
|
|
6413
7318
|
type indexV1_SearchUsersData = SearchUsersData;
|
|
6414
7319
|
type indexV1_SearchUsersError = SearchUsersError;
|
|
@@ -6454,9 +7359,11 @@ type indexV1_UpdateUserSportProfileLevelResponse = UpdateUserSportProfileLevelRe
|
|
|
6454
7359
|
type indexV1_UpdateUserSportProfileLevelResponses = UpdateUserSportProfileLevelResponses;
|
|
6455
7360
|
type indexV1_UpdateUsersProfilesRequest = UpdateUsersProfilesRequest;
|
|
6456
7361
|
type indexV1_UserId = UserId;
|
|
7362
|
+
type indexV1_UserIdParam = UserIdParam;
|
|
6457
7363
|
type indexV1_UserProfile = UserProfile;
|
|
6458
7364
|
type indexV1_UserRelation = UserRelation;
|
|
6459
7365
|
type indexV1_UsersProfilesPaginatedResponse = UsersProfilesPaginatedResponse;
|
|
7366
|
+
type indexV1_Visibility = Visibility;
|
|
6460
7367
|
declare const indexV1_addUserSportProfileLevel: typeof addUserSportProfileLevel;
|
|
6461
7368
|
declare const indexV1_client: typeof client;
|
|
6462
7369
|
declare const indexV1_createFacilityOfferOrder: typeof createFacilityOfferOrder;
|
|
@@ -6466,6 +7373,7 @@ declare const indexV1_deleteUserSportProfileLevel: typeof deleteUserSportProfile
|
|
|
6466
7373
|
declare const indexV1_getNotificationById: typeof getNotificationById;
|
|
6467
7374
|
declare const indexV1_getNotifications: typeof getNotifications;
|
|
6468
7375
|
declare const indexV1_getNotificationsPreferences: typeof getNotificationsPreferences;
|
|
7376
|
+
declare const indexV1_getRecommendations: typeof getRecommendations;
|
|
6469
7377
|
declare const indexV1_getSportAuthorities: typeof getSportAuthorities;
|
|
6470
7378
|
declare const indexV1_getUserFacilityPermissions: typeof getUserFacilityPermissions;
|
|
6471
7379
|
declare const indexV1_getUserSportProfile: typeof getUserSportProfile;
|
|
@@ -6478,7 +7386,7 @@ declare const indexV1_updateNotificationsPreferences: typeof updateNotifications
|
|
|
6478
7386
|
declare const indexV1_updateUserProfile: typeof updateUserProfile;
|
|
6479
7387
|
declare const indexV1_updateUserSportProfileLevel: typeof updateUserSportProfileLevel;
|
|
6480
7388
|
declare namespace indexV1 {
|
|
6481
|
-
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_AuthoritySlug as AuthoritySlug, type indexV1_Channels as Channels, type indexV1_ClientOptions as ClientOptions, 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_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_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_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_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_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_Preference as Preference, type indexV1_PreferencesResponse as PreferencesResponse, 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_UserProfile as UserProfile, type indexV1_UserRelation as UserRelation, type indexV1_UsersProfilesPaginatedResponse as UsersProfilesPaginatedResponse, 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_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 };
|
|
7389
|
+
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 };
|
|
6482
7390
|
}
|
|
6483
7391
|
|
|
6484
7392
|
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 };
|