@matchi/api 0.20260410.1 → 0.20260416.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.
@@ -3823,6 +3823,86 @@ type Preference = {
3823
3823
  type PreferencesResponse = {
3824
3824
  items: Array<Preference>;
3825
3825
  };
3826
+ /**
3827
+ * A personalized recommendation. The common fields describe what, where, and when. Use type + id to navigate to the specific entity.
3828
+ *
3829
+ */
3830
+ type Recommendation = {
3831
+ /**
3832
+ * Social context — which of the user's connections are signed up.
3833
+ */
3834
+ connections: {
3835
+ /**
3836
+ * Number of the user's connections signed up.
3837
+ */
3838
+ count: number;
3839
+ /**
3840
+ * User IDs of connected participants, ordered by connection strength.
3841
+ */
3842
+ user_ids?: Array<string>;
3843
+ };
3844
+ date_end: string;
3845
+ date_start: string;
3846
+ facility_id: number;
3847
+ facility_name: string;
3848
+ /**
3849
+ * The recommended entity's ID. Use together with type to navigate to the appropriate detail page. Currently represents activity occasion IDs but may reference other entity types as the recommendation engine expands.
3850
+ *
3851
+ */
3852
+ id: string;
3853
+ /**
3854
+ * Maximum skill level (1-10). Null if not set.
3855
+ */
3856
+ level_max?: number | null;
3857
+ /**
3858
+ * Minimum skill level (1-10). Null if not set.
3859
+ */
3860
+ level_min?: number | null;
3861
+ /**
3862
+ * Display name for the recommendation card.
3863
+ */
3864
+ name: string;
3865
+ /**
3866
+ * Current number of confirmed participants.
3867
+ */
3868
+ participant_count: number;
3869
+ /**
3870
+ * Maximum participant capacity. Null if no limit.
3871
+ */
3872
+ participant_max?: number | null;
3873
+ /**
3874
+ * Recommendation relevance score (0-1). Higher is more relevant.
3875
+ */
3876
+ score: number;
3877
+ /**
3878
+ * Sport associated with this recommendation.
3879
+ */
3880
+ sport?: {
3881
+ id?: number;
3882
+ /**
3883
+ * Sport name (e.g. padel, tennis).
3884
+ */
3885
+ name?: string;
3886
+ } | null;
3887
+ /**
3888
+ * Number of open spots. Null if no limit.
3889
+ */
3890
+ spots_available?: number | null;
3891
+ /**
3892
+ * Categorization tags for visual treatment (icons, labels). Values are lowercase and derived from the recommended entity's metadata. Examples: ["competition", "americano"], ["match"], ["training", "group"]. Not a fixed enum — new values may appear as new entity types are added downstream.
3893
+ *
3894
+ */
3895
+ tags: Array<string>;
3896
+ /**
3897
+ * The entity type. Determines what kind of detail page to navigate to.
3898
+ *
3899
+ */
3900
+ type: 'CLASS_ACTIVITY' | 'EVENT_ACTIVITY' | 'COURSE_ACTIVITY' | 'MATCH_ACTIVITY';
3901
+ };
3902
+ type RecommendationList = {
3903
+ items: Array<Recommendation>;
3904
+ meta: PkgOpenapiSharedOffsetPaginatedResultSet;
3905
+ };
3826
3906
  type RegisterDeviceRequest = {
3827
3907
  app_version: string;
3828
3908
  fcm_token: string;
@@ -4568,6 +4648,134 @@ type UpdateUserProfileResponses = {
4568
4648
  200: UserProfile;
4569
4649
  };
4570
4650
  type UpdateUserProfileResponse = UpdateUserProfileResponses[keyof UpdateUserProfileResponses];
4651
+ type GetRecommendationsData = {
4652
+ body?: never;
4653
+ path: {
4654
+ /**
4655
+ * The user ID to get recommendations for. Must match the authenticated user.
4656
+ */
4657
+ user_id: string;
4658
+ };
4659
+ query: {
4660
+ /**
4661
+ * The category of recommendations to return. ACTIVITIES includes all activity-based occasions (classes, events, courses, and matches).
4662
+ *
4663
+ */
4664
+ type: 'ACTIVITIES';
4665
+ /**
4666
+ * Caller gender for filtering gender-restricted activities. Omit to show all.
4667
+ */
4668
+ gender?: 'MALE' | 'FEMALE';
4669
+ /**
4670
+ * User latitude for spatial filtering. Omit for all facilities.
4671
+ */
4672
+ latitude?: number;
4673
+ /**
4674
+ * User longitude for spatial filtering. Omit for all facilities.
4675
+ */
4676
+ longitude?: number;
4677
+ /**
4678
+ * Search radius in kilometers.
4679
+ */
4680
+ radius_km?: number;
4681
+ /**
4682
+ * Filter by sport names. Omit for all sports.
4683
+ */
4684
+ sports?: Array<string>;
4685
+ /**
4686
+ * Filter by activity class (activity, match). Omit for all.
4687
+ */
4688
+ activity_classes?: Array<string>;
4689
+ /**
4690
+ * How many days ahead to look for upcoming occasions.
4691
+ */
4692
+ days_ahead?: number;
4693
+ /**
4694
+ * Include sold-out events.
4695
+ */
4696
+ include_full?: boolean;
4697
+ /**
4698
+ * Caller's skill levels per sport for level-based filtering. JSON array of objects with "sport" (string) and "level" (number). Occasions where the caller's level is outside [level_min, level_max] are excluded. Omit to skip level filtering.
4699
+ *
4700
+ */
4701
+ caller_levels?: string;
4702
+ /**
4703
+ * Weight for social connection signal (0-5).
4704
+ */
4705
+ w_social?: number;
4706
+ /**
4707
+ * Weight for repeat attendance signal (0-5).
4708
+ */
4709
+ w_repeat?: number;
4710
+ /**
4711
+ * Weight for sport preference signal (0-5).
4712
+ */
4713
+ w_sport?: number;
4714
+ /**
4715
+ * Weight for facility preference signal (0-5).
4716
+ */
4717
+ w_facility?: number;
4718
+ /**
4719
+ * Weight for time-of-day preference signal (0-5).
4720
+ */
4721
+ w_time_of_day?: number;
4722
+ /**
4723
+ * Weight for weekday/weekend pattern signal (0-5).
4724
+ */
4725
+ w_weekend?: number;
4726
+ /**
4727
+ * Weight for time urgency signal (0-5).
4728
+ */
4729
+ w_urgency?: number;
4730
+ /**
4731
+ * Weight for capacity/fill rate signal (0-5).
4732
+ */
4733
+ w_capacity?: number;
4734
+ /**
4735
+ * Recency decay half-life in days.
4736
+ */
4737
+ decay_half_life?: number;
4738
+ /**
4739
+ * Minimum final_score threshold.
4740
+ */
4741
+ min_score?: number;
4742
+ /**
4743
+ * Number of items to skip before returning the results.
4744
+ */
4745
+ offset?: number;
4746
+ /**
4747
+ * Maximum number of items to return.
4748
+ */
4749
+ limit?: number;
4750
+ };
4751
+ url: '/users/{user_id}/recommendations';
4752
+ };
4753
+ type GetRecommendationsErrors = {
4754
+ /**
4755
+ * The request was malformed or could not be processed.
4756
+ */
4757
+ 400: PkgOpenapiSharedProblemDetails;
4758
+ /**
4759
+ * Access token is not set or invalid.
4760
+ */
4761
+ 401: PkgOpenapiSharedProblemDetails;
4762
+ /**
4763
+ * The requestor is not authorized to perform this operation on the resource.
4764
+ */
4765
+ 403: PkgOpenapiSharedProblemDetails;
4766
+ /**
4767
+ * The server encountered an unexpected error
4768
+ */
4769
+ 500: PkgOpenapiSharedProblemDetails;
4770
+ };
4771
+ type GetRecommendationsError = GetRecommendationsErrors[keyof GetRecommendationsErrors];
4772
+ type GetRecommendationsResponses = {
4773
+ /**
4774
+ * OK
4775
+ */
4776
+ 200: RecommendationList;
4777
+ };
4778
+ type GetRecommendationsResponse = GetRecommendationsResponses[keyof GetRecommendationsResponses];
4571
4779
  type GetUserSportProfilesData = {
4572
4780
  body?: never;
4573
4781
  path: {
@@ -5695,6 +5903,123 @@ declare const PreferencesResponseSchema: {
5695
5903
  readonly required: readonly ["items"];
5696
5904
  readonly type: "object";
5697
5905
  };
5906
+ declare const RecommendationSchema: {
5907
+ readonly description: "A personalized recommendation. The common fields describe what, where, and when. Use type + id to navigate to the specific entity.\n";
5908
+ readonly properties: {
5909
+ readonly connections: {
5910
+ readonly description: "Social context — which of the user's connections are signed up.";
5911
+ readonly properties: {
5912
+ readonly count: {
5913
+ readonly description: "Number of the user's connections signed up.";
5914
+ readonly type: "integer";
5915
+ };
5916
+ readonly user_ids: {
5917
+ readonly description: "User IDs of connected participants, ordered by connection strength.";
5918
+ readonly items: {
5919
+ readonly type: "string";
5920
+ };
5921
+ readonly type: "array";
5922
+ };
5923
+ };
5924
+ readonly required: readonly ["count"];
5925
+ readonly type: "object";
5926
+ };
5927
+ readonly date_end: {
5928
+ readonly format: "date-time";
5929
+ readonly type: "string";
5930
+ };
5931
+ readonly date_start: {
5932
+ readonly format: "date-time";
5933
+ readonly type: "string";
5934
+ };
5935
+ readonly facility_id: {
5936
+ readonly type: "integer";
5937
+ };
5938
+ readonly facility_name: {
5939
+ readonly type: "string";
5940
+ };
5941
+ readonly id: {
5942
+ readonly description: "The recommended entity's ID. Use together with type to navigate to the appropriate detail page. Currently represents activity occasion IDs but may reference other entity types as the recommendation engine expands.\n";
5943
+ readonly type: "string";
5944
+ };
5945
+ readonly level_max: {
5946
+ readonly description: "Maximum skill level (1-10). Null if not set.";
5947
+ readonly nullable: true;
5948
+ readonly type: "integer";
5949
+ };
5950
+ readonly level_min: {
5951
+ readonly description: "Minimum skill level (1-10). Null if not set.";
5952
+ readonly nullable: true;
5953
+ readonly type: "integer";
5954
+ };
5955
+ readonly name: {
5956
+ readonly description: "Display name for the recommendation card.";
5957
+ readonly type: "string";
5958
+ };
5959
+ readonly participant_count: {
5960
+ readonly description: "Current number of confirmed participants.";
5961
+ readonly type: "integer";
5962
+ };
5963
+ readonly participant_max: {
5964
+ readonly description: "Maximum participant capacity. Null if no limit.";
5965
+ readonly nullable: true;
5966
+ readonly type: "integer";
5967
+ };
5968
+ readonly score: {
5969
+ readonly description: "Recommendation relevance score (0-1). Higher is more relevant.";
5970
+ readonly format: "float";
5971
+ readonly type: "number";
5972
+ };
5973
+ readonly sport: {
5974
+ readonly description: "Sport associated with this recommendation.";
5975
+ readonly nullable: true;
5976
+ readonly properties: {
5977
+ readonly id: {
5978
+ readonly type: "integer";
5979
+ };
5980
+ readonly name: {
5981
+ readonly description: "Sport name (e.g. padel, tennis).";
5982
+ readonly type: "string";
5983
+ };
5984
+ };
5985
+ readonly type: "object";
5986
+ };
5987
+ readonly spots_available: {
5988
+ readonly description: "Number of open spots. Null if no limit.";
5989
+ readonly nullable: true;
5990
+ readonly type: "integer";
5991
+ };
5992
+ readonly tags: {
5993
+ readonly description: "Categorization tags for visual treatment (icons, labels). Values are lowercase and derived from the recommended entity's metadata. Examples: [\"competition\", \"americano\"], [\"match\"], [\"training\", \"group\"]. Not a fixed enum — new values may appear as new entity types are added downstream.\n";
5994
+ readonly items: {
5995
+ readonly type: "string";
5996
+ };
5997
+ readonly type: "array";
5998
+ };
5999
+ readonly type: {
6000
+ readonly description: "The entity type. Determines what kind of detail page to navigate to.\n";
6001
+ readonly enum: readonly ["CLASS_ACTIVITY", "EVENT_ACTIVITY", "COURSE_ACTIVITY", "MATCH_ACTIVITY"];
6002
+ readonly type: "string";
6003
+ };
6004
+ };
6005
+ readonly required: readonly ["type", "id", "name", "facility_id", "facility_name", "date_start", "date_end", "participant_count", "score", "connections", "tags"];
6006
+ readonly type: "object";
6007
+ };
6008
+ declare const RecommendationListSchema: {
6009
+ readonly properties: {
6010
+ readonly items: {
6011
+ readonly items: {
6012
+ readonly $ref: "#/components/schemas/Recommendation";
6013
+ };
6014
+ readonly type: "array";
6015
+ };
6016
+ readonly meta: {
6017
+ readonly $ref: "#/components/schemas/pkgOpenapiSharedOffsetPaginatedResultSet";
6018
+ };
6019
+ };
6020
+ readonly required: readonly ["items", "meta"];
6021
+ readonly type: "object";
6022
+ };
5698
6023
  declare const RegisterDeviceRequestSchema: {
5699
6024
  readonly properties: {
5700
6025
  readonly app_version: {
@@ -6181,6 +6506,8 @@ declare const schemas_gen_PostSchema: typeof PostSchema;
6181
6506
  declare const schemas_gen_PostingPermissionSchema: typeof PostingPermissionSchema;
6182
6507
  declare const schemas_gen_PreferenceSchema: typeof PreferenceSchema;
6183
6508
  declare const schemas_gen_PreferencesResponseSchema: typeof PreferencesResponseSchema;
6509
+ declare const schemas_gen_RecommendationListSchema: typeof RecommendationListSchema;
6510
+ declare const schemas_gen_RecommendationSchema: typeof RecommendationSchema;
6184
6511
  declare const schemas_gen_RegisterDeviceRequestSchema: typeof RegisterDeviceRequestSchema;
6185
6512
  declare const schemas_gen_SourceSchema: typeof SourceSchema;
6186
6513
  declare const schemas_gen_SportAuthoritiesResponseSchema: typeof SportAuthoritiesResponseSchema;
@@ -6204,7 +6531,7 @@ declare const schemas_gen_pkgOpenapiSharedErrorsSchema: typeof pkgOpenapiSharedE
6204
6531
  declare const schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema: typeof pkgOpenapiSharedOffsetPaginatedResultSetSchema;
6205
6532
  declare const schemas_gen_pkgOpenapiSharedProblemDetailsSchema: typeof pkgOpenapiSharedProblemDetailsSchema;
6206
6533
  declare namespace schemas_gen {
6207
- export { schemas_gen_AuthorSchema as AuthorSchema, schemas_gen_ChannelsSchema as ChannelsSchema, schemas_gen_CommentListResponseSchema as CommentListResponseSchema, schemas_gen_CommentSchema as CommentSchema, schemas_gen_CommunityItemSchema as CommunityItemSchema, schemas_gen_CommunityListResponseSchema as CommunityListResponseSchema, schemas_gen_CreateCommentRequestSchema as CreateCommentRequestSchema, schemas_gen_CreatePostRequestSchema as CreatePostRequestSchema, schemas_gen_CreateSportProfileLevelRequestSchema as CreateSportProfileLevelRequestSchema, schemas_gen_CreateSportProfileRequestSchema as CreateSportProfileRequestSchema, schemas_gen_FacilityMessagePayloadSchema as FacilityMessagePayloadSchema, schemas_gen_FacilityOfferConditionActivitiesSchema as FacilityOfferConditionActivitiesSchema, schemas_gen_FacilityOfferConditionCourtsSchema as FacilityOfferConditionCourtsSchema, schemas_gen_FacilityOfferConditionDateSchema as FacilityOfferConditionDateSchema, schemas_gen_FacilityOfferConditionHoursinadvanceSchema as FacilityOfferConditionHoursinadvanceSchema, schemas_gen_FacilityOfferConditionSchema as FacilityOfferConditionSchema, schemas_gen_FacilityOfferConditionTimeSchema as FacilityOfferConditionTimeSchema, schemas_gen_FacilityOfferConditionWeekdaysSchema as FacilityOfferConditionWeekdaysSchema, schemas_gen_FacilityOfferListSchema as FacilityOfferListSchema, schemas_gen_FacilityOfferOrderSchema as FacilityOfferOrderSchema, schemas_gen_FacilityOfferSchema as FacilityOfferSchema, schemas_gen_FacilityPermissionSchema as FacilityPermissionSchema, schemas_gen_FacilityPermissionsResponseSchema as FacilityPermissionsResponseSchema, schemas_gen_FacilityPunchCardDataSchema as FacilityPunchCardDataSchema, schemas_gen_FacilityValueCardDataSchema as FacilityValueCardDataSchema, schemas_gen_GenderSchema as GenderSchema, schemas_gen_LinkTypeSchema as LinkTypeSchema, schemas_gen_MemberListResponseSchema as MemberListResponseSchema, schemas_gen_MemberRelationSchema as MemberRelationSchema, schemas_gen_MemberSchema as MemberSchema, schemas_gen_MembershipStatusSchema as MembershipStatusSchema, schemas_gen_MetadataSchema as MetadataSchema, schemas_gen_NotificationPayloadSchema as NotificationPayloadSchema, schemas_gen_NotificationRequestBodySchema as NotificationRequestBodySchema, schemas_gen_NotificationSchema as NotificationSchema, schemas_gen_NotificationsFilterSchema as NotificationsFilterSchema, schemas_gen_NotificationsPaginatedResponseSchema as NotificationsPaginatedResponseSchema, schemas_gen_NotificationsSummarySchema as NotificationsSummarySchema, schemas_gen_PaginationMetaSchema as PaginationMetaSchema, schemas_gen_PatchCommentRequestSchema as PatchCommentRequestSchema, schemas_gen_PatchPostRequestSchema as PatchPostRequestSchema, schemas_gen_PostLinkSchema as PostLinkSchema, schemas_gen_PostListResponseSchema as PostListResponseSchema, schemas_gen_PostSchema as PostSchema, schemas_gen_PostingPermissionSchema as PostingPermissionSchema, schemas_gen_PreferenceSchema as PreferenceSchema, schemas_gen_PreferencesResponseSchema as PreferencesResponseSchema, schemas_gen_RegisterDeviceRequestSchema as RegisterDeviceRequestSchema, schemas_gen_SourceSchema as SourceSchema, schemas_gen_SportAuthoritiesResponseSchema as SportAuthoritiesResponseSchema, schemas_gen_SportAuthoritySchema as SportAuthoritySchema, schemas_gen_SportLevelSchema as SportLevelSchema, schemas_gen_SportProfileAttributeSchema as SportProfileAttributeSchema, schemas_gen_SportProfileLevelSchema as SportProfileLevelSchema, schemas_gen_SportProfileSchema as SportProfileSchema, schemas_gen_SportProfilesResponseSchema as SportProfilesResponseSchema, schemas_gen_TopicSchema as TopicSchema, schemas_gen_UpdatePreferencesRequestBodySchema as UpdatePreferencesRequestBodySchema, schemas_gen_UpdateSportProfileLevelRequestSchema as UpdateSportProfileLevelRequestSchema, schemas_gen_UpdateUsersProfilesRequestSchema as UpdateUsersProfilesRequestSchema, schemas_gen_UserProfileSchema as UserProfileSchema, schemas_gen_UserRelationSchema as UserRelationSchema, schemas_gen_UsersProfilesPaginatedResponseSchema as UsersProfilesPaginatedResponseSchema, schemas_gen_VisibilitySchema as VisibilitySchema, schemas_gen_pkgOpenapiSharedCursorPaginatedResultSetSchema as pkgOpenapiSharedCursorPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedErrorSchema as pkgOpenapiSharedErrorSchema, schemas_gen_pkgOpenapiSharedErrorsSchema as pkgOpenapiSharedErrorsSchema, schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema as pkgOpenapiSharedOffsetPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedProblemDetailsSchema as pkgOpenapiSharedProblemDetailsSchema };
6534
+ export { schemas_gen_AuthorSchema as AuthorSchema, schemas_gen_ChannelsSchema as ChannelsSchema, schemas_gen_CommentListResponseSchema as CommentListResponseSchema, schemas_gen_CommentSchema as CommentSchema, schemas_gen_CommunityItemSchema as CommunityItemSchema, schemas_gen_CommunityListResponseSchema as CommunityListResponseSchema, schemas_gen_CreateCommentRequestSchema as CreateCommentRequestSchema, schemas_gen_CreatePostRequestSchema as CreatePostRequestSchema, schemas_gen_CreateSportProfileLevelRequestSchema as CreateSportProfileLevelRequestSchema, schemas_gen_CreateSportProfileRequestSchema as CreateSportProfileRequestSchema, schemas_gen_FacilityMessagePayloadSchema as FacilityMessagePayloadSchema, schemas_gen_FacilityOfferConditionActivitiesSchema as FacilityOfferConditionActivitiesSchema, schemas_gen_FacilityOfferConditionCourtsSchema as FacilityOfferConditionCourtsSchema, schemas_gen_FacilityOfferConditionDateSchema as FacilityOfferConditionDateSchema, schemas_gen_FacilityOfferConditionHoursinadvanceSchema as FacilityOfferConditionHoursinadvanceSchema, schemas_gen_FacilityOfferConditionSchema as FacilityOfferConditionSchema, schemas_gen_FacilityOfferConditionTimeSchema as FacilityOfferConditionTimeSchema, schemas_gen_FacilityOfferConditionWeekdaysSchema as FacilityOfferConditionWeekdaysSchema, schemas_gen_FacilityOfferListSchema as FacilityOfferListSchema, schemas_gen_FacilityOfferOrderSchema as FacilityOfferOrderSchema, schemas_gen_FacilityOfferSchema as FacilityOfferSchema, schemas_gen_FacilityPermissionSchema as FacilityPermissionSchema, schemas_gen_FacilityPermissionsResponseSchema as FacilityPermissionsResponseSchema, schemas_gen_FacilityPunchCardDataSchema as FacilityPunchCardDataSchema, schemas_gen_FacilityValueCardDataSchema as FacilityValueCardDataSchema, schemas_gen_GenderSchema as GenderSchema, schemas_gen_LinkTypeSchema as LinkTypeSchema, schemas_gen_MemberListResponseSchema as MemberListResponseSchema, schemas_gen_MemberRelationSchema as MemberRelationSchema, schemas_gen_MemberSchema as MemberSchema, schemas_gen_MembershipStatusSchema as MembershipStatusSchema, schemas_gen_MetadataSchema as MetadataSchema, schemas_gen_NotificationPayloadSchema as NotificationPayloadSchema, schemas_gen_NotificationRequestBodySchema as NotificationRequestBodySchema, schemas_gen_NotificationSchema as NotificationSchema, schemas_gen_NotificationsFilterSchema as NotificationsFilterSchema, schemas_gen_NotificationsPaginatedResponseSchema as NotificationsPaginatedResponseSchema, schemas_gen_NotificationsSummarySchema as NotificationsSummarySchema, schemas_gen_PaginationMetaSchema as PaginationMetaSchema, schemas_gen_PatchCommentRequestSchema as PatchCommentRequestSchema, schemas_gen_PatchPostRequestSchema as PatchPostRequestSchema, schemas_gen_PostLinkSchema as PostLinkSchema, schemas_gen_PostListResponseSchema as PostListResponseSchema, schemas_gen_PostSchema as PostSchema, schemas_gen_PostingPermissionSchema as PostingPermissionSchema, schemas_gen_PreferenceSchema as PreferenceSchema, schemas_gen_PreferencesResponseSchema as PreferencesResponseSchema, schemas_gen_RecommendationListSchema as RecommendationListSchema, schemas_gen_RecommendationSchema as RecommendationSchema, schemas_gen_RegisterDeviceRequestSchema as RegisterDeviceRequestSchema, schemas_gen_SourceSchema as SourceSchema, schemas_gen_SportAuthoritiesResponseSchema as SportAuthoritiesResponseSchema, schemas_gen_SportAuthoritySchema as SportAuthoritySchema, schemas_gen_SportLevelSchema as SportLevelSchema, schemas_gen_SportProfileAttributeSchema as SportProfileAttributeSchema, schemas_gen_SportProfileLevelSchema as SportProfileLevelSchema, schemas_gen_SportProfileSchema as SportProfileSchema, schemas_gen_SportProfilesResponseSchema as SportProfilesResponseSchema, schemas_gen_TopicSchema as TopicSchema, schemas_gen_UpdatePreferencesRequestBodySchema as UpdatePreferencesRequestBodySchema, schemas_gen_UpdateSportProfileLevelRequestSchema as UpdateSportProfileLevelRequestSchema, schemas_gen_UpdateUsersProfilesRequestSchema as UpdateUsersProfilesRequestSchema, schemas_gen_UserProfileSchema as UserProfileSchema, schemas_gen_UserRelationSchema as UserRelationSchema, schemas_gen_UsersProfilesPaginatedResponseSchema as UsersProfilesPaginatedResponseSchema, schemas_gen_VisibilitySchema as VisibilitySchema, schemas_gen_pkgOpenapiSharedCursorPaginatedResultSetSchema as pkgOpenapiSharedCursorPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedErrorSchema as pkgOpenapiSharedErrorSchema, schemas_gen_pkgOpenapiSharedErrorsSchema as pkgOpenapiSharedErrorsSchema, schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema as pkgOpenapiSharedOffsetPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedProblemDetailsSchema as pkgOpenapiSharedProblemDetailsSchema };
6208
6535
  }
6209
6536
 
6210
6537
  type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
@@ -6292,6 +6619,13 @@ declare const getUserFacilityPermissions: <ThrowOnError extends boolean = false>
6292
6619
  * Update authenticated user's profile information
6293
6620
  */
6294
6621
  declare const updateUserProfile: <ThrowOnError extends boolean = false>(options: Options<UpdateUserProfileData, ThrowOnError>) => RequestResult<UpdateUserProfileResponses, UpdateUserProfileErrors, ThrowOnError, "fields">;
6622
+ /**
6623
+ * Get personalized recommendations
6624
+ *
6625
+ * Returns personalized recommendations for the given user. The type parameter determines what kind of recommendations to return. Results are ordered by relevance score (descending).
6626
+ *
6627
+ */
6628
+ declare const getRecommendations: <ThrowOnError extends boolean = false>(options: Options<GetRecommendationsData, ThrowOnError>) => RequestResult<GetRecommendationsResponses, GetRecommendationsErrors, ThrowOnError, "fields">;
6295
6629
  /**
6296
6630
  * List sport profiles for a user
6297
6631
  *
@@ -6660,6 +6994,64 @@ declare const getUserFacilityPermissionsOptions: (options: Options<GetUserFacili
6660
6994
  * Update authenticated user's profile information
6661
6995
  */
6662
6996
  declare const updateUserProfileMutation: (options?: Partial<Options<UpdateUserProfileData>>) => UseMutationOptions<UpdateUserProfileResponse, UpdateUserProfileError, Options<UpdateUserProfileData>>;
6997
+ declare const getRecommendationsQueryKey: (options: Options<GetRecommendationsData>) => [Pick<Options<GetRecommendationsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
6998
+ _id: string;
6999
+ _infinite?: boolean;
7000
+ tags?: ReadonlyArray<string>;
7001
+ }];
7002
+ /**
7003
+ * Get personalized recommendations
7004
+ *
7005
+ * Returns personalized recommendations for the given user. The type parameter determines what kind of recommendations to return. Results are ordered by relevance score (descending).
7006
+ *
7007
+ */
7008
+ declare const getRecommendationsOptions: (options: Options<GetRecommendationsData>) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<RecommendationList, PkgOpenapiSharedProblemDetails, RecommendationList, [Pick<Options<GetRecommendationsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
7009
+ _id: string;
7010
+ _infinite?: boolean;
7011
+ tags?: ReadonlyArray<string>;
7012
+ }]>, "queryFn"> & {
7013
+ queryFn?: _tanstack_react_query.QueryFunction<RecommendationList, [Pick<Options<GetRecommendationsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
7014
+ _id: string;
7015
+ _infinite?: boolean;
7016
+ tags?: ReadonlyArray<string>;
7017
+ }], never> | undefined;
7018
+ } & {
7019
+ queryKey: [Pick<Options<GetRecommendationsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
7020
+ _id: string;
7021
+ _infinite?: boolean;
7022
+ tags?: ReadonlyArray<string>;
7023
+ }] & {
7024
+ [dataTagSymbol]: RecommendationList;
7025
+ [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
7026
+ };
7027
+ };
7028
+ declare const getRecommendationsInfiniteQueryKey: (options: Options<GetRecommendationsData>) => QueryKey<Options<GetRecommendationsData>>;
7029
+ /**
7030
+ * Get personalized recommendations
7031
+ *
7032
+ * Returns personalized recommendations for the given user. The type parameter determines what kind of recommendations to return. Results are ordered by relevance score (descending).
7033
+ *
7034
+ */
7035
+ declare const getRecommendationsInfiniteOptions: (options: Options<GetRecommendationsData>) => _tanstack_react_query.UseInfiniteQueryOptions<RecommendationList, PkgOpenapiSharedProblemDetails, InfiniteData<RecommendationList, unknown>, QueryKey<Options<GetRecommendationsData>>, number | Pick<Pick<Options<GetRecommendationsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
7036
+ _id: string;
7037
+ _infinite?: boolean;
7038
+ tags?: ReadonlyArray<string>;
7039
+ }, "query" | "body" | "headers" | "path">> & {
7040
+ initialData: InfiniteData<RecommendationList, number | Pick<Pick<Options<GetRecommendationsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
7041
+ _id: string;
7042
+ _infinite?: boolean;
7043
+ tags?: ReadonlyArray<string>;
7044
+ }, "query" | "body" | "headers" | "path">> | (() => InfiniteData<RecommendationList, number | Pick<Pick<Options<GetRecommendationsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
7045
+ _id: string;
7046
+ _infinite?: boolean;
7047
+ tags?: ReadonlyArray<string>;
7048
+ }, "query" | "body" | "headers" | "path">>) | undefined;
7049
+ } & {
7050
+ queryKey: QueryKey<Options<GetRecommendationsData>> & {
7051
+ [dataTagSymbol]: InfiniteData<RecommendationList, unknown>;
7052
+ [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
7053
+ };
7054
+ };
6663
7055
  declare const getUserSportProfilesQueryKey: (options: Options<GetUserSportProfilesData>) => [Pick<Options<GetUserSportProfilesData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
6664
7056
  _id: string;
6665
7057
  _infinite?: boolean;
@@ -6765,6 +7157,10 @@ declare const reactQuery_gen_getNotificationsOptions: typeof getNotificationsOpt
6765
7157
  declare const reactQuery_gen_getNotificationsPreferencesOptions: typeof getNotificationsPreferencesOptions;
6766
7158
  declare const reactQuery_gen_getNotificationsPreferencesQueryKey: typeof getNotificationsPreferencesQueryKey;
6767
7159
  declare const reactQuery_gen_getNotificationsQueryKey: typeof getNotificationsQueryKey;
7160
+ declare const reactQuery_gen_getRecommendationsInfiniteOptions: typeof getRecommendationsInfiniteOptions;
7161
+ declare const reactQuery_gen_getRecommendationsInfiniteQueryKey: typeof getRecommendationsInfiniteQueryKey;
7162
+ declare const reactQuery_gen_getRecommendationsOptions: typeof getRecommendationsOptions;
7163
+ declare const reactQuery_gen_getRecommendationsQueryKey: typeof getRecommendationsQueryKey;
6768
7164
  declare const reactQuery_gen_getSportAuthoritiesOptions: typeof getSportAuthoritiesOptions;
6769
7165
  declare const reactQuery_gen_getSportAuthoritiesQueryKey: typeof getSportAuthoritiesQueryKey;
6770
7166
  declare const reactQuery_gen_getUserFacilityPermissionsOptions: typeof getUserFacilityPermissionsOptions;
@@ -6787,7 +7183,7 @@ declare const reactQuery_gen_updateNotificationsPreferencesMutation: typeof upda
6787
7183
  declare const reactQuery_gen_updateUserProfileMutation: typeof updateUserProfileMutation;
6788
7184
  declare const reactQuery_gen_updateUserSportProfileLevelMutation: typeof updateUserSportProfileLevelMutation;
6789
7185
  declare namespace reactQuery_gen {
6790
- export { type reactQuery_gen_QueryKey as QueryKey, reactQuery_gen_addUserSportProfileLevelMutation as addUserSportProfileLevelMutation, reactQuery_gen_createFacilityOfferOrderMutation as createFacilityOfferOrderMutation, reactQuery_gen_createUserSportProfileMutation as createUserSportProfileMutation, reactQuery_gen_deleteUserSportProfileLevelMutation as deleteUserSportProfileLevelMutation, reactQuery_gen_deleteUserSportProfileMutation as deleteUserSportProfileMutation, reactQuery_gen_getNotificationByIdOptions as getNotificationByIdOptions, reactQuery_gen_getNotificationByIdQueryKey as getNotificationByIdQueryKey, reactQuery_gen_getNotificationsInfiniteOptions as getNotificationsInfiniteOptions, reactQuery_gen_getNotificationsInfiniteQueryKey as getNotificationsInfiniteQueryKey, reactQuery_gen_getNotificationsOptions as getNotificationsOptions, reactQuery_gen_getNotificationsPreferencesOptions as getNotificationsPreferencesOptions, reactQuery_gen_getNotificationsPreferencesQueryKey as getNotificationsPreferencesQueryKey, reactQuery_gen_getNotificationsQueryKey as getNotificationsQueryKey, reactQuery_gen_getSportAuthoritiesOptions as getSportAuthoritiesOptions, reactQuery_gen_getSportAuthoritiesQueryKey as getSportAuthoritiesQueryKey, reactQuery_gen_getUserFacilityPermissionsOptions as getUserFacilityPermissionsOptions, reactQuery_gen_getUserFacilityPermissionsQueryKey as getUserFacilityPermissionsQueryKey, reactQuery_gen_getUserSportProfileOptions as getUserSportProfileOptions, reactQuery_gen_getUserSportProfileQueryKey as getUserSportProfileQueryKey, reactQuery_gen_getUserSportProfilesOptions as getUserSportProfilesOptions, reactQuery_gen_getUserSportProfilesQueryKey as getUserSportProfilesQueryKey, reactQuery_gen_listFacilityOffersInfiniteOptions as listFacilityOffersInfiniteOptions, reactQuery_gen_listFacilityOffersInfiniteQueryKey as listFacilityOffersInfiniteQueryKey, reactQuery_gen_listFacilityOffersOptions as listFacilityOffersOptions, reactQuery_gen_listFacilityOffersQueryKey as listFacilityOffersQueryKey, reactQuery_gen_searchUsersInfiniteOptions as searchUsersInfiniteOptions, reactQuery_gen_searchUsersInfiniteQueryKey as searchUsersInfiniteQueryKey, reactQuery_gen_searchUsersOptions as searchUsersOptions, reactQuery_gen_searchUsersQueryKey as searchUsersQueryKey, reactQuery_gen_updateAllNotificationsMutation as updateAllNotificationsMutation, reactQuery_gen_updateNotificationMutation as updateNotificationMutation, reactQuery_gen_updateNotificationsPreferencesMutation as updateNotificationsPreferencesMutation, reactQuery_gen_updateUserProfileMutation as updateUserProfileMutation, reactQuery_gen_updateUserSportProfileLevelMutation as updateUserSportProfileLevelMutation };
7186
+ export { type reactQuery_gen_QueryKey as QueryKey, reactQuery_gen_addUserSportProfileLevelMutation as addUserSportProfileLevelMutation, reactQuery_gen_createFacilityOfferOrderMutation as createFacilityOfferOrderMutation, reactQuery_gen_createUserSportProfileMutation as createUserSportProfileMutation, reactQuery_gen_deleteUserSportProfileLevelMutation as deleteUserSportProfileLevelMutation, reactQuery_gen_deleteUserSportProfileMutation as deleteUserSportProfileMutation, reactQuery_gen_getNotificationByIdOptions as getNotificationByIdOptions, reactQuery_gen_getNotificationByIdQueryKey as getNotificationByIdQueryKey, reactQuery_gen_getNotificationsInfiniteOptions as getNotificationsInfiniteOptions, reactQuery_gen_getNotificationsInfiniteQueryKey as getNotificationsInfiniteQueryKey, reactQuery_gen_getNotificationsOptions as getNotificationsOptions, reactQuery_gen_getNotificationsPreferencesOptions as getNotificationsPreferencesOptions, reactQuery_gen_getNotificationsPreferencesQueryKey as getNotificationsPreferencesQueryKey, reactQuery_gen_getNotificationsQueryKey as getNotificationsQueryKey, reactQuery_gen_getRecommendationsInfiniteOptions as getRecommendationsInfiniteOptions, reactQuery_gen_getRecommendationsInfiniteQueryKey as getRecommendationsInfiniteQueryKey, reactQuery_gen_getRecommendationsOptions as getRecommendationsOptions, reactQuery_gen_getRecommendationsQueryKey as getRecommendationsQueryKey, reactQuery_gen_getSportAuthoritiesOptions as getSportAuthoritiesOptions, reactQuery_gen_getSportAuthoritiesQueryKey as getSportAuthoritiesQueryKey, reactQuery_gen_getUserFacilityPermissionsOptions as getUserFacilityPermissionsOptions, reactQuery_gen_getUserFacilityPermissionsQueryKey as getUserFacilityPermissionsQueryKey, reactQuery_gen_getUserSportProfileOptions as getUserSportProfileOptions, reactQuery_gen_getUserSportProfileQueryKey as getUserSportProfileQueryKey, reactQuery_gen_getUserSportProfilesOptions as getUserSportProfilesOptions, reactQuery_gen_getUserSportProfilesQueryKey as getUserSportProfilesQueryKey, reactQuery_gen_listFacilityOffersInfiniteOptions as listFacilityOffersInfiniteOptions, reactQuery_gen_listFacilityOffersInfiniteQueryKey as listFacilityOffersInfiniteQueryKey, reactQuery_gen_listFacilityOffersOptions as listFacilityOffersOptions, reactQuery_gen_listFacilityOffersQueryKey as listFacilityOffersQueryKey, reactQuery_gen_searchUsersInfiniteOptions as searchUsersInfiniteOptions, reactQuery_gen_searchUsersInfiniteQueryKey as searchUsersInfiniteQueryKey, reactQuery_gen_searchUsersOptions as searchUsersOptions, reactQuery_gen_searchUsersQueryKey as searchUsersQueryKey, reactQuery_gen_updateAllNotificationsMutation as updateAllNotificationsMutation, reactQuery_gen_updateNotificationMutation as updateNotificationMutation, reactQuery_gen_updateNotificationsPreferencesMutation as updateNotificationsPreferencesMutation, reactQuery_gen_updateUserProfileMutation as updateUserProfileMutation, reactQuery_gen_updateUserSportProfileLevelMutation as updateUserSportProfileLevelMutation };
6791
7187
  }
6792
7188
 
6793
7189
  type indexV1_AddUserSportProfileLevelData = AddUserSportProfileLevelData;
@@ -6861,6 +7257,11 @@ type indexV1_GetNotificationsPreferencesResponse = GetNotificationsPreferencesRe
6861
7257
  type indexV1_GetNotificationsPreferencesResponses = GetNotificationsPreferencesResponses;
6862
7258
  type indexV1_GetNotificationsResponse = GetNotificationsResponse;
6863
7259
  type indexV1_GetNotificationsResponses = GetNotificationsResponses;
7260
+ type indexV1_GetRecommendationsData = GetRecommendationsData;
7261
+ type indexV1_GetRecommendationsError = GetRecommendationsError;
7262
+ type indexV1_GetRecommendationsErrors = GetRecommendationsErrors;
7263
+ type indexV1_GetRecommendationsResponse = GetRecommendationsResponse;
7264
+ type indexV1_GetRecommendationsResponses = GetRecommendationsResponses;
6864
7265
  type indexV1_GetSportAuthoritiesData = GetSportAuthoritiesData;
6865
7266
  type indexV1_GetSportAuthoritiesError = GetSportAuthoritiesError;
6866
7267
  type indexV1_GetSportAuthoritiesErrors = GetSportAuthoritiesErrors;
@@ -6920,6 +7321,8 @@ type indexV1_PostListResponse = PostListResponse;
6920
7321
  type indexV1_PostingPermission = PostingPermission;
6921
7322
  type indexV1_Preference = Preference;
6922
7323
  type indexV1_PreferencesResponse = PreferencesResponse;
7324
+ type indexV1_Recommendation = Recommendation;
7325
+ type indexV1_RecommendationList = RecommendationList;
6923
7326
  type indexV1_RegisterDeviceRequest = RegisterDeviceRequest;
6924
7327
  type indexV1_SearchUsersData = SearchUsersData;
6925
7328
  type indexV1_SearchUsersError = SearchUsersError;
@@ -6979,6 +7382,7 @@ declare const indexV1_deleteUserSportProfileLevel: typeof deleteUserSportProfile
6979
7382
  declare const indexV1_getNotificationById: typeof getNotificationById;
6980
7383
  declare const indexV1_getNotifications: typeof getNotifications;
6981
7384
  declare const indexV1_getNotificationsPreferences: typeof getNotificationsPreferences;
7385
+ declare const indexV1_getRecommendations: typeof getRecommendations;
6982
7386
  declare const indexV1_getSportAuthorities: typeof getSportAuthorities;
6983
7387
  declare const indexV1_getUserFacilityPermissions: typeof getUserFacilityPermissions;
6984
7388
  declare const indexV1_getUserSportProfile: typeof getUserSportProfile;
@@ -6991,7 +7395,7 @@ declare const indexV1_updateNotificationsPreferences: typeof updateNotifications
6991
7395
  declare const indexV1_updateUserProfile: typeof updateUserProfile;
6992
7396
  declare const indexV1_updateUserSportProfileLevel: typeof updateUserSportProfileLevel;
6993
7397
  declare namespace indexV1 {
6994
- export { type indexV1_AddUserSportProfileLevelData as AddUserSportProfileLevelData, type indexV1_AddUserSportProfileLevelError as AddUserSportProfileLevelError, type indexV1_AddUserSportProfileLevelErrors as AddUserSportProfileLevelErrors, type indexV1_AddUserSportProfileLevelResponse as AddUserSportProfileLevelResponse, type indexV1_AddUserSportProfileLevelResponses as AddUserSportProfileLevelResponses, type indexV1_Author as Author, type indexV1_AuthoritySlug as AuthoritySlug, type indexV1_Channels as Channels, type indexV1_ClientOptions as ClientOptions, type indexV1_Comment as Comment, type indexV1_CommentIdParam as CommentIdParam, type indexV1_CommentListResponse as CommentListResponse, type indexV1_CommunityIdParam as CommunityIdParam, type indexV1_CommunityItem as CommunityItem, type indexV1_CommunityListResponse as CommunityListResponse, type indexV1_CreateCommentRequest as CreateCommentRequest, type indexV1_CreateFacilityOfferOrderData as CreateFacilityOfferOrderData, type indexV1_CreateFacilityOfferOrderError as CreateFacilityOfferOrderError, type indexV1_CreateFacilityOfferOrderErrors as CreateFacilityOfferOrderErrors, type indexV1_CreateFacilityOfferOrderResponse as CreateFacilityOfferOrderResponse, type indexV1_CreateFacilityOfferOrderResponses as CreateFacilityOfferOrderResponses, type indexV1_CreatePostRequest as CreatePostRequest, type indexV1_CreateSportProfileLevelRequest as CreateSportProfileLevelRequest, type indexV1_CreateSportProfileRequest as CreateSportProfileRequest, type indexV1_CreateUserSportProfileData as CreateUserSportProfileData, type indexV1_CreateUserSportProfileError as CreateUserSportProfileError, type indexV1_CreateUserSportProfileErrors as CreateUserSportProfileErrors, type indexV1_CreateUserSportProfileResponse as CreateUserSportProfileResponse, type indexV1_CreateUserSportProfileResponses as CreateUserSportProfileResponses, type indexV1_DeleteUserSportProfileData as DeleteUserSportProfileData, type indexV1_DeleteUserSportProfileError as DeleteUserSportProfileError, type indexV1_DeleteUserSportProfileErrors as DeleteUserSportProfileErrors, type indexV1_DeleteUserSportProfileLevelData as DeleteUserSportProfileLevelData, type indexV1_DeleteUserSportProfileLevelError as DeleteUserSportProfileLevelError, type indexV1_DeleteUserSportProfileLevelErrors as DeleteUserSportProfileLevelErrors, type indexV1_DeleteUserSportProfileLevelResponse as DeleteUserSportProfileLevelResponse, type indexV1_DeleteUserSportProfileLevelResponses as DeleteUserSportProfileLevelResponses, type indexV1_DeleteUserSportProfileResponse as DeleteUserSportProfileResponse, type indexV1_DeleteUserSportProfileResponses as DeleteUserSportProfileResponses, type indexV1_FacilityIdPath as FacilityIdPath, type indexV1_FacilityMessagePayload as FacilityMessagePayload, type indexV1_FacilityOffer as FacilityOffer, type indexV1_FacilityOfferCondition as FacilityOfferCondition, type indexV1_FacilityOfferConditionActivities as FacilityOfferConditionActivities, type indexV1_FacilityOfferConditionCourts as FacilityOfferConditionCourts, type indexV1_FacilityOfferConditionDate as FacilityOfferConditionDate, type indexV1_FacilityOfferConditionHoursinadvance as FacilityOfferConditionHoursinadvance, type indexV1_FacilityOfferConditionTime as FacilityOfferConditionTime, type indexV1_FacilityOfferConditionWeekdays as FacilityOfferConditionWeekdays, type indexV1_FacilityOfferList as FacilityOfferList, type indexV1_FacilityOfferOrder as FacilityOfferOrder, type indexV1_FacilityPermission as FacilityPermission, type indexV1_FacilityPermissionsResponse as FacilityPermissionsResponse, type indexV1_FacilityPunchCardData as FacilityPunchCardData, type indexV1_FacilityValueCardData as FacilityValueCardData, type indexV1_Gender as Gender, type indexV1_GetNotificationByIdData as GetNotificationByIdData, type indexV1_GetNotificationByIdError as GetNotificationByIdError, type indexV1_GetNotificationByIdErrors as GetNotificationByIdErrors, type indexV1_GetNotificationByIdResponse as GetNotificationByIdResponse, type indexV1_GetNotificationByIdResponses as GetNotificationByIdResponses, type indexV1_GetNotificationsData as GetNotificationsData, type indexV1_GetNotificationsError as GetNotificationsError, type indexV1_GetNotificationsErrors as GetNotificationsErrors, type indexV1_GetNotificationsPreferencesData as GetNotificationsPreferencesData, type indexV1_GetNotificationsPreferencesError as GetNotificationsPreferencesError, type indexV1_GetNotificationsPreferencesErrors as GetNotificationsPreferencesErrors, type indexV1_GetNotificationsPreferencesResponse as GetNotificationsPreferencesResponse, type indexV1_GetNotificationsPreferencesResponses as GetNotificationsPreferencesResponses, type indexV1_GetNotificationsResponse as GetNotificationsResponse, type indexV1_GetNotificationsResponses as GetNotificationsResponses, type indexV1_GetSportAuthoritiesData as GetSportAuthoritiesData, type indexV1_GetSportAuthoritiesError as GetSportAuthoritiesError, type indexV1_GetSportAuthoritiesErrors as GetSportAuthoritiesErrors, type indexV1_GetSportAuthoritiesResponse as GetSportAuthoritiesResponse, type indexV1_GetSportAuthoritiesResponses as GetSportAuthoritiesResponses, type indexV1_GetUserFacilityPermissionsData as GetUserFacilityPermissionsData, type indexV1_GetUserFacilityPermissionsError as GetUserFacilityPermissionsError, type indexV1_GetUserFacilityPermissionsErrors as GetUserFacilityPermissionsErrors, type indexV1_GetUserFacilityPermissionsResponse as GetUserFacilityPermissionsResponse, type indexV1_GetUserFacilityPermissionsResponses as GetUserFacilityPermissionsResponses, type indexV1_GetUserSportProfileData as GetUserSportProfileData, type indexV1_GetUserSportProfileError as GetUserSportProfileError, type indexV1_GetUserSportProfileErrors as GetUserSportProfileErrors, type indexV1_GetUserSportProfileResponse as GetUserSportProfileResponse, type indexV1_GetUserSportProfileResponses as GetUserSportProfileResponses, type indexV1_GetUserSportProfilesData as GetUserSportProfilesData, type indexV1_GetUserSportProfilesError as GetUserSportProfilesError, type indexV1_GetUserSportProfilesErrors as GetUserSportProfilesErrors, type indexV1_GetUserSportProfilesResponse as GetUserSportProfilesResponse, type indexV1_GetUserSportProfilesResponses as GetUserSportProfilesResponses, type indexV1_LinkType as LinkType, type indexV1_ListFacilityOffersData as ListFacilityOffersData, type indexV1_ListFacilityOffersError as ListFacilityOffersError, type indexV1_ListFacilityOffersErrors as ListFacilityOffersErrors, type indexV1_ListFacilityOffersResponse as ListFacilityOffersResponse, type indexV1_ListFacilityOffersResponses as ListFacilityOffersResponses, type indexV1_Member as Member, type indexV1_MemberListResponse as MemberListResponse, type indexV1_MemberRelation as MemberRelation, type indexV1_MembershipStatus as MembershipStatus, type indexV1_Metadata as Metadata, type indexV1_Notification as Notification, type indexV1_NotificationPayload as NotificationPayload, type indexV1_NotificationRequestBody as NotificationRequestBody, type indexV1_NotificationsFilter as NotificationsFilter, type indexV1_NotificationsFilterParam as NotificationsFilterParam, type indexV1_NotificationsPaginatedResponse as NotificationsPaginatedResponse, type indexV1_NotificationsSummary as NotificationsSummary, type indexV1_OfferIdPath as OfferIdPath, type indexV1_Options as Options, type indexV1_PaginationMeta as PaginationMeta, type indexV1_PatchCommentRequest as PatchCommentRequest, type indexV1_PatchPostRequest as PatchPostRequest, type indexV1_PkgOpenapiSharedCursorLimitParam as PkgOpenapiSharedCursorLimitParam, type indexV1_PkgOpenapiSharedCursorPaginatedResultSet as PkgOpenapiSharedCursorPaginatedResultSet, type indexV1_PkgOpenapiSharedCursorParam as PkgOpenapiSharedCursorParam, type indexV1_PkgOpenapiSharedError as PkgOpenapiSharedError, type indexV1_PkgOpenapiSharedErrors as PkgOpenapiSharedErrors, type indexV1_PkgOpenapiSharedOffsetLimitParam as PkgOpenapiSharedOffsetLimitParam, type indexV1_PkgOpenapiSharedOffsetPaginatedResultSet as PkgOpenapiSharedOffsetPaginatedResultSet, type indexV1_PkgOpenapiSharedOffsetParam as PkgOpenapiSharedOffsetParam, type indexV1_PkgOpenapiSharedProblemDetails as PkgOpenapiSharedProblemDetails, type indexV1_Post as Post, type indexV1_PostIdParam as PostIdParam, type indexV1_PostLink as PostLink, type indexV1_PostListResponse as PostListResponse, type indexV1_PostingPermission as PostingPermission, type indexV1_Preference as Preference, type indexV1_PreferencesResponse as PreferencesResponse, type indexV1_RegisterDeviceRequest as RegisterDeviceRequest, type indexV1_SearchUsersData as SearchUsersData, type indexV1_SearchUsersError as SearchUsersError, type indexV1_SearchUsersErrors as SearchUsersErrors, type indexV1_SearchUsersResponse as SearchUsersResponse, type indexV1_SearchUsersResponses as SearchUsersResponses, type indexV1_Source as Source, type indexV1_SportAuthoritiesResponse as SportAuthoritiesResponse, type indexV1_SportAuthority as SportAuthority, type indexV1_SportLevel as SportLevel, type indexV1_SportProfile as SportProfile, type indexV1_SportProfileAttribute as SportProfileAttribute, type indexV1_SportProfileId as SportProfileId, type indexV1_SportProfileLevel as SportProfileLevel, type indexV1_SportProfilesResponse as SportProfilesResponse, type indexV1_Topic as Topic, type indexV1_UpdateAllNotificationsData as UpdateAllNotificationsData, type indexV1_UpdateAllNotificationsError as UpdateAllNotificationsError, type indexV1_UpdateAllNotificationsErrors as UpdateAllNotificationsErrors, type indexV1_UpdateAllNotificationsResponse as UpdateAllNotificationsResponse, type indexV1_UpdateAllNotificationsResponses as UpdateAllNotificationsResponses, type indexV1_UpdateNotificationData as UpdateNotificationData, type indexV1_UpdateNotificationError as UpdateNotificationError, type indexV1_UpdateNotificationErrors as UpdateNotificationErrors, type indexV1_UpdateNotificationResponse as UpdateNotificationResponse, type indexV1_UpdateNotificationResponses as UpdateNotificationResponses, type indexV1_UpdateNotificationsPreferencesData as UpdateNotificationsPreferencesData, type indexV1_UpdateNotificationsPreferencesError as UpdateNotificationsPreferencesError, type indexV1_UpdateNotificationsPreferencesErrors as UpdateNotificationsPreferencesErrors, type indexV1_UpdateNotificationsPreferencesResponse as UpdateNotificationsPreferencesResponse, type indexV1_UpdateNotificationsPreferencesResponses as UpdateNotificationsPreferencesResponses, type indexV1_UpdatePreferencesRequestBody as UpdatePreferencesRequestBody, type indexV1_UpdateSportProfileLevelRequest as UpdateSportProfileLevelRequest, type indexV1_UpdateUserProfileData as UpdateUserProfileData, type indexV1_UpdateUserProfileError as UpdateUserProfileError, type indexV1_UpdateUserProfileErrors as UpdateUserProfileErrors, type indexV1_UpdateUserProfileResponse as UpdateUserProfileResponse, type indexV1_UpdateUserProfileResponses as UpdateUserProfileResponses, type indexV1_UpdateUserSportProfileLevelData as UpdateUserSportProfileLevelData, type indexV1_UpdateUserSportProfileLevelError as UpdateUserSportProfileLevelError, type indexV1_UpdateUserSportProfileLevelErrors as UpdateUserSportProfileLevelErrors, type indexV1_UpdateUserSportProfileLevelResponse as UpdateUserSportProfileLevelResponse, type indexV1_UpdateUserSportProfileLevelResponses as UpdateUserSportProfileLevelResponses, type indexV1_UpdateUsersProfilesRequest as UpdateUsersProfilesRequest, type indexV1_UserId as UserId, type indexV1_UserIdParam as UserIdParam, type indexV1_UserProfile as UserProfile, type indexV1_UserRelation as UserRelation, type indexV1_UsersProfilesPaginatedResponse as UsersProfilesPaginatedResponse, type indexV1_Visibility as Visibility, indexV1_addUserSportProfileLevel as addUserSportProfileLevel, indexV1_client as client, indexV1_createFacilityOfferOrder as createFacilityOfferOrder, indexV1_createUserSportProfile as createUserSportProfile, indexV1_deleteUserSportProfile as deleteUserSportProfile, indexV1_deleteUserSportProfileLevel as deleteUserSportProfileLevel, indexV1_getNotificationById as getNotificationById, indexV1_getNotifications as getNotifications, indexV1_getNotificationsPreferences as getNotificationsPreferences, indexV1_getSportAuthorities as getSportAuthorities, indexV1_getUserFacilityPermissions as getUserFacilityPermissions, indexV1_getUserSportProfile as getUserSportProfile, indexV1_getUserSportProfiles as getUserSportProfiles, indexV1_listFacilityOffers as listFacilityOffers, reactQuery_gen as queries, schemas_gen as schemas, indexV1_searchUsers as searchUsers, indexV1_updateAllNotifications as updateAllNotifications, indexV1_updateNotification as updateNotification, indexV1_updateNotificationsPreferences as updateNotificationsPreferences, indexV1_updateUserProfile as updateUserProfile, indexV1_updateUserSportProfileLevel as updateUserSportProfileLevel };
7398
+ export { type indexV1_AddUserSportProfileLevelData as AddUserSportProfileLevelData, type indexV1_AddUserSportProfileLevelError as AddUserSportProfileLevelError, type indexV1_AddUserSportProfileLevelErrors as AddUserSportProfileLevelErrors, type indexV1_AddUserSportProfileLevelResponse as AddUserSportProfileLevelResponse, type indexV1_AddUserSportProfileLevelResponses as AddUserSportProfileLevelResponses, type indexV1_Author as Author, type indexV1_AuthoritySlug as AuthoritySlug, type indexV1_Channels as Channels, type indexV1_ClientOptions as ClientOptions, type indexV1_Comment as Comment, type indexV1_CommentIdParam as CommentIdParam, type indexV1_CommentListResponse as CommentListResponse, type indexV1_CommunityIdParam as CommunityIdParam, type indexV1_CommunityItem as CommunityItem, type indexV1_CommunityListResponse as CommunityListResponse, type indexV1_CreateCommentRequest as CreateCommentRequest, type indexV1_CreateFacilityOfferOrderData as CreateFacilityOfferOrderData, type indexV1_CreateFacilityOfferOrderError as CreateFacilityOfferOrderError, type indexV1_CreateFacilityOfferOrderErrors as CreateFacilityOfferOrderErrors, type indexV1_CreateFacilityOfferOrderResponse as CreateFacilityOfferOrderResponse, type indexV1_CreateFacilityOfferOrderResponses as CreateFacilityOfferOrderResponses, type indexV1_CreatePostRequest as CreatePostRequest, type indexV1_CreateSportProfileLevelRequest as CreateSportProfileLevelRequest, type indexV1_CreateSportProfileRequest as CreateSportProfileRequest, type indexV1_CreateUserSportProfileData as CreateUserSportProfileData, type indexV1_CreateUserSportProfileError as CreateUserSportProfileError, type indexV1_CreateUserSportProfileErrors as CreateUserSportProfileErrors, type indexV1_CreateUserSportProfileResponse as CreateUserSportProfileResponse, type indexV1_CreateUserSportProfileResponses as CreateUserSportProfileResponses, type indexV1_DeleteUserSportProfileData as DeleteUserSportProfileData, type indexV1_DeleteUserSportProfileError as DeleteUserSportProfileError, type indexV1_DeleteUserSportProfileErrors as DeleteUserSportProfileErrors, type indexV1_DeleteUserSportProfileLevelData as DeleteUserSportProfileLevelData, type indexV1_DeleteUserSportProfileLevelError as DeleteUserSportProfileLevelError, type indexV1_DeleteUserSportProfileLevelErrors as DeleteUserSportProfileLevelErrors, type indexV1_DeleteUserSportProfileLevelResponse as DeleteUserSportProfileLevelResponse, type indexV1_DeleteUserSportProfileLevelResponses as DeleteUserSportProfileLevelResponses, type indexV1_DeleteUserSportProfileResponse as DeleteUserSportProfileResponse, type indexV1_DeleteUserSportProfileResponses as DeleteUserSportProfileResponses, type indexV1_FacilityIdPath as FacilityIdPath, type indexV1_FacilityMessagePayload as FacilityMessagePayload, type indexV1_FacilityOffer as FacilityOffer, type indexV1_FacilityOfferCondition as FacilityOfferCondition, type indexV1_FacilityOfferConditionActivities as FacilityOfferConditionActivities, type indexV1_FacilityOfferConditionCourts as FacilityOfferConditionCourts, type indexV1_FacilityOfferConditionDate as FacilityOfferConditionDate, type indexV1_FacilityOfferConditionHoursinadvance as FacilityOfferConditionHoursinadvance, type indexV1_FacilityOfferConditionTime as FacilityOfferConditionTime, type indexV1_FacilityOfferConditionWeekdays as FacilityOfferConditionWeekdays, type indexV1_FacilityOfferList as FacilityOfferList, type indexV1_FacilityOfferOrder as FacilityOfferOrder, type indexV1_FacilityPermission as FacilityPermission, type indexV1_FacilityPermissionsResponse as FacilityPermissionsResponse, type indexV1_FacilityPunchCardData as FacilityPunchCardData, type indexV1_FacilityValueCardData as FacilityValueCardData, type indexV1_Gender as Gender, type indexV1_GetNotificationByIdData as GetNotificationByIdData, type indexV1_GetNotificationByIdError as GetNotificationByIdError, type indexV1_GetNotificationByIdErrors as GetNotificationByIdErrors, type indexV1_GetNotificationByIdResponse as GetNotificationByIdResponse, type indexV1_GetNotificationByIdResponses as GetNotificationByIdResponses, type indexV1_GetNotificationsData as GetNotificationsData, type indexV1_GetNotificationsError as GetNotificationsError, type indexV1_GetNotificationsErrors as GetNotificationsErrors, type indexV1_GetNotificationsPreferencesData as GetNotificationsPreferencesData, type indexV1_GetNotificationsPreferencesError as GetNotificationsPreferencesError, type indexV1_GetNotificationsPreferencesErrors as GetNotificationsPreferencesErrors, type indexV1_GetNotificationsPreferencesResponse as GetNotificationsPreferencesResponse, type indexV1_GetNotificationsPreferencesResponses as GetNotificationsPreferencesResponses, type indexV1_GetNotificationsResponse as GetNotificationsResponse, type indexV1_GetNotificationsResponses as GetNotificationsResponses, type indexV1_GetRecommendationsData as GetRecommendationsData, type indexV1_GetRecommendationsError as GetRecommendationsError, type indexV1_GetRecommendationsErrors as GetRecommendationsErrors, type indexV1_GetRecommendationsResponse as GetRecommendationsResponse, type indexV1_GetRecommendationsResponses as GetRecommendationsResponses, type indexV1_GetSportAuthoritiesData as GetSportAuthoritiesData, type indexV1_GetSportAuthoritiesError as GetSportAuthoritiesError, type indexV1_GetSportAuthoritiesErrors as GetSportAuthoritiesErrors, type indexV1_GetSportAuthoritiesResponse as GetSportAuthoritiesResponse, type indexV1_GetSportAuthoritiesResponses as GetSportAuthoritiesResponses, type indexV1_GetUserFacilityPermissionsData as GetUserFacilityPermissionsData, type indexV1_GetUserFacilityPermissionsError as GetUserFacilityPermissionsError, type indexV1_GetUserFacilityPermissionsErrors as GetUserFacilityPermissionsErrors, type indexV1_GetUserFacilityPermissionsResponse as GetUserFacilityPermissionsResponse, type indexV1_GetUserFacilityPermissionsResponses as GetUserFacilityPermissionsResponses, type indexV1_GetUserSportProfileData as GetUserSportProfileData, type indexV1_GetUserSportProfileError as GetUserSportProfileError, type indexV1_GetUserSportProfileErrors as GetUserSportProfileErrors, type indexV1_GetUserSportProfileResponse as GetUserSportProfileResponse, type indexV1_GetUserSportProfileResponses as GetUserSportProfileResponses, type indexV1_GetUserSportProfilesData as GetUserSportProfilesData, type indexV1_GetUserSportProfilesError as GetUserSportProfilesError, type indexV1_GetUserSportProfilesErrors as GetUserSportProfilesErrors, type indexV1_GetUserSportProfilesResponse as GetUserSportProfilesResponse, type indexV1_GetUserSportProfilesResponses as GetUserSportProfilesResponses, type indexV1_LinkType as LinkType, type indexV1_ListFacilityOffersData as ListFacilityOffersData, type indexV1_ListFacilityOffersError as ListFacilityOffersError, type indexV1_ListFacilityOffersErrors as ListFacilityOffersErrors, type indexV1_ListFacilityOffersResponse as ListFacilityOffersResponse, type indexV1_ListFacilityOffersResponses as ListFacilityOffersResponses, type indexV1_Member as Member, type indexV1_MemberListResponse as MemberListResponse, type indexV1_MemberRelation as MemberRelation, type indexV1_MembershipStatus as MembershipStatus, type indexV1_Metadata as Metadata, type indexV1_Notification as Notification, type indexV1_NotificationPayload as NotificationPayload, type indexV1_NotificationRequestBody as NotificationRequestBody, type indexV1_NotificationsFilter as NotificationsFilter, type indexV1_NotificationsFilterParam as NotificationsFilterParam, type indexV1_NotificationsPaginatedResponse as NotificationsPaginatedResponse, type indexV1_NotificationsSummary as NotificationsSummary, type indexV1_OfferIdPath as OfferIdPath, type indexV1_Options as Options, type indexV1_PaginationMeta as PaginationMeta, type indexV1_PatchCommentRequest as PatchCommentRequest, type indexV1_PatchPostRequest as PatchPostRequest, type indexV1_PkgOpenapiSharedCursorLimitParam as PkgOpenapiSharedCursorLimitParam, type indexV1_PkgOpenapiSharedCursorPaginatedResultSet as PkgOpenapiSharedCursorPaginatedResultSet, type indexV1_PkgOpenapiSharedCursorParam as PkgOpenapiSharedCursorParam, type indexV1_PkgOpenapiSharedError as PkgOpenapiSharedError, type indexV1_PkgOpenapiSharedErrors as PkgOpenapiSharedErrors, type indexV1_PkgOpenapiSharedOffsetLimitParam as PkgOpenapiSharedOffsetLimitParam, type indexV1_PkgOpenapiSharedOffsetPaginatedResultSet as PkgOpenapiSharedOffsetPaginatedResultSet, type indexV1_PkgOpenapiSharedOffsetParam as PkgOpenapiSharedOffsetParam, type indexV1_PkgOpenapiSharedProblemDetails as PkgOpenapiSharedProblemDetails, type indexV1_Post as Post, type indexV1_PostIdParam as PostIdParam, type indexV1_PostLink as PostLink, type indexV1_PostListResponse as PostListResponse, type indexV1_PostingPermission as PostingPermission, type indexV1_Preference as Preference, type indexV1_PreferencesResponse as PreferencesResponse, type indexV1_Recommendation as Recommendation, type indexV1_RecommendationList as RecommendationList, type indexV1_RegisterDeviceRequest as RegisterDeviceRequest, type indexV1_SearchUsersData as SearchUsersData, type indexV1_SearchUsersError as SearchUsersError, type indexV1_SearchUsersErrors as SearchUsersErrors, type indexV1_SearchUsersResponse as SearchUsersResponse, type indexV1_SearchUsersResponses as SearchUsersResponses, type indexV1_Source as Source, type indexV1_SportAuthoritiesResponse as SportAuthoritiesResponse, type indexV1_SportAuthority as SportAuthority, type indexV1_SportLevel as SportLevel, type indexV1_SportProfile as SportProfile, type indexV1_SportProfileAttribute as SportProfileAttribute, type indexV1_SportProfileId as SportProfileId, type indexV1_SportProfileLevel as SportProfileLevel, type indexV1_SportProfilesResponse as SportProfilesResponse, type indexV1_Topic as Topic, type indexV1_UpdateAllNotificationsData as UpdateAllNotificationsData, type indexV1_UpdateAllNotificationsError as UpdateAllNotificationsError, type indexV1_UpdateAllNotificationsErrors as UpdateAllNotificationsErrors, type indexV1_UpdateAllNotificationsResponse as UpdateAllNotificationsResponse, type indexV1_UpdateAllNotificationsResponses as UpdateAllNotificationsResponses, type indexV1_UpdateNotificationData as UpdateNotificationData, type indexV1_UpdateNotificationError as UpdateNotificationError, type indexV1_UpdateNotificationErrors as UpdateNotificationErrors, type indexV1_UpdateNotificationResponse as UpdateNotificationResponse, type indexV1_UpdateNotificationResponses as UpdateNotificationResponses, type indexV1_UpdateNotificationsPreferencesData as UpdateNotificationsPreferencesData, type indexV1_UpdateNotificationsPreferencesError as UpdateNotificationsPreferencesError, type indexV1_UpdateNotificationsPreferencesErrors as UpdateNotificationsPreferencesErrors, type indexV1_UpdateNotificationsPreferencesResponse as UpdateNotificationsPreferencesResponse, type indexV1_UpdateNotificationsPreferencesResponses as UpdateNotificationsPreferencesResponses, type indexV1_UpdatePreferencesRequestBody as UpdatePreferencesRequestBody, type indexV1_UpdateSportProfileLevelRequest as UpdateSportProfileLevelRequest, type indexV1_UpdateUserProfileData as UpdateUserProfileData, type indexV1_UpdateUserProfileError as UpdateUserProfileError, type indexV1_UpdateUserProfileErrors as UpdateUserProfileErrors, type indexV1_UpdateUserProfileResponse as UpdateUserProfileResponse, type indexV1_UpdateUserProfileResponses as UpdateUserProfileResponses, type indexV1_UpdateUserSportProfileLevelData as UpdateUserSportProfileLevelData, type indexV1_UpdateUserSportProfileLevelError as UpdateUserSportProfileLevelError, type indexV1_UpdateUserSportProfileLevelErrors as UpdateUserSportProfileLevelErrors, type indexV1_UpdateUserSportProfileLevelResponse as UpdateUserSportProfileLevelResponse, type indexV1_UpdateUserSportProfileLevelResponses as UpdateUserSportProfileLevelResponses, type indexV1_UpdateUsersProfilesRequest as UpdateUsersProfilesRequest, type indexV1_UserId as UserId, type indexV1_UserIdParam as UserIdParam, type indexV1_UserProfile as UserProfile, type indexV1_UserRelation as UserRelation, type indexV1_UsersProfilesPaginatedResponse as UsersProfilesPaginatedResponse, type indexV1_Visibility as Visibility, indexV1_addUserSportProfileLevel as addUserSportProfileLevel, indexV1_client as client, indexV1_createFacilityOfferOrder as createFacilityOfferOrder, indexV1_createUserSportProfile as createUserSportProfile, indexV1_deleteUserSportProfile as deleteUserSportProfile, indexV1_deleteUserSportProfileLevel as deleteUserSportProfileLevel, indexV1_getNotificationById as getNotificationById, indexV1_getNotifications as getNotifications, indexV1_getNotificationsPreferences as getNotificationsPreferences, indexV1_getRecommendations as getRecommendations, indexV1_getSportAuthorities as getSportAuthorities, indexV1_getUserFacilityPermissions as getUserFacilityPermissions, indexV1_getUserSportProfile as getUserSportProfile, indexV1_getUserSportProfiles as getUserSportProfiles, indexV1_listFacilityOffers as listFacilityOffers, reactQuery_gen as queries, schemas_gen as schemas, indexV1_searchUsers as searchUsers, indexV1_updateAllNotifications as updateAllNotifications, indexV1_updateNotification as updateNotification, indexV1_updateNotificationsPreferences as updateNotificationsPreferences, indexV1_updateUserProfile as updateUserProfile, indexV1_updateUserSportProfileLevel as updateUserSportProfileLevel };
6995
7399
  }
6996
7400
 
6997
7401
  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 };