@matchi/api 0.20260210.1 → 0.20260227.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.
@@ -3664,42 +3664,38 @@ type UpdatePreferencesRequestBody = {
3664
3664
  inapp?: boolean;
3665
3665
  push?: boolean;
3666
3666
  };
3667
- type UpdateUserProfileRequest = {
3667
+ type UpdateUsersProfilesRequest = {
3668
3668
  address?: string;
3669
3669
  birthday?: string;
3670
3670
  city?: string;
3671
3671
  country?: string;
3672
- email?: string;
3673
- firstname?: string;
3672
+ first_name?: string;
3674
3673
  gender?: Gender;
3675
3674
  language?: string;
3676
- lastname?: string;
3675
+ last_name?: string;
3677
3676
  private_profile?: boolean;
3677
+ /**
3678
+ * Phone number in E.164 format. Send empty string to clear the value.
3679
+ */
3678
3680
  telephone?: string;
3679
3681
  zipcode?: string;
3680
3682
  };
3681
- type User = {
3682
- first_name: string;
3683
- last_name: string;
3684
- profile_image_url?: string;
3685
- relation_status: UserRelation;
3686
- user_id: string;
3687
- };
3688
3683
  type UserProfile = {
3689
3684
  address?: string;
3690
3685
  birthday?: string;
3691
3686
  city?: string;
3692
3687
  country?: string;
3693
- email: string;
3694
- firstname: string;
3688
+ email?: string;
3689
+ first_name: string;
3695
3690
  gender?: Gender;
3696
- keycloak_id: string;
3697
- language: string;
3698
- lastname?: string;
3691
+ language?: string;
3692
+ last_name: string;
3699
3693
  membership_facilities?: Array<number>;
3700
3694
  private_profile?: boolean;
3701
3695
  profile_image_url?: string;
3696
+ relation_status: UserRelation;
3702
3697
  telephone?: string;
3698
+ user_id: string;
3703
3699
  zipcode?: string;
3704
3700
  };
3705
3701
  /**
@@ -3725,8 +3721,8 @@ declare const UserRelation: {
3725
3721
  *
3726
3722
  */
3727
3723
  type UserRelation = typeof UserRelation[keyof typeof UserRelation];
3728
- type UsersPaginatedResponse = {
3729
- items: Array<User>;
3724
+ type UsersProfilesPaginatedResponse = {
3725
+ items: Array<UserProfile>;
3730
3726
  meta: PkgOpenapiSharedOffsetPaginatedResultSet;
3731
3727
  };
3732
3728
  /**
@@ -4171,23 +4167,21 @@ type SearchUsersResponses = {
4171
4167
  /**
4172
4168
  * OK
4173
4169
  */
4174
- 200: UsersPaginatedResponse;
4170
+ 200: UsersProfilesPaginatedResponse;
4175
4171
  };
4176
4172
  type SearchUsersResponse = SearchUsersResponses[keyof SearchUsersResponses];
4177
- type UpdateUserProfileData = {
4178
- /**
4179
- * The profile fields to update
4180
- */
4181
- body: UpdateUserProfileRequest;
4182
- path?: never;
4173
+ type GetUserFacilityPermissionsData = {
4174
+ body?: never;
4175
+ path: {
4176
+ /**
4177
+ * The user ID (must match the authenticated user)
4178
+ */
4179
+ user_id: string;
4180
+ };
4183
4181
  query?: never;
4184
- url: '/users/profiles';
4182
+ url: '/users/{user_id}/facility-permissions';
4185
4183
  };
4186
- type UpdateUserProfileErrors = {
4187
- /**
4188
- * The request was malformed or could not be processed.
4189
- */
4190
- 400: PkgOpenapiSharedProblemDetails;
4184
+ type GetUserFacilityPermissionsErrors = {
4191
4185
  /**
4192
4186
  * Access token is not set or invalid.
4193
4187
  */
@@ -4200,25 +4194,20 @@ type UpdateUserProfileErrors = {
4200
4194
  * The server encountered an unexpected error
4201
4195
  */
4202
4196
  500: PkgOpenapiSharedProblemDetails;
4197
+ };
4198
+ type GetUserFacilityPermissionsError = GetUserFacilityPermissionsErrors[keyof GetUserFacilityPermissionsErrors];
4199
+ type GetUserFacilityPermissionsResponses = {
4203
4200
  /**
4204
- * The requested operation is not implemented.
4205
- */
4206
- 501: PkgOpenapiSharedProblemDetails;
4207
- /**
4208
- * The service requested is unavailable
4201
+ * OK
4209
4202
  */
4210
- 503: PkgOpenapiSharedProblemDetails;
4203
+ 200: FacilityPermissionsResponse;
4211
4204
  };
4212
- type UpdateUserProfileError = UpdateUserProfileErrors[keyof UpdateUserProfileErrors];
4213
- type UpdateUserProfileResponses = {
4205
+ type GetUserFacilityPermissionsResponse = GetUserFacilityPermissionsResponses[keyof GetUserFacilityPermissionsResponses];
4206
+ type UpdateUserProfileData = {
4214
4207
  /**
4215
- * Profile updated successfully
4208
+ * The profile fields to update
4216
4209
  */
4217
- 200: UserProfile;
4218
- };
4219
- type UpdateUserProfileResponse = UpdateUserProfileResponses[keyof UpdateUserProfileResponses];
4220
- type GetUserFacilityPermissionsData = {
4221
- body?: never;
4210
+ body: UpdateUsersProfilesRequest;
4222
4211
  path: {
4223
4212
  /**
4224
4213
  * The user ID (must match the authenticated user)
@@ -4226,9 +4215,13 @@ type GetUserFacilityPermissionsData = {
4226
4215
  user_id: string;
4227
4216
  };
4228
4217
  query?: never;
4229
- url: '/users/{user_id}/facility-permissions';
4218
+ url: '/users/{user_id}/profiles';
4230
4219
  };
4231
- type GetUserFacilityPermissionsErrors = {
4220
+ type UpdateUserProfileErrors = {
4221
+ /**
4222
+ * The request was malformed or could not be processed.
4223
+ */
4224
+ 400: PkgOpenapiSharedProblemDetails;
4232
4225
  /**
4233
4226
  * Access token is not set or invalid.
4234
4227
  */
@@ -4237,19 +4230,23 @@ type GetUserFacilityPermissionsErrors = {
4237
4230
  * The requestor is not authorized to perform this operation on the resource.
4238
4231
  */
4239
4232
  403: PkgOpenapiSharedProblemDetails;
4233
+ /**
4234
+ * The requested resource was not found.
4235
+ */
4236
+ 404: PkgOpenapiSharedProblemDetails;
4240
4237
  /**
4241
4238
  * The server encountered an unexpected error
4242
4239
  */
4243
4240
  500: PkgOpenapiSharedProblemDetails;
4244
4241
  };
4245
- type GetUserFacilityPermissionsError = GetUserFacilityPermissionsErrors[keyof GetUserFacilityPermissionsErrors];
4246
- type GetUserFacilityPermissionsResponses = {
4242
+ type UpdateUserProfileError = UpdateUserProfileErrors[keyof UpdateUserProfileErrors];
4243
+ type UpdateUserProfileResponses = {
4247
4244
  /**
4248
- * OK
4245
+ * Profile updated successfully
4249
4246
  */
4250
- 200: FacilityPermissionsResponse;
4247
+ 200: UserProfile;
4251
4248
  };
4252
- type GetUserFacilityPermissionsResponse = GetUserFacilityPermissionsResponses[keyof GetUserFacilityPermissionsResponses];
4249
+ type UpdateUserProfileResponse = UpdateUserProfileResponses[keyof UpdateUserProfileResponses];
4253
4250
 
4254
4251
  declare const client: Client;
4255
4252
 
@@ -4748,7 +4745,7 @@ declare const UpdatePreferencesRequestBodySchema: {
4748
4745
  };
4749
4746
  readonly type: "object";
4750
4747
  };
4751
- declare const UpdateUserProfileRequestSchema: {
4748
+ declare const UpdateUsersProfilesRequestSchema: {
4752
4749
  readonly properties: {
4753
4750
  readonly address: {
4754
4751
  readonly maxLength: 255;
@@ -4768,12 +4765,7 @@ declare const UpdateUserProfileRequestSchema: {
4768
4765
  readonly minLength: 2;
4769
4766
  readonly type: "string";
4770
4767
  };
4771
- readonly email: {
4772
- readonly format: "email";
4773
- readonly maxLength: 255;
4774
- readonly type: "string";
4775
- };
4776
- readonly firstname: {
4768
+ readonly first_name: {
4777
4769
  readonly maxLength: 100;
4778
4770
  readonly type: "string";
4779
4771
  };
@@ -4787,7 +4779,7 @@ declare const UpdateUserProfileRequestSchema: {
4787
4779
  readonly pattern: "^[a-z]{2}$";
4788
4780
  readonly type: "string";
4789
4781
  };
4790
- readonly lastname: {
4782
+ readonly last_name: {
4791
4783
  readonly maxLength: 100;
4792
4784
  readonly type: "string";
4793
4785
  };
@@ -4795,8 +4787,9 @@ declare const UpdateUserProfileRequestSchema: {
4795
4787
  readonly type: "boolean";
4796
4788
  };
4797
4789
  readonly telephone: {
4790
+ readonly description: "Phone number in E.164 format. Send empty string to clear the value.";
4798
4791
  readonly example: "+46701234567";
4799
- readonly pattern: "^\\+?[1-9]\\d{1,14}$";
4792
+ readonly pattern: "^(\\+?[1-9]\\d{1,14}|)$";
4800
4793
  readonly type: "string";
4801
4794
  };
4802
4795
  readonly zipcode: {
@@ -4806,28 +4799,6 @@ declare const UpdateUserProfileRequestSchema: {
4806
4799
  };
4807
4800
  readonly type: "object";
4808
4801
  };
4809
- declare const UserSchema: {
4810
- readonly properties: {
4811
- readonly first_name: {
4812
- readonly type: "string";
4813
- };
4814
- readonly last_name: {
4815
- readonly type: "string";
4816
- };
4817
- readonly profile_image_url: {
4818
- readonly type: "string";
4819
- };
4820
- readonly relation_status: {
4821
- readonly $ref: "#/components/schemas/UserRelation";
4822
- };
4823
- readonly user_id: {
4824
- readonly format: "uuid";
4825
- readonly type: "string";
4826
- };
4827
- };
4828
- readonly required: readonly ["user_id", "first_name", "last_name", "relation_status"];
4829
- readonly type: "object";
4830
- };
4831
4802
  declare const UserProfileSchema: {
4832
4803
  readonly properties: {
4833
4804
  readonly address: {
@@ -4845,20 +4816,16 @@ declare const UserProfileSchema: {
4845
4816
  readonly email: {
4846
4817
  readonly type: "string";
4847
4818
  };
4848
- readonly firstname: {
4819
+ readonly first_name: {
4849
4820
  readonly type: "string";
4850
4821
  };
4851
4822
  readonly gender: {
4852
4823
  readonly $ref: "#/components/schemas/Gender";
4853
4824
  };
4854
- readonly keycloak_id: {
4855
- readonly format: "uuid";
4856
- readonly type: "string";
4857
- };
4858
4825
  readonly language: {
4859
4826
  readonly type: "string";
4860
4827
  };
4861
- readonly lastname: {
4828
+ readonly last_name: {
4862
4829
  readonly type: "string";
4863
4830
  };
4864
4831
  readonly membership_facilities: {
@@ -4873,14 +4840,21 @@ declare const UserProfileSchema: {
4873
4840
  readonly profile_image_url: {
4874
4841
  readonly type: "string";
4875
4842
  };
4843
+ readonly relation_status: {
4844
+ readonly $ref: "#/components/schemas/UserRelation";
4845
+ };
4876
4846
  readonly telephone: {
4877
4847
  readonly type: "string";
4878
4848
  };
4849
+ readonly user_id: {
4850
+ readonly format: "uuid";
4851
+ readonly type: "string";
4852
+ };
4879
4853
  readonly zipcode: {
4880
4854
  readonly type: "string";
4881
4855
  };
4882
4856
  };
4883
- readonly required: readonly ["keycloak_id", "firstname", "language", "email"];
4857
+ readonly required: readonly ["user_id", "first_name", "last_name", "relation_status"];
4884
4858
  readonly type: "object";
4885
4859
  };
4886
4860
  declare const UserRelationSchema: {
@@ -4888,11 +4862,11 @@ declare const UserRelationSchema: {
4888
4862
  readonly enum: readonly ["FRIENDS", "OUTGOING", "INCOMING", "NO_RELATION"];
4889
4863
  readonly type: "string";
4890
4864
  };
4891
- declare const UsersPaginatedResponseSchema: {
4865
+ declare const UsersProfilesPaginatedResponseSchema: {
4892
4866
  readonly properties: {
4893
4867
  readonly items: {
4894
4868
  readonly items: {
4895
- readonly $ref: "#/components/schemas/User";
4869
+ readonly $ref: "#/components/schemas/UserProfile";
4896
4870
  };
4897
4871
  readonly type: "array";
4898
4872
  };
@@ -5022,18 +4996,17 @@ declare const schemas_gen_PreferencesResponseSchema: typeof PreferencesResponseS
5022
4996
  declare const schemas_gen_SourceSchema: typeof SourceSchema;
5023
4997
  declare const schemas_gen_TopicSchema: typeof TopicSchema;
5024
4998
  declare const schemas_gen_UpdatePreferencesRequestBodySchema: typeof UpdatePreferencesRequestBodySchema;
5025
- declare const schemas_gen_UpdateUserProfileRequestSchema: typeof UpdateUserProfileRequestSchema;
4999
+ declare const schemas_gen_UpdateUsersProfilesRequestSchema: typeof UpdateUsersProfilesRequestSchema;
5026
5000
  declare const schemas_gen_UserProfileSchema: typeof UserProfileSchema;
5027
5001
  declare const schemas_gen_UserRelationSchema: typeof UserRelationSchema;
5028
- declare const schemas_gen_UserSchema: typeof UserSchema;
5029
- declare const schemas_gen_UsersPaginatedResponseSchema: typeof UsersPaginatedResponseSchema;
5002
+ declare const schemas_gen_UsersProfilesPaginatedResponseSchema: typeof UsersProfilesPaginatedResponseSchema;
5030
5003
  declare const schemas_gen_pkgOpenapiSharedCursorPaginatedResultSetSchema: typeof pkgOpenapiSharedCursorPaginatedResultSetSchema;
5031
5004
  declare const schemas_gen_pkgOpenapiSharedErrorSchema: typeof pkgOpenapiSharedErrorSchema;
5032
5005
  declare const schemas_gen_pkgOpenapiSharedErrorsSchema: typeof pkgOpenapiSharedErrorsSchema;
5033
5006
  declare const schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema: typeof pkgOpenapiSharedOffsetPaginatedResultSetSchema;
5034
5007
  declare const schemas_gen_pkgOpenapiSharedProblemDetailsSchema: typeof pkgOpenapiSharedProblemDetailsSchema;
5035
5008
  declare namespace schemas_gen {
5036
- export { schemas_gen_ChannelsSchema as ChannelsSchema, schemas_gen_FacilityMessagePayloadSchema as FacilityMessagePayloadSchema, schemas_gen_FacilityOfferConditionActivitiesSchema as FacilityOfferConditionActivitiesSchema, schemas_gen_FacilityOfferConditionCourtsSchema as FacilityOfferConditionCourtsSchema, schemas_gen_FacilityOfferConditionDateSchema as FacilityOfferConditionDateSchema, schemas_gen_FacilityOfferConditionHoursinadvanceSchema as FacilityOfferConditionHoursinadvanceSchema, schemas_gen_FacilityOfferConditionSchema as FacilityOfferConditionSchema, schemas_gen_FacilityOfferConditionTimeSchema as FacilityOfferConditionTimeSchema, schemas_gen_FacilityOfferConditionWeekdaysSchema as FacilityOfferConditionWeekdaysSchema, schemas_gen_FacilityOfferListSchema as FacilityOfferListSchema, schemas_gen_FacilityOfferOrderSchema as FacilityOfferOrderSchema, schemas_gen_FacilityOfferSchema as FacilityOfferSchema, schemas_gen_FacilityPermissionSchema as FacilityPermissionSchema, schemas_gen_FacilityPermissionsResponseSchema as FacilityPermissionsResponseSchema, schemas_gen_FacilityPunchCardDataSchema as FacilityPunchCardDataSchema, schemas_gen_FacilityValueCardDataSchema as FacilityValueCardDataSchema, schemas_gen_GenderSchema as GenderSchema, schemas_gen_MetadataSchema as MetadataSchema, schemas_gen_NotificationPayloadSchema as NotificationPayloadSchema, schemas_gen_NotificationRequestBodySchema as NotificationRequestBodySchema, schemas_gen_NotificationSchema as NotificationSchema, schemas_gen_NotificationsFilterSchema as NotificationsFilterSchema, schemas_gen_NotificationsPaginatedResponseSchema as NotificationsPaginatedResponseSchema, schemas_gen_NotificationsSummarySchema as NotificationsSummarySchema, schemas_gen_PreferenceSchema as PreferenceSchema, schemas_gen_PreferencesResponseSchema as PreferencesResponseSchema, schemas_gen_SourceSchema as SourceSchema, schemas_gen_TopicSchema as TopicSchema, schemas_gen_UpdatePreferencesRequestBodySchema as UpdatePreferencesRequestBodySchema, schemas_gen_UpdateUserProfileRequestSchema as UpdateUserProfileRequestSchema, schemas_gen_UserProfileSchema as UserProfileSchema, schemas_gen_UserRelationSchema as UserRelationSchema, schemas_gen_UserSchema as UserSchema, schemas_gen_UsersPaginatedResponseSchema as UsersPaginatedResponseSchema, 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 };
5009
+ export { schemas_gen_ChannelsSchema as ChannelsSchema, schemas_gen_FacilityMessagePayloadSchema as FacilityMessagePayloadSchema, schemas_gen_FacilityOfferConditionActivitiesSchema as FacilityOfferConditionActivitiesSchema, schemas_gen_FacilityOfferConditionCourtsSchema as FacilityOfferConditionCourtsSchema, schemas_gen_FacilityOfferConditionDateSchema as FacilityOfferConditionDateSchema, schemas_gen_FacilityOfferConditionHoursinadvanceSchema as FacilityOfferConditionHoursinadvanceSchema, schemas_gen_FacilityOfferConditionSchema as FacilityOfferConditionSchema, schemas_gen_FacilityOfferConditionTimeSchema as FacilityOfferConditionTimeSchema, schemas_gen_FacilityOfferConditionWeekdaysSchema as FacilityOfferConditionWeekdaysSchema, schemas_gen_FacilityOfferListSchema as FacilityOfferListSchema, schemas_gen_FacilityOfferOrderSchema as FacilityOfferOrderSchema, schemas_gen_FacilityOfferSchema as FacilityOfferSchema, schemas_gen_FacilityPermissionSchema as FacilityPermissionSchema, schemas_gen_FacilityPermissionsResponseSchema as FacilityPermissionsResponseSchema, schemas_gen_FacilityPunchCardDataSchema as FacilityPunchCardDataSchema, schemas_gen_FacilityValueCardDataSchema as FacilityValueCardDataSchema, schemas_gen_GenderSchema as GenderSchema, schemas_gen_MetadataSchema as MetadataSchema, schemas_gen_NotificationPayloadSchema as NotificationPayloadSchema, schemas_gen_NotificationRequestBodySchema as NotificationRequestBodySchema, schemas_gen_NotificationSchema as NotificationSchema, schemas_gen_NotificationsFilterSchema as NotificationsFilterSchema, schemas_gen_NotificationsPaginatedResponseSchema as NotificationsPaginatedResponseSchema, schemas_gen_NotificationsSummarySchema as NotificationsSummarySchema, schemas_gen_PreferenceSchema as PreferenceSchema, schemas_gen_PreferencesResponseSchema as PreferencesResponseSchema, schemas_gen_SourceSchema as SourceSchema, schemas_gen_TopicSchema as TopicSchema, schemas_gen_UpdatePreferencesRequestBodySchema as UpdatePreferencesRequestBodySchema, schemas_gen_UpdateUsersProfilesRequestSchema as UpdateUsersProfilesRequestSchema, schemas_gen_UserProfileSchema as UserProfileSchema, schemas_gen_UserRelationSchema as UserRelationSchema, schemas_gen_UsersProfilesPaginatedResponseSchema as UsersProfilesPaginatedResponseSchema, schemas_gen_pkgOpenapiSharedCursorPaginatedResultSetSchema as pkgOpenapiSharedCursorPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedErrorSchema as pkgOpenapiSharedErrorSchema, schemas_gen_pkgOpenapiSharedErrorsSchema as pkgOpenapiSharedErrorsSchema, schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema as pkgOpenapiSharedOffsetPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedProblemDetailsSchema as pkgOpenapiSharedProblemDetailsSchema };
5037
5010
  }
5038
5011
 
5039
5012
  type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
@@ -5103,18 +5076,18 @@ declare const updateNotification: <ThrowOnError extends boolean = false>(options
5103
5076
  * Get a list of users based on the current user's search query
5104
5077
  */
5105
5078
  declare const searchUsers: <ThrowOnError extends boolean = false>(options?: Options<SearchUsersData, ThrowOnError>) => RequestResult<SearchUsersResponses, SearchUsersErrors, ThrowOnError, "fields">;
5106
- /**
5107
- * Update the current user's profile
5108
- *
5109
- * Update the current user's profile information
5110
- */
5111
- declare const updateUserProfile: <ThrowOnError extends boolean = false>(options: Options<UpdateUserProfileData, ThrowOnError>) => RequestResult<UpdateUserProfileResponses, UpdateUserProfileErrors, ThrowOnError, "fields">;
5112
5079
  /**
5113
5080
  * Get facility permissions for a user
5114
5081
  *
5115
5082
  * Returns the authenticated user's facility-level permissions including roles and scopes for each facility.
5116
5083
  */
5117
5084
  declare const getUserFacilityPermissions: <ThrowOnError extends boolean = false>(options: Options<GetUserFacilityPermissionsData, ThrowOnError>) => RequestResult<GetUserFacilityPermissionsResponses, GetUserFacilityPermissionsErrors, ThrowOnError, "fields">;
5085
+ /**
5086
+ * Update authenticated user's profile
5087
+ *
5088
+ * Update authenticated user's profile information
5089
+ */
5090
+ declare const updateUserProfile: <ThrowOnError extends boolean = false>(options: Options<UpdateUserProfileData, ThrowOnError>) => RequestResult<UpdateUserProfileResponses, UpdateUserProfileErrors, ThrowOnError, "fields">;
5118
5091
 
5119
5092
  type QueryKey<TOptions extends Options> = [
5120
5093
  Pick<TOptions, 'baseUrl' | 'body' | 'headers' | 'path' | 'query'> & {
@@ -5329,12 +5302,12 @@ declare const searchUsersQueryKey: (options?: Options<SearchUsersData>) => [Pick
5329
5302
  *
5330
5303
  * Get a list of users based on the current user's search query
5331
5304
  */
5332
- declare const searchUsersOptions: (options?: Options<SearchUsersData>) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<UsersPaginatedResponse, PkgOpenapiSharedProblemDetails, UsersPaginatedResponse, [Pick<Options<SearchUsersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
5305
+ declare const searchUsersOptions: (options?: Options<SearchUsersData>) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<UsersProfilesPaginatedResponse, PkgOpenapiSharedProblemDetails, UsersProfilesPaginatedResponse, [Pick<Options<SearchUsersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
5333
5306
  _id: string;
5334
5307
  _infinite?: boolean;
5335
5308
  tags?: ReadonlyArray<string>;
5336
5309
  }]>, "queryFn"> & {
5337
- queryFn?: _tanstack_react_query.QueryFunction<UsersPaginatedResponse, [Pick<Options<SearchUsersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
5310
+ queryFn?: _tanstack_react_query.QueryFunction<UsersProfilesPaginatedResponse, [Pick<Options<SearchUsersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
5338
5311
  _id: string;
5339
5312
  _infinite?: boolean;
5340
5313
  tags?: ReadonlyArray<string>;
@@ -5345,7 +5318,7 @@ declare const searchUsersOptions: (options?: Options<SearchUsersData>) => _tanst
5345
5318
  _infinite?: boolean;
5346
5319
  tags?: ReadonlyArray<string>;
5347
5320
  }] & {
5348
- [dataTagSymbol]: UsersPaginatedResponse;
5321
+ [dataTagSymbol]: UsersProfilesPaginatedResponse;
5349
5322
  [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
5350
5323
  };
5351
5324
  };
@@ -5355,32 +5328,26 @@ declare const searchUsersInfiniteQueryKey: (options?: Options<SearchUsersData>)
5355
5328
  *
5356
5329
  * Get a list of users based on the current user's search query
5357
5330
  */
5358
- declare const searchUsersInfiniteOptions: (options?: Options<SearchUsersData>) => _tanstack_react_query.UseInfiniteQueryOptions<UsersPaginatedResponse, PkgOpenapiSharedProblemDetails, InfiniteData<UsersPaginatedResponse, unknown>, QueryKey<Options<SearchUsersData>>, number | Pick<Pick<Options<SearchUsersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
5331
+ declare const searchUsersInfiniteOptions: (options?: Options<SearchUsersData>) => _tanstack_react_query.UseInfiniteQueryOptions<UsersProfilesPaginatedResponse, PkgOpenapiSharedProblemDetails, InfiniteData<UsersProfilesPaginatedResponse, unknown>, QueryKey<Options<SearchUsersData>>, number | Pick<Pick<Options<SearchUsersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
5359
5332
  _id: string;
5360
5333
  _infinite?: boolean;
5361
5334
  tags?: ReadonlyArray<string>;
5362
5335
  }, "query" | "body" | "headers" | "path">> & {
5363
- initialData: InfiniteData<UsersPaginatedResponse, number | Pick<Pick<Options<SearchUsersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
5336
+ initialData: InfiniteData<UsersProfilesPaginatedResponse, number | Pick<Pick<Options<SearchUsersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
5364
5337
  _id: string;
5365
5338
  _infinite?: boolean;
5366
5339
  tags?: ReadonlyArray<string>;
5367
- }, "query" | "body" | "headers" | "path">> | (() => InfiniteData<UsersPaginatedResponse, number | Pick<Pick<Options<SearchUsersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
5340
+ }, "query" | "body" | "headers" | "path">> | (() => InfiniteData<UsersProfilesPaginatedResponse, number | Pick<Pick<Options<SearchUsersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
5368
5341
  _id: string;
5369
5342
  _infinite?: boolean;
5370
5343
  tags?: ReadonlyArray<string>;
5371
5344
  }, "query" | "body" | "headers" | "path">>) | undefined;
5372
5345
  } & {
5373
5346
  queryKey: QueryKey<Options<SearchUsersData>> & {
5374
- [dataTagSymbol]: InfiniteData<UsersPaginatedResponse, unknown>;
5347
+ [dataTagSymbol]: InfiniteData<UsersProfilesPaginatedResponse, unknown>;
5375
5348
  [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
5376
5349
  };
5377
5350
  };
5378
- /**
5379
- * Update the current user's profile
5380
- *
5381
- * Update the current user's profile information
5382
- */
5383
- declare const updateUserProfileMutation: (options?: Partial<Options<UpdateUserProfileData>>) => UseMutationOptions<UpdateUserProfileResponse, UpdateUserProfileError, Options<UpdateUserProfileData>>;
5384
5351
  declare const getUserFacilityPermissionsQueryKey: (options: Options<GetUserFacilityPermissionsData>) => [Pick<Options<GetUserFacilityPermissionsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
5385
5352
  _id: string;
5386
5353
  _infinite?: boolean;
@@ -5411,6 +5378,12 @@ declare const getUserFacilityPermissionsOptions: (options: Options<GetUserFacili
5411
5378
  [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
5412
5379
  };
5413
5380
  };
5381
+ /**
5382
+ * Update authenticated user's profile
5383
+ *
5384
+ * Update authenticated user's profile information
5385
+ */
5386
+ declare const updateUserProfileMutation: (options?: Partial<Options<UpdateUserProfileData>>) => UseMutationOptions<UpdateUserProfileResponse, UpdateUserProfileError, Options<UpdateUserProfileData>>;
5414
5387
 
5415
5388
  type reactQuery_gen_QueryKey<TOptions extends Options> = QueryKey<TOptions>;
5416
5389
  declare const reactQuery_gen_createFacilityOfferOrderMutation: typeof createFacilityOfferOrderMutation;
@@ -5536,13 +5509,12 @@ type indexV1_UpdatePreferencesRequestBody = UpdatePreferencesRequestBody;
5536
5509
  type indexV1_UpdateUserProfileData = UpdateUserProfileData;
5537
5510
  type indexV1_UpdateUserProfileError = UpdateUserProfileError;
5538
5511
  type indexV1_UpdateUserProfileErrors = UpdateUserProfileErrors;
5539
- type indexV1_UpdateUserProfileRequest = UpdateUserProfileRequest;
5540
5512
  type indexV1_UpdateUserProfileResponse = UpdateUserProfileResponse;
5541
5513
  type indexV1_UpdateUserProfileResponses = UpdateUserProfileResponses;
5542
- type indexV1_User = User;
5514
+ type indexV1_UpdateUsersProfilesRequest = UpdateUsersProfilesRequest;
5543
5515
  type indexV1_UserProfile = UserProfile;
5544
5516
  type indexV1_UserRelation = UserRelation;
5545
- type indexV1_UsersPaginatedResponse = UsersPaginatedResponse;
5517
+ type indexV1_UsersProfilesPaginatedResponse = UsersProfilesPaginatedResponse;
5546
5518
  declare const indexV1_client: typeof client;
5547
5519
  declare const indexV1_createFacilityOfferOrder: typeof createFacilityOfferOrder;
5548
5520
  declare const indexV1_getNotificationById: typeof getNotificationById;
@@ -5556,7 +5528,7 @@ declare const indexV1_updateNotification: typeof updateNotification;
5556
5528
  declare const indexV1_updateNotificationsPreferences: typeof updateNotificationsPreferences;
5557
5529
  declare const indexV1_updateUserProfile: typeof updateUserProfile;
5558
5530
  declare namespace indexV1 {
5559
- export { type indexV1_Channels as Channels, type indexV1_ClientOptions as ClientOptions, type indexV1_CreateFacilityOfferOrderData as CreateFacilityOfferOrderData, type indexV1_CreateFacilityOfferOrderError as CreateFacilityOfferOrderError, type indexV1_CreateFacilityOfferOrderErrors as CreateFacilityOfferOrderErrors, type indexV1_CreateFacilityOfferOrderResponse as CreateFacilityOfferOrderResponse, type indexV1_CreateFacilityOfferOrderResponses as CreateFacilityOfferOrderResponses, type indexV1_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_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_ListFacilityOffersData as ListFacilityOffersData, type indexV1_ListFacilityOffersError as ListFacilityOffersError, type indexV1_ListFacilityOffersErrors as ListFacilityOffersErrors, type indexV1_ListFacilityOffersResponse as ListFacilityOffersResponse, type indexV1_ListFacilityOffersResponses as ListFacilityOffersResponses, type indexV1_Metadata as Metadata, type indexV1_Notification as Notification, type indexV1_NotificationPayload as NotificationPayload, type indexV1_NotificationRequestBody as NotificationRequestBody, type indexV1_NotificationsFilter as NotificationsFilter, type indexV1_NotificationsFilterParam as NotificationsFilterParam, type indexV1_NotificationsPaginatedResponse as NotificationsPaginatedResponse, type indexV1_NotificationsSummary as NotificationsSummary, type indexV1_OfferIdPath as OfferIdPath, type indexV1_Options as Options, type indexV1_PkgOpenapiSharedCursorLimitParam as PkgOpenapiSharedCursorLimitParam, type indexV1_PkgOpenapiSharedCursorPaginatedResultSet as PkgOpenapiSharedCursorPaginatedResultSet, type indexV1_PkgOpenapiSharedCursorParam as PkgOpenapiSharedCursorParam, type indexV1_PkgOpenapiSharedError as PkgOpenapiSharedError, type indexV1_PkgOpenapiSharedErrors as PkgOpenapiSharedErrors, type indexV1_PkgOpenapiSharedOffsetLimitParam as PkgOpenapiSharedOffsetLimitParam, type indexV1_PkgOpenapiSharedOffsetPaginatedResultSet as PkgOpenapiSharedOffsetPaginatedResultSet, type indexV1_PkgOpenapiSharedOffsetParam as PkgOpenapiSharedOffsetParam, type indexV1_PkgOpenapiSharedProblemDetails as PkgOpenapiSharedProblemDetails, type indexV1_Preference as Preference, type indexV1_PreferencesResponse as PreferencesResponse, type indexV1_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_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_UpdateUserProfileData as UpdateUserProfileData, type indexV1_UpdateUserProfileError as UpdateUserProfileError, type indexV1_UpdateUserProfileErrors as UpdateUserProfileErrors, type indexV1_UpdateUserProfileRequest as UpdateUserProfileRequest, type indexV1_UpdateUserProfileResponse as UpdateUserProfileResponse, type indexV1_UpdateUserProfileResponses as UpdateUserProfileResponses, type indexV1_User as User, type indexV1_UserProfile as UserProfile, type indexV1_UserRelation as UserRelation, type indexV1_UsersPaginatedResponse as UsersPaginatedResponse, indexV1_client as client, indexV1_createFacilityOfferOrder as createFacilityOfferOrder, indexV1_getNotificationById as getNotificationById, indexV1_getNotifications as getNotifications, indexV1_getNotificationsPreferences as getNotificationsPreferences, indexV1_getUserFacilityPermissions as getUserFacilityPermissions, 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 };
5531
+ export { type indexV1_Channels as Channels, type indexV1_ClientOptions as ClientOptions, type indexV1_CreateFacilityOfferOrderData as CreateFacilityOfferOrderData, type indexV1_CreateFacilityOfferOrderError as CreateFacilityOfferOrderError, type indexV1_CreateFacilityOfferOrderErrors as CreateFacilityOfferOrderErrors, type indexV1_CreateFacilityOfferOrderResponse as CreateFacilityOfferOrderResponse, type indexV1_CreateFacilityOfferOrderResponses as CreateFacilityOfferOrderResponses, type indexV1_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_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_ListFacilityOffersData as ListFacilityOffersData, type indexV1_ListFacilityOffersError as ListFacilityOffersError, type indexV1_ListFacilityOffersErrors as ListFacilityOffersErrors, type indexV1_ListFacilityOffersResponse as ListFacilityOffersResponse, type indexV1_ListFacilityOffersResponses as ListFacilityOffersResponses, type indexV1_Metadata as Metadata, type indexV1_Notification as Notification, type indexV1_NotificationPayload as NotificationPayload, type indexV1_NotificationRequestBody as NotificationRequestBody, type indexV1_NotificationsFilter as NotificationsFilter, type indexV1_NotificationsFilterParam as NotificationsFilterParam, type indexV1_NotificationsPaginatedResponse as NotificationsPaginatedResponse, type indexV1_NotificationsSummary as NotificationsSummary, type indexV1_OfferIdPath as OfferIdPath, type indexV1_Options as Options, type indexV1_PkgOpenapiSharedCursorLimitParam as PkgOpenapiSharedCursorLimitParam, type indexV1_PkgOpenapiSharedCursorPaginatedResultSet as PkgOpenapiSharedCursorPaginatedResultSet, type indexV1_PkgOpenapiSharedCursorParam as PkgOpenapiSharedCursorParam, type indexV1_PkgOpenapiSharedError as PkgOpenapiSharedError, type indexV1_PkgOpenapiSharedErrors as PkgOpenapiSharedErrors, type indexV1_PkgOpenapiSharedOffsetLimitParam as PkgOpenapiSharedOffsetLimitParam, type indexV1_PkgOpenapiSharedOffsetPaginatedResultSet as PkgOpenapiSharedOffsetPaginatedResultSet, type indexV1_PkgOpenapiSharedOffsetParam as PkgOpenapiSharedOffsetParam, type indexV1_PkgOpenapiSharedProblemDetails as PkgOpenapiSharedProblemDetails, type indexV1_Preference as Preference, type indexV1_PreferencesResponse as PreferencesResponse, type indexV1_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_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_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_UpdateUsersProfilesRequest as UpdateUsersProfilesRequest, type indexV1_UserProfile as UserProfile, type indexV1_UserRelation as UserRelation, type indexV1_UsersProfilesPaginatedResponse as UsersProfilesPaginatedResponse, indexV1_client as client, indexV1_createFacilityOfferOrder as createFacilityOfferOrder, indexV1_getNotificationById as getNotificationById, indexV1_getNotifications as getNotifications, indexV1_getNotificationsPreferences as getNotificationsPreferences, indexV1_getUserFacilityPermissions as getUserFacilityPermissions, 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 };
5560
5532
  }
5561
5533
 
5562
5534
  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 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 };