@matchi/api 0.20260512.2 → 0.20260518.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.
@@ -3549,8 +3549,15 @@ type ClientOptions = {
3549
3549
  baseUrl: 'https://api.matchi.com/v1' | (string & {});
3550
3550
  };
3551
3551
  type Author = {
3552
- type: 'ADMIN' | 'MEMBER';
3553
- user: Member;
3552
+ /**
3553
+ * ADMIN — the post or comment was authored by a facility admin.
3554
+ * MEMBER — the post or comment was authored by a community member.
3555
+ * UNKNOWN — the community member who authored the post or comment
3556
+ * has been deleted; only the type is set, user is omitted.
3557
+ *
3558
+ */
3559
+ type: 'ADMIN' | 'MEMBER' | 'UNKNOWN';
3560
+ user?: Member;
3554
3561
  };
3555
3562
  type Channels = {
3556
3563
  inapp: boolean;
@@ -3784,6 +3791,11 @@ type MatchList = {
3784
3791
  meta: OffsetPaginatedResultSet;
3785
3792
  };
3786
3793
  type MatchOccasion = {
3794
+ /**
3795
+ * Explicit per-match toggle. When false, the match proceeds regardless of participant count at start time and automatic_cancellation_date_time is null.
3796
+ *
3797
+ */
3798
+ auto_cancel_enabled: boolean;
3787
3799
  automatic_cancellation_date_time?: string | null;
3788
3800
  courts: Array<MatchCourt>;
3789
3801
  end_date_time: string;
@@ -3802,13 +3814,18 @@ type MatchOccasion = {
3802
3814
  type?: string | null;
3803
3815
  };
3804
3816
  /**
3805
- * Enriched occasion for the detail view. Extends MatchOccasion with price_list, refund_policy, can_be_cancelled_by_user, participant_details, status, user_status, external_services, event.
3817
+ * Enriched occasion for the detail view. Extends MatchOccasion with price_list, refund_policy, can_be_cancelled_by_user, participant_details, status, user_status, external_services, event, order_id.
3806
3818
  *
3807
3819
  */
3808
3820
  type MatchOccasionDetail = MatchOccasion & {
3809
3821
  can_be_cancelled_by_user: boolean;
3810
3822
  event: MatchEvent;
3811
3823
  external_services: Array<ExternalService>;
3824
+ /**
3825
+ * Order id of the requesting user's participation in this occasion, when the participation exists and is linked to an order. Null otherwise. Use with the user payments endpoint to load the receipt.
3826
+ *
3827
+ */
3828
+ order_id?: number | null;
3812
3829
  participant_details: Array<ParticipantDetail>;
3813
3830
  price_list: Array<MatchPriceListEntry>;
3814
3831
  refund_policy: RefundPolicy;
@@ -4402,60 +4419,52 @@ type PkgOpenapiSharedOffsetLimitParam = number;
4402
4419
  * Number of items to skip before returning the results.
4403
4420
  */
4404
4421
  type PkgOpenapiSharedOffsetParam = number;
4405
- type ListFacilityOffersData = {
4422
+ type ListCommunitiesData = {
4406
4423
  body?: never;
4407
- path: {
4408
- facility_id: string;
4409
- };
4424
+ path?: never;
4410
4425
  query?: {
4411
4426
  /**
4412
- * Cursor for pagination. An opaque value to request the next page. Should not be set for the first call to the resource. Subsequent should use the value from `meta.next_cursor` in the response, until `meta.more_results` is false.
4413
- *
4427
+ * Filter by membership status. Repeat the parameter to filter by multiple statuses (e.g. `?status=ACTIVE&status=INVITED`).
4414
4428
  */
4415
- cursor?: string;
4429
+ status?: Array<MembershipStatus>;
4416
4430
  /**
4417
- * Maximum number of items to return per page.
4431
+ * Number of items to skip before returning the results.
4432
+ */
4433
+ offset?: number;
4434
+ /**
4435
+ * Maximum number of items to return.
4418
4436
  */
4419
4437
  limit?: number;
4420
4438
  };
4421
- url: '/facilities/{facility_id}/offers';
4439
+ url: '/communities';
4422
4440
  };
4423
- type ListFacilityOffersErrors = {
4441
+ type ListCommunitiesErrors = {
4424
4442
  /**
4425
4443
  * Access token is not set or invalid.
4426
4444
  */
4427
4445
  401: PkgOpenapiSharedProblemDetails;
4428
- /**
4429
- * The requestor is not authorized to perform this operation on the resource.
4430
- */
4431
- 403: PkgOpenapiSharedProblemDetails;
4432
4446
  /**
4433
4447
  * The server encountered an unexpected error
4434
4448
  */
4435
4449
  500: PkgOpenapiSharedProblemDetails;
4436
- /**
4437
- * The requested operation is not implemented.
4438
- */
4439
- 501: PkgOpenapiSharedProblemDetails;
4440
4450
  };
4441
- type ListFacilityOffersError = ListFacilityOffersErrors[keyof ListFacilityOffersErrors];
4442
- type ListFacilityOffersResponses = {
4451
+ type ListCommunitiesError = ListCommunitiesErrors[keyof ListCommunitiesErrors];
4452
+ type ListCommunitiesResponses = {
4443
4453
  /**
4444
- * OK
4454
+ * List of communities
4445
4455
  */
4446
- 200: FacilityOfferList;
4456
+ 200: CommunityListResponse;
4447
4457
  };
4448
- type ListFacilityOffersResponse = ListFacilityOffersResponses[keyof ListFacilityOffersResponses];
4449
- type CreateFacilityOfferOrderData = {
4458
+ type ListCommunitiesResponse = ListCommunitiesResponses[keyof ListCommunitiesResponses];
4459
+ type GetCommunityData = {
4450
4460
  body?: never;
4451
4461
  path: {
4452
- facility_id: string;
4453
- offer_id: string;
4462
+ communityId: string;
4454
4463
  };
4455
4464
  query?: never;
4456
- url: '/facilities/{facility_id}/offers/{offer_id}';
4465
+ url: '/communities/{communityId}';
4457
4466
  };
4458
- type CreateFacilityOfferOrderErrors = {
4467
+ type GetCommunityErrors = {
4459
4468
  /**
4460
4469
  * Access token is not set or invalid.
4461
4470
  */
@@ -4472,43 +4481,25 @@ type CreateFacilityOfferOrderErrors = {
4472
4481
  * The server encountered an unexpected error
4473
4482
  */
4474
4483
  500: PkgOpenapiSharedProblemDetails;
4475
- /**
4476
- * The requested operation is not implemented.
4477
- */
4478
- 501: PkgOpenapiSharedProblemDetails;
4479
4484
  };
4480
- type CreateFacilityOfferOrderError = CreateFacilityOfferOrderErrors[keyof CreateFacilityOfferOrderErrors];
4481
- type CreateFacilityOfferOrderResponses = {
4485
+ type GetCommunityError = GetCommunityErrors[keyof GetCommunityErrors];
4486
+ type GetCommunityResponses = {
4482
4487
  /**
4483
- * OK
4488
+ * Community details
4484
4489
  */
4485
- 200: FacilityOfferOrder;
4490
+ 200: CommunityItem;
4486
4491
  };
4487
- type CreateFacilityOfferOrderResponse = CreateFacilityOfferOrderResponses[keyof CreateFacilityOfferOrderResponses];
4488
- type ListMatchesData = {
4492
+ type GetCommunityResponse = GetCommunityResponses[keyof GetCommunityResponses];
4493
+ type ListMembersData = {
4489
4494
  body?: never;
4490
- path?: never;
4491
- query: {
4492
- /**
4493
- * Start of date range (ISO 8601 UTC)
4494
- */
4495
- startDateTime: string;
4496
- /**
4497
- * End of date range (ISO 8601 UTC)
4498
- */
4499
- endDateTime: string;
4500
- /**
4501
- * Filter by facility IDs
4502
- */
4503
- facilityIds?: Array<number>;
4504
- /**
4505
- * Filter by sport IDs
4506
- */
4507
- sportIds?: Array<number>;
4495
+ path: {
4496
+ communityId: string;
4497
+ };
4498
+ query?: {
4508
4499
  /**
4509
- * Minimum number of available spots
4500
+ * Filter members by their relation to the requesting user. Repeat the parameter to filter by multiple relations (e.g. `?relation=FRIENDS&relation=INCOMING`).
4510
4501
  */
4511
- availableSpots?: number;
4502
+ relation?: Array<MemberRelation>;
4512
4503
  /**
4513
4504
  * Number of items to skip before returning the results.
4514
4505
  */
@@ -4518,43 +4509,17 @@ type ListMatchesData = {
4518
4509
  */
4519
4510
  limit?: number;
4520
4511
  };
4521
- url: '/matches';
4512
+ url: '/communities/{communityId}/members';
4522
4513
  };
4523
- type ListMatchesErrors = {
4524
- /**
4525
- * The request was malformed or could not be processed.
4526
- */
4527
- 400: PkgOpenapiSharedProblemDetails;
4514
+ type ListMembersErrors = {
4528
4515
  /**
4529
4516
  * Access token is not set or invalid.
4530
4517
  */
4531
4518
  401: PkgOpenapiSharedProblemDetails;
4532
4519
  /**
4533
- * The server encountered an unexpected error
4534
- */
4535
- 500: PkgOpenapiSharedProblemDetails;
4536
- };
4537
- type ListMatchesError = ListMatchesErrors[keyof ListMatchesErrors];
4538
- type ListMatchesResponses = {
4539
- /**
4540
- * OK
4541
- */
4542
- 200: MatchList;
4543
- };
4544
- type ListMatchesResponse = ListMatchesResponses[keyof ListMatchesResponses];
4545
- type GetMatchData = {
4546
- body?: never;
4547
- path: {
4548
- matchId: string;
4549
- };
4550
- query?: never;
4551
- url: '/matches/{matchId}';
4552
- };
4553
- type GetMatchErrors = {
4554
- /**
4555
- * Access token is not set or invalid.
4520
+ * The requestor is not authorized to perform this operation on the resource.
4556
4521
  */
4557
- 401: PkgOpenapiSharedProblemDetails;
4522
+ 403: PkgOpenapiSharedProblemDetails;
4558
4523
  /**
4559
4524
  * The requested resource was not found.
4560
4525
  */
@@ -4564,23 +4529,24 @@ type GetMatchErrors = {
4564
4529
  */
4565
4530
  500: PkgOpenapiSharedProblemDetails;
4566
4531
  };
4567
- type GetMatchError = GetMatchErrors[keyof GetMatchErrors];
4568
- type GetMatchResponses = {
4532
+ type ListMembersError = ListMembersErrors[keyof ListMembersErrors];
4533
+ type ListMembersResponses = {
4569
4534
  /**
4570
- * OK
4535
+ * List of members
4571
4536
  */
4572
- 200: MatchDetail;
4537
+ 200: MemberListResponse;
4573
4538
  };
4574
- type GetMatchResponse = GetMatchResponses[keyof GetMatchResponses];
4575
- type CreateMatchParticipationData = {
4576
- body: CreateMatchParticipationRequest;
4539
+ type ListMembersResponse = ListMembersResponses[keyof ListMembersResponses];
4540
+ type LeaveCommunityData = {
4541
+ body?: never;
4577
4542
  path: {
4578
- matchId: string;
4543
+ communityId: string;
4544
+ userId: string;
4579
4545
  };
4580
4546
  query?: never;
4581
- url: '/matches/{matchId}/participations';
4547
+ url: '/communities/{communityId}/members/{userId}';
4582
4548
  };
4583
- type CreateMatchParticipationErrors = {
4549
+ type LeaveCommunityErrors = {
4584
4550
  /**
4585
4551
  * The request was malformed or could not be processed.
4586
4552
  */
@@ -4597,33 +4563,29 @@ type CreateMatchParticipationErrors = {
4597
4563
  * The requested resource was not found.
4598
4564
  */
4599
4565
  404: PkgOpenapiSharedProblemDetails;
4600
- /**
4601
- * The resource being created is found to already exist on the server.
4602
- */
4603
- 409: PkgOpenapiSharedProblemDetails;
4604
4566
  /**
4605
4567
  * The server encountered an unexpected error
4606
4568
  */
4607
4569
  500: PkgOpenapiSharedProblemDetails;
4608
4570
  };
4609
- type CreateMatchParticipationError = CreateMatchParticipationErrors[keyof CreateMatchParticipationErrors];
4610
- type CreateMatchParticipationResponses = {
4571
+ type LeaveCommunityError = LeaveCommunityErrors[keyof LeaveCommunityErrors];
4572
+ type LeaveCommunityResponses = {
4611
4573
  /**
4612
- * Participation created. Returns payment details for the order.
4574
+ * Left community
4613
4575
  */
4614
- 200: PaymentDetails;
4576
+ 200: CommunityItem;
4615
4577
  };
4616
- type CreateMatchParticipationResponse = CreateMatchParticipationResponses[keyof CreateMatchParticipationResponses];
4617
- type DeleteMatchParticipationData = {
4578
+ type LeaveCommunityResponse = LeaveCommunityResponses[keyof LeaveCommunityResponses];
4579
+ type AcceptInvitationData = {
4618
4580
  body?: never;
4619
4581
  path: {
4620
- matchId: string;
4582
+ communityId: string;
4621
4583
  userId: string;
4622
4584
  };
4623
4585
  query?: never;
4624
- url: '/matches/{matchId}/participations/{userId}';
4586
+ url: '/communities/{communityId}/members/{userId}';
4625
4587
  };
4626
- type DeleteMatchParticipationErrors = {
4588
+ type AcceptInvitationErrors = {
4627
4589
  /**
4628
4590
  * The request was malformed or could not be processed.
4629
4591
  */
@@ -4645,26 +4607,36 @@ type DeleteMatchParticipationErrors = {
4645
4607
  */
4646
4608
  500: PkgOpenapiSharedProblemDetails;
4647
4609
  };
4648
- type DeleteMatchParticipationError = DeleteMatchParticipationErrors[keyof DeleteMatchParticipationErrors];
4649
- type DeleteMatchParticipationResponses = {
4610
+ type AcceptInvitationError = AcceptInvitationErrors[keyof AcceptInvitationErrors];
4611
+ type AcceptInvitationResponses = {
4650
4612
  /**
4651
- * Participation removed. Refund (if any) issued by webapp.
4613
+ * Invitation accepted
4652
4614
  */
4653
- 204: void;
4615
+ 200: CommunityItem;
4654
4616
  };
4655
- type DeleteMatchParticipationResponse = DeleteMatchParticipationResponses[keyof DeleteMatchParticipationResponses];
4656
- type GetMatchUserPriceData = {
4617
+ type AcceptInvitationResponse = AcceptInvitationResponses[keyof AcceptInvitationResponses];
4618
+ type ListPostsData = {
4657
4619
  body?: never;
4658
4620
  path: {
4659
- matchId: string;
4660
- userId: string;
4621
+ communityId: string;
4661
4622
  };
4662
4623
  query?: {
4663
- promoCode?: string;
4624
+ /**
4625
+ * Filter posts by link type.
4626
+ */
4627
+ link_type?: LinkType;
4628
+ /**
4629
+ * Number of items to skip before returning the results.
4630
+ */
4631
+ offset?: number;
4632
+ /**
4633
+ * Maximum number of items to return.
4634
+ */
4635
+ limit?: number;
4664
4636
  };
4665
- url: '/matches/{matchId}/prices/{userId}';
4637
+ url: '/communities/{communityId}/posts';
4666
4638
  };
4667
- type GetMatchUserPriceErrors = {
4639
+ type ListPostsErrors = {
4668
4640
  /**
4669
4641
  * Access token is not set or invalid.
4670
4642
  */
@@ -4682,36 +4654,23 @@ type GetMatchUserPriceErrors = {
4682
4654
  */
4683
4655
  500: PkgOpenapiSharedProblemDetails;
4684
4656
  };
4685
- type GetMatchUserPriceError = GetMatchUserPriceErrors[keyof GetMatchUserPriceErrors];
4686
- type GetMatchUserPriceResponses = {
4657
+ type ListPostsError = ListPostsErrors[keyof ListPostsErrors];
4658
+ type ListPostsResponses = {
4687
4659
  /**
4688
- * OK
4660
+ * List of posts
4689
4661
  */
4690
- 200: MatchUserPrice;
4662
+ 200: PostListResponse;
4691
4663
  };
4692
- type GetMatchUserPriceResponse = GetMatchUserPriceResponses[keyof GetMatchUserPriceResponses];
4693
- type GetNotificationsData = {
4694
- body?: never;
4695
- path?: never;
4696
- query?: {
4697
- filters?: NotificationsFilter;
4698
- /**
4699
- * Get a summary of read and unread notifications (returns an empty list if true)
4700
- */
4701
- only_summary?: boolean;
4702
- /**
4703
- * Cursor for pagination. An opaque value to request the next page. Should not be set for the first call to the resource. Subsequent should use the value from `meta.next_cursor` in the response, until `meta.more_results` is false.
4704
- *
4705
- */
4706
- cursor?: string;
4707
- /**
4708
- * Maximum number of items to return per page.
4709
- */
4710
- limit?: number;
4664
+ type ListPostsResponse = ListPostsResponses[keyof ListPostsResponses];
4665
+ type CreatePostData = {
4666
+ body: CreatePostRequest;
4667
+ path: {
4668
+ communityId: string;
4711
4669
  };
4712
- url: '/notifications';
4670
+ query?: never;
4671
+ url: '/communities/{communityId}/posts';
4713
4672
  };
4714
- type GetNotificationsErrors = {
4673
+ type CreatePostErrors = {
4715
4674
  /**
4716
4675
  * The request was malformed or could not be processed.
4717
4676
  */
@@ -4721,85 +4680,688 @@ type GetNotificationsErrors = {
4721
4680
  */
4722
4681
  401: PkgOpenapiSharedProblemDetails;
4723
4682
  /**
4724
- * The server encountered an unexpected error
4683
+ * The requestor is not authorized to perform this operation on the resource.
4725
4684
  */
4726
- 500: PkgOpenapiSharedProblemDetails;
4685
+ 403: PkgOpenapiSharedProblemDetails;
4727
4686
  /**
4728
- * The requested operation is not implemented.
4687
+ * The requested resource was not found.
4729
4688
  */
4730
- 501: PkgOpenapiSharedProblemDetails;
4689
+ 404: PkgOpenapiSharedProblemDetails;
4690
+ /**
4691
+ * The server encountered an unexpected error
4692
+ */
4693
+ 500: PkgOpenapiSharedProblemDetails;
4731
4694
  };
4732
- type GetNotificationsError = GetNotificationsErrors[keyof GetNotificationsErrors];
4733
- type GetNotificationsResponses = {
4695
+ type CreatePostError = CreatePostErrors[keyof CreatePostErrors];
4696
+ type CreatePostResponses = {
4734
4697
  /**
4735
- * OK
4698
+ * Post created
4736
4699
  */
4737
- 200: NotificationsPaginatedResponse;
4700
+ 201: Post;
4738
4701
  };
4739
- type GetNotificationsResponse = GetNotificationsResponses[keyof GetNotificationsResponses];
4740
- type UpdateAllNotificationsData = {
4741
- body: NotificationRequestBody;
4742
- path?: never;
4743
- query?: {
4744
- filters?: NotificationsFilter;
4702
+ type CreatePostResponse = CreatePostResponses[keyof CreatePostResponses];
4703
+ type DeletePostData = {
4704
+ body?: never;
4705
+ path: {
4706
+ communityId: string;
4707
+ postId: string;
4745
4708
  };
4746
- url: '/notifications';
4709
+ query?: never;
4710
+ url: '/communities/{communityId}/posts/{postId}';
4747
4711
  };
4748
- type UpdateAllNotificationsErrors = {
4749
- /**
4750
- * The request was malformed or could not be processed.
4751
- */
4752
- 400: PkgOpenapiSharedProblemDetails;
4712
+ type DeletePostErrors = {
4753
4713
  /**
4754
4714
  * Access token is not set or invalid.
4755
4715
  */
4756
4716
  401: PkgOpenapiSharedProblemDetails;
4757
4717
  /**
4758
- * The server encountered an unexpected error
4718
+ * The requestor is not authorized to perform this operation on the resource.
4759
4719
  */
4760
- 500: PkgOpenapiSharedProblemDetails;
4720
+ 403: PkgOpenapiSharedProblemDetails;
4761
4721
  /**
4762
- * The requested operation is not implemented.
4722
+ * The requested resource was not found.
4763
4723
  */
4764
- 501: PkgOpenapiSharedProblemDetails;
4724
+ 404: PkgOpenapiSharedProblemDetails;
4725
+ /**
4726
+ * The server encountered an unexpected error
4727
+ */
4728
+ 500: PkgOpenapiSharedProblemDetails;
4765
4729
  };
4766
- type UpdateAllNotificationsError = UpdateAllNotificationsErrors[keyof UpdateAllNotificationsErrors];
4767
- type UpdateAllNotificationsResponses = {
4730
+ type DeletePostError = DeletePostErrors[keyof DeletePostErrors];
4731
+ type DeletePostResponses = {
4768
4732
  /**
4769
- * OK
4733
+ * Post deleted
4770
4734
  */
4771
- 200: NotificationsPaginatedResponse;
4735
+ 204: void;
4772
4736
  };
4773
- type UpdateAllNotificationsResponse = UpdateAllNotificationsResponses[keyof UpdateAllNotificationsResponses];
4774
- type GetNotificationsPreferencesData = {
4737
+ type DeletePostResponse = DeletePostResponses[keyof DeletePostResponses];
4738
+ type GetPostData = {
4775
4739
  body?: never;
4776
- path?: never;
4777
- query?: {
4778
- topic?: Topic;
4779
- source?: Source;
4780
- source_ids?: Array<string>;
4740
+ path: {
4741
+ communityId: string;
4742
+ postId: string;
4781
4743
  };
4782
- url: '/notifications/preferences';
4744
+ query?: never;
4745
+ url: '/communities/{communityId}/posts/{postId}';
4783
4746
  };
4784
- type GetNotificationsPreferencesErrors = {
4785
- /**
4786
- * The request was malformed or could not be processed.
4787
- */
4788
- 400: PkgOpenapiSharedProblemDetails;
4747
+ type GetPostErrors = {
4789
4748
  /**
4790
4749
  * Access token is not set or invalid.
4791
4750
  */
4792
4751
  401: PkgOpenapiSharedProblemDetails;
4752
+ /**
4753
+ * The requestor is not authorized to perform this operation on the resource.
4754
+ */
4755
+ 403: PkgOpenapiSharedProblemDetails;
4756
+ /**
4757
+ * The requested resource was not found.
4758
+ */
4759
+ 404: PkgOpenapiSharedProblemDetails;
4793
4760
  /**
4794
4761
  * The server encountered an unexpected error
4795
4762
  */
4796
4763
  500: PkgOpenapiSharedProblemDetails;
4764
+ };
4765
+ type GetPostError = GetPostErrors[keyof GetPostErrors];
4766
+ type GetPostResponses = {
4797
4767
  /**
4798
- * The requested operation is not implemented.
4768
+ * Post details
4799
4769
  */
4800
- 501: PkgOpenapiSharedProblemDetails;
4770
+ 200: Post;
4801
4771
  };
4802
- type GetNotificationsPreferencesError = GetNotificationsPreferencesErrors[keyof GetNotificationsPreferencesErrors];
4772
+ type GetPostResponse = GetPostResponses[keyof GetPostResponses];
4773
+ type MarkPostReadData = {
4774
+ body: PatchPostRequest;
4775
+ path: {
4776
+ communityId: string;
4777
+ postId: string;
4778
+ };
4779
+ query?: never;
4780
+ url: '/communities/{communityId}/posts/{postId}';
4781
+ };
4782
+ type MarkPostReadErrors = {
4783
+ /**
4784
+ * Access token is not set or invalid.
4785
+ */
4786
+ 401: PkgOpenapiSharedProblemDetails;
4787
+ /**
4788
+ * The requestor is not authorized to perform this operation on the resource.
4789
+ */
4790
+ 403: PkgOpenapiSharedProblemDetails;
4791
+ /**
4792
+ * The requested resource was not found.
4793
+ */
4794
+ 404: PkgOpenapiSharedProblemDetails;
4795
+ /**
4796
+ * The server encountered an unexpected error
4797
+ */
4798
+ 500: PkgOpenapiSharedProblemDetails;
4799
+ };
4800
+ type MarkPostReadError = MarkPostReadErrors[keyof MarkPostReadErrors];
4801
+ type MarkPostReadResponses = {
4802
+ /**
4803
+ * Post details
4804
+ */
4805
+ 200: Post;
4806
+ };
4807
+ type MarkPostReadResponse = MarkPostReadResponses[keyof MarkPostReadResponses];
4808
+ type ListCommentsData = {
4809
+ body?: never;
4810
+ path: {
4811
+ communityId: string;
4812
+ postId: string;
4813
+ };
4814
+ query?: {
4815
+ /**
4816
+ * Only return comments created after this timestamp (ISO 8601).
4817
+ */
4818
+ from?: string;
4819
+ /**
4820
+ * Number of items to skip before returning the results.
4821
+ */
4822
+ offset?: number;
4823
+ /**
4824
+ * Maximum number of items to return.
4825
+ */
4826
+ limit?: number;
4827
+ };
4828
+ url: '/communities/{communityId}/posts/{postId}/comments';
4829
+ };
4830
+ type ListCommentsErrors = {
4831
+ /**
4832
+ * Access token is not set or invalid.
4833
+ */
4834
+ 401: PkgOpenapiSharedProblemDetails;
4835
+ /**
4836
+ * The requestor is not authorized to perform this operation on the resource.
4837
+ */
4838
+ 403: PkgOpenapiSharedProblemDetails;
4839
+ /**
4840
+ * The requested resource was not found.
4841
+ */
4842
+ 404: PkgOpenapiSharedProblemDetails;
4843
+ /**
4844
+ * The server encountered an unexpected error
4845
+ */
4846
+ 500: PkgOpenapiSharedProblemDetails;
4847
+ };
4848
+ type ListCommentsError = ListCommentsErrors[keyof ListCommentsErrors];
4849
+ type ListCommentsResponses = {
4850
+ /**
4851
+ * List of comments
4852
+ */
4853
+ 200: CommentListResponse;
4854
+ };
4855
+ type ListCommentsResponse = ListCommentsResponses[keyof ListCommentsResponses];
4856
+ type CreateCommentData = {
4857
+ body: CreateCommentRequest;
4858
+ path: {
4859
+ communityId: string;
4860
+ postId: string;
4861
+ };
4862
+ query?: never;
4863
+ url: '/communities/{communityId}/posts/{postId}/comments';
4864
+ };
4865
+ type CreateCommentErrors = {
4866
+ /**
4867
+ * The request was malformed or could not be processed.
4868
+ */
4869
+ 400: PkgOpenapiSharedProblemDetails;
4870
+ /**
4871
+ * Access token is not set or invalid.
4872
+ */
4873
+ 401: PkgOpenapiSharedProblemDetails;
4874
+ /**
4875
+ * The requestor is not authorized to perform this operation on the resource.
4876
+ */
4877
+ 403: PkgOpenapiSharedProblemDetails;
4878
+ /**
4879
+ * The requested resource was not found.
4880
+ */
4881
+ 404: PkgOpenapiSharedProblemDetails;
4882
+ /**
4883
+ * The server encountered an unexpected error
4884
+ */
4885
+ 500: PkgOpenapiSharedProblemDetails;
4886
+ };
4887
+ type CreateCommentError = CreateCommentErrors[keyof CreateCommentErrors];
4888
+ type CreateCommentResponses = {
4889
+ /**
4890
+ * Comment created
4891
+ */
4892
+ 201: Comment;
4893
+ };
4894
+ type CreateCommentResponse = CreateCommentResponses[keyof CreateCommentResponses];
4895
+ type DeleteCommentData = {
4896
+ body?: never;
4897
+ path: {
4898
+ communityId: string;
4899
+ postId: string;
4900
+ commentId: string;
4901
+ };
4902
+ query?: never;
4903
+ url: '/communities/{communityId}/posts/{postId}/comments/{commentId}';
4904
+ };
4905
+ type DeleteCommentErrors = {
4906
+ /**
4907
+ * Access token is not set or invalid.
4908
+ */
4909
+ 401: PkgOpenapiSharedProblemDetails;
4910
+ /**
4911
+ * The requestor is not authorized to perform this operation on the resource.
4912
+ */
4913
+ 403: PkgOpenapiSharedProblemDetails;
4914
+ /**
4915
+ * The requested resource was not found.
4916
+ */
4917
+ 404: PkgOpenapiSharedProblemDetails;
4918
+ /**
4919
+ * The server encountered an unexpected error
4920
+ */
4921
+ 500: PkgOpenapiSharedProblemDetails;
4922
+ };
4923
+ type DeleteCommentError = DeleteCommentErrors[keyof DeleteCommentErrors];
4924
+ type DeleteCommentResponses = {
4925
+ /**
4926
+ * Comment deleted
4927
+ */
4928
+ 204: void;
4929
+ };
4930
+ type DeleteCommentResponse = DeleteCommentResponses[keyof DeleteCommentResponses];
4931
+ type MarkCommentReadData = {
4932
+ body: PatchCommentRequest;
4933
+ path: {
4934
+ communityId: string;
4935
+ postId: string;
4936
+ commentId: string;
4937
+ };
4938
+ query?: never;
4939
+ url: '/communities/{communityId}/posts/{postId}/comments/{commentId}';
4940
+ };
4941
+ type MarkCommentReadErrors = {
4942
+ /**
4943
+ * Access token is not set or invalid.
4944
+ */
4945
+ 401: PkgOpenapiSharedProblemDetails;
4946
+ /**
4947
+ * The requestor is not authorized to perform this operation on the resource.
4948
+ */
4949
+ 403: PkgOpenapiSharedProblemDetails;
4950
+ /**
4951
+ * The requested resource was not found.
4952
+ */
4953
+ 404: PkgOpenapiSharedProblemDetails;
4954
+ /**
4955
+ * The server encountered an unexpected error
4956
+ */
4957
+ 500: PkgOpenapiSharedProblemDetails;
4958
+ };
4959
+ type MarkCommentReadError = MarkCommentReadErrors[keyof MarkCommentReadErrors];
4960
+ type MarkCommentReadResponses = {
4961
+ /**
4962
+ * Comment read
4963
+ */
4964
+ 200: Comment;
4965
+ };
4966
+ type MarkCommentReadResponse = MarkCommentReadResponses[keyof MarkCommentReadResponses];
4967
+ type ListFacilityOffersData = {
4968
+ body?: never;
4969
+ path: {
4970
+ facility_id: string;
4971
+ };
4972
+ query?: {
4973
+ /**
4974
+ * Cursor for pagination. An opaque value to request the next page. Should not be set for the first call to the resource. Subsequent should use the value from `meta.next_cursor` in the response, until `meta.more_results` is false.
4975
+ *
4976
+ */
4977
+ cursor?: string;
4978
+ /**
4979
+ * Maximum number of items to return per page.
4980
+ */
4981
+ limit?: number;
4982
+ };
4983
+ url: '/facilities/{facility_id}/offers';
4984
+ };
4985
+ type ListFacilityOffersErrors = {
4986
+ /**
4987
+ * Access token is not set or invalid.
4988
+ */
4989
+ 401: PkgOpenapiSharedProblemDetails;
4990
+ /**
4991
+ * The requestor is not authorized to perform this operation on the resource.
4992
+ */
4993
+ 403: PkgOpenapiSharedProblemDetails;
4994
+ /**
4995
+ * The server encountered an unexpected error
4996
+ */
4997
+ 500: PkgOpenapiSharedProblemDetails;
4998
+ /**
4999
+ * The requested operation is not implemented.
5000
+ */
5001
+ 501: PkgOpenapiSharedProblemDetails;
5002
+ };
5003
+ type ListFacilityOffersError = ListFacilityOffersErrors[keyof ListFacilityOffersErrors];
5004
+ type ListFacilityOffersResponses = {
5005
+ /**
5006
+ * OK
5007
+ */
5008
+ 200: FacilityOfferList;
5009
+ };
5010
+ type ListFacilityOffersResponse = ListFacilityOffersResponses[keyof ListFacilityOffersResponses];
5011
+ type CreateFacilityOfferOrderData = {
5012
+ body?: never;
5013
+ path: {
5014
+ facility_id: string;
5015
+ offer_id: string;
5016
+ };
5017
+ query?: never;
5018
+ url: '/facilities/{facility_id}/offers/{offer_id}';
5019
+ };
5020
+ type CreateFacilityOfferOrderErrors = {
5021
+ /**
5022
+ * Access token is not set or invalid.
5023
+ */
5024
+ 401: PkgOpenapiSharedProblemDetails;
5025
+ /**
5026
+ * The requestor is not authorized to perform this operation on the resource.
5027
+ */
5028
+ 403: PkgOpenapiSharedProblemDetails;
5029
+ /**
5030
+ * The requested resource was not found.
5031
+ */
5032
+ 404: PkgOpenapiSharedProblemDetails;
5033
+ /**
5034
+ * The server encountered an unexpected error
5035
+ */
5036
+ 500: PkgOpenapiSharedProblemDetails;
5037
+ /**
5038
+ * The requested operation is not implemented.
5039
+ */
5040
+ 501: PkgOpenapiSharedProblemDetails;
5041
+ };
5042
+ type CreateFacilityOfferOrderError = CreateFacilityOfferOrderErrors[keyof CreateFacilityOfferOrderErrors];
5043
+ type CreateFacilityOfferOrderResponses = {
5044
+ /**
5045
+ * OK
5046
+ */
5047
+ 200: FacilityOfferOrder;
5048
+ };
5049
+ type CreateFacilityOfferOrderResponse = CreateFacilityOfferOrderResponses[keyof CreateFacilityOfferOrderResponses];
5050
+ type ListMatchesData = {
5051
+ body?: never;
5052
+ path?: never;
5053
+ query: {
5054
+ /**
5055
+ * Start of date range (ISO 8601 UTC)
5056
+ */
5057
+ startDateTime: string;
5058
+ /**
5059
+ * End of date range (ISO 8601 UTC)
5060
+ */
5061
+ endDateTime: string;
5062
+ /**
5063
+ * Filter by facility IDs
5064
+ */
5065
+ facilityIds?: Array<number>;
5066
+ /**
5067
+ * Filter by sport IDs
5068
+ */
5069
+ sportIds?: Array<number>;
5070
+ /**
5071
+ * Minimum number of available spots
5072
+ */
5073
+ availableSpots?: number;
5074
+ /**
5075
+ * Number of items to skip before returning the results.
5076
+ */
5077
+ offset?: number;
5078
+ /**
5079
+ * Maximum number of items to return.
5080
+ */
5081
+ limit?: number;
5082
+ };
5083
+ url: '/matches';
5084
+ };
5085
+ type ListMatchesErrors = {
5086
+ /**
5087
+ * The request was malformed or could not be processed.
5088
+ */
5089
+ 400: PkgOpenapiSharedProblemDetails;
5090
+ /**
5091
+ * Access token is not set or invalid.
5092
+ */
5093
+ 401: PkgOpenapiSharedProblemDetails;
5094
+ /**
5095
+ * The server encountered an unexpected error
5096
+ */
5097
+ 500: PkgOpenapiSharedProblemDetails;
5098
+ };
5099
+ type ListMatchesError = ListMatchesErrors[keyof ListMatchesErrors];
5100
+ type ListMatchesResponses = {
5101
+ /**
5102
+ * OK
5103
+ */
5104
+ 200: MatchList;
5105
+ };
5106
+ type ListMatchesResponse = ListMatchesResponses[keyof ListMatchesResponses];
5107
+ type GetMatchData = {
5108
+ body?: never;
5109
+ path: {
5110
+ matchId: string;
5111
+ };
5112
+ query?: never;
5113
+ url: '/matches/{matchId}';
5114
+ };
5115
+ type GetMatchErrors = {
5116
+ /**
5117
+ * Access token is not set or invalid.
5118
+ */
5119
+ 401: PkgOpenapiSharedProblemDetails;
5120
+ /**
5121
+ * The requested resource was not found.
5122
+ */
5123
+ 404: PkgOpenapiSharedProblemDetails;
5124
+ /**
5125
+ * The server encountered an unexpected error
5126
+ */
5127
+ 500: PkgOpenapiSharedProblemDetails;
5128
+ };
5129
+ type GetMatchError = GetMatchErrors[keyof GetMatchErrors];
5130
+ type GetMatchResponses = {
5131
+ /**
5132
+ * OK
5133
+ */
5134
+ 200: MatchDetail;
5135
+ };
5136
+ type GetMatchResponse = GetMatchResponses[keyof GetMatchResponses];
5137
+ type CreateMatchParticipationData = {
5138
+ body: CreateMatchParticipationRequest;
5139
+ path: {
5140
+ matchId: string;
5141
+ };
5142
+ query?: never;
5143
+ url: '/matches/{matchId}/participations';
5144
+ };
5145
+ type CreateMatchParticipationErrors = {
5146
+ /**
5147
+ * The request was malformed or could not be processed.
5148
+ */
5149
+ 400: PkgOpenapiSharedProblemDetails;
5150
+ /**
5151
+ * Access token is not set or invalid.
5152
+ */
5153
+ 401: PkgOpenapiSharedProblemDetails;
5154
+ /**
5155
+ * The requestor is not authorized to perform this operation on the resource.
5156
+ */
5157
+ 403: PkgOpenapiSharedProblemDetails;
5158
+ /**
5159
+ * The requested resource was not found.
5160
+ */
5161
+ 404: PkgOpenapiSharedProblemDetails;
5162
+ /**
5163
+ * The resource being created is found to already exist on the server.
5164
+ */
5165
+ 409: PkgOpenapiSharedProblemDetails;
5166
+ /**
5167
+ * The server encountered an unexpected error
5168
+ */
5169
+ 500: PkgOpenapiSharedProblemDetails;
5170
+ };
5171
+ type CreateMatchParticipationError = CreateMatchParticipationErrors[keyof CreateMatchParticipationErrors];
5172
+ type CreateMatchParticipationResponses = {
5173
+ /**
5174
+ * Participation created. Returns payment details for the order.
5175
+ */
5176
+ 200: PaymentDetails;
5177
+ };
5178
+ type CreateMatchParticipationResponse = CreateMatchParticipationResponses[keyof CreateMatchParticipationResponses];
5179
+ type DeleteMatchParticipationData = {
5180
+ body?: never;
5181
+ path: {
5182
+ matchId: string;
5183
+ userId: string;
5184
+ };
5185
+ query?: never;
5186
+ url: '/matches/{matchId}/participations/{userId}';
5187
+ };
5188
+ type DeleteMatchParticipationErrors = {
5189
+ /**
5190
+ * The request was malformed or could not be processed.
5191
+ */
5192
+ 400: PkgOpenapiSharedProblemDetails;
5193
+ /**
5194
+ * Access token is not set or invalid.
5195
+ */
5196
+ 401: PkgOpenapiSharedProblemDetails;
5197
+ /**
5198
+ * The requestor is not authorized to perform this operation on the resource.
5199
+ */
5200
+ 403: PkgOpenapiSharedProblemDetails;
5201
+ /**
5202
+ * The requested resource was not found.
5203
+ */
5204
+ 404: PkgOpenapiSharedProblemDetails;
5205
+ /**
5206
+ * The server encountered an unexpected error
5207
+ */
5208
+ 500: PkgOpenapiSharedProblemDetails;
5209
+ };
5210
+ type DeleteMatchParticipationError = DeleteMatchParticipationErrors[keyof DeleteMatchParticipationErrors];
5211
+ type DeleteMatchParticipationResponses = {
5212
+ /**
5213
+ * Participation removed. Refund (if any) issued by webapp.
5214
+ */
5215
+ 204: void;
5216
+ };
5217
+ type DeleteMatchParticipationResponse = DeleteMatchParticipationResponses[keyof DeleteMatchParticipationResponses];
5218
+ type GetMatchUserPriceData = {
5219
+ body?: never;
5220
+ path: {
5221
+ matchId: string;
5222
+ userId: string;
5223
+ };
5224
+ query?: {
5225
+ promoCode?: string;
5226
+ };
5227
+ url: '/matches/{matchId}/prices/{userId}';
5228
+ };
5229
+ type GetMatchUserPriceErrors = {
5230
+ /**
5231
+ * Access token is not set or invalid.
5232
+ */
5233
+ 401: PkgOpenapiSharedProblemDetails;
5234
+ /**
5235
+ * The requestor is not authorized to perform this operation on the resource.
5236
+ */
5237
+ 403: PkgOpenapiSharedProblemDetails;
5238
+ /**
5239
+ * The requested resource was not found.
5240
+ */
5241
+ 404: PkgOpenapiSharedProblemDetails;
5242
+ /**
5243
+ * The server encountered an unexpected error
5244
+ */
5245
+ 500: PkgOpenapiSharedProblemDetails;
5246
+ };
5247
+ type GetMatchUserPriceError = GetMatchUserPriceErrors[keyof GetMatchUserPriceErrors];
5248
+ type GetMatchUserPriceResponses = {
5249
+ /**
5250
+ * OK
5251
+ */
5252
+ 200: MatchUserPrice;
5253
+ };
5254
+ type GetMatchUserPriceResponse = GetMatchUserPriceResponses[keyof GetMatchUserPriceResponses];
5255
+ type GetNotificationsData = {
5256
+ body?: never;
5257
+ path?: never;
5258
+ query?: {
5259
+ filters?: NotificationsFilter;
5260
+ /**
5261
+ * Get a summary of read and unread notifications (returns an empty list if true)
5262
+ */
5263
+ only_summary?: boolean;
5264
+ /**
5265
+ * Cursor for pagination. An opaque value to request the next page. Should not be set for the first call to the resource. Subsequent should use the value from `meta.next_cursor` in the response, until `meta.more_results` is false.
5266
+ *
5267
+ */
5268
+ cursor?: string;
5269
+ /**
5270
+ * Maximum number of items to return per page.
5271
+ */
5272
+ limit?: number;
5273
+ };
5274
+ url: '/notifications';
5275
+ };
5276
+ type GetNotificationsErrors = {
5277
+ /**
5278
+ * The request was malformed or could not be processed.
5279
+ */
5280
+ 400: PkgOpenapiSharedProblemDetails;
5281
+ /**
5282
+ * Access token is not set or invalid.
5283
+ */
5284
+ 401: PkgOpenapiSharedProblemDetails;
5285
+ /**
5286
+ * The server encountered an unexpected error
5287
+ */
5288
+ 500: PkgOpenapiSharedProblemDetails;
5289
+ /**
5290
+ * The requested operation is not implemented.
5291
+ */
5292
+ 501: PkgOpenapiSharedProblemDetails;
5293
+ };
5294
+ type GetNotificationsError = GetNotificationsErrors[keyof GetNotificationsErrors];
5295
+ type GetNotificationsResponses = {
5296
+ /**
5297
+ * OK
5298
+ */
5299
+ 200: NotificationsPaginatedResponse;
5300
+ };
5301
+ type GetNotificationsResponse = GetNotificationsResponses[keyof GetNotificationsResponses];
5302
+ type UpdateAllNotificationsData = {
5303
+ body: NotificationRequestBody;
5304
+ path?: never;
5305
+ query?: {
5306
+ filters?: NotificationsFilter;
5307
+ };
5308
+ url: '/notifications';
5309
+ };
5310
+ type UpdateAllNotificationsErrors = {
5311
+ /**
5312
+ * The request was malformed or could not be processed.
5313
+ */
5314
+ 400: PkgOpenapiSharedProblemDetails;
5315
+ /**
5316
+ * Access token is not set or invalid.
5317
+ */
5318
+ 401: PkgOpenapiSharedProblemDetails;
5319
+ /**
5320
+ * The server encountered an unexpected error
5321
+ */
5322
+ 500: PkgOpenapiSharedProblemDetails;
5323
+ /**
5324
+ * The requested operation is not implemented.
5325
+ */
5326
+ 501: PkgOpenapiSharedProblemDetails;
5327
+ };
5328
+ type UpdateAllNotificationsError = UpdateAllNotificationsErrors[keyof UpdateAllNotificationsErrors];
5329
+ type UpdateAllNotificationsResponses = {
5330
+ /**
5331
+ * OK
5332
+ */
5333
+ 200: NotificationsPaginatedResponse;
5334
+ };
5335
+ type UpdateAllNotificationsResponse = UpdateAllNotificationsResponses[keyof UpdateAllNotificationsResponses];
5336
+ type GetNotificationsPreferencesData = {
5337
+ body?: never;
5338
+ path?: never;
5339
+ query?: {
5340
+ topic?: Topic;
5341
+ source?: Source;
5342
+ source_ids?: Array<string>;
5343
+ };
5344
+ url: '/notifications/preferences';
5345
+ };
5346
+ type GetNotificationsPreferencesErrors = {
5347
+ /**
5348
+ * The request was malformed or could not be processed.
5349
+ */
5350
+ 400: PkgOpenapiSharedProblemDetails;
5351
+ /**
5352
+ * Access token is not set or invalid.
5353
+ */
5354
+ 401: PkgOpenapiSharedProblemDetails;
5355
+ /**
5356
+ * The server encountered an unexpected error
5357
+ */
5358
+ 500: PkgOpenapiSharedProblemDetails;
5359
+ /**
5360
+ * The requested operation is not implemented.
5361
+ */
5362
+ 501: PkgOpenapiSharedProblemDetails;
5363
+ };
5364
+ type GetNotificationsPreferencesError = GetNotificationsPreferencesErrors[keyof GetNotificationsPreferencesErrors];
4803
5365
  type GetNotificationsPreferencesResponses = {
4804
5366
  /**
4805
5367
  * OK
@@ -5537,14 +6099,15 @@ declare const client: Client;
5537
6099
  declare const AuthorSchema: {
5538
6100
  readonly properties: {
5539
6101
  readonly type: {
5540
- readonly enum: readonly ["ADMIN", "MEMBER"];
6102
+ readonly description: "ADMIN — the post or comment was authored by a facility admin.\nMEMBER — the post or comment was authored by a community member.\nUNKNOWN — the community member who authored the post or comment\nhas been deleted; only the type is set, user is omitted.\n";
6103
+ readonly enum: readonly ["ADMIN", "MEMBER", "UNKNOWN"];
5541
6104
  readonly type: "string";
5542
6105
  };
5543
6106
  readonly user: {
5544
6107
  readonly $ref: "#/components/schemas/Member";
5545
6108
  };
5546
6109
  };
5547
- readonly required: readonly ["type", "user"];
6110
+ readonly required: readonly ["type"];
5548
6111
  readonly type: "object";
5549
6112
  };
5550
6113
  declare const ChannelsSchema: {
@@ -6281,6 +6844,10 @@ declare const MatchListSchema: {
6281
6844
  };
6282
6845
  declare const MatchOccasionSchema: {
6283
6846
  readonly properties: {
6847
+ readonly auto_cancel_enabled: {
6848
+ readonly description: "Explicit per-match toggle. When false, the match proceeds regardless of participant count at start time and automatic_cancellation_date_time is null.\n";
6849
+ readonly type: "boolean";
6850
+ };
6284
6851
  readonly automatic_cancellation_date_time: {
6285
6852
  readonly format: "date-time";
6286
6853
  readonly nullable: true;
@@ -6344,7 +6911,7 @@ declare const MatchOccasionSchema: {
6344
6911
  readonly type: "string";
6345
6912
  };
6346
6913
  };
6347
- readonly required: readonly ["id", "start_date_time", "end_date_time", "courts", "participants", "price", "is_bookable", "is_participating", "has_opened_registration", "has_not_closed_registration", "members_only"];
6914
+ readonly required: readonly ["id", "start_date_time", "end_date_time", "courts", "participants", "price", "is_bookable", "is_participating", "has_opened_registration", "has_not_closed_registration", "members_only", "auto_cancel_enabled"];
6348
6915
  readonly type: "object";
6349
6916
  };
6350
6917
  declare const MatchOccasionDetailSchema: {
@@ -6364,6 +6931,12 @@ declare const MatchOccasionDetailSchema: {
6364
6931
  };
6365
6932
  readonly type: "array";
6366
6933
  };
6934
+ readonly order_id: {
6935
+ readonly description: "Order id of the requesting user's participation in this occasion, when the participation exists and is linked to an order. Null otherwise. Use with the user payments endpoint to load the receipt.\n";
6936
+ readonly format: "int64";
6937
+ readonly nullable: true;
6938
+ readonly type: "integer";
6939
+ };
6367
6940
  readonly participant_details: {
6368
6941
  readonly items: {
6369
6942
  readonly $ref: "#/components/schemas/ParticipantDetail";
@@ -6389,7 +6962,7 @@ declare const MatchOccasionDetailSchema: {
6389
6962
  readonly required: readonly ["price_list", "refund_policy", "can_be_cancelled_by_user", "participant_details", "status", "user_status", "external_services", "event"];
6390
6963
  readonly type: "object";
6391
6964
  }];
6392
- readonly description: "Enriched occasion for the detail view. Extends MatchOccasion with price_list, refund_policy, can_be_cancelled_by_user, participant_details, status, user_status, external_services, event.\n";
6965
+ readonly description: "Enriched occasion for the detail view. Extends MatchOccasion with price_list, refund_policy, can_be_cancelled_by_user, participant_details, status, user_status, external_services, event, order_id.\n";
6393
6966
  };
6394
6967
  declare const MatchParticipantsSchema: {
6395
6968
  readonly properties: {
@@ -7563,6 +8136,90 @@ type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean
7563
8136
  */
7564
8137
  meta?: Record<string, unknown>;
7565
8138
  };
8139
+ /**
8140
+ * List communities the player belongs to
8141
+ *
8142
+ * Returns communities where the authenticated player has an active, invited or left membership.
8143
+ */
8144
+ declare const listCommunities: <ThrowOnError extends boolean = false>(options?: Options<ListCommunitiesData, ThrowOnError>) => RequestResult<ListCommunitiesResponses, ListCommunitiesErrors, ThrowOnError, "fields">;
8145
+ /**
8146
+ * Get community details
8147
+ *
8148
+ * Returns details of a community the authenticated player can access.
8149
+ */
8150
+ declare const getCommunity: <ThrowOnError extends boolean = false>(options: Options<GetCommunityData, ThrowOnError>) => RequestResult<GetCommunityResponses, GetCommunityErrors, ThrowOnError, "fields">;
8151
+ /**
8152
+ * List community members
8153
+ *
8154
+ * Returns the members of a community, optionally filtered by their relation to the requesting user.
8155
+ */
8156
+ declare const listMembers: <ThrowOnError extends boolean = false>(options: Options<ListMembersData, ThrowOnError>) => RequestResult<ListMembersResponses, ListMembersErrors, ThrowOnError, "fields">;
8157
+ /**
8158
+ * Leave community
8159
+ *
8160
+ * Leave a community.
8161
+ */
8162
+ declare const leaveCommunity: <ThrowOnError extends boolean = false>(options: Options<LeaveCommunityData, ThrowOnError>) => RequestResult<LeaveCommunityResponses, LeaveCommunityErrors, ThrowOnError, "fields">;
8163
+ /**
8164
+ * Accept community invitation
8165
+ *
8166
+ * Accept an invitation to join a community.
8167
+ */
8168
+ declare const acceptInvitation: <ThrowOnError extends boolean = false>(options: Options<AcceptInvitationData, ThrowOnError>) => RequestResult<AcceptInvitationResponses, AcceptInvitationErrors, ThrowOnError, "fields">;
8169
+ /**
8170
+ * List community posts
8171
+ *
8172
+ * Returns posts in a community, optionally filtered by link type.
8173
+ */
8174
+ declare const listPosts: <ThrowOnError extends boolean = false>(options: Options<ListPostsData, ThrowOnError>) => RequestResult<ListPostsResponses, ListPostsErrors, ThrowOnError, "fields">;
8175
+ /**
8176
+ * Create a post in the community
8177
+ *
8178
+ * Creates a new post in a community on behalf of the authenticated player.
8179
+ */
8180
+ declare const createPost: <ThrowOnError extends boolean = false>(options: Options<CreatePostData, ThrowOnError>) => RequestResult<CreatePostResponses, CreatePostErrors, ThrowOnError, "fields">;
8181
+ /**
8182
+ * Delete a post
8183
+ *
8184
+ * Deletes a post. Only the post author can delete their own posts.
8185
+ */
8186
+ declare const deletePost: <ThrowOnError extends boolean = false>(options: Options<DeletePostData, ThrowOnError>) => RequestResult<DeletePostResponses, DeletePostErrors, ThrowOnError, "fields">;
8187
+ /**
8188
+ * Get a single post
8189
+ *
8190
+ * Returns details of a single post in a community.
8191
+ */
8192
+ declare const getPost: <ThrowOnError extends boolean = false>(options: Options<GetPostData, ThrowOnError>) => RequestResult<GetPostResponses, GetPostErrors, ThrowOnError, "fields">;
8193
+ /**
8194
+ * Mark a post as read
8195
+ *
8196
+ * Marks a post as read by the authenticated player.
8197
+ */
8198
+ declare const markPostRead: <ThrowOnError extends boolean = false>(options: Options<MarkPostReadData, ThrowOnError>) => RequestResult<MarkPostReadResponses, MarkPostReadErrors, ThrowOnError, "fields">;
8199
+ /**
8200
+ * List comments on a post
8201
+ *
8202
+ * Returns comments on a post, optionally filtered by creation timestamp.
8203
+ */
8204
+ declare const listComments: <ThrowOnError extends boolean = false>(options: Options<ListCommentsData, ThrowOnError>) => RequestResult<ListCommentsResponses, ListCommentsErrors, ThrowOnError, "fields">;
8205
+ /**
8206
+ * Create a comment on a post
8207
+ *
8208
+ * Creates a new comment on a post on behalf of the authenticated player.
8209
+ */
8210
+ declare const createComment: <ThrowOnError extends boolean = false>(options: Options<CreateCommentData, ThrowOnError>) => RequestResult<CreateCommentResponses, CreateCommentErrors, ThrowOnError, "fields">;
8211
+ /**
8212
+ * Delete a comment
8213
+ *
8214
+ * Deletes a comment. Only the comment author can delete their own comments.
8215
+ */
8216
+ declare const deleteComment: <ThrowOnError extends boolean = false>(options: Options<DeleteCommentData, ThrowOnError>) => RequestResult<DeleteCommentResponses, DeleteCommentErrors, ThrowOnError, "fields">;
8217
+ /**
8218
+ * Mark a comment as read
8219
+ *
8220
+ * Marks a comment as read by the authenticated player.
8221
+ */
8222
+ declare const markCommentRead: <ThrowOnError extends boolean = false>(options: Options<MarkCommentReadData, ThrowOnError>) => RequestResult<MarkCommentReadResponses, MarkCommentReadErrors, ThrowOnError, "fields">;
7566
8223
  /**
7567
8224
  * List all offers for a facility
7568
8225
  *
@@ -7737,6 +8394,338 @@ type QueryKey<TOptions extends Options> = [
7737
8394
  tags?: ReadonlyArray<string>;
7738
8395
  }
7739
8396
  ];
8397
+ declare const listCommunitiesQueryKey: (options?: Options<ListCommunitiesData>) => [Pick<Options<ListCommunitiesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8398
+ _id: string;
8399
+ _infinite?: boolean;
8400
+ tags?: ReadonlyArray<string>;
8401
+ }];
8402
+ /**
8403
+ * List communities the player belongs to
8404
+ *
8405
+ * Returns communities where the authenticated player has an active, invited or left membership.
8406
+ */
8407
+ declare const listCommunitiesOptions: (options?: Options<ListCommunitiesData>) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<CommunityListResponse, PkgOpenapiSharedProblemDetails, CommunityListResponse, [Pick<Options<ListCommunitiesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8408
+ _id: string;
8409
+ _infinite?: boolean;
8410
+ tags?: ReadonlyArray<string>;
8411
+ }]>, "queryFn"> & {
8412
+ queryFn?: _tanstack_react_query.QueryFunction<CommunityListResponse, [Pick<Options<ListCommunitiesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8413
+ _id: string;
8414
+ _infinite?: boolean;
8415
+ tags?: ReadonlyArray<string>;
8416
+ }], never> | undefined;
8417
+ } & {
8418
+ queryKey: [Pick<Options<ListCommunitiesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8419
+ _id: string;
8420
+ _infinite?: boolean;
8421
+ tags?: ReadonlyArray<string>;
8422
+ }] & {
8423
+ [dataTagSymbol]: CommunityListResponse;
8424
+ [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
8425
+ };
8426
+ };
8427
+ declare const listCommunitiesInfiniteQueryKey: (options?: Options<ListCommunitiesData>) => QueryKey<Options<ListCommunitiesData>>;
8428
+ /**
8429
+ * List communities the player belongs to
8430
+ *
8431
+ * Returns communities where the authenticated player has an active, invited or left membership.
8432
+ */
8433
+ declare const listCommunitiesInfiniteOptions: (options?: Options<ListCommunitiesData>) => _tanstack_react_query.UseInfiniteQueryOptions<CommunityListResponse, PkgOpenapiSharedProblemDetails, InfiniteData<CommunityListResponse, unknown>, QueryKey<Options<ListCommunitiesData>>, number | Pick<Pick<Options<ListCommunitiesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8434
+ _id: string;
8435
+ _infinite?: boolean;
8436
+ tags?: ReadonlyArray<string>;
8437
+ }, "query" | "body" | "headers" | "path">> & {
8438
+ initialData: InfiniteData<CommunityListResponse, number | Pick<Pick<Options<ListCommunitiesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8439
+ _id: string;
8440
+ _infinite?: boolean;
8441
+ tags?: ReadonlyArray<string>;
8442
+ }, "query" | "body" | "headers" | "path">> | (() => InfiniteData<CommunityListResponse, number | Pick<Pick<Options<ListCommunitiesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8443
+ _id: string;
8444
+ _infinite?: boolean;
8445
+ tags?: ReadonlyArray<string>;
8446
+ }, "query" | "body" | "headers" | "path">>) | undefined;
8447
+ } & {
8448
+ queryKey: QueryKey<Options<ListCommunitiesData>> & {
8449
+ [dataTagSymbol]: InfiniteData<CommunityListResponse, unknown>;
8450
+ [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
8451
+ };
8452
+ };
8453
+ declare const getCommunityQueryKey: (options: Options<GetCommunityData>) => [Pick<Options<GetCommunityData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8454
+ _id: string;
8455
+ _infinite?: boolean;
8456
+ tags?: ReadonlyArray<string>;
8457
+ }];
8458
+ /**
8459
+ * Get community details
8460
+ *
8461
+ * Returns details of a community the authenticated player can access.
8462
+ */
8463
+ declare const getCommunityOptions: (options: Options<GetCommunityData>) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<CommunityItem, PkgOpenapiSharedProblemDetails, CommunityItem, [Pick<Options<GetCommunityData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8464
+ _id: string;
8465
+ _infinite?: boolean;
8466
+ tags?: ReadonlyArray<string>;
8467
+ }]>, "queryFn"> & {
8468
+ queryFn?: _tanstack_react_query.QueryFunction<CommunityItem, [Pick<Options<GetCommunityData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8469
+ _id: string;
8470
+ _infinite?: boolean;
8471
+ tags?: ReadonlyArray<string>;
8472
+ }], never> | undefined;
8473
+ } & {
8474
+ queryKey: [Pick<Options<GetCommunityData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8475
+ _id: string;
8476
+ _infinite?: boolean;
8477
+ tags?: ReadonlyArray<string>;
8478
+ }] & {
8479
+ [dataTagSymbol]: CommunityItem;
8480
+ [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
8481
+ };
8482
+ };
8483
+ declare const listMembersQueryKey: (options: Options<ListMembersData>) => [Pick<Options<ListMembersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8484
+ _id: string;
8485
+ _infinite?: boolean;
8486
+ tags?: ReadonlyArray<string>;
8487
+ }];
8488
+ /**
8489
+ * List community members
8490
+ *
8491
+ * Returns the members of a community, optionally filtered by their relation to the requesting user.
8492
+ */
8493
+ declare const listMembersOptions: (options: Options<ListMembersData>) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<MemberListResponse, PkgOpenapiSharedProblemDetails, MemberListResponse, [Pick<Options<ListMembersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8494
+ _id: string;
8495
+ _infinite?: boolean;
8496
+ tags?: ReadonlyArray<string>;
8497
+ }]>, "queryFn"> & {
8498
+ queryFn?: _tanstack_react_query.QueryFunction<MemberListResponse, [Pick<Options<ListMembersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8499
+ _id: string;
8500
+ _infinite?: boolean;
8501
+ tags?: ReadonlyArray<string>;
8502
+ }], never> | undefined;
8503
+ } & {
8504
+ queryKey: [Pick<Options<ListMembersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8505
+ _id: string;
8506
+ _infinite?: boolean;
8507
+ tags?: ReadonlyArray<string>;
8508
+ }] & {
8509
+ [dataTagSymbol]: MemberListResponse;
8510
+ [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
8511
+ };
8512
+ };
8513
+ declare const listMembersInfiniteQueryKey: (options: Options<ListMembersData>) => QueryKey<Options<ListMembersData>>;
8514
+ /**
8515
+ * List community members
8516
+ *
8517
+ * Returns the members of a community, optionally filtered by their relation to the requesting user.
8518
+ */
8519
+ declare const listMembersInfiniteOptions: (options: Options<ListMembersData>) => _tanstack_react_query.UseInfiniteQueryOptions<MemberListResponse, PkgOpenapiSharedProblemDetails, InfiniteData<MemberListResponse, unknown>, QueryKey<Options<ListMembersData>>, number | Pick<Pick<Options<ListMembersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8520
+ _id: string;
8521
+ _infinite?: boolean;
8522
+ tags?: ReadonlyArray<string>;
8523
+ }, "query" | "body" | "headers" | "path">> & {
8524
+ initialData: InfiniteData<MemberListResponse, number | Pick<Pick<Options<ListMembersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8525
+ _id: string;
8526
+ _infinite?: boolean;
8527
+ tags?: ReadonlyArray<string>;
8528
+ }, "query" | "body" | "headers" | "path">> | (() => InfiniteData<MemberListResponse, number | Pick<Pick<Options<ListMembersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8529
+ _id: string;
8530
+ _infinite?: boolean;
8531
+ tags?: ReadonlyArray<string>;
8532
+ }, "query" | "body" | "headers" | "path">>) | undefined;
8533
+ } & {
8534
+ queryKey: QueryKey<Options<ListMembersData>> & {
8535
+ [dataTagSymbol]: InfiniteData<MemberListResponse, unknown>;
8536
+ [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
8537
+ };
8538
+ };
8539
+ /**
8540
+ * Leave community
8541
+ *
8542
+ * Leave a community.
8543
+ */
8544
+ declare const leaveCommunityMutation: (options?: Partial<Options<LeaveCommunityData>>) => UseMutationOptions<LeaveCommunityResponse, LeaveCommunityError, Options<LeaveCommunityData>>;
8545
+ /**
8546
+ * Accept community invitation
8547
+ *
8548
+ * Accept an invitation to join a community.
8549
+ */
8550
+ declare const acceptInvitationMutation: (options?: Partial<Options<AcceptInvitationData>>) => UseMutationOptions<AcceptInvitationResponse, AcceptInvitationError, Options<AcceptInvitationData>>;
8551
+ declare const listPostsQueryKey: (options: Options<ListPostsData>) => [Pick<Options<ListPostsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8552
+ _id: string;
8553
+ _infinite?: boolean;
8554
+ tags?: ReadonlyArray<string>;
8555
+ }];
8556
+ /**
8557
+ * List community posts
8558
+ *
8559
+ * Returns posts in a community, optionally filtered by link type.
8560
+ */
8561
+ declare const listPostsOptions: (options: Options<ListPostsData>) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<PostListResponse, PkgOpenapiSharedProblemDetails, PostListResponse, [Pick<Options<ListPostsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8562
+ _id: string;
8563
+ _infinite?: boolean;
8564
+ tags?: ReadonlyArray<string>;
8565
+ }]>, "queryFn"> & {
8566
+ queryFn?: _tanstack_react_query.QueryFunction<PostListResponse, [Pick<Options<ListPostsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8567
+ _id: string;
8568
+ _infinite?: boolean;
8569
+ tags?: ReadonlyArray<string>;
8570
+ }], never> | undefined;
8571
+ } & {
8572
+ queryKey: [Pick<Options<ListPostsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8573
+ _id: string;
8574
+ _infinite?: boolean;
8575
+ tags?: ReadonlyArray<string>;
8576
+ }] & {
8577
+ [dataTagSymbol]: PostListResponse;
8578
+ [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
8579
+ };
8580
+ };
8581
+ declare const listPostsInfiniteQueryKey: (options: Options<ListPostsData>) => QueryKey<Options<ListPostsData>>;
8582
+ /**
8583
+ * List community posts
8584
+ *
8585
+ * Returns posts in a community, optionally filtered by link type.
8586
+ */
8587
+ declare const listPostsInfiniteOptions: (options: Options<ListPostsData>) => _tanstack_react_query.UseInfiniteQueryOptions<PostListResponse, PkgOpenapiSharedProblemDetails, InfiniteData<PostListResponse, unknown>, QueryKey<Options<ListPostsData>>, number | Pick<Pick<Options<ListPostsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8588
+ _id: string;
8589
+ _infinite?: boolean;
8590
+ tags?: ReadonlyArray<string>;
8591
+ }, "query" | "body" | "headers" | "path">> & {
8592
+ initialData: InfiniteData<PostListResponse, number | Pick<Pick<Options<ListPostsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8593
+ _id: string;
8594
+ _infinite?: boolean;
8595
+ tags?: ReadonlyArray<string>;
8596
+ }, "query" | "body" | "headers" | "path">> | (() => InfiniteData<PostListResponse, number | Pick<Pick<Options<ListPostsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8597
+ _id: string;
8598
+ _infinite?: boolean;
8599
+ tags?: ReadonlyArray<string>;
8600
+ }, "query" | "body" | "headers" | "path">>) | undefined;
8601
+ } & {
8602
+ queryKey: QueryKey<Options<ListPostsData>> & {
8603
+ [dataTagSymbol]: InfiniteData<PostListResponse, unknown>;
8604
+ [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
8605
+ };
8606
+ };
8607
+ /**
8608
+ * Create a post in the community
8609
+ *
8610
+ * Creates a new post in a community on behalf of the authenticated player.
8611
+ */
8612
+ declare const createPostMutation: (options?: Partial<Options<CreatePostData>>) => UseMutationOptions<CreatePostResponse, CreatePostError, Options<CreatePostData>>;
8613
+ /**
8614
+ * Delete a post
8615
+ *
8616
+ * Deletes a post. Only the post author can delete their own posts.
8617
+ */
8618
+ declare const deletePostMutation: (options?: Partial<Options<DeletePostData>>) => UseMutationOptions<DeletePostResponse, DeletePostError, Options<DeletePostData>>;
8619
+ declare const getPostQueryKey: (options: Options<GetPostData>) => [Pick<Options<GetPostData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8620
+ _id: string;
8621
+ _infinite?: boolean;
8622
+ tags?: ReadonlyArray<string>;
8623
+ }];
8624
+ /**
8625
+ * Get a single post
8626
+ *
8627
+ * Returns details of a single post in a community.
8628
+ */
8629
+ declare const getPostOptions: (options: Options<GetPostData>) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<Post, PkgOpenapiSharedProblemDetails, Post, [Pick<Options<GetPostData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8630
+ _id: string;
8631
+ _infinite?: boolean;
8632
+ tags?: ReadonlyArray<string>;
8633
+ }]>, "queryFn"> & {
8634
+ queryFn?: _tanstack_react_query.QueryFunction<Post, [Pick<Options<GetPostData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8635
+ _id: string;
8636
+ _infinite?: boolean;
8637
+ tags?: ReadonlyArray<string>;
8638
+ }], never> | undefined;
8639
+ } & {
8640
+ queryKey: [Pick<Options<GetPostData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8641
+ _id: string;
8642
+ _infinite?: boolean;
8643
+ tags?: ReadonlyArray<string>;
8644
+ }] & {
8645
+ [dataTagSymbol]: Post;
8646
+ [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
8647
+ };
8648
+ };
8649
+ /**
8650
+ * Mark a post as read
8651
+ *
8652
+ * Marks a post as read by the authenticated player.
8653
+ */
8654
+ declare const markPostReadMutation: (options?: Partial<Options<MarkPostReadData>>) => UseMutationOptions<MarkPostReadResponse, MarkPostReadError, Options<MarkPostReadData>>;
8655
+ declare const listCommentsQueryKey: (options: Options<ListCommentsData>) => [Pick<Options<ListCommentsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8656
+ _id: string;
8657
+ _infinite?: boolean;
8658
+ tags?: ReadonlyArray<string>;
8659
+ }];
8660
+ /**
8661
+ * List comments on a post
8662
+ *
8663
+ * Returns comments on a post, optionally filtered by creation timestamp.
8664
+ */
8665
+ declare const listCommentsOptions: (options: Options<ListCommentsData>) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<CommentListResponse, PkgOpenapiSharedProblemDetails, CommentListResponse, [Pick<Options<ListCommentsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8666
+ _id: string;
8667
+ _infinite?: boolean;
8668
+ tags?: ReadonlyArray<string>;
8669
+ }]>, "queryFn"> & {
8670
+ queryFn?: _tanstack_react_query.QueryFunction<CommentListResponse, [Pick<Options<ListCommentsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8671
+ _id: string;
8672
+ _infinite?: boolean;
8673
+ tags?: ReadonlyArray<string>;
8674
+ }], never> | undefined;
8675
+ } & {
8676
+ queryKey: [Pick<Options<ListCommentsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8677
+ _id: string;
8678
+ _infinite?: boolean;
8679
+ tags?: ReadonlyArray<string>;
8680
+ }] & {
8681
+ [dataTagSymbol]: CommentListResponse;
8682
+ [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
8683
+ };
8684
+ };
8685
+ declare const listCommentsInfiniteQueryKey: (options: Options<ListCommentsData>) => QueryKey<Options<ListCommentsData>>;
8686
+ /**
8687
+ * List comments on a post
8688
+ *
8689
+ * Returns comments on a post, optionally filtered by creation timestamp.
8690
+ */
8691
+ declare const listCommentsInfiniteOptions: (options: Options<ListCommentsData>) => _tanstack_react_query.UseInfiniteQueryOptions<CommentListResponse, PkgOpenapiSharedProblemDetails, InfiniteData<CommentListResponse, unknown>, QueryKey<Options<ListCommentsData>>, number | Pick<Pick<Options<ListCommentsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8692
+ _id: string;
8693
+ _infinite?: boolean;
8694
+ tags?: ReadonlyArray<string>;
8695
+ }, "query" | "body" | "headers" | "path">> & {
8696
+ initialData: InfiniteData<CommentListResponse, number | Pick<Pick<Options<ListCommentsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8697
+ _id: string;
8698
+ _infinite?: boolean;
8699
+ tags?: ReadonlyArray<string>;
8700
+ }, "query" | "body" | "headers" | "path">> | (() => InfiniteData<CommentListResponse, number | Pick<Pick<Options<ListCommentsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8701
+ _id: string;
8702
+ _infinite?: boolean;
8703
+ tags?: ReadonlyArray<string>;
8704
+ }, "query" | "body" | "headers" | "path">>) | undefined;
8705
+ } & {
8706
+ queryKey: QueryKey<Options<ListCommentsData>> & {
8707
+ [dataTagSymbol]: InfiniteData<CommentListResponse, unknown>;
8708
+ [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
8709
+ };
8710
+ };
8711
+ /**
8712
+ * Create a comment on a post
8713
+ *
8714
+ * Creates a new comment on a post on behalf of the authenticated player.
8715
+ */
8716
+ declare const createCommentMutation: (options?: Partial<Options<CreateCommentData>>) => UseMutationOptions<CreateCommentResponse, CreateCommentError, Options<CreateCommentData>>;
8717
+ /**
8718
+ * Delete a comment
8719
+ *
8720
+ * Deletes a comment. Only the comment author can delete their own comments.
8721
+ */
8722
+ declare const deleteCommentMutation: (options?: Partial<Options<DeleteCommentData>>) => UseMutationOptions<DeleteCommentResponse, DeleteCommentError, Options<DeleteCommentData>>;
8723
+ /**
8724
+ * Mark a comment as read
8725
+ *
8726
+ * Marks a comment as read by the authenticated player.
8727
+ */
8728
+ declare const markCommentReadMutation: (options?: Partial<Options<MarkCommentReadData>>) => UseMutationOptions<MarkCommentReadResponse, MarkCommentReadError, Options<MarkCommentReadData>>;
7740
8729
  declare const listFacilityOffersQueryKey: (options: Options<ListFacilityOffersData>) => [Pick<Options<ListFacilityOffersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
7741
8730
  _id: string;
7742
8731
  _infinite?: boolean;
@@ -8348,13 +9337,20 @@ declare const deleteUserSportProfileLevelMutation: (options?: Partial<Options<De
8348
9337
  declare const updateUserSportProfileLevelMutation: (options?: Partial<Options<UpdateUserSportProfileLevelData>>) => UseMutationOptions<UpdateUserSportProfileLevelResponse, UpdateUserSportProfileLevelError, Options<UpdateUserSportProfileLevelData>>;
8349
9338
 
8350
9339
  type reactQuery_gen_QueryKey<TOptions extends Options> = QueryKey<TOptions>;
9340
+ declare const reactQuery_gen_acceptInvitationMutation: typeof acceptInvitationMutation;
8351
9341
  declare const reactQuery_gen_addUserSportProfileLevelMutation: typeof addUserSportProfileLevelMutation;
9342
+ declare const reactQuery_gen_createCommentMutation: typeof createCommentMutation;
8352
9343
  declare const reactQuery_gen_createFacilityOfferOrderMutation: typeof createFacilityOfferOrderMutation;
8353
9344
  declare const reactQuery_gen_createMatchParticipationMutation: typeof createMatchParticipationMutation;
9345
+ declare const reactQuery_gen_createPostMutation: typeof createPostMutation;
8354
9346
  declare const reactQuery_gen_createUserSportProfileMutation: typeof createUserSportProfileMutation;
9347
+ declare const reactQuery_gen_deleteCommentMutation: typeof deleteCommentMutation;
8355
9348
  declare const reactQuery_gen_deleteMatchParticipationMutation: typeof deleteMatchParticipationMutation;
9349
+ declare const reactQuery_gen_deletePostMutation: typeof deletePostMutation;
8356
9350
  declare const reactQuery_gen_deleteUserSportProfileLevelMutation: typeof deleteUserSportProfileLevelMutation;
8357
9351
  declare const reactQuery_gen_deleteUserSportProfileMutation: typeof deleteUserSportProfileMutation;
9352
+ declare const reactQuery_gen_getCommunityOptions: typeof getCommunityOptions;
9353
+ declare const reactQuery_gen_getCommunityQueryKey: typeof getCommunityQueryKey;
8358
9354
  declare const reactQuery_gen_getMatchOptions: typeof getMatchOptions;
8359
9355
  declare const reactQuery_gen_getMatchQueryKey: typeof getMatchQueryKey;
8360
9356
  declare const reactQuery_gen_getMatchUserPriceOptions: typeof getMatchUserPriceOptions;
@@ -8367,6 +9363,8 @@ declare const reactQuery_gen_getNotificationsOptions: typeof getNotificationsOpt
8367
9363
  declare const reactQuery_gen_getNotificationsPreferencesOptions: typeof getNotificationsPreferencesOptions;
8368
9364
  declare const reactQuery_gen_getNotificationsPreferencesQueryKey: typeof getNotificationsPreferencesQueryKey;
8369
9365
  declare const reactQuery_gen_getNotificationsQueryKey: typeof getNotificationsQueryKey;
9366
+ declare const reactQuery_gen_getPostOptions: typeof getPostOptions;
9367
+ declare const reactQuery_gen_getPostQueryKey: typeof getPostQueryKey;
8370
9368
  declare const reactQuery_gen_getRecommendationsInfiniteOptions: typeof getRecommendationsInfiniteOptions;
8371
9369
  declare const reactQuery_gen_getRecommendationsInfiniteQueryKey: typeof getRecommendationsInfiniteQueryKey;
8372
9370
  declare const reactQuery_gen_getRecommendationsOptions: typeof getRecommendationsOptions;
@@ -8379,6 +9377,15 @@ declare const reactQuery_gen_getUserSportProfileOptions: typeof getUserSportProf
8379
9377
  declare const reactQuery_gen_getUserSportProfileQueryKey: typeof getUserSportProfileQueryKey;
8380
9378
  declare const reactQuery_gen_getUserSportProfilesOptions: typeof getUserSportProfilesOptions;
8381
9379
  declare const reactQuery_gen_getUserSportProfilesQueryKey: typeof getUserSportProfilesQueryKey;
9380
+ declare const reactQuery_gen_leaveCommunityMutation: typeof leaveCommunityMutation;
9381
+ declare const reactQuery_gen_listCommentsInfiniteOptions: typeof listCommentsInfiniteOptions;
9382
+ declare const reactQuery_gen_listCommentsInfiniteQueryKey: typeof listCommentsInfiniteQueryKey;
9383
+ declare const reactQuery_gen_listCommentsOptions: typeof listCommentsOptions;
9384
+ declare const reactQuery_gen_listCommentsQueryKey: typeof listCommentsQueryKey;
9385
+ declare const reactQuery_gen_listCommunitiesInfiniteOptions: typeof listCommunitiesInfiniteOptions;
9386
+ declare const reactQuery_gen_listCommunitiesInfiniteQueryKey: typeof listCommunitiesInfiniteQueryKey;
9387
+ declare const reactQuery_gen_listCommunitiesOptions: typeof listCommunitiesOptions;
9388
+ declare const reactQuery_gen_listCommunitiesQueryKey: typeof listCommunitiesQueryKey;
8382
9389
  declare const reactQuery_gen_listFacilityOffersInfiniteOptions: typeof listFacilityOffersInfiniteOptions;
8383
9390
  declare const reactQuery_gen_listFacilityOffersInfiniteQueryKey: typeof listFacilityOffersInfiniteQueryKey;
8384
9391
  declare const reactQuery_gen_listFacilityOffersOptions: typeof listFacilityOffersOptions;
@@ -8387,6 +9394,16 @@ declare const reactQuery_gen_listMatchesInfiniteOptions: typeof listMatchesInfin
8387
9394
  declare const reactQuery_gen_listMatchesInfiniteQueryKey: typeof listMatchesInfiniteQueryKey;
8388
9395
  declare const reactQuery_gen_listMatchesOptions: typeof listMatchesOptions;
8389
9396
  declare const reactQuery_gen_listMatchesQueryKey: typeof listMatchesQueryKey;
9397
+ declare const reactQuery_gen_listMembersInfiniteOptions: typeof listMembersInfiniteOptions;
9398
+ declare const reactQuery_gen_listMembersInfiniteQueryKey: typeof listMembersInfiniteQueryKey;
9399
+ declare const reactQuery_gen_listMembersOptions: typeof listMembersOptions;
9400
+ declare const reactQuery_gen_listMembersQueryKey: typeof listMembersQueryKey;
9401
+ declare const reactQuery_gen_listPostsInfiniteOptions: typeof listPostsInfiniteOptions;
9402
+ declare const reactQuery_gen_listPostsInfiniteQueryKey: typeof listPostsInfiniteQueryKey;
9403
+ declare const reactQuery_gen_listPostsOptions: typeof listPostsOptions;
9404
+ declare const reactQuery_gen_listPostsQueryKey: typeof listPostsQueryKey;
9405
+ declare const reactQuery_gen_markCommentReadMutation: typeof markCommentReadMutation;
9406
+ declare const reactQuery_gen_markPostReadMutation: typeof markPostReadMutation;
8390
9407
  declare const reactQuery_gen_registerDeviceMutation: typeof registerDeviceMutation;
8391
9408
  declare const reactQuery_gen_searchUsersInfiniteOptions: typeof searchUsersInfiniteOptions;
8392
9409
  declare const reactQuery_gen_searchUsersInfiniteQueryKey: typeof searchUsersInfiniteQueryKey;
@@ -8398,9 +9415,14 @@ declare const reactQuery_gen_updateNotificationsPreferencesMutation: typeof upda
8398
9415
  declare const reactQuery_gen_updateUserProfileMutation: typeof updateUserProfileMutation;
8399
9416
  declare const reactQuery_gen_updateUserSportProfileLevelMutation: typeof updateUserSportProfileLevelMutation;
8400
9417
  declare namespace reactQuery_gen {
8401
- export { type reactQuery_gen_QueryKey as QueryKey, reactQuery_gen_addUserSportProfileLevelMutation as addUserSportProfileLevelMutation, reactQuery_gen_createFacilityOfferOrderMutation as createFacilityOfferOrderMutation, reactQuery_gen_createMatchParticipationMutation as createMatchParticipationMutation, reactQuery_gen_createUserSportProfileMutation as createUserSportProfileMutation, reactQuery_gen_deleteMatchParticipationMutation as deleteMatchParticipationMutation, reactQuery_gen_deleteUserSportProfileLevelMutation as deleteUserSportProfileLevelMutation, reactQuery_gen_deleteUserSportProfileMutation as deleteUserSportProfileMutation, reactQuery_gen_getMatchOptions as getMatchOptions, reactQuery_gen_getMatchQueryKey as getMatchQueryKey, reactQuery_gen_getMatchUserPriceOptions as getMatchUserPriceOptions, reactQuery_gen_getMatchUserPriceQueryKey as getMatchUserPriceQueryKey, reactQuery_gen_getNotificationByIdOptions as getNotificationByIdOptions, reactQuery_gen_getNotificationByIdQueryKey as getNotificationByIdQueryKey, reactQuery_gen_getNotificationsInfiniteOptions as getNotificationsInfiniteOptions, reactQuery_gen_getNotificationsInfiniteQueryKey as getNotificationsInfiniteQueryKey, reactQuery_gen_getNotificationsOptions as getNotificationsOptions, reactQuery_gen_getNotificationsPreferencesOptions as getNotificationsPreferencesOptions, reactQuery_gen_getNotificationsPreferencesQueryKey as getNotificationsPreferencesQueryKey, reactQuery_gen_getNotificationsQueryKey as getNotificationsQueryKey, reactQuery_gen_getRecommendationsInfiniteOptions as getRecommendationsInfiniteOptions, reactQuery_gen_getRecommendationsInfiniteQueryKey as getRecommendationsInfiniteQueryKey, reactQuery_gen_getRecommendationsOptions as getRecommendationsOptions, reactQuery_gen_getRecommendationsQueryKey as getRecommendationsQueryKey, reactQuery_gen_getSportAuthoritiesOptions as getSportAuthoritiesOptions, reactQuery_gen_getSportAuthoritiesQueryKey as getSportAuthoritiesQueryKey, reactQuery_gen_getUserFacilityPermissionsOptions as getUserFacilityPermissionsOptions, reactQuery_gen_getUserFacilityPermissionsQueryKey as getUserFacilityPermissionsQueryKey, reactQuery_gen_getUserSportProfileOptions as getUserSportProfileOptions, reactQuery_gen_getUserSportProfileQueryKey as getUserSportProfileQueryKey, reactQuery_gen_getUserSportProfilesOptions as getUserSportProfilesOptions, reactQuery_gen_getUserSportProfilesQueryKey as getUserSportProfilesQueryKey, reactQuery_gen_listFacilityOffersInfiniteOptions as listFacilityOffersInfiniteOptions, reactQuery_gen_listFacilityOffersInfiniteQueryKey as listFacilityOffersInfiniteQueryKey, reactQuery_gen_listFacilityOffersOptions as listFacilityOffersOptions, reactQuery_gen_listFacilityOffersQueryKey as listFacilityOffersQueryKey, reactQuery_gen_listMatchesInfiniteOptions as listMatchesInfiniteOptions, reactQuery_gen_listMatchesInfiniteQueryKey as listMatchesInfiniteQueryKey, reactQuery_gen_listMatchesOptions as listMatchesOptions, reactQuery_gen_listMatchesQueryKey as listMatchesQueryKey, reactQuery_gen_registerDeviceMutation as registerDeviceMutation, reactQuery_gen_searchUsersInfiniteOptions as searchUsersInfiniteOptions, reactQuery_gen_searchUsersInfiniteQueryKey as searchUsersInfiniteQueryKey, reactQuery_gen_searchUsersOptions as searchUsersOptions, reactQuery_gen_searchUsersQueryKey as searchUsersQueryKey, reactQuery_gen_updateAllNotificationsMutation as updateAllNotificationsMutation, reactQuery_gen_updateNotificationMutation as updateNotificationMutation, reactQuery_gen_updateNotificationsPreferencesMutation as updateNotificationsPreferencesMutation, reactQuery_gen_updateUserProfileMutation as updateUserProfileMutation, reactQuery_gen_updateUserSportProfileLevelMutation as updateUserSportProfileLevelMutation };
9418
+ export { type reactQuery_gen_QueryKey as QueryKey, reactQuery_gen_acceptInvitationMutation as acceptInvitationMutation, reactQuery_gen_addUserSportProfileLevelMutation as addUserSportProfileLevelMutation, reactQuery_gen_createCommentMutation as createCommentMutation, reactQuery_gen_createFacilityOfferOrderMutation as createFacilityOfferOrderMutation, reactQuery_gen_createMatchParticipationMutation as createMatchParticipationMutation, reactQuery_gen_createPostMutation as createPostMutation, reactQuery_gen_createUserSportProfileMutation as createUserSportProfileMutation, reactQuery_gen_deleteCommentMutation as deleteCommentMutation, reactQuery_gen_deleteMatchParticipationMutation as deleteMatchParticipationMutation, reactQuery_gen_deletePostMutation as deletePostMutation, reactQuery_gen_deleteUserSportProfileLevelMutation as deleteUserSportProfileLevelMutation, reactQuery_gen_deleteUserSportProfileMutation as deleteUserSportProfileMutation, reactQuery_gen_getCommunityOptions as getCommunityOptions, reactQuery_gen_getCommunityQueryKey as getCommunityQueryKey, reactQuery_gen_getMatchOptions as getMatchOptions, reactQuery_gen_getMatchQueryKey as getMatchQueryKey, reactQuery_gen_getMatchUserPriceOptions as getMatchUserPriceOptions, reactQuery_gen_getMatchUserPriceQueryKey as getMatchUserPriceQueryKey, reactQuery_gen_getNotificationByIdOptions as getNotificationByIdOptions, reactQuery_gen_getNotificationByIdQueryKey as getNotificationByIdQueryKey, reactQuery_gen_getNotificationsInfiniteOptions as getNotificationsInfiniteOptions, reactQuery_gen_getNotificationsInfiniteQueryKey as getNotificationsInfiniteQueryKey, reactQuery_gen_getNotificationsOptions as getNotificationsOptions, reactQuery_gen_getNotificationsPreferencesOptions as getNotificationsPreferencesOptions, reactQuery_gen_getNotificationsPreferencesQueryKey as getNotificationsPreferencesQueryKey, reactQuery_gen_getNotificationsQueryKey as getNotificationsQueryKey, reactQuery_gen_getPostOptions as getPostOptions, reactQuery_gen_getPostQueryKey as getPostQueryKey, reactQuery_gen_getRecommendationsInfiniteOptions as getRecommendationsInfiniteOptions, reactQuery_gen_getRecommendationsInfiniteQueryKey as getRecommendationsInfiniteQueryKey, reactQuery_gen_getRecommendationsOptions as getRecommendationsOptions, reactQuery_gen_getRecommendationsQueryKey as getRecommendationsQueryKey, reactQuery_gen_getSportAuthoritiesOptions as getSportAuthoritiesOptions, reactQuery_gen_getSportAuthoritiesQueryKey as getSportAuthoritiesQueryKey, reactQuery_gen_getUserFacilityPermissionsOptions as getUserFacilityPermissionsOptions, reactQuery_gen_getUserFacilityPermissionsQueryKey as getUserFacilityPermissionsQueryKey, reactQuery_gen_getUserSportProfileOptions as getUserSportProfileOptions, reactQuery_gen_getUserSportProfileQueryKey as getUserSportProfileQueryKey, reactQuery_gen_getUserSportProfilesOptions as getUserSportProfilesOptions, reactQuery_gen_getUserSportProfilesQueryKey as getUserSportProfilesQueryKey, reactQuery_gen_leaveCommunityMutation as leaveCommunityMutation, reactQuery_gen_listCommentsInfiniteOptions as listCommentsInfiniteOptions, reactQuery_gen_listCommentsInfiniteQueryKey as listCommentsInfiniteQueryKey, reactQuery_gen_listCommentsOptions as listCommentsOptions, reactQuery_gen_listCommentsQueryKey as listCommentsQueryKey, reactQuery_gen_listCommunitiesInfiniteOptions as listCommunitiesInfiniteOptions, reactQuery_gen_listCommunitiesInfiniteQueryKey as listCommunitiesInfiniteQueryKey, reactQuery_gen_listCommunitiesOptions as listCommunitiesOptions, reactQuery_gen_listCommunitiesQueryKey as listCommunitiesQueryKey, reactQuery_gen_listFacilityOffersInfiniteOptions as listFacilityOffersInfiniteOptions, reactQuery_gen_listFacilityOffersInfiniteQueryKey as listFacilityOffersInfiniteQueryKey, reactQuery_gen_listFacilityOffersOptions as listFacilityOffersOptions, reactQuery_gen_listFacilityOffersQueryKey as listFacilityOffersQueryKey, reactQuery_gen_listMatchesInfiniteOptions as listMatchesInfiniteOptions, reactQuery_gen_listMatchesInfiniteQueryKey as listMatchesInfiniteQueryKey, reactQuery_gen_listMatchesOptions as listMatchesOptions, reactQuery_gen_listMatchesQueryKey as listMatchesQueryKey, reactQuery_gen_listMembersInfiniteOptions as listMembersInfiniteOptions, reactQuery_gen_listMembersInfiniteQueryKey as listMembersInfiniteQueryKey, reactQuery_gen_listMembersOptions as listMembersOptions, reactQuery_gen_listMembersQueryKey as listMembersQueryKey, reactQuery_gen_listPostsInfiniteOptions as listPostsInfiniteOptions, reactQuery_gen_listPostsInfiniteQueryKey as listPostsInfiniteQueryKey, reactQuery_gen_listPostsOptions as listPostsOptions, reactQuery_gen_listPostsQueryKey as listPostsQueryKey, reactQuery_gen_markCommentReadMutation as markCommentReadMutation, reactQuery_gen_markPostReadMutation as markPostReadMutation, reactQuery_gen_registerDeviceMutation as registerDeviceMutation, reactQuery_gen_searchUsersInfiniteOptions as searchUsersInfiniteOptions, reactQuery_gen_searchUsersInfiniteQueryKey as searchUsersInfiniteQueryKey, reactQuery_gen_searchUsersOptions as searchUsersOptions, reactQuery_gen_searchUsersQueryKey as searchUsersQueryKey, reactQuery_gen_updateAllNotificationsMutation as updateAllNotificationsMutation, reactQuery_gen_updateNotificationMutation as updateNotificationMutation, reactQuery_gen_updateNotificationsPreferencesMutation as updateNotificationsPreferencesMutation, reactQuery_gen_updateUserProfileMutation as updateUserProfileMutation, reactQuery_gen_updateUserSportProfileLevelMutation as updateUserSportProfileLevelMutation };
8402
9419
  }
8403
9420
 
9421
+ type indexV1_AcceptInvitationData = AcceptInvitationData;
9422
+ type indexV1_AcceptInvitationError = AcceptInvitationError;
9423
+ type indexV1_AcceptInvitationErrors = AcceptInvitationErrors;
9424
+ type indexV1_AcceptInvitationResponse = AcceptInvitationResponse;
9425
+ type indexV1_AcceptInvitationResponses = AcceptInvitationResponses;
8404
9426
  type indexV1_AddUserSportProfileLevelData = AddUserSportProfileLevelData;
8405
9427
  type indexV1_AddUserSportProfileLevelError = AddUserSportProfileLevelError;
8406
9428
  type indexV1_AddUserSportProfileLevelErrors = AddUserSportProfileLevelErrors;
@@ -8417,7 +9439,12 @@ type indexV1_CommunityIdParam = CommunityIdParam;
8417
9439
  type indexV1_CommunityItem = CommunityItem;
8418
9440
  type indexV1_CommunityListResponse = CommunityListResponse;
8419
9441
  type indexV1_CommunityPayload = CommunityPayload;
9442
+ type indexV1_CreateCommentData = CreateCommentData;
9443
+ type indexV1_CreateCommentError = CreateCommentError;
9444
+ type indexV1_CreateCommentErrors = CreateCommentErrors;
8420
9445
  type indexV1_CreateCommentRequest = CreateCommentRequest;
9446
+ type indexV1_CreateCommentResponse = CreateCommentResponse;
9447
+ type indexV1_CreateCommentResponses = CreateCommentResponses;
8421
9448
  type indexV1_CreateFacilityOfferOrderData = CreateFacilityOfferOrderData;
8422
9449
  type indexV1_CreateFacilityOfferOrderError = CreateFacilityOfferOrderError;
8423
9450
  type indexV1_CreateFacilityOfferOrderErrors = CreateFacilityOfferOrderErrors;
@@ -8429,7 +9456,12 @@ type indexV1_CreateMatchParticipationErrors = CreateMatchParticipationErrors;
8429
9456
  type indexV1_CreateMatchParticipationRequest = CreateMatchParticipationRequest;
8430
9457
  type indexV1_CreateMatchParticipationResponse = CreateMatchParticipationResponse;
8431
9458
  type indexV1_CreateMatchParticipationResponses = CreateMatchParticipationResponses;
9459
+ type indexV1_CreatePostData = CreatePostData;
9460
+ type indexV1_CreatePostError = CreatePostError;
9461
+ type indexV1_CreatePostErrors = CreatePostErrors;
8432
9462
  type indexV1_CreatePostRequest = CreatePostRequest;
9463
+ type indexV1_CreatePostResponse = CreatePostResponse;
9464
+ type indexV1_CreatePostResponses = CreatePostResponses;
8433
9465
  type indexV1_CreateSportProfileLevelRequest = CreateSportProfileLevelRequest;
8434
9466
  type indexV1_CreateSportProfileRequest = CreateSportProfileRequest;
8435
9467
  type indexV1_CreateUserSportProfileData = CreateUserSportProfileData;
@@ -8437,11 +9469,21 @@ type indexV1_CreateUserSportProfileError = CreateUserSportProfileError;
8437
9469
  type indexV1_CreateUserSportProfileErrors = CreateUserSportProfileErrors;
8438
9470
  type indexV1_CreateUserSportProfileResponse = CreateUserSportProfileResponse;
8439
9471
  type indexV1_CreateUserSportProfileResponses = CreateUserSportProfileResponses;
9472
+ type indexV1_DeleteCommentData = DeleteCommentData;
9473
+ type indexV1_DeleteCommentError = DeleteCommentError;
9474
+ type indexV1_DeleteCommentErrors = DeleteCommentErrors;
9475
+ type indexV1_DeleteCommentResponse = DeleteCommentResponse;
9476
+ type indexV1_DeleteCommentResponses = DeleteCommentResponses;
8440
9477
  type indexV1_DeleteMatchParticipationData = DeleteMatchParticipationData;
8441
9478
  type indexV1_DeleteMatchParticipationError = DeleteMatchParticipationError;
8442
9479
  type indexV1_DeleteMatchParticipationErrors = DeleteMatchParticipationErrors;
8443
9480
  type indexV1_DeleteMatchParticipationResponse = DeleteMatchParticipationResponse;
8444
9481
  type indexV1_DeleteMatchParticipationResponses = DeleteMatchParticipationResponses;
9482
+ type indexV1_DeletePostData = DeletePostData;
9483
+ type indexV1_DeletePostError = DeletePostError;
9484
+ type indexV1_DeletePostErrors = DeletePostErrors;
9485
+ type indexV1_DeletePostResponse = DeletePostResponse;
9486
+ type indexV1_DeletePostResponses = DeletePostResponses;
8445
9487
  type indexV1_DeleteUserSportProfileData = DeleteUserSportProfileData;
8446
9488
  type indexV1_DeleteUserSportProfileError = DeleteUserSportProfileError;
8447
9489
  type indexV1_DeleteUserSportProfileErrors = DeleteUserSportProfileErrors;
@@ -8472,6 +9514,11 @@ type indexV1_FacilityPermissionsResponse = FacilityPermissionsResponse;
8472
9514
  type indexV1_FacilityPunchCardData = FacilityPunchCardData;
8473
9515
  type indexV1_FacilityValueCardData = FacilityValueCardData;
8474
9516
  type indexV1_Gender = Gender;
9517
+ type indexV1_GetCommunityData = GetCommunityData;
9518
+ type indexV1_GetCommunityError = GetCommunityError;
9519
+ type indexV1_GetCommunityErrors = GetCommunityErrors;
9520
+ type indexV1_GetCommunityResponse = GetCommunityResponse;
9521
+ type indexV1_GetCommunityResponses = GetCommunityResponses;
8475
9522
  type indexV1_GetMatchData = GetMatchData;
8476
9523
  type indexV1_GetMatchError = GetMatchError;
8477
9524
  type indexV1_GetMatchErrors = GetMatchErrors;
@@ -8497,6 +9544,11 @@ type indexV1_GetNotificationsPreferencesResponse = GetNotificationsPreferencesRe
8497
9544
  type indexV1_GetNotificationsPreferencesResponses = GetNotificationsPreferencesResponses;
8498
9545
  type indexV1_GetNotificationsResponse = GetNotificationsResponse;
8499
9546
  type indexV1_GetNotificationsResponses = GetNotificationsResponses;
9547
+ type indexV1_GetPostData = GetPostData;
9548
+ type indexV1_GetPostError = GetPostError;
9549
+ type indexV1_GetPostErrors = GetPostErrors;
9550
+ type indexV1_GetPostResponse = GetPostResponse;
9551
+ type indexV1_GetPostResponses = GetPostResponses;
8500
9552
  type indexV1_GetRecommendationsData = GetRecommendationsData;
8501
9553
  type indexV1_GetRecommendationsError = GetRecommendationsError;
8502
9554
  type indexV1_GetRecommendationsErrors = GetRecommendationsErrors;
@@ -8522,7 +9574,22 @@ type indexV1_GetUserSportProfilesError = GetUserSportProfilesError;
8522
9574
  type indexV1_GetUserSportProfilesErrors = GetUserSportProfilesErrors;
8523
9575
  type indexV1_GetUserSportProfilesResponse = GetUserSportProfilesResponse;
8524
9576
  type indexV1_GetUserSportProfilesResponses = GetUserSportProfilesResponses;
9577
+ type indexV1_LeaveCommunityData = LeaveCommunityData;
9578
+ type indexV1_LeaveCommunityError = LeaveCommunityError;
9579
+ type indexV1_LeaveCommunityErrors = LeaveCommunityErrors;
9580
+ type indexV1_LeaveCommunityResponse = LeaveCommunityResponse;
9581
+ type indexV1_LeaveCommunityResponses = LeaveCommunityResponses;
8525
9582
  type indexV1_LinkType = LinkType;
9583
+ type indexV1_ListCommentsData = ListCommentsData;
9584
+ type indexV1_ListCommentsError = ListCommentsError;
9585
+ type indexV1_ListCommentsErrors = ListCommentsErrors;
9586
+ type indexV1_ListCommentsResponse = ListCommentsResponse;
9587
+ type indexV1_ListCommentsResponses = ListCommentsResponses;
9588
+ type indexV1_ListCommunitiesData = ListCommunitiesData;
9589
+ type indexV1_ListCommunitiesError = ListCommunitiesError;
9590
+ type indexV1_ListCommunitiesErrors = ListCommunitiesErrors;
9591
+ type indexV1_ListCommunitiesResponse = ListCommunitiesResponse;
9592
+ type indexV1_ListCommunitiesResponses = ListCommunitiesResponses;
8526
9593
  type indexV1_ListFacilityOffersData = ListFacilityOffersData;
8527
9594
  type indexV1_ListFacilityOffersError = ListFacilityOffersError;
8528
9595
  type indexV1_ListFacilityOffersErrors = ListFacilityOffersErrors;
@@ -8533,6 +9600,26 @@ type indexV1_ListMatchesError = ListMatchesError;
8533
9600
  type indexV1_ListMatchesErrors = ListMatchesErrors;
8534
9601
  type indexV1_ListMatchesResponse = ListMatchesResponse;
8535
9602
  type indexV1_ListMatchesResponses = ListMatchesResponses;
9603
+ type indexV1_ListMembersData = ListMembersData;
9604
+ type indexV1_ListMembersError = ListMembersError;
9605
+ type indexV1_ListMembersErrors = ListMembersErrors;
9606
+ type indexV1_ListMembersResponse = ListMembersResponse;
9607
+ type indexV1_ListMembersResponses = ListMembersResponses;
9608
+ type indexV1_ListPostsData = ListPostsData;
9609
+ type indexV1_ListPostsError = ListPostsError;
9610
+ type indexV1_ListPostsErrors = ListPostsErrors;
9611
+ type indexV1_ListPostsResponse = ListPostsResponse;
9612
+ type indexV1_ListPostsResponses = ListPostsResponses;
9613
+ type indexV1_MarkCommentReadData = MarkCommentReadData;
9614
+ type indexV1_MarkCommentReadError = MarkCommentReadError;
9615
+ type indexV1_MarkCommentReadErrors = MarkCommentReadErrors;
9616
+ type indexV1_MarkCommentReadResponse = MarkCommentReadResponse;
9617
+ type indexV1_MarkCommentReadResponses = MarkCommentReadResponses;
9618
+ type indexV1_MarkPostReadData = MarkPostReadData;
9619
+ type indexV1_MarkPostReadError = MarkPostReadError;
9620
+ type indexV1_MarkPostReadErrors = MarkPostReadErrors;
9621
+ type indexV1_MarkPostReadResponse = MarkPostReadResponse;
9622
+ type indexV1_MarkPostReadResponses = MarkPostReadResponses;
8536
9623
  type indexV1_Match = Match;
8537
9624
  type indexV1_MatchBasePrice = MatchBasePrice;
8538
9625
  type indexV1_MatchCourt = MatchCourt;
@@ -8642,26 +9729,40 @@ type indexV1_UserProfile = UserProfile;
8642
9729
  type indexV1_UserRelation = UserRelation;
8643
9730
  type indexV1_UsersProfilesPaginatedResponse = UsersProfilesPaginatedResponse;
8644
9731
  type indexV1_Visibility = Visibility;
9732
+ declare const indexV1_acceptInvitation: typeof acceptInvitation;
8645
9733
  declare const indexV1_addUserSportProfileLevel: typeof addUserSportProfileLevel;
8646
9734
  declare const indexV1_client: typeof client;
9735
+ declare const indexV1_createComment: typeof createComment;
8647
9736
  declare const indexV1_createFacilityOfferOrder: typeof createFacilityOfferOrder;
8648
9737
  declare const indexV1_createMatchParticipation: typeof createMatchParticipation;
9738
+ declare const indexV1_createPost: typeof createPost;
8649
9739
  declare const indexV1_createUserSportProfile: typeof createUserSportProfile;
9740
+ declare const indexV1_deleteComment: typeof deleteComment;
8650
9741
  declare const indexV1_deleteMatchParticipation: typeof deleteMatchParticipation;
9742
+ declare const indexV1_deletePost: typeof deletePost;
8651
9743
  declare const indexV1_deleteUserSportProfile: typeof deleteUserSportProfile;
8652
9744
  declare const indexV1_deleteUserSportProfileLevel: typeof deleteUserSportProfileLevel;
9745
+ declare const indexV1_getCommunity: typeof getCommunity;
8653
9746
  declare const indexV1_getMatch: typeof getMatch;
8654
9747
  declare const indexV1_getMatchUserPrice: typeof getMatchUserPrice;
8655
9748
  declare const indexV1_getNotificationById: typeof getNotificationById;
8656
9749
  declare const indexV1_getNotifications: typeof getNotifications;
8657
9750
  declare const indexV1_getNotificationsPreferences: typeof getNotificationsPreferences;
9751
+ declare const indexV1_getPost: typeof getPost;
8658
9752
  declare const indexV1_getRecommendations: typeof getRecommendations;
8659
9753
  declare const indexV1_getSportAuthorities: typeof getSportAuthorities;
8660
9754
  declare const indexV1_getUserFacilityPermissions: typeof getUserFacilityPermissions;
8661
9755
  declare const indexV1_getUserSportProfile: typeof getUserSportProfile;
8662
9756
  declare const indexV1_getUserSportProfiles: typeof getUserSportProfiles;
9757
+ declare const indexV1_leaveCommunity: typeof leaveCommunity;
9758
+ declare const indexV1_listComments: typeof listComments;
9759
+ declare const indexV1_listCommunities: typeof listCommunities;
8663
9760
  declare const indexV1_listFacilityOffers: typeof listFacilityOffers;
8664
9761
  declare const indexV1_listMatches: typeof listMatches;
9762
+ declare const indexV1_listMembers: typeof listMembers;
9763
+ declare const indexV1_listPosts: typeof listPosts;
9764
+ declare const indexV1_markCommentRead: typeof markCommentRead;
9765
+ declare const indexV1_markPostRead: typeof markPostRead;
8665
9766
  declare const indexV1_registerDevice: typeof registerDevice;
8666
9767
  declare const indexV1_searchUsers: typeof searchUsers;
8667
9768
  declare const indexV1_updateAllNotifications: typeof updateAllNotifications;
@@ -8670,7 +9771,7 @@ declare const indexV1_updateNotificationsPreferences: typeof updateNotifications
8670
9771
  declare const indexV1_updateUserProfile: typeof updateUserProfile;
8671
9772
  declare const indexV1_updateUserSportProfileLevel: typeof updateUserSportProfileLevel;
8672
9773
  declare namespace indexV1 {
8673
- 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_CommunityPayload as CommunityPayload, 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_CreateMatchParticipationData as CreateMatchParticipationData, type indexV1_CreateMatchParticipationError as CreateMatchParticipationError, type indexV1_CreateMatchParticipationErrors as CreateMatchParticipationErrors, type indexV1_CreateMatchParticipationRequest as CreateMatchParticipationRequest, type indexV1_CreateMatchParticipationResponse as CreateMatchParticipationResponse, type indexV1_CreateMatchParticipationResponses as CreateMatchParticipationResponses, type indexV1_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_DeleteMatchParticipationData as DeleteMatchParticipationData, type indexV1_DeleteMatchParticipationError as DeleteMatchParticipationError, type indexV1_DeleteMatchParticipationErrors as DeleteMatchParticipationErrors, type indexV1_DeleteMatchParticipationResponse as DeleteMatchParticipationResponse, type indexV1_DeleteMatchParticipationResponses as DeleteMatchParticipationResponses, type indexV1_DeleteUserSportProfileData as DeleteUserSportProfileData, type indexV1_DeleteUserSportProfileError as DeleteUserSportProfileError, type indexV1_DeleteUserSportProfileErrors as DeleteUserSportProfileErrors, type indexV1_DeleteUserSportProfileLevelData as DeleteUserSportProfileLevelData, type indexV1_DeleteUserSportProfileLevelError as DeleteUserSportProfileLevelError, type indexV1_DeleteUserSportProfileLevelErrors as DeleteUserSportProfileLevelErrors, type indexV1_DeleteUserSportProfileLevelResponse as DeleteUserSportProfileLevelResponse, type indexV1_DeleteUserSportProfileLevelResponses as DeleteUserSportProfileLevelResponses, type indexV1_DeleteUserSportProfileResponse as DeleteUserSportProfileResponse, type indexV1_DeleteUserSportProfileResponses as DeleteUserSportProfileResponses, type indexV1_ExternalService as ExternalService, type indexV1_Facility as Facility, type indexV1_FacilityIdPath as FacilityIdPath, type indexV1_FacilityList as FacilityList, type indexV1_FacilityMessagePayload as FacilityMessagePayload, type indexV1_FacilityOffer as FacilityOffer, type indexV1_FacilityOfferCondition as FacilityOfferCondition, type indexV1_FacilityOfferConditionActivities as FacilityOfferConditionActivities, type indexV1_FacilityOfferConditionCourts as FacilityOfferConditionCourts, type indexV1_FacilityOfferConditionDate as FacilityOfferConditionDate, type indexV1_FacilityOfferConditionHoursinadvance as FacilityOfferConditionHoursinadvance, type indexV1_FacilityOfferConditionTime as FacilityOfferConditionTime, type indexV1_FacilityOfferConditionWeekdays as FacilityOfferConditionWeekdays, type indexV1_FacilityOfferList as FacilityOfferList, type indexV1_FacilityOfferOrder as FacilityOfferOrder, type indexV1_FacilityPermission as FacilityPermission, type indexV1_FacilityPermissionsResponse as FacilityPermissionsResponse, type indexV1_FacilityPunchCardData as FacilityPunchCardData, type indexV1_FacilityValueCardData as FacilityValueCardData, type indexV1_Gender as Gender, type indexV1_GetMatchData as GetMatchData, type indexV1_GetMatchError as GetMatchError, type indexV1_GetMatchErrors as GetMatchErrors, type indexV1_GetMatchResponse as GetMatchResponse, type indexV1_GetMatchResponses as GetMatchResponses, type indexV1_GetMatchUserPriceData as GetMatchUserPriceData, type indexV1_GetMatchUserPriceError as GetMatchUserPriceError, type indexV1_GetMatchUserPriceErrors as GetMatchUserPriceErrors, type indexV1_GetMatchUserPriceResponse as GetMatchUserPriceResponse, type indexV1_GetMatchUserPriceResponses as GetMatchUserPriceResponses, type indexV1_GetNotificationByIdData as GetNotificationByIdData, type indexV1_GetNotificationByIdError as GetNotificationByIdError, type indexV1_GetNotificationByIdErrors as GetNotificationByIdErrors, type indexV1_GetNotificationByIdResponse as GetNotificationByIdResponse, type indexV1_GetNotificationByIdResponses as GetNotificationByIdResponses, type indexV1_GetNotificationsData as GetNotificationsData, type indexV1_GetNotificationsError as GetNotificationsError, type indexV1_GetNotificationsErrors as GetNotificationsErrors, type indexV1_GetNotificationsPreferencesData as GetNotificationsPreferencesData, type indexV1_GetNotificationsPreferencesError as GetNotificationsPreferencesError, type indexV1_GetNotificationsPreferencesErrors as GetNotificationsPreferencesErrors, type indexV1_GetNotificationsPreferencesResponse as GetNotificationsPreferencesResponse, type indexV1_GetNotificationsPreferencesResponses as GetNotificationsPreferencesResponses, type indexV1_GetNotificationsResponse as GetNotificationsResponse, type indexV1_GetNotificationsResponses as GetNotificationsResponses, type indexV1_GetRecommendationsData as GetRecommendationsData, type indexV1_GetRecommendationsError as GetRecommendationsError, type indexV1_GetRecommendationsErrors as GetRecommendationsErrors, type indexV1_GetRecommendationsResponse as GetRecommendationsResponse, type indexV1_GetRecommendationsResponses as GetRecommendationsResponses, type indexV1_GetSportAuthoritiesData as GetSportAuthoritiesData, type indexV1_GetSportAuthoritiesError as GetSportAuthoritiesError, type indexV1_GetSportAuthoritiesErrors as GetSportAuthoritiesErrors, type indexV1_GetSportAuthoritiesResponse as GetSportAuthoritiesResponse, type indexV1_GetSportAuthoritiesResponses as GetSportAuthoritiesResponses, type indexV1_GetUserFacilityPermissionsData as GetUserFacilityPermissionsData, type indexV1_GetUserFacilityPermissionsError as GetUserFacilityPermissionsError, type indexV1_GetUserFacilityPermissionsErrors as GetUserFacilityPermissionsErrors, type indexV1_GetUserFacilityPermissionsResponse as GetUserFacilityPermissionsResponse, type indexV1_GetUserFacilityPermissionsResponses as GetUserFacilityPermissionsResponses, type indexV1_GetUserSportProfileData as GetUserSportProfileData, type indexV1_GetUserSportProfileError as GetUserSportProfileError, type indexV1_GetUserSportProfileErrors as GetUserSportProfileErrors, type indexV1_GetUserSportProfileResponse as GetUserSportProfileResponse, type indexV1_GetUserSportProfileResponses as GetUserSportProfileResponses, type indexV1_GetUserSportProfilesData as GetUserSportProfilesData, type indexV1_GetUserSportProfilesError as GetUserSportProfilesError, type indexV1_GetUserSportProfilesErrors as GetUserSportProfilesErrors, type indexV1_GetUserSportProfilesResponse as GetUserSportProfilesResponse, type indexV1_GetUserSportProfilesResponses as GetUserSportProfilesResponses, type indexV1_LinkType as LinkType, type indexV1_ListFacilityOffersData as ListFacilityOffersData, type indexV1_ListFacilityOffersError as ListFacilityOffersError, type indexV1_ListFacilityOffersErrors as ListFacilityOffersErrors, type indexV1_ListFacilityOffersResponse as ListFacilityOffersResponse, type indexV1_ListFacilityOffersResponses as ListFacilityOffersResponses, type indexV1_ListMatchesData as ListMatchesData, type indexV1_ListMatchesError as ListMatchesError, type indexV1_ListMatchesErrors as ListMatchesErrors, type indexV1_ListMatchesResponse as ListMatchesResponse, type indexV1_ListMatchesResponses as ListMatchesResponses, type indexV1_Match as Match, type indexV1_MatchBasePrice as MatchBasePrice, type indexV1_MatchCourt as MatchCourt, type indexV1_MatchDetail as MatchDetail, type indexV1_MatchEvent as MatchEvent, type indexV1_MatchList as MatchList, type indexV1_MatchOccasion as MatchOccasion, type indexV1_MatchOccasionDetail as MatchOccasionDetail, type indexV1_MatchParticipants as MatchParticipants, type indexV1_MatchPriceListEntry as MatchPriceListEntry, type indexV1_MatchStatus as MatchStatus, type indexV1_MatchUserPrice as MatchUserPrice, type indexV1_Member as Member, type indexV1_MemberListResponse as MemberListResponse, type indexV1_MemberRelation as MemberRelation, type indexV1_MembershipStatus as MembershipStatus, type indexV1_Metadata as Metadata, type indexV1_Notification as Notification, type indexV1_NotificationPayload as NotificationPayload, type indexV1_NotificationRequestBody as NotificationRequestBody, type indexV1_NotificationsFilter as NotificationsFilter, type indexV1_NotificationsFilterParam as NotificationsFilterParam, type indexV1_NotificationsPaginatedResponse as NotificationsPaginatedResponse, type indexV1_NotificationsSummary as NotificationsSummary, type indexV1_OfferIdPath as OfferIdPath, type indexV1_OffsetPaginatedResultSet as OffsetPaginatedResultSet, type indexV1_Options as Options, type indexV1_PaginationMeta as PaginationMeta, type indexV1_ParticipantDetail as ParticipantDetail, type indexV1_ParticipantSummary as ParticipantSummary, type indexV1_PatchCommentRequest as PatchCommentRequest, type indexV1_PatchPostRequest as PatchPostRequest, type indexV1_PaymentCommand as PaymentCommand, type indexV1_PaymentDetails as PaymentDetails, type indexV1_PkgOpenapiSharedCursorLimitParam as PkgOpenapiSharedCursorLimitParam, type indexV1_PkgOpenapiSharedCursorPaginatedResultSet as PkgOpenapiSharedCursorPaginatedResultSet, type indexV1_PkgOpenapiSharedCursorParam as PkgOpenapiSharedCursorParam, type indexV1_PkgOpenapiSharedError as PkgOpenapiSharedError, type indexV1_PkgOpenapiSharedErrors as PkgOpenapiSharedErrors, type indexV1_PkgOpenapiSharedOffsetLimitParam as PkgOpenapiSharedOffsetLimitParam, type indexV1_PkgOpenapiSharedOffsetPaginatedResultSet as PkgOpenapiSharedOffsetPaginatedResultSet, type indexV1_PkgOpenapiSharedOffsetParam as PkgOpenapiSharedOffsetParam, type indexV1_PkgOpenapiSharedProblemDetails as PkgOpenapiSharedProblemDetails, type indexV1_Post as Post, type indexV1_PostIdParam as PostIdParam, type indexV1_PostLink as PostLink, type indexV1_PostListResponse as PostListResponse, type indexV1_PostingPermission as PostingPermission, type indexV1_Preference as Preference, type indexV1_PreferencesResponse as PreferencesResponse, type indexV1_Recommendation as Recommendation, type indexV1_RecommendationList as RecommendationList, type indexV1_RefundPolicy as RefundPolicy, type indexV1_RegisterDeviceData as RegisterDeviceData, type indexV1_RegisterDeviceError as RegisterDeviceError, type indexV1_RegisterDeviceErrors as RegisterDeviceErrors, type indexV1_RegisterDeviceRequest as RegisterDeviceRequest, type indexV1_RegisterDeviceResponse as RegisterDeviceResponse, type indexV1_RegisterDeviceResponses as RegisterDeviceResponses, type indexV1_SearchUsersData as SearchUsersData, type indexV1_SearchUsersError as SearchUsersError, type indexV1_SearchUsersErrors as SearchUsersErrors, type indexV1_SearchUsersResponse as SearchUsersResponse, type indexV1_SearchUsersResponses as SearchUsersResponses, type indexV1_Source as Source, type indexV1_SportAuthoritiesResponse as SportAuthoritiesResponse, type indexV1_SportAuthority as SportAuthority, type indexV1_SportLevel as SportLevel, type indexV1_SportProfile as SportProfile, type indexV1_SportProfileAttribute as SportProfileAttribute, type indexV1_SportProfileId as SportProfileId, type indexV1_SportProfileLevel as SportProfileLevel, type indexV1_SportProfilesResponse as SportProfilesResponse, type indexV1_Topic as Topic, type indexV1_UpdateAllNotificationsData as UpdateAllNotificationsData, type indexV1_UpdateAllNotificationsError as UpdateAllNotificationsError, type indexV1_UpdateAllNotificationsErrors as UpdateAllNotificationsErrors, type indexV1_UpdateAllNotificationsResponse as UpdateAllNotificationsResponse, type indexV1_UpdateAllNotificationsResponses as UpdateAllNotificationsResponses, type indexV1_UpdateNotificationData as UpdateNotificationData, type indexV1_UpdateNotificationError as UpdateNotificationError, type indexV1_UpdateNotificationErrors as UpdateNotificationErrors, type indexV1_UpdateNotificationResponse as UpdateNotificationResponse, type indexV1_UpdateNotificationResponses as UpdateNotificationResponses, type indexV1_UpdateNotificationsPreferencesData as UpdateNotificationsPreferencesData, type indexV1_UpdateNotificationsPreferencesError as UpdateNotificationsPreferencesError, type indexV1_UpdateNotificationsPreferencesErrors as UpdateNotificationsPreferencesErrors, type indexV1_UpdateNotificationsPreferencesResponse as UpdateNotificationsPreferencesResponse, type indexV1_UpdateNotificationsPreferencesResponses as UpdateNotificationsPreferencesResponses, type indexV1_UpdatePreferencesRequestBody as UpdatePreferencesRequestBody, type indexV1_UpdateSportProfileLevelRequest as UpdateSportProfileLevelRequest, type indexV1_UpdateUserProfileData as UpdateUserProfileData, type indexV1_UpdateUserProfileError as UpdateUserProfileError, type indexV1_UpdateUserProfileErrors as UpdateUserProfileErrors, type indexV1_UpdateUserProfileResponse as UpdateUserProfileResponse, type indexV1_UpdateUserProfileResponses as UpdateUserProfileResponses, type indexV1_UpdateUserSportProfileLevelData as UpdateUserSportProfileLevelData, type indexV1_UpdateUserSportProfileLevelError as UpdateUserSportProfileLevelError, type indexV1_UpdateUserSportProfileLevelErrors as UpdateUserSportProfileLevelErrors, type indexV1_UpdateUserSportProfileLevelResponse as UpdateUserSportProfileLevelResponse, type indexV1_UpdateUserSportProfileLevelResponses as UpdateUserSportProfileLevelResponses, type indexV1_UpdateUsersProfilesRequest as UpdateUsersProfilesRequest, type indexV1_UserId as UserId, type indexV1_UserIdParam as UserIdParam, type indexV1_UserParticipationStatus as UserParticipationStatus, type indexV1_UserProfile as UserProfile, type indexV1_UserRelation as UserRelation, type indexV1_UsersProfilesPaginatedResponse as UsersProfilesPaginatedResponse, type indexV1_Visibility as Visibility, indexV1_addUserSportProfileLevel as addUserSportProfileLevel, indexV1_client as client, indexV1_createFacilityOfferOrder as createFacilityOfferOrder, indexV1_createMatchParticipation as createMatchParticipation, indexV1_createUserSportProfile as createUserSportProfile, indexV1_deleteMatchParticipation as deleteMatchParticipation, indexV1_deleteUserSportProfile as deleteUserSportProfile, indexV1_deleteUserSportProfileLevel as deleteUserSportProfileLevel, indexV1_getMatch as getMatch, indexV1_getMatchUserPrice as getMatchUserPrice, indexV1_getNotificationById as getNotificationById, indexV1_getNotifications as getNotifications, indexV1_getNotificationsPreferences as getNotificationsPreferences, indexV1_getRecommendations as getRecommendations, indexV1_getSportAuthorities as getSportAuthorities, indexV1_getUserFacilityPermissions as getUserFacilityPermissions, indexV1_getUserSportProfile as getUserSportProfile, indexV1_getUserSportProfiles as getUserSportProfiles, indexV1_listFacilityOffers as listFacilityOffers, indexV1_listMatches as listMatches, reactQuery_gen as queries, indexV1_registerDevice as registerDevice, schemas_gen as schemas, indexV1_searchUsers as searchUsers, indexV1_updateAllNotifications as updateAllNotifications, indexV1_updateNotification as updateNotification, indexV1_updateNotificationsPreferences as updateNotificationsPreferences, indexV1_updateUserProfile as updateUserProfile, indexV1_updateUserSportProfileLevel as updateUserSportProfileLevel };
9774
+ export { type indexV1_AcceptInvitationData as AcceptInvitationData, type indexV1_AcceptInvitationError as AcceptInvitationError, type indexV1_AcceptInvitationErrors as AcceptInvitationErrors, type indexV1_AcceptInvitationResponse as AcceptInvitationResponse, type indexV1_AcceptInvitationResponses as AcceptInvitationResponses, type indexV1_AddUserSportProfileLevelData as AddUserSportProfileLevelData, type indexV1_AddUserSportProfileLevelError as AddUserSportProfileLevelError, type indexV1_AddUserSportProfileLevelErrors as AddUserSportProfileLevelErrors, type indexV1_AddUserSportProfileLevelResponse as AddUserSportProfileLevelResponse, type indexV1_AddUserSportProfileLevelResponses as AddUserSportProfileLevelResponses, type indexV1_Author as Author, type indexV1_AuthoritySlug as AuthoritySlug, type indexV1_Channels as Channels, type indexV1_ClientOptions as ClientOptions, type indexV1_Comment as Comment, type indexV1_CommentIdParam as CommentIdParam, type indexV1_CommentListResponse as CommentListResponse, type indexV1_CommunityIdParam as CommunityIdParam, type indexV1_CommunityItem as CommunityItem, type indexV1_CommunityListResponse as CommunityListResponse, type indexV1_CommunityPayload as CommunityPayload, type indexV1_CreateCommentData as CreateCommentData, type indexV1_CreateCommentError as CreateCommentError, type indexV1_CreateCommentErrors as CreateCommentErrors, type indexV1_CreateCommentRequest as CreateCommentRequest, type indexV1_CreateCommentResponse as CreateCommentResponse, type indexV1_CreateCommentResponses as CreateCommentResponses, type indexV1_CreateFacilityOfferOrderData as CreateFacilityOfferOrderData, type indexV1_CreateFacilityOfferOrderError as CreateFacilityOfferOrderError, type indexV1_CreateFacilityOfferOrderErrors as CreateFacilityOfferOrderErrors, type indexV1_CreateFacilityOfferOrderResponse as CreateFacilityOfferOrderResponse, type indexV1_CreateFacilityOfferOrderResponses as CreateFacilityOfferOrderResponses, type indexV1_CreateMatchParticipationData as CreateMatchParticipationData, type indexV1_CreateMatchParticipationError as CreateMatchParticipationError, type indexV1_CreateMatchParticipationErrors as CreateMatchParticipationErrors, type indexV1_CreateMatchParticipationRequest as CreateMatchParticipationRequest, type indexV1_CreateMatchParticipationResponse as CreateMatchParticipationResponse, type indexV1_CreateMatchParticipationResponses as CreateMatchParticipationResponses, type indexV1_CreatePostData as CreatePostData, type indexV1_CreatePostError as CreatePostError, type indexV1_CreatePostErrors as CreatePostErrors, type indexV1_CreatePostRequest as CreatePostRequest, type indexV1_CreatePostResponse as CreatePostResponse, type indexV1_CreatePostResponses as CreatePostResponses, type indexV1_CreateSportProfileLevelRequest as CreateSportProfileLevelRequest, type indexV1_CreateSportProfileRequest as CreateSportProfileRequest, type indexV1_CreateUserSportProfileData as CreateUserSportProfileData, type indexV1_CreateUserSportProfileError as CreateUserSportProfileError, type indexV1_CreateUserSportProfileErrors as CreateUserSportProfileErrors, type indexV1_CreateUserSportProfileResponse as CreateUserSportProfileResponse, type indexV1_CreateUserSportProfileResponses as CreateUserSportProfileResponses, type indexV1_DeleteCommentData as DeleteCommentData, type indexV1_DeleteCommentError as DeleteCommentError, type indexV1_DeleteCommentErrors as DeleteCommentErrors, type indexV1_DeleteCommentResponse as DeleteCommentResponse, type indexV1_DeleteCommentResponses as DeleteCommentResponses, type indexV1_DeleteMatchParticipationData as DeleteMatchParticipationData, type indexV1_DeleteMatchParticipationError as DeleteMatchParticipationError, type indexV1_DeleteMatchParticipationErrors as DeleteMatchParticipationErrors, type indexV1_DeleteMatchParticipationResponse as DeleteMatchParticipationResponse, type indexV1_DeleteMatchParticipationResponses as DeleteMatchParticipationResponses, type indexV1_DeletePostData as DeletePostData, type indexV1_DeletePostError as DeletePostError, type indexV1_DeletePostErrors as DeletePostErrors, type indexV1_DeletePostResponse as DeletePostResponse, type indexV1_DeletePostResponses as DeletePostResponses, type indexV1_DeleteUserSportProfileData as DeleteUserSportProfileData, type indexV1_DeleteUserSportProfileError as DeleteUserSportProfileError, type indexV1_DeleteUserSportProfileErrors as DeleteUserSportProfileErrors, type indexV1_DeleteUserSportProfileLevelData as DeleteUserSportProfileLevelData, type indexV1_DeleteUserSportProfileLevelError as DeleteUserSportProfileLevelError, type indexV1_DeleteUserSportProfileLevelErrors as DeleteUserSportProfileLevelErrors, type indexV1_DeleteUserSportProfileLevelResponse as DeleteUserSportProfileLevelResponse, type indexV1_DeleteUserSportProfileLevelResponses as DeleteUserSportProfileLevelResponses, type indexV1_DeleteUserSportProfileResponse as DeleteUserSportProfileResponse, type indexV1_DeleteUserSportProfileResponses as DeleteUserSportProfileResponses, type indexV1_ExternalService as ExternalService, type indexV1_Facility as Facility, type indexV1_FacilityIdPath as FacilityIdPath, type indexV1_FacilityList as FacilityList, type indexV1_FacilityMessagePayload as FacilityMessagePayload, type indexV1_FacilityOffer as FacilityOffer, type indexV1_FacilityOfferCondition as FacilityOfferCondition, type indexV1_FacilityOfferConditionActivities as FacilityOfferConditionActivities, type indexV1_FacilityOfferConditionCourts as FacilityOfferConditionCourts, type indexV1_FacilityOfferConditionDate as FacilityOfferConditionDate, type indexV1_FacilityOfferConditionHoursinadvance as FacilityOfferConditionHoursinadvance, type indexV1_FacilityOfferConditionTime as FacilityOfferConditionTime, type indexV1_FacilityOfferConditionWeekdays as FacilityOfferConditionWeekdays, type indexV1_FacilityOfferList as FacilityOfferList, type indexV1_FacilityOfferOrder as FacilityOfferOrder, type indexV1_FacilityPermission as FacilityPermission, type indexV1_FacilityPermissionsResponse as FacilityPermissionsResponse, type indexV1_FacilityPunchCardData as FacilityPunchCardData, type indexV1_FacilityValueCardData as FacilityValueCardData, type indexV1_Gender as Gender, type indexV1_GetCommunityData as GetCommunityData, type indexV1_GetCommunityError as GetCommunityError, type indexV1_GetCommunityErrors as GetCommunityErrors, type indexV1_GetCommunityResponse as GetCommunityResponse, type indexV1_GetCommunityResponses as GetCommunityResponses, type indexV1_GetMatchData as GetMatchData, type indexV1_GetMatchError as GetMatchError, type indexV1_GetMatchErrors as GetMatchErrors, type indexV1_GetMatchResponse as GetMatchResponse, type indexV1_GetMatchResponses as GetMatchResponses, type indexV1_GetMatchUserPriceData as GetMatchUserPriceData, type indexV1_GetMatchUserPriceError as GetMatchUserPriceError, type indexV1_GetMatchUserPriceErrors as GetMatchUserPriceErrors, type indexV1_GetMatchUserPriceResponse as GetMatchUserPriceResponse, type indexV1_GetMatchUserPriceResponses as GetMatchUserPriceResponses, type indexV1_GetNotificationByIdData as GetNotificationByIdData, type indexV1_GetNotificationByIdError as GetNotificationByIdError, type indexV1_GetNotificationByIdErrors as GetNotificationByIdErrors, type indexV1_GetNotificationByIdResponse as GetNotificationByIdResponse, type indexV1_GetNotificationByIdResponses as GetNotificationByIdResponses, type indexV1_GetNotificationsData as GetNotificationsData, type indexV1_GetNotificationsError as GetNotificationsError, type indexV1_GetNotificationsErrors as GetNotificationsErrors, type indexV1_GetNotificationsPreferencesData as GetNotificationsPreferencesData, type indexV1_GetNotificationsPreferencesError as GetNotificationsPreferencesError, type indexV1_GetNotificationsPreferencesErrors as GetNotificationsPreferencesErrors, type indexV1_GetNotificationsPreferencesResponse as GetNotificationsPreferencesResponse, type indexV1_GetNotificationsPreferencesResponses as GetNotificationsPreferencesResponses, type indexV1_GetNotificationsResponse as GetNotificationsResponse, type indexV1_GetNotificationsResponses as GetNotificationsResponses, type indexV1_GetPostData as GetPostData, type indexV1_GetPostError as GetPostError, type indexV1_GetPostErrors as GetPostErrors, type indexV1_GetPostResponse as GetPostResponse, type indexV1_GetPostResponses as GetPostResponses, type indexV1_GetRecommendationsData as GetRecommendationsData, type indexV1_GetRecommendationsError as GetRecommendationsError, type indexV1_GetRecommendationsErrors as GetRecommendationsErrors, type indexV1_GetRecommendationsResponse as GetRecommendationsResponse, type indexV1_GetRecommendationsResponses as GetRecommendationsResponses, type indexV1_GetSportAuthoritiesData as GetSportAuthoritiesData, type indexV1_GetSportAuthoritiesError as GetSportAuthoritiesError, type indexV1_GetSportAuthoritiesErrors as GetSportAuthoritiesErrors, type indexV1_GetSportAuthoritiesResponse as GetSportAuthoritiesResponse, type indexV1_GetSportAuthoritiesResponses as GetSportAuthoritiesResponses, type indexV1_GetUserFacilityPermissionsData as GetUserFacilityPermissionsData, type indexV1_GetUserFacilityPermissionsError as GetUserFacilityPermissionsError, type indexV1_GetUserFacilityPermissionsErrors as GetUserFacilityPermissionsErrors, type indexV1_GetUserFacilityPermissionsResponse as GetUserFacilityPermissionsResponse, type indexV1_GetUserFacilityPermissionsResponses as GetUserFacilityPermissionsResponses, type indexV1_GetUserSportProfileData as GetUserSportProfileData, type indexV1_GetUserSportProfileError as GetUserSportProfileError, type indexV1_GetUserSportProfileErrors as GetUserSportProfileErrors, type indexV1_GetUserSportProfileResponse as GetUserSportProfileResponse, type indexV1_GetUserSportProfileResponses as GetUserSportProfileResponses, type indexV1_GetUserSportProfilesData as GetUserSportProfilesData, type indexV1_GetUserSportProfilesError as GetUserSportProfilesError, type indexV1_GetUserSportProfilesErrors as GetUserSportProfilesErrors, type indexV1_GetUserSportProfilesResponse as GetUserSportProfilesResponse, type indexV1_GetUserSportProfilesResponses as GetUserSportProfilesResponses, type indexV1_LeaveCommunityData as LeaveCommunityData, type indexV1_LeaveCommunityError as LeaveCommunityError, type indexV1_LeaveCommunityErrors as LeaveCommunityErrors, type indexV1_LeaveCommunityResponse as LeaveCommunityResponse, type indexV1_LeaveCommunityResponses as LeaveCommunityResponses, type indexV1_LinkType as LinkType, type indexV1_ListCommentsData as ListCommentsData, type indexV1_ListCommentsError as ListCommentsError, type indexV1_ListCommentsErrors as ListCommentsErrors, type indexV1_ListCommentsResponse as ListCommentsResponse, type indexV1_ListCommentsResponses as ListCommentsResponses, type indexV1_ListCommunitiesData as ListCommunitiesData, type indexV1_ListCommunitiesError as ListCommunitiesError, type indexV1_ListCommunitiesErrors as ListCommunitiesErrors, type indexV1_ListCommunitiesResponse as ListCommunitiesResponse, type indexV1_ListCommunitiesResponses as ListCommunitiesResponses, type indexV1_ListFacilityOffersData as ListFacilityOffersData, type indexV1_ListFacilityOffersError as ListFacilityOffersError, type indexV1_ListFacilityOffersErrors as ListFacilityOffersErrors, type indexV1_ListFacilityOffersResponse as ListFacilityOffersResponse, type indexV1_ListFacilityOffersResponses as ListFacilityOffersResponses, type indexV1_ListMatchesData as ListMatchesData, type indexV1_ListMatchesError as ListMatchesError, type indexV1_ListMatchesErrors as ListMatchesErrors, type indexV1_ListMatchesResponse as ListMatchesResponse, type indexV1_ListMatchesResponses as ListMatchesResponses, type indexV1_ListMembersData as ListMembersData, type indexV1_ListMembersError as ListMembersError, type indexV1_ListMembersErrors as ListMembersErrors, type indexV1_ListMembersResponse as ListMembersResponse, type indexV1_ListMembersResponses as ListMembersResponses, type indexV1_ListPostsData as ListPostsData, type indexV1_ListPostsError as ListPostsError, type indexV1_ListPostsErrors as ListPostsErrors, type indexV1_ListPostsResponse as ListPostsResponse, type indexV1_ListPostsResponses as ListPostsResponses, type indexV1_MarkCommentReadData as MarkCommentReadData, type indexV1_MarkCommentReadError as MarkCommentReadError, type indexV1_MarkCommentReadErrors as MarkCommentReadErrors, type indexV1_MarkCommentReadResponse as MarkCommentReadResponse, type indexV1_MarkCommentReadResponses as MarkCommentReadResponses, type indexV1_MarkPostReadData as MarkPostReadData, type indexV1_MarkPostReadError as MarkPostReadError, type indexV1_MarkPostReadErrors as MarkPostReadErrors, type indexV1_MarkPostReadResponse as MarkPostReadResponse, type indexV1_MarkPostReadResponses as MarkPostReadResponses, type indexV1_Match as Match, type indexV1_MatchBasePrice as MatchBasePrice, type indexV1_MatchCourt as MatchCourt, type indexV1_MatchDetail as MatchDetail, type indexV1_MatchEvent as MatchEvent, type indexV1_MatchList as MatchList, type indexV1_MatchOccasion as MatchOccasion, type indexV1_MatchOccasionDetail as MatchOccasionDetail, type indexV1_MatchParticipants as MatchParticipants, type indexV1_MatchPriceListEntry as MatchPriceListEntry, type indexV1_MatchStatus as MatchStatus, type indexV1_MatchUserPrice as MatchUserPrice, type indexV1_Member as Member, type indexV1_MemberListResponse as MemberListResponse, type indexV1_MemberRelation as MemberRelation, type indexV1_MembershipStatus as MembershipStatus, type indexV1_Metadata as Metadata, type indexV1_Notification as Notification, type indexV1_NotificationPayload as NotificationPayload, type indexV1_NotificationRequestBody as NotificationRequestBody, type indexV1_NotificationsFilter as NotificationsFilter, type indexV1_NotificationsFilterParam as NotificationsFilterParam, type indexV1_NotificationsPaginatedResponse as NotificationsPaginatedResponse, type indexV1_NotificationsSummary as NotificationsSummary, type indexV1_OfferIdPath as OfferIdPath, type indexV1_OffsetPaginatedResultSet as OffsetPaginatedResultSet, type indexV1_Options as Options, type indexV1_PaginationMeta as PaginationMeta, type indexV1_ParticipantDetail as ParticipantDetail, type indexV1_ParticipantSummary as ParticipantSummary, type indexV1_PatchCommentRequest as PatchCommentRequest, type indexV1_PatchPostRequest as PatchPostRequest, type indexV1_PaymentCommand as PaymentCommand, type indexV1_PaymentDetails as PaymentDetails, type indexV1_PkgOpenapiSharedCursorLimitParam as PkgOpenapiSharedCursorLimitParam, type indexV1_PkgOpenapiSharedCursorPaginatedResultSet as PkgOpenapiSharedCursorPaginatedResultSet, type indexV1_PkgOpenapiSharedCursorParam as PkgOpenapiSharedCursorParam, type indexV1_PkgOpenapiSharedError as PkgOpenapiSharedError, type indexV1_PkgOpenapiSharedErrors as PkgOpenapiSharedErrors, type indexV1_PkgOpenapiSharedOffsetLimitParam as PkgOpenapiSharedOffsetLimitParam, type indexV1_PkgOpenapiSharedOffsetPaginatedResultSet as PkgOpenapiSharedOffsetPaginatedResultSet, type indexV1_PkgOpenapiSharedOffsetParam as PkgOpenapiSharedOffsetParam, type indexV1_PkgOpenapiSharedProblemDetails as PkgOpenapiSharedProblemDetails, type indexV1_Post as Post, type indexV1_PostIdParam as PostIdParam, type indexV1_PostLink as PostLink, type indexV1_PostListResponse as PostListResponse, type indexV1_PostingPermission as PostingPermission, type indexV1_Preference as Preference, type indexV1_PreferencesResponse as PreferencesResponse, type indexV1_Recommendation as Recommendation, type indexV1_RecommendationList as RecommendationList, type indexV1_RefundPolicy as RefundPolicy, type indexV1_RegisterDeviceData as RegisterDeviceData, type indexV1_RegisterDeviceError as RegisterDeviceError, type indexV1_RegisterDeviceErrors as RegisterDeviceErrors, type indexV1_RegisterDeviceRequest as RegisterDeviceRequest, type indexV1_RegisterDeviceResponse as RegisterDeviceResponse, type indexV1_RegisterDeviceResponses as RegisterDeviceResponses, type indexV1_SearchUsersData as SearchUsersData, type indexV1_SearchUsersError as SearchUsersError, type indexV1_SearchUsersErrors as SearchUsersErrors, type indexV1_SearchUsersResponse as SearchUsersResponse, type indexV1_SearchUsersResponses as SearchUsersResponses, type indexV1_Source as Source, type indexV1_SportAuthoritiesResponse as SportAuthoritiesResponse, type indexV1_SportAuthority as SportAuthority, type indexV1_SportLevel as SportLevel, type indexV1_SportProfile as SportProfile, type indexV1_SportProfileAttribute as SportProfileAttribute, type indexV1_SportProfileId as SportProfileId, type indexV1_SportProfileLevel as SportProfileLevel, type indexV1_SportProfilesResponse as SportProfilesResponse, type indexV1_Topic as Topic, type indexV1_UpdateAllNotificationsData as UpdateAllNotificationsData, type indexV1_UpdateAllNotificationsError as UpdateAllNotificationsError, type indexV1_UpdateAllNotificationsErrors as UpdateAllNotificationsErrors, type indexV1_UpdateAllNotificationsResponse as UpdateAllNotificationsResponse, type indexV1_UpdateAllNotificationsResponses as UpdateAllNotificationsResponses, type indexV1_UpdateNotificationData as UpdateNotificationData, type indexV1_UpdateNotificationError as UpdateNotificationError, type indexV1_UpdateNotificationErrors as UpdateNotificationErrors, type indexV1_UpdateNotificationResponse as UpdateNotificationResponse, type indexV1_UpdateNotificationResponses as UpdateNotificationResponses, type indexV1_UpdateNotificationsPreferencesData as UpdateNotificationsPreferencesData, type indexV1_UpdateNotificationsPreferencesError as UpdateNotificationsPreferencesError, type indexV1_UpdateNotificationsPreferencesErrors as UpdateNotificationsPreferencesErrors, type indexV1_UpdateNotificationsPreferencesResponse as UpdateNotificationsPreferencesResponse, type indexV1_UpdateNotificationsPreferencesResponses as UpdateNotificationsPreferencesResponses, type indexV1_UpdatePreferencesRequestBody as UpdatePreferencesRequestBody, type indexV1_UpdateSportProfileLevelRequest as UpdateSportProfileLevelRequest, type indexV1_UpdateUserProfileData as UpdateUserProfileData, type indexV1_UpdateUserProfileError as UpdateUserProfileError, type indexV1_UpdateUserProfileErrors as UpdateUserProfileErrors, type indexV1_UpdateUserProfileResponse as UpdateUserProfileResponse, type indexV1_UpdateUserProfileResponses as UpdateUserProfileResponses, type indexV1_UpdateUserSportProfileLevelData as UpdateUserSportProfileLevelData, type indexV1_UpdateUserSportProfileLevelError as UpdateUserSportProfileLevelError, type indexV1_UpdateUserSportProfileLevelErrors as UpdateUserSportProfileLevelErrors, type indexV1_UpdateUserSportProfileLevelResponse as UpdateUserSportProfileLevelResponse, type indexV1_UpdateUserSportProfileLevelResponses as UpdateUserSportProfileLevelResponses, type indexV1_UpdateUsersProfilesRequest as UpdateUsersProfilesRequest, type indexV1_UserId as UserId, type indexV1_UserIdParam as UserIdParam, type indexV1_UserParticipationStatus as UserParticipationStatus, type indexV1_UserProfile as UserProfile, type indexV1_UserRelation as UserRelation, type indexV1_UsersProfilesPaginatedResponse as UsersProfilesPaginatedResponse, type indexV1_Visibility as Visibility, indexV1_acceptInvitation as acceptInvitation, indexV1_addUserSportProfileLevel as addUserSportProfileLevel, indexV1_client as client, indexV1_createComment as createComment, indexV1_createFacilityOfferOrder as createFacilityOfferOrder, indexV1_createMatchParticipation as createMatchParticipation, indexV1_createPost as createPost, indexV1_createUserSportProfile as createUserSportProfile, indexV1_deleteComment as deleteComment, indexV1_deleteMatchParticipation as deleteMatchParticipation, indexV1_deletePost as deletePost, indexV1_deleteUserSportProfile as deleteUserSportProfile, indexV1_deleteUserSportProfileLevel as deleteUserSportProfileLevel, indexV1_getCommunity as getCommunity, indexV1_getMatch as getMatch, indexV1_getMatchUserPrice as getMatchUserPrice, indexV1_getNotificationById as getNotificationById, indexV1_getNotifications as getNotifications, indexV1_getNotificationsPreferences as getNotificationsPreferences, indexV1_getPost as getPost, indexV1_getRecommendations as getRecommendations, indexV1_getSportAuthorities as getSportAuthorities, indexV1_getUserFacilityPermissions as getUserFacilityPermissions, indexV1_getUserSportProfile as getUserSportProfile, indexV1_getUserSportProfiles as getUserSportProfiles, indexV1_leaveCommunity as leaveCommunity, indexV1_listComments as listComments, indexV1_listCommunities as listCommunities, indexV1_listFacilityOffers as listFacilityOffers, indexV1_listMatches as listMatches, indexV1_listMembers as listMembers, indexV1_listPosts as listPosts, indexV1_markCommentRead as markCommentRead, indexV1_markPostRead as markPostRead, reactQuery_gen as queries, indexV1_registerDevice as registerDevice, schemas_gen as schemas, indexV1_searchUsers as searchUsers, indexV1_updateAllNotifications as updateAllNotifications, indexV1_updateNotification as updateNotification, indexV1_updateNotificationsPreferences as updateNotificationsPreferences, indexV1_updateUserProfile as updateUserProfile, indexV1_updateUserSportProfileLevel as updateUserSportProfileLevel };
8674
9775
  }
8675
9776
 
8676
9777
  export { type ActivityEvent, ActivityServiceV1Service, type AdminOccasionDetails, AnonymousService, ApiClientServiceV1Service, ApiError, AuthorizedService, BookingServiceV1Service, CancelError, CancelablePromise, CheckoutServiceV1Service, CompetitionServiceV1Service, CorsService, type Error$1 as Error, type ExternalServiceProperty, LoyaltyServiceV1Service, MembershipServiceV1Service, type OccasionCourt, OpenAPI, type OpenAPIConfig, type OrderPaymentDetails, type OrderPriceDetails, type OrderSplitPayments, type OrderSplitPaymentsRow, type OrderSplitPrice, type PaymentMethodPaymentRefund, PlaySessionServiceV1Service, type ServiceFeeSettings, UserServiceV1Service, type access, type activitiesResponse, type activity, type activityOccasion, type activityType, type actor, type address, type adyenGiftCardOutcome, type apiClient, type apiClientInput, type apiClientListResponse, type article, type articleMetadata, type authoritySportLevels, type availability, type booking, type bookingGroup, bookingRestriction, type bookingRestrictions, bookingSubType, bookingSubscription, type bookingSubscriptionPayment, type bookingUser, bookingUserStatus, type bookingUsersResponse, type bookingsResponse, type camera, cancellationPolicy, chat, type chatAuth, chatCreation, chatTarget, type checkoutResponse, clientType, type competitionAdminAccount, type config, type configuration, type configurationEntry, type configurationMap, type configurationResource, type coupon, type createBookingEventExternal, type createPromoCode, type dailyQuota, type days, type deleteBookingEventExternal, directionParam, type endTimePriceDetail, type endTimesWithRestrictions, type exposeOccasions, type facilitiesResponse, type facility, type facilityConfiguration, type facilityDetails, type friendRelationResponse, type friendRelationsResponse, type giftCard, type hideFullyBooked, type hours, type internalPaymentMethod, type levelRange, type limitParam, type listOfChats, type listUserRelations, type match, type membershipRequest, type membershipRequestItem, type monthlyUsage, months, type newMessageNotification, notificationChatGroup, type notificationChatMember, notificationEntity, type notificationMessage, type notificationMessageData, type occasionBooking, type occasionParticipant, type offsetParam, type openingHours, type order, type orderSplitBaseResponse, type participants, type payment, type paymentDetails, type paymentInfo, type paymentInterval, type paymentMethodPaymentDetail, type paymentMethods, type paymentType, type paymentsResponse, pendingPayment, type playSession, type playSessionBooking, type playSessionBookingPayment, type playSessionResponse, playSessionSettings, playSessionUser, type playerLevels, 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 };