@matchi/api 0.20260210.1 → 0.20260303.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,39 @@ 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
3672
  email?: string;
3673
- firstname?: string;
3673
+ first_name?: string;
3674
3674
  gender?: Gender;
3675
3675
  language?: string;
3676
- lastname?: string;
3676
+ last_name?: string;
3677
3677
  private_profile?: boolean;
3678
+ /**
3679
+ * Phone number in E.164 format. Send empty string to clear the value.
3680
+ */
3678
3681
  telephone?: string;
3679
3682
  zipcode?: string;
3680
3683
  };
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
3684
  type UserProfile = {
3689
3685
  address?: string;
3690
3686
  birthday?: string;
3691
3687
  city?: string;
3692
3688
  country?: string;
3693
- email: string;
3694
- firstname: string;
3689
+ email?: string;
3690
+ first_name: string;
3695
3691
  gender?: Gender;
3696
- keycloak_id: string;
3697
- language: string;
3698
- lastname?: string;
3692
+ language?: string;
3693
+ last_name: string;
3699
3694
  membership_facilities?: Array<number>;
3700
3695
  private_profile?: boolean;
3701
3696
  profile_image_url?: string;
3697
+ relation_status: UserRelation;
3702
3698
  telephone?: string;
3699
+ user_id: string;
3703
3700
  zipcode?: string;
3704
3701
  };
3705
3702
  /**
@@ -3725,8 +3722,8 @@ declare const UserRelation: {
3725
3722
  *
3726
3723
  */
3727
3724
  type UserRelation = typeof UserRelation[keyof typeof UserRelation];
3728
- type UsersPaginatedResponse = {
3729
- items: Array<User>;
3725
+ type UsersProfilesPaginatedResponse = {
3726
+ items: Array<UserProfile>;
3730
3727
  meta: PkgOpenapiSharedOffsetPaginatedResultSet;
3731
3728
  };
3732
3729
  /**
@@ -4171,23 +4168,21 @@ type SearchUsersResponses = {
4171
4168
  /**
4172
4169
  * OK
4173
4170
  */
4174
- 200: UsersPaginatedResponse;
4171
+ 200: UsersProfilesPaginatedResponse;
4175
4172
  };
4176
4173
  type SearchUsersResponse = SearchUsersResponses[keyof SearchUsersResponses];
4177
- type UpdateUserProfileData = {
4178
- /**
4179
- * The profile fields to update
4180
- */
4181
- body: UpdateUserProfileRequest;
4182
- path?: never;
4174
+ type GetUserFacilityPermissionsData = {
4175
+ body?: never;
4176
+ path: {
4177
+ /**
4178
+ * The user ID (must match the authenticated user)
4179
+ */
4180
+ user_id: string;
4181
+ };
4183
4182
  query?: never;
4184
- url: '/users/profiles';
4183
+ url: '/users/{user_id}/facility-permissions';
4185
4184
  };
4186
- type UpdateUserProfileErrors = {
4187
- /**
4188
- * The request was malformed or could not be processed.
4189
- */
4190
- 400: PkgOpenapiSharedProblemDetails;
4185
+ type GetUserFacilityPermissionsErrors = {
4191
4186
  /**
4192
4187
  * Access token is not set or invalid.
4193
4188
  */
@@ -4200,25 +4195,20 @@ type UpdateUserProfileErrors = {
4200
4195
  * The server encountered an unexpected error
4201
4196
  */
4202
4197
  500: PkgOpenapiSharedProblemDetails;
4198
+ };
4199
+ type GetUserFacilityPermissionsError = GetUserFacilityPermissionsErrors[keyof GetUserFacilityPermissionsErrors];
4200
+ type GetUserFacilityPermissionsResponses = {
4203
4201
  /**
4204
- * The requested operation is not implemented.
4205
- */
4206
- 501: PkgOpenapiSharedProblemDetails;
4207
- /**
4208
- * The service requested is unavailable
4202
+ * OK
4209
4203
  */
4210
- 503: PkgOpenapiSharedProblemDetails;
4204
+ 200: FacilityPermissionsResponse;
4211
4205
  };
4212
- type UpdateUserProfileError = UpdateUserProfileErrors[keyof UpdateUserProfileErrors];
4213
- type UpdateUserProfileResponses = {
4206
+ type GetUserFacilityPermissionsResponse = GetUserFacilityPermissionsResponses[keyof GetUserFacilityPermissionsResponses];
4207
+ type UpdateUserProfileData = {
4214
4208
  /**
4215
- * Profile updated successfully
4209
+ * The profile fields to update
4216
4210
  */
4217
- 200: UserProfile;
4218
- };
4219
- type UpdateUserProfileResponse = UpdateUserProfileResponses[keyof UpdateUserProfileResponses];
4220
- type GetUserFacilityPermissionsData = {
4221
- body?: never;
4211
+ body: UpdateUsersProfilesRequest;
4222
4212
  path: {
4223
4213
  /**
4224
4214
  * The user ID (must match the authenticated user)
@@ -4226,9 +4216,13 @@ type GetUserFacilityPermissionsData = {
4226
4216
  user_id: string;
4227
4217
  };
4228
4218
  query?: never;
4229
- url: '/users/{user_id}/facility-permissions';
4219
+ url: '/users/{user_id}/profiles';
4230
4220
  };
4231
- type GetUserFacilityPermissionsErrors = {
4221
+ type UpdateUserProfileErrors = {
4222
+ /**
4223
+ * The request was malformed or could not be processed.
4224
+ */
4225
+ 400: PkgOpenapiSharedProblemDetails;
4232
4226
  /**
4233
4227
  * Access token is not set or invalid.
4234
4228
  */
@@ -4237,19 +4231,23 @@ type GetUserFacilityPermissionsErrors = {
4237
4231
  * The requestor is not authorized to perform this operation on the resource.
4238
4232
  */
4239
4233
  403: PkgOpenapiSharedProblemDetails;
4234
+ /**
4235
+ * The requested resource was not found.
4236
+ */
4237
+ 404: PkgOpenapiSharedProblemDetails;
4240
4238
  /**
4241
4239
  * The server encountered an unexpected error
4242
4240
  */
4243
4241
  500: PkgOpenapiSharedProblemDetails;
4244
4242
  };
4245
- type GetUserFacilityPermissionsError = GetUserFacilityPermissionsErrors[keyof GetUserFacilityPermissionsErrors];
4246
- type GetUserFacilityPermissionsResponses = {
4243
+ type UpdateUserProfileError = UpdateUserProfileErrors[keyof UpdateUserProfileErrors];
4244
+ type UpdateUserProfileResponses = {
4247
4245
  /**
4248
- * OK
4246
+ * Profile updated successfully
4249
4247
  */
4250
- 200: FacilityPermissionsResponse;
4248
+ 200: UserProfile;
4251
4249
  };
4252
- type GetUserFacilityPermissionsResponse = GetUserFacilityPermissionsResponses[keyof GetUserFacilityPermissionsResponses];
4250
+ type UpdateUserProfileResponse = UpdateUserProfileResponses[keyof UpdateUserProfileResponses];
4253
4251
 
4254
4252
  declare const client: Client;
4255
4253
 
@@ -4748,7 +4746,7 @@ declare const UpdatePreferencesRequestBodySchema: {
4748
4746
  };
4749
4747
  readonly type: "object";
4750
4748
  };
4751
- declare const UpdateUserProfileRequestSchema: {
4749
+ declare const UpdateUsersProfilesRequestSchema: {
4752
4750
  readonly properties: {
4753
4751
  readonly address: {
4754
4752
  readonly maxLength: 255;
@@ -4773,7 +4771,7 @@ declare const UpdateUserProfileRequestSchema: {
4773
4771
  readonly maxLength: 255;
4774
4772
  readonly type: "string";
4775
4773
  };
4776
- readonly firstname: {
4774
+ readonly first_name: {
4777
4775
  readonly maxLength: 100;
4778
4776
  readonly type: "string";
4779
4777
  };
@@ -4787,7 +4785,7 @@ declare const UpdateUserProfileRequestSchema: {
4787
4785
  readonly pattern: "^[a-z]{2}$";
4788
4786
  readonly type: "string";
4789
4787
  };
4790
- readonly lastname: {
4788
+ readonly last_name: {
4791
4789
  readonly maxLength: 100;
4792
4790
  readonly type: "string";
4793
4791
  };
@@ -4795,8 +4793,9 @@ declare const UpdateUserProfileRequestSchema: {
4795
4793
  readonly type: "boolean";
4796
4794
  };
4797
4795
  readonly telephone: {
4796
+ readonly description: "Phone number in E.164 format. Send empty string to clear the value.";
4798
4797
  readonly example: "+46701234567";
4799
- readonly pattern: "^\\+?[1-9]\\d{1,14}$";
4798
+ readonly pattern: "^(\\+?[1-9]\\d{1,14}|)$";
4800
4799
  readonly type: "string";
4801
4800
  };
4802
4801
  readonly zipcode: {
@@ -4806,28 +4805,6 @@ declare const UpdateUserProfileRequestSchema: {
4806
4805
  };
4807
4806
  readonly type: "object";
4808
4807
  };
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
4808
  declare const UserProfileSchema: {
4832
4809
  readonly properties: {
4833
4810
  readonly address: {
@@ -4845,20 +4822,16 @@ declare const UserProfileSchema: {
4845
4822
  readonly email: {
4846
4823
  readonly type: "string";
4847
4824
  };
4848
- readonly firstname: {
4825
+ readonly first_name: {
4849
4826
  readonly type: "string";
4850
4827
  };
4851
4828
  readonly gender: {
4852
4829
  readonly $ref: "#/components/schemas/Gender";
4853
4830
  };
4854
- readonly keycloak_id: {
4855
- readonly format: "uuid";
4856
- readonly type: "string";
4857
- };
4858
4831
  readonly language: {
4859
4832
  readonly type: "string";
4860
4833
  };
4861
- readonly lastname: {
4834
+ readonly last_name: {
4862
4835
  readonly type: "string";
4863
4836
  };
4864
4837
  readonly membership_facilities: {
@@ -4873,14 +4846,21 @@ declare const UserProfileSchema: {
4873
4846
  readonly profile_image_url: {
4874
4847
  readonly type: "string";
4875
4848
  };
4849
+ readonly relation_status: {
4850
+ readonly $ref: "#/components/schemas/UserRelation";
4851
+ };
4876
4852
  readonly telephone: {
4877
4853
  readonly type: "string";
4878
4854
  };
4855
+ readonly user_id: {
4856
+ readonly format: "uuid";
4857
+ readonly type: "string";
4858
+ };
4879
4859
  readonly zipcode: {
4880
4860
  readonly type: "string";
4881
4861
  };
4882
4862
  };
4883
- readonly required: readonly ["keycloak_id", "firstname", "language", "email"];
4863
+ readonly required: readonly ["user_id", "first_name", "last_name", "relation_status"];
4884
4864
  readonly type: "object";
4885
4865
  };
4886
4866
  declare const UserRelationSchema: {
@@ -4888,11 +4868,11 @@ declare const UserRelationSchema: {
4888
4868
  readonly enum: readonly ["FRIENDS", "OUTGOING", "INCOMING", "NO_RELATION"];
4889
4869
  readonly type: "string";
4890
4870
  };
4891
- declare const UsersPaginatedResponseSchema: {
4871
+ declare const UsersProfilesPaginatedResponseSchema: {
4892
4872
  readonly properties: {
4893
4873
  readonly items: {
4894
4874
  readonly items: {
4895
- readonly $ref: "#/components/schemas/User";
4875
+ readonly $ref: "#/components/schemas/UserProfile";
4896
4876
  };
4897
4877
  readonly type: "array";
4898
4878
  };
@@ -5022,18 +5002,17 @@ declare const schemas_gen_PreferencesResponseSchema: typeof PreferencesResponseS
5022
5002
  declare const schemas_gen_SourceSchema: typeof SourceSchema;
5023
5003
  declare const schemas_gen_TopicSchema: typeof TopicSchema;
5024
5004
  declare const schemas_gen_UpdatePreferencesRequestBodySchema: typeof UpdatePreferencesRequestBodySchema;
5025
- declare const schemas_gen_UpdateUserProfileRequestSchema: typeof UpdateUserProfileRequestSchema;
5005
+ declare const schemas_gen_UpdateUsersProfilesRequestSchema: typeof UpdateUsersProfilesRequestSchema;
5026
5006
  declare const schemas_gen_UserProfileSchema: typeof UserProfileSchema;
5027
5007
  declare const schemas_gen_UserRelationSchema: typeof UserRelationSchema;
5028
- declare const schemas_gen_UserSchema: typeof UserSchema;
5029
- declare const schemas_gen_UsersPaginatedResponseSchema: typeof UsersPaginatedResponseSchema;
5008
+ declare const schemas_gen_UsersProfilesPaginatedResponseSchema: typeof UsersProfilesPaginatedResponseSchema;
5030
5009
  declare const schemas_gen_pkgOpenapiSharedCursorPaginatedResultSetSchema: typeof pkgOpenapiSharedCursorPaginatedResultSetSchema;
5031
5010
  declare const schemas_gen_pkgOpenapiSharedErrorSchema: typeof pkgOpenapiSharedErrorSchema;
5032
5011
  declare const schemas_gen_pkgOpenapiSharedErrorsSchema: typeof pkgOpenapiSharedErrorsSchema;
5033
5012
  declare const schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema: typeof pkgOpenapiSharedOffsetPaginatedResultSetSchema;
5034
5013
  declare const schemas_gen_pkgOpenapiSharedProblemDetailsSchema: typeof pkgOpenapiSharedProblemDetailsSchema;
5035
5014
  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 };
5015
+ 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
5016
  }
5038
5017
 
5039
5018
  type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
@@ -5103,18 +5082,18 @@ declare const updateNotification: <ThrowOnError extends boolean = false>(options
5103
5082
  * Get a list of users based on the current user's search query
5104
5083
  */
5105
5084
  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
5085
  /**
5113
5086
  * Get facility permissions for a user
5114
5087
  *
5115
5088
  * Returns the authenticated user's facility-level permissions including roles and scopes for each facility.
5116
5089
  */
5117
5090
  declare const getUserFacilityPermissions: <ThrowOnError extends boolean = false>(options: Options<GetUserFacilityPermissionsData, ThrowOnError>) => RequestResult<GetUserFacilityPermissionsResponses, GetUserFacilityPermissionsErrors, ThrowOnError, "fields">;
5091
+ /**
5092
+ * Update authenticated user's profile
5093
+ *
5094
+ * Update authenticated user's profile information
5095
+ */
5096
+ declare const updateUserProfile: <ThrowOnError extends boolean = false>(options: Options<UpdateUserProfileData, ThrowOnError>) => RequestResult<UpdateUserProfileResponses, UpdateUserProfileErrors, ThrowOnError, "fields">;
5118
5097
 
5119
5098
  type QueryKey<TOptions extends Options> = [
5120
5099
  Pick<TOptions, 'baseUrl' | 'body' | 'headers' | 'path' | 'query'> & {
@@ -5329,12 +5308,12 @@ declare const searchUsersQueryKey: (options?: Options<SearchUsersData>) => [Pick
5329
5308
  *
5330
5309
  * Get a list of users based on the current user's search query
5331
5310
  */
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"> & {
5311
+ 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
5312
  _id: string;
5334
5313
  _infinite?: boolean;
5335
5314
  tags?: ReadonlyArray<string>;
5336
5315
  }]>, "queryFn"> & {
5337
- queryFn?: _tanstack_react_query.QueryFunction<UsersPaginatedResponse, [Pick<Options<SearchUsersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
5316
+ queryFn?: _tanstack_react_query.QueryFunction<UsersProfilesPaginatedResponse, [Pick<Options<SearchUsersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
5338
5317
  _id: string;
5339
5318
  _infinite?: boolean;
5340
5319
  tags?: ReadonlyArray<string>;
@@ -5345,7 +5324,7 @@ declare const searchUsersOptions: (options?: Options<SearchUsersData>) => _tanst
5345
5324
  _infinite?: boolean;
5346
5325
  tags?: ReadonlyArray<string>;
5347
5326
  }] & {
5348
- [dataTagSymbol]: UsersPaginatedResponse;
5327
+ [dataTagSymbol]: UsersProfilesPaginatedResponse;
5349
5328
  [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
5350
5329
  };
5351
5330
  };
@@ -5355,32 +5334,26 @@ declare const searchUsersInfiniteQueryKey: (options?: Options<SearchUsersData>)
5355
5334
  *
5356
5335
  * Get a list of users based on the current user's search query
5357
5336
  */
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"> & {
5337
+ 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
5338
  _id: string;
5360
5339
  _infinite?: boolean;
5361
5340
  tags?: ReadonlyArray<string>;
5362
5341
  }, "query" | "body" | "headers" | "path">> & {
5363
- initialData: InfiniteData<UsersPaginatedResponse, number | Pick<Pick<Options<SearchUsersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
5342
+ initialData: InfiniteData<UsersProfilesPaginatedResponse, number | Pick<Pick<Options<SearchUsersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
5364
5343
  _id: string;
5365
5344
  _infinite?: boolean;
5366
5345
  tags?: ReadonlyArray<string>;
5367
- }, "query" | "body" | "headers" | "path">> | (() => InfiniteData<UsersPaginatedResponse, number | Pick<Pick<Options<SearchUsersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
5346
+ }, "query" | "body" | "headers" | "path">> | (() => InfiniteData<UsersProfilesPaginatedResponse, number | Pick<Pick<Options<SearchUsersData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
5368
5347
  _id: string;
5369
5348
  _infinite?: boolean;
5370
5349
  tags?: ReadonlyArray<string>;
5371
5350
  }, "query" | "body" | "headers" | "path">>) | undefined;
5372
5351
  } & {
5373
5352
  queryKey: QueryKey<Options<SearchUsersData>> & {
5374
- [dataTagSymbol]: InfiniteData<UsersPaginatedResponse, unknown>;
5353
+ [dataTagSymbol]: InfiniteData<UsersProfilesPaginatedResponse, unknown>;
5375
5354
  [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
5376
5355
  };
5377
5356
  };
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
5357
  declare const getUserFacilityPermissionsQueryKey: (options: Options<GetUserFacilityPermissionsData>) => [Pick<Options<GetUserFacilityPermissionsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
5385
5358
  _id: string;
5386
5359
  _infinite?: boolean;
@@ -5411,6 +5384,12 @@ declare const getUserFacilityPermissionsOptions: (options: Options<GetUserFacili
5411
5384
  [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
5412
5385
  };
5413
5386
  };
5387
+ /**
5388
+ * Update authenticated user's profile
5389
+ *
5390
+ * Update authenticated user's profile information
5391
+ */
5392
+ declare const updateUserProfileMutation: (options?: Partial<Options<UpdateUserProfileData>>) => UseMutationOptions<UpdateUserProfileResponse, UpdateUserProfileError, Options<UpdateUserProfileData>>;
5414
5393
 
5415
5394
  type reactQuery_gen_QueryKey<TOptions extends Options> = QueryKey<TOptions>;
5416
5395
  declare const reactQuery_gen_createFacilityOfferOrderMutation: typeof createFacilityOfferOrderMutation;
@@ -5536,13 +5515,12 @@ type indexV1_UpdatePreferencesRequestBody = UpdatePreferencesRequestBody;
5536
5515
  type indexV1_UpdateUserProfileData = UpdateUserProfileData;
5537
5516
  type indexV1_UpdateUserProfileError = UpdateUserProfileError;
5538
5517
  type indexV1_UpdateUserProfileErrors = UpdateUserProfileErrors;
5539
- type indexV1_UpdateUserProfileRequest = UpdateUserProfileRequest;
5540
5518
  type indexV1_UpdateUserProfileResponse = UpdateUserProfileResponse;
5541
5519
  type indexV1_UpdateUserProfileResponses = UpdateUserProfileResponses;
5542
- type indexV1_User = User;
5520
+ type indexV1_UpdateUsersProfilesRequest = UpdateUsersProfilesRequest;
5543
5521
  type indexV1_UserProfile = UserProfile;
5544
5522
  type indexV1_UserRelation = UserRelation;
5545
- type indexV1_UsersPaginatedResponse = UsersPaginatedResponse;
5523
+ type indexV1_UsersProfilesPaginatedResponse = UsersProfilesPaginatedResponse;
5546
5524
  declare const indexV1_client: typeof client;
5547
5525
  declare const indexV1_createFacilityOfferOrder: typeof createFacilityOfferOrder;
5548
5526
  declare const indexV1_getNotificationById: typeof getNotificationById;
@@ -5556,7 +5534,7 @@ declare const indexV1_updateNotification: typeof updateNotification;
5556
5534
  declare const indexV1_updateNotificationsPreferences: typeof updateNotificationsPreferences;
5557
5535
  declare const indexV1_updateUserProfile: typeof updateUserProfile;
5558
5536
  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 };
5537
+ 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
5538
  }
5561
5539
 
5562
5540
  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 };