@matchi/api 0.20250324.1 → 0.20250410.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 +69 -56
- package/dist/main/index.d.ts +69 -56
- 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
|
@@ -1969,6 +1969,13 @@ declare class AuthorizedService {
|
|
|
1969
1969
|
* @throws ApiError
|
|
1970
1970
|
*/
|
|
1971
1971
|
static getBookingUsers(bookingId: number): CancelablePromise<bookingUsersResponse>;
|
|
1972
|
+
/**
|
|
1973
|
+
* Search for users
|
|
1974
|
+
* @param key The search query
|
|
1975
|
+
* @returns userPublicProfile List of public profiles found
|
|
1976
|
+
* @throws ApiError
|
|
1977
|
+
*/
|
|
1978
|
+
static searchUsers(key: string): CancelablePromise<Array<userPublicProfile>>;
|
|
1972
1979
|
/**
|
|
1973
1980
|
* List all chats for the current user
|
|
1974
1981
|
* @param userChatStatus If provided, only returns user chats which match this user chat status:
|
|
@@ -2808,6 +2815,13 @@ declare class PlaySessionServiceV1Service {
|
|
|
2808
2815
|
}
|
|
2809
2816
|
|
|
2810
2817
|
declare class UserServiceV1Service {
|
|
2818
|
+
/**
|
|
2819
|
+
* Search for users
|
|
2820
|
+
* @param key The search query
|
|
2821
|
+
* @returns userPublicProfile List of public profiles found
|
|
2822
|
+
* @throws ApiError
|
|
2823
|
+
*/
|
|
2824
|
+
static searchUsers(key: string): CancelablePromise<Array<userPublicProfile>>;
|
|
2811
2825
|
/**
|
|
2812
2826
|
* Get public profile of requested user
|
|
2813
2827
|
* @param userId User ID
|
|
@@ -2997,37 +3011,36 @@ type FacilityOffer = {
|
|
|
2997
3011
|
data: FacilityPunchCardData | FacilityValueCardData;
|
|
2998
3012
|
type: 'FACILITY_PUNCH_CARD' | 'FACILITY_VALUE_CARD';
|
|
2999
3013
|
};
|
|
3000
|
-
type FacilityOfferCondition = (FacilityOfferConditionWeekdays | FacilityOfferConditionCourts | FacilityOfferConditionDate | FacilityOfferConditionTime | FacilityOfferConditionHoursinadvance | FacilityOfferConditionActivities
|
|
3001
|
-
type
|
|
3014
|
+
type FacilityOfferCondition = (FacilityOfferConditionWeekdays | FacilityOfferConditionCourts | FacilityOfferConditionDate | FacilityOfferConditionTime | FacilityOfferConditionHoursinadvance | FacilityOfferConditionActivities) & {
|
|
3015
|
+
type: 'WEEKDAYS' | 'COURTS' | 'DATE' | 'TIME' | 'HOURSINADVANCE' | 'ACTIVITIES';
|
|
3002
3016
|
};
|
|
3003
3017
|
type FacilityOfferConditionActivities = {
|
|
3018
|
+
activities: Array<{
|
|
3019
|
+
id: number;
|
|
3020
|
+
name: string;
|
|
3021
|
+
type?: string;
|
|
3022
|
+
}>;
|
|
3004
3023
|
all_activities: boolean;
|
|
3005
3024
|
not_valid_for_activities: boolean;
|
|
3006
|
-
type: string;
|
|
3007
3025
|
};
|
|
3008
3026
|
type FacilityOfferConditionCourts = {
|
|
3009
|
-
|
|
3010
|
-
|
|
3027
|
+
courts: Array<{
|
|
3028
|
+
id: number;
|
|
3029
|
+
name: string;
|
|
3030
|
+
}>;
|
|
3011
3031
|
};
|
|
3012
3032
|
type FacilityOfferConditionDate = {
|
|
3013
3033
|
end_date: string;
|
|
3014
3034
|
start_date: string;
|
|
3015
|
-
type: string;
|
|
3016
3035
|
};
|
|
3017
3036
|
type FacilityOfferConditionHoursinadvance = {
|
|
3018
3037
|
nr_of_hours: number;
|
|
3019
|
-
type: string;
|
|
3020
|
-
};
|
|
3021
|
-
type FacilityOfferConditionNotImplemented = {
|
|
3022
|
-
type: string;
|
|
3023
3038
|
};
|
|
3024
3039
|
type FacilityOfferConditionTime = {
|
|
3025
3040
|
end_time: string;
|
|
3026
3041
|
start_time: string;
|
|
3027
|
-
type: string;
|
|
3028
3042
|
};
|
|
3029
3043
|
type FacilityOfferConditionWeekdays = {
|
|
3030
|
-
type: string;
|
|
3031
3044
|
weekdays: Array<number>;
|
|
3032
3045
|
};
|
|
3033
3046
|
type FacilityOfferList = {
|
|
@@ -3609,59 +3622,79 @@ declare const FacilityOfferConditionSchema: {
|
|
|
3609
3622
|
readonly $ref: "#/components/schemas/FacilityOfferConditionHoursinadvance";
|
|
3610
3623
|
}, {
|
|
3611
3624
|
readonly $ref: "#/components/schemas/FacilityOfferConditionActivities";
|
|
3612
|
-
}, {
|
|
3613
|
-
readonly $ref: "#/components/schemas/FacilityOfferConditionNotImplemented";
|
|
3614
3625
|
}];
|
|
3615
3626
|
readonly properties: {
|
|
3616
3627
|
readonly type: {
|
|
3617
|
-
readonly enum: readonly ["WEEKDAYS", "COURTS", "DATE", "TIME", "HOURSINADVANCE", "ACTIVITIES"
|
|
3628
|
+
readonly enum: readonly ["WEEKDAYS", "COURTS", "DATE", "TIME", "HOURSINADVANCE", "ACTIVITIES"];
|
|
3618
3629
|
readonly type: "string";
|
|
3619
3630
|
};
|
|
3620
3631
|
};
|
|
3632
|
+
readonly required: readonly ["type"];
|
|
3621
3633
|
readonly type: "object";
|
|
3622
3634
|
};
|
|
3623
3635
|
declare const FacilityOfferConditionActivitiesSchema: {
|
|
3624
3636
|
readonly properties: {
|
|
3637
|
+
readonly activities: {
|
|
3638
|
+
readonly items: {
|
|
3639
|
+
readonly properties: {
|
|
3640
|
+
readonly id: {
|
|
3641
|
+
readonly type: "integer";
|
|
3642
|
+
};
|
|
3643
|
+
readonly name: {
|
|
3644
|
+
readonly type: "string";
|
|
3645
|
+
};
|
|
3646
|
+
readonly type: {
|
|
3647
|
+
readonly type: "string";
|
|
3648
|
+
};
|
|
3649
|
+
};
|
|
3650
|
+
readonly required: readonly ["id", "name"];
|
|
3651
|
+
readonly type: "object";
|
|
3652
|
+
};
|
|
3653
|
+
readonly type: "array";
|
|
3654
|
+
};
|
|
3625
3655
|
readonly all_activities: {
|
|
3626
3656
|
readonly type: "boolean";
|
|
3627
3657
|
};
|
|
3628
3658
|
readonly not_valid_for_activities: {
|
|
3629
3659
|
readonly type: "boolean";
|
|
3630
3660
|
};
|
|
3631
|
-
readonly type: {
|
|
3632
|
-
readonly type: "string";
|
|
3633
|
-
};
|
|
3634
3661
|
};
|
|
3635
|
-
readonly required: readonly ["
|
|
3662
|
+
readonly required: readonly ["not_valid_for_activities", "all_activities", "activities"];
|
|
3636
3663
|
readonly type: "object";
|
|
3637
3664
|
};
|
|
3638
3665
|
declare const FacilityOfferConditionCourtsSchema: {
|
|
3639
3666
|
readonly properties: {
|
|
3640
|
-
readonly
|
|
3641
|
-
readonly
|
|
3642
|
-
|
|
3643
|
-
|
|
3644
|
-
|
|
3667
|
+
readonly courts: {
|
|
3668
|
+
readonly items: {
|
|
3669
|
+
readonly properties: {
|
|
3670
|
+
readonly id: {
|
|
3671
|
+
readonly type: "integer";
|
|
3672
|
+
};
|
|
3673
|
+
readonly name: {
|
|
3674
|
+
readonly type: "string";
|
|
3675
|
+
};
|
|
3676
|
+
};
|
|
3677
|
+
readonly required: readonly ["id", "name"];
|
|
3678
|
+
readonly type: "object";
|
|
3679
|
+
};
|
|
3680
|
+
readonly type: "array";
|
|
3645
3681
|
};
|
|
3646
3682
|
};
|
|
3647
|
-
readonly required: readonly ["
|
|
3683
|
+
readonly required: readonly ["courts"];
|
|
3648
3684
|
readonly type: "object";
|
|
3649
3685
|
};
|
|
3650
3686
|
declare const FacilityOfferConditionDateSchema: {
|
|
3651
3687
|
readonly properties: {
|
|
3652
3688
|
readonly end_date: {
|
|
3653
|
-
readonly format: "date
|
|
3689
|
+
readonly format: "date";
|
|
3654
3690
|
readonly type: "string";
|
|
3655
3691
|
};
|
|
3656
3692
|
readonly start_date: {
|
|
3657
|
-
readonly format: "date
|
|
3658
|
-
readonly type: "string";
|
|
3659
|
-
};
|
|
3660
|
-
readonly type: {
|
|
3693
|
+
readonly format: "date";
|
|
3661
3694
|
readonly type: "string";
|
|
3662
3695
|
};
|
|
3663
3696
|
};
|
|
3664
|
-
readonly required: readonly ["
|
|
3697
|
+
readonly required: readonly ["start_date", "end_date"];
|
|
3665
3698
|
readonly type: "object";
|
|
3666
3699
|
};
|
|
3667
3700
|
declare const FacilityOfferConditionHoursinadvanceSchema: {
|
|
@@ -3669,20 +3702,8 @@ declare const FacilityOfferConditionHoursinadvanceSchema: {
|
|
|
3669
3702
|
readonly nr_of_hours: {
|
|
3670
3703
|
readonly type: "integer";
|
|
3671
3704
|
};
|
|
3672
|
-
readonly type: {
|
|
3673
|
-
readonly type: "string";
|
|
3674
|
-
};
|
|
3675
|
-
};
|
|
3676
|
-
readonly required: readonly ["type", "nr_of_hours"];
|
|
3677
|
-
readonly type: "object";
|
|
3678
|
-
};
|
|
3679
|
-
declare const FacilityOfferConditionNotImplementedSchema: {
|
|
3680
|
-
readonly properties: {
|
|
3681
|
-
readonly type: {
|
|
3682
|
-
readonly type: "string";
|
|
3683
|
-
};
|
|
3684
3705
|
};
|
|
3685
|
-
readonly required: readonly ["
|
|
3706
|
+
readonly required: readonly ["nr_of_hours"];
|
|
3686
3707
|
readonly type: "object";
|
|
3687
3708
|
};
|
|
3688
3709
|
declare const FacilityOfferConditionTimeSchema: {
|
|
@@ -3695,18 +3716,12 @@ declare const FacilityOfferConditionTimeSchema: {
|
|
|
3695
3716
|
readonly format: "time";
|
|
3696
3717
|
readonly type: "string";
|
|
3697
3718
|
};
|
|
3698
|
-
readonly type: {
|
|
3699
|
-
readonly type: "string";
|
|
3700
|
-
};
|
|
3701
3719
|
};
|
|
3702
|
-
readonly required: readonly ["
|
|
3720
|
+
readonly required: readonly ["start_time", "end_time"];
|
|
3703
3721
|
readonly type: "object";
|
|
3704
3722
|
};
|
|
3705
3723
|
declare const FacilityOfferConditionWeekdaysSchema: {
|
|
3706
3724
|
readonly properties: {
|
|
3707
|
-
readonly type: {
|
|
3708
|
-
readonly type: "string";
|
|
3709
|
-
};
|
|
3710
3725
|
readonly weekdays: {
|
|
3711
3726
|
readonly items: {
|
|
3712
3727
|
readonly description: "Interger representation of weekday. 1 (Monday), 7 (Sunday).";
|
|
@@ -3715,7 +3730,7 @@ declare const FacilityOfferConditionWeekdaysSchema: {
|
|
|
3715
3730
|
readonly type: "array";
|
|
3716
3731
|
};
|
|
3717
3732
|
};
|
|
3718
|
-
readonly required: readonly ["
|
|
3733
|
+
readonly required: readonly ["weekdays"];
|
|
3719
3734
|
readonly type: "object";
|
|
3720
3735
|
};
|
|
3721
3736
|
declare const FacilityOfferListSchema: {
|
|
@@ -4007,7 +4022,6 @@ declare const schemas_gen_FacilityOfferConditionActivitiesSchema: typeof Facilit
|
|
|
4007
4022
|
declare const schemas_gen_FacilityOfferConditionCourtsSchema: typeof FacilityOfferConditionCourtsSchema;
|
|
4008
4023
|
declare const schemas_gen_FacilityOfferConditionDateSchema: typeof FacilityOfferConditionDateSchema;
|
|
4009
4024
|
declare const schemas_gen_FacilityOfferConditionHoursinadvanceSchema: typeof FacilityOfferConditionHoursinadvanceSchema;
|
|
4010
|
-
declare const schemas_gen_FacilityOfferConditionNotImplementedSchema: typeof FacilityOfferConditionNotImplementedSchema;
|
|
4011
4025
|
declare const schemas_gen_FacilityOfferConditionSchema: typeof FacilityOfferConditionSchema;
|
|
4012
4026
|
declare const schemas_gen_FacilityOfferConditionTimeSchema: typeof FacilityOfferConditionTimeSchema;
|
|
4013
4027
|
declare const schemas_gen_FacilityOfferConditionWeekdaysSchema: typeof FacilityOfferConditionWeekdaysSchema;
|
|
@@ -4025,7 +4039,7 @@ declare const schemas_gen_pkgOpenapiSharedErrorsSchema: typeof pkgOpenapiSharedE
|
|
|
4025
4039
|
declare const schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema: typeof pkgOpenapiSharedOffsetPaginatedResultSetSchema;
|
|
4026
4040
|
declare const schemas_gen_pkgOpenapiSharedProblemDetailsSchema: typeof pkgOpenapiSharedProblemDetailsSchema;
|
|
4027
4041
|
declare namespace schemas_gen {
|
|
4028
|
-
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,
|
|
4042
|
+
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 };
|
|
4029
4043
|
}
|
|
4030
4044
|
|
|
4031
4045
|
type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
|
|
@@ -4310,7 +4324,6 @@ type indexV1_FacilityOfferConditionActivities = FacilityOfferConditionActivities
|
|
|
4310
4324
|
type indexV1_FacilityOfferConditionCourts = FacilityOfferConditionCourts;
|
|
4311
4325
|
type indexV1_FacilityOfferConditionDate = FacilityOfferConditionDate;
|
|
4312
4326
|
type indexV1_FacilityOfferConditionHoursinadvance = FacilityOfferConditionHoursinadvance;
|
|
4313
|
-
type indexV1_FacilityOfferConditionNotImplemented = FacilityOfferConditionNotImplemented;
|
|
4314
4327
|
type indexV1_FacilityOfferConditionTime = FacilityOfferConditionTime;
|
|
4315
4328
|
type indexV1_FacilityOfferConditionWeekdays = FacilityOfferConditionWeekdays;
|
|
4316
4329
|
type indexV1_FacilityOfferList = FacilityOfferList;
|
|
@@ -4360,7 +4373,7 @@ declare const indexV1_findBookings: typeof findBookings;
|
|
|
4360
4373
|
declare const indexV1_listFacilityOffers: typeof listFacilityOffers;
|
|
4361
4374
|
declare const indexV1_updateBooking: typeof updateBooking;
|
|
4362
4375
|
declare namespace indexV1 {
|
|
4363
|
-
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
|
|
4376
|
+
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 };
|
|
4364
4377
|
}
|
|
4365
4378
|
|
|
4366
4379
|
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, 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, chatTarget, type checkoutResponse, clientType, type competitionAdminAccount, type config, type configuration, type configurationEntry, type configurationMap, type configurationResource, type coupon, type createBookingEventExternal, createChatResponse, 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 getChatAuthResponse, type getChatResponse, type giftCard, type hideFullyBooked, type hours, type internalPaymentMethod, type levelRange, type limitParam, type listChatsResponse, 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, type userFacility, type userId, type userInfo, type userMembership, type userOfferPunchCardsResponse, type userOfferValueCardsResponse, type userPublicProfile, userPunchCard, type userValueCard, indexV1 as v1, type valueCardOutcome };
|
package/dist/main/index.d.ts
CHANGED
|
@@ -1969,6 +1969,13 @@ declare class AuthorizedService {
|
|
|
1969
1969
|
* @throws ApiError
|
|
1970
1970
|
*/
|
|
1971
1971
|
static getBookingUsers(bookingId: number): CancelablePromise<bookingUsersResponse>;
|
|
1972
|
+
/**
|
|
1973
|
+
* Search for users
|
|
1974
|
+
* @param key The search query
|
|
1975
|
+
* @returns userPublicProfile List of public profiles found
|
|
1976
|
+
* @throws ApiError
|
|
1977
|
+
*/
|
|
1978
|
+
static searchUsers(key: string): CancelablePromise<Array<userPublicProfile>>;
|
|
1972
1979
|
/**
|
|
1973
1980
|
* List all chats for the current user
|
|
1974
1981
|
* @param userChatStatus If provided, only returns user chats which match this user chat status:
|
|
@@ -2808,6 +2815,13 @@ declare class PlaySessionServiceV1Service {
|
|
|
2808
2815
|
}
|
|
2809
2816
|
|
|
2810
2817
|
declare class UserServiceV1Service {
|
|
2818
|
+
/**
|
|
2819
|
+
* Search for users
|
|
2820
|
+
* @param key The search query
|
|
2821
|
+
* @returns userPublicProfile List of public profiles found
|
|
2822
|
+
* @throws ApiError
|
|
2823
|
+
*/
|
|
2824
|
+
static searchUsers(key: string): CancelablePromise<Array<userPublicProfile>>;
|
|
2811
2825
|
/**
|
|
2812
2826
|
* Get public profile of requested user
|
|
2813
2827
|
* @param userId User ID
|
|
@@ -2997,37 +3011,36 @@ type FacilityOffer = {
|
|
|
2997
3011
|
data: FacilityPunchCardData | FacilityValueCardData;
|
|
2998
3012
|
type: 'FACILITY_PUNCH_CARD' | 'FACILITY_VALUE_CARD';
|
|
2999
3013
|
};
|
|
3000
|
-
type FacilityOfferCondition = (FacilityOfferConditionWeekdays | FacilityOfferConditionCourts | FacilityOfferConditionDate | FacilityOfferConditionTime | FacilityOfferConditionHoursinadvance | FacilityOfferConditionActivities
|
|
3001
|
-
type
|
|
3014
|
+
type FacilityOfferCondition = (FacilityOfferConditionWeekdays | FacilityOfferConditionCourts | FacilityOfferConditionDate | FacilityOfferConditionTime | FacilityOfferConditionHoursinadvance | FacilityOfferConditionActivities) & {
|
|
3015
|
+
type: 'WEEKDAYS' | 'COURTS' | 'DATE' | 'TIME' | 'HOURSINADVANCE' | 'ACTIVITIES';
|
|
3002
3016
|
};
|
|
3003
3017
|
type FacilityOfferConditionActivities = {
|
|
3018
|
+
activities: Array<{
|
|
3019
|
+
id: number;
|
|
3020
|
+
name: string;
|
|
3021
|
+
type?: string;
|
|
3022
|
+
}>;
|
|
3004
3023
|
all_activities: boolean;
|
|
3005
3024
|
not_valid_for_activities: boolean;
|
|
3006
|
-
type: string;
|
|
3007
3025
|
};
|
|
3008
3026
|
type FacilityOfferConditionCourts = {
|
|
3009
|
-
|
|
3010
|
-
|
|
3027
|
+
courts: Array<{
|
|
3028
|
+
id: number;
|
|
3029
|
+
name: string;
|
|
3030
|
+
}>;
|
|
3011
3031
|
};
|
|
3012
3032
|
type FacilityOfferConditionDate = {
|
|
3013
3033
|
end_date: string;
|
|
3014
3034
|
start_date: string;
|
|
3015
|
-
type: string;
|
|
3016
3035
|
};
|
|
3017
3036
|
type FacilityOfferConditionHoursinadvance = {
|
|
3018
3037
|
nr_of_hours: number;
|
|
3019
|
-
type: string;
|
|
3020
|
-
};
|
|
3021
|
-
type FacilityOfferConditionNotImplemented = {
|
|
3022
|
-
type: string;
|
|
3023
3038
|
};
|
|
3024
3039
|
type FacilityOfferConditionTime = {
|
|
3025
3040
|
end_time: string;
|
|
3026
3041
|
start_time: string;
|
|
3027
|
-
type: string;
|
|
3028
3042
|
};
|
|
3029
3043
|
type FacilityOfferConditionWeekdays = {
|
|
3030
|
-
type: string;
|
|
3031
3044
|
weekdays: Array<number>;
|
|
3032
3045
|
};
|
|
3033
3046
|
type FacilityOfferList = {
|
|
@@ -3609,59 +3622,79 @@ declare const FacilityOfferConditionSchema: {
|
|
|
3609
3622
|
readonly $ref: "#/components/schemas/FacilityOfferConditionHoursinadvance";
|
|
3610
3623
|
}, {
|
|
3611
3624
|
readonly $ref: "#/components/schemas/FacilityOfferConditionActivities";
|
|
3612
|
-
}, {
|
|
3613
|
-
readonly $ref: "#/components/schemas/FacilityOfferConditionNotImplemented";
|
|
3614
3625
|
}];
|
|
3615
3626
|
readonly properties: {
|
|
3616
3627
|
readonly type: {
|
|
3617
|
-
readonly enum: readonly ["WEEKDAYS", "COURTS", "DATE", "TIME", "HOURSINADVANCE", "ACTIVITIES"
|
|
3628
|
+
readonly enum: readonly ["WEEKDAYS", "COURTS", "DATE", "TIME", "HOURSINADVANCE", "ACTIVITIES"];
|
|
3618
3629
|
readonly type: "string";
|
|
3619
3630
|
};
|
|
3620
3631
|
};
|
|
3632
|
+
readonly required: readonly ["type"];
|
|
3621
3633
|
readonly type: "object";
|
|
3622
3634
|
};
|
|
3623
3635
|
declare const FacilityOfferConditionActivitiesSchema: {
|
|
3624
3636
|
readonly properties: {
|
|
3637
|
+
readonly activities: {
|
|
3638
|
+
readonly items: {
|
|
3639
|
+
readonly properties: {
|
|
3640
|
+
readonly id: {
|
|
3641
|
+
readonly type: "integer";
|
|
3642
|
+
};
|
|
3643
|
+
readonly name: {
|
|
3644
|
+
readonly type: "string";
|
|
3645
|
+
};
|
|
3646
|
+
readonly type: {
|
|
3647
|
+
readonly type: "string";
|
|
3648
|
+
};
|
|
3649
|
+
};
|
|
3650
|
+
readonly required: readonly ["id", "name"];
|
|
3651
|
+
readonly type: "object";
|
|
3652
|
+
};
|
|
3653
|
+
readonly type: "array";
|
|
3654
|
+
};
|
|
3625
3655
|
readonly all_activities: {
|
|
3626
3656
|
readonly type: "boolean";
|
|
3627
3657
|
};
|
|
3628
3658
|
readonly not_valid_for_activities: {
|
|
3629
3659
|
readonly type: "boolean";
|
|
3630
3660
|
};
|
|
3631
|
-
readonly type: {
|
|
3632
|
-
readonly type: "string";
|
|
3633
|
-
};
|
|
3634
3661
|
};
|
|
3635
|
-
readonly required: readonly ["
|
|
3662
|
+
readonly required: readonly ["not_valid_for_activities", "all_activities", "activities"];
|
|
3636
3663
|
readonly type: "object";
|
|
3637
3664
|
};
|
|
3638
3665
|
declare const FacilityOfferConditionCourtsSchema: {
|
|
3639
3666
|
readonly properties: {
|
|
3640
|
-
readonly
|
|
3641
|
-
readonly
|
|
3642
|
-
|
|
3643
|
-
|
|
3644
|
-
|
|
3667
|
+
readonly courts: {
|
|
3668
|
+
readonly items: {
|
|
3669
|
+
readonly properties: {
|
|
3670
|
+
readonly id: {
|
|
3671
|
+
readonly type: "integer";
|
|
3672
|
+
};
|
|
3673
|
+
readonly name: {
|
|
3674
|
+
readonly type: "string";
|
|
3675
|
+
};
|
|
3676
|
+
};
|
|
3677
|
+
readonly required: readonly ["id", "name"];
|
|
3678
|
+
readonly type: "object";
|
|
3679
|
+
};
|
|
3680
|
+
readonly type: "array";
|
|
3645
3681
|
};
|
|
3646
3682
|
};
|
|
3647
|
-
readonly required: readonly ["
|
|
3683
|
+
readonly required: readonly ["courts"];
|
|
3648
3684
|
readonly type: "object";
|
|
3649
3685
|
};
|
|
3650
3686
|
declare const FacilityOfferConditionDateSchema: {
|
|
3651
3687
|
readonly properties: {
|
|
3652
3688
|
readonly end_date: {
|
|
3653
|
-
readonly format: "date
|
|
3689
|
+
readonly format: "date";
|
|
3654
3690
|
readonly type: "string";
|
|
3655
3691
|
};
|
|
3656
3692
|
readonly start_date: {
|
|
3657
|
-
readonly format: "date
|
|
3658
|
-
readonly type: "string";
|
|
3659
|
-
};
|
|
3660
|
-
readonly type: {
|
|
3693
|
+
readonly format: "date";
|
|
3661
3694
|
readonly type: "string";
|
|
3662
3695
|
};
|
|
3663
3696
|
};
|
|
3664
|
-
readonly required: readonly ["
|
|
3697
|
+
readonly required: readonly ["start_date", "end_date"];
|
|
3665
3698
|
readonly type: "object";
|
|
3666
3699
|
};
|
|
3667
3700
|
declare const FacilityOfferConditionHoursinadvanceSchema: {
|
|
@@ -3669,20 +3702,8 @@ declare const FacilityOfferConditionHoursinadvanceSchema: {
|
|
|
3669
3702
|
readonly nr_of_hours: {
|
|
3670
3703
|
readonly type: "integer";
|
|
3671
3704
|
};
|
|
3672
|
-
readonly type: {
|
|
3673
|
-
readonly type: "string";
|
|
3674
|
-
};
|
|
3675
|
-
};
|
|
3676
|
-
readonly required: readonly ["type", "nr_of_hours"];
|
|
3677
|
-
readonly type: "object";
|
|
3678
|
-
};
|
|
3679
|
-
declare const FacilityOfferConditionNotImplementedSchema: {
|
|
3680
|
-
readonly properties: {
|
|
3681
|
-
readonly type: {
|
|
3682
|
-
readonly type: "string";
|
|
3683
|
-
};
|
|
3684
3705
|
};
|
|
3685
|
-
readonly required: readonly ["
|
|
3706
|
+
readonly required: readonly ["nr_of_hours"];
|
|
3686
3707
|
readonly type: "object";
|
|
3687
3708
|
};
|
|
3688
3709
|
declare const FacilityOfferConditionTimeSchema: {
|
|
@@ -3695,18 +3716,12 @@ declare const FacilityOfferConditionTimeSchema: {
|
|
|
3695
3716
|
readonly format: "time";
|
|
3696
3717
|
readonly type: "string";
|
|
3697
3718
|
};
|
|
3698
|
-
readonly type: {
|
|
3699
|
-
readonly type: "string";
|
|
3700
|
-
};
|
|
3701
3719
|
};
|
|
3702
|
-
readonly required: readonly ["
|
|
3720
|
+
readonly required: readonly ["start_time", "end_time"];
|
|
3703
3721
|
readonly type: "object";
|
|
3704
3722
|
};
|
|
3705
3723
|
declare const FacilityOfferConditionWeekdaysSchema: {
|
|
3706
3724
|
readonly properties: {
|
|
3707
|
-
readonly type: {
|
|
3708
|
-
readonly type: "string";
|
|
3709
|
-
};
|
|
3710
3725
|
readonly weekdays: {
|
|
3711
3726
|
readonly items: {
|
|
3712
3727
|
readonly description: "Interger representation of weekday. 1 (Monday), 7 (Sunday).";
|
|
@@ -3715,7 +3730,7 @@ declare const FacilityOfferConditionWeekdaysSchema: {
|
|
|
3715
3730
|
readonly type: "array";
|
|
3716
3731
|
};
|
|
3717
3732
|
};
|
|
3718
|
-
readonly required: readonly ["
|
|
3733
|
+
readonly required: readonly ["weekdays"];
|
|
3719
3734
|
readonly type: "object";
|
|
3720
3735
|
};
|
|
3721
3736
|
declare const FacilityOfferListSchema: {
|
|
@@ -4007,7 +4022,6 @@ declare const schemas_gen_FacilityOfferConditionActivitiesSchema: typeof Facilit
|
|
|
4007
4022
|
declare const schemas_gen_FacilityOfferConditionCourtsSchema: typeof FacilityOfferConditionCourtsSchema;
|
|
4008
4023
|
declare const schemas_gen_FacilityOfferConditionDateSchema: typeof FacilityOfferConditionDateSchema;
|
|
4009
4024
|
declare const schemas_gen_FacilityOfferConditionHoursinadvanceSchema: typeof FacilityOfferConditionHoursinadvanceSchema;
|
|
4010
|
-
declare const schemas_gen_FacilityOfferConditionNotImplementedSchema: typeof FacilityOfferConditionNotImplementedSchema;
|
|
4011
4025
|
declare const schemas_gen_FacilityOfferConditionSchema: typeof FacilityOfferConditionSchema;
|
|
4012
4026
|
declare const schemas_gen_FacilityOfferConditionTimeSchema: typeof FacilityOfferConditionTimeSchema;
|
|
4013
4027
|
declare const schemas_gen_FacilityOfferConditionWeekdaysSchema: typeof FacilityOfferConditionWeekdaysSchema;
|
|
@@ -4025,7 +4039,7 @@ declare const schemas_gen_pkgOpenapiSharedErrorsSchema: typeof pkgOpenapiSharedE
|
|
|
4025
4039
|
declare const schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema: typeof pkgOpenapiSharedOffsetPaginatedResultSetSchema;
|
|
4026
4040
|
declare const schemas_gen_pkgOpenapiSharedProblemDetailsSchema: typeof pkgOpenapiSharedProblemDetailsSchema;
|
|
4027
4041
|
declare namespace schemas_gen {
|
|
4028
|
-
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,
|
|
4042
|
+
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 };
|
|
4029
4043
|
}
|
|
4030
4044
|
|
|
4031
4045
|
type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
|
|
@@ -4310,7 +4324,6 @@ type indexV1_FacilityOfferConditionActivities = FacilityOfferConditionActivities
|
|
|
4310
4324
|
type indexV1_FacilityOfferConditionCourts = FacilityOfferConditionCourts;
|
|
4311
4325
|
type indexV1_FacilityOfferConditionDate = FacilityOfferConditionDate;
|
|
4312
4326
|
type indexV1_FacilityOfferConditionHoursinadvance = FacilityOfferConditionHoursinadvance;
|
|
4313
|
-
type indexV1_FacilityOfferConditionNotImplemented = FacilityOfferConditionNotImplemented;
|
|
4314
4327
|
type indexV1_FacilityOfferConditionTime = FacilityOfferConditionTime;
|
|
4315
4328
|
type indexV1_FacilityOfferConditionWeekdays = FacilityOfferConditionWeekdays;
|
|
4316
4329
|
type indexV1_FacilityOfferList = FacilityOfferList;
|
|
@@ -4360,7 +4373,7 @@ declare const indexV1_findBookings: typeof findBookings;
|
|
|
4360
4373
|
declare const indexV1_listFacilityOffers: typeof listFacilityOffers;
|
|
4361
4374
|
declare const indexV1_updateBooking: typeof updateBooking;
|
|
4362
4375
|
declare namespace indexV1 {
|
|
4363
|
-
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
|
|
4376
|
+
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 };
|
|
4364
4377
|
}
|
|
4365
4378
|
|
|
4366
4379
|
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, 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, chatTarget, type checkoutResponse, clientType, type competitionAdminAccount, type config, type configuration, type configurationEntry, type configurationMap, type configurationResource, type coupon, type createBookingEventExternal, createChatResponse, 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 getChatAuthResponse, type getChatResponse, type giftCard, type hideFullyBooked, type hours, type internalPaymentMethod, type levelRange, type limitParam, type listChatsResponse, 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, type userFacility, type userId, type userInfo, type userMembership, type userOfferPunchCardsResponse, type userOfferValueCardsResponse, type userPublicProfile, userPunchCard, type userValueCard, indexV1 as v1, type valueCardOutcome };
|