@matchi/api 0.20250317.1 → 0.20250325.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 +64 -56
- package/dist/main/index.d.ts +64 -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
|
@@ -2732,6 +2732,15 @@ declare class PlaySessionServiceV1Service {
|
|
|
2732
2732
|
* @throws ApiError
|
|
2733
2733
|
*/
|
|
2734
2734
|
static addUserWithId(sessionId: string, userId: string, requestBody: playsessionUserDetails): CancelablePromise<playSession>;
|
|
2735
|
+
/**
|
|
2736
|
+
* Update player in play session given user id
|
|
2737
|
+
* @param sessionId Play Session ID
|
|
2738
|
+
* @param userId The user ID of the play session participant to update
|
|
2739
|
+
* @param requestBody
|
|
2740
|
+
* @returns playSession User is updated in the playsession
|
|
2741
|
+
* @throws ApiError
|
|
2742
|
+
*/
|
|
2743
|
+
static updateUserWithId(sessionId: string, userId: string, requestBody: playsessionUserDetails): CancelablePromise<playSession>;
|
|
2735
2744
|
/**
|
|
2736
2745
|
* Remove player from play session given user email
|
|
2737
2746
|
* @param sessionId Play Session ID
|
|
@@ -2988,37 +2997,36 @@ type FacilityOffer = {
|
|
|
2988
2997
|
data: FacilityPunchCardData | FacilityValueCardData;
|
|
2989
2998
|
type: 'FACILITY_PUNCH_CARD' | 'FACILITY_VALUE_CARD';
|
|
2990
2999
|
};
|
|
2991
|
-
type FacilityOfferCondition = (FacilityOfferConditionWeekdays | FacilityOfferConditionCourts | FacilityOfferConditionDate | FacilityOfferConditionTime | FacilityOfferConditionHoursinadvance | FacilityOfferConditionActivities
|
|
2992
|
-
type
|
|
3000
|
+
type FacilityOfferCondition = (FacilityOfferConditionWeekdays | FacilityOfferConditionCourts | FacilityOfferConditionDate | FacilityOfferConditionTime | FacilityOfferConditionHoursinadvance | FacilityOfferConditionActivities) & {
|
|
3001
|
+
type: 'WEEKDAYS' | 'COURTS' | 'DATE' | 'TIME' | 'HOURSINADVANCE' | 'ACTIVITIES';
|
|
2993
3002
|
};
|
|
2994
3003
|
type FacilityOfferConditionActivities = {
|
|
3004
|
+
activities: Array<{
|
|
3005
|
+
id: number;
|
|
3006
|
+
name: string;
|
|
3007
|
+
type?: string;
|
|
3008
|
+
}>;
|
|
2995
3009
|
all_activities: boolean;
|
|
2996
3010
|
not_valid_for_activities: boolean;
|
|
2997
|
-
type: string;
|
|
2998
3011
|
};
|
|
2999
3012
|
type FacilityOfferConditionCourts = {
|
|
3000
|
-
|
|
3001
|
-
|
|
3013
|
+
courts: Array<{
|
|
3014
|
+
id: number;
|
|
3015
|
+
name: string;
|
|
3016
|
+
}>;
|
|
3002
3017
|
};
|
|
3003
3018
|
type FacilityOfferConditionDate = {
|
|
3004
3019
|
end_date: string;
|
|
3005
3020
|
start_date: string;
|
|
3006
|
-
type: string;
|
|
3007
3021
|
};
|
|
3008
3022
|
type FacilityOfferConditionHoursinadvance = {
|
|
3009
3023
|
nr_of_hours: number;
|
|
3010
|
-
type: string;
|
|
3011
|
-
};
|
|
3012
|
-
type FacilityOfferConditionNotImplemented = {
|
|
3013
|
-
type: string;
|
|
3014
3024
|
};
|
|
3015
3025
|
type FacilityOfferConditionTime = {
|
|
3016
3026
|
end_time: string;
|
|
3017
3027
|
start_time: string;
|
|
3018
|
-
type: string;
|
|
3019
3028
|
};
|
|
3020
3029
|
type FacilityOfferConditionWeekdays = {
|
|
3021
|
-
type: string;
|
|
3022
3030
|
weekdays: Array<number>;
|
|
3023
3031
|
};
|
|
3024
3032
|
type FacilityOfferList = {
|
|
@@ -3600,59 +3608,79 @@ declare const FacilityOfferConditionSchema: {
|
|
|
3600
3608
|
readonly $ref: "#/components/schemas/FacilityOfferConditionHoursinadvance";
|
|
3601
3609
|
}, {
|
|
3602
3610
|
readonly $ref: "#/components/schemas/FacilityOfferConditionActivities";
|
|
3603
|
-
}, {
|
|
3604
|
-
readonly $ref: "#/components/schemas/FacilityOfferConditionNotImplemented";
|
|
3605
3611
|
}];
|
|
3606
3612
|
readonly properties: {
|
|
3607
3613
|
readonly type: {
|
|
3608
|
-
readonly enum: readonly ["WEEKDAYS", "COURTS", "DATE", "TIME", "HOURSINADVANCE", "ACTIVITIES"
|
|
3614
|
+
readonly enum: readonly ["WEEKDAYS", "COURTS", "DATE", "TIME", "HOURSINADVANCE", "ACTIVITIES"];
|
|
3609
3615
|
readonly type: "string";
|
|
3610
3616
|
};
|
|
3611
3617
|
};
|
|
3618
|
+
readonly required: readonly ["type"];
|
|
3612
3619
|
readonly type: "object";
|
|
3613
3620
|
};
|
|
3614
3621
|
declare const FacilityOfferConditionActivitiesSchema: {
|
|
3615
3622
|
readonly properties: {
|
|
3623
|
+
readonly activities: {
|
|
3624
|
+
readonly items: {
|
|
3625
|
+
readonly properties: {
|
|
3626
|
+
readonly id: {
|
|
3627
|
+
readonly type: "integer";
|
|
3628
|
+
};
|
|
3629
|
+
readonly name: {
|
|
3630
|
+
readonly type: "string";
|
|
3631
|
+
};
|
|
3632
|
+
readonly type: {
|
|
3633
|
+
readonly type: "string";
|
|
3634
|
+
};
|
|
3635
|
+
};
|
|
3636
|
+
readonly required: readonly ["id", "name"];
|
|
3637
|
+
readonly type: "object";
|
|
3638
|
+
};
|
|
3639
|
+
readonly type: "array";
|
|
3640
|
+
};
|
|
3616
3641
|
readonly all_activities: {
|
|
3617
3642
|
readonly type: "boolean";
|
|
3618
3643
|
};
|
|
3619
3644
|
readonly not_valid_for_activities: {
|
|
3620
3645
|
readonly type: "boolean";
|
|
3621
3646
|
};
|
|
3622
|
-
readonly type: {
|
|
3623
|
-
readonly type: "string";
|
|
3624
|
-
};
|
|
3625
3647
|
};
|
|
3626
|
-
readonly required: readonly ["
|
|
3648
|
+
readonly required: readonly ["not_valid_for_activities", "all_activities", "activities"];
|
|
3627
3649
|
readonly type: "object";
|
|
3628
3650
|
};
|
|
3629
3651
|
declare const FacilityOfferConditionCourtsSchema: {
|
|
3630
3652
|
readonly properties: {
|
|
3631
|
-
readonly
|
|
3632
|
-
readonly
|
|
3633
|
-
|
|
3634
|
-
|
|
3635
|
-
|
|
3653
|
+
readonly courts: {
|
|
3654
|
+
readonly items: {
|
|
3655
|
+
readonly properties: {
|
|
3656
|
+
readonly id: {
|
|
3657
|
+
readonly type: "integer";
|
|
3658
|
+
};
|
|
3659
|
+
readonly name: {
|
|
3660
|
+
readonly type: "string";
|
|
3661
|
+
};
|
|
3662
|
+
};
|
|
3663
|
+
readonly required: readonly ["id", "name"];
|
|
3664
|
+
readonly type: "object";
|
|
3665
|
+
};
|
|
3666
|
+
readonly type: "array";
|
|
3636
3667
|
};
|
|
3637
3668
|
};
|
|
3638
|
-
readonly required: readonly ["
|
|
3669
|
+
readonly required: readonly ["courts"];
|
|
3639
3670
|
readonly type: "object";
|
|
3640
3671
|
};
|
|
3641
3672
|
declare const FacilityOfferConditionDateSchema: {
|
|
3642
3673
|
readonly properties: {
|
|
3643
3674
|
readonly end_date: {
|
|
3644
|
-
readonly format: "date
|
|
3675
|
+
readonly format: "date";
|
|
3645
3676
|
readonly type: "string";
|
|
3646
3677
|
};
|
|
3647
3678
|
readonly start_date: {
|
|
3648
|
-
readonly format: "date
|
|
3649
|
-
readonly type: "string";
|
|
3650
|
-
};
|
|
3651
|
-
readonly type: {
|
|
3679
|
+
readonly format: "date";
|
|
3652
3680
|
readonly type: "string";
|
|
3653
3681
|
};
|
|
3654
3682
|
};
|
|
3655
|
-
readonly required: readonly ["
|
|
3683
|
+
readonly required: readonly ["start_date", "end_date"];
|
|
3656
3684
|
readonly type: "object";
|
|
3657
3685
|
};
|
|
3658
3686
|
declare const FacilityOfferConditionHoursinadvanceSchema: {
|
|
@@ -3660,20 +3688,8 @@ declare const FacilityOfferConditionHoursinadvanceSchema: {
|
|
|
3660
3688
|
readonly nr_of_hours: {
|
|
3661
3689
|
readonly type: "integer";
|
|
3662
3690
|
};
|
|
3663
|
-
readonly type: {
|
|
3664
|
-
readonly type: "string";
|
|
3665
|
-
};
|
|
3666
|
-
};
|
|
3667
|
-
readonly required: readonly ["type", "nr_of_hours"];
|
|
3668
|
-
readonly type: "object";
|
|
3669
|
-
};
|
|
3670
|
-
declare const FacilityOfferConditionNotImplementedSchema: {
|
|
3671
|
-
readonly properties: {
|
|
3672
|
-
readonly type: {
|
|
3673
|
-
readonly type: "string";
|
|
3674
|
-
};
|
|
3675
3691
|
};
|
|
3676
|
-
readonly required: readonly ["
|
|
3692
|
+
readonly required: readonly ["nr_of_hours"];
|
|
3677
3693
|
readonly type: "object";
|
|
3678
3694
|
};
|
|
3679
3695
|
declare const FacilityOfferConditionTimeSchema: {
|
|
@@ -3686,18 +3702,12 @@ declare const FacilityOfferConditionTimeSchema: {
|
|
|
3686
3702
|
readonly format: "time";
|
|
3687
3703
|
readonly type: "string";
|
|
3688
3704
|
};
|
|
3689
|
-
readonly type: {
|
|
3690
|
-
readonly type: "string";
|
|
3691
|
-
};
|
|
3692
3705
|
};
|
|
3693
|
-
readonly required: readonly ["
|
|
3706
|
+
readonly required: readonly ["start_time", "end_time"];
|
|
3694
3707
|
readonly type: "object";
|
|
3695
3708
|
};
|
|
3696
3709
|
declare const FacilityOfferConditionWeekdaysSchema: {
|
|
3697
3710
|
readonly properties: {
|
|
3698
|
-
readonly type: {
|
|
3699
|
-
readonly type: "string";
|
|
3700
|
-
};
|
|
3701
3711
|
readonly weekdays: {
|
|
3702
3712
|
readonly items: {
|
|
3703
3713
|
readonly description: "Interger representation of weekday. 1 (Monday), 7 (Sunday).";
|
|
@@ -3706,7 +3716,7 @@ declare const FacilityOfferConditionWeekdaysSchema: {
|
|
|
3706
3716
|
readonly type: "array";
|
|
3707
3717
|
};
|
|
3708
3718
|
};
|
|
3709
|
-
readonly required: readonly ["
|
|
3719
|
+
readonly required: readonly ["weekdays"];
|
|
3710
3720
|
readonly type: "object";
|
|
3711
3721
|
};
|
|
3712
3722
|
declare const FacilityOfferListSchema: {
|
|
@@ -3998,7 +4008,6 @@ declare const schemas_gen_FacilityOfferConditionActivitiesSchema: typeof Facilit
|
|
|
3998
4008
|
declare const schemas_gen_FacilityOfferConditionCourtsSchema: typeof FacilityOfferConditionCourtsSchema;
|
|
3999
4009
|
declare const schemas_gen_FacilityOfferConditionDateSchema: typeof FacilityOfferConditionDateSchema;
|
|
4000
4010
|
declare const schemas_gen_FacilityOfferConditionHoursinadvanceSchema: typeof FacilityOfferConditionHoursinadvanceSchema;
|
|
4001
|
-
declare const schemas_gen_FacilityOfferConditionNotImplementedSchema: typeof FacilityOfferConditionNotImplementedSchema;
|
|
4002
4011
|
declare const schemas_gen_FacilityOfferConditionSchema: typeof FacilityOfferConditionSchema;
|
|
4003
4012
|
declare const schemas_gen_FacilityOfferConditionTimeSchema: typeof FacilityOfferConditionTimeSchema;
|
|
4004
4013
|
declare const schemas_gen_FacilityOfferConditionWeekdaysSchema: typeof FacilityOfferConditionWeekdaysSchema;
|
|
@@ -4016,7 +4025,7 @@ declare const schemas_gen_pkgOpenapiSharedErrorsSchema: typeof pkgOpenapiSharedE
|
|
|
4016
4025
|
declare const schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema: typeof pkgOpenapiSharedOffsetPaginatedResultSetSchema;
|
|
4017
4026
|
declare const schemas_gen_pkgOpenapiSharedProblemDetailsSchema: typeof pkgOpenapiSharedProblemDetailsSchema;
|
|
4018
4027
|
declare namespace schemas_gen {
|
|
4019
|
-
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,
|
|
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, 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 };
|
|
4020
4029
|
}
|
|
4021
4030
|
|
|
4022
4031
|
type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
|
|
@@ -4301,7 +4310,6 @@ type indexV1_FacilityOfferConditionActivities = FacilityOfferConditionActivities
|
|
|
4301
4310
|
type indexV1_FacilityOfferConditionCourts = FacilityOfferConditionCourts;
|
|
4302
4311
|
type indexV1_FacilityOfferConditionDate = FacilityOfferConditionDate;
|
|
4303
4312
|
type indexV1_FacilityOfferConditionHoursinadvance = FacilityOfferConditionHoursinadvance;
|
|
4304
|
-
type indexV1_FacilityOfferConditionNotImplemented = FacilityOfferConditionNotImplemented;
|
|
4305
4313
|
type indexV1_FacilityOfferConditionTime = FacilityOfferConditionTime;
|
|
4306
4314
|
type indexV1_FacilityOfferConditionWeekdays = FacilityOfferConditionWeekdays;
|
|
4307
4315
|
type indexV1_FacilityOfferList = FacilityOfferList;
|
|
@@ -4351,7 +4359,7 @@ declare const indexV1_findBookings: typeof findBookings;
|
|
|
4351
4359
|
declare const indexV1_listFacilityOffers: typeof listFacilityOffers;
|
|
4352
4360
|
declare const indexV1_updateBooking: typeof updateBooking;
|
|
4353
4361
|
declare namespace indexV1 {
|
|
4354
|
-
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
|
|
4362
|
+
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 };
|
|
4355
4363
|
}
|
|
4356
4364
|
|
|
4357
4365
|
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
|
@@ -2732,6 +2732,15 @@ declare class PlaySessionServiceV1Service {
|
|
|
2732
2732
|
* @throws ApiError
|
|
2733
2733
|
*/
|
|
2734
2734
|
static addUserWithId(sessionId: string, userId: string, requestBody: playsessionUserDetails): CancelablePromise<playSession>;
|
|
2735
|
+
/**
|
|
2736
|
+
* Update player in play session given user id
|
|
2737
|
+
* @param sessionId Play Session ID
|
|
2738
|
+
* @param userId The user ID of the play session participant to update
|
|
2739
|
+
* @param requestBody
|
|
2740
|
+
* @returns playSession User is updated in the playsession
|
|
2741
|
+
* @throws ApiError
|
|
2742
|
+
*/
|
|
2743
|
+
static updateUserWithId(sessionId: string, userId: string, requestBody: playsessionUserDetails): CancelablePromise<playSession>;
|
|
2735
2744
|
/**
|
|
2736
2745
|
* Remove player from play session given user email
|
|
2737
2746
|
* @param sessionId Play Session ID
|
|
@@ -2988,37 +2997,36 @@ type FacilityOffer = {
|
|
|
2988
2997
|
data: FacilityPunchCardData | FacilityValueCardData;
|
|
2989
2998
|
type: 'FACILITY_PUNCH_CARD' | 'FACILITY_VALUE_CARD';
|
|
2990
2999
|
};
|
|
2991
|
-
type FacilityOfferCondition = (FacilityOfferConditionWeekdays | FacilityOfferConditionCourts | FacilityOfferConditionDate | FacilityOfferConditionTime | FacilityOfferConditionHoursinadvance | FacilityOfferConditionActivities
|
|
2992
|
-
type
|
|
3000
|
+
type FacilityOfferCondition = (FacilityOfferConditionWeekdays | FacilityOfferConditionCourts | FacilityOfferConditionDate | FacilityOfferConditionTime | FacilityOfferConditionHoursinadvance | FacilityOfferConditionActivities) & {
|
|
3001
|
+
type: 'WEEKDAYS' | 'COURTS' | 'DATE' | 'TIME' | 'HOURSINADVANCE' | 'ACTIVITIES';
|
|
2993
3002
|
};
|
|
2994
3003
|
type FacilityOfferConditionActivities = {
|
|
3004
|
+
activities: Array<{
|
|
3005
|
+
id: number;
|
|
3006
|
+
name: string;
|
|
3007
|
+
type?: string;
|
|
3008
|
+
}>;
|
|
2995
3009
|
all_activities: boolean;
|
|
2996
3010
|
not_valid_for_activities: boolean;
|
|
2997
|
-
type: string;
|
|
2998
3011
|
};
|
|
2999
3012
|
type FacilityOfferConditionCourts = {
|
|
3000
|
-
|
|
3001
|
-
|
|
3013
|
+
courts: Array<{
|
|
3014
|
+
id: number;
|
|
3015
|
+
name: string;
|
|
3016
|
+
}>;
|
|
3002
3017
|
};
|
|
3003
3018
|
type FacilityOfferConditionDate = {
|
|
3004
3019
|
end_date: string;
|
|
3005
3020
|
start_date: string;
|
|
3006
|
-
type: string;
|
|
3007
3021
|
};
|
|
3008
3022
|
type FacilityOfferConditionHoursinadvance = {
|
|
3009
3023
|
nr_of_hours: number;
|
|
3010
|
-
type: string;
|
|
3011
|
-
};
|
|
3012
|
-
type FacilityOfferConditionNotImplemented = {
|
|
3013
|
-
type: string;
|
|
3014
3024
|
};
|
|
3015
3025
|
type FacilityOfferConditionTime = {
|
|
3016
3026
|
end_time: string;
|
|
3017
3027
|
start_time: string;
|
|
3018
|
-
type: string;
|
|
3019
3028
|
};
|
|
3020
3029
|
type FacilityOfferConditionWeekdays = {
|
|
3021
|
-
type: string;
|
|
3022
3030
|
weekdays: Array<number>;
|
|
3023
3031
|
};
|
|
3024
3032
|
type FacilityOfferList = {
|
|
@@ -3600,59 +3608,79 @@ declare const FacilityOfferConditionSchema: {
|
|
|
3600
3608
|
readonly $ref: "#/components/schemas/FacilityOfferConditionHoursinadvance";
|
|
3601
3609
|
}, {
|
|
3602
3610
|
readonly $ref: "#/components/schemas/FacilityOfferConditionActivities";
|
|
3603
|
-
}, {
|
|
3604
|
-
readonly $ref: "#/components/schemas/FacilityOfferConditionNotImplemented";
|
|
3605
3611
|
}];
|
|
3606
3612
|
readonly properties: {
|
|
3607
3613
|
readonly type: {
|
|
3608
|
-
readonly enum: readonly ["WEEKDAYS", "COURTS", "DATE", "TIME", "HOURSINADVANCE", "ACTIVITIES"
|
|
3614
|
+
readonly enum: readonly ["WEEKDAYS", "COURTS", "DATE", "TIME", "HOURSINADVANCE", "ACTIVITIES"];
|
|
3609
3615
|
readonly type: "string";
|
|
3610
3616
|
};
|
|
3611
3617
|
};
|
|
3618
|
+
readonly required: readonly ["type"];
|
|
3612
3619
|
readonly type: "object";
|
|
3613
3620
|
};
|
|
3614
3621
|
declare const FacilityOfferConditionActivitiesSchema: {
|
|
3615
3622
|
readonly properties: {
|
|
3623
|
+
readonly activities: {
|
|
3624
|
+
readonly items: {
|
|
3625
|
+
readonly properties: {
|
|
3626
|
+
readonly id: {
|
|
3627
|
+
readonly type: "integer";
|
|
3628
|
+
};
|
|
3629
|
+
readonly name: {
|
|
3630
|
+
readonly type: "string";
|
|
3631
|
+
};
|
|
3632
|
+
readonly type: {
|
|
3633
|
+
readonly type: "string";
|
|
3634
|
+
};
|
|
3635
|
+
};
|
|
3636
|
+
readonly required: readonly ["id", "name"];
|
|
3637
|
+
readonly type: "object";
|
|
3638
|
+
};
|
|
3639
|
+
readonly type: "array";
|
|
3640
|
+
};
|
|
3616
3641
|
readonly all_activities: {
|
|
3617
3642
|
readonly type: "boolean";
|
|
3618
3643
|
};
|
|
3619
3644
|
readonly not_valid_for_activities: {
|
|
3620
3645
|
readonly type: "boolean";
|
|
3621
3646
|
};
|
|
3622
|
-
readonly type: {
|
|
3623
|
-
readonly type: "string";
|
|
3624
|
-
};
|
|
3625
3647
|
};
|
|
3626
|
-
readonly required: readonly ["
|
|
3648
|
+
readonly required: readonly ["not_valid_for_activities", "all_activities", "activities"];
|
|
3627
3649
|
readonly type: "object";
|
|
3628
3650
|
};
|
|
3629
3651
|
declare const FacilityOfferConditionCourtsSchema: {
|
|
3630
3652
|
readonly properties: {
|
|
3631
|
-
readonly
|
|
3632
|
-
readonly
|
|
3633
|
-
|
|
3634
|
-
|
|
3635
|
-
|
|
3653
|
+
readonly courts: {
|
|
3654
|
+
readonly items: {
|
|
3655
|
+
readonly properties: {
|
|
3656
|
+
readonly id: {
|
|
3657
|
+
readonly type: "integer";
|
|
3658
|
+
};
|
|
3659
|
+
readonly name: {
|
|
3660
|
+
readonly type: "string";
|
|
3661
|
+
};
|
|
3662
|
+
};
|
|
3663
|
+
readonly required: readonly ["id", "name"];
|
|
3664
|
+
readonly type: "object";
|
|
3665
|
+
};
|
|
3666
|
+
readonly type: "array";
|
|
3636
3667
|
};
|
|
3637
3668
|
};
|
|
3638
|
-
readonly required: readonly ["
|
|
3669
|
+
readonly required: readonly ["courts"];
|
|
3639
3670
|
readonly type: "object";
|
|
3640
3671
|
};
|
|
3641
3672
|
declare const FacilityOfferConditionDateSchema: {
|
|
3642
3673
|
readonly properties: {
|
|
3643
3674
|
readonly end_date: {
|
|
3644
|
-
readonly format: "date
|
|
3675
|
+
readonly format: "date";
|
|
3645
3676
|
readonly type: "string";
|
|
3646
3677
|
};
|
|
3647
3678
|
readonly start_date: {
|
|
3648
|
-
readonly format: "date
|
|
3649
|
-
readonly type: "string";
|
|
3650
|
-
};
|
|
3651
|
-
readonly type: {
|
|
3679
|
+
readonly format: "date";
|
|
3652
3680
|
readonly type: "string";
|
|
3653
3681
|
};
|
|
3654
3682
|
};
|
|
3655
|
-
readonly required: readonly ["
|
|
3683
|
+
readonly required: readonly ["start_date", "end_date"];
|
|
3656
3684
|
readonly type: "object";
|
|
3657
3685
|
};
|
|
3658
3686
|
declare const FacilityOfferConditionHoursinadvanceSchema: {
|
|
@@ -3660,20 +3688,8 @@ declare const FacilityOfferConditionHoursinadvanceSchema: {
|
|
|
3660
3688
|
readonly nr_of_hours: {
|
|
3661
3689
|
readonly type: "integer";
|
|
3662
3690
|
};
|
|
3663
|
-
readonly type: {
|
|
3664
|
-
readonly type: "string";
|
|
3665
|
-
};
|
|
3666
|
-
};
|
|
3667
|
-
readonly required: readonly ["type", "nr_of_hours"];
|
|
3668
|
-
readonly type: "object";
|
|
3669
|
-
};
|
|
3670
|
-
declare const FacilityOfferConditionNotImplementedSchema: {
|
|
3671
|
-
readonly properties: {
|
|
3672
|
-
readonly type: {
|
|
3673
|
-
readonly type: "string";
|
|
3674
|
-
};
|
|
3675
3691
|
};
|
|
3676
|
-
readonly required: readonly ["
|
|
3692
|
+
readonly required: readonly ["nr_of_hours"];
|
|
3677
3693
|
readonly type: "object";
|
|
3678
3694
|
};
|
|
3679
3695
|
declare const FacilityOfferConditionTimeSchema: {
|
|
@@ -3686,18 +3702,12 @@ declare const FacilityOfferConditionTimeSchema: {
|
|
|
3686
3702
|
readonly format: "time";
|
|
3687
3703
|
readonly type: "string";
|
|
3688
3704
|
};
|
|
3689
|
-
readonly type: {
|
|
3690
|
-
readonly type: "string";
|
|
3691
|
-
};
|
|
3692
3705
|
};
|
|
3693
|
-
readonly required: readonly ["
|
|
3706
|
+
readonly required: readonly ["start_time", "end_time"];
|
|
3694
3707
|
readonly type: "object";
|
|
3695
3708
|
};
|
|
3696
3709
|
declare const FacilityOfferConditionWeekdaysSchema: {
|
|
3697
3710
|
readonly properties: {
|
|
3698
|
-
readonly type: {
|
|
3699
|
-
readonly type: "string";
|
|
3700
|
-
};
|
|
3701
3711
|
readonly weekdays: {
|
|
3702
3712
|
readonly items: {
|
|
3703
3713
|
readonly description: "Interger representation of weekday. 1 (Monday), 7 (Sunday).";
|
|
@@ -3706,7 +3716,7 @@ declare const FacilityOfferConditionWeekdaysSchema: {
|
|
|
3706
3716
|
readonly type: "array";
|
|
3707
3717
|
};
|
|
3708
3718
|
};
|
|
3709
|
-
readonly required: readonly ["
|
|
3719
|
+
readonly required: readonly ["weekdays"];
|
|
3710
3720
|
readonly type: "object";
|
|
3711
3721
|
};
|
|
3712
3722
|
declare const FacilityOfferListSchema: {
|
|
@@ -3998,7 +4008,6 @@ declare const schemas_gen_FacilityOfferConditionActivitiesSchema: typeof Facilit
|
|
|
3998
4008
|
declare const schemas_gen_FacilityOfferConditionCourtsSchema: typeof FacilityOfferConditionCourtsSchema;
|
|
3999
4009
|
declare const schemas_gen_FacilityOfferConditionDateSchema: typeof FacilityOfferConditionDateSchema;
|
|
4000
4010
|
declare const schemas_gen_FacilityOfferConditionHoursinadvanceSchema: typeof FacilityOfferConditionHoursinadvanceSchema;
|
|
4001
|
-
declare const schemas_gen_FacilityOfferConditionNotImplementedSchema: typeof FacilityOfferConditionNotImplementedSchema;
|
|
4002
4011
|
declare const schemas_gen_FacilityOfferConditionSchema: typeof FacilityOfferConditionSchema;
|
|
4003
4012
|
declare const schemas_gen_FacilityOfferConditionTimeSchema: typeof FacilityOfferConditionTimeSchema;
|
|
4004
4013
|
declare const schemas_gen_FacilityOfferConditionWeekdaysSchema: typeof FacilityOfferConditionWeekdaysSchema;
|
|
@@ -4016,7 +4025,7 @@ declare const schemas_gen_pkgOpenapiSharedErrorsSchema: typeof pkgOpenapiSharedE
|
|
|
4016
4025
|
declare const schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema: typeof pkgOpenapiSharedOffsetPaginatedResultSetSchema;
|
|
4017
4026
|
declare const schemas_gen_pkgOpenapiSharedProblemDetailsSchema: typeof pkgOpenapiSharedProblemDetailsSchema;
|
|
4018
4027
|
declare namespace schemas_gen {
|
|
4019
|
-
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,
|
|
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, 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 };
|
|
4020
4029
|
}
|
|
4021
4030
|
|
|
4022
4031
|
type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
|
|
@@ -4301,7 +4310,6 @@ type indexV1_FacilityOfferConditionActivities = FacilityOfferConditionActivities
|
|
|
4301
4310
|
type indexV1_FacilityOfferConditionCourts = FacilityOfferConditionCourts;
|
|
4302
4311
|
type indexV1_FacilityOfferConditionDate = FacilityOfferConditionDate;
|
|
4303
4312
|
type indexV1_FacilityOfferConditionHoursinadvance = FacilityOfferConditionHoursinadvance;
|
|
4304
|
-
type indexV1_FacilityOfferConditionNotImplemented = FacilityOfferConditionNotImplemented;
|
|
4305
4313
|
type indexV1_FacilityOfferConditionTime = FacilityOfferConditionTime;
|
|
4306
4314
|
type indexV1_FacilityOfferConditionWeekdays = FacilityOfferConditionWeekdays;
|
|
4307
4315
|
type indexV1_FacilityOfferList = FacilityOfferList;
|
|
@@ -4351,7 +4359,7 @@ declare const indexV1_findBookings: typeof findBookings;
|
|
|
4351
4359
|
declare const indexV1_listFacilityOffers: typeof listFacilityOffers;
|
|
4352
4360
|
declare const indexV1_updateBooking: typeof updateBooking;
|
|
4353
4361
|
declare namespace indexV1 {
|
|
4354
|
-
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
|
|
4362
|
+
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 };
|
|
4355
4363
|
}
|
|
4356
4364
|
|
|
4357
4365
|
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 };
|