@matchi/api 0.20260324.1 → 0.20260410.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.
@@ -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;
@@ -3846,6 +3978,7 @@ type UserProfile = {
3846
3978
  * * `OUTGOING` - The user has sent a friend request to the current user.
3847
3979
  * * `INCOMING` - The user has received a friend request from the current user.
3848
3980
  * * `NO_RELATION` - The user has no ongoing relation with the current user.
3981
+ * * `BLOCK` - The user is blocked by the current user
3849
3982
  *
3850
3983
  */
3851
3984
  declare const UserRelation: {
@@ -3853,6 +3986,7 @@ declare const UserRelation: {
3853
3986
  readonly OUTGOING: "OUTGOING";
3854
3987
  readonly INCOMING: "INCOMING";
3855
3988
  readonly NO_RELATION: "NO_RELATION";
3989
+ readonly BLOCK: "BLOCK";
3856
3990
  };
3857
3991
  /**
3858
3992
  * Returns :
@@ -3860,6 +3994,7 @@ declare const UserRelation: {
3860
3994
  * * `OUTGOING` - The user has sent a friend request to the current user.
3861
3995
  * * `INCOMING` - The user has received a friend request from the current user.
3862
3996
  * * `NO_RELATION` - The user has no ongoing relation with the current user.
3997
+ * * `BLOCK` - The user is blocked by the current user
3863
3998
  *
3864
3999
  */
3865
4000
  type UserRelation = typeof UserRelation[keyof typeof UserRelation];
@@ -3867,6 +4002,10 @@ type UsersProfilesPaginatedResponse = {
3867
4002
  items: Array<UserProfile>;
3868
4003
  meta: PkgOpenapiSharedOffsetPaginatedResultSet;
3869
4004
  };
4005
+ declare const Visibility: {
4006
+ readonly HIDDEN: "hidden";
4007
+ };
4008
+ type Visibility = typeof Visibility[keyof typeof Visibility];
3870
4009
  /**
3871
4010
  * 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
4011
  *
@@ -3931,9 +4070,12 @@ type PkgOpenapiSharedProblemDetails = {
3931
4070
  * The rating authority slug (e.g. "matchi", "dk-padel")
3932
4071
  */
3933
4072
  type AuthoritySlug = string;
4073
+ type CommentIdParam = string;
4074
+ type CommunityIdParam = string;
3934
4075
  type FacilityIdPath = string;
3935
4076
  type NotificationsFilterParam = NotificationsFilter;
3936
4077
  type OfferIdPath = string;
4078
+ type PostIdParam = string;
3937
4079
  /**
3938
4080
  * The sport profile ID
3939
4081
  */
@@ -3942,6 +4084,7 @@ type SportProfileId = number;
3942
4084
  * The user ID
3943
4085
  */
3944
4086
  type UserId = string;
4087
+ type UserIdParam = string;
3945
4088
  /**
3946
4089
  * Maximum number of items to return per page.
3947
4090
  */
@@ -4724,6 +4867,38 @@ type UpdateUserSportProfileLevelResponse = UpdateUserSportProfileLevelResponses[
4724
4867
 
4725
4868
  declare const client: Client;
4726
4869
 
4870
+ declare const AuthorSchema: {
4871
+ readonly properties: {
4872
+ readonly display_name: {
4873
+ readonly type: "string";
4874
+ };
4875
+ readonly facility_id: {
4876
+ readonly type: "integer";
4877
+ };
4878
+ readonly first_name: {
4879
+ readonly type: "string";
4880
+ };
4881
+ readonly last_name: {
4882
+ readonly type: "string";
4883
+ };
4884
+ readonly profile_image_url: {
4885
+ readonly type: "string";
4886
+ };
4887
+ readonly relation_status: {
4888
+ readonly $ref: "#/components/schemas/MemberRelation";
4889
+ };
4890
+ readonly type: {
4891
+ readonly enum: readonly ["admin", "member"];
4892
+ readonly type: "string";
4893
+ };
4894
+ readonly user_id: {
4895
+ readonly format: "uuid";
4896
+ readonly type: "string";
4897
+ };
4898
+ };
4899
+ readonly required: readonly ["type"];
4900
+ readonly type: "object";
4901
+ };
4727
4902
  declare const ChannelsSchema: {
4728
4903
  readonly properties: {
4729
4904
  readonly inapp: {
@@ -4736,6 +4911,136 @@ declare const ChannelsSchema: {
4736
4911
  readonly required: readonly ["inapp", "push"];
4737
4912
  readonly type: "object";
4738
4913
  };
4914
+ declare const CommentSchema: {
4915
+ readonly properties: {
4916
+ readonly author: {
4917
+ readonly $ref: "#/components/schemas/Author";
4918
+ };
4919
+ readonly comment_id: {
4920
+ readonly format: "uuid";
4921
+ readonly type: "string";
4922
+ };
4923
+ readonly content: {
4924
+ readonly type: "string";
4925
+ };
4926
+ readonly created_at: {
4927
+ readonly format: "date-time";
4928
+ readonly type: "string";
4929
+ };
4930
+ readonly is_read: {
4931
+ readonly type: "boolean";
4932
+ };
4933
+ readonly post_id: {
4934
+ readonly format: "uuid";
4935
+ readonly type: "string";
4936
+ };
4937
+ };
4938
+ readonly required: readonly ["comment_id", "post_id", "author", "content", "is_read", "created_at"];
4939
+ readonly type: "object";
4940
+ };
4941
+ declare const CommentListResponseSchema: {
4942
+ readonly properties: {
4943
+ readonly items: {
4944
+ readonly items: {
4945
+ readonly $ref: "#/components/schemas/Comment";
4946
+ };
4947
+ readonly type: "array";
4948
+ };
4949
+ readonly meta: {
4950
+ readonly $ref: "#/components/schemas/PaginationMeta";
4951
+ };
4952
+ };
4953
+ readonly required: readonly ["items", "meta"];
4954
+ readonly type: "object";
4955
+ };
4956
+ declare const CommunityItemSchema: {
4957
+ readonly properties: {
4958
+ readonly community_id: {
4959
+ readonly format: "uuid";
4960
+ readonly type: "string";
4961
+ };
4962
+ readonly cover_image_url: {
4963
+ readonly type: "string";
4964
+ };
4965
+ readonly created_at: {
4966
+ readonly format: "date-time";
4967
+ readonly type: "string";
4968
+ };
4969
+ readonly description: {
4970
+ readonly type: "string";
4971
+ };
4972
+ readonly facility_id: {
4973
+ readonly type: "integer";
4974
+ };
4975
+ readonly member_count: {
4976
+ readonly type: "integer";
4977
+ };
4978
+ readonly name: {
4979
+ readonly type: "string";
4980
+ };
4981
+ readonly posting_permission: {
4982
+ readonly $ref: "#/components/schemas/PostingPermission";
4983
+ };
4984
+ readonly status: {
4985
+ readonly $ref: "#/components/schemas/MembershipStatus";
4986
+ };
4987
+ readonly unread_post_count: {
4988
+ readonly type: "integer";
4989
+ };
4990
+ readonly updated_at: {
4991
+ readonly format: "date-time";
4992
+ readonly type: "string";
4993
+ };
4994
+ readonly visibility: {
4995
+ readonly $ref: "#/components/schemas/Visibility";
4996
+ };
4997
+ };
4998
+ readonly required: readonly ["community_id", "facility_id", "name", "description", "posting_permission", "visibility", "status", "member_count", "unread_post_count", "created_at", "updated_at"];
4999
+ readonly type: "object";
5000
+ };
5001
+ declare const CommunityListResponseSchema: {
5002
+ readonly properties: {
5003
+ readonly items: {
5004
+ readonly items: {
5005
+ readonly $ref: "#/components/schemas/CommunityItem";
5006
+ };
5007
+ readonly type: "array";
5008
+ };
5009
+ readonly meta: {
5010
+ readonly $ref: "#/components/schemas/PaginationMeta";
5011
+ };
5012
+ };
5013
+ readonly required: readonly ["items", "meta"];
5014
+ readonly type: "object";
5015
+ };
5016
+ declare const CreateCommentRequestSchema: {
5017
+ readonly properties: {
5018
+ readonly content: {
5019
+ readonly maxLength: 2000;
5020
+ readonly minLength: 1;
5021
+ readonly type: "string";
5022
+ };
5023
+ };
5024
+ readonly required: readonly ["content"];
5025
+ readonly type: "object";
5026
+ };
5027
+ declare const CreatePostRequestSchema: {
5028
+ readonly properties: {
5029
+ readonly content: {
5030
+ readonly maxLength: 5000;
5031
+ readonly minLength: 1;
5032
+ readonly type: "string";
5033
+ };
5034
+ readonly links: {
5035
+ readonly items: {
5036
+ readonly $ref: "#/components/schemas/PostLink";
5037
+ };
5038
+ readonly type: "array";
5039
+ };
5040
+ };
5041
+ readonly required: readonly ["content"];
5042
+ readonly type: "object";
5043
+ };
4739
5044
  declare const CreateSportProfileLevelRequestSchema: {
4740
5045
  readonly properties: {
4741
5046
  readonly authority_slug: {
@@ -5097,6 +5402,56 @@ declare const GenderSchema: {
5097
5402
  readonly enum: readonly ["MALE", "FEMALE", "OTHER", "NOT_SPECIFIED"];
5098
5403
  readonly type: "string";
5099
5404
  };
5405
+ declare const LinkTypeSchema: {
5406
+ readonly enum: readonly ["activity", "match"];
5407
+ readonly type: "string";
5408
+ };
5409
+ declare const MemberSchema: {
5410
+ readonly properties: {
5411
+ readonly first_name: {
5412
+ readonly type: "string";
5413
+ };
5414
+ readonly last_name: {
5415
+ readonly type: "string";
5416
+ };
5417
+ readonly profile_image_url: {
5418
+ readonly type: "string";
5419
+ };
5420
+ readonly relation_status: {
5421
+ readonly $ref: "#/components/schemas/MemberRelation";
5422
+ };
5423
+ readonly user_id: {
5424
+ readonly format: "uuid";
5425
+ readonly type: "string";
5426
+ };
5427
+ };
5428
+ readonly required: readonly ["user_id", "first_name", "last_name", "relation_status"];
5429
+ readonly type: "object";
5430
+ };
5431
+ declare const MemberListResponseSchema: {
5432
+ readonly properties: {
5433
+ readonly items: {
5434
+ readonly items: {
5435
+ readonly $ref: "#/components/schemas/Member";
5436
+ };
5437
+ readonly type: "array";
5438
+ };
5439
+ readonly meta: {
5440
+ readonly $ref: "#/components/schemas/PaginationMeta";
5441
+ };
5442
+ };
5443
+ readonly required: readonly ["items", "meta"];
5444
+ readonly type: "object";
5445
+ };
5446
+ declare const MemberRelationSchema: {
5447
+ 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";
5448
+ readonly enum: readonly ["FRIENDS", "OUTGOING", "INCOMING", "NO_RELATION", "BLOCK"];
5449
+ readonly type: "string";
5450
+ };
5451
+ declare const MembershipStatusSchema: {
5452
+ readonly enum: readonly ["ACTIVE", "INVITED", "LEFT"];
5453
+ readonly type: "string";
5454
+ };
5100
5455
  declare const MetadataSchema: {
5101
5456
  readonly properties: {
5102
5457
  readonly pagination: {
@@ -5200,6 +5555,116 @@ declare const NotificationsSummarySchema: {
5200
5555
  readonly required: readonly ["count", "unread_count", "global_count", "global_unread_count"];
5201
5556
  readonly type: "object";
5202
5557
  };
5558
+ declare const PaginationMetaSchema: {
5559
+ readonly properties: {
5560
+ readonly pagination: {
5561
+ readonly $ref: "#/components/schemas/pkgOpenapiSharedOffsetPaginatedResultSet";
5562
+ };
5563
+ readonly summary: {
5564
+ readonly properties: {
5565
+ readonly total: {
5566
+ readonly type: "integer";
5567
+ };
5568
+ };
5569
+ readonly required: readonly ["total"];
5570
+ readonly type: "object";
5571
+ };
5572
+ };
5573
+ readonly required: readonly ["pagination", "summary"];
5574
+ readonly type: "object";
5575
+ };
5576
+ declare const PatchCommentRequestSchema: {
5577
+ readonly properties: {
5578
+ readonly is_read: {
5579
+ readonly type: "boolean";
5580
+ };
5581
+ };
5582
+ readonly required: readonly ["is_read"];
5583
+ readonly type: "object";
5584
+ };
5585
+ declare const PatchPostRequestSchema: {
5586
+ readonly properties: {
5587
+ readonly is_read: {
5588
+ readonly type: "boolean";
5589
+ };
5590
+ };
5591
+ readonly required: readonly ["is_read"];
5592
+ readonly type: "object";
5593
+ };
5594
+ declare const PostSchema: {
5595
+ readonly properties: {
5596
+ readonly author: {
5597
+ readonly $ref: "#/components/schemas/Author";
5598
+ };
5599
+ readonly comment_count: {
5600
+ readonly type: "integer";
5601
+ };
5602
+ readonly community_id: {
5603
+ readonly format: "uuid";
5604
+ readonly type: "string";
5605
+ };
5606
+ readonly content: {
5607
+ readonly type: "string";
5608
+ };
5609
+ readonly created_at: {
5610
+ readonly format: "date-time";
5611
+ readonly type: "string";
5612
+ };
5613
+ readonly is_read: {
5614
+ readonly type: "boolean";
5615
+ };
5616
+ readonly links: {
5617
+ readonly items: {
5618
+ readonly $ref: "#/components/schemas/PostLink";
5619
+ };
5620
+ readonly type: "array";
5621
+ };
5622
+ readonly post_id: {
5623
+ readonly format: "uuid";
5624
+ readonly type: "string";
5625
+ };
5626
+ readonly unread_comment_count: {
5627
+ readonly type: "integer";
5628
+ };
5629
+ readonly updated_at: {
5630
+ readonly format: "date-time";
5631
+ readonly type: "string";
5632
+ };
5633
+ };
5634
+ readonly required: readonly ["post_id", "community_id", "author", "comment_count", "unread_comment_count", "is_read", "created_at", "updated_at"];
5635
+ readonly type: "object";
5636
+ };
5637
+ declare const PostLinkSchema: {
5638
+ readonly properties: {
5639
+ readonly link_reference_id: {
5640
+ readonly type: "string";
5641
+ };
5642
+ readonly link_type: {
5643
+ readonly $ref: "#/components/schemas/LinkType";
5644
+ };
5645
+ };
5646
+ readonly required: readonly ["link_type", "link_reference_id"];
5647
+ readonly type: "object";
5648
+ };
5649
+ declare const PostListResponseSchema: {
5650
+ readonly properties: {
5651
+ readonly items: {
5652
+ readonly items: {
5653
+ readonly $ref: "#/components/schemas/Post";
5654
+ };
5655
+ readonly type: "array";
5656
+ };
5657
+ readonly meta: {
5658
+ readonly $ref: "#/components/schemas/PaginationMeta";
5659
+ };
5660
+ };
5661
+ readonly required: readonly ["items", "meta"];
5662
+ readonly type: "object";
5663
+ };
5664
+ declare const PostingPermissionSchema: {
5665
+ readonly enum: readonly ["admins", "members"];
5666
+ readonly type: "string";
5667
+ };
5203
5668
  declare const PreferenceSchema: {
5204
5669
  readonly properties: {
5205
5670
  readonly channels: {
@@ -5556,8 +6021,8 @@ declare const UserProfileSchema: {
5556
6021
  readonly type: "object";
5557
6022
  };
5558
6023
  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"];
6024
+ 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";
6025
+ readonly enum: readonly ["FRIENDS", "OUTGOING", "INCOMING", "NO_RELATION", "BLOCK"];
5561
6026
  readonly type: "string";
5562
6027
  };
5563
6028
  declare const UsersProfilesPaginatedResponseSchema: {
@@ -5575,6 +6040,10 @@ declare const UsersProfilesPaginatedResponseSchema: {
5575
6040
  readonly required: readonly ["items", "meta"];
5576
6041
  readonly type: "object";
5577
6042
  };
6043
+ declare const VisibilitySchema: {
6044
+ readonly enum: readonly ["hidden"];
6045
+ readonly type: "string";
6046
+ };
5578
6047
  declare const pkgOpenapiSharedCursorPaginatedResultSetSchema: {
5579
6048
  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
6049
  readonly properties: {
@@ -5665,7 +6134,14 @@ declare const pkgOpenapiSharedProblemDetailsSchema: {
5665
6134
  readonly type: "object";
5666
6135
  };
5667
6136
 
6137
+ declare const schemas_gen_AuthorSchema: typeof AuthorSchema;
5668
6138
  declare const schemas_gen_ChannelsSchema: typeof ChannelsSchema;
6139
+ declare const schemas_gen_CommentListResponseSchema: typeof CommentListResponseSchema;
6140
+ declare const schemas_gen_CommentSchema: typeof CommentSchema;
6141
+ declare const schemas_gen_CommunityItemSchema: typeof CommunityItemSchema;
6142
+ declare const schemas_gen_CommunityListResponseSchema: typeof CommunityListResponseSchema;
6143
+ declare const schemas_gen_CreateCommentRequestSchema: typeof CreateCommentRequestSchema;
6144
+ declare const schemas_gen_CreatePostRequestSchema: typeof CreatePostRequestSchema;
5669
6145
  declare const schemas_gen_CreateSportProfileLevelRequestSchema: typeof CreateSportProfileLevelRequestSchema;
5670
6146
  declare const schemas_gen_CreateSportProfileRequestSchema: typeof CreateSportProfileRequestSchema;
5671
6147
  declare const schemas_gen_FacilityMessagePayloadSchema: typeof FacilityMessagePayloadSchema;
@@ -5684,6 +6160,11 @@ declare const schemas_gen_FacilityPermissionsResponseSchema: typeof FacilityPerm
5684
6160
  declare const schemas_gen_FacilityPunchCardDataSchema: typeof FacilityPunchCardDataSchema;
5685
6161
  declare const schemas_gen_FacilityValueCardDataSchema: typeof FacilityValueCardDataSchema;
5686
6162
  declare const schemas_gen_GenderSchema: typeof GenderSchema;
6163
+ declare const schemas_gen_LinkTypeSchema: typeof LinkTypeSchema;
6164
+ declare const schemas_gen_MemberListResponseSchema: typeof MemberListResponseSchema;
6165
+ declare const schemas_gen_MemberRelationSchema: typeof MemberRelationSchema;
6166
+ declare const schemas_gen_MemberSchema: typeof MemberSchema;
6167
+ declare const schemas_gen_MembershipStatusSchema: typeof MembershipStatusSchema;
5687
6168
  declare const schemas_gen_MetadataSchema: typeof MetadataSchema;
5688
6169
  declare const schemas_gen_NotificationPayloadSchema: typeof NotificationPayloadSchema;
5689
6170
  declare const schemas_gen_NotificationRequestBodySchema: typeof NotificationRequestBodySchema;
@@ -5691,6 +6172,13 @@ declare const schemas_gen_NotificationSchema: typeof NotificationSchema;
5691
6172
  declare const schemas_gen_NotificationsFilterSchema: typeof NotificationsFilterSchema;
5692
6173
  declare const schemas_gen_NotificationsPaginatedResponseSchema: typeof NotificationsPaginatedResponseSchema;
5693
6174
  declare const schemas_gen_NotificationsSummarySchema: typeof NotificationsSummarySchema;
6175
+ declare const schemas_gen_PaginationMetaSchema: typeof PaginationMetaSchema;
6176
+ declare const schemas_gen_PatchCommentRequestSchema: typeof PatchCommentRequestSchema;
6177
+ declare const schemas_gen_PatchPostRequestSchema: typeof PatchPostRequestSchema;
6178
+ declare const schemas_gen_PostLinkSchema: typeof PostLinkSchema;
6179
+ declare const schemas_gen_PostListResponseSchema: typeof PostListResponseSchema;
6180
+ declare const schemas_gen_PostSchema: typeof PostSchema;
6181
+ declare const schemas_gen_PostingPermissionSchema: typeof PostingPermissionSchema;
5694
6182
  declare const schemas_gen_PreferenceSchema: typeof PreferenceSchema;
5695
6183
  declare const schemas_gen_PreferencesResponseSchema: typeof PreferencesResponseSchema;
5696
6184
  declare const schemas_gen_RegisterDeviceRequestSchema: typeof RegisterDeviceRequestSchema;
@@ -5709,13 +6197,14 @@ declare const schemas_gen_UpdateUsersProfilesRequestSchema: typeof UpdateUsersPr
5709
6197
  declare const schemas_gen_UserProfileSchema: typeof UserProfileSchema;
5710
6198
  declare const schemas_gen_UserRelationSchema: typeof UserRelationSchema;
5711
6199
  declare const schemas_gen_UsersProfilesPaginatedResponseSchema: typeof UsersProfilesPaginatedResponseSchema;
6200
+ declare const schemas_gen_VisibilitySchema: typeof VisibilitySchema;
5712
6201
  declare const schemas_gen_pkgOpenapiSharedCursorPaginatedResultSetSchema: typeof pkgOpenapiSharedCursorPaginatedResultSetSchema;
5713
6202
  declare const schemas_gen_pkgOpenapiSharedErrorSchema: typeof pkgOpenapiSharedErrorSchema;
5714
6203
  declare const schemas_gen_pkgOpenapiSharedErrorsSchema: typeof pkgOpenapiSharedErrorsSchema;
5715
6204
  declare const schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema: typeof pkgOpenapiSharedOffsetPaginatedResultSetSchema;
5716
6205
  declare const schemas_gen_pkgOpenapiSharedProblemDetailsSchema: typeof pkgOpenapiSharedProblemDetailsSchema;
5717
6206
  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 };
6207
+ 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_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
6208
  }
5720
6209
 
5721
6210
  type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
@@ -6306,14 +6795,23 @@ type indexV1_AddUserSportProfileLevelError = AddUserSportProfileLevelError;
6306
6795
  type indexV1_AddUserSportProfileLevelErrors = AddUserSportProfileLevelErrors;
6307
6796
  type indexV1_AddUserSportProfileLevelResponse = AddUserSportProfileLevelResponse;
6308
6797
  type indexV1_AddUserSportProfileLevelResponses = AddUserSportProfileLevelResponses;
6798
+ type indexV1_Author = Author;
6309
6799
  type indexV1_AuthoritySlug = AuthoritySlug;
6310
6800
  type indexV1_Channels = Channels;
6311
6801
  type indexV1_ClientOptions = ClientOptions;
6802
+ type indexV1_Comment = Comment;
6803
+ type indexV1_CommentIdParam = CommentIdParam;
6804
+ type indexV1_CommentListResponse = CommentListResponse;
6805
+ type indexV1_CommunityIdParam = CommunityIdParam;
6806
+ type indexV1_CommunityItem = CommunityItem;
6807
+ type indexV1_CommunityListResponse = CommunityListResponse;
6808
+ type indexV1_CreateCommentRequest = CreateCommentRequest;
6312
6809
  type indexV1_CreateFacilityOfferOrderData = CreateFacilityOfferOrderData;
6313
6810
  type indexV1_CreateFacilityOfferOrderError = CreateFacilityOfferOrderError;
6314
6811
  type indexV1_CreateFacilityOfferOrderErrors = CreateFacilityOfferOrderErrors;
6315
6812
  type indexV1_CreateFacilityOfferOrderResponse = CreateFacilityOfferOrderResponse;
6316
6813
  type indexV1_CreateFacilityOfferOrderResponses = CreateFacilityOfferOrderResponses;
6814
+ type indexV1_CreatePostRequest = CreatePostRequest;
6317
6815
  type indexV1_CreateSportProfileLevelRequest = CreateSportProfileLevelRequest;
6318
6816
  type indexV1_CreateSportProfileRequest = CreateSportProfileRequest;
6319
6817
  type indexV1_CreateUserSportProfileData = CreateUserSportProfileData;
@@ -6383,11 +6881,16 @@ type indexV1_GetUserSportProfilesError = GetUserSportProfilesError;
6383
6881
  type indexV1_GetUserSportProfilesErrors = GetUserSportProfilesErrors;
6384
6882
  type indexV1_GetUserSportProfilesResponse = GetUserSportProfilesResponse;
6385
6883
  type indexV1_GetUserSportProfilesResponses = GetUserSportProfilesResponses;
6884
+ type indexV1_LinkType = LinkType;
6386
6885
  type indexV1_ListFacilityOffersData = ListFacilityOffersData;
6387
6886
  type indexV1_ListFacilityOffersError = ListFacilityOffersError;
6388
6887
  type indexV1_ListFacilityOffersErrors = ListFacilityOffersErrors;
6389
6888
  type indexV1_ListFacilityOffersResponse = ListFacilityOffersResponse;
6390
6889
  type indexV1_ListFacilityOffersResponses = ListFacilityOffersResponses;
6890
+ type indexV1_Member = Member;
6891
+ type indexV1_MemberListResponse = MemberListResponse;
6892
+ type indexV1_MemberRelation = MemberRelation;
6893
+ type indexV1_MembershipStatus = MembershipStatus;
6391
6894
  type indexV1_Metadata = Metadata;
6392
6895
  type indexV1_Notification = Notification;
6393
6896
  type indexV1_NotificationPayload = NotificationPayload;
@@ -6398,6 +6901,9 @@ type indexV1_NotificationsPaginatedResponse = NotificationsPaginatedResponse;
6398
6901
  type indexV1_NotificationsSummary = NotificationsSummary;
6399
6902
  type indexV1_OfferIdPath = OfferIdPath;
6400
6903
  type indexV1_Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options<TData, ThrowOnError>;
6904
+ type indexV1_PaginationMeta = PaginationMeta;
6905
+ type indexV1_PatchCommentRequest = PatchCommentRequest;
6906
+ type indexV1_PatchPostRequest = PatchPostRequest;
6401
6907
  type indexV1_PkgOpenapiSharedCursorLimitParam = PkgOpenapiSharedCursorLimitParam;
6402
6908
  type indexV1_PkgOpenapiSharedCursorPaginatedResultSet = PkgOpenapiSharedCursorPaginatedResultSet;
6403
6909
  type indexV1_PkgOpenapiSharedCursorParam = PkgOpenapiSharedCursorParam;
@@ -6407,6 +6913,11 @@ type indexV1_PkgOpenapiSharedOffsetLimitParam = PkgOpenapiSharedOffsetLimitParam
6407
6913
  type indexV1_PkgOpenapiSharedOffsetPaginatedResultSet = PkgOpenapiSharedOffsetPaginatedResultSet;
6408
6914
  type indexV1_PkgOpenapiSharedOffsetParam = PkgOpenapiSharedOffsetParam;
6409
6915
  type indexV1_PkgOpenapiSharedProblemDetails = PkgOpenapiSharedProblemDetails;
6916
+ type indexV1_Post = Post;
6917
+ type indexV1_PostIdParam = PostIdParam;
6918
+ type indexV1_PostLink = PostLink;
6919
+ type indexV1_PostListResponse = PostListResponse;
6920
+ type indexV1_PostingPermission = PostingPermission;
6410
6921
  type indexV1_Preference = Preference;
6411
6922
  type indexV1_PreferencesResponse = PreferencesResponse;
6412
6923
  type indexV1_RegisterDeviceRequest = RegisterDeviceRequest;
@@ -6454,9 +6965,11 @@ type indexV1_UpdateUserSportProfileLevelResponse = UpdateUserSportProfileLevelRe
6454
6965
  type indexV1_UpdateUserSportProfileLevelResponses = UpdateUserSportProfileLevelResponses;
6455
6966
  type indexV1_UpdateUsersProfilesRequest = UpdateUsersProfilesRequest;
6456
6967
  type indexV1_UserId = UserId;
6968
+ type indexV1_UserIdParam = UserIdParam;
6457
6969
  type indexV1_UserProfile = UserProfile;
6458
6970
  type indexV1_UserRelation = UserRelation;
6459
6971
  type indexV1_UsersProfilesPaginatedResponse = UsersProfilesPaginatedResponse;
6972
+ type indexV1_Visibility = Visibility;
6460
6973
  declare const indexV1_addUserSportProfileLevel: typeof addUserSportProfileLevel;
6461
6974
  declare const indexV1_client: typeof client;
6462
6975
  declare const indexV1_createFacilityOfferOrder: typeof createFacilityOfferOrder;
@@ -6478,7 +6991,7 @@ declare const indexV1_updateNotificationsPreferences: typeof updateNotifications
6478
6991
  declare const indexV1_updateUserProfile: typeof updateUserProfile;
6479
6992
  declare const indexV1_updateUserSportProfileLevel: typeof updateUserSportProfileLevel;
6480
6993
  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 };
6994
+ 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_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_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_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
6995
  }
6483
6996
 
6484
6997
  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 };