@matchi/api 0.20250929.1 → 0.20251119.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.
- package/dist/main/index.d.mts +182 -87
- package/dist/main/index.d.ts +182 -87
- package/dist/main/index.js +1 -1
- package/dist/main/index.mjs +1 -1
- package/package.json +1 -1
package/dist/main/index.d.mts
CHANGED
|
@@ -3312,12 +3312,23 @@ type Player = {
|
|
|
3312
3312
|
email: string;
|
|
3313
3313
|
id: string;
|
|
3314
3314
|
};
|
|
3315
|
-
type
|
|
3316
|
-
|
|
3317
|
-
|
|
3318
|
-
|
|
3319
|
-
|
|
3320
|
-
|
|
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;
|
|
3321
3332
|
};
|
|
3322
3333
|
/**
|
|
3323
3334
|
* Returns :
|
|
@@ -3327,7 +3338,7 @@ type SearchUser = {
|
|
|
3327
3338
|
* * `NO_RELATION` - The user has no ongoing relation with the current user.
|
|
3328
3339
|
*
|
|
3329
3340
|
*/
|
|
3330
|
-
type
|
|
3341
|
+
type UserRelation = 'FRIENDS' | 'OUTGOING' | 'INCOMING' | 'NO_RELATION';
|
|
3331
3342
|
/**
|
|
3332
3343
|
* Returns :
|
|
3333
3344
|
* * `FRIENDS` - The user is a friend.
|
|
@@ -3336,27 +3347,16 @@ type SearchUserRelation = 'FRIENDS' | 'OUTGOING' | 'INCOMING' | 'NO_RELATION';
|
|
|
3336
3347
|
* * `NO_RELATION` - The user has no ongoing relation with the current user.
|
|
3337
3348
|
*
|
|
3338
3349
|
*/
|
|
3339
|
-
declare const
|
|
3350
|
+
declare const UserRelation: {
|
|
3340
3351
|
readonly FRIENDS: "FRIENDS";
|
|
3341
3352
|
readonly OUTGOING: "OUTGOING";
|
|
3342
3353
|
readonly INCOMING: "INCOMING";
|
|
3343
3354
|
readonly NO_RELATION: "NO_RELATION";
|
|
3344
3355
|
};
|
|
3345
|
-
type
|
|
3346
|
-
items: Array<
|
|
3356
|
+
type UsersPaginatedResponse = {
|
|
3357
|
+
items: Array<User>;
|
|
3347
3358
|
meta: PkgOpenapiSharedOffsetPaginatedResultSet;
|
|
3348
3359
|
};
|
|
3349
|
-
type UpdateBooking = {
|
|
3350
|
-
booker: string;
|
|
3351
|
-
end_time: string;
|
|
3352
|
-
location: string;
|
|
3353
|
-
participants: {
|
|
3354
|
-
guests?: Array<Guest>;
|
|
3355
|
-
players?: Array<Player>;
|
|
3356
|
-
};
|
|
3357
|
-
payment_reference: string;
|
|
3358
|
-
start_time: string;
|
|
3359
|
-
};
|
|
3360
3360
|
/**
|
|
3361
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.
|
|
3362
3362
|
*
|
|
@@ -3737,14 +3737,55 @@ type CreateFacilityOfferOrderResponses = {
|
|
|
3737
3737
|
200: FacilityOfferOrder;
|
|
3738
3738
|
};
|
|
3739
3739
|
type CreateFacilityOfferOrderResponse = CreateFacilityOfferOrderResponses[keyof CreateFacilityOfferOrderResponses];
|
|
3740
|
-
type
|
|
3740
|
+
type RecommendedUsersData = {
|
|
3741
3741
|
body?: never;
|
|
3742
3742
|
path?: never;
|
|
3743
3743
|
query?: {
|
|
3744
3744
|
/**
|
|
3745
|
-
*
|
|
3745
|
+
* Include friends in the recommended users list
|
|
3746
3746
|
*/
|
|
3747
|
-
|
|
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, must be at least 3 characters long
|
|
3787
|
+
*/
|
|
3788
|
+
name: string;
|
|
3748
3789
|
/**
|
|
3749
3790
|
* Number of items to skip before returning the results.
|
|
3750
3791
|
*/
|
|
@@ -3783,7 +3824,7 @@ type SearchUsersResponses = {
|
|
|
3783
3824
|
/**
|
|
3784
3825
|
* OK
|
|
3785
3826
|
*/
|
|
3786
|
-
200:
|
|
3827
|
+
200: UsersPaginatedResponse;
|
|
3787
3828
|
};
|
|
3788
3829
|
type SearchUsersResponse = SearchUsersResponses[keyof SearchUsersResponses];
|
|
3789
3830
|
type ClientOptions = {
|
|
@@ -4196,48 +4237,6 @@ declare const PlayerSchema: {
|
|
|
4196
4237
|
readonly required: readonly ["id", "email"];
|
|
4197
4238
|
readonly type: "object";
|
|
4198
4239
|
};
|
|
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
|
-
};
|
|
4241
4240
|
declare const UpdateBookingSchema: {
|
|
4242
4241
|
readonly properties: {
|
|
4243
4242
|
readonly booker: {
|
|
@@ -4279,6 +4278,48 @@ declare const UpdateBookingSchema: {
|
|
|
4279
4278
|
readonly required: readonly ["booker", "location", "start_time", "end_time", "participants", "payment_reference"];
|
|
4280
4279
|
readonly type: "object";
|
|
4281
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
|
+
};
|
|
4282
4323
|
declare const pkgOpenapiSharedCursorPaginatedResultSetSchema: {
|
|
4283
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";
|
|
4284
4325
|
readonly properties: {
|
|
@@ -4385,17 +4426,17 @@ declare const schemas_gen_FacilityPunchCardDataSchema: typeof FacilityPunchCardD
|
|
|
4385
4426
|
declare const schemas_gen_FacilityValueCardDataSchema: typeof FacilityValueCardDataSchema;
|
|
4386
4427
|
declare const schemas_gen_GuestSchema: typeof GuestSchema;
|
|
4387
4428
|
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;
|
|
4391
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;
|
|
4392
4433
|
declare const schemas_gen_pkgOpenapiSharedCursorPaginatedResultSetSchema: typeof pkgOpenapiSharedCursorPaginatedResultSetSchema;
|
|
4393
4434
|
declare const schemas_gen_pkgOpenapiSharedErrorSchema: typeof pkgOpenapiSharedErrorSchema;
|
|
4394
4435
|
declare const schemas_gen_pkgOpenapiSharedErrorsSchema: typeof pkgOpenapiSharedErrorsSchema;
|
|
4395
4436
|
declare const schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema: typeof pkgOpenapiSharedOffsetPaginatedResultSetSchema;
|
|
4396
4437
|
declare const schemas_gen_pkgOpenapiSharedProblemDetailsSchema: typeof pkgOpenapiSharedProblemDetailsSchema;
|
|
4397
4438
|
declare namespace schemas_gen {
|
|
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,
|
|
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 };
|
|
4399
4440
|
}
|
|
4400
4441
|
|
|
4401
4442
|
type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
|
|
@@ -4449,11 +4490,16 @@ declare const listFacilityOffers: <ThrowOnError extends boolean = false>(options
|
|
|
4449
4490
|
* Will create a facility offer order and return the order object
|
|
4450
4491
|
*/
|
|
4451
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>;
|
|
4452
4498
|
/**
|
|
4453
4499
|
* Search for users by name
|
|
4454
|
-
*
|
|
4500
|
+
* Get a list of users based on the current user's search query
|
|
4455
4501
|
*/
|
|
4456
|
-
declare const searchUsers: <ThrowOnError extends boolean = false>(options
|
|
4502
|
+
declare const searchUsers: <ThrowOnError extends boolean = false>(options: Options<SearchUsersData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<UsersPaginatedResponse, PkgOpenapiSharedProblemDetails, ThrowOnError>;
|
|
4457
4503
|
|
|
4458
4504
|
type QueryKey<TOptions extends Options> = [
|
|
4459
4505
|
Pick<TOptions, 'baseUrl' | 'body' | 'headers' | 'path' | 'query'> & {
|
|
@@ -4636,15 +4682,54 @@ declare const createFacilityOfferOrderOptions: (options: Options<CreateFacilityO
|
|
|
4636
4682
|
};
|
|
4637
4683
|
};
|
|
4638
4684
|
declare const createFacilityOfferOrderMutation: (options?: Partial<Options<CreateFacilityOfferOrderData>>) => UseMutationOptions<FacilityOfferOrder, PkgOpenapiSharedProblemDetails, Options<CreateFacilityOfferOrderData>, unknown>;
|
|
4639
|
-
declare const
|
|
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"> & {
|
|
4640
4725
|
_id: string;
|
|
4641
4726
|
_infinite?: boolean | undefined;
|
|
4642
4727
|
}];
|
|
4643
|
-
declare const searchUsersOptions: (options
|
|
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"> & {
|
|
4644
4729
|
_id: string;
|
|
4645
4730
|
_infinite?: boolean | undefined;
|
|
4646
4731
|
}]>, "queryFn"> & {
|
|
4647
|
-
queryFn?: _tanstack_query_core_build_legacy_hydration_ClXcjjG9.K<
|
|
4732
|
+
queryFn?: _tanstack_query_core_build_legacy_hydration_ClXcjjG9.K<UsersPaginatedResponse, [Pick<Options<SearchUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
|
|
4648
4733
|
_id: string;
|
|
4649
4734
|
_infinite?: boolean | undefined;
|
|
4650
4735
|
}], never> | undefined;
|
|
@@ -4653,25 +4738,25 @@ declare const searchUsersOptions: (options?: Options<SearchUsersData>) => _tanst
|
|
|
4653
4738
|
_id: string;
|
|
4654
4739
|
_infinite?: boolean | undefined;
|
|
4655
4740
|
}] & {
|
|
4656
|
-
[dataTagSymbol]:
|
|
4741
|
+
[dataTagSymbol]: UsersPaginatedResponse;
|
|
4657
4742
|
[dataTagErrorSymbol]: Error;
|
|
4658
4743
|
};
|
|
4659
4744
|
};
|
|
4660
|
-
declare const searchUsersInfiniteQueryKey: (options
|
|
4661
|
-
declare const searchUsersInfiniteOptions: (options
|
|
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"> & {
|
|
4662
4747
|
_id: string;
|
|
4663
4748
|
_infinite?: boolean | undefined;
|
|
4664
4749
|
}, "body" | "headers" | "path" | "query">> & {
|
|
4665
|
-
initialData: InfiniteData<
|
|
4750
|
+
initialData: InfiniteData<UsersPaginatedResponse, number | Pick<Pick<Options<SearchUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
|
|
4666
4751
|
_id: string;
|
|
4667
4752
|
_infinite?: boolean | undefined;
|
|
4668
|
-
}, "body" | "headers" | "path" | "query">> | (() => InfiniteData<
|
|
4753
|
+
}, "body" | "headers" | "path" | "query">> | (() => InfiniteData<UsersPaginatedResponse, number | Pick<Pick<Options<SearchUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
|
|
4669
4754
|
_id: string;
|
|
4670
4755
|
_infinite?: boolean | undefined;
|
|
4671
4756
|
}, "body" | "headers" | "path" | "query">>) | undefined;
|
|
4672
4757
|
} & {
|
|
4673
4758
|
queryKey: QueryKey<Options<SearchUsersData>> & {
|
|
4674
|
-
[dataTagSymbol]: InfiniteData<
|
|
4759
|
+
[dataTagSymbol]: InfiniteData<UsersPaginatedResponse, unknown>;
|
|
4675
4760
|
[dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
|
|
4676
4761
|
};
|
|
4677
4762
|
};
|
|
@@ -4694,13 +4779,17 @@ declare const reactQuery_gen_listFacilityOffersInfiniteOptions: typeof listFacil
|
|
|
4694
4779
|
declare const reactQuery_gen_listFacilityOffersInfiniteQueryKey: typeof listFacilityOffersInfiniteQueryKey;
|
|
4695
4780
|
declare const reactQuery_gen_listFacilityOffersOptions: typeof listFacilityOffersOptions;
|
|
4696
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;
|
|
4697
4786
|
declare const reactQuery_gen_searchUsersInfiniteOptions: typeof searchUsersInfiniteOptions;
|
|
4698
4787
|
declare const reactQuery_gen_searchUsersInfiniteQueryKey: typeof searchUsersInfiniteQueryKey;
|
|
4699
4788
|
declare const reactQuery_gen_searchUsersOptions: typeof searchUsersOptions;
|
|
4700
4789
|
declare const reactQuery_gen_searchUsersQueryKey: typeof searchUsersQueryKey;
|
|
4701
4790
|
declare const reactQuery_gen_updateBookingMutation: typeof updateBookingMutation;
|
|
4702
4791
|
declare namespace reactQuery_gen {
|
|
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 };
|
|
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 };
|
|
4704
4793
|
}
|
|
4705
4794
|
|
|
4706
4795
|
type indexV1_AddBookingData = AddBookingData;
|
|
@@ -4762,12 +4851,14 @@ type indexV1_PkgOpenapiSharedOffsetPaginatedResultSet = PkgOpenapiSharedOffsetPa
|
|
|
4762
4851
|
type indexV1_PkgOpenapiSharedOffsetParam = PkgOpenapiSharedOffsetParam;
|
|
4763
4852
|
type indexV1_PkgOpenapiSharedProblemDetails = PkgOpenapiSharedProblemDetails;
|
|
4764
4853
|
type indexV1_Player = Player;
|
|
4765
|
-
type
|
|
4766
|
-
|
|
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;
|
|
4767
4859
|
type indexV1_SearchUsersData = SearchUsersData;
|
|
4768
4860
|
type indexV1_SearchUsersError = SearchUsersError;
|
|
4769
4861
|
type indexV1_SearchUsersErrors = SearchUsersErrors;
|
|
4770
|
-
type indexV1_SearchUsersListPaginatedResponse = SearchUsersListPaginatedResponse;
|
|
4771
4862
|
type indexV1_SearchUsersResponse = SearchUsersResponse;
|
|
4772
4863
|
type indexV1_SearchUsersResponses = SearchUsersResponses;
|
|
4773
4864
|
type indexV1_UpdateBooking = UpdateBooking;
|
|
@@ -4776,6 +4867,9 @@ type indexV1_UpdateBookingError = UpdateBookingError;
|
|
|
4776
4867
|
type indexV1_UpdateBookingErrors = UpdateBookingErrors;
|
|
4777
4868
|
type indexV1_UpdateBookingResponse = UpdateBookingResponse;
|
|
4778
4869
|
type indexV1_UpdateBookingResponses = UpdateBookingResponses;
|
|
4870
|
+
type indexV1_User = User;
|
|
4871
|
+
declare const indexV1_UserRelation: typeof UserRelation;
|
|
4872
|
+
type indexV1_UsersPaginatedResponse = UsersPaginatedResponse;
|
|
4779
4873
|
declare const indexV1_addBooking: typeof addBooking;
|
|
4780
4874
|
declare const indexV1_client: typeof client;
|
|
4781
4875
|
declare const indexV1_createFacilityOfferOrder: typeof createFacilityOfferOrder;
|
|
@@ -4783,10 +4877,11 @@ declare const indexV1_deleteBooking: typeof deleteBooking;
|
|
|
4783
4877
|
declare const indexV1_findBookingById: typeof findBookingById;
|
|
4784
4878
|
declare const indexV1_findBookings: typeof findBookings;
|
|
4785
4879
|
declare const indexV1_listFacilityOffers: typeof listFacilityOffers;
|
|
4880
|
+
declare const indexV1_recommendedUsers: typeof recommendedUsers;
|
|
4786
4881
|
declare const indexV1_searchUsers: typeof searchUsers;
|
|
4787
4882
|
declare const indexV1_updateBooking: typeof updateBooking;
|
|
4788
4883
|
declare namespace indexV1 {
|
|
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
|
|
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 };
|
|
4790
4885
|
}
|
|
4791
4886
|
|
|
4792
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 };
|