@matchi/api 0.20250917.1 → 0.20250929.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,6 +3312,40 @@ type Player = {
3311
3312
  email: string;
3312
3313
  id: string;
3313
3314
  };
3315
+ type SearchUser = {
3316
+ firstname: string;
3317
+ lastname: string;
3318
+ profileImageUrl?: string;
3319
+ relationStatus: SearchUserRelation;
3320
+ userId: string;
3321
+ };
3322
+ /**
3323
+ * Returns :
3324
+ * * `FRIENDS` - The user is a friend.
3325
+ * * `OUTGOING` - The user has sent a friend request to the current user.
3326
+ * * `INCOMING` - The user has received a friend request from the current user.
3327
+ * * `NO_RELATION` - The user has no ongoing relation with the current user.
3328
+ *
3329
+ */
3330
+ type SearchUserRelation = 'FRIENDS' | 'OUTGOING' | 'INCOMING' | 'NO_RELATION';
3331
+ /**
3332
+ * Returns :
3333
+ * * `FRIENDS` - The user is a friend.
3334
+ * * `OUTGOING` - The user has sent a friend request to the current user.
3335
+ * * `INCOMING` - The user has received a friend request from the current user.
3336
+ * * `NO_RELATION` - The user has no ongoing relation with the current user.
3337
+ *
3338
+ */
3339
+ declare const SearchUserRelation: {
3340
+ readonly FRIENDS: "FRIENDS";
3341
+ readonly OUTGOING: "OUTGOING";
3342
+ readonly INCOMING: "INCOMING";
3343
+ readonly NO_RELATION: "NO_RELATION";
3344
+ };
3345
+ type SearchUsersListPaginatedResponse = {
3346
+ items: Array<SearchUser>;
3347
+ meta: PkgOpenapiSharedOffsetPaginatedResultSet;
3348
+ };
3314
3349
  type UpdateBooking = {
3315
3350
  booker: string;
3316
3351
  end_time: string;
@@ -3702,6 +3737,55 @@ type CreateFacilityOfferOrderResponses = {
3702
3737
  200: FacilityOfferOrder;
3703
3738
  };
3704
3739
  type CreateFacilityOfferOrderResponse = CreateFacilityOfferOrderResponses[keyof CreateFacilityOfferOrderResponses];
3740
+ type SearchUsersData = {
3741
+ body?: never;
3742
+ path?: never;
3743
+ query?: {
3744
+ /**
3745
+ * The search query
3746
+ */
3747
+ name?: string;
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/search';
3758
+ };
3759
+ type SearchUsersErrors = {
3760
+ /**
3761
+ * The request was malformed or could not be processed.
3762
+ */
3763
+ 400: PkgOpenapiSharedProblemDetails;
3764
+ /**
3765
+ * Access token is not set or invalid.
3766
+ */
3767
+ 401: PkgOpenapiSharedProblemDetails;
3768
+ /**
3769
+ * The requestor is not authorized to perform this operation on the resource.
3770
+ */
3771
+ 403: PkgOpenapiSharedProblemDetails;
3772
+ /**
3773
+ * The server encountered an unexpected error
3774
+ */
3775
+ 500: PkgOpenapiSharedProblemDetails;
3776
+ /**
3777
+ * The requested operation is not implemented.
3778
+ */
3779
+ 501: PkgOpenapiSharedProblemDetails;
3780
+ };
3781
+ type SearchUsersError = SearchUsersErrors[keyof SearchUsersErrors];
3782
+ type SearchUsersResponses = {
3783
+ /**
3784
+ * OK
3785
+ */
3786
+ 200: SearchUsersListPaginatedResponse;
3787
+ };
3788
+ type SearchUsersResponse = SearchUsersResponses[keyof SearchUsersResponses];
3705
3789
  type ClientOptions = {
3706
3790
  baseUrl: 'https://api.matchi.com/v1' | (string & {});
3707
3791
  };
@@ -4112,6 +4196,48 @@ declare const PlayerSchema: {
4112
4196
  readonly required: readonly ["id", "email"];
4113
4197
  readonly type: "object";
4114
4198
  };
4199
+ declare const SearchUserSchema: {
4200
+ readonly properties: {
4201
+ readonly firstname: {
4202
+ readonly type: "string";
4203
+ };
4204
+ readonly lastname: {
4205
+ readonly type: "string";
4206
+ };
4207
+ readonly profileImageUrl: {
4208
+ readonly type: "string";
4209
+ };
4210
+ readonly relationStatus: {
4211
+ readonly $ref: "#/components/schemas/SearchUserRelation";
4212
+ };
4213
+ readonly userId: {
4214
+ readonly format: "uuid";
4215
+ readonly type: "string";
4216
+ };
4217
+ };
4218
+ readonly required: readonly ["userId", "firstname", "lastname", "relationStatus"];
4219
+ readonly type: "object";
4220
+ };
4221
+ declare const SearchUserRelationSchema: {
4222
+ 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";
4223
+ readonly enum: readonly ["FRIENDS", "OUTGOING", "INCOMING", "NO_RELATION"];
4224
+ readonly type: "string";
4225
+ };
4226
+ declare const SearchUsersListPaginatedResponseSchema: {
4227
+ readonly properties: {
4228
+ readonly items: {
4229
+ readonly items: {
4230
+ readonly $ref: "#/components/schemas/SearchUser";
4231
+ };
4232
+ readonly type: "array";
4233
+ };
4234
+ readonly meta: {
4235
+ readonly $ref: "#/components/schemas/pkgOpenapiSharedOffsetPaginatedResultSet";
4236
+ };
4237
+ };
4238
+ readonly required: readonly ["items", "meta"];
4239
+ readonly type: "object";
4240
+ };
4115
4241
  declare const UpdateBookingSchema: {
4116
4242
  readonly properties: {
4117
4243
  readonly booker: {
@@ -4259,6 +4385,9 @@ declare const schemas_gen_FacilityPunchCardDataSchema: typeof FacilityPunchCardD
4259
4385
  declare const schemas_gen_FacilityValueCardDataSchema: typeof FacilityValueCardDataSchema;
4260
4386
  declare const schemas_gen_GuestSchema: typeof GuestSchema;
4261
4387
  declare const schemas_gen_PlayerSchema: typeof PlayerSchema;
4388
+ declare const schemas_gen_SearchUserRelationSchema: typeof SearchUserRelationSchema;
4389
+ declare const schemas_gen_SearchUserSchema: typeof SearchUserSchema;
4390
+ declare const schemas_gen_SearchUsersListPaginatedResponseSchema: typeof SearchUsersListPaginatedResponseSchema;
4262
4391
  declare const schemas_gen_UpdateBookingSchema: typeof UpdateBookingSchema;
4263
4392
  declare const schemas_gen_pkgOpenapiSharedCursorPaginatedResultSetSchema: typeof pkgOpenapiSharedCursorPaginatedResultSetSchema;
4264
4393
  declare const schemas_gen_pkgOpenapiSharedErrorSchema: typeof pkgOpenapiSharedErrorSchema;
@@ -4266,7 +4395,7 @@ declare const schemas_gen_pkgOpenapiSharedErrorsSchema: typeof pkgOpenapiSharedE
4266
4395
  declare const schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema: typeof pkgOpenapiSharedOffsetPaginatedResultSetSchema;
4267
4396
  declare const schemas_gen_pkgOpenapiSharedProblemDetailsSchema: typeof pkgOpenapiSharedProblemDetailsSchema;
4268
4397
  declare namespace schemas_gen {
4269
- 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_pkgOpenapiSharedCursorPaginatedResultSetSchema as pkgOpenapiSharedCursorPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedErrorSchema as pkgOpenapiSharedErrorSchema, schemas_gen_pkgOpenapiSharedErrorsSchema as pkgOpenapiSharedErrorsSchema, schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema as pkgOpenapiSharedOffsetPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedProblemDetailsSchema as pkgOpenapiSharedProblemDetailsSchema };
4398
+ 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 };
4270
4399
  }
4271
4400
 
4272
4401
  type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
@@ -4320,6 +4449,11 @@ declare const listFacilityOffers: <ThrowOnError extends boolean = false>(options
4320
4449
  * Will create a facility offer order and return the order object
4321
4450
  */
4322
4451
  declare const createFacilityOfferOrder: <ThrowOnError extends boolean = false>(options: Options<CreateFacilityOfferOrderData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<FacilityOfferOrder, PkgOpenapiSharedProblemDetails, ThrowOnError>;
4452
+ /**
4453
+ * Search for users by name
4454
+ * Search for users by name
4455
+ */
4456
+ declare const searchUsers: <ThrowOnError extends boolean = false>(options?: Options<SearchUsersData, ThrowOnError> | undefined) => _hey_api_client_fetch.RequestResult<SearchUsersListPaginatedResponse, PkgOpenapiSharedProblemDetails, ThrowOnError>;
4323
4457
 
4324
4458
  type QueryKey<TOptions extends Options> = [
4325
4459
  Pick<TOptions, 'baseUrl' | 'body' | 'headers' | 'path' | 'query'> & {
@@ -4502,6 +4636,45 @@ declare const createFacilityOfferOrderOptions: (options: Options<CreateFacilityO
4502
4636
  };
4503
4637
  };
4504
4638
  declare const createFacilityOfferOrderMutation: (options?: Partial<Options<CreateFacilityOfferOrderData>>) => UseMutationOptions<FacilityOfferOrder, PkgOpenapiSharedProblemDetails, Options<CreateFacilityOfferOrderData>, unknown>;
4639
+ declare const searchUsersQueryKey: (options?: Options<SearchUsersData>) => [Pick<Options<SearchUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
4640
+ _id: string;
4641
+ _infinite?: boolean | undefined;
4642
+ }];
4643
+ 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"> & {
4644
+ _id: string;
4645
+ _infinite?: boolean | undefined;
4646
+ }]>, "queryFn"> & {
4647
+ queryFn?: _tanstack_query_core_build_legacy_hydration_ClXcjjG9.K<SearchUsersListPaginatedResponse, [Pick<Options<SearchUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
4648
+ _id: string;
4649
+ _infinite?: boolean | undefined;
4650
+ }], never> | undefined;
4651
+ } & {
4652
+ queryKey: [Pick<Options<SearchUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
4653
+ _id: string;
4654
+ _infinite?: boolean | undefined;
4655
+ }] & {
4656
+ [dataTagSymbol]: SearchUsersListPaginatedResponse;
4657
+ [dataTagErrorSymbol]: Error;
4658
+ };
4659
+ };
4660
+ declare const searchUsersInfiniteQueryKey: (options?: Options<SearchUsersData>) => QueryKey<Options<SearchUsersData>>;
4661
+ 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"> & {
4662
+ _id: string;
4663
+ _infinite?: boolean | undefined;
4664
+ }, "body" | "headers" | "path" | "query">> & {
4665
+ initialData: InfiniteData<SearchUsersListPaginatedResponse, number | Pick<Pick<Options<SearchUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
4666
+ _id: string;
4667
+ _infinite?: boolean | undefined;
4668
+ }, "body" | "headers" | "path" | "query">> | (() => InfiniteData<SearchUsersListPaginatedResponse, number | Pick<Pick<Options<SearchUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
4669
+ _id: string;
4670
+ _infinite?: boolean | undefined;
4671
+ }, "body" | "headers" | "path" | "query">>) | undefined;
4672
+ } & {
4673
+ queryKey: QueryKey<Options<SearchUsersData>> & {
4674
+ [dataTagSymbol]: InfiniteData<SearchUsersListPaginatedResponse, unknown>;
4675
+ [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
4676
+ };
4677
+ };
4505
4678
 
4506
4679
  type reactQuery_gen_QueryKey<TOptions extends Options> = QueryKey<TOptions>;
4507
4680
  declare const reactQuery_gen_addBookingMutation: typeof addBookingMutation;
@@ -4521,9 +4694,13 @@ declare const reactQuery_gen_listFacilityOffersInfiniteOptions: typeof listFacil
4521
4694
  declare const reactQuery_gen_listFacilityOffersInfiniteQueryKey: typeof listFacilityOffersInfiniteQueryKey;
4522
4695
  declare const reactQuery_gen_listFacilityOffersOptions: typeof listFacilityOffersOptions;
4523
4696
  declare const reactQuery_gen_listFacilityOffersQueryKey: typeof listFacilityOffersQueryKey;
4697
+ declare const reactQuery_gen_searchUsersInfiniteOptions: typeof searchUsersInfiniteOptions;
4698
+ declare const reactQuery_gen_searchUsersInfiniteQueryKey: typeof searchUsersInfiniteQueryKey;
4699
+ declare const reactQuery_gen_searchUsersOptions: typeof searchUsersOptions;
4700
+ declare const reactQuery_gen_searchUsersQueryKey: typeof searchUsersQueryKey;
4524
4701
  declare const reactQuery_gen_updateBookingMutation: typeof updateBookingMutation;
4525
4702
  declare namespace reactQuery_gen {
4526
- 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_updateBookingMutation as updateBookingMutation };
4703
+ 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 };
4527
4704
  }
4528
4705
 
4529
4706
  type indexV1_AddBookingData = AddBookingData;
@@ -4585,6 +4762,14 @@ type indexV1_PkgOpenapiSharedOffsetPaginatedResultSet = PkgOpenapiSharedOffsetPa
4585
4762
  type indexV1_PkgOpenapiSharedOffsetParam = PkgOpenapiSharedOffsetParam;
4586
4763
  type indexV1_PkgOpenapiSharedProblemDetails = PkgOpenapiSharedProblemDetails;
4587
4764
  type indexV1_Player = Player;
4765
+ type indexV1_SearchUser = SearchUser;
4766
+ declare const indexV1_SearchUserRelation: typeof SearchUserRelation;
4767
+ type indexV1_SearchUsersData = SearchUsersData;
4768
+ type indexV1_SearchUsersError = SearchUsersError;
4769
+ type indexV1_SearchUsersErrors = SearchUsersErrors;
4770
+ type indexV1_SearchUsersListPaginatedResponse = SearchUsersListPaginatedResponse;
4771
+ type indexV1_SearchUsersResponse = SearchUsersResponse;
4772
+ type indexV1_SearchUsersResponses = SearchUsersResponses;
4588
4773
  type indexV1_UpdateBooking = UpdateBooking;
4589
4774
  type indexV1_UpdateBookingData = UpdateBookingData;
4590
4775
  type indexV1_UpdateBookingError = UpdateBookingError;
@@ -4598,9 +4783,10 @@ declare const indexV1_deleteBooking: typeof deleteBooking;
4598
4783
  declare const indexV1_findBookingById: typeof findBookingById;
4599
4784
  declare const indexV1_findBookings: typeof findBookings;
4600
4785
  declare const indexV1_listFacilityOffers: typeof listFacilityOffers;
4786
+ declare const indexV1_searchUsers: typeof searchUsers;
4601
4787
  declare const indexV1_updateBooking: typeof updateBooking;
4602
4788
  declare namespace indexV1 {
4603
- 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_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_updateBooking as updateBooking };
4789
+ 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 };
4604
4790
  }
4605
4791
 
4606
4792
  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 };
@@ -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,6 +3312,40 @@ type Player = {
3311
3312
  email: string;
3312
3313
  id: string;
3313
3314
  };
3315
+ type SearchUser = {
3316
+ firstname: string;
3317
+ lastname: string;
3318
+ profileImageUrl?: string;
3319
+ relationStatus: SearchUserRelation;
3320
+ userId: string;
3321
+ };
3322
+ /**
3323
+ * Returns :
3324
+ * * `FRIENDS` - The user is a friend.
3325
+ * * `OUTGOING` - The user has sent a friend request to the current user.
3326
+ * * `INCOMING` - The user has received a friend request from the current user.
3327
+ * * `NO_RELATION` - The user has no ongoing relation with the current user.
3328
+ *
3329
+ */
3330
+ type SearchUserRelation = 'FRIENDS' | 'OUTGOING' | 'INCOMING' | 'NO_RELATION';
3331
+ /**
3332
+ * Returns :
3333
+ * * `FRIENDS` - The user is a friend.
3334
+ * * `OUTGOING` - The user has sent a friend request to the current user.
3335
+ * * `INCOMING` - The user has received a friend request from the current user.
3336
+ * * `NO_RELATION` - The user has no ongoing relation with the current user.
3337
+ *
3338
+ */
3339
+ declare const SearchUserRelation: {
3340
+ readonly FRIENDS: "FRIENDS";
3341
+ readonly OUTGOING: "OUTGOING";
3342
+ readonly INCOMING: "INCOMING";
3343
+ readonly NO_RELATION: "NO_RELATION";
3344
+ };
3345
+ type SearchUsersListPaginatedResponse = {
3346
+ items: Array<SearchUser>;
3347
+ meta: PkgOpenapiSharedOffsetPaginatedResultSet;
3348
+ };
3314
3349
  type UpdateBooking = {
3315
3350
  booker: string;
3316
3351
  end_time: string;
@@ -3702,6 +3737,55 @@ type CreateFacilityOfferOrderResponses = {
3702
3737
  200: FacilityOfferOrder;
3703
3738
  };
3704
3739
  type CreateFacilityOfferOrderResponse = CreateFacilityOfferOrderResponses[keyof CreateFacilityOfferOrderResponses];
3740
+ type SearchUsersData = {
3741
+ body?: never;
3742
+ path?: never;
3743
+ query?: {
3744
+ /**
3745
+ * The search query
3746
+ */
3747
+ name?: string;
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/search';
3758
+ };
3759
+ type SearchUsersErrors = {
3760
+ /**
3761
+ * The request was malformed or could not be processed.
3762
+ */
3763
+ 400: PkgOpenapiSharedProblemDetails;
3764
+ /**
3765
+ * Access token is not set or invalid.
3766
+ */
3767
+ 401: PkgOpenapiSharedProblemDetails;
3768
+ /**
3769
+ * The requestor is not authorized to perform this operation on the resource.
3770
+ */
3771
+ 403: PkgOpenapiSharedProblemDetails;
3772
+ /**
3773
+ * The server encountered an unexpected error
3774
+ */
3775
+ 500: PkgOpenapiSharedProblemDetails;
3776
+ /**
3777
+ * The requested operation is not implemented.
3778
+ */
3779
+ 501: PkgOpenapiSharedProblemDetails;
3780
+ };
3781
+ type SearchUsersError = SearchUsersErrors[keyof SearchUsersErrors];
3782
+ type SearchUsersResponses = {
3783
+ /**
3784
+ * OK
3785
+ */
3786
+ 200: SearchUsersListPaginatedResponse;
3787
+ };
3788
+ type SearchUsersResponse = SearchUsersResponses[keyof SearchUsersResponses];
3705
3789
  type ClientOptions = {
3706
3790
  baseUrl: 'https://api.matchi.com/v1' | (string & {});
3707
3791
  };
@@ -4112,6 +4196,48 @@ declare const PlayerSchema: {
4112
4196
  readonly required: readonly ["id", "email"];
4113
4197
  readonly type: "object";
4114
4198
  };
4199
+ declare const SearchUserSchema: {
4200
+ readonly properties: {
4201
+ readonly firstname: {
4202
+ readonly type: "string";
4203
+ };
4204
+ readonly lastname: {
4205
+ readonly type: "string";
4206
+ };
4207
+ readonly profileImageUrl: {
4208
+ readonly type: "string";
4209
+ };
4210
+ readonly relationStatus: {
4211
+ readonly $ref: "#/components/schemas/SearchUserRelation";
4212
+ };
4213
+ readonly userId: {
4214
+ readonly format: "uuid";
4215
+ readonly type: "string";
4216
+ };
4217
+ };
4218
+ readonly required: readonly ["userId", "firstname", "lastname", "relationStatus"];
4219
+ readonly type: "object";
4220
+ };
4221
+ declare const SearchUserRelationSchema: {
4222
+ 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";
4223
+ readonly enum: readonly ["FRIENDS", "OUTGOING", "INCOMING", "NO_RELATION"];
4224
+ readonly type: "string";
4225
+ };
4226
+ declare const SearchUsersListPaginatedResponseSchema: {
4227
+ readonly properties: {
4228
+ readonly items: {
4229
+ readonly items: {
4230
+ readonly $ref: "#/components/schemas/SearchUser";
4231
+ };
4232
+ readonly type: "array";
4233
+ };
4234
+ readonly meta: {
4235
+ readonly $ref: "#/components/schemas/pkgOpenapiSharedOffsetPaginatedResultSet";
4236
+ };
4237
+ };
4238
+ readonly required: readonly ["items", "meta"];
4239
+ readonly type: "object";
4240
+ };
4115
4241
  declare const UpdateBookingSchema: {
4116
4242
  readonly properties: {
4117
4243
  readonly booker: {
@@ -4259,6 +4385,9 @@ declare const schemas_gen_FacilityPunchCardDataSchema: typeof FacilityPunchCardD
4259
4385
  declare const schemas_gen_FacilityValueCardDataSchema: typeof FacilityValueCardDataSchema;
4260
4386
  declare const schemas_gen_GuestSchema: typeof GuestSchema;
4261
4387
  declare const schemas_gen_PlayerSchema: typeof PlayerSchema;
4388
+ declare const schemas_gen_SearchUserRelationSchema: typeof SearchUserRelationSchema;
4389
+ declare const schemas_gen_SearchUserSchema: typeof SearchUserSchema;
4390
+ declare const schemas_gen_SearchUsersListPaginatedResponseSchema: typeof SearchUsersListPaginatedResponseSchema;
4262
4391
  declare const schemas_gen_UpdateBookingSchema: typeof UpdateBookingSchema;
4263
4392
  declare const schemas_gen_pkgOpenapiSharedCursorPaginatedResultSetSchema: typeof pkgOpenapiSharedCursorPaginatedResultSetSchema;
4264
4393
  declare const schemas_gen_pkgOpenapiSharedErrorSchema: typeof pkgOpenapiSharedErrorSchema;
@@ -4266,7 +4395,7 @@ declare const schemas_gen_pkgOpenapiSharedErrorsSchema: typeof pkgOpenapiSharedE
4266
4395
  declare const schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema: typeof pkgOpenapiSharedOffsetPaginatedResultSetSchema;
4267
4396
  declare const schemas_gen_pkgOpenapiSharedProblemDetailsSchema: typeof pkgOpenapiSharedProblemDetailsSchema;
4268
4397
  declare namespace schemas_gen {
4269
- 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_pkgOpenapiSharedCursorPaginatedResultSetSchema as pkgOpenapiSharedCursorPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedErrorSchema as pkgOpenapiSharedErrorSchema, schemas_gen_pkgOpenapiSharedErrorsSchema as pkgOpenapiSharedErrorsSchema, schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema as pkgOpenapiSharedOffsetPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedProblemDetailsSchema as pkgOpenapiSharedProblemDetailsSchema };
4398
+ 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 };
4270
4399
  }
4271
4400
 
4272
4401
  type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
@@ -4320,6 +4449,11 @@ declare const listFacilityOffers: <ThrowOnError extends boolean = false>(options
4320
4449
  * Will create a facility offer order and return the order object
4321
4450
  */
4322
4451
  declare const createFacilityOfferOrder: <ThrowOnError extends boolean = false>(options: Options<CreateFacilityOfferOrderData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<FacilityOfferOrder, PkgOpenapiSharedProblemDetails, ThrowOnError>;
4452
+ /**
4453
+ * Search for users by name
4454
+ * Search for users by name
4455
+ */
4456
+ declare const searchUsers: <ThrowOnError extends boolean = false>(options?: Options<SearchUsersData, ThrowOnError> | undefined) => _hey_api_client_fetch.RequestResult<SearchUsersListPaginatedResponse, PkgOpenapiSharedProblemDetails, ThrowOnError>;
4323
4457
 
4324
4458
  type QueryKey<TOptions extends Options> = [
4325
4459
  Pick<TOptions, 'baseUrl' | 'body' | 'headers' | 'path' | 'query'> & {
@@ -4502,6 +4636,45 @@ declare const createFacilityOfferOrderOptions: (options: Options<CreateFacilityO
4502
4636
  };
4503
4637
  };
4504
4638
  declare const createFacilityOfferOrderMutation: (options?: Partial<Options<CreateFacilityOfferOrderData>>) => UseMutationOptions<FacilityOfferOrder, PkgOpenapiSharedProblemDetails, Options<CreateFacilityOfferOrderData>, unknown>;
4639
+ declare const searchUsersQueryKey: (options?: Options<SearchUsersData>) => [Pick<Options<SearchUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
4640
+ _id: string;
4641
+ _infinite?: boolean | undefined;
4642
+ }];
4643
+ 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"> & {
4644
+ _id: string;
4645
+ _infinite?: boolean | undefined;
4646
+ }]>, "queryFn"> & {
4647
+ queryFn?: _tanstack_query_core_build_legacy_hydration_ClXcjjG9.K<SearchUsersListPaginatedResponse, [Pick<Options<SearchUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
4648
+ _id: string;
4649
+ _infinite?: boolean | undefined;
4650
+ }], never> | undefined;
4651
+ } & {
4652
+ queryKey: [Pick<Options<SearchUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
4653
+ _id: string;
4654
+ _infinite?: boolean | undefined;
4655
+ }] & {
4656
+ [dataTagSymbol]: SearchUsersListPaginatedResponse;
4657
+ [dataTagErrorSymbol]: Error;
4658
+ };
4659
+ };
4660
+ declare const searchUsersInfiniteQueryKey: (options?: Options<SearchUsersData>) => QueryKey<Options<SearchUsersData>>;
4661
+ 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"> & {
4662
+ _id: string;
4663
+ _infinite?: boolean | undefined;
4664
+ }, "body" | "headers" | "path" | "query">> & {
4665
+ initialData: InfiniteData<SearchUsersListPaginatedResponse, number | Pick<Pick<Options<SearchUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
4666
+ _id: string;
4667
+ _infinite?: boolean | undefined;
4668
+ }, "body" | "headers" | "path" | "query">> | (() => InfiniteData<SearchUsersListPaginatedResponse, number | Pick<Pick<Options<SearchUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
4669
+ _id: string;
4670
+ _infinite?: boolean | undefined;
4671
+ }, "body" | "headers" | "path" | "query">>) | undefined;
4672
+ } & {
4673
+ queryKey: QueryKey<Options<SearchUsersData>> & {
4674
+ [dataTagSymbol]: InfiniteData<SearchUsersListPaginatedResponse, unknown>;
4675
+ [dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
4676
+ };
4677
+ };
4505
4678
 
4506
4679
  type reactQuery_gen_QueryKey<TOptions extends Options> = QueryKey<TOptions>;
4507
4680
  declare const reactQuery_gen_addBookingMutation: typeof addBookingMutation;
@@ -4521,9 +4694,13 @@ declare const reactQuery_gen_listFacilityOffersInfiniteOptions: typeof listFacil
4521
4694
  declare const reactQuery_gen_listFacilityOffersInfiniteQueryKey: typeof listFacilityOffersInfiniteQueryKey;
4522
4695
  declare const reactQuery_gen_listFacilityOffersOptions: typeof listFacilityOffersOptions;
4523
4696
  declare const reactQuery_gen_listFacilityOffersQueryKey: typeof listFacilityOffersQueryKey;
4697
+ declare const reactQuery_gen_searchUsersInfiniteOptions: typeof searchUsersInfiniteOptions;
4698
+ declare const reactQuery_gen_searchUsersInfiniteQueryKey: typeof searchUsersInfiniteQueryKey;
4699
+ declare const reactQuery_gen_searchUsersOptions: typeof searchUsersOptions;
4700
+ declare const reactQuery_gen_searchUsersQueryKey: typeof searchUsersQueryKey;
4524
4701
  declare const reactQuery_gen_updateBookingMutation: typeof updateBookingMutation;
4525
4702
  declare namespace reactQuery_gen {
4526
- 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_updateBookingMutation as updateBookingMutation };
4703
+ 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 };
4527
4704
  }
4528
4705
 
4529
4706
  type indexV1_AddBookingData = AddBookingData;
@@ -4585,6 +4762,14 @@ type indexV1_PkgOpenapiSharedOffsetPaginatedResultSet = PkgOpenapiSharedOffsetPa
4585
4762
  type indexV1_PkgOpenapiSharedOffsetParam = PkgOpenapiSharedOffsetParam;
4586
4763
  type indexV1_PkgOpenapiSharedProblemDetails = PkgOpenapiSharedProblemDetails;
4587
4764
  type indexV1_Player = Player;
4765
+ type indexV1_SearchUser = SearchUser;
4766
+ declare const indexV1_SearchUserRelation: typeof SearchUserRelation;
4767
+ type indexV1_SearchUsersData = SearchUsersData;
4768
+ type indexV1_SearchUsersError = SearchUsersError;
4769
+ type indexV1_SearchUsersErrors = SearchUsersErrors;
4770
+ type indexV1_SearchUsersListPaginatedResponse = SearchUsersListPaginatedResponse;
4771
+ type indexV1_SearchUsersResponse = SearchUsersResponse;
4772
+ type indexV1_SearchUsersResponses = SearchUsersResponses;
4588
4773
  type indexV1_UpdateBooking = UpdateBooking;
4589
4774
  type indexV1_UpdateBookingData = UpdateBookingData;
4590
4775
  type indexV1_UpdateBookingError = UpdateBookingError;
@@ -4598,9 +4783,10 @@ declare const indexV1_deleteBooking: typeof deleteBooking;
4598
4783
  declare const indexV1_findBookingById: typeof findBookingById;
4599
4784
  declare const indexV1_findBookings: typeof findBookings;
4600
4785
  declare const indexV1_listFacilityOffers: typeof listFacilityOffers;
4786
+ declare const indexV1_searchUsers: typeof searchUsers;
4601
4787
  declare const indexV1_updateBooking: typeof updateBooking;
4602
4788
  declare namespace indexV1 {
4603
- 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_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_updateBooking as updateBooking };
4789
+ 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 };
4604
4790
  }
4605
4791
 
4606
4792
  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 };