@matchi/api 0.20250325.1 → 0.20250411.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 -82
- package/dist/main/index.d.ts +64 -82
- package/dist/main/index.js +1 -1
- package/dist/main/index.mjs +1 -1
- package/package.json +1 -1
package/dist/main/index.d.ts
CHANGED
|
@@ -1140,7 +1140,7 @@ type order = {
|
|
|
1140
1140
|
|
|
1141
1141
|
type OrderPriceDetails = {
|
|
1142
1142
|
totalPrice?: string;
|
|
1143
|
-
price
|
|
1143
|
+
price: string;
|
|
1144
1144
|
fee?: string;
|
|
1145
1145
|
priceVat?: string;
|
|
1146
1146
|
feeVat?: string;
|
|
@@ -1179,14 +1179,12 @@ type OrderPaymentDetails = {
|
|
|
1179
1179
|
totalRefunded: string;
|
|
1180
1180
|
numberUnpaidSplits?: number;
|
|
1181
1181
|
unpaidSplitPrice?: string;
|
|
1182
|
-
splitSettledAt?: timeStamp;
|
|
1183
1182
|
payments?: Array<paymentMethodPaymentDetail>;
|
|
1184
1183
|
promoCodeOutcome?: {
|
|
1185
1184
|
code: string;
|
|
1186
1185
|
discountAmount?: string;
|
|
1187
1186
|
discountPercent?: string;
|
|
1188
1187
|
amount?: string;
|
|
1189
|
-
discountOutcome?: string;
|
|
1190
1188
|
};
|
|
1191
1189
|
serviceFeeSettings?: ServiceFeeSettings;
|
|
1192
1190
|
standardPrice?: OrderPriceDetails;
|
|
@@ -1447,10 +1445,6 @@ type playSessionSettings = {
|
|
|
1447
1445
|
* Contact details can be email, phone number or other contact information.
|
|
1448
1446
|
*/
|
|
1449
1447
|
contactDetails?: string;
|
|
1450
|
-
/**
|
|
1451
|
-
* Self-assessed level of the booking owner.
|
|
1452
|
-
*/
|
|
1453
|
-
ownerLevel?: string;
|
|
1454
1448
|
/**
|
|
1455
1449
|
* The number of available spots on the play session.
|
|
1456
1450
|
*/
|
|
@@ -1544,8 +1538,6 @@ type priceDetailsActivity = {
|
|
|
1544
1538
|
paymentMethods: Array<paymentType>;
|
|
1545
1539
|
};
|
|
1546
1540
|
|
|
1547
|
-
type sportLevels = Record<string, string>;
|
|
1548
|
-
|
|
1549
1541
|
type profile = {
|
|
1550
1542
|
address?: address;
|
|
1551
1543
|
dateOfBirth?: string;
|
|
@@ -1555,7 +1547,6 @@ type profile = {
|
|
|
1555
1547
|
profileImageUrl?: string;
|
|
1556
1548
|
private?: boolean;
|
|
1557
1549
|
access?: Array<access>;
|
|
1558
|
-
sportLevels?: sportLevels;
|
|
1559
1550
|
};
|
|
1560
1551
|
|
|
1561
1552
|
type promoCode = {
|
|
@@ -1683,7 +1674,6 @@ type userPublicProfile = {
|
|
|
1683
1674
|
firstname?: string;
|
|
1684
1675
|
lastname?: string;
|
|
1685
1676
|
profileImageUrl?: string;
|
|
1686
|
-
sportLevels?: sportLevels;
|
|
1687
1677
|
};
|
|
1688
1678
|
|
|
1689
1679
|
declare class ActivityServiceV1Service {
|
|
@@ -2316,10 +2306,11 @@ declare class AuthorizedService {
|
|
|
2316
2306
|
* @param endDateTime String end DateTime (UTC)
|
|
2317
2307
|
* @param sportIds String ID of the sport
|
|
2318
2308
|
* @param availableSpots Number of minimum available spots (0 for returning only full matches)
|
|
2309
|
+
* @param limit Maximum number of items to return.
|
|
2319
2310
|
* @returns playSessionResponse List of open play session available for the user
|
|
2320
2311
|
* @throws ApiError
|
|
2321
2312
|
*/
|
|
2322
|
-
static getUserPlaySessionsMarketplace(facilityIds: Array<string>, startDateTime: timeStamp, endDateTime: timeStamp, sportIds?: Array<string>, availableSpots?: number): CancelablePromise<playSessionResponse>;
|
|
2313
|
+
static getUserPlaySessionsMarketplace(facilityIds: Array<string>, startDateTime: timeStamp, endDateTime: timeStamp, sportIds?: Array<string>, availableSpots?: number, limit?: number): CancelablePromise<playSessionResponse>;
|
|
2323
2314
|
/**
|
|
2324
2315
|
* Add user to waitlist on occasion with id
|
|
2325
2316
|
* @param id Activity occasion id
|
|
@@ -2732,15 +2723,6 @@ declare class PlaySessionServiceV1Service {
|
|
|
2732
2723
|
* @throws ApiError
|
|
2733
2724
|
*/
|
|
2734
2725
|
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>;
|
|
2744
2726
|
/**
|
|
2745
2727
|
* Remove player from play session given user email
|
|
2746
2728
|
* @param sessionId Play Session ID
|
|
@@ -2801,10 +2783,11 @@ declare class PlaySessionServiceV1Service {
|
|
|
2801
2783
|
* @param endDateTime String end DateTime (UTC)
|
|
2802
2784
|
* @param sportIds String ID of the sport
|
|
2803
2785
|
* @param availableSpots Number of minimum available spots (0 for returning only full matches)
|
|
2786
|
+
* @param limit Maximum number of items to return.
|
|
2804
2787
|
* @returns playSessionResponse List of open play session available for the user
|
|
2805
2788
|
* @throws ApiError
|
|
2806
2789
|
*/
|
|
2807
|
-
static getUserPlaySessionsMarketplace(facilityIds: Array<string>, startDateTime: timeStamp, endDateTime: timeStamp, sportIds?: Array<string>, availableSpots?: number): CancelablePromise<playSessionResponse>;
|
|
2790
|
+
static getUserPlaySessionsMarketplace(facilityIds: Array<string>, startDateTime: timeStamp, endDateTime: timeStamp, sportIds?: Array<string>, availableSpots?: number, limit?: number): CancelablePromise<playSessionResponse>;
|
|
2808
2791
|
}
|
|
2809
2792
|
|
|
2810
2793
|
declare class UserServiceV1Service {
|
|
@@ -2997,36 +2980,37 @@ type FacilityOffer = {
|
|
|
2997
2980
|
data: FacilityPunchCardData | FacilityValueCardData;
|
|
2998
2981
|
type: 'FACILITY_PUNCH_CARD' | 'FACILITY_VALUE_CARD';
|
|
2999
2982
|
};
|
|
3000
|
-
type FacilityOfferCondition = (FacilityOfferConditionWeekdays | FacilityOfferConditionCourts | FacilityOfferConditionDate | FacilityOfferConditionTime | FacilityOfferConditionHoursinadvance | FacilityOfferConditionActivities) & {
|
|
3001
|
-
type
|
|
2983
|
+
type FacilityOfferCondition = (FacilityOfferConditionWeekdays | FacilityOfferConditionCourts | FacilityOfferConditionDate | FacilityOfferConditionTime | FacilityOfferConditionHoursinadvance | FacilityOfferConditionActivities | FacilityOfferConditionNotImplemented) & {
|
|
2984
|
+
type?: 'WEEKDAYS' | 'COURTS' | 'DATE' | 'TIME' | 'HOURSINADVANCE' | 'ACTIVITIES' | 'NOT_IMPLEMENTED';
|
|
3002
2985
|
};
|
|
3003
2986
|
type FacilityOfferConditionActivities = {
|
|
3004
|
-
activities: Array<{
|
|
3005
|
-
id: number;
|
|
3006
|
-
name: string;
|
|
3007
|
-
type?: string;
|
|
3008
|
-
}>;
|
|
3009
2987
|
all_activities: boolean;
|
|
3010
2988
|
not_valid_for_activities: boolean;
|
|
2989
|
+
type: string;
|
|
3011
2990
|
};
|
|
3012
2991
|
type FacilityOfferConditionCourts = {
|
|
3013
|
-
|
|
3014
|
-
|
|
3015
|
-
name: string;
|
|
3016
|
-
}>;
|
|
2992
|
+
name?: string;
|
|
2993
|
+
type: string;
|
|
3017
2994
|
};
|
|
3018
2995
|
type FacilityOfferConditionDate = {
|
|
3019
2996
|
end_date: string;
|
|
3020
2997
|
start_date: string;
|
|
2998
|
+
type: string;
|
|
3021
2999
|
};
|
|
3022
3000
|
type FacilityOfferConditionHoursinadvance = {
|
|
3023
3001
|
nr_of_hours: number;
|
|
3002
|
+
type: string;
|
|
3003
|
+
};
|
|
3004
|
+
type FacilityOfferConditionNotImplemented = {
|
|
3005
|
+
type: string;
|
|
3024
3006
|
};
|
|
3025
3007
|
type FacilityOfferConditionTime = {
|
|
3026
3008
|
end_time: string;
|
|
3027
3009
|
start_time: string;
|
|
3010
|
+
type: string;
|
|
3028
3011
|
};
|
|
3029
3012
|
type FacilityOfferConditionWeekdays = {
|
|
3013
|
+
type: string;
|
|
3030
3014
|
weekdays: Array<number>;
|
|
3031
3015
|
};
|
|
3032
3016
|
type FacilityOfferList = {
|
|
@@ -3050,7 +3034,7 @@ type FacilityPunchCardData = {
|
|
|
3050
3034
|
members_only: boolean;
|
|
3051
3035
|
name: string;
|
|
3052
3036
|
nr_of_bookings_in_period: number | null;
|
|
3053
|
-
nr_of_days_valid: number
|
|
3037
|
+
nr_of_days_valid: number;
|
|
3054
3038
|
nr_of_tickets: number;
|
|
3055
3039
|
offer_id: number;
|
|
3056
3040
|
price: string;
|
|
@@ -3065,7 +3049,7 @@ type FacilityValueCardData = {
|
|
|
3065
3049
|
facility_receive_membership_requests: boolean;
|
|
3066
3050
|
members_only: boolean;
|
|
3067
3051
|
name: string;
|
|
3068
|
-
nr_of_days_valid: number
|
|
3052
|
+
nr_of_days_valid: number;
|
|
3069
3053
|
offer_id: number;
|
|
3070
3054
|
price: string;
|
|
3071
3055
|
user_has_active_membership: boolean;
|
|
@@ -3608,79 +3592,59 @@ declare const FacilityOfferConditionSchema: {
|
|
|
3608
3592
|
readonly $ref: "#/components/schemas/FacilityOfferConditionHoursinadvance";
|
|
3609
3593
|
}, {
|
|
3610
3594
|
readonly $ref: "#/components/schemas/FacilityOfferConditionActivities";
|
|
3595
|
+
}, {
|
|
3596
|
+
readonly $ref: "#/components/schemas/FacilityOfferConditionNotImplemented";
|
|
3611
3597
|
}];
|
|
3612
3598
|
readonly properties: {
|
|
3613
3599
|
readonly type: {
|
|
3614
|
-
readonly enum: readonly ["WEEKDAYS", "COURTS", "DATE", "TIME", "HOURSINADVANCE", "ACTIVITIES"];
|
|
3600
|
+
readonly enum: readonly ["WEEKDAYS", "COURTS", "DATE", "TIME", "HOURSINADVANCE", "ACTIVITIES", "NOT_IMPLEMENTED"];
|
|
3615
3601
|
readonly type: "string";
|
|
3616
3602
|
};
|
|
3617
3603
|
};
|
|
3618
|
-
readonly required: readonly ["type"];
|
|
3619
3604
|
readonly type: "object";
|
|
3620
3605
|
};
|
|
3621
3606
|
declare const FacilityOfferConditionActivitiesSchema: {
|
|
3622
3607
|
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
|
-
};
|
|
3641
3608
|
readonly all_activities: {
|
|
3642
3609
|
readonly type: "boolean";
|
|
3643
3610
|
};
|
|
3644
3611
|
readonly not_valid_for_activities: {
|
|
3645
3612
|
readonly type: "boolean";
|
|
3646
3613
|
};
|
|
3614
|
+
readonly type: {
|
|
3615
|
+
readonly type: "string";
|
|
3616
|
+
};
|
|
3647
3617
|
};
|
|
3648
|
-
readonly required: readonly ["
|
|
3618
|
+
readonly required: readonly ["type", "not_valid_for_activities", "all_activities"];
|
|
3649
3619
|
readonly type: "object";
|
|
3650
3620
|
};
|
|
3651
3621
|
declare const FacilityOfferConditionCourtsSchema: {
|
|
3652
3622
|
readonly properties: {
|
|
3653
|
-
readonly
|
|
3654
|
-
readonly
|
|
3655
|
-
|
|
3656
|
-
|
|
3657
|
-
|
|
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";
|
|
3623
|
+
readonly name: {
|
|
3624
|
+
readonly type: "string";
|
|
3625
|
+
};
|
|
3626
|
+
readonly type: {
|
|
3627
|
+
readonly type: "string";
|
|
3667
3628
|
};
|
|
3668
3629
|
};
|
|
3669
|
-
readonly required: readonly ["
|
|
3630
|
+
readonly required: readonly ["type"];
|
|
3670
3631
|
readonly type: "object";
|
|
3671
3632
|
};
|
|
3672
3633
|
declare const FacilityOfferConditionDateSchema: {
|
|
3673
3634
|
readonly properties: {
|
|
3674
3635
|
readonly end_date: {
|
|
3675
|
-
readonly format: "date";
|
|
3636
|
+
readonly format: "date-time";
|
|
3676
3637
|
readonly type: "string";
|
|
3677
3638
|
};
|
|
3678
3639
|
readonly start_date: {
|
|
3679
|
-
readonly format: "date";
|
|
3640
|
+
readonly format: "date-time";
|
|
3641
|
+
readonly type: "string";
|
|
3642
|
+
};
|
|
3643
|
+
readonly type: {
|
|
3680
3644
|
readonly type: "string";
|
|
3681
3645
|
};
|
|
3682
3646
|
};
|
|
3683
|
-
readonly required: readonly ["start_date", "end_date"];
|
|
3647
|
+
readonly required: readonly ["type", "start_date", "end_date"];
|
|
3684
3648
|
readonly type: "object";
|
|
3685
3649
|
};
|
|
3686
3650
|
declare const FacilityOfferConditionHoursinadvanceSchema: {
|
|
@@ -3688,8 +3652,20 @@ declare const FacilityOfferConditionHoursinadvanceSchema: {
|
|
|
3688
3652
|
readonly nr_of_hours: {
|
|
3689
3653
|
readonly type: "integer";
|
|
3690
3654
|
};
|
|
3655
|
+
readonly type: {
|
|
3656
|
+
readonly type: "string";
|
|
3657
|
+
};
|
|
3658
|
+
};
|
|
3659
|
+
readonly required: readonly ["type", "nr_of_hours"];
|
|
3660
|
+
readonly type: "object";
|
|
3661
|
+
};
|
|
3662
|
+
declare const FacilityOfferConditionNotImplementedSchema: {
|
|
3663
|
+
readonly properties: {
|
|
3664
|
+
readonly type: {
|
|
3665
|
+
readonly type: "string";
|
|
3666
|
+
};
|
|
3691
3667
|
};
|
|
3692
|
-
readonly required: readonly ["
|
|
3668
|
+
readonly required: readonly ["type"];
|
|
3693
3669
|
readonly type: "object";
|
|
3694
3670
|
};
|
|
3695
3671
|
declare const FacilityOfferConditionTimeSchema: {
|
|
@@ -3702,12 +3678,18 @@ declare const FacilityOfferConditionTimeSchema: {
|
|
|
3702
3678
|
readonly format: "time";
|
|
3703
3679
|
readonly type: "string";
|
|
3704
3680
|
};
|
|
3681
|
+
readonly type: {
|
|
3682
|
+
readonly type: "string";
|
|
3683
|
+
};
|
|
3705
3684
|
};
|
|
3706
|
-
readonly required: readonly ["start_time", "end_time"];
|
|
3685
|
+
readonly required: readonly ["type", "start_time", "end_time"];
|
|
3707
3686
|
readonly type: "object";
|
|
3708
3687
|
};
|
|
3709
3688
|
declare const FacilityOfferConditionWeekdaysSchema: {
|
|
3710
3689
|
readonly properties: {
|
|
3690
|
+
readonly type: {
|
|
3691
|
+
readonly type: "string";
|
|
3692
|
+
};
|
|
3711
3693
|
readonly weekdays: {
|
|
3712
3694
|
readonly items: {
|
|
3713
3695
|
readonly description: "Interger representation of weekday. 1 (Monday), 7 (Sunday).";
|
|
@@ -3716,7 +3698,7 @@ declare const FacilityOfferConditionWeekdaysSchema: {
|
|
|
3716
3698
|
readonly type: "array";
|
|
3717
3699
|
};
|
|
3718
3700
|
};
|
|
3719
|
-
readonly required: readonly ["weekdays"];
|
|
3701
|
+
readonly required: readonly ["type", "weekdays"];
|
|
3720
3702
|
readonly type: "object";
|
|
3721
3703
|
};
|
|
3722
3704
|
declare const FacilityOfferListSchema: {
|
|
@@ -3785,7 +3767,6 @@ declare const FacilityPunchCardDataSchema: {
|
|
|
3785
3767
|
readonly type: "integer";
|
|
3786
3768
|
};
|
|
3787
3769
|
readonly nr_of_days_valid: {
|
|
3788
|
-
readonly nullable: true;
|
|
3789
3770
|
readonly type: "integer";
|
|
3790
3771
|
};
|
|
3791
3772
|
readonly nr_of_tickets: {
|
|
@@ -3833,7 +3814,6 @@ declare const FacilityValueCardDataSchema: {
|
|
|
3833
3814
|
readonly type: "string";
|
|
3834
3815
|
};
|
|
3835
3816
|
readonly nr_of_days_valid: {
|
|
3836
|
-
readonly nullable: true;
|
|
3837
3817
|
readonly type: "integer";
|
|
3838
3818
|
};
|
|
3839
3819
|
readonly offer_id: {
|
|
@@ -4008,6 +3988,7 @@ declare const schemas_gen_FacilityOfferConditionActivitiesSchema: typeof Facilit
|
|
|
4008
3988
|
declare const schemas_gen_FacilityOfferConditionCourtsSchema: typeof FacilityOfferConditionCourtsSchema;
|
|
4009
3989
|
declare const schemas_gen_FacilityOfferConditionDateSchema: typeof FacilityOfferConditionDateSchema;
|
|
4010
3990
|
declare const schemas_gen_FacilityOfferConditionHoursinadvanceSchema: typeof FacilityOfferConditionHoursinadvanceSchema;
|
|
3991
|
+
declare const schemas_gen_FacilityOfferConditionNotImplementedSchema: typeof FacilityOfferConditionNotImplementedSchema;
|
|
4011
3992
|
declare const schemas_gen_FacilityOfferConditionSchema: typeof FacilityOfferConditionSchema;
|
|
4012
3993
|
declare const schemas_gen_FacilityOfferConditionTimeSchema: typeof FacilityOfferConditionTimeSchema;
|
|
4013
3994
|
declare const schemas_gen_FacilityOfferConditionWeekdaysSchema: typeof FacilityOfferConditionWeekdaysSchema;
|
|
@@ -4025,7 +4006,7 @@ declare const schemas_gen_pkgOpenapiSharedErrorsSchema: typeof pkgOpenapiSharedE
|
|
|
4025
4006
|
declare const schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema: typeof pkgOpenapiSharedOffsetPaginatedResultSetSchema;
|
|
4026
4007
|
declare const schemas_gen_pkgOpenapiSharedProblemDetailsSchema: typeof pkgOpenapiSharedProblemDetailsSchema;
|
|
4027
4008
|
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, 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 };
|
|
4009
|
+
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_FacilityOfferConditionNotImplementedSchema as FacilityOfferConditionNotImplementedSchema, 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
4010
|
}
|
|
4030
4011
|
|
|
4031
4012
|
type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
|
|
@@ -4310,6 +4291,7 @@ type indexV1_FacilityOfferConditionActivities = FacilityOfferConditionActivities
|
|
|
4310
4291
|
type indexV1_FacilityOfferConditionCourts = FacilityOfferConditionCourts;
|
|
4311
4292
|
type indexV1_FacilityOfferConditionDate = FacilityOfferConditionDate;
|
|
4312
4293
|
type indexV1_FacilityOfferConditionHoursinadvance = FacilityOfferConditionHoursinadvance;
|
|
4294
|
+
type indexV1_FacilityOfferConditionNotImplemented = FacilityOfferConditionNotImplemented;
|
|
4313
4295
|
type indexV1_FacilityOfferConditionTime = FacilityOfferConditionTime;
|
|
4314
4296
|
type indexV1_FacilityOfferConditionWeekdays = FacilityOfferConditionWeekdays;
|
|
4315
4297
|
type indexV1_FacilityOfferList = FacilityOfferList;
|
|
@@ -4359,7 +4341,7 @@ declare const indexV1_findBookings: typeof findBookings;
|
|
|
4359
4341
|
declare const indexV1_listFacilityOffers: typeof listFacilityOffers;
|
|
4360
4342
|
declare const indexV1_updateBooking: typeof updateBooking;
|
|
4361
4343
|
declare namespace indexV1 {
|
|
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 };
|
|
4344
|
+
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_FacilityOfferConditionNotImplemented as FacilityOfferConditionNotImplemented, 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 };
|
|
4363
4345
|
}
|
|
4364
4346
|
|
|
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
|
|
4347
|
+
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 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 };
|