@matchi/api 0.20250324.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 +55 -56
- package/dist/main/index.d.ts +55 -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
|
@@ -2997,37 +2997,36 @@ type FacilityOffer = {
|
|
|
2997
2997
|
data: FacilityPunchCardData | FacilityValueCardData;
|
|
2998
2998
|
type: 'FACILITY_PUNCH_CARD' | 'FACILITY_VALUE_CARD';
|
|
2999
2999
|
};
|
|
3000
|
-
type FacilityOfferCondition = (FacilityOfferConditionWeekdays | FacilityOfferConditionCourts | FacilityOfferConditionDate | FacilityOfferConditionTime | FacilityOfferConditionHoursinadvance | FacilityOfferConditionActivities
|
|
3001
|
-
type
|
|
3000
|
+
type FacilityOfferCondition = (FacilityOfferConditionWeekdays | FacilityOfferConditionCourts | FacilityOfferConditionDate | FacilityOfferConditionTime | FacilityOfferConditionHoursinadvance | FacilityOfferConditionActivities) & {
|
|
3001
|
+
type: 'WEEKDAYS' | 'COURTS' | 'DATE' | 'TIME' | 'HOURSINADVANCE' | 'ACTIVITIES';
|
|
3002
3002
|
};
|
|
3003
3003
|
type FacilityOfferConditionActivities = {
|
|
3004
|
+
activities: Array<{
|
|
3005
|
+
id: number;
|
|
3006
|
+
name: string;
|
|
3007
|
+
type?: string;
|
|
3008
|
+
}>;
|
|
3004
3009
|
all_activities: boolean;
|
|
3005
3010
|
not_valid_for_activities: boolean;
|
|
3006
|
-
type: string;
|
|
3007
3011
|
};
|
|
3008
3012
|
type FacilityOfferConditionCourts = {
|
|
3009
|
-
|
|
3010
|
-
|
|
3013
|
+
courts: Array<{
|
|
3014
|
+
id: number;
|
|
3015
|
+
name: string;
|
|
3016
|
+
}>;
|
|
3011
3017
|
};
|
|
3012
3018
|
type FacilityOfferConditionDate = {
|
|
3013
3019
|
end_date: string;
|
|
3014
3020
|
start_date: string;
|
|
3015
|
-
type: string;
|
|
3016
3021
|
};
|
|
3017
3022
|
type FacilityOfferConditionHoursinadvance = {
|
|
3018
3023
|
nr_of_hours: number;
|
|
3019
|
-
type: string;
|
|
3020
|
-
};
|
|
3021
|
-
type FacilityOfferConditionNotImplemented = {
|
|
3022
|
-
type: string;
|
|
3023
3024
|
};
|
|
3024
3025
|
type FacilityOfferConditionTime = {
|
|
3025
3026
|
end_time: string;
|
|
3026
3027
|
start_time: string;
|
|
3027
|
-
type: string;
|
|
3028
3028
|
};
|
|
3029
3029
|
type FacilityOfferConditionWeekdays = {
|
|
3030
|
-
type: string;
|
|
3031
3030
|
weekdays: Array<number>;
|
|
3032
3031
|
};
|
|
3033
3032
|
type FacilityOfferList = {
|
|
@@ -3609,59 +3608,79 @@ declare const FacilityOfferConditionSchema: {
|
|
|
3609
3608
|
readonly $ref: "#/components/schemas/FacilityOfferConditionHoursinadvance";
|
|
3610
3609
|
}, {
|
|
3611
3610
|
readonly $ref: "#/components/schemas/FacilityOfferConditionActivities";
|
|
3612
|
-
}, {
|
|
3613
|
-
readonly $ref: "#/components/schemas/FacilityOfferConditionNotImplemented";
|
|
3614
3611
|
}];
|
|
3615
3612
|
readonly properties: {
|
|
3616
3613
|
readonly type: {
|
|
3617
|
-
readonly enum: readonly ["WEEKDAYS", "COURTS", "DATE", "TIME", "HOURSINADVANCE", "ACTIVITIES"
|
|
3614
|
+
readonly enum: readonly ["WEEKDAYS", "COURTS", "DATE", "TIME", "HOURSINADVANCE", "ACTIVITIES"];
|
|
3618
3615
|
readonly type: "string";
|
|
3619
3616
|
};
|
|
3620
3617
|
};
|
|
3618
|
+
readonly required: readonly ["type"];
|
|
3621
3619
|
readonly type: "object";
|
|
3622
3620
|
};
|
|
3623
3621
|
declare const FacilityOfferConditionActivitiesSchema: {
|
|
3624
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
|
+
};
|
|
3625
3641
|
readonly all_activities: {
|
|
3626
3642
|
readonly type: "boolean";
|
|
3627
3643
|
};
|
|
3628
3644
|
readonly not_valid_for_activities: {
|
|
3629
3645
|
readonly type: "boolean";
|
|
3630
3646
|
};
|
|
3631
|
-
readonly type: {
|
|
3632
|
-
readonly type: "string";
|
|
3633
|
-
};
|
|
3634
3647
|
};
|
|
3635
|
-
readonly required: readonly ["
|
|
3648
|
+
readonly required: readonly ["not_valid_for_activities", "all_activities", "activities"];
|
|
3636
3649
|
readonly type: "object";
|
|
3637
3650
|
};
|
|
3638
3651
|
declare const FacilityOfferConditionCourtsSchema: {
|
|
3639
3652
|
readonly properties: {
|
|
3640
|
-
readonly
|
|
3641
|
-
readonly
|
|
3642
|
-
|
|
3643
|
-
|
|
3644
|
-
|
|
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";
|
|
3645
3667
|
};
|
|
3646
3668
|
};
|
|
3647
|
-
readonly required: readonly ["
|
|
3669
|
+
readonly required: readonly ["courts"];
|
|
3648
3670
|
readonly type: "object";
|
|
3649
3671
|
};
|
|
3650
3672
|
declare const FacilityOfferConditionDateSchema: {
|
|
3651
3673
|
readonly properties: {
|
|
3652
3674
|
readonly end_date: {
|
|
3653
|
-
readonly format: "date
|
|
3675
|
+
readonly format: "date";
|
|
3654
3676
|
readonly type: "string";
|
|
3655
3677
|
};
|
|
3656
3678
|
readonly start_date: {
|
|
3657
|
-
readonly format: "date
|
|
3658
|
-
readonly type: "string";
|
|
3659
|
-
};
|
|
3660
|
-
readonly type: {
|
|
3679
|
+
readonly format: "date";
|
|
3661
3680
|
readonly type: "string";
|
|
3662
3681
|
};
|
|
3663
3682
|
};
|
|
3664
|
-
readonly required: readonly ["
|
|
3683
|
+
readonly required: readonly ["start_date", "end_date"];
|
|
3665
3684
|
readonly type: "object";
|
|
3666
3685
|
};
|
|
3667
3686
|
declare const FacilityOfferConditionHoursinadvanceSchema: {
|
|
@@ -3669,20 +3688,8 @@ declare const FacilityOfferConditionHoursinadvanceSchema: {
|
|
|
3669
3688
|
readonly nr_of_hours: {
|
|
3670
3689
|
readonly type: "integer";
|
|
3671
3690
|
};
|
|
3672
|
-
readonly type: {
|
|
3673
|
-
readonly type: "string";
|
|
3674
|
-
};
|
|
3675
3691
|
};
|
|
3676
|
-
readonly required: readonly ["
|
|
3677
|
-
readonly type: "object";
|
|
3678
|
-
};
|
|
3679
|
-
declare const FacilityOfferConditionNotImplementedSchema: {
|
|
3680
|
-
readonly properties: {
|
|
3681
|
-
readonly type: {
|
|
3682
|
-
readonly type: "string";
|
|
3683
|
-
};
|
|
3684
|
-
};
|
|
3685
|
-
readonly required: readonly ["type"];
|
|
3692
|
+
readonly required: readonly ["nr_of_hours"];
|
|
3686
3693
|
readonly type: "object";
|
|
3687
3694
|
};
|
|
3688
3695
|
declare const FacilityOfferConditionTimeSchema: {
|
|
@@ -3695,18 +3702,12 @@ declare const FacilityOfferConditionTimeSchema: {
|
|
|
3695
3702
|
readonly format: "time";
|
|
3696
3703
|
readonly type: "string";
|
|
3697
3704
|
};
|
|
3698
|
-
readonly type: {
|
|
3699
|
-
readonly type: "string";
|
|
3700
|
-
};
|
|
3701
3705
|
};
|
|
3702
|
-
readonly required: readonly ["
|
|
3706
|
+
readonly required: readonly ["start_time", "end_time"];
|
|
3703
3707
|
readonly type: "object";
|
|
3704
3708
|
};
|
|
3705
3709
|
declare const FacilityOfferConditionWeekdaysSchema: {
|
|
3706
3710
|
readonly properties: {
|
|
3707
|
-
readonly type: {
|
|
3708
|
-
readonly type: "string";
|
|
3709
|
-
};
|
|
3710
3711
|
readonly weekdays: {
|
|
3711
3712
|
readonly items: {
|
|
3712
3713
|
readonly description: "Interger representation of weekday. 1 (Monday), 7 (Sunday).";
|
|
@@ -3715,7 +3716,7 @@ declare const FacilityOfferConditionWeekdaysSchema: {
|
|
|
3715
3716
|
readonly type: "array";
|
|
3716
3717
|
};
|
|
3717
3718
|
};
|
|
3718
|
-
readonly required: readonly ["
|
|
3719
|
+
readonly required: readonly ["weekdays"];
|
|
3719
3720
|
readonly type: "object";
|
|
3720
3721
|
};
|
|
3721
3722
|
declare const FacilityOfferListSchema: {
|
|
@@ -4007,7 +4008,6 @@ declare const schemas_gen_FacilityOfferConditionActivitiesSchema: typeof Facilit
|
|
|
4007
4008
|
declare const schemas_gen_FacilityOfferConditionCourtsSchema: typeof FacilityOfferConditionCourtsSchema;
|
|
4008
4009
|
declare const schemas_gen_FacilityOfferConditionDateSchema: typeof FacilityOfferConditionDateSchema;
|
|
4009
4010
|
declare const schemas_gen_FacilityOfferConditionHoursinadvanceSchema: typeof FacilityOfferConditionHoursinadvanceSchema;
|
|
4010
|
-
declare const schemas_gen_FacilityOfferConditionNotImplementedSchema: typeof FacilityOfferConditionNotImplementedSchema;
|
|
4011
4011
|
declare const schemas_gen_FacilityOfferConditionSchema: typeof FacilityOfferConditionSchema;
|
|
4012
4012
|
declare const schemas_gen_FacilityOfferConditionTimeSchema: typeof FacilityOfferConditionTimeSchema;
|
|
4013
4013
|
declare const schemas_gen_FacilityOfferConditionWeekdaysSchema: typeof FacilityOfferConditionWeekdaysSchema;
|
|
@@ -4025,7 +4025,7 @@ declare const schemas_gen_pkgOpenapiSharedErrorsSchema: typeof pkgOpenapiSharedE
|
|
|
4025
4025
|
declare const schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema: typeof pkgOpenapiSharedOffsetPaginatedResultSetSchema;
|
|
4026
4026
|
declare const schemas_gen_pkgOpenapiSharedProblemDetailsSchema: typeof pkgOpenapiSharedProblemDetailsSchema;
|
|
4027
4027
|
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,
|
|
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 };
|
|
4029
4029
|
}
|
|
4030
4030
|
|
|
4031
4031
|
type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
|
|
@@ -4310,7 +4310,6 @@ type indexV1_FacilityOfferConditionActivities = FacilityOfferConditionActivities
|
|
|
4310
4310
|
type indexV1_FacilityOfferConditionCourts = FacilityOfferConditionCourts;
|
|
4311
4311
|
type indexV1_FacilityOfferConditionDate = FacilityOfferConditionDate;
|
|
4312
4312
|
type indexV1_FacilityOfferConditionHoursinadvance = FacilityOfferConditionHoursinadvance;
|
|
4313
|
-
type indexV1_FacilityOfferConditionNotImplemented = FacilityOfferConditionNotImplemented;
|
|
4314
4313
|
type indexV1_FacilityOfferConditionTime = FacilityOfferConditionTime;
|
|
4315
4314
|
type indexV1_FacilityOfferConditionWeekdays = FacilityOfferConditionWeekdays;
|
|
4316
4315
|
type indexV1_FacilityOfferList = FacilityOfferList;
|
|
@@ -4360,7 +4359,7 @@ declare const indexV1_findBookings: typeof findBookings;
|
|
|
4360
4359
|
declare const indexV1_listFacilityOffers: typeof listFacilityOffers;
|
|
4361
4360
|
declare const indexV1_updateBooking: typeof updateBooking;
|
|
4362
4361
|
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
|
|
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 };
|
|
4364
4363
|
}
|
|
4365
4364
|
|
|
4366
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
|
@@ -2997,37 +2997,36 @@ type FacilityOffer = {
|
|
|
2997
2997
|
data: FacilityPunchCardData | FacilityValueCardData;
|
|
2998
2998
|
type: 'FACILITY_PUNCH_CARD' | 'FACILITY_VALUE_CARD';
|
|
2999
2999
|
};
|
|
3000
|
-
type FacilityOfferCondition = (FacilityOfferConditionWeekdays | FacilityOfferConditionCourts | FacilityOfferConditionDate | FacilityOfferConditionTime | FacilityOfferConditionHoursinadvance | FacilityOfferConditionActivities
|
|
3001
|
-
type
|
|
3000
|
+
type FacilityOfferCondition = (FacilityOfferConditionWeekdays | FacilityOfferConditionCourts | FacilityOfferConditionDate | FacilityOfferConditionTime | FacilityOfferConditionHoursinadvance | FacilityOfferConditionActivities) & {
|
|
3001
|
+
type: 'WEEKDAYS' | 'COURTS' | 'DATE' | 'TIME' | 'HOURSINADVANCE' | 'ACTIVITIES';
|
|
3002
3002
|
};
|
|
3003
3003
|
type FacilityOfferConditionActivities = {
|
|
3004
|
+
activities: Array<{
|
|
3005
|
+
id: number;
|
|
3006
|
+
name: string;
|
|
3007
|
+
type?: string;
|
|
3008
|
+
}>;
|
|
3004
3009
|
all_activities: boolean;
|
|
3005
3010
|
not_valid_for_activities: boolean;
|
|
3006
|
-
type: string;
|
|
3007
3011
|
};
|
|
3008
3012
|
type FacilityOfferConditionCourts = {
|
|
3009
|
-
|
|
3010
|
-
|
|
3013
|
+
courts: Array<{
|
|
3014
|
+
id: number;
|
|
3015
|
+
name: string;
|
|
3016
|
+
}>;
|
|
3011
3017
|
};
|
|
3012
3018
|
type FacilityOfferConditionDate = {
|
|
3013
3019
|
end_date: string;
|
|
3014
3020
|
start_date: string;
|
|
3015
|
-
type: string;
|
|
3016
3021
|
};
|
|
3017
3022
|
type FacilityOfferConditionHoursinadvance = {
|
|
3018
3023
|
nr_of_hours: number;
|
|
3019
|
-
type: string;
|
|
3020
|
-
};
|
|
3021
|
-
type FacilityOfferConditionNotImplemented = {
|
|
3022
|
-
type: string;
|
|
3023
3024
|
};
|
|
3024
3025
|
type FacilityOfferConditionTime = {
|
|
3025
3026
|
end_time: string;
|
|
3026
3027
|
start_time: string;
|
|
3027
|
-
type: string;
|
|
3028
3028
|
};
|
|
3029
3029
|
type FacilityOfferConditionWeekdays = {
|
|
3030
|
-
type: string;
|
|
3031
3030
|
weekdays: Array<number>;
|
|
3032
3031
|
};
|
|
3033
3032
|
type FacilityOfferList = {
|
|
@@ -3609,59 +3608,79 @@ declare const FacilityOfferConditionSchema: {
|
|
|
3609
3608
|
readonly $ref: "#/components/schemas/FacilityOfferConditionHoursinadvance";
|
|
3610
3609
|
}, {
|
|
3611
3610
|
readonly $ref: "#/components/schemas/FacilityOfferConditionActivities";
|
|
3612
|
-
}, {
|
|
3613
|
-
readonly $ref: "#/components/schemas/FacilityOfferConditionNotImplemented";
|
|
3614
3611
|
}];
|
|
3615
3612
|
readonly properties: {
|
|
3616
3613
|
readonly type: {
|
|
3617
|
-
readonly enum: readonly ["WEEKDAYS", "COURTS", "DATE", "TIME", "HOURSINADVANCE", "ACTIVITIES"
|
|
3614
|
+
readonly enum: readonly ["WEEKDAYS", "COURTS", "DATE", "TIME", "HOURSINADVANCE", "ACTIVITIES"];
|
|
3618
3615
|
readonly type: "string";
|
|
3619
3616
|
};
|
|
3620
3617
|
};
|
|
3618
|
+
readonly required: readonly ["type"];
|
|
3621
3619
|
readonly type: "object";
|
|
3622
3620
|
};
|
|
3623
3621
|
declare const FacilityOfferConditionActivitiesSchema: {
|
|
3624
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
|
+
};
|
|
3625
3641
|
readonly all_activities: {
|
|
3626
3642
|
readonly type: "boolean";
|
|
3627
3643
|
};
|
|
3628
3644
|
readonly not_valid_for_activities: {
|
|
3629
3645
|
readonly type: "boolean";
|
|
3630
3646
|
};
|
|
3631
|
-
readonly type: {
|
|
3632
|
-
readonly type: "string";
|
|
3633
|
-
};
|
|
3634
3647
|
};
|
|
3635
|
-
readonly required: readonly ["
|
|
3648
|
+
readonly required: readonly ["not_valid_for_activities", "all_activities", "activities"];
|
|
3636
3649
|
readonly type: "object";
|
|
3637
3650
|
};
|
|
3638
3651
|
declare const FacilityOfferConditionCourtsSchema: {
|
|
3639
3652
|
readonly properties: {
|
|
3640
|
-
readonly
|
|
3641
|
-
readonly
|
|
3642
|
-
|
|
3643
|
-
|
|
3644
|
-
|
|
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";
|
|
3645
3667
|
};
|
|
3646
3668
|
};
|
|
3647
|
-
readonly required: readonly ["
|
|
3669
|
+
readonly required: readonly ["courts"];
|
|
3648
3670
|
readonly type: "object";
|
|
3649
3671
|
};
|
|
3650
3672
|
declare const FacilityOfferConditionDateSchema: {
|
|
3651
3673
|
readonly properties: {
|
|
3652
3674
|
readonly end_date: {
|
|
3653
|
-
readonly format: "date
|
|
3675
|
+
readonly format: "date";
|
|
3654
3676
|
readonly type: "string";
|
|
3655
3677
|
};
|
|
3656
3678
|
readonly start_date: {
|
|
3657
|
-
readonly format: "date
|
|
3658
|
-
readonly type: "string";
|
|
3659
|
-
};
|
|
3660
|
-
readonly type: {
|
|
3679
|
+
readonly format: "date";
|
|
3661
3680
|
readonly type: "string";
|
|
3662
3681
|
};
|
|
3663
3682
|
};
|
|
3664
|
-
readonly required: readonly ["
|
|
3683
|
+
readonly required: readonly ["start_date", "end_date"];
|
|
3665
3684
|
readonly type: "object";
|
|
3666
3685
|
};
|
|
3667
3686
|
declare const FacilityOfferConditionHoursinadvanceSchema: {
|
|
@@ -3669,20 +3688,8 @@ declare const FacilityOfferConditionHoursinadvanceSchema: {
|
|
|
3669
3688
|
readonly nr_of_hours: {
|
|
3670
3689
|
readonly type: "integer";
|
|
3671
3690
|
};
|
|
3672
|
-
readonly type: {
|
|
3673
|
-
readonly type: "string";
|
|
3674
|
-
};
|
|
3675
3691
|
};
|
|
3676
|
-
readonly required: readonly ["
|
|
3677
|
-
readonly type: "object";
|
|
3678
|
-
};
|
|
3679
|
-
declare const FacilityOfferConditionNotImplementedSchema: {
|
|
3680
|
-
readonly properties: {
|
|
3681
|
-
readonly type: {
|
|
3682
|
-
readonly type: "string";
|
|
3683
|
-
};
|
|
3684
|
-
};
|
|
3685
|
-
readonly required: readonly ["type"];
|
|
3692
|
+
readonly required: readonly ["nr_of_hours"];
|
|
3686
3693
|
readonly type: "object";
|
|
3687
3694
|
};
|
|
3688
3695
|
declare const FacilityOfferConditionTimeSchema: {
|
|
@@ -3695,18 +3702,12 @@ declare const FacilityOfferConditionTimeSchema: {
|
|
|
3695
3702
|
readonly format: "time";
|
|
3696
3703
|
readonly type: "string";
|
|
3697
3704
|
};
|
|
3698
|
-
readonly type: {
|
|
3699
|
-
readonly type: "string";
|
|
3700
|
-
};
|
|
3701
3705
|
};
|
|
3702
|
-
readonly required: readonly ["
|
|
3706
|
+
readonly required: readonly ["start_time", "end_time"];
|
|
3703
3707
|
readonly type: "object";
|
|
3704
3708
|
};
|
|
3705
3709
|
declare const FacilityOfferConditionWeekdaysSchema: {
|
|
3706
3710
|
readonly properties: {
|
|
3707
|
-
readonly type: {
|
|
3708
|
-
readonly type: "string";
|
|
3709
|
-
};
|
|
3710
3711
|
readonly weekdays: {
|
|
3711
3712
|
readonly items: {
|
|
3712
3713
|
readonly description: "Interger representation of weekday. 1 (Monday), 7 (Sunday).";
|
|
@@ -3715,7 +3716,7 @@ declare const FacilityOfferConditionWeekdaysSchema: {
|
|
|
3715
3716
|
readonly type: "array";
|
|
3716
3717
|
};
|
|
3717
3718
|
};
|
|
3718
|
-
readonly required: readonly ["
|
|
3719
|
+
readonly required: readonly ["weekdays"];
|
|
3719
3720
|
readonly type: "object";
|
|
3720
3721
|
};
|
|
3721
3722
|
declare const FacilityOfferListSchema: {
|
|
@@ -4007,7 +4008,6 @@ declare const schemas_gen_FacilityOfferConditionActivitiesSchema: typeof Facilit
|
|
|
4007
4008
|
declare const schemas_gen_FacilityOfferConditionCourtsSchema: typeof FacilityOfferConditionCourtsSchema;
|
|
4008
4009
|
declare const schemas_gen_FacilityOfferConditionDateSchema: typeof FacilityOfferConditionDateSchema;
|
|
4009
4010
|
declare const schemas_gen_FacilityOfferConditionHoursinadvanceSchema: typeof FacilityOfferConditionHoursinadvanceSchema;
|
|
4010
|
-
declare const schemas_gen_FacilityOfferConditionNotImplementedSchema: typeof FacilityOfferConditionNotImplementedSchema;
|
|
4011
4011
|
declare const schemas_gen_FacilityOfferConditionSchema: typeof FacilityOfferConditionSchema;
|
|
4012
4012
|
declare const schemas_gen_FacilityOfferConditionTimeSchema: typeof FacilityOfferConditionTimeSchema;
|
|
4013
4013
|
declare const schemas_gen_FacilityOfferConditionWeekdaysSchema: typeof FacilityOfferConditionWeekdaysSchema;
|
|
@@ -4025,7 +4025,7 @@ declare const schemas_gen_pkgOpenapiSharedErrorsSchema: typeof pkgOpenapiSharedE
|
|
|
4025
4025
|
declare const schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema: typeof pkgOpenapiSharedOffsetPaginatedResultSetSchema;
|
|
4026
4026
|
declare const schemas_gen_pkgOpenapiSharedProblemDetailsSchema: typeof pkgOpenapiSharedProblemDetailsSchema;
|
|
4027
4027
|
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,
|
|
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 };
|
|
4029
4029
|
}
|
|
4030
4030
|
|
|
4031
4031
|
type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
|
|
@@ -4310,7 +4310,6 @@ type indexV1_FacilityOfferConditionActivities = FacilityOfferConditionActivities
|
|
|
4310
4310
|
type indexV1_FacilityOfferConditionCourts = FacilityOfferConditionCourts;
|
|
4311
4311
|
type indexV1_FacilityOfferConditionDate = FacilityOfferConditionDate;
|
|
4312
4312
|
type indexV1_FacilityOfferConditionHoursinadvance = FacilityOfferConditionHoursinadvance;
|
|
4313
|
-
type indexV1_FacilityOfferConditionNotImplemented = FacilityOfferConditionNotImplemented;
|
|
4314
4313
|
type indexV1_FacilityOfferConditionTime = FacilityOfferConditionTime;
|
|
4315
4314
|
type indexV1_FacilityOfferConditionWeekdays = FacilityOfferConditionWeekdays;
|
|
4316
4315
|
type indexV1_FacilityOfferList = FacilityOfferList;
|
|
@@ -4360,7 +4359,7 @@ declare const indexV1_findBookings: typeof findBookings;
|
|
|
4360
4359
|
declare const indexV1_listFacilityOffers: typeof listFacilityOffers;
|
|
4361
4360
|
declare const indexV1_updateBooking: typeof updateBooking;
|
|
4362
4361
|
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
|
|
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 };
|
|
4364
4363
|
}
|
|
4365
4364
|
|
|
4366
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 };
|