@matchi/api 0.20251119.2 → 0.20251124.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 +16 -106
- package/dist/main/index.d.ts +16 -106
- 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
|
@@ -3473,55 +3473,22 @@ type CreateFacilityOfferOrderResponses = {
|
|
|
3473
3473
|
200: FacilityOfferOrder;
|
|
3474
3474
|
};
|
|
3475
3475
|
type CreateFacilityOfferOrderResponse = CreateFacilityOfferOrderResponses[keyof CreateFacilityOfferOrderResponses];
|
|
3476
|
-
type
|
|
3476
|
+
type SearchUsersData = {
|
|
3477
3477
|
body?: never;
|
|
3478
3478
|
path?: never;
|
|
3479
3479
|
query?: {
|
|
3480
3480
|
/**
|
|
3481
|
-
*
|
|
3482
|
-
*/
|
|
3483
|
-
include_friends?: boolean;
|
|
3484
|
-
/**
|
|
3485
|
-
* Number of items to skip before returning the results.
|
|
3481
|
+
* The search query, must be at least 3 characters long
|
|
3486
3482
|
*/
|
|
3487
|
-
|
|
3483
|
+
name?: string;
|
|
3488
3484
|
/**
|
|
3489
|
-
*
|
|
3485
|
+
* Include friends in the recommended users list (only used if only_recommendations is true)
|
|
3490
3486
|
*/
|
|
3491
|
-
|
|
3492
|
-
};
|
|
3493
|
-
url: '/users/recommended';
|
|
3494
|
-
};
|
|
3495
|
-
type RecommendedUsersErrors = {
|
|
3496
|
-
/**
|
|
3497
|
-
* Access token is not set or invalid.
|
|
3498
|
-
*/
|
|
3499
|
-
401: PkgOpenapiSharedProblemDetails;
|
|
3500
|
-
/**
|
|
3501
|
-
* The server encountered an unexpected error
|
|
3502
|
-
*/
|
|
3503
|
-
500: PkgOpenapiSharedProblemDetails;
|
|
3504
|
-
/**
|
|
3505
|
-
* The requested operation is not implemented.
|
|
3506
|
-
*/
|
|
3507
|
-
501: PkgOpenapiSharedProblemDetails;
|
|
3508
|
-
};
|
|
3509
|
-
type RecommendedUsersError = RecommendedUsersErrors[keyof RecommendedUsersErrors];
|
|
3510
|
-
type RecommendedUsersResponses = {
|
|
3511
|
-
/**
|
|
3512
|
-
* OK
|
|
3513
|
-
*/
|
|
3514
|
-
200: UsersPaginatedResponse;
|
|
3515
|
-
};
|
|
3516
|
-
type RecommendedUsersResponse = RecommendedUsersResponses[keyof RecommendedUsersResponses];
|
|
3517
|
-
type SearchUsersData = {
|
|
3518
|
-
body?: never;
|
|
3519
|
-
path?: never;
|
|
3520
|
-
query: {
|
|
3487
|
+
include_friends?: boolean;
|
|
3521
3488
|
/**
|
|
3522
|
-
*
|
|
3489
|
+
* Only return recommended users
|
|
3523
3490
|
*/
|
|
3524
|
-
|
|
3491
|
+
only_recommendations?: boolean;
|
|
3525
3492
|
/**
|
|
3526
3493
|
* Number of items to skip before returning the results.
|
|
3527
3494
|
*/
|
|
@@ -3531,7 +3498,7 @@ type SearchUsersData = {
|
|
|
3531
3498
|
*/
|
|
3532
3499
|
limit?: number;
|
|
3533
3500
|
};
|
|
3534
|
-
url: '/users/
|
|
3501
|
+
url: '/users/profiles';
|
|
3535
3502
|
};
|
|
3536
3503
|
type SearchUsersErrors = {
|
|
3537
3504
|
/**
|
|
@@ -3542,10 +3509,6 @@ type SearchUsersErrors = {
|
|
|
3542
3509
|
* Access token is not set or invalid.
|
|
3543
3510
|
*/
|
|
3544
3511
|
401: PkgOpenapiSharedProblemDetails;
|
|
3545
|
-
/**
|
|
3546
|
-
* The requestor is not authorized to perform this operation on the resource.
|
|
3547
|
-
*/
|
|
3548
|
-
403: PkgOpenapiSharedProblemDetails;
|
|
3549
3512
|
/**
|
|
3550
3513
|
* The server encountered an unexpected error
|
|
3551
3514
|
*/
|
|
@@ -3718,6 +3681,7 @@ declare const FacilityOfferListSchema: {
|
|
|
3718
3681
|
readonly $ref: "#/components/schemas/FacilityOffer";
|
|
3719
3682
|
};
|
|
3720
3683
|
readonly type: "array";
|
|
3684
|
+
readonly 'x-deprecated-pagination-style': true;
|
|
3721
3685
|
};
|
|
3722
3686
|
readonly meta: {
|
|
3723
3687
|
readonly $ref: "#/components/schemas/pkgOpenapiSharedCursorPaginatedResultSet";
|
|
@@ -4026,16 +3990,11 @@ declare const listFacilityOffers: <ThrowOnError extends boolean = false>(options
|
|
|
4026
3990
|
* Will create a facility offer order and return the order object
|
|
4027
3991
|
*/
|
|
4028
3992
|
declare const createFacilityOfferOrder: <ThrowOnError extends boolean = false>(options: Options<CreateFacilityOfferOrderData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<FacilityOfferOrder, PkgOpenapiSharedProblemDetails, ThrowOnError>;
|
|
4029
|
-
/**
|
|
4030
|
-
* Get user recommendations
|
|
4031
|
-
* Get a list of recommended users based on the current user's interests
|
|
4032
|
-
*/
|
|
4033
|
-
declare const recommendedUsers: <ThrowOnError extends boolean = false>(options?: Options<RecommendedUsersData, ThrowOnError> | undefined) => _hey_api_client_fetch.RequestResult<UsersPaginatedResponse, PkgOpenapiSharedProblemDetails, ThrowOnError>;
|
|
4034
3993
|
/**
|
|
4035
3994
|
* Search for users by name
|
|
4036
3995
|
* Get a list of users based on the current user's search query
|
|
4037
3996
|
*/
|
|
4038
|
-
declare const searchUsers: <ThrowOnError extends boolean = false>(options
|
|
3997
|
+
declare const searchUsers: <ThrowOnError extends boolean = false>(options?: Options<SearchUsersData, ThrowOnError> | undefined) => _hey_api_client_fetch.RequestResult<UsersPaginatedResponse, PkgOpenapiSharedProblemDetails, ThrowOnError>;
|
|
4039
3998
|
|
|
4040
3999
|
type QueryKey<TOptions extends Options> = [
|
|
4041
4000
|
Pick<TOptions, 'baseUrl' | 'body' | 'headers' | 'path' | 'query'> & {
|
|
@@ -4104,50 +4063,11 @@ declare const createFacilityOfferOrderOptions: (options: Options<CreateFacilityO
|
|
|
4104
4063
|
};
|
|
4105
4064
|
};
|
|
4106
4065
|
declare const createFacilityOfferOrderMutation: (options?: Partial<Options<CreateFacilityOfferOrderData>>) => UseMutationOptions<FacilityOfferOrder, PkgOpenapiSharedProblemDetails, Options<CreateFacilityOfferOrderData>, unknown>;
|
|
4107
|
-
declare const
|
|
4108
|
-
_id: string;
|
|
4109
|
-
_infinite?: boolean | undefined;
|
|
4110
|
-
}];
|
|
4111
|
-
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"> & {
|
|
4112
|
-
_id: string;
|
|
4113
|
-
_infinite?: boolean | undefined;
|
|
4114
|
-
}]>, "queryFn"> & {
|
|
4115
|
-
queryFn?: _tanstack_query_core_build_legacy_hydration_ClXcjjG9.K<UsersPaginatedResponse, [Pick<Options<RecommendedUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
|
|
4116
|
-
_id: string;
|
|
4117
|
-
_infinite?: boolean | undefined;
|
|
4118
|
-
}], never> | undefined;
|
|
4119
|
-
} & {
|
|
4120
|
-
queryKey: [Pick<Options<RecommendedUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
|
|
4121
|
-
_id: string;
|
|
4122
|
-
_infinite?: boolean | undefined;
|
|
4123
|
-
}] & {
|
|
4124
|
-
[dataTagSymbol]: UsersPaginatedResponse;
|
|
4125
|
-
[dataTagErrorSymbol]: Error;
|
|
4126
|
-
};
|
|
4127
|
-
};
|
|
4128
|
-
declare const recommendedUsersInfiniteQueryKey: (options?: Options<RecommendedUsersData>) => QueryKey<Options<RecommendedUsersData>>;
|
|
4129
|
-
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"> & {
|
|
4130
|
-
_id: string;
|
|
4131
|
-
_infinite?: boolean | undefined;
|
|
4132
|
-
}, "body" | "headers" | "path" | "query">> & {
|
|
4133
|
-
initialData: InfiniteData<UsersPaginatedResponse, number | Pick<Pick<Options<RecommendedUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
|
|
4134
|
-
_id: string;
|
|
4135
|
-
_infinite?: boolean | undefined;
|
|
4136
|
-
}, "body" | "headers" | "path" | "query">> | (() => InfiniteData<UsersPaginatedResponse, number | Pick<Pick<Options<RecommendedUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
|
|
4137
|
-
_id: string;
|
|
4138
|
-
_infinite?: boolean | undefined;
|
|
4139
|
-
}, "body" | "headers" | "path" | "query">>) | undefined;
|
|
4140
|
-
} & {
|
|
4141
|
-
queryKey: QueryKey<Options<RecommendedUsersData>> & {
|
|
4142
|
-
[dataTagSymbol]: InfiniteData<UsersPaginatedResponse, unknown>;
|
|
4143
|
-
[dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
|
|
4144
|
-
};
|
|
4145
|
-
};
|
|
4146
|
-
declare const searchUsersQueryKey: (options: Options<SearchUsersData>) => [Pick<Options<SearchUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
|
|
4066
|
+
declare const searchUsersQueryKey: (options?: Options<SearchUsersData>) => [Pick<Options<SearchUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
|
|
4147
4067
|
_id: string;
|
|
4148
4068
|
_infinite?: boolean | undefined;
|
|
4149
4069
|
}];
|
|
4150
|
-
declare const searchUsersOptions: (options
|
|
4070
|
+
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"> & {
|
|
4151
4071
|
_id: string;
|
|
4152
4072
|
_infinite?: boolean | undefined;
|
|
4153
4073
|
}]>, "queryFn"> & {
|
|
@@ -4164,8 +4084,8 @@ declare const searchUsersOptions: (options: Options<SearchUsersData>) => _tansta
|
|
|
4164
4084
|
[dataTagErrorSymbol]: Error;
|
|
4165
4085
|
};
|
|
4166
4086
|
};
|
|
4167
|
-
declare const searchUsersInfiniteQueryKey: (options
|
|
4168
|
-
declare const searchUsersInfiniteOptions: (options
|
|
4087
|
+
declare const searchUsersInfiniteQueryKey: (options?: Options<SearchUsersData>) => QueryKey<Options<SearchUsersData>>;
|
|
4088
|
+
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"> & {
|
|
4169
4089
|
_id: string;
|
|
4170
4090
|
_infinite?: boolean | undefined;
|
|
4171
4091
|
}, "body" | "headers" | "path" | "query">> & {
|
|
@@ -4191,16 +4111,12 @@ declare const reactQuery_gen_listFacilityOffersInfiniteOptions: typeof listFacil
|
|
|
4191
4111
|
declare const reactQuery_gen_listFacilityOffersInfiniteQueryKey: typeof listFacilityOffersInfiniteQueryKey;
|
|
4192
4112
|
declare const reactQuery_gen_listFacilityOffersOptions: typeof listFacilityOffersOptions;
|
|
4193
4113
|
declare const reactQuery_gen_listFacilityOffersQueryKey: typeof listFacilityOffersQueryKey;
|
|
4194
|
-
declare const reactQuery_gen_recommendedUsersInfiniteOptions: typeof recommendedUsersInfiniteOptions;
|
|
4195
|
-
declare const reactQuery_gen_recommendedUsersInfiniteQueryKey: typeof recommendedUsersInfiniteQueryKey;
|
|
4196
|
-
declare const reactQuery_gen_recommendedUsersOptions: typeof recommendedUsersOptions;
|
|
4197
|
-
declare const reactQuery_gen_recommendedUsersQueryKey: typeof recommendedUsersQueryKey;
|
|
4198
4114
|
declare const reactQuery_gen_searchUsersInfiniteOptions: typeof searchUsersInfiniteOptions;
|
|
4199
4115
|
declare const reactQuery_gen_searchUsersInfiniteQueryKey: typeof searchUsersInfiniteQueryKey;
|
|
4200
4116
|
declare const reactQuery_gen_searchUsersOptions: typeof searchUsersOptions;
|
|
4201
4117
|
declare const reactQuery_gen_searchUsersQueryKey: typeof searchUsersQueryKey;
|
|
4202
4118
|
declare namespace reactQuery_gen {
|
|
4203
|
-
export { type reactQuery_gen_QueryKey as QueryKey, reactQuery_gen_createFacilityOfferOrderMutation as createFacilityOfferOrderMutation, reactQuery_gen_createFacilityOfferOrderOptions as createFacilityOfferOrderOptions, reactQuery_gen_createFacilityOfferOrderQueryKey as createFacilityOfferOrderQueryKey, reactQuery_gen_listFacilityOffersInfiniteOptions as listFacilityOffersInfiniteOptions, reactQuery_gen_listFacilityOffersInfiniteQueryKey as listFacilityOffersInfiniteQueryKey, reactQuery_gen_listFacilityOffersOptions as listFacilityOffersOptions, reactQuery_gen_listFacilityOffersQueryKey as listFacilityOffersQueryKey,
|
|
4119
|
+
export { type reactQuery_gen_QueryKey as QueryKey, reactQuery_gen_createFacilityOfferOrderMutation as createFacilityOfferOrderMutation, reactQuery_gen_createFacilityOfferOrderOptions as createFacilityOfferOrderOptions, reactQuery_gen_createFacilityOfferOrderQueryKey as createFacilityOfferOrderQueryKey, 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 };
|
|
4204
4120
|
}
|
|
4205
4121
|
|
|
4206
4122
|
type indexV1_ClientOptions = ClientOptions;
|
|
@@ -4238,11 +4154,6 @@ type indexV1_PkgOpenapiSharedOffsetLimitParam = PkgOpenapiSharedOffsetLimitParam
|
|
|
4238
4154
|
type indexV1_PkgOpenapiSharedOffsetPaginatedResultSet = PkgOpenapiSharedOffsetPaginatedResultSet;
|
|
4239
4155
|
type indexV1_PkgOpenapiSharedOffsetParam = PkgOpenapiSharedOffsetParam;
|
|
4240
4156
|
type indexV1_PkgOpenapiSharedProblemDetails = PkgOpenapiSharedProblemDetails;
|
|
4241
|
-
type indexV1_RecommendedUsersData = RecommendedUsersData;
|
|
4242
|
-
type indexV1_RecommendedUsersError = RecommendedUsersError;
|
|
4243
|
-
type indexV1_RecommendedUsersErrors = RecommendedUsersErrors;
|
|
4244
|
-
type indexV1_RecommendedUsersResponse = RecommendedUsersResponse;
|
|
4245
|
-
type indexV1_RecommendedUsersResponses = RecommendedUsersResponses;
|
|
4246
4157
|
type indexV1_SearchUsersData = SearchUsersData;
|
|
4247
4158
|
type indexV1_SearchUsersError = SearchUsersError;
|
|
4248
4159
|
type indexV1_SearchUsersErrors = SearchUsersErrors;
|
|
@@ -4254,10 +4165,9 @@ type indexV1_UsersPaginatedResponse = UsersPaginatedResponse;
|
|
|
4254
4165
|
declare const indexV1_client: typeof client;
|
|
4255
4166
|
declare const indexV1_createFacilityOfferOrder: typeof createFacilityOfferOrder;
|
|
4256
4167
|
declare const indexV1_listFacilityOffers: typeof listFacilityOffers;
|
|
4257
|
-
declare const indexV1_recommendedUsers: typeof recommendedUsers;
|
|
4258
4168
|
declare const indexV1_searchUsers: typeof searchUsers;
|
|
4259
4169
|
declare namespace indexV1 {
|
|
4260
|
-
export { type indexV1_ClientOptions as ClientOptions, type indexV1_CreateFacilityOfferOrderData as CreateFacilityOfferOrderData, type indexV1_CreateFacilityOfferOrderError as CreateFacilityOfferOrderError, type indexV1_CreateFacilityOfferOrderErrors as CreateFacilityOfferOrderErrors, type indexV1_CreateFacilityOfferOrderResponse as CreateFacilityOfferOrderResponse, type indexV1_CreateFacilityOfferOrderResponses as CreateFacilityOfferOrderResponses, type indexV1_FacilityIdPath as FacilityIdPath, type indexV1_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_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
|
|
4170
|
+
export { type indexV1_ClientOptions as ClientOptions, type indexV1_CreateFacilityOfferOrderData as CreateFacilityOfferOrderData, type indexV1_CreateFacilityOfferOrderError as CreateFacilityOfferOrderError, type indexV1_CreateFacilityOfferOrderErrors as CreateFacilityOfferOrderErrors, type indexV1_CreateFacilityOfferOrderResponse as CreateFacilityOfferOrderResponse, type indexV1_CreateFacilityOfferOrderResponses as CreateFacilityOfferOrderResponses, type indexV1_FacilityIdPath as FacilityIdPath, type indexV1_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_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_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_User as User, indexV1_UserRelation as UserRelation, type indexV1_UsersPaginatedResponse as UsersPaginatedResponse, indexV1_client as client, indexV1_createFacilityOfferOrder as createFacilityOfferOrder, indexV1_listFacilityOffers as listFacilityOffers, reactQuery_gen as queries, schemas_gen as schemas, indexV1_searchUsers as searchUsers };
|
|
4261
4171
|
}
|
|
4262
4172
|
|
|
4263
4173
|
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 };
|
package/dist/main/index.d.ts
CHANGED
|
@@ -3473,55 +3473,22 @@ type CreateFacilityOfferOrderResponses = {
|
|
|
3473
3473
|
200: FacilityOfferOrder;
|
|
3474
3474
|
};
|
|
3475
3475
|
type CreateFacilityOfferOrderResponse = CreateFacilityOfferOrderResponses[keyof CreateFacilityOfferOrderResponses];
|
|
3476
|
-
type
|
|
3476
|
+
type SearchUsersData = {
|
|
3477
3477
|
body?: never;
|
|
3478
3478
|
path?: never;
|
|
3479
3479
|
query?: {
|
|
3480
3480
|
/**
|
|
3481
|
-
*
|
|
3482
|
-
*/
|
|
3483
|
-
include_friends?: boolean;
|
|
3484
|
-
/**
|
|
3485
|
-
* Number of items to skip before returning the results.
|
|
3481
|
+
* The search query, must be at least 3 characters long
|
|
3486
3482
|
*/
|
|
3487
|
-
|
|
3483
|
+
name?: string;
|
|
3488
3484
|
/**
|
|
3489
|
-
*
|
|
3485
|
+
* Include friends in the recommended users list (only used if only_recommendations is true)
|
|
3490
3486
|
*/
|
|
3491
|
-
|
|
3492
|
-
};
|
|
3493
|
-
url: '/users/recommended';
|
|
3494
|
-
};
|
|
3495
|
-
type RecommendedUsersErrors = {
|
|
3496
|
-
/**
|
|
3497
|
-
* Access token is not set or invalid.
|
|
3498
|
-
*/
|
|
3499
|
-
401: PkgOpenapiSharedProblemDetails;
|
|
3500
|
-
/**
|
|
3501
|
-
* The server encountered an unexpected error
|
|
3502
|
-
*/
|
|
3503
|
-
500: PkgOpenapiSharedProblemDetails;
|
|
3504
|
-
/**
|
|
3505
|
-
* The requested operation is not implemented.
|
|
3506
|
-
*/
|
|
3507
|
-
501: PkgOpenapiSharedProblemDetails;
|
|
3508
|
-
};
|
|
3509
|
-
type RecommendedUsersError = RecommendedUsersErrors[keyof RecommendedUsersErrors];
|
|
3510
|
-
type RecommendedUsersResponses = {
|
|
3511
|
-
/**
|
|
3512
|
-
* OK
|
|
3513
|
-
*/
|
|
3514
|
-
200: UsersPaginatedResponse;
|
|
3515
|
-
};
|
|
3516
|
-
type RecommendedUsersResponse = RecommendedUsersResponses[keyof RecommendedUsersResponses];
|
|
3517
|
-
type SearchUsersData = {
|
|
3518
|
-
body?: never;
|
|
3519
|
-
path?: never;
|
|
3520
|
-
query: {
|
|
3487
|
+
include_friends?: boolean;
|
|
3521
3488
|
/**
|
|
3522
|
-
*
|
|
3489
|
+
* Only return recommended users
|
|
3523
3490
|
*/
|
|
3524
|
-
|
|
3491
|
+
only_recommendations?: boolean;
|
|
3525
3492
|
/**
|
|
3526
3493
|
* Number of items to skip before returning the results.
|
|
3527
3494
|
*/
|
|
@@ -3531,7 +3498,7 @@ type SearchUsersData = {
|
|
|
3531
3498
|
*/
|
|
3532
3499
|
limit?: number;
|
|
3533
3500
|
};
|
|
3534
|
-
url: '/users/
|
|
3501
|
+
url: '/users/profiles';
|
|
3535
3502
|
};
|
|
3536
3503
|
type SearchUsersErrors = {
|
|
3537
3504
|
/**
|
|
@@ -3542,10 +3509,6 @@ type SearchUsersErrors = {
|
|
|
3542
3509
|
* Access token is not set or invalid.
|
|
3543
3510
|
*/
|
|
3544
3511
|
401: PkgOpenapiSharedProblemDetails;
|
|
3545
|
-
/**
|
|
3546
|
-
* The requestor is not authorized to perform this operation on the resource.
|
|
3547
|
-
*/
|
|
3548
|
-
403: PkgOpenapiSharedProblemDetails;
|
|
3549
3512
|
/**
|
|
3550
3513
|
* The server encountered an unexpected error
|
|
3551
3514
|
*/
|
|
@@ -3718,6 +3681,7 @@ declare const FacilityOfferListSchema: {
|
|
|
3718
3681
|
readonly $ref: "#/components/schemas/FacilityOffer";
|
|
3719
3682
|
};
|
|
3720
3683
|
readonly type: "array";
|
|
3684
|
+
readonly 'x-deprecated-pagination-style': true;
|
|
3721
3685
|
};
|
|
3722
3686
|
readonly meta: {
|
|
3723
3687
|
readonly $ref: "#/components/schemas/pkgOpenapiSharedCursorPaginatedResultSet";
|
|
@@ -4026,16 +3990,11 @@ declare const listFacilityOffers: <ThrowOnError extends boolean = false>(options
|
|
|
4026
3990
|
* Will create a facility offer order and return the order object
|
|
4027
3991
|
*/
|
|
4028
3992
|
declare const createFacilityOfferOrder: <ThrowOnError extends boolean = false>(options: Options<CreateFacilityOfferOrderData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<FacilityOfferOrder, PkgOpenapiSharedProblemDetails, ThrowOnError>;
|
|
4029
|
-
/**
|
|
4030
|
-
* Get user recommendations
|
|
4031
|
-
* Get a list of recommended users based on the current user's interests
|
|
4032
|
-
*/
|
|
4033
|
-
declare const recommendedUsers: <ThrowOnError extends boolean = false>(options?: Options<RecommendedUsersData, ThrowOnError> | undefined) => _hey_api_client_fetch.RequestResult<UsersPaginatedResponse, PkgOpenapiSharedProblemDetails, ThrowOnError>;
|
|
4034
3993
|
/**
|
|
4035
3994
|
* Search for users by name
|
|
4036
3995
|
* Get a list of users based on the current user's search query
|
|
4037
3996
|
*/
|
|
4038
|
-
declare const searchUsers: <ThrowOnError extends boolean = false>(options
|
|
3997
|
+
declare const searchUsers: <ThrowOnError extends boolean = false>(options?: Options<SearchUsersData, ThrowOnError> | undefined) => _hey_api_client_fetch.RequestResult<UsersPaginatedResponse, PkgOpenapiSharedProblemDetails, ThrowOnError>;
|
|
4039
3998
|
|
|
4040
3999
|
type QueryKey<TOptions extends Options> = [
|
|
4041
4000
|
Pick<TOptions, 'baseUrl' | 'body' | 'headers' | 'path' | 'query'> & {
|
|
@@ -4104,50 +4063,11 @@ declare const createFacilityOfferOrderOptions: (options: Options<CreateFacilityO
|
|
|
4104
4063
|
};
|
|
4105
4064
|
};
|
|
4106
4065
|
declare const createFacilityOfferOrderMutation: (options?: Partial<Options<CreateFacilityOfferOrderData>>) => UseMutationOptions<FacilityOfferOrder, PkgOpenapiSharedProblemDetails, Options<CreateFacilityOfferOrderData>, unknown>;
|
|
4107
|
-
declare const
|
|
4108
|
-
_id: string;
|
|
4109
|
-
_infinite?: boolean | undefined;
|
|
4110
|
-
}];
|
|
4111
|
-
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"> & {
|
|
4112
|
-
_id: string;
|
|
4113
|
-
_infinite?: boolean | undefined;
|
|
4114
|
-
}]>, "queryFn"> & {
|
|
4115
|
-
queryFn?: _tanstack_query_core_build_legacy_hydration_ClXcjjG9.K<UsersPaginatedResponse, [Pick<Options<RecommendedUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
|
|
4116
|
-
_id: string;
|
|
4117
|
-
_infinite?: boolean | undefined;
|
|
4118
|
-
}], never> | undefined;
|
|
4119
|
-
} & {
|
|
4120
|
-
queryKey: [Pick<Options<RecommendedUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
|
|
4121
|
-
_id: string;
|
|
4122
|
-
_infinite?: boolean | undefined;
|
|
4123
|
-
}] & {
|
|
4124
|
-
[dataTagSymbol]: UsersPaginatedResponse;
|
|
4125
|
-
[dataTagErrorSymbol]: Error;
|
|
4126
|
-
};
|
|
4127
|
-
};
|
|
4128
|
-
declare const recommendedUsersInfiniteQueryKey: (options?: Options<RecommendedUsersData>) => QueryKey<Options<RecommendedUsersData>>;
|
|
4129
|
-
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"> & {
|
|
4130
|
-
_id: string;
|
|
4131
|
-
_infinite?: boolean | undefined;
|
|
4132
|
-
}, "body" | "headers" | "path" | "query">> & {
|
|
4133
|
-
initialData: InfiniteData<UsersPaginatedResponse, number | Pick<Pick<Options<RecommendedUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
|
|
4134
|
-
_id: string;
|
|
4135
|
-
_infinite?: boolean | undefined;
|
|
4136
|
-
}, "body" | "headers" | "path" | "query">> | (() => InfiniteData<UsersPaginatedResponse, number | Pick<Pick<Options<RecommendedUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
|
|
4137
|
-
_id: string;
|
|
4138
|
-
_infinite?: boolean | undefined;
|
|
4139
|
-
}, "body" | "headers" | "path" | "query">>) | undefined;
|
|
4140
|
-
} & {
|
|
4141
|
-
queryKey: QueryKey<Options<RecommendedUsersData>> & {
|
|
4142
|
-
[dataTagSymbol]: InfiniteData<UsersPaginatedResponse, unknown>;
|
|
4143
|
-
[dataTagErrorSymbol]: PkgOpenapiSharedProblemDetails;
|
|
4144
|
-
};
|
|
4145
|
-
};
|
|
4146
|
-
declare const searchUsersQueryKey: (options: Options<SearchUsersData>) => [Pick<Options<SearchUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
|
|
4066
|
+
declare const searchUsersQueryKey: (options?: Options<SearchUsersData>) => [Pick<Options<SearchUsersData>, "baseUrl" | "body" | "headers" | "path" | "query"> & {
|
|
4147
4067
|
_id: string;
|
|
4148
4068
|
_infinite?: boolean | undefined;
|
|
4149
4069
|
}];
|
|
4150
|
-
declare const searchUsersOptions: (options
|
|
4070
|
+
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"> & {
|
|
4151
4071
|
_id: string;
|
|
4152
4072
|
_infinite?: boolean | undefined;
|
|
4153
4073
|
}]>, "queryFn"> & {
|
|
@@ -4164,8 +4084,8 @@ declare const searchUsersOptions: (options: Options<SearchUsersData>) => _tansta
|
|
|
4164
4084
|
[dataTagErrorSymbol]: Error;
|
|
4165
4085
|
};
|
|
4166
4086
|
};
|
|
4167
|
-
declare const searchUsersInfiniteQueryKey: (options
|
|
4168
|
-
declare const searchUsersInfiniteOptions: (options
|
|
4087
|
+
declare const searchUsersInfiniteQueryKey: (options?: Options<SearchUsersData>) => QueryKey<Options<SearchUsersData>>;
|
|
4088
|
+
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"> & {
|
|
4169
4089
|
_id: string;
|
|
4170
4090
|
_infinite?: boolean | undefined;
|
|
4171
4091
|
}, "body" | "headers" | "path" | "query">> & {
|
|
@@ -4191,16 +4111,12 @@ declare const reactQuery_gen_listFacilityOffersInfiniteOptions: typeof listFacil
|
|
|
4191
4111
|
declare const reactQuery_gen_listFacilityOffersInfiniteQueryKey: typeof listFacilityOffersInfiniteQueryKey;
|
|
4192
4112
|
declare const reactQuery_gen_listFacilityOffersOptions: typeof listFacilityOffersOptions;
|
|
4193
4113
|
declare const reactQuery_gen_listFacilityOffersQueryKey: typeof listFacilityOffersQueryKey;
|
|
4194
|
-
declare const reactQuery_gen_recommendedUsersInfiniteOptions: typeof recommendedUsersInfiniteOptions;
|
|
4195
|
-
declare const reactQuery_gen_recommendedUsersInfiniteQueryKey: typeof recommendedUsersInfiniteQueryKey;
|
|
4196
|
-
declare const reactQuery_gen_recommendedUsersOptions: typeof recommendedUsersOptions;
|
|
4197
|
-
declare const reactQuery_gen_recommendedUsersQueryKey: typeof recommendedUsersQueryKey;
|
|
4198
4114
|
declare const reactQuery_gen_searchUsersInfiniteOptions: typeof searchUsersInfiniteOptions;
|
|
4199
4115
|
declare const reactQuery_gen_searchUsersInfiniteQueryKey: typeof searchUsersInfiniteQueryKey;
|
|
4200
4116
|
declare const reactQuery_gen_searchUsersOptions: typeof searchUsersOptions;
|
|
4201
4117
|
declare const reactQuery_gen_searchUsersQueryKey: typeof searchUsersQueryKey;
|
|
4202
4118
|
declare namespace reactQuery_gen {
|
|
4203
|
-
export { type reactQuery_gen_QueryKey as QueryKey, reactQuery_gen_createFacilityOfferOrderMutation as createFacilityOfferOrderMutation, reactQuery_gen_createFacilityOfferOrderOptions as createFacilityOfferOrderOptions, reactQuery_gen_createFacilityOfferOrderQueryKey as createFacilityOfferOrderQueryKey, reactQuery_gen_listFacilityOffersInfiniteOptions as listFacilityOffersInfiniteOptions, reactQuery_gen_listFacilityOffersInfiniteQueryKey as listFacilityOffersInfiniteQueryKey, reactQuery_gen_listFacilityOffersOptions as listFacilityOffersOptions, reactQuery_gen_listFacilityOffersQueryKey as listFacilityOffersQueryKey,
|
|
4119
|
+
export { type reactQuery_gen_QueryKey as QueryKey, reactQuery_gen_createFacilityOfferOrderMutation as createFacilityOfferOrderMutation, reactQuery_gen_createFacilityOfferOrderOptions as createFacilityOfferOrderOptions, reactQuery_gen_createFacilityOfferOrderQueryKey as createFacilityOfferOrderQueryKey, 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 };
|
|
4204
4120
|
}
|
|
4205
4121
|
|
|
4206
4122
|
type indexV1_ClientOptions = ClientOptions;
|
|
@@ -4238,11 +4154,6 @@ type indexV1_PkgOpenapiSharedOffsetLimitParam = PkgOpenapiSharedOffsetLimitParam
|
|
|
4238
4154
|
type indexV1_PkgOpenapiSharedOffsetPaginatedResultSet = PkgOpenapiSharedOffsetPaginatedResultSet;
|
|
4239
4155
|
type indexV1_PkgOpenapiSharedOffsetParam = PkgOpenapiSharedOffsetParam;
|
|
4240
4156
|
type indexV1_PkgOpenapiSharedProblemDetails = PkgOpenapiSharedProblemDetails;
|
|
4241
|
-
type indexV1_RecommendedUsersData = RecommendedUsersData;
|
|
4242
|
-
type indexV1_RecommendedUsersError = RecommendedUsersError;
|
|
4243
|
-
type indexV1_RecommendedUsersErrors = RecommendedUsersErrors;
|
|
4244
|
-
type indexV1_RecommendedUsersResponse = RecommendedUsersResponse;
|
|
4245
|
-
type indexV1_RecommendedUsersResponses = RecommendedUsersResponses;
|
|
4246
4157
|
type indexV1_SearchUsersData = SearchUsersData;
|
|
4247
4158
|
type indexV1_SearchUsersError = SearchUsersError;
|
|
4248
4159
|
type indexV1_SearchUsersErrors = SearchUsersErrors;
|
|
@@ -4254,10 +4165,9 @@ type indexV1_UsersPaginatedResponse = UsersPaginatedResponse;
|
|
|
4254
4165
|
declare const indexV1_client: typeof client;
|
|
4255
4166
|
declare const indexV1_createFacilityOfferOrder: typeof createFacilityOfferOrder;
|
|
4256
4167
|
declare const indexV1_listFacilityOffers: typeof listFacilityOffers;
|
|
4257
|
-
declare const indexV1_recommendedUsers: typeof recommendedUsers;
|
|
4258
4168
|
declare const indexV1_searchUsers: typeof searchUsers;
|
|
4259
4169
|
declare namespace indexV1 {
|
|
4260
|
-
export { type indexV1_ClientOptions as ClientOptions, type indexV1_CreateFacilityOfferOrderData as CreateFacilityOfferOrderData, type indexV1_CreateFacilityOfferOrderError as CreateFacilityOfferOrderError, type indexV1_CreateFacilityOfferOrderErrors as CreateFacilityOfferOrderErrors, type indexV1_CreateFacilityOfferOrderResponse as CreateFacilityOfferOrderResponse, type indexV1_CreateFacilityOfferOrderResponses as CreateFacilityOfferOrderResponses, type indexV1_FacilityIdPath as FacilityIdPath, type indexV1_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_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
|
|
4170
|
+
export { type indexV1_ClientOptions as ClientOptions, type indexV1_CreateFacilityOfferOrderData as CreateFacilityOfferOrderData, type indexV1_CreateFacilityOfferOrderError as CreateFacilityOfferOrderError, type indexV1_CreateFacilityOfferOrderErrors as CreateFacilityOfferOrderErrors, type indexV1_CreateFacilityOfferOrderResponse as CreateFacilityOfferOrderResponse, type indexV1_CreateFacilityOfferOrderResponses as CreateFacilityOfferOrderResponses, type indexV1_FacilityIdPath as FacilityIdPath, type indexV1_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_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_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_User as User, indexV1_UserRelation as UserRelation, type indexV1_UsersPaginatedResponse as UsersPaginatedResponse, indexV1_client as client, indexV1_createFacilityOfferOrder as createFacilityOfferOrder, indexV1_listFacilityOffers as listFacilityOffers, reactQuery_gen as queries, schemas_gen as schemas, indexV1_searchUsers as searchUsers };
|
|
4261
4171
|
}
|
|
4262
4172
|
|
|
4263
4173
|
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 };
|