@matchi/api 0.20260424.2 → 0.20260427.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4430,23 +4430,23 @@ type ListMatchesData = {
4430
4430
  /**
4431
4431
  * Start of date range (ISO 8601 UTC)
4432
4432
  */
4433
- start_date_time: string;
4433
+ startDateTime: string;
4434
4434
  /**
4435
4435
  * End of date range (ISO 8601 UTC)
4436
4436
  */
4437
- end_date_time: string;
4437
+ endDateTime: string;
4438
4438
  /**
4439
4439
  * Filter by facility IDs
4440
4440
  */
4441
- facility_ids?: Array<number>;
4441
+ facilityIds?: Array<number>;
4442
4442
  /**
4443
4443
  * Filter by sport IDs
4444
4444
  */
4445
- sport_ids?: Array<number>;
4445
+ sportIds?: Array<number>;
4446
4446
  /**
4447
4447
  * Minimum number of available spots
4448
4448
  */
4449
- available_spots?: number;
4449
+ availableSpots?: number;
4450
4450
  /**
4451
4451
  * Number of items to skip before returning the results.
4452
4452
  */
@@ -4517,7 +4517,7 @@ type GetMatchUserPriceData = {
4517
4517
  userId: string;
4518
4518
  };
4519
4519
  query?: {
4520
- promo_code?: string;
4520
+ promoCode?: string;
4521
4521
  };
4522
4522
  url: '/matches/{matchId}/prices/{userId}';
4523
4523
  };
@@ -5092,40 +5092,6 @@ type GetRecommendationsResponses = {
5092
5092
  200: RecommendationList;
5093
5093
  };
5094
5094
  type GetRecommendationsResponse = GetRecommendationsResponses[keyof GetRecommendationsResponses];
5095
- type ListPlayerMatchResultsData = {
5096
- body?: never;
5097
- path: {
5098
- /**
5099
- * The user ID
5100
- */
5101
- user_id: string;
5102
- };
5103
- query?: {
5104
- limit?: number;
5105
- offset?: number;
5106
- };
5107
- url: '/users/{user_id}/match-results';
5108
- };
5109
- type ListPlayerMatchResultsErrors = {
5110
- /**
5111
- * The requestor is not authorized to perform this operation on the resource.
5112
- */
5113
- 403: PkgOpenapiSharedProblemDetails;
5114
- /**
5115
- * The server encountered an unexpected error
5116
- */
5117
- 500: PkgOpenapiSharedProblemDetails;
5118
- };
5119
- type ListPlayerMatchResultsError = ListPlayerMatchResultsErrors[keyof ListPlayerMatchResultsErrors];
5120
- type ListPlayerMatchResultsResponses = {
5121
- /**
5122
- * Match results
5123
- */
5124
- 200: {
5125
- [key: string]: unknown;
5126
- };
5127
- };
5128
- type ListPlayerMatchResultsResponse = ListPlayerMatchResultsResponses[keyof ListPlayerMatchResultsResponses];
5129
5095
  type GetUserSportProfilesData = {
5130
5096
  body?: never;
5131
5097
  path: {
@@ -7466,15 +7432,6 @@ declare const updateUserProfile: <ThrowOnError extends boolean = false>(options:
7466
7432
  *
7467
7433
  */
7468
7434
  declare const getRecommendations: <ThrowOnError extends boolean = false>(options: Options<GetRecommendationsData, ThrowOnError>) => RequestResult<GetRecommendationsResponses, GetRecommendationsErrors, ThrowOnError, "fields">;
7469
- /**
7470
- * List match results for a player
7471
- *
7472
- * Returns paginated match history for the authenticated player.
7473
- * The user_id in the path must match the authenticated user's ID.
7474
- * Results include matches from all sources (tournaments, admin matches, public matches).
7475
- *
7476
- */
7477
- declare const listPlayerMatchResults: <ThrowOnError extends boolean = false>(options: Options<ListPlayerMatchResultsData, ThrowOnError>) => RequestResult<ListPlayerMatchResultsResponses, ListPlayerMatchResultsErrors, ThrowOnError, "fields">;
7478
7435
  /**
7479
7436
  * List sport profiles for a user
7480
7437
  *
@@ -8021,86 +7978,6 @@ declare const getRecommendationsInfiniteOptions: (options: Options<GetRecommenda
8021
7978
  [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
8022
7979
  };
8023
7980
  };
8024
- declare const listPlayerMatchResultsQueryKey: (options: Options<ListPlayerMatchResultsData>) => [Pick<Options<ListPlayerMatchResultsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8025
- _id: string;
8026
- _infinite?: boolean;
8027
- tags?: ReadonlyArray<string>;
8028
- }];
8029
- /**
8030
- * List match results for a player
8031
- *
8032
- * Returns paginated match history for the authenticated player.
8033
- * The user_id in the path must match the authenticated user's ID.
8034
- * Results include matches from all sources (tournaments, admin matches, public matches).
8035
- *
8036
- */
8037
- declare const listPlayerMatchResultsOptions: (options: Options<ListPlayerMatchResultsData>) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<{
8038
- [key: string]: unknown;
8039
- }, PkgOpenapiSharedProblemDetails, {
8040
- [key: string]: unknown;
8041
- }, [Pick<Options<ListPlayerMatchResultsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8042
- _id: string;
8043
- _infinite?: boolean;
8044
- tags?: ReadonlyArray<string>;
8045
- }]>, "queryFn"> & {
8046
- queryFn?: _tanstack_react_query.QueryFunction<{
8047
- [key: string]: unknown;
8048
- }, [Pick<Options<ListPlayerMatchResultsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8049
- _id: string;
8050
- _infinite?: boolean;
8051
- tags?: ReadonlyArray<string>;
8052
- }], never> | undefined;
8053
- } & {
8054
- queryKey: [Pick<Options<ListPlayerMatchResultsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8055
- _id: string;
8056
- _infinite?: boolean;
8057
- tags?: ReadonlyArray<string>;
8058
- }] & {
8059
- [dataTagSymbol]: {
8060
- [key: string]: unknown;
8061
- };
8062
- [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
8063
- };
8064
- };
8065
- declare const listPlayerMatchResultsInfiniteQueryKey: (options: Options<ListPlayerMatchResultsData>) => QueryKey<Options<ListPlayerMatchResultsData>>;
8066
- /**
8067
- * List match results for a player
8068
- *
8069
- * Returns paginated match history for the authenticated player.
8070
- * The user_id in the path must match the authenticated user's ID.
8071
- * Results include matches from all sources (tournaments, admin matches, public matches).
8072
- *
8073
- */
8074
- declare const listPlayerMatchResultsInfiniteOptions: (options: Options<ListPlayerMatchResultsData>) => _tanstack_react_query.UseInfiniteQueryOptions<{
8075
- [key: string]: unknown;
8076
- }, PkgOpenapiSharedProblemDetails, InfiniteData<{
8077
- [key: string]: unknown;
8078
- }, unknown>, QueryKey<Options<ListPlayerMatchResultsData>>, number | Pick<Pick<Options<ListPlayerMatchResultsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8079
- _id: string;
8080
- _infinite?: boolean;
8081
- tags?: ReadonlyArray<string>;
8082
- }, "query" | "body" | "headers" | "path">> & {
8083
- initialData: InfiniteData<{
8084
- [key: string]: unknown;
8085
- }, number | Pick<Pick<Options<ListPlayerMatchResultsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8086
- _id: string;
8087
- _infinite?: boolean;
8088
- tags?: ReadonlyArray<string>;
8089
- }, "query" | "body" | "headers" | "path">> | (() => InfiniteData<{
8090
- [key: string]: unknown;
8091
- }, number | Pick<Pick<Options<ListPlayerMatchResultsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8092
- _id: string;
8093
- _infinite?: boolean;
8094
- tags?: ReadonlyArray<string>;
8095
- }, "query" | "body" | "headers" | "path">>) | undefined;
8096
- } & {
8097
- queryKey: QueryKey<Options<ListPlayerMatchResultsData>> & {
8098
- [dataTagSymbol]: InfiniteData<{
8099
- [key: string]: unknown;
8100
- }, unknown>;
8101
- [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
8102
- };
8103
- };
8104
7981
  declare const getUserSportProfilesQueryKey: (options: Options<GetUserSportProfilesData>) => [Pick<Options<GetUserSportProfilesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8105
7982
  _id: string;
8106
7983
  _infinite?: boolean;
@@ -8230,10 +8107,6 @@ declare const reactQuery_gen_listMatchesInfiniteOptions: typeof listMatchesInfin
8230
8107
  declare const reactQuery_gen_listMatchesInfiniteQueryKey: typeof listMatchesInfiniteQueryKey;
8231
8108
  declare const reactQuery_gen_listMatchesOptions: typeof listMatchesOptions;
8232
8109
  declare const reactQuery_gen_listMatchesQueryKey: typeof listMatchesQueryKey;
8233
- declare const reactQuery_gen_listPlayerMatchResultsInfiniteOptions: typeof listPlayerMatchResultsInfiniteOptions;
8234
- declare const reactQuery_gen_listPlayerMatchResultsInfiniteQueryKey: typeof listPlayerMatchResultsInfiniteQueryKey;
8235
- declare const reactQuery_gen_listPlayerMatchResultsOptions: typeof listPlayerMatchResultsOptions;
8236
- declare const reactQuery_gen_listPlayerMatchResultsQueryKey: typeof listPlayerMatchResultsQueryKey;
8237
8110
  declare const reactQuery_gen_registerDeviceMutation: typeof registerDeviceMutation;
8238
8111
  declare const reactQuery_gen_searchUsersInfiniteOptions: typeof searchUsersInfiniteOptions;
8239
8112
  declare const reactQuery_gen_searchUsersInfiniteQueryKey: typeof searchUsersInfiniteQueryKey;
@@ -8245,7 +8118,7 @@ declare const reactQuery_gen_updateNotificationsPreferencesMutation: typeof upda
8245
8118
  declare const reactQuery_gen_updateUserProfileMutation: typeof updateUserProfileMutation;
8246
8119
  declare const reactQuery_gen_updateUserSportProfileLevelMutation: typeof updateUserSportProfileLevelMutation;
8247
8120
  declare namespace reactQuery_gen {
8248
- export { type reactQuery_gen_QueryKey as QueryKey, reactQuery_gen_addUserSportProfileLevelMutation as addUserSportProfileLevelMutation, reactQuery_gen_createFacilityOfferOrderMutation as createFacilityOfferOrderMutation, reactQuery_gen_createUserSportProfileMutation as createUserSportProfileMutation, reactQuery_gen_deleteUserSportProfileLevelMutation as deleteUserSportProfileLevelMutation, reactQuery_gen_deleteUserSportProfileMutation as deleteUserSportProfileMutation, reactQuery_gen_getMatchOptions as getMatchOptions, reactQuery_gen_getMatchQueryKey as getMatchQueryKey, reactQuery_gen_getMatchUserPriceOptions as getMatchUserPriceOptions, reactQuery_gen_getMatchUserPriceQueryKey as getMatchUserPriceQueryKey, reactQuery_gen_getNotificationByIdOptions as getNotificationByIdOptions, reactQuery_gen_getNotificationByIdQueryKey as getNotificationByIdQueryKey, reactQuery_gen_getNotificationsInfiniteOptions as getNotificationsInfiniteOptions, reactQuery_gen_getNotificationsInfiniteQueryKey as getNotificationsInfiniteQueryKey, reactQuery_gen_getNotificationsOptions as getNotificationsOptions, reactQuery_gen_getNotificationsPreferencesOptions as getNotificationsPreferencesOptions, reactQuery_gen_getNotificationsPreferencesQueryKey as getNotificationsPreferencesQueryKey, reactQuery_gen_getNotificationsQueryKey as getNotificationsQueryKey, reactQuery_gen_getRecommendationsInfiniteOptions as getRecommendationsInfiniteOptions, reactQuery_gen_getRecommendationsInfiniteQueryKey as getRecommendationsInfiniteQueryKey, reactQuery_gen_getRecommendationsOptions as getRecommendationsOptions, reactQuery_gen_getRecommendationsQueryKey as getRecommendationsQueryKey, reactQuery_gen_getSportAuthoritiesOptions as getSportAuthoritiesOptions, reactQuery_gen_getSportAuthoritiesQueryKey as getSportAuthoritiesQueryKey, reactQuery_gen_getUserFacilityPermissionsOptions as getUserFacilityPermissionsOptions, reactQuery_gen_getUserFacilityPermissionsQueryKey as getUserFacilityPermissionsQueryKey, reactQuery_gen_getUserSportProfileOptions as getUserSportProfileOptions, reactQuery_gen_getUserSportProfileQueryKey as getUserSportProfileQueryKey, reactQuery_gen_getUserSportProfilesOptions as getUserSportProfilesOptions, reactQuery_gen_getUserSportProfilesQueryKey as getUserSportProfilesQueryKey, reactQuery_gen_listFacilityOffersInfiniteOptions as listFacilityOffersInfiniteOptions, reactQuery_gen_listFacilityOffersInfiniteQueryKey as listFacilityOffersInfiniteQueryKey, reactQuery_gen_listFacilityOffersOptions as listFacilityOffersOptions, reactQuery_gen_listFacilityOffersQueryKey as listFacilityOffersQueryKey, reactQuery_gen_listMatchesInfiniteOptions as listMatchesInfiniteOptions, reactQuery_gen_listMatchesInfiniteQueryKey as listMatchesInfiniteQueryKey, reactQuery_gen_listMatchesOptions as listMatchesOptions, reactQuery_gen_listMatchesQueryKey as listMatchesQueryKey, reactQuery_gen_listPlayerMatchResultsInfiniteOptions as listPlayerMatchResultsInfiniteOptions, reactQuery_gen_listPlayerMatchResultsInfiniteQueryKey as listPlayerMatchResultsInfiniteQueryKey, reactQuery_gen_listPlayerMatchResultsOptions as listPlayerMatchResultsOptions, reactQuery_gen_listPlayerMatchResultsQueryKey as listPlayerMatchResultsQueryKey, reactQuery_gen_registerDeviceMutation as registerDeviceMutation, reactQuery_gen_searchUsersInfiniteOptions as searchUsersInfiniteOptions, reactQuery_gen_searchUsersInfiniteQueryKey as searchUsersInfiniteQueryKey, reactQuery_gen_searchUsersOptions as searchUsersOptions, reactQuery_gen_searchUsersQueryKey as searchUsersQueryKey, reactQuery_gen_updateAllNotificationsMutation as updateAllNotificationsMutation, reactQuery_gen_updateNotificationMutation as updateNotificationMutation, reactQuery_gen_updateNotificationsPreferencesMutation as updateNotificationsPreferencesMutation, reactQuery_gen_updateUserProfileMutation as updateUserProfileMutation, reactQuery_gen_updateUserSportProfileLevelMutation as updateUserSportProfileLevelMutation };
8121
+ export { type reactQuery_gen_QueryKey as QueryKey, reactQuery_gen_addUserSportProfileLevelMutation as addUserSportProfileLevelMutation, reactQuery_gen_createFacilityOfferOrderMutation as createFacilityOfferOrderMutation, reactQuery_gen_createUserSportProfileMutation as createUserSportProfileMutation, reactQuery_gen_deleteUserSportProfileLevelMutation as deleteUserSportProfileLevelMutation, reactQuery_gen_deleteUserSportProfileMutation as deleteUserSportProfileMutation, reactQuery_gen_getMatchOptions as getMatchOptions, reactQuery_gen_getMatchQueryKey as getMatchQueryKey, reactQuery_gen_getMatchUserPriceOptions as getMatchUserPriceOptions, reactQuery_gen_getMatchUserPriceQueryKey as getMatchUserPriceQueryKey, reactQuery_gen_getNotificationByIdOptions as getNotificationByIdOptions, reactQuery_gen_getNotificationByIdQueryKey as getNotificationByIdQueryKey, reactQuery_gen_getNotificationsInfiniteOptions as getNotificationsInfiniteOptions, reactQuery_gen_getNotificationsInfiniteQueryKey as getNotificationsInfiniteQueryKey, reactQuery_gen_getNotificationsOptions as getNotificationsOptions, reactQuery_gen_getNotificationsPreferencesOptions as getNotificationsPreferencesOptions, reactQuery_gen_getNotificationsPreferencesQueryKey as getNotificationsPreferencesQueryKey, reactQuery_gen_getNotificationsQueryKey as getNotificationsQueryKey, reactQuery_gen_getRecommendationsInfiniteOptions as getRecommendationsInfiniteOptions, reactQuery_gen_getRecommendationsInfiniteQueryKey as getRecommendationsInfiniteQueryKey, reactQuery_gen_getRecommendationsOptions as getRecommendationsOptions, reactQuery_gen_getRecommendationsQueryKey as getRecommendationsQueryKey, reactQuery_gen_getSportAuthoritiesOptions as getSportAuthoritiesOptions, reactQuery_gen_getSportAuthoritiesQueryKey as getSportAuthoritiesQueryKey, reactQuery_gen_getUserFacilityPermissionsOptions as getUserFacilityPermissionsOptions, reactQuery_gen_getUserFacilityPermissionsQueryKey as getUserFacilityPermissionsQueryKey, reactQuery_gen_getUserSportProfileOptions as getUserSportProfileOptions, reactQuery_gen_getUserSportProfileQueryKey as getUserSportProfileQueryKey, reactQuery_gen_getUserSportProfilesOptions as getUserSportProfilesOptions, reactQuery_gen_getUserSportProfilesQueryKey as getUserSportProfilesQueryKey, reactQuery_gen_listFacilityOffersInfiniteOptions as listFacilityOffersInfiniteOptions, reactQuery_gen_listFacilityOffersInfiniteQueryKey as listFacilityOffersInfiniteQueryKey, reactQuery_gen_listFacilityOffersOptions as listFacilityOffersOptions, reactQuery_gen_listFacilityOffersQueryKey as listFacilityOffersQueryKey, reactQuery_gen_listMatchesInfiniteOptions as listMatchesInfiniteOptions, reactQuery_gen_listMatchesInfiniteQueryKey as listMatchesInfiniteQueryKey, reactQuery_gen_listMatchesOptions as listMatchesOptions, reactQuery_gen_listMatchesQueryKey as listMatchesQueryKey, reactQuery_gen_registerDeviceMutation as registerDeviceMutation, reactQuery_gen_searchUsersInfiniteOptions as searchUsersInfiniteOptions, reactQuery_gen_searchUsersInfiniteQueryKey as searchUsersInfiniteQueryKey, reactQuery_gen_searchUsersOptions as searchUsersOptions, reactQuery_gen_searchUsersQueryKey as searchUsersQueryKey, reactQuery_gen_updateAllNotificationsMutation as updateAllNotificationsMutation, reactQuery_gen_updateNotificationMutation as updateNotificationMutation, reactQuery_gen_updateNotificationsPreferencesMutation as updateNotificationsPreferencesMutation, reactQuery_gen_updateUserProfileMutation as updateUserProfileMutation, reactQuery_gen_updateUserSportProfileLevelMutation as updateUserSportProfileLevelMutation };
8249
8122
  }
8250
8123
 
8251
8124
  type indexV1_AddUserSportProfileLevelData = AddUserSportProfileLevelData;
@@ -8368,11 +8241,6 @@ type indexV1_ListMatchesError = ListMatchesError;
8368
8241
  type indexV1_ListMatchesErrors = ListMatchesErrors;
8369
8242
  type indexV1_ListMatchesResponse = ListMatchesResponse;
8370
8243
  type indexV1_ListMatchesResponses = ListMatchesResponses;
8371
- type indexV1_ListPlayerMatchResultsData = ListPlayerMatchResultsData;
8372
- type indexV1_ListPlayerMatchResultsError = ListPlayerMatchResultsError;
8373
- type indexV1_ListPlayerMatchResultsErrors = ListPlayerMatchResultsErrors;
8374
- type indexV1_ListPlayerMatchResultsResponse = ListPlayerMatchResultsResponse;
8375
- type indexV1_ListPlayerMatchResultsResponses = ListPlayerMatchResultsResponses;
8376
8244
  type indexV1_Match = Match;
8377
8245
  type indexV1_MatchBasePrice = MatchBasePrice;
8378
8246
  type indexV1_MatchCourt = MatchCourt;
@@ -8498,7 +8366,6 @@ declare const indexV1_getUserSportProfile: typeof getUserSportProfile;
8498
8366
  declare const indexV1_getUserSportProfiles: typeof getUserSportProfiles;
8499
8367
  declare const indexV1_listFacilityOffers: typeof listFacilityOffers;
8500
8368
  declare const indexV1_listMatches: typeof listMatches;
8501
- declare const indexV1_listPlayerMatchResults: typeof listPlayerMatchResults;
8502
8369
  declare const indexV1_registerDevice: typeof registerDevice;
8503
8370
  declare const indexV1_searchUsers: typeof searchUsers;
8504
8371
  declare const indexV1_updateAllNotifications: typeof updateAllNotifications;
@@ -8507,7 +8374,7 @@ declare const indexV1_updateNotificationsPreferences: typeof updateNotifications
8507
8374
  declare const indexV1_updateUserProfile: typeof updateUserProfile;
8508
8375
  declare const indexV1_updateUserSportProfileLevel: typeof updateUserSportProfileLevel;
8509
8376
  declare namespace indexV1 {
8510
- export { type indexV1_AddUserSportProfileLevelData as AddUserSportProfileLevelData, type indexV1_AddUserSportProfileLevelError as AddUserSportProfileLevelError, type indexV1_AddUserSportProfileLevelErrors as AddUserSportProfileLevelErrors, type indexV1_AddUserSportProfileLevelResponse as AddUserSportProfileLevelResponse, type indexV1_AddUserSportProfileLevelResponses as AddUserSportProfileLevelResponses, type indexV1_Author as Author, type indexV1_AuthoritySlug as AuthoritySlug, type indexV1_Channels as Channels, type indexV1_ClientOptions as ClientOptions, type indexV1_Comment as Comment, type indexV1_CommentIdParam as CommentIdParam, type indexV1_CommentListResponse as CommentListResponse, type indexV1_CommunityIdParam as CommunityIdParam, type indexV1_CommunityItem as CommunityItem, type indexV1_CommunityListResponse as CommunityListResponse, type indexV1_CreateCommentRequest as CreateCommentRequest, type indexV1_CreateFacilityOfferOrderData as CreateFacilityOfferOrderData, type indexV1_CreateFacilityOfferOrderError as CreateFacilityOfferOrderError, type indexV1_CreateFacilityOfferOrderErrors as CreateFacilityOfferOrderErrors, type indexV1_CreateFacilityOfferOrderResponse as CreateFacilityOfferOrderResponse, type indexV1_CreateFacilityOfferOrderResponses as CreateFacilityOfferOrderResponses, type indexV1_CreatePostRequest as CreatePostRequest, type indexV1_CreateSportProfileLevelRequest as CreateSportProfileLevelRequest, type indexV1_CreateSportProfileRequest as CreateSportProfileRequest, type indexV1_CreateUserSportProfileData as CreateUserSportProfileData, type indexV1_CreateUserSportProfileError as CreateUserSportProfileError, type indexV1_CreateUserSportProfileErrors as CreateUserSportProfileErrors, type indexV1_CreateUserSportProfileResponse as CreateUserSportProfileResponse, type indexV1_CreateUserSportProfileResponses as CreateUserSportProfileResponses, type indexV1_DeleteUserSportProfileData as DeleteUserSportProfileData, type indexV1_DeleteUserSportProfileError as DeleteUserSportProfileError, type indexV1_DeleteUserSportProfileErrors as DeleteUserSportProfileErrors, type indexV1_DeleteUserSportProfileLevelData as DeleteUserSportProfileLevelData, type indexV1_DeleteUserSportProfileLevelError as DeleteUserSportProfileLevelError, type indexV1_DeleteUserSportProfileLevelErrors as DeleteUserSportProfileLevelErrors, type indexV1_DeleteUserSportProfileLevelResponse as DeleteUserSportProfileLevelResponse, type indexV1_DeleteUserSportProfileLevelResponses as DeleteUserSportProfileLevelResponses, type indexV1_DeleteUserSportProfileResponse as DeleteUserSportProfileResponse, type indexV1_DeleteUserSportProfileResponses as DeleteUserSportProfileResponses, type indexV1_ExternalService as ExternalService, type indexV1_Facility as Facility, type indexV1_FacilityIdPath as FacilityIdPath, type indexV1_FacilityList as FacilityList, type indexV1_FacilityMessagePayload as FacilityMessagePayload, type indexV1_FacilityOffer as FacilityOffer, type indexV1_FacilityOfferCondition as FacilityOfferCondition, type indexV1_FacilityOfferConditionActivities as FacilityOfferConditionActivities, type indexV1_FacilityOfferConditionCourts as FacilityOfferConditionCourts, type indexV1_FacilityOfferConditionDate as FacilityOfferConditionDate, type indexV1_FacilityOfferConditionHoursinadvance as FacilityOfferConditionHoursinadvance, type indexV1_FacilityOfferConditionTime as FacilityOfferConditionTime, type indexV1_FacilityOfferConditionWeekdays as FacilityOfferConditionWeekdays, type indexV1_FacilityOfferList as FacilityOfferList, type indexV1_FacilityOfferOrder as FacilityOfferOrder, type indexV1_FacilityPermission as FacilityPermission, type indexV1_FacilityPermissionsResponse as FacilityPermissionsResponse, type indexV1_FacilityPunchCardData as FacilityPunchCardData, type indexV1_FacilityValueCardData as FacilityValueCardData, type indexV1_Gender as Gender, type indexV1_GetMatchData as GetMatchData, type indexV1_GetMatchError as GetMatchError, type indexV1_GetMatchErrors as GetMatchErrors, type indexV1_GetMatchResponse as GetMatchResponse, type indexV1_GetMatchResponses as GetMatchResponses, type indexV1_GetMatchUserPriceData as GetMatchUserPriceData, type indexV1_GetMatchUserPriceError as GetMatchUserPriceError, type indexV1_GetMatchUserPriceErrors as GetMatchUserPriceErrors, type indexV1_GetMatchUserPriceResponse as GetMatchUserPriceResponse, type indexV1_GetMatchUserPriceResponses as GetMatchUserPriceResponses, type indexV1_GetNotificationByIdData as GetNotificationByIdData, type indexV1_GetNotificationByIdError as GetNotificationByIdError, type indexV1_GetNotificationByIdErrors as GetNotificationByIdErrors, type indexV1_GetNotificationByIdResponse as GetNotificationByIdResponse, type indexV1_GetNotificationByIdResponses as GetNotificationByIdResponses, type indexV1_GetNotificationsData as GetNotificationsData, type indexV1_GetNotificationsError as GetNotificationsError, type indexV1_GetNotificationsErrors as GetNotificationsErrors, type indexV1_GetNotificationsPreferencesData as GetNotificationsPreferencesData, type indexV1_GetNotificationsPreferencesError as GetNotificationsPreferencesError, type indexV1_GetNotificationsPreferencesErrors as GetNotificationsPreferencesErrors, type indexV1_GetNotificationsPreferencesResponse as GetNotificationsPreferencesResponse, type indexV1_GetNotificationsPreferencesResponses as GetNotificationsPreferencesResponses, type indexV1_GetNotificationsResponse as GetNotificationsResponse, type indexV1_GetNotificationsResponses as GetNotificationsResponses, type indexV1_GetRecommendationsData as GetRecommendationsData, type indexV1_GetRecommendationsError as GetRecommendationsError, type indexV1_GetRecommendationsErrors as GetRecommendationsErrors, type indexV1_GetRecommendationsResponse as GetRecommendationsResponse, type indexV1_GetRecommendationsResponses as GetRecommendationsResponses, type indexV1_GetSportAuthoritiesData as GetSportAuthoritiesData, type indexV1_GetSportAuthoritiesError as GetSportAuthoritiesError, type indexV1_GetSportAuthoritiesErrors as GetSportAuthoritiesErrors, type indexV1_GetSportAuthoritiesResponse as GetSportAuthoritiesResponse, type indexV1_GetSportAuthoritiesResponses as GetSportAuthoritiesResponses, type indexV1_GetUserFacilityPermissionsData as GetUserFacilityPermissionsData, type indexV1_GetUserFacilityPermissionsError as GetUserFacilityPermissionsError, type indexV1_GetUserFacilityPermissionsErrors as GetUserFacilityPermissionsErrors, type indexV1_GetUserFacilityPermissionsResponse as GetUserFacilityPermissionsResponse, type indexV1_GetUserFacilityPermissionsResponses as GetUserFacilityPermissionsResponses, type indexV1_GetUserSportProfileData as GetUserSportProfileData, type indexV1_GetUserSportProfileError as GetUserSportProfileError, type indexV1_GetUserSportProfileErrors as GetUserSportProfileErrors, type indexV1_GetUserSportProfileResponse as GetUserSportProfileResponse, type indexV1_GetUserSportProfileResponses as GetUserSportProfileResponses, type indexV1_GetUserSportProfilesData as GetUserSportProfilesData, type indexV1_GetUserSportProfilesError as GetUserSportProfilesError, type indexV1_GetUserSportProfilesErrors as GetUserSportProfilesErrors, type indexV1_GetUserSportProfilesResponse as GetUserSportProfilesResponse, type indexV1_GetUserSportProfilesResponses as GetUserSportProfilesResponses, type indexV1_LinkType as LinkType, type indexV1_ListFacilityOffersData as ListFacilityOffersData, type indexV1_ListFacilityOffersError as ListFacilityOffersError, type indexV1_ListFacilityOffersErrors as ListFacilityOffersErrors, type indexV1_ListFacilityOffersResponse as ListFacilityOffersResponse, type indexV1_ListFacilityOffersResponses as ListFacilityOffersResponses, type indexV1_ListMatchesData as ListMatchesData, type indexV1_ListMatchesError as ListMatchesError, type indexV1_ListMatchesErrors as ListMatchesErrors, type indexV1_ListMatchesResponse as ListMatchesResponse, type indexV1_ListMatchesResponses as ListMatchesResponses, type indexV1_ListPlayerMatchResultsData as ListPlayerMatchResultsData, type indexV1_ListPlayerMatchResultsError as ListPlayerMatchResultsError, type indexV1_ListPlayerMatchResultsErrors as ListPlayerMatchResultsErrors, type indexV1_ListPlayerMatchResultsResponse as ListPlayerMatchResultsResponse, type indexV1_ListPlayerMatchResultsResponses as ListPlayerMatchResultsResponses, type indexV1_Match as Match, type indexV1_MatchBasePrice as MatchBasePrice, type indexV1_MatchCourt as MatchCourt, type indexV1_MatchDetail as MatchDetail, type indexV1_MatchEvent as MatchEvent, type indexV1_MatchList as MatchList, type indexV1_MatchOccasion as MatchOccasion, type indexV1_MatchOccasionDetail as MatchOccasionDetail, type indexV1_MatchParticipants as MatchParticipants, type indexV1_MatchPriceListEntry as MatchPriceListEntry, type indexV1_MatchStatus as MatchStatus, type indexV1_MatchUserPrice as MatchUserPrice, type indexV1_Member as Member, type indexV1_MemberListResponse as MemberListResponse, type indexV1_MemberRelation as MemberRelation, type indexV1_MembershipStatus as MembershipStatus, type indexV1_Metadata as Metadata, type indexV1_Notification as Notification, type indexV1_NotificationPayload as NotificationPayload, type indexV1_NotificationRequestBody as NotificationRequestBody, type indexV1_NotificationsFilter as NotificationsFilter, type indexV1_NotificationsFilterParam as NotificationsFilterParam, type indexV1_NotificationsPaginatedResponse as NotificationsPaginatedResponse, type indexV1_NotificationsSummary as NotificationsSummary, type indexV1_OfferIdPath as OfferIdPath, type indexV1_OffsetPaginatedResultSet as OffsetPaginatedResultSet, type indexV1_Options as Options, type indexV1_PaginationMeta as PaginationMeta, type indexV1_ParticipantDetail as ParticipantDetail, type indexV1_ParticipantSummary as ParticipantSummary, type indexV1_PatchCommentRequest as PatchCommentRequest, type indexV1_PatchPostRequest as PatchPostRequest, type indexV1_PkgOpenapiSharedCursorLimitParam as PkgOpenapiSharedCursorLimitParam, type indexV1_PkgOpenapiSharedCursorPaginatedResultSet as PkgOpenapiSharedCursorPaginatedResultSet, type indexV1_PkgOpenapiSharedCursorParam as PkgOpenapiSharedCursorParam, type indexV1_PkgOpenapiSharedError as PkgOpenapiSharedError, type indexV1_PkgOpenapiSharedErrors as PkgOpenapiSharedErrors, type indexV1_PkgOpenapiSharedOffsetLimitParam as PkgOpenapiSharedOffsetLimitParam, type indexV1_PkgOpenapiSharedOffsetPaginatedResultSet as PkgOpenapiSharedOffsetPaginatedResultSet, type indexV1_PkgOpenapiSharedOffsetParam as PkgOpenapiSharedOffsetParam, type indexV1_PkgOpenapiSharedProblemDetails as PkgOpenapiSharedProblemDetails, type indexV1_Post as Post, type indexV1_PostIdParam as PostIdParam, type indexV1_PostLink as PostLink, type indexV1_PostListResponse as PostListResponse, type indexV1_PostingPermission as PostingPermission, type indexV1_Preference as Preference, type indexV1_PreferencesResponse as PreferencesResponse, type indexV1_Recommendation as Recommendation, type indexV1_RecommendationList as RecommendationList, type indexV1_RefundPolicy as RefundPolicy, type indexV1_RegisterDeviceData as RegisterDeviceData, type indexV1_RegisterDeviceError as RegisterDeviceError, type indexV1_RegisterDeviceErrors as RegisterDeviceErrors, type indexV1_RegisterDeviceRequest as RegisterDeviceRequest, type indexV1_RegisterDeviceResponse as RegisterDeviceResponse, type indexV1_RegisterDeviceResponses as RegisterDeviceResponses, type indexV1_SearchUsersData as SearchUsersData, type indexV1_SearchUsersError as SearchUsersError, type indexV1_SearchUsersErrors as SearchUsersErrors, type indexV1_SearchUsersResponse as SearchUsersResponse, type indexV1_SearchUsersResponses as SearchUsersResponses, type indexV1_Source as Source, type indexV1_SportAuthoritiesResponse as SportAuthoritiesResponse, type indexV1_SportAuthority as SportAuthority, type indexV1_SportLevel as SportLevel, type indexV1_SportProfile as SportProfile, type indexV1_SportProfileAttribute as SportProfileAttribute, type indexV1_SportProfileId as SportProfileId, type indexV1_SportProfileLevel as SportProfileLevel, type indexV1_SportProfilesResponse as SportProfilesResponse, type indexV1_Topic as Topic, type indexV1_UpdateAllNotificationsData as UpdateAllNotificationsData, type indexV1_UpdateAllNotificationsError as UpdateAllNotificationsError, type indexV1_UpdateAllNotificationsErrors as UpdateAllNotificationsErrors, type indexV1_UpdateAllNotificationsResponse as UpdateAllNotificationsResponse, type indexV1_UpdateAllNotificationsResponses as UpdateAllNotificationsResponses, type indexV1_UpdateNotificationData as UpdateNotificationData, type indexV1_UpdateNotificationError as UpdateNotificationError, type indexV1_UpdateNotificationErrors as UpdateNotificationErrors, type indexV1_UpdateNotificationResponse as UpdateNotificationResponse, type indexV1_UpdateNotificationResponses as UpdateNotificationResponses, type indexV1_UpdateNotificationsPreferencesData as UpdateNotificationsPreferencesData, type indexV1_UpdateNotificationsPreferencesError as UpdateNotificationsPreferencesError, type indexV1_UpdateNotificationsPreferencesErrors as UpdateNotificationsPreferencesErrors, type indexV1_UpdateNotificationsPreferencesResponse as UpdateNotificationsPreferencesResponse, type indexV1_UpdateNotificationsPreferencesResponses as UpdateNotificationsPreferencesResponses, type indexV1_UpdatePreferencesRequestBody as UpdatePreferencesRequestBody, type indexV1_UpdateSportProfileLevelRequest as UpdateSportProfileLevelRequest, type indexV1_UpdateUserProfileData as UpdateUserProfileData, type indexV1_UpdateUserProfileError as UpdateUserProfileError, type indexV1_UpdateUserProfileErrors as UpdateUserProfileErrors, type indexV1_UpdateUserProfileResponse as UpdateUserProfileResponse, type indexV1_UpdateUserProfileResponses as UpdateUserProfileResponses, type indexV1_UpdateUserSportProfileLevelData as UpdateUserSportProfileLevelData, type indexV1_UpdateUserSportProfileLevelError as UpdateUserSportProfileLevelError, type indexV1_UpdateUserSportProfileLevelErrors as UpdateUserSportProfileLevelErrors, type indexV1_UpdateUserSportProfileLevelResponse as UpdateUserSportProfileLevelResponse, type indexV1_UpdateUserSportProfileLevelResponses as UpdateUserSportProfileLevelResponses, type indexV1_UpdateUsersProfilesRequest as UpdateUsersProfilesRequest, type indexV1_UserId as UserId, type indexV1_UserIdParam as UserIdParam, type indexV1_UserParticipationStatus as UserParticipationStatus, type indexV1_UserProfile as UserProfile, type indexV1_UserRelation as UserRelation, type indexV1_UsersProfilesPaginatedResponse as UsersProfilesPaginatedResponse, type indexV1_Visibility as Visibility, indexV1_addUserSportProfileLevel as addUserSportProfileLevel, indexV1_client as client, indexV1_createFacilityOfferOrder as createFacilityOfferOrder, indexV1_createUserSportProfile as createUserSportProfile, indexV1_deleteUserSportProfile as deleteUserSportProfile, indexV1_deleteUserSportProfileLevel as deleteUserSportProfileLevel, indexV1_getMatch as getMatch, indexV1_getMatchUserPrice as getMatchUserPrice, indexV1_getNotificationById as getNotificationById, indexV1_getNotifications as getNotifications, indexV1_getNotificationsPreferences as getNotificationsPreferences, indexV1_getRecommendations as getRecommendations, indexV1_getSportAuthorities as getSportAuthorities, indexV1_getUserFacilityPermissions as getUserFacilityPermissions, indexV1_getUserSportProfile as getUserSportProfile, indexV1_getUserSportProfiles as getUserSportProfiles, indexV1_listFacilityOffers as listFacilityOffers, indexV1_listMatches as listMatches, indexV1_listPlayerMatchResults as listPlayerMatchResults, 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 };
8377
+ export { type indexV1_AddUserSportProfileLevelData as AddUserSportProfileLevelData, type indexV1_AddUserSportProfileLevelError as AddUserSportProfileLevelError, type indexV1_AddUserSportProfileLevelErrors as AddUserSportProfileLevelErrors, type indexV1_AddUserSportProfileLevelResponse as AddUserSportProfileLevelResponse, type indexV1_AddUserSportProfileLevelResponses as AddUserSportProfileLevelResponses, type indexV1_Author as Author, type indexV1_AuthoritySlug as AuthoritySlug, type indexV1_Channels as Channels, type indexV1_ClientOptions as ClientOptions, type indexV1_Comment as Comment, type indexV1_CommentIdParam as CommentIdParam, type indexV1_CommentListResponse as CommentListResponse, type indexV1_CommunityIdParam as CommunityIdParam, type indexV1_CommunityItem as CommunityItem, type indexV1_CommunityListResponse as CommunityListResponse, type indexV1_CreateCommentRequest as CreateCommentRequest, type indexV1_CreateFacilityOfferOrderData as CreateFacilityOfferOrderData, type indexV1_CreateFacilityOfferOrderError as CreateFacilityOfferOrderError, type indexV1_CreateFacilityOfferOrderErrors as CreateFacilityOfferOrderErrors, type indexV1_CreateFacilityOfferOrderResponse as CreateFacilityOfferOrderResponse, type indexV1_CreateFacilityOfferOrderResponses as CreateFacilityOfferOrderResponses, type indexV1_CreatePostRequest as CreatePostRequest, type indexV1_CreateSportProfileLevelRequest as CreateSportProfileLevelRequest, type indexV1_CreateSportProfileRequest as CreateSportProfileRequest, type indexV1_CreateUserSportProfileData as CreateUserSportProfileData, type indexV1_CreateUserSportProfileError as CreateUserSportProfileError, type indexV1_CreateUserSportProfileErrors as CreateUserSportProfileErrors, type indexV1_CreateUserSportProfileResponse as CreateUserSportProfileResponse, type indexV1_CreateUserSportProfileResponses as CreateUserSportProfileResponses, type indexV1_DeleteUserSportProfileData as DeleteUserSportProfileData, type indexV1_DeleteUserSportProfileError as DeleteUserSportProfileError, type indexV1_DeleteUserSportProfileErrors as DeleteUserSportProfileErrors, type indexV1_DeleteUserSportProfileLevelData as DeleteUserSportProfileLevelData, type indexV1_DeleteUserSportProfileLevelError as DeleteUserSportProfileLevelError, type indexV1_DeleteUserSportProfileLevelErrors as DeleteUserSportProfileLevelErrors, type indexV1_DeleteUserSportProfileLevelResponse as DeleteUserSportProfileLevelResponse, type indexV1_DeleteUserSportProfileLevelResponses as DeleteUserSportProfileLevelResponses, type indexV1_DeleteUserSportProfileResponse as DeleteUserSportProfileResponse, type indexV1_DeleteUserSportProfileResponses as DeleteUserSportProfileResponses, type indexV1_ExternalService as ExternalService, type indexV1_Facility as Facility, type indexV1_FacilityIdPath as FacilityIdPath, type indexV1_FacilityList as FacilityList, type indexV1_FacilityMessagePayload as FacilityMessagePayload, type indexV1_FacilityOffer as FacilityOffer, type indexV1_FacilityOfferCondition as FacilityOfferCondition, type indexV1_FacilityOfferConditionActivities as FacilityOfferConditionActivities, type indexV1_FacilityOfferConditionCourts as FacilityOfferConditionCourts, type indexV1_FacilityOfferConditionDate as FacilityOfferConditionDate, type indexV1_FacilityOfferConditionHoursinadvance as FacilityOfferConditionHoursinadvance, type indexV1_FacilityOfferConditionTime as FacilityOfferConditionTime, type indexV1_FacilityOfferConditionWeekdays as FacilityOfferConditionWeekdays, type indexV1_FacilityOfferList as FacilityOfferList, type indexV1_FacilityOfferOrder as FacilityOfferOrder, type indexV1_FacilityPermission as FacilityPermission, type indexV1_FacilityPermissionsResponse as FacilityPermissionsResponse, type indexV1_FacilityPunchCardData as FacilityPunchCardData, type indexV1_FacilityValueCardData as FacilityValueCardData, type indexV1_Gender as Gender, type indexV1_GetMatchData as GetMatchData, type indexV1_GetMatchError as GetMatchError, type indexV1_GetMatchErrors as GetMatchErrors, type indexV1_GetMatchResponse as GetMatchResponse, type indexV1_GetMatchResponses as GetMatchResponses, type indexV1_GetMatchUserPriceData as GetMatchUserPriceData, type indexV1_GetMatchUserPriceError as GetMatchUserPriceError, type indexV1_GetMatchUserPriceErrors as GetMatchUserPriceErrors, type indexV1_GetMatchUserPriceResponse as GetMatchUserPriceResponse, type indexV1_GetMatchUserPriceResponses as GetMatchUserPriceResponses, type indexV1_GetNotificationByIdData as GetNotificationByIdData, type indexV1_GetNotificationByIdError as GetNotificationByIdError, type indexV1_GetNotificationByIdErrors as GetNotificationByIdErrors, type indexV1_GetNotificationByIdResponse as GetNotificationByIdResponse, type indexV1_GetNotificationByIdResponses as GetNotificationByIdResponses, type indexV1_GetNotificationsData as GetNotificationsData, type indexV1_GetNotificationsError as GetNotificationsError, type indexV1_GetNotificationsErrors as GetNotificationsErrors, type indexV1_GetNotificationsPreferencesData as GetNotificationsPreferencesData, type indexV1_GetNotificationsPreferencesError as GetNotificationsPreferencesError, type indexV1_GetNotificationsPreferencesErrors as GetNotificationsPreferencesErrors, type indexV1_GetNotificationsPreferencesResponse as GetNotificationsPreferencesResponse, type indexV1_GetNotificationsPreferencesResponses as GetNotificationsPreferencesResponses, type indexV1_GetNotificationsResponse as GetNotificationsResponse, type indexV1_GetNotificationsResponses as GetNotificationsResponses, type indexV1_GetRecommendationsData as GetRecommendationsData, type indexV1_GetRecommendationsError as GetRecommendationsError, type indexV1_GetRecommendationsErrors as GetRecommendationsErrors, type indexV1_GetRecommendationsResponse as GetRecommendationsResponse, type indexV1_GetRecommendationsResponses as GetRecommendationsResponses, type indexV1_GetSportAuthoritiesData as GetSportAuthoritiesData, type indexV1_GetSportAuthoritiesError as GetSportAuthoritiesError, type indexV1_GetSportAuthoritiesErrors as GetSportAuthoritiesErrors, type indexV1_GetSportAuthoritiesResponse as GetSportAuthoritiesResponse, type indexV1_GetSportAuthoritiesResponses as GetSportAuthoritiesResponses, type indexV1_GetUserFacilityPermissionsData as GetUserFacilityPermissionsData, type indexV1_GetUserFacilityPermissionsError as GetUserFacilityPermissionsError, type indexV1_GetUserFacilityPermissionsErrors as GetUserFacilityPermissionsErrors, type indexV1_GetUserFacilityPermissionsResponse as GetUserFacilityPermissionsResponse, type indexV1_GetUserFacilityPermissionsResponses as GetUserFacilityPermissionsResponses, type indexV1_GetUserSportProfileData as GetUserSportProfileData, type indexV1_GetUserSportProfileError as GetUserSportProfileError, type indexV1_GetUserSportProfileErrors as GetUserSportProfileErrors, type indexV1_GetUserSportProfileResponse as GetUserSportProfileResponse, type indexV1_GetUserSportProfileResponses as GetUserSportProfileResponses, type indexV1_GetUserSportProfilesData as GetUserSportProfilesData, type indexV1_GetUserSportProfilesError as GetUserSportProfilesError, type indexV1_GetUserSportProfilesErrors as GetUserSportProfilesErrors, type indexV1_GetUserSportProfilesResponse as GetUserSportProfilesResponse, type indexV1_GetUserSportProfilesResponses as GetUserSportProfilesResponses, type indexV1_LinkType as LinkType, type indexV1_ListFacilityOffersData as ListFacilityOffersData, type indexV1_ListFacilityOffersError as ListFacilityOffersError, type indexV1_ListFacilityOffersErrors as ListFacilityOffersErrors, type indexV1_ListFacilityOffersResponse as ListFacilityOffersResponse, type indexV1_ListFacilityOffersResponses as ListFacilityOffersResponses, type indexV1_ListMatchesData as ListMatchesData, type indexV1_ListMatchesError as ListMatchesError, type indexV1_ListMatchesErrors as ListMatchesErrors, type indexV1_ListMatchesResponse as ListMatchesResponse, type indexV1_ListMatchesResponses as ListMatchesResponses, type indexV1_Match as Match, type indexV1_MatchBasePrice as MatchBasePrice, type indexV1_MatchCourt as MatchCourt, type indexV1_MatchDetail as MatchDetail, type indexV1_MatchEvent as MatchEvent, type indexV1_MatchList as MatchList, type indexV1_MatchOccasion as MatchOccasion, type indexV1_MatchOccasionDetail as MatchOccasionDetail, type indexV1_MatchParticipants as MatchParticipants, type indexV1_MatchPriceListEntry as MatchPriceListEntry, type indexV1_MatchStatus as MatchStatus, type indexV1_MatchUserPrice as MatchUserPrice, type indexV1_Member as Member, type indexV1_MemberListResponse as MemberListResponse, type indexV1_MemberRelation as MemberRelation, type indexV1_MembershipStatus as MembershipStatus, type indexV1_Metadata as Metadata, type indexV1_Notification as Notification, type indexV1_NotificationPayload as NotificationPayload, type indexV1_NotificationRequestBody as NotificationRequestBody, type indexV1_NotificationsFilter as NotificationsFilter, type indexV1_NotificationsFilterParam as NotificationsFilterParam, type indexV1_NotificationsPaginatedResponse as NotificationsPaginatedResponse, type indexV1_NotificationsSummary as NotificationsSummary, type indexV1_OfferIdPath as OfferIdPath, type indexV1_OffsetPaginatedResultSet as OffsetPaginatedResultSet, type indexV1_Options as Options, type indexV1_PaginationMeta as PaginationMeta, type indexV1_ParticipantDetail as ParticipantDetail, type indexV1_ParticipantSummary as ParticipantSummary, type indexV1_PatchCommentRequest as PatchCommentRequest, type indexV1_PatchPostRequest as PatchPostRequest, type indexV1_PkgOpenapiSharedCursorLimitParam as PkgOpenapiSharedCursorLimitParam, type indexV1_PkgOpenapiSharedCursorPaginatedResultSet as PkgOpenapiSharedCursorPaginatedResultSet, type indexV1_PkgOpenapiSharedCursorParam as PkgOpenapiSharedCursorParam, type indexV1_PkgOpenapiSharedError as PkgOpenapiSharedError, type indexV1_PkgOpenapiSharedErrors as PkgOpenapiSharedErrors, type indexV1_PkgOpenapiSharedOffsetLimitParam as PkgOpenapiSharedOffsetLimitParam, type indexV1_PkgOpenapiSharedOffsetPaginatedResultSet as PkgOpenapiSharedOffsetPaginatedResultSet, type indexV1_PkgOpenapiSharedOffsetParam as PkgOpenapiSharedOffsetParam, type indexV1_PkgOpenapiSharedProblemDetails as PkgOpenapiSharedProblemDetails, type indexV1_Post as Post, type indexV1_PostIdParam as PostIdParam, type indexV1_PostLink as PostLink, type indexV1_PostListResponse as PostListResponse, type indexV1_PostingPermission as PostingPermission, type indexV1_Preference as Preference, type indexV1_PreferencesResponse as PreferencesResponse, type indexV1_Recommendation as Recommendation, type indexV1_RecommendationList as RecommendationList, type indexV1_RefundPolicy as RefundPolicy, type indexV1_RegisterDeviceData as RegisterDeviceData, type indexV1_RegisterDeviceError as RegisterDeviceError, type indexV1_RegisterDeviceErrors as RegisterDeviceErrors, type indexV1_RegisterDeviceRequest as RegisterDeviceRequest, type indexV1_RegisterDeviceResponse as RegisterDeviceResponse, type indexV1_RegisterDeviceResponses as RegisterDeviceResponses, type indexV1_SearchUsersData as SearchUsersData, type indexV1_SearchUsersError as SearchUsersError, type indexV1_SearchUsersErrors as SearchUsersErrors, type indexV1_SearchUsersResponse as SearchUsersResponse, type indexV1_SearchUsersResponses as SearchUsersResponses, type indexV1_Source as Source, type indexV1_SportAuthoritiesResponse as SportAuthoritiesResponse, type indexV1_SportAuthority as SportAuthority, type indexV1_SportLevel as SportLevel, type indexV1_SportProfile as SportProfile, type indexV1_SportProfileAttribute as SportProfileAttribute, type indexV1_SportProfileId as SportProfileId, type indexV1_SportProfileLevel as SportProfileLevel, type indexV1_SportProfilesResponse as SportProfilesResponse, type indexV1_Topic as Topic, type indexV1_UpdateAllNotificationsData as UpdateAllNotificationsData, type indexV1_UpdateAllNotificationsError as UpdateAllNotificationsError, type indexV1_UpdateAllNotificationsErrors as UpdateAllNotificationsErrors, type indexV1_UpdateAllNotificationsResponse as UpdateAllNotificationsResponse, type indexV1_UpdateAllNotificationsResponses as UpdateAllNotificationsResponses, type indexV1_UpdateNotificationData as UpdateNotificationData, type indexV1_UpdateNotificationError as UpdateNotificationError, type indexV1_UpdateNotificationErrors as UpdateNotificationErrors, type indexV1_UpdateNotificationResponse as UpdateNotificationResponse, type indexV1_UpdateNotificationResponses as UpdateNotificationResponses, type indexV1_UpdateNotificationsPreferencesData as UpdateNotificationsPreferencesData, type indexV1_UpdateNotificationsPreferencesError as UpdateNotificationsPreferencesError, type indexV1_UpdateNotificationsPreferencesErrors as UpdateNotificationsPreferencesErrors, type indexV1_UpdateNotificationsPreferencesResponse as UpdateNotificationsPreferencesResponse, type indexV1_UpdateNotificationsPreferencesResponses as UpdateNotificationsPreferencesResponses, type indexV1_UpdatePreferencesRequestBody as UpdatePreferencesRequestBody, type indexV1_UpdateSportProfileLevelRequest as UpdateSportProfileLevelRequest, type indexV1_UpdateUserProfileData as UpdateUserProfileData, type indexV1_UpdateUserProfileError as UpdateUserProfileError, type indexV1_UpdateUserProfileErrors as UpdateUserProfileErrors, type indexV1_UpdateUserProfileResponse as UpdateUserProfileResponse, type indexV1_UpdateUserProfileResponses as UpdateUserProfileResponses, type indexV1_UpdateUserSportProfileLevelData as UpdateUserSportProfileLevelData, type indexV1_UpdateUserSportProfileLevelError as UpdateUserSportProfileLevelError, type indexV1_UpdateUserSportProfileLevelErrors as UpdateUserSportProfileLevelErrors, type indexV1_UpdateUserSportProfileLevelResponse as UpdateUserSportProfileLevelResponse, type indexV1_UpdateUserSportProfileLevelResponses as UpdateUserSportProfileLevelResponses, type indexV1_UpdateUsersProfilesRequest as UpdateUsersProfilesRequest, type indexV1_UserId as UserId, type indexV1_UserIdParam as UserIdParam, type indexV1_UserParticipationStatus as UserParticipationStatus, type indexV1_UserProfile as UserProfile, type indexV1_UserRelation as UserRelation, type indexV1_UsersProfilesPaginatedResponse as UsersProfilesPaginatedResponse, type indexV1_Visibility as Visibility, indexV1_addUserSportProfileLevel as addUserSportProfileLevel, indexV1_client as client, indexV1_createFacilityOfferOrder as createFacilityOfferOrder, indexV1_createUserSportProfile as createUserSportProfile, indexV1_deleteUserSportProfile as deleteUserSportProfile, indexV1_deleteUserSportProfileLevel as deleteUserSportProfileLevel, indexV1_getMatch as getMatch, indexV1_getMatchUserPrice as getMatchUserPrice, indexV1_getNotificationById as getNotificationById, indexV1_getNotifications as getNotifications, indexV1_getNotificationsPreferences as getNotificationsPreferences, indexV1_getRecommendations as getRecommendations, indexV1_getSportAuthorities as getSportAuthorities, indexV1_getUserFacilityPermissions as getUserFacilityPermissions, indexV1_getUserSportProfile as getUserSportProfile, indexV1_getUserSportProfiles as getUserSportProfiles, indexV1_listFacilityOffers as listFacilityOffers, indexV1_listMatches as listMatches, reactQuery_gen as queries, indexV1_registerDevice as registerDevice, schemas_gen as schemas, indexV1_searchUsers as searchUsers, indexV1_updateAllNotifications as updateAllNotifications, indexV1_updateNotification as updateNotification, indexV1_updateNotificationsPreferences as updateNotificationsPreferences, indexV1_updateUserProfile as updateUserProfile, indexV1_updateUserSportProfileLevel as updateUserSportProfileLevel };
8511
8378
  }
8512
8379
 
8513
8380
  export { type ActivityEvent, ActivityServiceV1Service, type AdminOccasionDetails, AnonymousService, ApiClientServiceV1Service, ApiError, AuthorizedService, BookingServiceV1Service, CancelError, CancelablePromise, CheckoutServiceV1Service, CompetitionServiceV1Service, CorsService, type Error$1 as Error, type ExternalServiceProperty, LoyaltyServiceV1Service, MembershipServiceV1Service, type OccasionCourt, OpenAPI, type OpenAPIConfig, type OrderPaymentDetails, type OrderPriceDetails, type OrderSplitPayments, type OrderSplitPaymentsRow, type OrderSplitPrice, type PaymentMethodPaymentRefund, PlaySessionServiceV1Service, type ServiceFeeSettings, UserServiceV1Service, type access, type activitiesResponse, type activity, type activityOccasion, type activityType, type actor, type address, type adyenGiftCardOutcome, type apiClient, type apiClientInput, type apiClientListResponse, type article, type articleMetadata, type authoritySportLevels, type availability, type booking, type bookingGroup, bookingRestriction, type bookingRestrictions, bookingSubType, bookingSubscription, type bookingSubscriptionPayment, type bookingUser, bookingUserStatus, type bookingUsersResponse, type bookingsResponse, type camera, cancellationPolicy, chat, type chatAuth, chatCreation, chatTarget, type checkoutResponse, clientType, type competitionAdminAccount, type config, type configuration, type configurationEntry, type configurationMap, type configurationResource, type coupon, type createBookingEventExternal, type createPromoCode, type dailyQuota, type days, type deleteBookingEventExternal, directionParam, type endTimePriceDetail, type endTimesWithRestrictions, type exposeOccasions, type facilitiesResponse, type facility, type facilityConfiguration, type facilityDetails, type friendRelationResponse, type friendRelationsResponse, type giftCard, type hideFullyBooked, type hours, type internalPaymentMethod, type levelRange, type limitParam, type listOfChats, type listUserRelations, type membershipRequest, type membershipRequestItem, type monthlyUsage, months, type newMessageNotification, notificationChatGroup, type notificationChatMember, notificationEntity, type notificationMessage, type notificationMessageData, type occasionBooking, type occasionParticipant, type offsetParam, type openingHours, type order, type orderSplitBaseResponse, type participants, type payment, type paymentDetails, type paymentInfo, type paymentInterval, type paymentMethodPaymentDetail, type paymentMethods, type paymentType, type paymentsResponse, pendingPayment, type playSession, type playSessionBooking, type playSessionBookingPayment, type playSessionResponse, playSessionSettings, playSessionUser, type playerLevels, playerStatusParam, playingUserResponse, type playingUsersResponse, type playsessionUserDetails, type position, type price, type priceDetails, type priceDetailsActivity, type profile, type promoCode, type promoCodeOutcome, type pspSession, type resource, type resultSet, type serviceFee, type sportLevels, type timeOfDay, type timeStamp, type usagePlan, userChatStatusParam, userChatTargetParam, type userFacility, type userId, type userInfo, type userMembership, type userOfferPunchCardsResponse, type userOfferValueCardsResponse, type userPublicProfile, userPunchCard, userRelation, userRelationStatusParam, type userValueCard, indexV1 as v1, type valueCardOutcome };
@@ -4430,23 +4430,23 @@ type ListMatchesData = {
4430
4430
  /**
4431
4431
  * Start of date range (ISO 8601 UTC)
4432
4432
  */
4433
- start_date_time: string;
4433
+ startDateTime: string;
4434
4434
  /**
4435
4435
  * End of date range (ISO 8601 UTC)
4436
4436
  */
4437
- end_date_time: string;
4437
+ endDateTime: string;
4438
4438
  /**
4439
4439
  * Filter by facility IDs
4440
4440
  */
4441
- facility_ids?: Array<number>;
4441
+ facilityIds?: Array<number>;
4442
4442
  /**
4443
4443
  * Filter by sport IDs
4444
4444
  */
4445
- sport_ids?: Array<number>;
4445
+ sportIds?: Array<number>;
4446
4446
  /**
4447
4447
  * Minimum number of available spots
4448
4448
  */
4449
- available_spots?: number;
4449
+ availableSpots?: number;
4450
4450
  /**
4451
4451
  * Number of items to skip before returning the results.
4452
4452
  */
@@ -4517,7 +4517,7 @@ type GetMatchUserPriceData = {
4517
4517
  userId: string;
4518
4518
  };
4519
4519
  query?: {
4520
- promo_code?: string;
4520
+ promoCode?: string;
4521
4521
  };
4522
4522
  url: '/matches/{matchId}/prices/{userId}';
4523
4523
  };
@@ -5092,40 +5092,6 @@ type GetRecommendationsResponses = {
5092
5092
  200: RecommendationList;
5093
5093
  };
5094
5094
  type GetRecommendationsResponse = GetRecommendationsResponses[keyof GetRecommendationsResponses];
5095
- type ListPlayerMatchResultsData = {
5096
- body?: never;
5097
- path: {
5098
- /**
5099
- * The user ID
5100
- */
5101
- user_id: string;
5102
- };
5103
- query?: {
5104
- limit?: number;
5105
- offset?: number;
5106
- };
5107
- url: '/users/{user_id}/match-results';
5108
- };
5109
- type ListPlayerMatchResultsErrors = {
5110
- /**
5111
- * The requestor is not authorized to perform this operation on the resource.
5112
- */
5113
- 403: PkgOpenapiSharedProblemDetails;
5114
- /**
5115
- * The server encountered an unexpected error
5116
- */
5117
- 500: PkgOpenapiSharedProblemDetails;
5118
- };
5119
- type ListPlayerMatchResultsError = ListPlayerMatchResultsErrors[keyof ListPlayerMatchResultsErrors];
5120
- type ListPlayerMatchResultsResponses = {
5121
- /**
5122
- * Match results
5123
- */
5124
- 200: {
5125
- [key: string]: unknown;
5126
- };
5127
- };
5128
- type ListPlayerMatchResultsResponse = ListPlayerMatchResultsResponses[keyof ListPlayerMatchResultsResponses];
5129
5095
  type GetUserSportProfilesData = {
5130
5096
  body?: never;
5131
5097
  path: {
@@ -7466,15 +7432,6 @@ declare const updateUserProfile: <ThrowOnError extends boolean = false>(options:
7466
7432
  *
7467
7433
  */
7468
7434
  declare const getRecommendations: <ThrowOnError extends boolean = false>(options: Options<GetRecommendationsData, ThrowOnError>) => RequestResult<GetRecommendationsResponses, GetRecommendationsErrors, ThrowOnError, "fields">;
7469
- /**
7470
- * List match results for a player
7471
- *
7472
- * Returns paginated match history for the authenticated player.
7473
- * The user_id in the path must match the authenticated user's ID.
7474
- * Results include matches from all sources (tournaments, admin matches, public matches).
7475
- *
7476
- */
7477
- declare const listPlayerMatchResults: <ThrowOnError extends boolean = false>(options: Options<ListPlayerMatchResultsData, ThrowOnError>) => RequestResult<ListPlayerMatchResultsResponses, ListPlayerMatchResultsErrors, ThrowOnError, "fields">;
7478
7435
  /**
7479
7436
  * List sport profiles for a user
7480
7437
  *
@@ -8021,86 +7978,6 @@ declare const getRecommendationsInfiniteOptions: (options: Options<GetRecommenda
8021
7978
  [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
8022
7979
  };
8023
7980
  };
8024
- declare const listPlayerMatchResultsQueryKey: (options: Options<ListPlayerMatchResultsData>) => [Pick<Options<ListPlayerMatchResultsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8025
- _id: string;
8026
- _infinite?: boolean;
8027
- tags?: ReadonlyArray<string>;
8028
- }];
8029
- /**
8030
- * List match results for a player
8031
- *
8032
- * Returns paginated match history for the authenticated player.
8033
- * The user_id in the path must match the authenticated user's ID.
8034
- * Results include matches from all sources (tournaments, admin matches, public matches).
8035
- *
8036
- */
8037
- declare const listPlayerMatchResultsOptions: (options: Options<ListPlayerMatchResultsData>) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<{
8038
- [key: string]: unknown;
8039
- }, PkgOpenapiSharedProblemDetails, {
8040
- [key: string]: unknown;
8041
- }, [Pick<Options<ListPlayerMatchResultsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8042
- _id: string;
8043
- _infinite?: boolean;
8044
- tags?: ReadonlyArray<string>;
8045
- }]>, "queryFn"> & {
8046
- queryFn?: _tanstack_react_query.QueryFunction<{
8047
- [key: string]: unknown;
8048
- }, [Pick<Options<ListPlayerMatchResultsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8049
- _id: string;
8050
- _infinite?: boolean;
8051
- tags?: ReadonlyArray<string>;
8052
- }], never> | undefined;
8053
- } & {
8054
- queryKey: [Pick<Options<ListPlayerMatchResultsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8055
- _id: string;
8056
- _infinite?: boolean;
8057
- tags?: ReadonlyArray<string>;
8058
- }] & {
8059
- [dataTagSymbol]: {
8060
- [key: string]: unknown;
8061
- };
8062
- [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
8063
- };
8064
- };
8065
- declare const listPlayerMatchResultsInfiniteQueryKey: (options: Options<ListPlayerMatchResultsData>) => QueryKey<Options<ListPlayerMatchResultsData>>;
8066
- /**
8067
- * List match results for a player
8068
- *
8069
- * Returns paginated match history for the authenticated player.
8070
- * The user_id in the path must match the authenticated user's ID.
8071
- * Results include matches from all sources (tournaments, admin matches, public matches).
8072
- *
8073
- */
8074
- declare const listPlayerMatchResultsInfiniteOptions: (options: Options<ListPlayerMatchResultsData>) => _tanstack_react_query.UseInfiniteQueryOptions<{
8075
- [key: string]: unknown;
8076
- }, PkgOpenapiSharedProblemDetails, InfiniteData<{
8077
- [key: string]: unknown;
8078
- }, unknown>, QueryKey<Options<ListPlayerMatchResultsData>>, number | Pick<Pick<Options<ListPlayerMatchResultsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8079
- _id: string;
8080
- _infinite?: boolean;
8081
- tags?: ReadonlyArray<string>;
8082
- }, "query" | "body" | "headers" | "path">> & {
8083
- initialData: InfiniteData<{
8084
- [key: string]: unknown;
8085
- }, number | Pick<Pick<Options<ListPlayerMatchResultsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8086
- _id: string;
8087
- _infinite?: boolean;
8088
- tags?: ReadonlyArray<string>;
8089
- }, "query" | "body" | "headers" | "path">> | (() => InfiniteData<{
8090
- [key: string]: unknown;
8091
- }, number | Pick<Pick<Options<ListPlayerMatchResultsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8092
- _id: string;
8093
- _infinite?: boolean;
8094
- tags?: ReadonlyArray<string>;
8095
- }, "query" | "body" | "headers" | "path">>) | undefined;
8096
- } & {
8097
- queryKey: QueryKey<Options<ListPlayerMatchResultsData>> & {
8098
- [dataTagSymbol]: InfiniteData<{
8099
- [key: string]: unknown;
8100
- }, unknown>;
8101
- [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
8102
- };
8103
- };
8104
7981
  declare const getUserSportProfilesQueryKey: (options: Options<GetUserSportProfilesData>) => [Pick<Options<GetUserSportProfilesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
8105
7982
  _id: string;
8106
7983
  _infinite?: boolean;
@@ -8230,10 +8107,6 @@ declare const reactQuery_gen_listMatchesInfiniteOptions: typeof listMatchesInfin
8230
8107
  declare const reactQuery_gen_listMatchesInfiniteQueryKey: typeof listMatchesInfiniteQueryKey;
8231
8108
  declare const reactQuery_gen_listMatchesOptions: typeof listMatchesOptions;
8232
8109
  declare const reactQuery_gen_listMatchesQueryKey: typeof listMatchesQueryKey;
8233
- declare const reactQuery_gen_listPlayerMatchResultsInfiniteOptions: typeof listPlayerMatchResultsInfiniteOptions;
8234
- declare const reactQuery_gen_listPlayerMatchResultsInfiniteQueryKey: typeof listPlayerMatchResultsInfiniteQueryKey;
8235
- declare const reactQuery_gen_listPlayerMatchResultsOptions: typeof listPlayerMatchResultsOptions;
8236
- declare const reactQuery_gen_listPlayerMatchResultsQueryKey: typeof listPlayerMatchResultsQueryKey;
8237
8110
  declare const reactQuery_gen_registerDeviceMutation: typeof registerDeviceMutation;
8238
8111
  declare const reactQuery_gen_searchUsersInfiniteOptions: typeof searchUsersInfiniteOptions;
8239
8112
  declare const reactQuery_gen_searchUsersInfiniteQueryKey: typeof searchUsersInfiniteQueryKey;
@@ -8245,7 +8118,7 @@ declare const reactQuery_gen_updateNotificationsPreferencesMutation: typeof upda
8245
8118
  declare const reactQuery_gen_updateUserProfileMutation: typeof updateUserProfileMutation;
8246
8119
  declare const reactQuery_gen_updateUserSportProfileLevelMutation: typeof updateUserSportProfileLevelMutation;
8247
8120
  declare namespace reactQuery_gen {
8248
- export { type reactQuery_gen_QueryKey as QueryKey, reactQuery_gen_addUserSportProfileLevelMutation as addUserSportProfileLevelMutation, reactQuery_gen_createFacilityOfferOrderMutation as createFacilityOfferOrderMutation, reactQuery_gen_createUserSportProfileMutation as createUserSportProfileMutation, reactQuery_gen_deleteUserSportProfileLevelMutation as deleteUserSportProfileLevelMutation, reactQuery_gen_deleteUserSportProfileMutation as deleteUserSportProfileMutation, reactQuery_gen_getMatchOptions as getMatchOptions, reactQuery_gen_getMatchQueryKey as getMatchQueryKey, reactQuery_gen_getMatchUserPriceOptions as getMatchUserPriceOptions, reactQuery_gen_getMatchUserPriceQueryKey as getMatchUserPriceQueryKey, reactQuery_gen_getNotificationByIdOptions as getNotificationByIdOptions, reactQuery_gen_getNotificationByIdQueryKey as getNotificationByIdQueryKey, reactQuery_gen_getNotificationsInfiniteOptions as getNotificationsInfiniteOptions, reactQuery_gen_getNotificationsInfiniteQueryKey as getNotificationsInfiniteQueryKey, reactQuery_gen_getNotificationsOptions as getNotificationsOptions, reactQuery_gen_getNotificationsPreferencesOptions as getNotificationsPreferencesOptions, reactQuery_gen_getNotificationsPreferencesQueryKey as getNotificationsPreferencesQueryKey, reactQuery_gen_getNotificationsQueryKey as getNotificationsQueryKey, reactQuery_gen_getRecommendationsInfiniteOptions as getRecommendationsInfiniteOptions, reactQuery_gen_getRecommendationsInfiniteQueryKey as getRecommendationsInfiniteQueryKey, reactQuery_gen_getRecommendationsOptions as getRecommendationsOptions, reactQuery_gen_getRecommendationsQueryKey as getRecommendationsQueryKey, reactQuery_gen_getSportAuthoritiesOptions as getSportAuthoritiesOptions, reactQuery_gen_getSportAuthoritiesQueryKey as getSportAuthoritiesQueryKey, reactQuery_gen_getUserFacilityPermissionsOptions as getUserFacilityPermissionsOptions, reactQuery_gen_getUserFacilityPermissionsQueryKey as getUserFacilityPermissionsQueryKey, reactQuery_gen_getUserSportProfileOptions as getUserSportProfileOptions, reactQuery_gen_getUserSportProfileQueryKey as getUserSportProfileQueryKey, reactQuery_gen_getUserSportProfilesOptions as getUserSportProfilesOptions, reactQuery_gen_getUserSportProfilesQueryKey as getUserSportProfilesQueryKey, reactQuery_gen_listFacilityOffersInfiniteOptions as listFacilityOffersInfiniteOptions, reactQuery_gen_listFacilityOffersInfiniteQueryKey as listFacilityOffersInfiniteQueryKey, reactQuery_gen_listFacilityOffersOptions as listFacilityOffersOptions, reactQuery_gen_listFacilityOffersQueryKey as listFacilityOffersQueryKey, reactQuery_gen_listMatchesInfiniteOptions as listMatchesInfiniteOptions, reactQuery_gen_listMatchesInfiniteQueryKey as listMatchesInfiniteQueryKey, reactQuery_gen_listMatchesOptions as listMatchesOptions, reactQuery_gen_listMatchesQueryKey as listMatchesQueryKey, reactQuery_gen_listPlayerMatchResultsInfiniteOptions as listPlayerMatchResultsInfiniteOptions, reactQuery_gen_listPlayerMatchResultsInfiniteQueryKey as listPlayerMatchResultsInfiniteQueryKey, reactQuery_gen_listPlayerMatchResultsOptions as listPlayerMatchResultsOptions, reactQuery_gen_listPlayerMatchResultsQueryKey as listPlayerMatchResultsQueryKey, reactQuery_gen_registerDeviceMutation as registerDeviceMutation, reactQuery_gen_searchUsersInfiniteOptions as searchUsersInfiniteOptions, reactQuery_gen_searchUsersInfiniteQueryKey as searchUsersInfiniteQueryKey, reactQuery_gen_searchUsersOptions as searchUsersOptions, reactQuery_gen_searchUsersQueryKey as searchUsersQueryKey, reactQuery_gen_updateAllNotificationsMutation as updateAllNotificationsMutation, reactQuery_gen_updateNotificationMutation as updateNotificationMutation, reactQuery_gen_updateNotificationsPreferencesMutation as updateNotificationsPreferencesMutation, reactQuery_gen_updateUserProfileMutation as updateUserProfileMutation, reactQuery_gen_updateUserSportProfileLevelMutation as updateUserSportProfileLevelMutation };
8121
+ export { type reactQuery_gen_QueryKey as QueryKey, reactQuery_gen_addUserSportProfileLevelMutation as addUserSportProfileLevelMutation, reactQuery_gen_createFacilityOfferOrderMutation as createFacilityOfferOrderMutation, reactQuery_gen_createUserSportProfileMutation as createUserSportProfileMutation, reactQuery_gen_deleteUserSportProfileLevelMutation as deleteUserSportProfileLevelMutation, reactQuery_gen_deleteUserSportProfileMutation as deleteUserSportProfileMutation, reactQuery_gen_getMatchOptions as getMatchOptions, reactQuery_gen_getMatchQueryKey as getMatchQueryKey, reactQuery_gen_getMatchUserPriceOptions as getMatchUserPriceOptions, reactQuery_gen_getMatchUserPriceQueryKey as getMatchUserPriceQueryKey, reactQuery_gen_getNotificationByIdOptions as getNotificationByIdOptions, reactQuery_gen_getNotificationByIdQueryKey as getNotificationByIdQueryKey, reactQuery_gen_getNotificationsInfiniteOptions as getNotificationsInfiniteOptions, reactQuery_gen_getNotificationsInfiniteQueryKey as getNotificationsInfiniteQueryKey, reactQuery_gen_getNotificationsOptions as getNotificationsOptions, reactQuery_gen_getNotificationsPreferencesOptions as getNotificationsPreferencesOptions, reactQuery_gen_getNotificationsPreferencesQueryKey as getNotificationsPreferencesQueryKey, reactQuery_gen_getNotificationsQueryKey as getNotificationsQueryKey, reactQuery_gen_getRecommendationsInfiniteOptions as getRecommendationsInfiniteOptions, reactQuery_gen_getRecommendationsInfiniteQueryKey as getRecommendationsInfiniteQueryKey, reactQuery_gen_getRecommendationsOptions as getRecommendationsOptions, reactQuery_gen_getRecommendationsQueryKey as getRecommendationsQueryKey, reactQuery_gen_getSportAuthoritiesOptions as getSportAuthoritiesOptions, reactQuery_gen_getSportAuthoritiesQueryKey as getSportAuthoritiesQueryKey, reactQuery_gen_getUserFacilityPermissionsOptions as getUserFacilityPermissionsOptions, reactQuery_gen_getUserFacilityPermissionsQueryKey as getUserFacilityPermissionsQueryKey, reactQuery_gen_getUserSportProfileOptions as getUserSportProfileOptions, reactQuery_gen_getUserSportProfileQueryKey as getUserSportProfileQueryKey, reactQuery_gen_getUserSportProfilesOptions as getUserSportProfilesOptions, reactQuery_gen_getUserSportProfilesQueryKey as getUserSportProfilesQueryKey, reactQuery_gen_listFacilityOffersInfiniteOptions as listFacilityOffersInfiniteOptions, reactQuery_gen_listFacilityOffersInfiniteQueryKey as listFacilityOffersInfiniteQueryKey, reactQuery_gen_listFacilityOffersOptions as listFacilityOffersOptions, reactQuery_gen_listFacilityOffersQueryKey as listFacilityOffersQueryKey, reactQuery_gen_listMatchesInfiniteOptions as listMatchesInfiniteOptions, reactQuery_gen_listMatchesInfiniteQueryKey as listMatchesInfiniteQueryKey, reactQuery_gen_listMatchesOptions as listMatchesOptions, reactQuery_gen_listMatchesQueryKey as listMatchesQueryKey, reactQuery_gen_registerDeviceMutation as registerDeviceMutation, reactQuery_gen_searchUsersInfiniteOptions as searchUsersInfiniteOptions, reactQuery_gen_searchUsersInfiniteQueryKey as searchUsersInfiniteQueryKey, reactQuery_gen_searchUsersOptions as searchUsersOptions, reactQuery_gen_searchUsersQueryKey as searchUsersQueryKey, reactQuery_gen_updateAllNotificationsMutation as updateAllNotificationsMutation, reactQuery_gen_updateNotificationMutation as updateNotificationMutation, reactQuery_gen_updateNotificationsPreferencesMutation as updateNotificationsPreferencesMutation, reactQuery_gen_updateUserProfileMutation as updateUserProfileMutation, reactQuery_gen_updateUserSportProfileLevelMutation as updateUserSportProfileLevelMutation };
8249
8122
  }
8250
8123
 
8251
8124
  type indexV1_AddUserSportProfileLevelData = AddUserSportProfileLevelData;
@@ -8368,11 +8241,6 @@ type indexV1_ListMatchesError = ListMatchesError;
8368
8241
  type indexV1_ListMatchesErrors = ListMatchesErrors;
8369
8242
  type indexV1_ListMatchesResponse = ListMatchesResponse;
8370
8243
  type indexV1_ListMatchesResponses = ListMatchesResponses;
8371
- type indexV1_ListPlayerMatchResultsData = ListPlayerMatchResultsData;
8372
- type indexV1_ListPlayerMatchResultsError = ListPlayerMatchResultsError;
8373
- type indexV1_ListPlayerMatchResultsErrors = ListPlayerMatchResultsErrors;
8374
- type indexV1_ListPlayerMatchResultsResponse = ListPlayerMatchResultsResponse;
8375
- type indexV1_ListPlayerMatchResultsResponses = ListPlayerMatchResultsResponses;
8376
8244
  type indexV1_Match = Match;
8377
8245
  type indexV1_MatchBasePrice = MatchBasePrice;
8378
8246
  type indexV1_MatchCourt = MatchCourt;
@@ -8498,7 +8366,6 @@ declare const indexV1_getUserSportProfile: typeof getUserSportProfile;
8498
8366
  declare const indexV1_getUserSportProfiles: typeof getUserSportProfiles;
8499
8367
  declare const indexV1_listFacilityOffers: typeof listFacilityOffers;
8500
8368
  declare const indexV1_listMatches: typeof listMatches;
8501
- declare const indexV1_listPlayerMatchResults: typeof listPlayerMatchResults;
8502
8369
  declare const indexV1_registerDevice: typeof registerDevice;
8503
8370
  declare const indexV1_searchUsers: typeof searchUsers;
8504
8371
  declare const indexV1_updateAllNotifications: typeof updateAllNotifications;
@@ -8507,7 +8374,7 @@ declare const indexV1_updateNotificationsPreferences: typeof updateNotifications
8507
8374
  declare const indexV1_updateUserProfile: typeof updateUserProfile;
8508
8375
  declare const indexV1_updateUserSportProfileLevel: typeof updateUserSportProfileLevel;
8509
8376
  declare namespace indexV1 {
8510
- export { type indexV1_AddUserSportProfileLevelData as AddUserSportProfileLevelData, type indexV1_AddUserSportProfileLevelError as AddUserSportProfileLevelError, type indexV1_AddUserSportProfileLevelErrors as AddUserSportProfileLevelErrors, type indexV1_AddUserSportProfileLevelResponse as AddUserSportProfileLevelResponse, type indexV1_AddUserSportProfileLevelResponses as AddUserSportProfileLevelResponses, type indexV1_Author as Author, type indexV1_AuthoritySlug as AuthoritySlug, type indexV1_Channels as Channels, type indexV1_ClientOptions as ClientOptions, type indexV1_Comment as Comment, type indexV1_CommentIdParam as CommentIdParam, type indexV1_CommentListResponse as CommentListResponse, type indexV1_CommunityIdParam as CommunityIdParam, type indexV1_CommunityItem as CommunityItem, type indexV1_CommunityListResponse as CommunityListResponse, type indexV1_CreateCommentRequest as CreateCommentRequest, type indexV1_CreateFacilityOfferOrderData as CreateFacilityOfferOrderData, type indexV1_CreateFacilityOfferOrderError as CreateFacilityOfferOrderError, type indexV1_CreateFacilityOfferOrderErrors as CreateFacilityOfferOrderErrors, type indexV1_CreateFacilityOfferOrderResponse as CreateFacilityOfferOrderResponse, type indexV1_CreateFacilityOfferOrderResponses as CreateFacilityOfferOrderResponses, type indexV1_CreatePostRequest as CreatePostRequest, type indexV1_CreateSportProfileLevelRequest as CreateSportProfileLevelRequest, type indexV1_CreateSportProfileRequest as CreateSportProfileRequest, type indexV1_CreateUserSportProfileData as CreateUserSportProfileData, type indexV1_CreateUserSportProfileError as CreateUserSportProfileError, type indexV1_CreateUserSportProfileErrors as CreateUserSportProfileErrors, type indexV1_CreateUserSportProfileResponse as CreateUserSportProfileResponse, type indexV1_CreateUserSportProfileResponses as CreateUserSportProfileResponses, type indexV1_DeleteUserSportProfileData as DeleteUserSportProfileData, type indexV1_DeleteUserSportProfileError as DeleteUserSportProfileError, type indexV1_DeleteUserSportProfileErrors as DeleteUserSportProfileErrors, type indexV1_DeleteUserSportProfileLevelData as DeleteUserSportProfileLevelData, type indexV1_DeleteUserSportProfileLevelError as DeleteUserSportProfileLevelError, type indexV1_DeleteUserSportProfileLevelErrors as DeleteUserSportProfileLevelErrors, type indexV1_DeleteUserSportProfileLevelResponse as DeleteUserSportProfileLevelResponse, type indexV1_DeleteUserSportProfileLevelResponses as DeleteUserSportProfileLevelResponses, type indexV1_DeleteUserSportProfileResponse as DeleteUserSportProfileResponse, type indexV1_DeleteUserSportProfileResponses as DeleteUserSportProfileResponses, type indexV1_ExternalService as ExternalService, type indexV1_Facility as Facility, type indexV1_FacilityIdPath as FacilityIdPath, type indexV1_FacilityList as FacilityList, type indexV1_FacilityMessagePayload as FacilityMessagePayload, type indexV1_FacilityOffer as FacilityOffer, type indexV1_FacilityOfferCondition as FacilityOfferCondition, type indexV1_FacilityOfferConditionActivities as FacilityOfferConditionActivities, type indexV1_FacilityOfferConditionCourts as FacilityOfferConditionCourts, type indexV1_FacilityOfferConditionDate as FacilityOfferConditionDate, type indexV1_FacilityOfferConditionHoursinadvance as FacilityOfferConditionHoursinadvance, type indexV1_FacilityOfferConditionTime as FacilityOfferConditionTime, type indexV1_FacilityOfferConditionWeekdays as FacilityOfferConditionWeekdays, type indexV1_FacilityOfferList as FacilityOfferList, type indexV1_FacilityOfferOrder as FacilityOfferOrder, type indexV1_FacilityPermission as FacilityPermission, type indexV1_FacilityPermissionsResponse as FacilityPermissionsResponse, type indexV1_FacilityPunchCardData as FacilityPunchCardData, type indexV1_FacilityValueCardData as FacilityValueCardData, type indexV1_Gender as Gender, type indexV1_GetMatchData as GetMatchData, type indexV1_GetMatchError as GetMatchError, type indexV1_GetMatchErrors as GetMatchErrors, type indexV1_GetMatchResponse as GetMatchResponse, type indexV1_GetMatchResponses as GetMatchResponses, type indexV1_GetMatchUserPriceData as GetMatchUserPriceData, type indexV1_GetMatchUserPriceError as GetMatchUserPriceError, type indexV1_GetMatchUserPriceErrors as GetMatchUserPriceErrors, type indexV1_GetMatchUserPriceResponse as GetMatchUserPriceResponse, type indexV1_GetMatchUserPriceResponses as GetMatchUserPriceResponses, type indexV1_GetNotificationByIdData as GetNotificationByIdData, type indexV1_GetNotificationByIdError as GetNotificationByIdError, type indexV1_GetNotificationByIdErrors as GetNotificationByIdErrors, type indexV1_GetNotificationByIdResponse as GetNotificationByIdResponse, type indexV1_GetNotificationByIdResponses as GetNotificationByIdResponses, type indexV1_GetNotificationsData as GetNotificationsData, type indexV1_GetNotificationsError as GetNotificationsError, type indexV1_GetNotificationsErrors as GetNotificationsErrors, type indexV1_GetNotificationsPreferencesData as GetNotificationsPreferencesData, type indexV1_GetNotificationsPreferencesError as GetNotificationsPreferencesError, type indexV1_GetNotificationsPreferencesErrors as GetNotificationsPreferencesErrors, type indexV1_GetNotificationsPreferencesResponse as GetNotificationsPreferencesResponse, type indexV1_GetNotificationsPreferencesResponses as GetNotificationsPreferencesResponses, type indexV1_GetNotificationsResponse as GetNotificationsResponse, type indexV1_GetNotificationsResponses as GetNotificationsResponses, type indexV1_GetRecommendationsData as GetRecommendationsData, type indexV1_GetRecommendationsError as GetRecommendationsError, type indexV1_GetRecommendationsErrors as GetRecommendationsErrors, type indexV1_GetRecommendationsResponse as GetRecommendationsResponse, type indexV1_GetRecommendationsResponses as GetRecommendationsResponses, type indexV1_GetSportAuthoritiesData as GetSportAuthoritiesData, type indexV1_GetSportAuthoritiesError as GetSportAuthoritiesError, type indexV1_GetSportAuthoritiesErrors as GetSportAuthoritiesErrors, type indexV1_GetSportAuthoritiesResponse as GetSportAuthoritiesResponse, type indexV1_GetSportAuthoritiesResponses as GetSportAuthoritiesResponses, type indexV1_GetUserFacilityPermissionsData as GetUserFacilityPermissionsData, type indexV1_GetUserFacilityPermissionsError as GetUserFacilityPermissionsError, type indexV1_GetUserFacilityPermissionsErrors as GetUserFacilityPermissionsErrors, type indexV1_GetUserFacilityPermissionsResponse as GetUserFacilityPermissionsResponse, type indexV1_GetUserFacilityPermissionsResponses as GetUserFacilityPermissionsResponses, type indexV1_GetUserSportProfileData as GetUserSportProfileData, type indexV1_GetUserSportProfileError as GetUserSportProfileError, type indexV1_GetUserSportProfileErrors as GetUserSportProfileErrors, type indexV1_GetUserSportProfileResponse as GetUserSportProfileResponse, type indexV1_GetUserSportProfileResponses as GetUserSportProfileResponses, type indexV1_GetUserSportProfilesData as GetUserSportProfilesData, type indexV1_GetUserSportProfilesError as GetUserSportProfilesError, type indexV1_GetUserSportProfilesErrors as GetUserSportProfilesErrors, type indexV1_GetUserSportProfilesResponse as GetUserSportProfilesResponse, type indexV1_GetUserSportProfilesResponses as GetUserSportProfilesResponses, type indexV1_LinkType as LinkType, type indexV1_ListFacilityOffersData as ListFacilityOffersData, type indexV1_ListFacilityOffersError as ListFacilityOffersError, type indexV1_ListFacilityOffersErrors as ListFacilityOffersErrors, type indexV1_ListFacilityOffersResponse as ListFacilityOffersResponse, type indexV1_ListFacilityOffersResponses as ListFacilityOffersResponses, type indexV1_ListMatchesData as ListMatchesData, type indexV1_ListMatchesError as ListMatchesError, type indexV1_ListMatchesErrors as ListMatchesErrors, type indexV1_ListMatchesResponse as ListMatchesResponse, type indexV1_ListMatchesResponses as ListMatchesResponses, type indexV1_ListPlayerMatchResultsData as ListPlayerMatchResultsData, type indexV1_ListPlayerMatchResultsError as ListPlayerMatchResultsError, type indexV1_ListPlayerMatchResultsErrors as ListPlayerMatchResultsErrors, type indexV1_ListPlayerMatchResultsResponse as ListPlayerMatchResultsResponse, type indexV1_ListPlayerMatchResultsResponses as ListPlayerMatchResultsResponses, type indexV1_Match as Match, type indexV1_MatchBasePrice as MatchBasePrice, type indexV1_MatchCourt as MatchCourt, type indexV1_MatchDetail as MatchDetail, type indexV1_MatchEvent as MatchEvent, type indexV1_MatchList as MatchList, type indexV1_MatchOccasion as MatchOccasion, type indexV1_MatchOccasionDetail as MatchOccasionDetail, type indexV1_MatchParticipants as MatchParticipants, type indexV1_MatchPriceListEntry as MatchPriceListEntry, type indexV1_MatchStatus as MatchStatus, type indexV1_MatchUserPrice as MatchUserPrice, type indexV1_Member as Member, type indexV1_MemberListResponse as MemberListResponse, type indexV1_MemberRelation as MemberRelation, type indexV1_MembershipStatus as MembershipStatus, type indexV1_Metadata as Metadata, type indexV1_Notification as Notification, type indexV1_NotificationPayload as NotificationPayload, type indexV1_NotificationRequestBody as NotificationRequestBody, type indexV1_NotificationsFilter as NotificationsFilter, type indexV1_NotificationsFilterParam as NotificationsFilterParam, type indexV1_NotificationsPaginatedResponse as NotificationsPaginatedResponse, type indexV1_NotificationsSummary as NotificationsSummary, type indexV1_OfferIdPath as OfferIdPath, type indexV1_OffsetPaginatedResultSet as OffsetPaginatedResultSet, type indexV1_Options as Options, type indexV1_PaginationMeta as PaginationMeta, type indexV1_ParticipantDetail as ParticipantDetail, type indexV1_ParticipantSummary as ParticipantSummary, type indexV1_PatchCommentRequest as PatchCommentRequest, type indexV1_PatchPostRequest as PatchPostRequest, type indexV1_PkgOpenapiSharedCursorLimitParam as PkgOpenapiSharedCursorLimitParam, type indexV1_PkgOpenapiSharedCursorPaginatedResultSet as PkgOpenapiSharedCursorPaginatedResultSet, type indexV1_PkgOpenapiSharedCursorParam as PkgOpenapiSharedCursorParam, type indexV1_PkgOpenapiSharedError as PkgOpenapiSharedError, type indexV1_PkgOpenapiSharedErrors as PkgOpenapiSharedErrors, type indexV1_PkgOpenapiSharedOffsetLimitParam as PkgOpenapiSharedOffsetLimitParam, type indexV1_PkgOpenapiSharedOffsetPaginatedResultSet as PkgOpenapiSharedOffsetPaginatedResultSet, type indexV1_PkgOpenapiSharedOffsetParam as PkgOpenapiSharedOffsetParam, type indexV1_PkgOpenapiSharedProblemDetails as PkgOpenapiSharedProblemDetails, type indexV1_Post as Post, type indexV1_PostIdParam as PostIdParam, type indexV1_PostLink as PostLink, type indexV1_PostListResponse as PostListResponse, type indexV1_PostingPermission as PostingPermission, type indexV1_Preference as Preference, type indexV1_PreferencesResponse as PreferencesResponse, type indexV1_Recommendation as Recommendation, type indexV1_RecommendationList as RecommendationList, type indexV1_RefundPolicy as RefundPolicy, type indexV1_RegisterDeviceData as RegisterDeviceData, type indexV1_RegisterDeviceError as RegisterDeviceError, type indexV1_RegisterDeviceErrors as RegisterDeviceErrors, type indexV1_RegisterDeviceRequest as RegisterDeviceRequest, type indexV1_RegisterDeviceResponse as RegisterDeviceResponse, type indexV1_RegisterDeviceResponses as RegisterDeviceResponses, type indexV1_SearchUsersData as SearchUsersData, type indexV1_SearchUsersError as SearchUsersError, type indexV1_SearchUsersErrors as SearchUsersErrors, type indexV1_SearchUsersResponse as SearchUsersResponse, type indexV1_SearchUsersResponses as SearchUsersResponses, type indexV1_Source as Source, type indexV1_SportAuthoritiesResponse as SportAuthoritiesResponse, type indexV1_SportAuthority as SportAuthority, type indexV1_SportLevel as SportLevel, type indexV1_SportProfile as SportProfile, type indexV1_SportProfileAttribute as SportProfileAttribute, type indexV1_SportProfileId as SportProfileId, type indexV1_SportProfileLevel as SportProfileLevel, type indexV1_SportProfilesResponse as SportProfilesResponse, type indexV1_Topic as Topic, type indexV1_UpdateAllNotificationsData as UpdateAllNotificationsData, type indexV1_UpdateAllNotificationsError as UpdateAllNotificationsError, type indexV1_UpdateAllNotificationsErrors as UpdateAllNotificationsErrors, type indexV1_UpdateAllNotificationsResponse as UpdateAllNotificationsResponse, type indexV1_UpdateAllNotificationsResponses as UpdateAllNotificationsResponses, type indexV1_UpdateNotificationData as UpdateNotificationData, type indexV1_UpdateNotificationError as UpdateNotificationError, type indexV1_UpdateNotificationErrors as UpdateNotificationErrors, type indexV1_UpdateNotificationResponse as UpdateNotificationResponse, type indexV1_UpdateNotificationResponses as UpdateNotificationResponses, type indexV1_UpdateNotificationsPreferencesData as UpdateNotificationsPreferencesData, type indexV1_UpdateNotificationsPreferencesError as UpdateNotificationsPreferencesError, type indexV1_UpdateNotificationsPreferencesErrors as UpdateNotificationsPreferencesErrors, type indexV1_UpdateNotificationsPreferencesResponse as UpdateNotificationsPreferencesResponse, type indexV1_UpdateNotificationsPreferencesResponses as UpdateNotificationsPreferencesResponses, type indexV1_UpdatePreferencesRequestBody as UpdatePreferencesRequestBody, type indexV1_UpdateSportProfileLevelRequest as UpdateSportProfileLevelRequest, type indexV1_UpdateUserProfileData as UpdateUserProfileData, type indexV1_UpdateUserProfileError as UpdateUserProfileError, type indexV1_UpdateUserProfileErrors as UpdateUserProfileErrors, type indexV1_UpdateUserProfileResponse as UpdateUserProfileResponse, type indexV1_UpdateUserProfileResponses as UpdateUserProfileResponses, type indexV1_UpdateUserSportProfileLevelData as UpdateUserSportProfileLevelData, type indexV1_UpdateUserSportProfileLevelError as UpdateUserSportProfileLevelError, type indexV1_UpdateUserSportProfileLevelErrors as UpdateUserSportProfileLevelErrors, type indexV1_UpdateUserSportProfileLevelResponse as UpdateUserSportProfileLevelResponse, type indexV1_UpdateUserSportProfileLevelResponses as UpdateUserSportProfileLevelResponses, type indexV1_UpdateUsersProfilesRequest as UpdateUsersProfilesRequest, type indexV1_UserId as UserId, type indexV1_UserIdParam as UserIdParam, type indexV1_UserParticipationStatus as UserParticipationStatus, type indexV1_UserProfile as UserProfile, type indexV1_UserRelation as UserRelation, type indexV1_UsersProfilesPaginatedResponse as UsersProfilesPaginatedResponse, type indexV1_Visibility as Visibility, indexV1_addUserSportProfileLevel as addUserSportProfileLevel, indexV1_client as client, indexV1_createFacilityOfferOrder as createFacilityOfferOrder, indexV1_createUserSportProfile as createUserSportProfile, indexV1_deleteUserSportProfile as deleteUserSportProfile, indexV1_deleteUserSportProfileLevel as deleteUserSportProfileLevel, indexV1_getMatch as getMatch, indexV1_getMatchUserPrice as getMatchUserPrice, indexV1_getNotificationById as getNotificationById, indexV1_getNotifications as getNotifications, indexV1_getNotificationsPreferences as getNotificationsPreferences, indexV1_getRecommendations as getRecommendations, indexV1_getSportAuthorities as getSportAuthorities, indexV1_getUserFacilityPermissions as getUserFacilityPermissions, indexV1_getUserSportProfile as getUserSportProfile, indexV1_getUserSportProfiles as getUserSportProfiles, indexV1_listFacilityOffers as listFacilityOffers, indexV1_listMatches as listMatches, indexV1_listPlayerMatchResults as listPlayerMatchResults, 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 };
8377
+ export { type indexV1_AddUserSportProfileLevelData as AddUserSportProfileLevelData, type indexV1_AddUserSportProfileLevelError as AddUserSportProfileLevelError, type indexV1_AddUserSportProfileLevelErrors as AddUserSportProfileLevelErrors, type indexV1_AddUserSportProfileLevelResponse as AddUserSportProfileLevelResponse, type indexV1_AddUserSportProfileLevelResponses as AddUserSportProfileLevelResponses, type indexV1_Author as Author, type indexV1_AuthoritySlug as AuthoritySlug, type indexV1_Channels as Channels, type indexV1_ClientOptions as ClientOptions, type indexV1_Comment as Comment, type indexV1_CommentIdParam as CommentIdParam, type indexV1_CommentListResponse as CommentListResponse, type indexV1_CommunityIdParam as CommunityIdParam, type indexV1_CommunityItem as CommunityItem, type indexV1_CommunityListResponse as CommunityListResponse, type indexV1_CreateCommentRequest as CreateCommentRequest, type indexV1_CreateFacilityOfferOrderData as CreateFacilityOfferOrderData, type indexV1_CreateFacilityOfferOrderError as CreateFacilityOfferOrderError, type indexV1_CreateFacilityOfferOrderErrors as CreateFacilityOfferOrderErrors, type indexV1_CreateFacilityOfferOrderResponse as CreateFacilityOfferOrderResponse, type indexV1_CreateFacilityOfferOrderResponses as CreateFacilityOfferOrderResponses, type indexV1_CreatePostRequest as CreatePostRequest, type indexV1_CreateSportProfileLevelRequest as CreateSportProfileLevelRequest, type indexV1_CreateSportProfileRequest as CreateSportProfileRequest, type indexV1_CreateUserSportProfileData as CreateUserSportProfileData, type indexV1_CreateUserSportProfileError as CreateUserSportProfileError, type indexV1_CreateUserSportProfileErrors as CreateUserSportProfileErrors, type indexV1_CreateUserSportProfileResponse as CreateUserSportProfileResponse, type indexV1_CreateUserSportProfileResponses as CreateUserSportProfileResponses, type indexV1_DeleteUserSportProfileData as DeleteUserSportProfileData, type indexV1_DeleteUserSportProfileError as DeleteUserSportProfileError, type indexV1_DeleteUserSportProfileErrors as DeleteUserSportProfileErrors, type indexV1_DeleteUserSportProfileLevelData as DeleteUserSportProfileLevelData, type indexV1_DeleteUserSportProfileLevelError as DeleteUserSportProfileLevelError, type indexV1_DeleteUserSportProfileLevelErrors as DeleteUserSportProfileLevelErrors, type indexV1_DeleteUserSportProfileLevelResponse as DeleteUserSportProfileLevelResponse, type indexV1_DeleteUserSportProfileLevelResponses as DeleteUserSportProfileLevelResponses, type indexV1_DeleteUserSportProfileResponse as DeleteUserSportProfileResponse, type indexV1_DeleteUserSportProfileResponses as DeleteUserSportProfileResponses, type indexV1_ExternalService as ExternalService, type indexV1_Facility as Facility, type indexV1_FacilityIdPath as FacilityIdPath, type indexV1_FacilityList as FacilityList, type indexV1_FacilityMessagePayload as FacilityMessagePayload, type indexV1_FacilityOffer as FacilityOffer, type indexV1_FacilityOfferCondition as FacilityOfferCondition, type indexV1_FacilityOfferConditionActivities as FacilityOfferConditionActivities, type indexV1_FacilityOfferConditionCourts as FacilityOfferConditionCourts, type indexV1_FacilityOfferConditionDate as FacilityOfferConditionDate, type indexV1_FacilityOfferConditionHoursinadvance as FacilityOfferConditionHoursinadvance, type indexV1_FacilityOfferConditionTime as FacilityOfferConditionTime, type indexV1_FacilityOfferConditionWeekdays as FacilityOfferConditionWeekdays, type indexV1_FacilityOfferList as FacilityOfferList, type indexV1_FacilityOfferOrder as FacilityOfferOrder, type indexV1_FacilityPermission as FacilityPermission, type indexV1_FacilityPermissionsResponse as FacilityPermissionsResponse, type indexV1_FacilityPunchCardData as FacilityPunchCardData, type indexV1_FacilityValueCardData as FacilityValueCardData, type indexV1_Gender as Gender, type indexV1_GetMatchData as GetMatchData, type indexV1_GetMatchError as GetMatchError, type indexV1_GetMatchErrors as GetMatchErrors, type indexV1_GetMatchResponse as GetMatchResponse, type indexV1_GetMatchResponses as GetMatchResponses, type indexV1_GetMatchUserPriceData as GetMatchUserPriceData, type indexV1_GetMatchUserPriceError as GetMatchUserPriceError, type indexV1_GetMatchUserPriceErrors as GetMatchUserPriceErrors, type indexV1_GetMatchUserPriceResponse as GetMatchUserPriceResponse, type indexV1_GetMatchUserPriceResponses as GetMatchUserPriceResponses, type indexV1_GetNotificationByIdData as GetNotificationByIdData, type indexV1_GetNotificationByIdError as GetNotificationByIdError, type indexV1_GetNotificationByIdErrors as GetNotificationByIdErrors, type indexV1_GetNotificationByIdResponse as GetNotificationByIdResponse, type indexV1_GetNotificationByIdResponses as GetNotificationByIdResponses, type indexV1_GetNotificationsData as GetNotificationsData, type indexV1_GetNotificationsError as GetNotificationsError, type indexV1_GetNotificationsErrors as GetNotificationsErrors, type indexV1_GetNotificationsPreferencesData as GetNotificationsPreferencesData, type indexV1_GetNotificationsPreferencesError as GetNotificationsPreferencesError, type indexV1_GetNotificationsPreferencesErrors as GetNotificationsPreferencesErrors, type indexV1_GetNotificationsPreferencesResponse as GetNotificationsPreferencesResponse, type indexV1_GetNotificationsPreferencesResponses as GetNotificationsPreferencesResponses, type indexV1_GetNotificationsResponse as GetNotificationsResponse, type indexV1_GetNotificationsResponses as GetNotificationsResponses, type indexV1_GetRecommendationsData as GetRecommendationsData, type indexV1_GetRecommendationsError as GetRecommendationsError, type indexV1_GetRecommendationsErrors as GetRecommendationsErrors, type indexV1_GetRecommendationsResponse as GetRecommendationsResponse, type indexV1_GetRecommendationsResponses as GetRecommendationsResponses, type indexV1_GetSportAuthoritiesData as GetSportAuthoritiesData, type indexV1_GetSportAuthoritiesError as GetSportAuthoritiesError, type indexV1_GetSportAuthoritiesErrors as GetSportAuthoritiesErrors, type indexV1_GetSportAuthoritiesResponse as GetSportAuthoritiesResponse, type indexV1_GetSportAuthoritiesResponses as GetSportAuthoritiesResponses, type indexV1_GetUserFacilityPermissionsData as GetUserFacilityPermissionsData, type indexV1_GetUserFacilityPermissionsError as GetUserFacilityPermissionsError, type indexV1_GetUserFacilityPermissionsErrors as GetUserFacilityPermissionsErrors, type indexV1_GetUserFacilityPermissionsResponse as GetUserFacilityPermissionsResponse, type indexV1_GetUserFacilityPermissionsResponses as GetUserFacilityPermissionsResponses, type indexV1_GetUserSportProfileData as GetUserSportProfileData, type indexV1_GetUserSportProfileError as GetUserSportProfileError, type indexV1_GetUserSportProfileErrors as GetUserSportProfileErrors, type indexV1_GetUserSportProfileResponse as GetUserSportProfileResponse, type indexV1_GetUserSportProfileResponses as GetUserSportProfileResponses, type indexV1_GetUserSportProfilesData as GetUserSportProfilesData, type indexV1_GetUserSportProfilesError as GetUserSportProfilesError, type indexV1_GetUserSportProfilesErrors as GetUserSportProfilesErrors, type indexV1_GetUserSportProfilesResponse as GetUserSportProfilesResponse, type indexV1_GetUserSportProfilesResponses as GetUserSportProfilesResponses, type indexV1_LinkType as LinkType, type indexV1_ListFacilityOffersData as ListFacilityOffersData, type indexV1_ListFacilityOffersError as ListFacilityOffersError, type indexV1_ListFacilityOffersErrors as ListFacilityOffersErrors, type indexV1_ListFacilityOffersResponse as ListFacilityOffersResponse, type indexV1_ListFacilityOffersResponses as ListFacilityOffersResponses, type indexV1_ListMatchesData as ListMatchesData, type indexV1_ListMatchesError as ListMatchesError, type indexV1_ListMatchesErrors as ListMatchesErrors, type indexV1_ListMatchesResponse as ListMatchesResponse, type indexV1_ListMatchesResponses as ListMatchesResponses, type indexV1_Match as Match, type indexV1_MatchBasePrice as MatchBasePrice, type indexV1_MatchCourt as MatchCourt, type indexV1_MatchDetail as MatchDetail, type indexV1_MatchEvent as MatchEvent, type indexV1_MatchList as MatchList, type indexV1_MatchOccasion as MatchOccasion, type indexV1_MatchOccasionDetail as MatchOccasionDetail, type indexV1_MatchParticipants as MatchParticipants, type indexV1_MatchPriceListEntry as MatchPriceListEntry, type indexV1_MatchStatus as MatchStatus, type indexV1_MatchUserPrice as MatchUserPrice, type indexV1_Member as Member, type indexV1_MemberListResponse as MemberListResponse, type indexV1_MemberRelation as MemberRelation, type indexV1_MembershipStatus as MembershipStatus, type indexV1_Metadata as Metadata, type indexV1_Notification as Notification, type indexV1_NotificationPayload as NotificationPayload, type indexV1_NotificationRequestBody as NotificationRequestBody, type indexV1_NotificationsFilter as NotificationsFilter, type indexV1_NotificationsFilterParam as NotificationsFilterParam, type indexV1_NotificationsPaginatedResponse as NotificationsPaginatedResponse, type indexV1_NotificationsSummary as NotificationsSummary, type indexV1_OfferIdPath as OfferIdPath, type indexV1_OffsetPaginatedResultSet as OffsetPaginatedResultSet, type indexV1_Options as Options, type indexV1_PaginationMeta as PaginationMeta, type indexV1_ParticipantDetail as ParticipantDetail, type indexV1_ParticipantSummary as ParticipantSummary, type indexV1_PatchCommentRequest as PatchCommentRequest, type indexV1_PatchPostRequest as PatchPostRequest, type indexV1_PkgOpenapiSharedCursorLimitParam as PkgOpenapiSharedCursorLimitParam, type indexV1_PkgOpenapiSharedCursorPaginatedResultSet as PkgOpenapiSharedCursorPaginatedResultSet, type indexV1_PkgOpenapiSharedCursorParam as PkgOpenapiSharedCursorParam, type indexV1_PkgOpenapiSharedError as PkgOpenapiSharedError, type indexV1_PkgOpenapiSharedErrors as PkgOpenapiSharedErrors, type indexV1_PkgOpenapiSharedOffsetLimitParam as PkgOpenapiSharedOffsetLimitParam, type indexV1_PkgOpenapiSharedOffsetPaginatedResultSet as PkgOpenapiSharedOffsetPaginatedResultSet, type indexV1_PkgOpenapiSharedOffsetParam as PkgOpenapiSharedOffsetParam, type indexV1_PkgOpenapiSharedProblemDetails as PkgOpenapiSharedProblemDetails, type indexV1_Post as Post, type indexV1_PostIdParam as PostIdParam, type indexV1_PostLink as PostLink, type indexV1_PostListResponse as PostListResponse, type indexV1_PostingPermission as PostingPermission, type indexV1_Preference as Preference, type indexV1_PreferencesResponse as PreferencesResponse, type indexV1_Recommendation as Recommendation, type indexV1_RecommendationList as RecommendationList, type indexV1_RefundPolicy as RefundPolicy, type indexV1_RegisterDeviceData as RegisterDeviceData, type indexV1_RegisterDeviceError as RegisterDeviceError, type indexV1_RegisterDeviceErrors as RegisterDeviceErrors, type indexV1_RegisterDeviceRequest as RegisterDeviceRequest, type indexV1_RegisterDeviceResponse as RegisterDeviceResponse, type indexV1_RegisterDeviceResponses as RegisterDeviceResponses, type indexV1_SearchUsersData as SearchUsersData, type indexV1_SearchUsersError as SearchUsersError, type indexV1_SearchUsersErrors as SearchUsersErrors, type indexV1_SearchUsersResponse as SearchUsersResponse, type indexV1_SearchUsersResponses as SearchUsersResponses, type indexV1_Source as Source, type indexV1_SportAuthoritiesResponse as SportAuthoritiesResponse, type indexV1_SportAuthority as SportAuthority, type indexV1_SportLevel as SportLevel, type indexV1_SportProfile as SportProfile, type indexV1_SportProfileAttribute as SportProfileAttribute, type indexV1_SportProfileId as SportProfileId, type indexV1_SportProfileLevel as SportProfileLevel, type indexV1_SportProfilesResponse as SportProfilesResponse, type indexV1_Topic as Topic, type indexV1_UpdateAllNotificationsData as UpdateAllNotificationsData, type indexV1_UpdateAllNotificationsError as UpdateAllNotificationsError, type indexV1_UpdateAllNotificationsErrors as UpdateAllNotificationsErrors, type indexV1_UpdateAllNotificationsResponse as UpdateAllNotificationsResponse, type indexV1_UpdateAllNotificationsResponses as UpdateAllNotificationsResponses, type indexV1_UpdateNotificationData as UpdateNotificationData, type indexV1_UpdateNotificationError as UpdateNotificationError, type indexV1_UpdateNotificationErrors as UpdateNotificationErrors, type indexV1_UpdateNotificationResponse as UpdateNotificationResponse, type indexV1_UpdateNotificationResponses as UpdateNotificationResponses, type indexV1_UpdateNotificationsPreferencesData as UpdateNotificationsPreferencesData, type indexV1_UpdateNotificationsPreferencesError as UpdateNotificationsPreferencesError, type indexV1_UpdateNotificationsPreferencesErrors as UpdateNotificationsPreferencesErrors, type indexV1_UpdateNotificationsPreferencesResponse as UpdateNotificationsPreferencesResponse, type indexV1_UpdateNotificationsPreferencesResponses as UpdateNotificationsPreferencesResponses, type indexV1_UpdatePreferencesRequestBody as UpdatePreferencesRequestBody, type indexV1_UpdateSportProfileLevelRequest as UpdateSportProfileLevelRequest, type indexV1_UpdateUserProfileData as UpdateUserProfileData, type indexV1_UpdateUserProfileError as UpdateUserProfileError, type indexV1_UpdateUserProfileErrors as UpdateUserProfileErrors, type indexV1_UpdateUserProfileResponse as UpdateUserProfileResponse, type indexV1_UpdateUserProfileResponses as UpdateUserProfileResponses, type indexV1_UpdateUserSportProfileLevelData as UpdateUserSportProfileLevelData, type indexV1_UpdateUserSportProfileLevelError as UpdateUserSportProfileLevelError, type indexV1_UpdateUserSportProfileLevelErrors as UpdateUserSportProfileLevelErrors, type indexV1_UpdateUserSportProfileLevelResponse as UpdateUserSportProfileLevelResponse, type indexV1_UpdateUserSportProfileLevelResponses as UpdateUserSportProfileLevelResponses, type indexV1_UpdateUsersProfilesRequest as UpdateUsersProfilesRequest, type indexV1_UserId as UserId, type indexV1_UserIdParam as UserIdParam, type indexV1_UserParticipationStatus as UserParticipationStatus, type indexV1_UserProfile as UserProfile, type indexV1_UserRelation as UserRelation, type indexV1_UsersProfilesPaginatedResponse as UsersProfilesPaginatedResponse, type indexV1_Visibility as Visibility, indexV1_addUserSportProfileLevel as addUserSportProfileLevel, indexV1_client as client, indexV1_createFacilityOfferOrder as createFacilityOfferOrder, indexV1_createUserSportProfile as createUserSportProfile, indexV1_deleteUserSportProfile as deleteUserSportProfile, indexV1_deleteUserSportProfileLevel as deleteUserSportProfileLevel, indexV1_getMatch as getMatch, indexV1_getMatchUserPrice as getMatchUserPrice, indexV1_getNotificationById as getNotificationById, indexV1_getNotifications as getNotifications, indexV1_getNotificationsPreferences as getNotificationsPreferences, indexV1_getRecommendations as getRecommendations, indexV1_getSportAuthorities as getSportAuthorities, indexV1_getUserFacilityPermissions as getUserFacilityPermissions, indexV1_getUserSportProfile as getUserSportProfile, indexV1_getUserSportProfiles as getUserSportProfiles, indexV1_listFacilityOffers as listFacilityOffers, indexV1_listMatches as listMatches, reactQuery_gen as queries, indexV1_registerDevice as registerDevice, schemas_gen as schemas, indexV1_searchUsers as searchUsers, indexV1_updateAllNotifications as updateAllNotifications, indexV1_updateNotification as updateNotification, indexV1_updateNotificationsPreferences as updateNotificationsPreferences, indexV1_updateUserProfile as updateUserProfile, indexV1_updateUserSportProfileLevel as updateUserSportProfileLevel };
8511
8378
  }
8512
8379
 
8513
8380
  export { type ActivityEvent, ActivityServiceV1Service, type AdminOccasionDetails, AnonymousService, ApiClientServiceV1Service, ApiError, AuthorizedService, BookingServiceV1Service, CancelError, CancelablePromise, CheckoutServiceV1Service, CompetitionServiceV1Service, CorsService, type Error$1 as Error, type ExternalServiceProperty, LoyaltyServiceV1Service, MembershipServiceV1Service, type OccasionCourt, OpenAPI, type OpenAPIConfig, type OrderPaymentDetails, type OrderPriceDetails, type OrderSplitPayments, type OrderSplitPaymentsRow, type OrderSplitPrice, type PaymentMethodPaymentRefund, PlaySessionServiceV1Service, type ServiceFeeSettings, UserServiceV1Service, type access, type activitiesResponse, type activity, type activityOccasion, type activityType, type actor, type address, type adyenGiftCardOutcome, type apiClient, type apiClientInput, type apiClientListResponse, type article, type articleMetadata, type authoritySportLevels, type availability, type booking, type bookingGroup, bookingRestriction, type bookingRestrictions, bookingSubType, bookingSubscription, type bookingSubscriptionPayment, type bookingUser, bookingUserStatus, type bookingUsersResponse, type bookingsResponse, type camera, cancellationPolicy, chat, type chatAuth, chatCreation, chatTarget, type checkoutResponse, clientType, type competitionAdminAccount, type config, type configuration, type configurationEntry, type configurationMap, type configurationResource, type coupon, type createBookingEventExternal, type createPromoCode, type dailyQuota, type days, type deleteBookingEventExternal, directionParam, type endTimePriceDetail, type endTimesWithRestrictions, type exposeOccasions, type facilitiesResponse, type facility, type facilityConfiguration, type facilityDetails, type friendRelationResponse, type friendRelationsResponse, type giftCard, type hideFullyBooked, type hours, type internalPaymentMethod, type levelRange, type limitParam, type listOfChats, type listUserRelations, type membershipRequest, type membershipRequestItem, type monthlyUsage, months, type newMessageNotification, notificationChatGroup, type notificationChatMember, notificationEntity, type notificationMessage, type notificationMessageData, type occasionBooking, type occasionParticipant, type offsetParam, type openingHours, type order, type orderSplitBaseResponse, type participants, type payment, type paymentDetails, type paymentInfo, type paymentInterval, type paymentMethodPaymentDetail, type paymentMethods, type paymentType, type paymentsResponse, pendingPayment, type playSession, type playSessionBooking, type playSessionBookingPayment, type playSessionResponse, playSessionSettings, playSessionUser, type playerLevels, playerStatusParam, playingUserResponse, type playingUsersResponse, type playsessionUserDetails, type position, type price, type priceDetails, type priceDetailsActivity, type profile, type promoCode, type promoCodeOutcome, type pspSession, type resource, type resultSet, type serviceFee, type sportLevels, type timeOfDay, type timeStamp, type usagePlan, userChatStatusParam, userChatTargetParam, type userFacility, type userId, type userInfo, type userMembership, type userOfferPunchCardsResponse, type userOfferValueCardsResponse, type userPublicProfile, userPunchCard, userRelation, userRelationStatusParam, type userValueCard, indexV1 as v1, type valueCardOutcome };