@matchi/api 0.20260511.1 → 0.20260512.2

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.
@@ -3586,6 +3586,14 @@ type CommunityListResponse = {
3586
3586
  items: Array<CommunityItem>;
3587
3587
  meta: PaginationMeta;
3588
3588
  };
3589
+ type CommunityPayload = {
3590
+ comment_id?: string;
3591
+ community_id?: string;
3592
+ description: string;
3593
+ post_id?: string;
3594
+ title: string;
3595
+ topic: Topic;
3596
+ };
3589
3597
  type CreateCommentRequest = {
3590
3598
  content: string;
3591
3599
  };
@@ -3900,7 +3908,7 @@ type Notification = {
3900
3908
  source_id: string;
3901
3909
  topic: Topic;
3902
3910
  };
3903
- type NotificationPayload = FacilityMessagePayload;
3911
+ type NotificationPayload = FacilityMessagePayload | CommunityPayload;
3904
3912
  type NotificationRequestBody = {
3905
3913
  /**
3906
3914
  * true to mark as read, false to mark as unread
@@ -4049,6 +4057,11 @@ type Recommendation = {
4049
4057
  * Minimum skill level (1-10). Null if not set.
4050
4058
  */
4051
4059
  level_min?: number | null;
4060
+ /**
4061
+ * Whether the activity is restricted to facility members. Null when membership restriction is unknown — callers should treat null as unknown and fall back to existing rendering.
4062
+ *
4063
+ */
4064
+ members_only?: boolean | null;
4052
4065
  /**
4053
4066
  * Display name for the recommendation card.
4054
4067
  */
@@ -4109,6 +4122,7 @@ type RegisterDeviceRequest = {
4109
4122
  };
4110
4123
  declare const Source: {
4111
4124
  readonly FACILITY: "FACILITY";
4125
+ readonly COMMUNITY: "COMMUNITY";
4112
4126
  };
4113
4127
  type Source = typeof Source[keyof typeof Source];
4114
4128
  type SportAuthoritiesResponse = {
@@ -4202,6 +4216,11 @@ type SportProfilesResponse = {
4202
4216
  };
4203
4217
  declare const Topic: {
4204
4218
  readonly FACILITY_MESSAGE: "FACILITY_MESSAGE";
4219
+ readonly COMMUNITY_USER_INVITED: "COMMUNITY_USER_INVITED";
4220
+ readonly COMMUNITY_USER_REMOVED: "COMMUNITY_USER_REMOVED";
4221
+ readonly COMMUNITY_POST_CREATED: "COMMUNITY_POST_CREATED";
4222
+ readonly COMMUNITY_COMMENT_CREATED: "COMMUNITY_COMMENT_CREATED";
4223
+ readonly COMMUNITY_BLOCKED_USER_JOINED: "COMMUNITY_BLOCKED_USER_JOINED";
4205
4224
  };
4206
4225
  type Topic = typeof Topic[keyof typeof Topic];
4207
4226
  type UpdatePreferencesRequestBody = {
@@ -4792,7 +4811,7 @@ type UpdateNotificationsPreferencesData = {
4792
4811
  body: UpdatePreferencesRequestBody;
4793
4812
  path?: never;
4794
4813
  query: {
4795
- topic: Topic;
4814
+ topic: Array<Topic>;
4796
4815
  source?: Source;
4797
4816
  source_id?: string;
4798
4817
  };
@@ -5642,6 +5661,34 @@ declare const CommunityListResponseSchema: {
5642
5661
  readonly required: readonly ["items", "meta"];
5643
5662
  readonly type: "object";
5644
5663
  };
5664
+ declare const CommunityPayloadSchema: {
5665
+ readonly additionalProperties: false;
5666
+ readonly properties: {
5667
+ readonly comment_id: {
5668
+ readonly format: "uuid";
5669
+ readonly type: "string";
5670
+ };
5671
+ readonly community_id: {
5672
+ readonly format: "uuid";
5673
+ readonly type: "string";
5674
+ };
5675
+ readonly description: {
5676
+ readonly type: "string";
5677
+ };
5678
+ readonly post_id: {
5679
+ readonly format: "uuid";
5680
+ readonly type: "string";
5681
+ };
5682
+ readonly title: {
5683
+ readonly type: "string";
5684
+ };
5685
+ readonly topic: {
5686
+ readonly $ref: "#/components/schemas/Topic";
5687
+ };
5688
+ };
5689
+ readonly required: readonly ["topic", "title", "description"];
5690
+ readonly type: "object";
5691
+ };
5645
5692
  declare const CreateCommentRequestSchema: {
5646
5693
  readonly properties: {
5647
5694
  readonly content: {
@@ -5779,6 +5826,7 @@ declare const FacilityListSchema: {
5779
5826
  readonly type: "object";
5780
5827
  };
5781
5828
  declare const FacilityMessagePayloadSchema: {
5829
+ readonly additionalProperties: false;
5782
5830
  readonly properties: {
5783
5831
  readonly description: {
5784
5832
  readonly type: "string";
@@ -6516,6 +6564,8 @@ declare const NotificationSchema: {
6516
6564
  declare const NotificationPayloadSchema: {
6517
6565
  readonly oneOf: readonly [{
6518
6566
  readonly $ref: "#/components/schemas/FacilityMessagePayload";
6567
+ }, {
6568
+ readonly $ref: "#/components/schemas/CommunityPayload";
6519
6569
  }];
6520
6570
  };
6521
6571
  declare const NotificationRequestBodySchema: {
@@ -6871,6 +6921,11 @@ declare const RecommendationSchema: {
6871
6921
  readonly nullable: true;
6872
6922
  readonly type: "integer";
6873
6923
  };
6924
+ readonly members_only: {
6925
+ readonly description: "Whether the activity is restricted to facility members. Null when membership restriction is unknown — callers should treat null as unknown and fall back to existing rendering.\n";
6926
+ readonly nullable: true;
6927
+ readonly type: "boolean";
6928
+ };
6874
6929
  readonly name: {
6875
6930
  readonly description: "Display name for the recommendation card.";
6876
6931
  readonly type: "string";
@@ -6977,7 +7032,7 @@ declare const RegisterDeviceRequestSchema: {
6977
7032
  readonly type: "object";
6978
7033
  };
6979
7034
  declare const SourceSchema: {
6980
- readonly enum: readonly ["FACILITY"];
7035
+ readonly enum: readonly ["FACILITY", "COMMUNITY"];
6981
7036
  readonly type: "string";
6982
7037
  };
6983
7038
  declare const SportAuthoritiesResponseSchema: {
@@ -7132,7 +7187,7 @@ declare const SportProfilesResponseSchema: {
7132
7187
  readonly type: "object";
7133
7188
  };
7134
7189
  declare const TopicSchema: {
7135
- readonly enum: readonly ["FACILITY_MESSAGE"];
7190
+ readonly enum: readonly ["FACILITY_MESSAGE", "COMMUNITY_USER_INVITED", "COMMUNITY_USER_REMOVED", "COMMUNITY_POST_CREATED", "COMMUNITY_COMMENT_CREATED", "COMMUNITY_BLOCKED_USER_JOINED"];
7136
7191
  readonly type: "string";
7137
7192
  };
7138
7193
  declare const UpdatePreferencesRequestBodySchema: {
@@ -7402,6 +7457,7 @@ declare const schemas_gen_CommentListResponseSchema: typeof CommentListResponseS
7402
7457
  declare const schemas_gen_CommentSchema: typeof CommentSchema;
7403
7458
  declare const schemas_gen_CommunityItemSchema: typeof CommunityItemSchema;
7404
7459
  declare const schemas_gen_CommunityListResponseSchema: typeof CommunityListResponseSchema;
7460
+ declare const schemas_gen_CommunityPayloadSchema: typeof CommunityPayloadSchema;
7405
7461
  declare const schemas_gen_CreateCommentRequestSchema: typeof CreateCommentRequestSchema;
7406
7462
  declare const schemas_gen_CreateMatchParticipationRequestSchema: typeof CreateMatchParticipationRequestSchema;
7407
7463
  declare const schemas_gen_CreatePostRequestSchema: typeof CreatePostRequestSchema;
@@ -7491,7 +7547,7 @@ declare const schemas_gen_pkgOpenapiSharedErrorsSchema: typeof pkgOpenapiSharedE
7491
7547
  declare const schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema: typeof pkgOpenapiSharedOffsetPaginatedResultSetSchema;
7492
7548
  declare const schemas_gen_pkgOpenapiSharedProblemDetailsSchema: typeof pkgOpenapiSharedProblemDetailsSchema;
7493
7549
  declare namespace schemas_gen {
7494
- export { schemas_gen_AuthorSchema as AuthorSchema, schemas_gen_ChannelsSchema as ChannelsSchema, schemas_gen_CommentListResponseSchema as CommentListResponseSchema, schemas_gen_CommentSchema as CommentSchema, schemas_gen_CommunityItemSchema as CommunityItemSchema, schemas_gen_CommunityListResponseSchema as CommunityListResponseSchema, schemas_gen_CreateCommentRequestSchema as CreateCommentRequestSchema, schemas_gen_CreateMatchParticipationRequestSchema as CreateMatchParticipationRequestSchema, schemas_gen_CreatePostRequestSchema as CreatePostRequestSchema, schemas_gen_CreateSportProfileLevelRequestSchema as CreateSportProfileLevelRequestSchema, schemas_gen_CreateSportProfileRequestSchema as CreateSportProfileRequestSchema, schemas_gen_ExternalServiceSchema as ExternalServiceSchema, schemas_gen_FacilityListSchema as FacilityListSchema, schemas_gen_FacilityMessagePayloadSchema as FacilityMessagePayloadSchema, schemas_gen_FacilityOfferConditionActivitiesSchema as FacilityOfferConditionActivitiesSchema, schemas_gen_FacilityOfferConditionCourtsSchema as FacilityOfferConditionCourtsSchema, schemas_gen_FacilityOfferConditionDateSchema as FacilityOfferConditionDateSchema, schemas_gen_FacilityOfferConditionHoursinadvanceSchema as FacilityOfferConditionHoursinadvanceSchema, schemas_gen_FacilityOfferConditionSchema as FacilityOfferConditionSchema, schemas_gen_FacilityOfferConditionTimeSchema as FacilityOfferConditionTimeSchema, schemas_gen_FacilityOfferConditionWeekdaysSchema as FacilityOfferConditionWeekdaysSchema, schemas_gen_FacilityOfferListSchema as FacilityOfferListSchema, schemas_gen_FacilityOfferOrderSchema as FacilityOfferOrderSchema, schemas_gen_FacilityOfferSchema as FacilityOfferSchema, schemas_gen_FacilityPermissionSchema as FacilityPermissionSchema, schemas_gen_FacilityPermissionsResponseSchema as FacilityPermissionsResponseSchema, schemas_gen_FacilityPunchCardDataSchema as FacilityPunchCardDataSchema, schemas_gen_FacilitySchema as FacilitySchema, schemas_gen_FacilityValueCardDataSchema as FacilityValueCardDataSchema, schemas_gen_GenderSchema as GenderSchema, schemas_gen_LinkTypeSchema as LinkTypeSchema, schemas_gen_MatchBasePriceSchema as MatchBasePriceSchema, schemas_gen_MatchCourtSchema as MatchCourtSchema, schemas_gen_MatchDetailSchema as MatchDetailSchema, schemas_gen_MatchEventSchema as MatchEventSchema, schemas_gen_MatchListSchema as MatchListSchema, schemas_gen_MatchOccasionDetailSchema as MatchOccasionDetailSchema, schemas_gen_MatchOccasionSchema as MatchOccasionSchema, schemas_gen_MatchParticipantsSchema as MatchParticipantsSchema, schemas_gen_MatchPriceListEntrySchema as MatchPriceListEntrySchema, schemas_gen_MatchSchema as MatchSchema, schemas_gen_MatchStatusSchema as MatchStatusSchema, schemas_gen_MatchUserPriceSchema as MatchUserPriceSchema, schemas_gen_MemberListResponseSchema as MemberListResponseSchema, schemas_gen_MemberRelationSchema as MemberRelationSchema, schemas_gen_MemberSchema as MemberSchema, schemas_gen_MembershipStatusSchema as MembershipStatusSchema, schemas_gen_MetadataSchema as MetadataSchema, schemas_gen_NotificationPayloadSchema as NotificationPayloadSchema, schemas_gen_NotificationRequestBodySchema as NotificationRequestBodySchema, schemas_gen_NotificationSchema as NotificationSchema, schemas_gen_NotificationsFilterSchema as NotificationsFilterSchema, schemas_gen_NotificationsPaginatedResponseSchema as NotificationsPaginatedResponseSchema, schemas_gen_NotificationsSummarySchema as NotificationsSummarySchema, schemas_gen_OffsetPaginatedResultSetSchema as OffsetPaginatedResultSetSchema, schemas_gen_PaginationMetaSchema as PaginationMetaSchema, schemas_gen_ParticipantDetailSchema as ParticipantDetailSchema, schemas_gen_ParticipantSummarySchema as ParticipantSummarySchema, schemas_gen_PatchCommentRequestSchema as PatchCommentRequestSchema, schemas_gen_PatchPostRequestSchema as PatchPostRequestSchema, schemas_gen_PaymentCommandSchema as PaymentCommandSchema, schemas_gen_PaymentDetailsSchema as PaymentDetailsSchema, schemas_gen_PostLinkSchema as PostLinkSchema, schemas_gen_PostListResponseSchema as PostListResponseSchema, schemas_gen_PostSchema as PostSchema, schemas_gen_PostingPermissionSchema as PostingPermissionSchema, schemas_gen_PreferenceSchema as PreferenceSchema, schemas_gen_PreferencesResponseSchema as PreferencesResponseSchema, schemas_gen_RecommendationListSchema as RecommendationListSchema, schemas_gen_RecommendationSchema as RecommendationSchema, schemas_gen_RefundPolicySchema as RefundPolicySchema, schemas_gen_RegisterDeviceRequestSchema as RegisterDeviceRequestSchema, schemas_gen_SourceSchema as SourceSchema, schemas_gen_SportAuthoritiesResponseSchema as SportAuthoritiesResponseSchema, schemas_gen_SportAuthoritySchema as SportAuthoritySchema, schemas_gen_SportLevelSchema as SportLevelSchema, schemas_gen_SportProfileAttributeSchema as SportProfileAttributeSchema, schemas_gen_SportProfileLevelSchema as SportProfileLevelSchema, schemas_gen_SportProfileSchema as SportProfileSchema, schemas_gen_SportProfilesResponseSchema as SportProfilesResponseSchema, schemas_gen_TopicSchema as TopicSchema, schemas_gen_UpdatePreferencesRequestBodySchema as UpdatePreferencesRequestBodySchema, schemas_gen_UpdateSportProfileLevelRequestSchema as UpdateSportProfileLevelRequestSchema, schemas_gen_UpdateUsersProfilesRequestSchema as UpdateUsersProfilesRequestSchema, schemas_gen_UserParticipationStatusSchema as UserParticipationStatusSchema, schemas_gen_UserProfileSchema as UserProfileSchema, schemas_gen_UserRelationSchema as UserRelationSchema, schemas_gen_UsersProfilesPaginatedResponseSchema as UsersProfilesPaginatedResponseSchema, schemas_gen_VisibilitySchema as VisibilitySchema, schemas_gen_pkgOpenapiSharedCursorPaginatedResultSetSchema as pkgOpenapiSharedCursorPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedErrorSchema as pkgOpenapiSharedErrorSchema, schemas_gen_pkgOpenapiSharedErrorsSchema as pkgOpenapiSharedErrorsSchema, schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema as pkgOpenapiSharedOffsetPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedProblemDetailsSchema as pkgOpenapiSharedProblemDetailsSchema };
7550
+ export { schemas_gen_AuthorSchema as AuthorSchema, schemas_gen_ChannelsSchema as ChannelsSchema, schemas_gen_CommentListResponseSchema as CommentListResponseSchema, schemas_gen_CommentSchema as CommentSchema, schemas_gen_CommunityItemSchema as CommunityItemSchema, schemas_gen_CommunityListResponseSchema as CommunityListResponseSchema, schemas_gen_CommunityPayloadSchema as CommunityPayloadSchema, schemas_gen_CreateCommentRequestSchema as CreateCommentRequestSchema, schemas_gen_CreateMatchParticipationRequestSchema as CreateMatchParticipationRequestSchema, schemas_gen_CreatePostRequestSchema as CreatePostRequestSchema, schemas_gen_CreateSportProfileLevelRequestSchema as CreateSportProfileLevelRequestSchema, schemas_gen_CreateSportProfileRequestSchema as CreateSportProfileRequestSchema, schemas_gen_ExternalServiceSchema as ExternalServiceSchema, schemas_gen_FacilityListSchema as FacilityListSchema, schemas_gen_FacilityMessagePayloadSchema as FacilityMessagePayloadSchema, schemas_gen_FacilityOfferConditionActivitiesSchema as FacilityOfferConditionActivitiesSchema, schemas_gen_FacilityOfferConditionCourtsSchema as FacilityOfferConditionCourtsSchema, schemas_gen_FacilityOfferConditionDateSchema as FacilityOfferConditionDateSchema, schemas_gen_FacilityOfferConditionHoursinadvanceSchema as FacilityOfferConditionHoursinadvanceSchema, schemas_gen_FacilityOfferConditionSchema as FacilityOfferConditionSchema, schemas_gen_FacilityOfferConditionTimeSchema as FacilityOfferConditionTimeSchema, schemas_gen_FacilityOfferConditionWeekdaysSchema as FacilityOfferConditionWeekdaysSchema, schemas_gen_FacilityOfferListSchema as FacilityOfferListSchema, schemas_gen_FacilityOfferOrderSchema as FacilityOfferOrderSchema, schemas_gen_FacilityOfferSchema as FacilityOfferSchema, schemas_gen_FacilityPermissionSchema as FacilityPermissionSchema, schemas_gen_FacilityPermissionsResponseSchema as FacilityPermissionsResponseSchema, schemas_gen_FacilityPunchCardDataSchema as FacilityPunchCardDataSchema, schemas_gen_FacilitySchema as FacilitySchema, schemas_gen_FacilityValueCardDataSchema as FacilityValueCardDataSchema, schemas_gen_GenderSchema as GenderSchema, schemas_gen_LinkTypeSchema as LinkTypeSchema, schemas_gen_MatchBasePriceSchema as MatchBasePriceSchema, schemas_gen_MatchCourtSchema as MatchCourtSchema, schemas_gen_MatchDetailSchema as MatchDetailSchema, schemas_gen_MatchEventSchema as MatchEventSchema, schemas_gen_MatchListSchema as MatchListSchema, schemas_gen_MatchOccasionDetailSchema as MatchOccasionDetailSchema, schemas_gen_MatchOccasionSchema as MatchOccasionSchema, schemas_gen_MatchParticipantsSchema as MatchParticipantsSchema, schemas_gen_MatchPriceListEntrySchema as MatchPriceListEntrySchema, schemas_gen_MatchSchema as MatchSchema, schemas_gen_MatchStatusSchema as MatchStatusSchema, schemas_gen_MatchUserPriceSchema as MatchUserPriceSchema, schemas_gen_MemberListResponseSchema as MemberListResponseSchema, schemas_gen_MemberRelationSchema as MemberRelationSchema, schemas_gen_MemberSchema as MemberSchema, schemas_gen_MembershipStatusSchema as MembershipStatusSchema, schemas_gen_MetadataSchema as MetadataSchema, schemas_gen_NotificationPayloadSchema as NotificationPayloadSchema, schemas_gen_NotificationRequestBodySchema as NotificationRequestBodySchema, schemas_gen_NotificationSchema as NotificationSchema, schemas_gen_NotificationsFilterSchema as NotificationsFilterSchema, schemas_gen_NotificationsPaginatedResponseSchema as NotificationsPaginatedResponseSchema, schemas_gen_NotificationsSummarySchema as NotificationsSummarySchema, schemas_gen_OffsetPaginatedResultSetSchema as OffsetPaginatedResultSetSchema, schemas_gen_PaginationMetaSchema as PaginationMetaSchema, schemas_gen_ParticipantDetailSchema as ParticipantDetailSchema, schemas_gen_ParticipantSummarySchema as ParticipantSummarySchema, schemas_gen_PatchCommentRequestSchema as PatchCommentRequestSchema, schemas_gen_PatchPostRequestSchema as PatchPostRequestSchema, schemas_gen_PaymentCommandSchema as PaymentCommandSchema, schemas_gen_PaymentDetailsSchema as PaymentDetailsSchema, schemas_gen_PostLinkSchema as PostLinkSchema, schemas_gen_PostListResponseSchema as PostListResponseSchema, schemas_gen_PostSchema as PostSchema, schemas_gen_PostingPermissionSchema as PostingPermissionSchema, schemas_gen_PreferenceSchema as PreferenceSchema, schemas_gen_PreferencesResponseSchema as PreferencesResponseSchema, schemas_gen_RecommendationListSchema as RecommendationListSchema, schemas_gen_RecommendationSchema as RecommendationSchema, schemas_gen_RefundPolicySchema as RefundPolicySchema, schemas_gen_RegisterDeviceRequestSchema as RegisterDeviceRequestSchema, schemas_gen_SourceSchema as SourceSchema, schemas_gen_SportAuthoritiesResponseSchema as SportAuthoritiesResponseSchema, schemas_gen_SportAuthoritySchema as SportAuthoritySchema, schemas_gen_SportLevelSchema as SportLevelSchema, schemas_gen_SportProfileAttributeSchema as SportProfileAttributeSchema, schemas_gen_SportProfileLevelSchema as SportProfileLevelSchema, schemas_gen_SportProfileSchema as SportProfileSchema, schemas_gen_SportProfilesResponseSchema as SportProfilesResponseSchema, schemas_gen_TopicSchema as TopicSchema, schemas_gen_UpdatePreferencesRequestBodySchema as UpdatePreferencesRequestBodySchema, schemas_gen_UpdateSportProfileLevelRequestSchema as UpdateSportProfileLevelRequestSchema, schemas_gen_UpdateUsersProfilesRequestSchema as UpdateUsersProfilesRequestSchema, schemas_gen_UserParticipationStatusSchema as UserParticipationStatusSchema, schemas_gen_UserProfileSchema as UserProfileSchema, schemas_gen_UserRelationSchema as UserRelationSchema, schemas_gen_UsersProfilesPaginatedResponseSchema as UsersProfilesPaginatedResponseSchema, schemas_gen_VisibilitySchema as VisibilitySchema, schemas_gen_pkgOpenapiSharedCursorPaginatedResultSetSchema as pkgOpenapiSharedCursorPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedErrorSchema as pkgOpenapiSharedErrorSchema, schemas_gen_pkgOpenapiSharedErrorsSchema as pkgOpenapiSharedErrorsSchema, schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema as pkgOpenapiSharedOffsetPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedProblemDetailsSchema as pkgOpenapiSharedProblemDetailsSchema };
7495
7551
  }
7496
7552
 
7497
7553
  type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
@@ -8360,6 +8416,7 @@ type indexV1_CommentListResponse = CommentListResponse;
8360
8416
  type indexV1_CommunityIdParam = CommunityIdParam;
8361
8417
  type indexV1_CommunityItem = CommunityItem;
8362
8418
  type indexV1_CommunityListResponse = CommunityListResponse;
8419
+ type indexV1_CommunityPayload = CommunityPayload;
8363
8420
  type indexV1_CreateCommentRequest = CreateCommentRequest;
8364
8421
  type indexV1_CreateFacilityOfferOrderData = CreateFacilityOfferOrderData;
8365
8422
  type indexV1_CreateFacilityOfferOrderError = CreateFacilityOfferOrderError;
@@ -8613,7 +8670,7 @@ declare const indexV1_updateNotificationsPreferences: typeof updateNotifications
8613
8670
  declare const indexV1_updateUserProfile: typeof updateUserProfile;
8614
8671
  declare const indexV1_updateUserSportProfileLevel: typeof updateUserSportProfileLevel;
8615
8672
  declare namespace indexV1 {
8616
- export { type indexV1_AddUserSportProfileLevelData as AddUserSportProfileLevelData, type indexV1_AddUserSportProfileLevelError as AddUserSportProfileLevelError, type indexV1_AddUserSportProfileLevelErrors as AddUserSportProfileLevelErrors, type indexV1_AddUserSportProfileLevelResponse as AddUserSportProfileLevelResponse, type indexV1_AddUserSportProfileLevelResponses as AddUserSportProfileLevelResponses, type indexV1_Author as Author, type indexV1_AuthoritySlug as AuthoritySlug, type indexV1_Channels as Channels, type indexV1_ClientOptions as ClientOptions, type indexV1_Comment as Comment, type indexV1_CommentIdParam as CommentIdParam, type indexV1_CommentListResponse as CommentListResponse, type indexV1_CommunityIdParam as CommunityIdParam, type indexV1_CommunityItem as CommunityItem, type indexV1_CommunityListResponse as CommunityListResponse, type indexV1_CreateCommentRequest as CreateCommentRequest, type indexV1_CreateFacilityOfferOrderData as CreateFacilityOfferOrderData, type indexV1_CreateFacilityOfferOrderError as CreateFacilityOfferOrderError, type indexV1_CreateFacilityOfferOrderErrors as CreateFacilityOfferOrderErrors, type indexV1_CreateFacilityOfferOrderResponse as CreateFacilityOfferOrderResponse, type indexV1_CreateFacilityOfferOrderResponses as CreateFacilityOfferOrderResponses, type indexV1_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 };
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 };
8617
8674
  }
8618
8675
 
8619
8676
  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 };
@@ -3586,6 +3586,14 @@ type CommunityListResponse = {
3586
3586
  items: Array<CommunityItem>;
3587
3587
  meta: PaginationMeta;
3588
3588
  };
3589
+ type CommunityPayload = {
3590
+ comment_id?: string;
3591
+ community_id?: string;
3592
+ description: string;
3593
+ post_id?: string;
3594
+ title: string;
3595
+ topic: Topic;
3596
+ };
3589
3597
  type CreateCommentRequest = {
3590
3598
  content: string;
3591
3599
  };
@@ -3900,7 +3908,7 @@ type Notification = {
3900
3908
  source_id: string;
3901
3909
  topic: Topic;
3902
3910
  };
3903
- type NotificationPayload = FacilityMessagePayload;
3911
+ type NotificationPayload = FacilityMessagePayload | CommunityPayload;
3904
3912
  type NotificationRequestBody = {
3905
3913
  /**
3906
3914
  * true to mark as read, false to mark as unread
@@ -4049,6 +4057,11 @@ type Recommendation = {
4049
4057
  * Minimum skill level (1-10). Null if not set.
4050
4058
  */
4051
4059
  level_min?: number | null;
4060
+ /**
4061
+ * Whether the activity is restricted to facility members. Null when membership restriction is unknown — callers should treat null as unknown and fall back to existing rendering.
4062
+ *
4063
+ */
4064
+ members_only?: boolean | null;
4052
4065
  /**
4053
4066
  * Display name for the recommendation card.
4054
4067
  */
@@ -4109,6 +4122,7 @@ type RegisterDeviceRequest = {
4109
4122
  };
4110
4123
  declare const Source: {
4111
4124
  readonly FACILITY: "FACILITY";
4125
+ readonly COMMUNITY: "COMMUNITY";
4112
4126
  };
4113
4127
  type Source = typeof Source[keyof typeof Source];
4114
4128
  type SportAuthoritiesResponse = {
@@ -4202,6 +4216,11 @@ type SportProfilesResponse = {
4202
4216
  };
4203
4217
  declare const Topic: {
4204
4218
  readonly FACILITY_MESSAGE: "FACILITY_MESSAGE";
4219
+ readonly COMMUNITY_USER_INVITED: "COMMUNITY_USER_INVITED";
4220
+ readonly COMMUNITY_USER_REMOVED: "COMMUNITY_USER_REMOVED";
4221
+ readonly COMMUNITY_POST_CREATED: "COMMUNITY_POST_CREATED";
4222
+ readonly COMMUNITY_COMMENT_CREATED: "COMMUNITY_COMMENT_CREATED";
4223
+ readonly COMMUNITY_BLOCKED_USER_JOINED: "COMMUNITY_BLOCKED_USER_JOINED";
4205
4224
  };
4206
4225
  type Topic = typeof Topic[keyof typeof Topic];
4207
4226
  type UpdatePreferencesRequestBody = {
@@ -4792,7 +4811,7 @@ type UpdateNotificationsPreferencesData = {
4792
4811
  body: UpdatePreferencesRequestBody;
4793
4812
  path?: never;
4794
4813
  query: {
4795
- topic: Topic;
4814
+ topic: Array<Topic>;
4796
4815
  source?: Source;
4797
4816
  source_id?: string;
4798
4817
  };
@@ -5642,6 +5661,34 @@ declare const CommunityListResponseSchema: {
5642
5661
  readonly required: readonly ["items", "meta"];
5643
5662
  readonly type: "object";
5644
5663
  };
5664
+ declare const CommunityPayloadSchema: {
5665
+ readonly additionalProperties: false;
5666
+ readonly properties: {
5667
+ readonly comment_id: {
5668
+ readonly format: "uuid";
5669
+ readonly type: "string";
5670
+ };
5671
+ readonly community_id: {
5672
+ readonly format: "uuid";
5673
+ readonly type: "string";
5674
+ };
5675
+ readonly description: {
5676
+ readonly type: "string";
5677
+ };
5678
+ readonly post_id: {
5679
+ readonly format: "uuid";
5680
+ readonly type: "string";
5681
+ };
5682
+ readonly title: {
5683
+ readonly type: "string";
5684
+ };
5685
+ readonly topic: {
5686
+ readonly $ref: "#/components/schemas/Topic";
5687
+ };
5688
+ };
5689
+ readonly required: readonly ["topic", "title", "description"];
5690
+ readonly type: "object";
5691
+ };
5645
5692
  declare const CreateCommentRequestSchema: {
5646
5693
  readonly properties: {
5647
5694
  readonly content: {
@@ -5779,6 +5826,7 @@ declare const FacilityListSchema: {
5779
5826
  readonly type: "object";
5780
5827
  };
5781
5828
  declare const FacilityMessagePayloadSchema: {
5829
+ readonly additionalProperties: false;
5782
5830
  readonly properties: {
5783
5831
  readonly description: {
5784
5832
  readonly type: "string";
@@ -6516,6 +6564,8 @@ declare const NotificationSchema: {
6516
6564
  declare const NotificationPayloadSchema: {
6517
6565
  readonly oneOf: readonly [{
6518
6566
  readonly $ref: "#/components/schemas/FacilityMessagePayload";
6567
+ }, {
6568
+ readonly $ref: "#/components/schemas/CommunityPayload";
6519
6569
  }];
6520
6570
  };
6521
6571
  declare const NotificationRequestBodySchema: {
@@ -6871,6 +6921,11 @@ declare const RecommendationSchema: {
6871
6921
  readonly nullable: true;
6872
6922
  readonly type: "integer";
6873
6923
  };
6924
+ readonly members_only: {
6925
+ readonly description: "Whether the activity is restricted to facility members. Null when membership restriction is unknown — callers should treat null as unknown and fall back to existing rendering.\n";
6926
+ readonly nullable: true;
6927
+ readonly type: "boolean";
6928
+ };
6874
6929
  readonly name: {
6875
6930
  readonly description: "Display name for the recommendation card.";
6876
6931
  readonly type: "string";
@@ -6977,7 +7032,7 @@ declare const RegisterDeviceRequestSchema: {
6977
7032
  readonly type: "object";
6978
7033
  };
6979
7034
  declare const SourceSchema: {
6980
- readonly enum: readonly ["FACILITY"];
7035
+ readonly enum: readonly ["FACILITY", "COMMUNITY"];
6981
7036
  readonly type: "string";
6982
7037
  };
6983
7038
  declare const SportAuthoritiesResponseSchema: {
@@ -7132,7 +7187,7 @@ declare const SportProfilesResponseSchema: {
7132
7187
  readonly type: "object";
7133
7188
  };
7134
7189
  declare const TopicSchema: {
7135
- readonly enum: readonly ["FACILITY_MESSAGE"];
7190
+ readonly enum: readonly ["FACILITY_MESSAGE", "COMMUNITY_USER_INVITED", "COMMUNITY_USER_REMOVED", "COMMUNITY_POST_CREATED", "COMMUNITY_COMMENT_CREATED", "COMMUNITY_BLOCKED_USER_JOINED"];
7136
7191
  readonly type: "string";
7137
7192
  };
7138
7193
  declare const UpdatePreferencesRequestBodySchema: {
@@ -7402,6 +7457,7 @@ declare const schemas_gen_CommentListResponseSchema: typeof CommentListResponseS
7402
7457
  declare const schemas_gen_CommentSchema: typeof CommentSchema;
7403
7458
  declare const schemas_gen_CommunityItemSchema: typeof CommunityItemSchema;
7404
7459
  declare const schemas_gen_CommunityListResponseSchema: typeof CommunityListResponseSchema;
7460
+ declare const schemas_gen_CommunityPayloadSchema: typeof CommunityPayloadSchema;
7405
7461
  declare const schemas_gen_CreateCommentRequestSchema: typeof CreateCommentRequestSchema;
7406
7462
  declare const schemas_gen_CreateMatchParticipationRequestSchema: typeof CreateMatchParticipationRequestSchema;
7407
7463
  declare const schemas_gen_CreatePostRequestSchema: typeof CreatePostRequestSchema;
@@ -7491,7 +7547,7 @@ declare const schemas_gen_pkgOpenapiSharedErrorsSchema: typeof pkgOpenapiSharedE
7491
7547
  declare const schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema: typeof pkgOpenapiSharedOffsetPaginatedResultSetSchema;
7492
7548
  declare const schemas_gen_pkgOpenapiSharedProblemDetailsSchema: typeof pkgOpenapiSharedProblemDetailsSchema;
7493
7549
  declare namespace schemas_gen {
7494
- export { schemas_gen_AuthorSchema as AuthorSchema, schemas_gen_ChannelsSchema as ChannelsSchema, schemas_gen_CommentListResponseSchema as CommentListResponseSchema, schemas_gen_CommentSchema as CommentSchema, schemas_gen_CommunityItemSchema as CommunityItemSchema, schemas_gen_CommunityListResponseSchema as CommunityListResponseSchema, schemas_gen_CreateCommentRequestSchema as CreateCommentRequestSchema, schemas_gen_CreateMatchParticipationRequestSchema as CreateMatchParticipationRequestSchema, schemas_gen_CreatePostRequestSchema as CreatePostRequestSchema, schemas_gen_CreateSportProfileLevelRequestSchema as CreateSportProfileLevelRequestSchema, schemas_gen_CreateSportProfileRequestSchema as CreateSportProfileRequestSchema, schemas_gen_ExternalServiceSchema as ExternalServiceSchema, schemas_gen_FacilityListSchema as FacilityListSchema, schemas_gen_FacilityMessagePayloadSchema as FacilityMessagePayloadSchema, schemas_gen_FacilityOfferConditionActivitiesSchema as FacilityOfferConditionActivitiesSchema, schemas_gen_FacilityOfferConditionCourtsSchema as FacilityOfferConditionCourtsSchema, schemas_gen_FacilityOfferConditionDateSchema as FacilityOfferConditionDateSchema, schemas_gen_FacilityOfferConditionHoursinadvanceSchema as FacilityOfferConditionHoursinadvanceSchema, schemas_gen_FacilityOfferConditionSchema as FacilityOfferConditionSchema, schemas_gen_FacilityOfferConditionTimeSchema as FacilityOfferConditionTimeSchema, schemas_gen_FacilityOfferConditionWeekdaysSchema as FacilityOfferConditionWeekdaysSchema, schemas_gen_FacilityOfferListSchema as FacilityOfferListSchema, schemas_gen_FacilityOfferOrderSchema as FacilityOfferOrderSchema, schemas_gen_FacilityOfferSchema as FacilityOfferSchema, schemas_gen_FacilityPermissionSchema as FacilityPermissionSchema, schemas_gen_FacilityPermissionsResponseSchema as FacilityPermissionsResponseSchema, schemas_gen_FacilityPunchCardDataSchema as FacilityPunchCardDataSchema, schemas_gen_FacilitySchema as FacilitySchema, schemas_gen_FacilityValueCardDataSchema as FacilityValueCardDataSchema, schemas_gen_GenderSchema as GenderSchema, schemas_gen_LinkTypeSchema as LinkTypeSchema, schemas_gen_MatchBasePriceSchema as MatchBasePriceSchema, schemas_gen_MatchCourtSchema as MatchCourtSchema, schemas_gen_MatchDetailSchema as MatchDetailSchema, schemas_gen_MatchEventSchema as MatchEventSchema, schemas_gen_MatchListSchema as MatchListSchema, schemas_gen_MatchOccasionDetailSchema as MatchOccasionDetailSchema, schemas_gen_MatchOccasionSchema as MatchOccasionSchema, schemas_gen_MatchParticipantsSchema as MatchParticipantsSchema, schemas_gen_MatchPriceListEntrySchema as MatchPriceListEntrySchema, schemas_gen_MatchSchema as MatchSchema, schemas_gen_MatchStatusSchema as MatchStatusSchema, schemas_gen_MatchUserPriceSchema as MatchUserPriceSchema, schemas_gen_MemberListResponseSchema as MemberListResponseSchema, schemas_gen_MemberRelationSchema as MemberRelationSchema, schemas_gen_MemberSchema as MemberSchema, schemas_gen_MembershipStatusSchema as MembershipStatusSchema, schemas_gen_MetadataSchema as MetadataSchema, schemas_gen_NotificationPayloadSchema as NotificationPayloadSchema, schemas_gen_NotificationRequestBodySchema as NotificationRequestBodySchema, schemas_gen_NotificationSchema as NotificationSchema, schemas_gen_NotificationsFilterSchema as NotificationsFilterSchema, schemas_gen_NotificationsPaginatedResponseSchema as NotificationsPaginatedResponseSchema, schemas_gen_NotificationsSummarySchema as NotificationsSummarySchema, schemas_gen_OffsetPaginatedResultSetSchema as OffsetPaginatedResultSetSchema, schemas_gen_PaginationMetaSchema as PaginationMetaSchema, schemas_gen_ParticipantDetailSchema as ParticipantDetailSchema, schemas_gen_ParticipantSummarySchema as ParticipantSummarySchema, schemas_gen_PatchCommentRequestSchema as PatchCommentRequestSchema, schemas_gen_PatchPostRequestSchema as PatchPostRequestSchema, schemas_gen_PaymentCommandSchema as PaymentCommandSchema, schemas_gen_PaymentDetailsSchema as PaymentDetailsSchema, schemas_gen_PostLinkSchema as PostLinkSchema, schemas_gen_PostListResponseSchema as PostListResponseSchema, schemas_gen_PostSchema as PostSchema, schemas_gen_PostingPermissionSchema as PostingPermissionSchema, schemas_gen_PreferenceSchema as PreferenceSchema, schemas_gen_PreferencesResponseSchema as PreferencesResponseSchema, schemas_gen_RecommendationListSchema as RecommendationListSchema, schemas_gen_RecommendationSchema as RecommendationSchema, schemas_gen_RefundPolicySchema as RefundPolicySchema, schemas_gen_RegisterDeviceRequestSchema as RegisterDeviceRequestSchema, schemas_gen_SourceSchema as SourceSchema, schemas_gen_SportAuthoritiesResponseSchema as SportAuthoritiesResponseSchema, schemas_gen_SportAuthoritySchema as SportAuthoritySchema, schemas_gen_SportLevelSchema as SportLevelSchema, schemas_gen_SportProfileAttributeSchema as SportProfileAttributeSchema, schemas_gen_SportProfileLevelSchema as SportProfileLevelSchema, schemas_gen_SportProfileSchema as SportProfileSchema, schemas_gen_SportProfilesResponseSchema as SportProfilesResponseSchema, schemas_gen_TopicSchema as TopicSchema, schemas_gen_UpdatePreferencesRequestBodySchema as UpdatePreferencesRequestBodySchema, schemas_gen_UpdateSportProfileLevelRequestSchema as UpdateSportProfileLevelRequestSchema, schemas_gen_UpdateUsersProfilesRequestSchema as UpdateUsersProfilesRequestSchema, schemas_gen_UserParticipationStatusSchema as UserParticipationStatusSchema, schemas_gen_UserProfileSchema as UserProfileSchema, schemas_gen_UserRelationSchema as UserRelationSchema, schemas_gen_UsersProfilesPaginatedResponseSchema as UsersProfilesPaginatedResponseSchema, schemas_gen_VisibilitySchema as VisibilitySchema, schemas_gen_pkgOpenapiSharedCursorPaginatedResultSetSchema as pkgOpenapiSharedCursorPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedErrorSchema as pkgOpenapiSharedErrorSchema, schemas_gen_pkgOpenapiSharedErrorsSchema as pkgOpenapiSharedErrorsSchema, schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema as pkgOpenapiSharedOffsetPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedProblemDetailsSchema as pkgOpenapiSharedProblemDetailsSchema };
7550
+ export { schemas_gen_AuthorSchema as AuthorSchema, schemas_gen_ChannelsSchema as ChannelsSchema, schemas_gen_CommentListResponseSchema as CommentListResponseSchema, schemas_gen_CommentSchema as CommentSchema, schemas_gen_CommunityItemSchema as CommunityItemSchema, schemas_gen_CommunityListResponseSchema as CommunityListResponseSchema, schemas_gen_CommunityPayloadSchema as CommunityPayloadSchema, schemas_gen_CreateCommentRequestSchema as CreateCommentRequestSchema, schemas_gen_CreateMatchParticipationRequestSchema as CreateMatchParticipationRequestSchema, schemas_gen_CreatePostRequestSchema as CreatePostRequestSchema, schemas_gen_CreateSportProfileLevelRequestSchema as CreateSportProfileLevelRequestSchema, schemas_gen_CreateSportProfileRequestSchema as CreateSportProfileRequestSchema, schemas_gen_ExternalServiceSchema as ExternalServiceSchema, schemas_gen_FacilityListSchema as FacilityListSchema, schemas_gen_FacilityMessagePayloadSchema as FacilityMessagePayloadSchema, schemas_gen_FacilityOfferConditionActivitiesSchema as FacilityOfferConditionActivitiesSchema, schemas_gen_FacilityOfferConditionCourtsSchema as FacilityOfferConditionCourtsSchema, schemas_gen_FacilityOfferConditionDateSchema as FacilityOfferConditionDateSchema, schemas_gen_FacilityOfferConditionHoursinadvanceSchema as FacilityOfferConditionHoursinadvanceSchema, schemas_gen_FacilityOfferConditionSchema as FacilityOfferConditionSchema, schemas_gen_FacilityOfferConditionTimeSchema as FacilityOfferConditionTimeSchema, schemas_gen_FacilityOfferConditionWeekdaysSchema as FacilityOfferConditionWeekdaysSchema, schemas_gen_FacilityOfferListSchema as FacilityOfferListSchema, schemas_gen_FacilityOfferOrderSchema as FacilityOfferOrderSchema, schemas_gen_FacilityOfferSchema as FacilityOfferSchema, schemas_gen_FacilityPermissionSchema as FacilityPermissionSchema, schemas_gen_FacilityPermissionsResponseSchema as FacilityPermissionsResponseSchema, schemas_gen_FacilityPunchCardDataSchema as FacilityPunchCardDataSchema, schemas_gen_FacilitySchema as FacilitySchema, schemas_gen_FacilityValueCardDataSchema as FacilityValueCardDataSchema, schemas_gen_GenderSchema as GenderSchema, schemas_gen_LinkTypeSchema as LinkTypeSchema, schemas_gen_MatchBasePriceSchema as MatchBasePriceSchema, schemas_gen_MatchCourtSchema as MatchCourtSchema, schemas_gen_MatchDetailSchema as MatchDetailSchema, schemas_gen_MatchEventSchema as MatchEventSchema, schemas_gen_MatchListSchema as MatchListSchema, schemas_gen_MatchOccasionDetailSchema as MatchOccasionDetailSchema, schemas_gen_MatchOccasionSchema as MatchOccasionSchema, schemas_gen_MatchParticipantsSchema as MatchParticipantsSchema, schemas_gen_MatchPriceListEntrySchema as MatchPriceListEntrySchema, schemas_gen_MatchSchema as MatchSchema, schemas_gen_MatchStatusSchema as MatchStatusSchema, schemas_gen_MatchUserPriceSchema as MatchUserPriceSchema, schemas_gen_MemberListResponseSchema as MemberListResponseSchema, schemas_gen_MemberRelationSchema as MemberRelationSchema, schemas_gen_MemberSchema as MemberSchema, schemas_gen_MembershipStatusSchema as MembershipStatusSchema, schemas_gen_MetadataSchema as MetadataSchema, schemas_gen_NotificationPayloadSchema as NotificationPayloadSchema, schemas_gen_NotificationRequestBodySchema as NotificationRequestBodySchema, schemas_gen_NotificationSchema as NotificationSchema, schemas_gen_NotificationsFilterSchema as NotificationsFilterSchema, schemas_gen_NotificationsPaginatedResponseSchema as NotificationsPaginatedResponseSchema, schemas_gen_NotificationsSummarySchema as NotificationsSummarySchema, schemas_gen_OffsetPaginatedResultSetSchema as OffsetPaginatedResultSetSchema, schemas_gen_PaginationMetaSchema as PaginationMetaSchema, schemas_gen_ParticipantDetailSchema as ParticipantDetailSchema, schemas_gen_ParticipantSummarySchema as ParticipantSummarySchema, schemas_gen_PatchCommentRequestSchema as PatchCommentRequestSchema, schemas_gen_PatchPostRequestSchema as PatchPostRequestSchema, schemas_gen_PaymentCommandSchema as PaymentCommandSchema, schemas_gen_PaymentDetailsSchema as PaymentDetailsSchema, schemas_gen_PostLinkSchema as PostLinkSchema, schemas_gen_PostListResponseSchema as PostListResponseSchema, schemas_gen_PostSchema as PostSchema, schemas_gen_PostingPermissionSchema as PostingPermissionSchema, schemas_gen_PreferenceSchema as PreferenceSchema, schemas_gen_PreferencesResponseSchema as PreferencesResponseSchema, schemas_gen_RecommendationListSchema as RecommendationListSchema, schemas_gen_RecommendationSchema as RecommendationSchema, schemas_gen_RefundPolicySchema as RefundPolicySchema, schemas_gen_RegisterDeviceRequestSchema as RegisterDeviceRequestSchema, schemas_gen_SourceSchema as SourceSchema, schemas_gen_SportAuthoritiesResponseSchema as SportAuthoritiesResponseSchema, schemas_gen_SportAuthoritySchema as SportAuthoritySchema, schemas_gen_SportLevelSchema as SportLevelSchema, schemas_gen_SportProfileAttributeSchema as SportProfileAttributeSchema, schemas_gen_SportProfileLevelSchema as SportProfileLevelSchema, schemas_gen_SportProfileSchema as SportProfileSchema, schemas_gen_SportProfilesResponseSchema as SportProfilesResponseSchema, schemas_gen_TopicSchema as TopicSchema, schemas_gen_UpdatePreferencesRequestBodySchema as UpdatePreferencesRequestBodySchema, schemas_gen_UpdateSportProfileLevelRequestSchema as UpdateSportProfileLevelRequestSchema, schemas_gen_UpdateUsersProfilesRequestSchema as UpdateUsersProfilesRequestSchema, schemas_gen_UserParticipationStatusSchema as UserParticipationStatusSchema, schemas_gen_UserProfileSchema as UserProfileSchema, schemas_gen_UserRelationSchema as UserRelationSchema, schemas_gen_UsersProfilesPaginatedResponseSchema as UsersProfilesPaginatedResponseSchema, schemas_gen_VisibilitySchema as VisibilitySchema, schemas_gen_pkgOpenapiSharedCursorPaginatedResultSetSchema as pkgOpenapiSharedCursorPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedErrorSchema as pkgOpenapiSharedErrorSchema, schemas_gen_pkgOpenapiSharedErrorsSchema as pkgOpenapiSharedErrorsSchema, schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema as pkgOpenapiSharedOffsetPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedProblemDetailsSchema as pkgOpenapiSharedProblemDetailsSchema };
7495
7551
  }
7496
7552
 
7497
7553
  type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
@@ -8360,6 +8416,7 @@ type indexV1_CommentListResponse = CommentListResponse;
8360
8416
  type indexV1_CommunityIdParam = CommunityIdParam;
8361
8417
  type indexV1_CommunityItem = CommunityItem;
8362
8418
  type indexV1_CommunityListResponse = CommunityListResponse;
8419
+ type indexV1_CommunityPayload = CommunityPayload;
8363
8420
  type indexV1_CreateCommentRequest = CreateCommentRequest;
8364
8421
  type indexV1_CreateFacilityOfferOrderData = CreateFacilityOfferOrderData;
8365
8422
  type indexV1_CreateFacilityOfferOrderError = CreateFacilityOfferOrderError;
@@ -8613,7 +8670,7 @@ declare const indexV1_updateNotificationsPreferences: typeof updateNotifications
8613
8670
  declare const indexV1_updateUserProfile: typeof updateUserProfile;
8614
8671
  declare const indexV1_updateUserSportProfileLevel: typeof updateUserSportProfileLevel;
8615
8672
  declare namespace indexV1 {
8616
- export { type indexV1_AddUserSportProfileLevelData as AddUserSportProfileLevelData, type indexV1_AddUserSportProfileLevelError as AddUserSportProfileLevelError, type indexV1_AddUserSportProfileLevelErrors as AddUserSportProfileLevelErrors, type indexV1_AddUserSportProfileLevelResponse as AddUserSportProfileLevelResponse, type indexV1_AddUserSportProfileLevelResponses as AddUserSportProfileLevelResponses, type indexV1_Author as Author, type indexV1_AuthoritySlug as AuthoritySlug, type indexV1_Channels as Channels, type indexV1_ClientOptions as ClientOptions, type indexV1_Comment as Comment, type indexV1_CommentIdParam as CommentIdParam, type indexV1_CommentListResponse as CommentListResponse, type indexV1_CommunityIdParam as CommunityIdParam, type indexV1_CommunityItem as CommunityItem, type indexV1_CommunityListResponse as CommunityListResponse, type indexV1_CreateCommentRequest as CreateCommentRequest, type indexV1_CreateFacilityOfferOrderData as CreateFacilityOfferOrderData, type indexV1_CreateFacilityOfferOrderError as CreateFacilityOfferOrderError, type indexV1_CreateFacilityOfferOrderErrors as CreateFacilityOfferOrderErrors, type indexV1_CreateFacilityOfferOrderResponse as CreateFacilityOfferOrderResponse, type indexV1_CreateFacilityOfferOrderResponses as CreateFacilityOfferOrderResponses, type indexV1_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 };
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 };
8617
8674
  }
8618
8675
 
8619
8676
  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 };