@matchi/api 0.20250925.1 → 0.20251002.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.
@@ -586,7 +586,8 @@ declare namespace chatCreation {
586
586
 
587
587
  declare enum chatTarget {
588
588
  PLAYSESSION = "playsession",
589
- USERGROUP = "usergroup"
589
+ USERGROUP = "usergroup",
590
+ AICOACH = "aicoach"
590
591
  }
591
592
 
592
593
  type giftCard = {
@@ -3311,12 +3312,23 @@ type Player = {
3311
3312
  email: string;
3312
3313
  id: string;
3313
3314
  };
3314
- type SearchUser = {
3315
- firstname: string;
3316
- lastname: string;
3317
- profileImageUrl?: string;
3318
- relationStatus: SearchUserRelation;
3319
- userId: string;
3315
+ type UpdateBooking = {
3316
+ booker: string;
3317
+ end_time: string;
3318
+ location: string;
3319
+ participants: {
3320
+ guests?: Array<Guest>;
3321
+ players?: Array<Player>;
3322
+ };
3323
+ payment_reference: string;
3324
+ start_time: string;
3325
+ };
3326
+ type User = {
3327
+ first_name: string;
3328
+ last_name: string;
3329
+ profile_image_url?: string;
3330
+ relation_status: UserRelation;
3331
+ user_id: string;
3320
3332
  };
3321
3333
  /**
3322
3334
  * Returns :
@@ -3326,7 +3338,7 @@ type SearchUser = {
3326
3338
  * * `NO_RELATION` - The user has no ongoing relation with the current user.
3327
3339
  *
3328
3340
  */
3329
- type SearchUserRelation = 'FRIENDS' | 'OUTGOING' | 'INCOMING' | 'NO_RELATION';
3341
+ type UserRelation = 'FRIENDS' | 'OUTGOING' | 'INCOMING' | 'NO_RELATION';
3330
3342
  /**
3331
3343
  * Returns :
3332
3344
  * * `FRIENDS` - The user is a friend.
@@ -3335,27 +3347,16 @@ type SearchUserRelation = 'FRIENDS' | 'OUTGOING' | 'INCOMING' | 'NO_RELATION';
3335
3347
  * * `NO_RELATION` - The user has no ongoing relation with the current user.
3336
3348
  *
3337
3349
  */
3338
- declare const SearchUserRelation: {
3350
+ declare const UserRelation: {
3339
3351
  readonly FRIENDS: "FRIENDS";
3340
3352
  readonly OUTGOING: "OUTGOING";
3341
3353
  readonly INCOMING: "INCOMING";
3342
3354
  readonly NO_RELATION: "NO_RELATION";
3343
3355
  };
3344
- type SearchUsersListPaginatedResponse = {
3345
- items: Array<SearchUser>;
3356
+ type UsersPaginatedResponse = {
3357
+ items: Array<User>;
3346
3358
  meta: PkgOpenapiSharedOffsetPaginatedResultSet;
3347
3359
  };
3348
- type UpdateBooking = {
3349
- booker: string;
3350
- end_time: string;
3351
- location: string;
3352
- participants: {
3353
- guests?: Array<Guest>;
3354
- players?: Array<Player>;
3355
- };
3356
- payment_reference: string;
3357
- start_time: string;
3358
- };
3359
3360
  /**
3360
3361
  * Metadata about the cursor based pagination for the result. This information is coupled with the CursorParam and CursorLimitParam. Intended to be used as the `meta` field in a list response, next to an `items` array field containing the data.
3361
3362
  *
@@ -3736,14 +3737,55 @@ type CreateFacilityOfferOrderResponses = {
3736
3737
  200: FacilityOfferOrder;
3737
3738
  };
3738
3739
  type CreateFacilityOfferOrderResponse = CreateFacilityOfferOrderResponses[keyof CreateFacilityOfferOrderResponses];
3739
- type SearchUsersData = {
3740
+ type RecommendedUsersData = {
3740
3741
  body?: never;
3741
3742
  path?: never;
3742
3743
  query?: {
3743
3744
  /**
3744
- * The search query
3745
+ * Include friends in the recommended users list
3745
3746
  */
3746
- name?: string;
3747
+ include_friends?: boolean;
3748
+ /**
3749
+ * Number of items to skip before returning the results.
3750
+ */
3751
+ offset?: number;
3752
+ /**
3753
+ * Maximum number of items to return.
3754
+ */
3755
+ limit?: number;
3756
+ };
3757
+ url: '/users/recommended';
3758
+ };
3759
+ type RecommendedUsersErrors = {
3760
+ /**
3761
+ * Access token is not set or invalid.
3762
+ */
3763
+ 401: PkgOpenapiSharedProblemDetails;
3764
+ /**
3765
+ * The server encountered an unexpected error
3766
+ */
3767
+ 500: PkgOpenapiSharedProblemDetails;
3768
+ /**
3769
+ * The requested operation is not implemented.
3770
+ */
3771
+ 501: PkgOpenapiSharedProblemDetails;
3772
+ };
3773
+ type RecommendedUsersError = RecommendedUsersErrors[keyof RecommendedUsersErrors];
3774
+ type RecommendedUsersResponses = {
3775
+ /**
3776
+ * OK
3777
+ */
3778
+ 200: UsersPaginatedResponse;
3779
+ };
3780
+ type RecommendedUsersResponse = RecommendedUsersResponses[keyof RecommendedUsersResponses];
3781
+ type SearchUsersData = {
3782
+ body?: never;
3783
+ path?: never;
3784
+ query: {
3785
+ /**
3786
+ * The search query, should be at least 3 characters long
3787
+ */
3788
+ name: string;
3747
3789
  /**
3748
3790
  * Number of items to skip before returning the results.
3749
3791
  */
@@ -3782,7 +3824,7 @@ type SearchUsersResponses = {
3782
3824
  /**
3783
3825
  * OK
3784
3826
  */
3785
- 200: SearchUsersListPaginatedResponse;
3827
+ 200: UsersPaginatedResponse;
3786
3828
  };
3787
3829
  type SearchUsersResponse = SearchUsersResponses[keyof SearchUsersResponses];
3788
3830
  type ClientOptions = {
@@ -4195,48 +4237,6 @@ declare const PlayerSchema: {
4195
4237
  readonly required: readonly ["id", "email"];
4196
4238
  readonly type: "object";
4197
4239
  };
4198
- declare const SearchUserSchema: {
4199
- readonly properties: {
4200
- readonly firstname: {
4201
- readonly type: "string";
4202
- };
4203
- readonly lastname: {
4204
- readonly type: "string";
4205
- };
4206
- readonly profileImageUrl: {
4207
- readonly type: "string";
4208
- };
4209
- readonly relationStatus: {
4210
- readonly $ref: "#/components/schemas/SearchUserRelation";
4211
- };
4212
- readonly userId: {
4213
- readonly format: "uuid";
4214
- readonly type: "string";
4215
- };
4216
- };
4217
- readonly required: readonly ["userId", "firstname", "lastname", "relationStatus"];
4218
- readonly type: "object";
4219
- };
4220
- declare const SearchUserRelationSchema: {
4221
- readonly description: "Returns :\n* `FRIENDS` - The user is a friend.\n* `OUTGOING` - The user has sent a friend request to the current user.\n* `INCOMING` - The user has received a friend request from the current user.\n* `NO_RELATION` - The user has no ongoing relation with the current user.\n";
4222
- readonly enum: readonly ["FRIENDS", "OUTGOING", "INCOMING", "NO_RELATION"];
4223
- readonly type: "string";
4224
- };
4225
- declare const SearchUsersListPaginatedResponseSchema: {
4226
- readonly properties: {
4227
- readonly items: {
4228
- readonly items: {
4229
- readonly $ref: "#/components/schemas/SearchUser";
4230
- };
4231
- readonly type: "array";
4232
- };
4233
- readonly meta: {
4234
- readonly $ref: "#/components/schemas/pkgOpenapiSharedOffsetPaginatedResultSet";
4235
- };
4236
- };
4237
- readonly required: readonly ["items", "meta"];
4238
- readonly type: "object";
4239
- };
4240
4240
  declare const UpdateBookingSchema: {
4241
4241
  readonly properties: {
4242
4242
  readonly booker: {
@@ -4278,6 +4278,48 @@ declare const UpdateBookingSchema: {
4278
4278
  readonly required: readonly ["booker", "location", "start_time", "end_time", "participants", "payment_reference"];
4279
4279
  readonly type: "object";
4280
4280
  };
4281
+ declare const UserSchema: {
4282
+ readonly properties: {
4283
+ readonly first_name: {
4284
+ readonly type: "string";
4285
+ };
4286
+ readonly last_name: {
4287
+ readonly type: "string";
4288
+ };
4289
+ readonly profile_image_url: {
4290
+ readonly type: "string";
4291
+ };
4292
+ readonly relation_status: {
4293
+ readonly $ref: "#/components/schemas/UserRelation";
4294
+ };
4295
+ readonly user_id: {
4296
+ readonly format: "uuid";
4297
+ readonly type: "string";
4298
+ };
4299
+ };
4300
+ readonly required: readonly ["user_id", "first_name", "last_name", "relation_status"];
4301
+ readonly type: "object";
4302
+ };
4303
+ declare const UserRelationSchema: {
4304
+ readonly description: "Returns :\n* `FRIENDS` - The user is a friend.\n* `OUTGOING` - The user has sent a friend request to the current user.\n* `INCOMING` - The user has received a friend request from the current user.\n* `NO_RELATION` - The user has no ongoing relation with the current user.\n";
4305
+ readonly enum: readonly ["FRIENDS", "OUTGOING", "INCOMING", "NO_RELATION"];
4306
+ readonly type: "string";
4307
+ };
4308
+ declare const UsersPaginatedResponseSchema: {
4309
+ readonly properties: {
4310
+ readonly items: {
4311
+ readonly items: {
4312
+ readonly $ref: "#/components/schemas/User";
4313
+ };
4314
+ readonly type: "array";
4315
+ };
4316
+ readonly meta: {
4317
+ readonly $ref: "#/components/schemas/pkgOpenapiSharedOffsetPaginatedResultSet";
4318
+ };
4319
+ };
4320
+ readonly required: readonly ["items", "meta"];
4321
+ readonly type: "object";
4322
+ };
4281
4323
  declare const pkgOpenapiSharedCursorPaginatedResultSetSchema: {
4282
4324
  readonly description: "Metadata about the cursor based pagination for the result. This information is coupled with the CursorParam and CursorLimitParam. Intended to be used as the `meta` field in a list response, next to an `items` array field containing the data.\n";
4283
4325
  readonly properties: {
@@ -4384,17 +4426,17 @@ declare const schemas_gen_FacilityPunchCardDataSchema: typeof FacilityPunchCardD
4384
4426
  declare const schemas_gen_FacilityValueCardDataSchema: typeof FacilityValueCardDataSchema;
4385
4427
  declare const schemas_gen_GuestSchema: typeof GuestSchema;
4386
4428
  declare const schemas_gen_PlayerSchema: typeof PlayerSchema;
4387
- declare const schemas_gen_SearchUserRelationSchema: typeof SearchUserRelationSchema;
4388
- declare const schemas_gen_SearchUserSchema: typeof SearchUserSchema;
4389
- declare const schemas_gen_SearchUsersListPaginatedResponseSchema: typeof SearchUsersListPaginatedResponseSchema;
4390
4429
  declare const schemas_gen_UpdateBookingSchema: typeof UpdateBookingSchema;
4430
+ declare const schemas_gen_UserRelationSchema: typeof UserRelationSchema;
4431
+ declare const schemas_gen_UserSchema: typeof UserSchema;
4432
+ declare const schemas_gen_UsersPaginatedResponseSchema: typeof UsersPaginatedResponseSchema;
4391
4433
  declare const schemas_gen_pkgOpenapiSharedCursorPaginatedResultSetSchema: typeof pkgOpenapiSharedCursorPaginatedResultSetSchema;
4392
4434
  declare const schemas_gen_pkgOpenapiSharedErrorSchema: typeof pkgOpenapiSharedErrorSchema;
4393
4435
  declare const schemas_gen_pkgOpenapiSharedErrorsSchema: typeof pkgOpenapiSharedErrorsSchema;
4394
4436
  declare const schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema: typeof pkgOpenapiSharedOffsetPaginatedResultSetSchema;
4395
4437
  declare const schemas_gen_pkgOpenapiSharedProblemDetailsSchema: typeof pkgOpenapiSharedProblemDetailsSchema;
4396
4438
  declare namespace schemas_gen {
4397
- export { schemas_gen_BookingSchema as BookingSchema, schemas_gen_CreateBookingSchema as CreateBookingSchema, 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_FacilityPunchCardDataSchema as FacilityPunchCardDataSchema, schemas_gen_FacilityValueCardDataSchema as FacilityValueCardDataSchema, schemas_gen_GuestSchema as GuestSchema, schemas_gen_PlayerSchema as PlayerSchema, schemas_gen_SearchUserRelationSchema as SearchUserRelationSchema, schemas_gen_SearchUserSchema as SearchUserSchema, schemas_gen_SearchUsersListPaginatedResponseSchema as SearchUsersListPaginatedResponseSchema, schemas_gen_UpdateBookingSchema as UpdateBookingSchema, 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 };
4439
+ export { schemas_gen_BookingSchema as BookingSchema, schemas_gen_CreateBookingSchema as CreateBookingSchema, 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_FacilityPunchCardDataSchema as FacilityPunchCardDataSchema, schemas_gen_FacilityValueCardDataSchema as FacilityValueCardDataSchema, schemas_gen_GuestSchema as GuestSchema, schemas_gen_PlayerSchema as PlayerSchema, schemas_gen_UpdateBookingSchema as UpdateBookingSchema, 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 };
4398
4440
  }
4399
4441
 
4400
4442
  type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
@@ -4448,11 +4490,16 @@ declare const listFacilityOffers: <ThrowOnError extends boolean = false>(options
4448
4490
  * Will create a facility offer order and return the order object
4449
4491
  */
4450
4492
  declare const createFacilityOfferOrder: <ThrowOnError extends boolean = false>(options: Options<CreateFacilityOfferOrderData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<FacilityOfferOrder, PkgOpenapiSharedProblemDetails, ThrowOnError>;
4493
+ /**
4494
+ * Get user recommendations
4495
+ * Get a list of recommended users based on the current user's interests
4496
+ */
4497
+ declare const recommendedUsers: <ThrowOnError extends boolean = false>(options?: Options<RecommendedUsersData, ThrowOnError> | undefined) => _hey_api_client_fetch.RequestResult<UsersPaginatedResponse, PkgOpenapiSharedProblemDetails, ThrowOnError>;
4451
4498
  /**
4452
4499
  * Search for users by name
4453
- * Search for users by name
4500
+ * Get a list of users based on the current user's search query
4454
4501
  */
4455
- declare const searchUsers: <ThrowOnError extends boolean = false>(options?: Options<SearchUsersData, ThrowOnError> | undefined) => _hey_api_client_fetch.RequestResult<SearchUsersListPaginatedResponse, PkgOpenapiSharedProblemDetails, ThrowOnError>;
4502
+ declare const searchUsers: <ThrowOnError extends boolean = false>(options: Options<SearchUsersData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<UsersPaginatedResponse, PkgOpenapiSharedProblemDetails, ThrowOnError>;
4456
4503
 
4457
4504
  type QueryKey<TOptions extends Options> = [
4458
4505
  Pick<TOptions, 'baseUrl' | 'body' | 'headers' | 'path' | 'query'> & {
@@ -4635,15 +4682,54 @@ declare const createFacilityOfferOrderOptions: (options: Options<CreateFacilityO
4635
4682
  };
4636
4683
  };
4637
4684
  declare const createFacilityOfferOrderMutation: (options?: Partial<Options<CreateFacilityOfferOrderData>>) => UseMutationOptions<FacilityOfferOrder, PkgOpenapiSharedProblemDetails, Options<CreateFacilityOfferOrderData>, unknown>;
4638
- declare const searchUsersQueryKey: (options?: Options<SearchUsersData>) => [Pick<Options<SearchUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
4685
+ declare const recommendedUsersQueryKey: (options?: Options<RecommendedUsersData>) => [Pick<Options<RecommendedUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
4686
+ _id: string;
4687
+ _infinite?: boolean | undefined;
4688
+ }];
4689
+ declare const recommendedUsersOptions: (options?: Options<RecommendedUsersData>) => _tanstack_query_core_build_legacy_hydration_ClXcjjG9.O<_tanstack_react_query_build_legacy_types.UseQueryOptions<UsersPaginatedResponse, Error, UsersPaginatedResponse, [Pick<Options<RecommendedUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
4690
+ _id: string;
4691
+ _infinite?: boolean | undefined;
4692
+ }]>, "queryFn"> & {
4693
+ queryFn?: _tanstack_query_core_build_legacy_hydration_ClXcjjG9.K<UsersPaginatedResponse, [Pick<Options<RecommendedUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
4694
+ _id: string;
4695
+ _infinite?: boolean | undefined;
4696
+ }], never> | undefined;
4697
+ } & {
4698
+ queryKey: [Pick<Options<RecommendedUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
4699
+ _id: string;
4700
+ _infinite?: boolean | undefined;
4701
+ }] & {
4702
+ [dataTagSymbol]: UsersPaginatedResponse;
4703
+ [dataTagErrorSymbol]: Error;
4704
+ };
4705
+ };
4706
+ declare const recommendedUsersInfiniteQueryKey: (options?: Options<RecommendedUsersData>) => QueryKey<Options<RecommendedUsersData>>;
4707
+ declare const recommendedUsersInfiniteOptions: (options?: Options<RecommendedUsersData>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryOptions<UsersPaginatedResponse, PkgOpenapiSharedProblemDetails, InfiniteData<UsersPaginatedResponse, unknown>, UsersPaginatedResponse, QueryKey<Options<RecommendedUsersData>>, number | Pick<Pick<Options<RecommendedUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
4708
+ _id: string;
4709
+ _infinite?: boolean | undefined;
4710
+ }, "body" | "headers" | "path" | "query">> & {
4711
+ initialData: InfiniteData<UsersPaginatedResponse, number | Pick<Pick<Options<RecommendedUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
4712
+ _id: string;
4713
+ _infinite?: boolean | undefined;
4714
+ }, "body" | "headers" | "path" | "query">> | (() => InfiniteData<UsersPaginatedResponse, number | Pick<Pick<Options<RecommendedUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
4715
+ _id: string;
4716
+ _infinite?: boolean | undefined;
4717
+ }, "body" | "headers" | "path" | "query">>) | undefined;
4718
+ } & {
4719
+ queryKey: QueryKey<Options<RecommendedUsersData>> & {
4720
+ [dataTagSymbol]: InfiniteData<UsersPaginatedResponse, unknown>;
4721
+ [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
4722
+ };
4723
+ };
4724
+ declare const searchUsersQueryKey: (options: Options<SearchUsersData>) => [Pick<Options<SearchUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
4639
4725
  _id: string;
4640
4726
  _infinite?: boolean | undefined;
4641
4727
  }];
4642
- declare const searchUsersOptions: (options?: Options<SearchUsersData>) => _tanstack_query_core_build_legacy_hydration_ClXcjjG9.O<_tanstack_react_query_build_legacy_types.UseQueryOptions<SearchUsersListPaginatedResponse, Error, SearchUsersListPaginatedResponse, [Pick<Options<SearchUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
4728
+ declare const searchUsersOptions: (options: Options<SearchUsersData>) => _tanstack_query_core_build_legacy_hydration_ClXcjjG9.O<_tanstack_react_query_build_legacy_types.UseQueryOptions<UsersPaginatedResponse, Error, UsersPaginatedResponse, [Pick<Options<SearchUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
4643
4729
  _id: string;
4644
4730
  _infinite?: boolean | undefined;
4645
4731
  }]>, "queryFn"> & {
4646
- queryFn?: _tanstack_query_core_build_legacy_hydration_ClXcjjG9.K<SearchUsersListPaginatedResponse, [Pick<Options<SearchUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
4732
+ queryFn?: _tanstack_query_core_build_legacy_hydration_ClXcjjG9.K<UsersPaginatedResponse, [Pick<Options<SearchUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
4647
4733
  _id: string;
4648
4734
  _infinite?: boolean | undefined;
4649
4735
  }], never> | undefined;
@@ -4652,25 +4738,25 @@ declare const searchUsersOptions: (options?: Options<SearchUsersData>) => _tanst
4652
4738
  _id: string;
4653
4739
  _infinite?: boolean | undefined;
4654
4740
  }] & {
4655
- [dataTagSymbol]: SearchUsersListPaginatedResponse;
4741
+ [dataTagSymbol]: UsersPaginatedResponse;
4656
4742
  [dataTagErrorSymbol]: Error;
4657
4743
  };
4658
4744
  };
4659
- declare const searchUsersInfiniteQueryKey: (options?: Options<SearchUsersData>) => QueryKey<Options<SearchUsersData>>;
4660
- declare const searchUsersInfiniteOptions: (options?: Options<SearchUsersData>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryOptions<SearchUsersListPaginatedResponse, PkgOpenapiSharedProblemDetails, InfiniteData<SearchUsersListPaginatedResponse, unknown>, SearchUsersListPaginatedResponse, QueryKey<Options<SearchUsersData>>, number | Pick<Pick<Options<SearchUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
4745
+ declare const searchUsersInfiniteQueryKey: (options: Options<SearchUsersData>) => QueryKey<Options<SearchUsersData>>;
4746
+ declare const searchUsersInfiniteOptions: (options: Options<SearchUsersData>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryOptions<UsersPaginatedResponse, PkgOpenapiSharedProblemDetails, InfiniteData<UsersPaginatedResponse, unknown>, UsersPaginatedResponse, QueryKey<Options<SearchUsersData>>, number | Pick<Pick<Options<SearchUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
4661
4747
  _id: string;
4662
4748
  _infinite?: boolean | undefined;
4663
4749
  }, "body" | "headers" | "path" | "query">> & {
4664
- initialData: InfiniteData<SearchUsersListPaginatedResponse, number | Pick<Pick<Options<SearchUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
4750
+ initialData: InfiniteData<UsersPaginatedResponse, number | Pick<Pick<Options<SearchUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
4665
4751
  _id: string;
4666
4752
  _infinite?: boolean | undefined;
4667
- }, "body" | "headers" | "path" | "query">> | (() => InfiniteData<SearchUsersListPaginatedResponse, number | Pick<Pick<Options<SearchUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
4753
+ }, "body" | "headers" | "path" | "query">> | (() => InfiniteData<UsersPaginatedResponse, number | Pick<Pick<Options<SearchUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
4668
4754
  _id: string;
4669
4755
  _infinite?: boolean | undefined;
4670
4756
  }, "body" | "headers" | "path" | "query">>) | undefined;
4671
4757
  } & {
4672
4758
  queryKey: QueryKey<Options<SearchUsersData>> & {
4673
- [dataTagSymbol]: InfiniteData<SearchUsersListPaginatedResponse, unknown>;
4759
+ [dataTagSymbol]: InfiniteData<UsersPaginatedResponse, unknown>;
4674
4760
  [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
4675
4761
  };
4676
4762
  };
@@ -4693,13 +4779,17 @@ declare const reactQuery_gen_listFacilityOffersInfiniteOptions: typeof listFacil
4693
4779
  declare const reactQuery_gen_listFacilityOffersInfiniteQueryKey: typeof listFacilityOffersInfiniteQueryKey;
4694
4780
  declare const reactQuery_gen_listFacilityOffersOptions: typeof listFacilityOffersOptions;
4695
4781
  declare const reactQuery_gen_listFacilityOffersQueryKey: typeof listFacilityOffersQueryKey;
4782
+ declare const reactQuery_gen_recommendedUsersInfiniteOptions: typeof recommendedUsersInfiniteOptions;
4783
+ declare const reactQuery_gen_recommendedUsersInfiniteQueryKey: typeof recommendedUsersInfiniteQueryKey;
4784
+ declare const reactQuery_gen_recommendedUsersOptions: typeof recommendedUsersOptions;
4785
+ declare const reactQuery_gen_recommendedUsersQueryKey: typeof recommendedUsersQueryKey;
4696
4786
  declare const reactQuery_gen_searchUsersInfiniteOptions: typeof searchUsersInfiniteOptions;
4697
4787
  declare const reactQuery_gen_searchUsersInfiniteQueryKey: typeof searchUsersInfiniteQueryKey;
4698
4788
  declare const reactQuery_gen_searchUsersOptions: typeof searchUsersOptions;
4699
4789
  declare const reactQuery_gen_searchUsersQueryKey: typeof searchUsersQueryKey;
4700
4790
  declare const reactQuery_gen_updateBookingMutation: typeof updateBookingMutation;
4701
4791
  declare namespace reactQuery_gen {
4702
- export { type reactQuery_gen_QueryKey as QueryKey, reactQuery_gen_addBookingMutation as addBookingMutation, reactQuery_gen_addBookingOptions as addBookingOptions, reactQuery_gen_addBookingQueryKey as addBookingQueryKey, reactQuery_gen_createFacilityOfferOrderMutation as createFacilityOfferOrderMutation, reactQuery_gen_createFacilityOfferOrderOptions as createFacilityOfferOrderOptions, reactQuery_gen_createFacilityOfferOrderQueryKey as createFacilityOfferOrderQueryKey, reactQuery_gen_deleteBookingMutation as deleteBookingMutation, reactQuery_gen_findBookingByIdOptions as findBookingByIdOptions, reactQuery_gen_findBookingByIdQueryKey as findBookingByIdQueryKey, reactQuery_gen_findBookingsInfiniteOptions as findBookingsInfiniteOptions, reactQuery_gen_findBookingsInfiniteQueryKey as findBookingsInfiniteQueryKey, reactQuery_gen_findBookingsOptions as findBookingsOptions, reactQuery_gen_findBookingsQueryKey as findBookingsQueryKey, 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_updateBookingMutation as updateBookingMutation };
4792
+ export { type reactQuery_gen_QueryKey as QueryKey, reactQuery_gen_addBookingMutation as addBookingMutation, reactQuery_gen_addBookingOptions as addBookingOptions, reactQuery_gen_addBookingQueryKey as addBookingQueryKey, reactQuery_gen_createFacilityOfferOrderMutation as createFacilityOfferOrderMutation, reactQuery_gen_createFacilityOfferOrderOptions as createFacilityOfferOrderOptions, reactQuery_gen_createFacilityOfferOrderQueryKey as createFacilityOfferOrderQueryKey, reactQuery_gen_deleteBookingMutation as deleteBookingMutation, reactQuery_gen_findBookingByIdOptions as findBookingByIdOptions, reactQuery_gen_findBookingByIdQueryKey as findBookingByIdQueryKey, reactQuery_gen_findBookingsInfiniteOptions as findBookingsInfiniteOptions, reactQuery_gen_findBookingsInfiniteQueryKey as findBookingsInfiniteQueryKey, reactQuery_gen_findBookingsOptions as findBookingsOptions, reactQuery_gen_findBookingsQueryKey as findBookingsQueryKey, reactQuery_gen_listFacilityOffersInfiniteOptions as listFacilityOffersInfiniteOptions, reactQuery_gen_listFacilityOffersInfiniteQueryKey as listFacilityOffersInfiniteQueryKey, reactQuery_gen_listFacilityOffersOptions as listFacilityOffersOptions, reactQuery_gen_listFacilityOffersQueryKey as listFacilityOffersQueryKey, reactQuery_gen_recommendedUsersInfiniteOptions as recommendedUsersInfiniteOptions, reactQuery_gen_recommendedUsersInfiniteQueryKey as recommendedUsersInfiniteQueryKey, reactQuery_gen_recommendedUsersOptions as recommendedUsersOptions, reactQuery_gen_recommendedUsersQueryKey as recommendedUsersQueryKey, reactQuery_gen_searchUsersInfiniteOptions as searchUsersInfiniteOptions, reactQuery_gen_searchUsersInfiniteQueryKey as searchUsersInfiniteQueryKey, reactQuery_gen_searchUsersOptions as searchUsersOptions, reactQuery_gen_searchUsersQueryKey as searchUsersQueryKey, reactQuery_gen_updateBookingMutation as updateBookingMutation };
4703
4793
  }
4704
4794
 
4705
4795
  type indexV1_AddBookingData = AddBookingData;
@@ -4761,12 +4851,14 @@ type indexV1_PkgOpenapiSharedOffsetPaginatedResultSet = PkgOpenapiSharedOffsetPa
4761
4851
  type indexV1_PkgOpenapiSharedOffsetParam = PkgOpenapiSharedOffsetParam;
4762
4852
  type indexV1_PkgOpenapiSharedProblemDetails = PkgOpenapiSharedProblemDetails;
4763
4853
  type indexV1_Player = Player;
4764
- type indexV1_SearchUser = SearchUser;
4765
- declare const indexV1_SearchUserRelation: typeof SearchUserRelation;
4854
+ type indexV1_RecommendedUsersData = RecommendedUsersData;
4855
+ type indexV1_RecommendedUsersError = RecommendedUsersError;
4856
+ type indexV1_RecommendedUsersErrors = RecommendedUsersErrors;
4857
+ type indexV1_RecommendedUsersResponse = RecommendedUsersResponse;
4858
+ type indexV1_RecommendedUsersResponses = RecommendedUsersResponses;
4766
4859
  type indexV1_SearchUsersData = SearchUsersData;
4767
4860
  type indexV1_SearchUsersError = SearchUsersError;
4768
4861
  type indexV1_SearchUsersErrors = SearchUsersErrors;
4769
- type indexV1_SearchUsersListPaginatedResponse = SearchUsersListPaginatedResponse;
4770
4862
  type indexV1_SearchUsersResponse = SearchUsersResponse;
4771
4863
  type indexV1_SearchUsersResponses = SearchUsersResponses;
4772
4864
  type indexV1_UpdateBooking = UpdateBooking;
@@ -4775,6 +4867,9 @@ type indexV1_UpdateBookingError = UpdateBookingError;
4775
4867
  type indexV1_UpdateBookingErrors = UpdateBookingErrors;
4776
4868
  type indexV1_UpdateBookingResponse = UpdateBookingResponse;
4777
4869
  type indexV1_UpdateBookingResponses = UpdateBookingResponses;
4870
+ type indexV1_User = User;
4871
+ declare const indexV1_UserRelation: typeof UserRelation;
4872
+ type indexV1_UsersPaginatedResponse = UsersPaginatedResponse;
4778
4873
  declare const indexV1_addBooking: typeof addBooking;
4779
4874
  declare const indexV1_client: typeof client;
4780
4875
  declare const indexV1_createFacilityOfferOrder: typeof createFacilityOfferOrder;
@@ -4782,10 +4877,11 @@ declare const indexV1_deleteBooking: typeof deleteBooking;
4782
4877
  declare const indexV1_findBookingById: typeof findBookingById;
4783
4878
  declare const indexV1_findBookings: typeof findBookings;
4784
4879
  declare const indexV1_listFacilityOffers: typeof listFacilityOffers;
4880
+ declare const indexV1_recommendedUsers: typeof recommendedUsers;
4785
4881
  declare const indexV1_searchUsers: typeof searchUsers;
4786
4882
  declare const indexV1_updateBooking: typeof updateBooking;
4787
4883
  declare namespace indexV1 {
4788
- export { type indexV1_AddBookingData as AddBookingData, type indexV1_AddBookingError as AddBookingError, type indexV1_AddBookingErrors as AddBookingErrors, type indexV1_AddBookingResponse as AddBookingResponse, type indexV1_AddBookingResponses as AddBookingResponses, type indexV1_Booking as Booking, type indexV1_ClientOptions as ClientOptions, type indexV1_CreateBooking as CreateBooking, 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_DeleteBookingData as DeleteBookingData, type indexV1_DeleteBookingError as DeleteBookingError, type indexV1_DeleteBookingErrors as DeleteBookingErrors, type indexV1_DeleteBookingResponse as DeleteBookingResponse, type indexV1_DeleteBookingResponses as DeleteBookingResponses, type indexV1_FacilityIdPath as FacilityIdPath, 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_FacilityPunchCardData as FacilityPunchCardData, type indexV1_FacilityValueCardData as FacilityValueCardData, type indexV1_FindBookingByIdData as FindBookingByIdData, type indexV1_FindBookingByIdError as FindBookingByIdError, type indexV1_FindBookingByIdErrors as FindBookingByIdErrors, type indexV1_FindBookingByIdResponse as FindBookingByIdResponse, type indexV1_FindBookingByIdResponses as FindBookingByIdResponses, type indexV1_FindBookingsData as FindBookingsData, type indexV1_FindBookingsError as FindBookingsError, type indexV1_FindBookingsErrors as FindBookingsErrors, type indexV1_FindBookingsResponse as FindBookingsResponse, type indexV1_FindBookingsResponses as FindBookingsResponses, type indexV1_Guest as Guest, 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_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_Player as Player, type indexV1_SearchUser as SearchUser, indexV1_SearchUserRelation as SearchUserRelation, type indexV1_SearchUsersData as SearchUsersData, type indexV1_SearchUsersError as SearchUsersError, type indexV1_SearchUsersErrors as SearchUsersErrors, type indexV1_SearchUsersListPaginatedResponse as SearchUsersListPaginatedResponse, type indexV1_SearchUsersResponse as SearchUsersResponse, type indexV1_SearchUsersResponses as SearchUsersResponses, type indexV1_UpdateBooking as UpdateBooking, type indexV1_UpdateBookingData as UpdateBookingData, type indexV1_UpdateBookingError as UpdateBookingError, type indexV1_UpdateBookingErrors as UpdateBookingErrors, type indexV1_UpdateBookingResponse as UpdateBookingResponse, type indexV1_UpdateBookingResponses as UpdateBookingResponses, indexV1_addBooking as addBooking, indexV1_client as client, indexV1_createFacilityOfferOrder as createFacilityOfferOrder, indexV1_deleteBooking as deleteBooking, indexV1_findBookingById as findBookingById, indexV1_findBookings as findBookings, indexV1_listFacilityOffers as listFacilityOffers, reactQuery_gen as queries, schemas_gen as schemas, indexV1_searchUsers as searchUsers, indexV1_updateBooking as updateBooking };
4884
+ export { type indexV1_AddBookingData as AddBookingData, type indexV1_AddBookingError as AddBookingError, type indexV1_AddBookingErrors as AddBookingErrors, type indexV1_AddBookingResponse as AddBookingResponse, type indexV1_AddBookingResponses as AddBookingResponses, type indexV1_Booking as Booking, type indexV1_ClientOptions as ClientOptions, type indexV1_CreateBooking as CreateBooking, 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_DeleteBookingData as DeleteBookingData, type indexV1_DeleteBookingError as DeleteBookingError, type indexV1_DeleteBookingErrors as DeleteBookingErrors, type indexV1_DeleteBookingResponse as DeleteBookingResponse, type indexV1_DeleteBookingResponses as DeleteBookingResponses, type indexV1_FacilityIdPath as FacilityIdPath, 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_FacilityPunchCardData as FacilityPunchCardData, type indexV1_FacilityValueCardData as FacilityValueCardData, type indexV1_FindBookingByIdData as FindBookingByIdData, type indexV1_FindBookingByIdError as FindBookingByIdError, type indexV1_FindBookingByIdErrors as FindBookingByIdErrors, type indexV1_FindBookingByIdResponse as FindBookingByIdResponse, type indexV1_FindBookingByIdResponses as FindBookingByIdResponses, type indexV1_FindBookingsData as FindBookingsData, type indexV1_FindBookingsError as FindBookingsError, type indexV1_FindBookingsErrors as FindBookingsErrors, type indexV1_FindBookingsResponse as FindBookingsResponse, type indexV1_FindBookingsResponses as FindBookingsResponses, type indexV1_Guest as Guest, 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_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_Player as Player, type indexV1_RecommendedUsersData as RecommendedUsersData, type indexV1_RecommendedUsersError as RecommendedUsersError, type indexV1_RecommendedUsersErrors as RecommendedUsersErrors, type indexV1_RecommendedUsersResponse as RecommendedUsersResponse, type indexV1_RecommendedUsersResponses as RecommendedUsersResponses, 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_UpdateBooking as UpdateBooking, type indexV1_UpdateBookingData as UpdateBookingData, type indexV1_UpdateBookingError as UpdateBookingError, type indexV1_UpdateBookingErrors as UpdateBookingErrors, type indexV1_UpdateBookingResponse as UpdateBookingResponse, type indexV1_UpdateBookingResponses as UpdateBookingResponses, type indexV1_User as User, indexV1_UserRelation as UserRelation, type indexV1_UsersPaginatedResponse as UsersPaginatedResponse, indexV1_addBooking as addBooking, indexV1_client as client, indexV1_createFacilityOfferOrder as createFacilityOfferOrder, indexV1_deleteBooking as deleteBooking, indexV1_findBookingById as findBookingById, indexV1_findBookings as findBookings, indexV1_listFacilityOffers as listFacilityOffers, reactQuery_gen as queries, indexV1_recommendedUsers as recommendedUsers, schemas_gen as schemas, indexV1_searchUsers as searchUsers, indexV1_updateBooking as updateBooking };
4789
4885
  }
4790
4886
 
4791
4887
  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 };