@matchi/api 0.20250410.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 -96
- package/dist/main/index.d.ts +64 -96
- 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 {
|
|
@@ -1969,13 +1959,6 @@ declare class AuthorizedService {
|
|
|
1969
1959
|
* @throws ApiError
|
|
1970
1960
|
*/
|
|
1971
1961
|
static getBookingUsers(bookingId: number): CancelablePromise<bookingUsersResponse>;
|
|
1972
|
-
/**
|
|
1973
|
-
* Search for users
|
|
1974
|
-
* @param key The search query
|
|
1975
|
-
* @returns userPublicProfile List of public profiles found
|
|
1976
|
-
* @throws ApiError
|
|
1977
|
-
*/
|
|
1978
|
-
static searchUsers(key: string): CancelablePromise<Array<userPublicProfile>>;
|
|
1979
1962
|
/**
|
|
1980
1963
|
* List all chats for the current user
|
|
1981
1964
|
* @param userChatStatus If provided, only returns user chats which match this user chat status:
|
|
@@ -2323,10 +2306,11 @@ declare class AuthorizedService {
|
|
|
2323
2306
|
* @param endDateTime String end DateTime (UTC)
|
|
2324
2307
|
* @param sportIds String ID of the sport
|
|
2325
2308
|
* @param availableSpots Number of minimum available spots (0 for returning only full matches)
|
|
2309
|
+
* @param limit Maximum number of items to return.
|
|
2326
2310
|
* @returns playSessionResponse List of open play session available for the user
|
|
2327
2311
|
* @throws ApiError
|
|
2328
2312
|
*/
|
|
2329
|
-
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>;
|
|
2330
2314
|
/**
|
|
2331
2315
|
* Add user to waitlist on occasion with id
|
|
2332
2316
|
* @param id Activity occasion id
|
|
@@ -2739,15 +2723,6 @@ declare class PlaySessionServiceV1Service {
|
|
|
2739
2723
|
* @throws ApiError
|
|
2740
2724
|
*/
|
|
2741
2725
|
static addUserWithId(sessionId: string, userId: string, requestBody: playsessionUserDetails): CancelablePromise<playSession>;
|
|
2742
|
-
/**
|
|
2743
|
-
* Update player in play session given user id
|
|
2744
|
-
* @param sessionId Play Session ID
|
|
2745
|
-
* @param userId The user ID of the play session participant to update
|
|
2746
|
-
* @param requestBody
|
|
2747
|
-
* @returns playSession User is updated in the playsession
|
|
2748
|
-
* @throws ApiError
|
|
2749
|
-
*/
|
|
2750
|
-
static updateUserWithId(sessionId: string, userId: string, requestBody: playsessionUserDetails): CancelablePromise<playSession>;
|
|
2751
2726
|
/**
|
|
2752
2727
|
* Remove player from play session given user email
|
|
2753
2728
|
* @param sessionId Play Session ID
|
|
@@ -2808,20 +2783,14 @@ declare class PlaySessionServiceV1Service {
|
|
|
2808
2783
|
* @param endDateTime String end DateTime (UTC)
|
|
2809
2784
|
* @param sportIds String ID of the sport
|
|
2810
2785
|
* @param availableSpots Number of minimum available spots (0 for returning only full matches)
|
|
2786
|
+
* @param limit Maximum number of items to return.
|
|
2811
2787
|
* @returns playSessionResponse List of open play session available for the user
|
|
2812
2788
|
* @throws ApiError
|
|
2813
2789
|
*/
|
|
2814
|
-
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>;
|
|
2815
2791
|
}
|
|
2816
2792
|
|
|
2817
2793
|
declare class UserServiceV1Service {
|
|
2818
|
-
/**
|
|
2819
|
-
* Search for users
|
|
2820
|
-
* @param key The search query
|
|
2821
|
-
* @returns userPublicProfile List of public profiles found
|
|
2822
|
-
* @throws ApiError
|
|
2823
|
-
*/
|
|
2824
|
-
static searchUsers(key: string): CancelablePromise<Array<userPublicProfile>>;
|
|
2825
2794
|
/**
|
|
2826
2795
|
* Get public profile of requested user
|
|
2827
2796
|
* @param userId User ID
|
|
@@ -3011,36 +2980,37 @@ type FacilityOffer = {
|
|
|
3011
2980
|
data: FacilityPunchCardData | FacilityValueCardData;
|
|
3012
2981
|
type: 'FACILITY_PUNCH_CARD' | 'FACILITY_VALUE_CARD';
|
|
3013
2982
|
};
|
|
3014
|
-
type FacilityOfferCondition = (FacilityOfferConditionWeekdays | FacilityOfferConditionCourts | FacilityOfferConditionDate | FacilityOfferConditionTime | FacilityOfferConditionHoursinadvance | FacilityOfferConditionActivities) & {
|
|
3015
|
-
type
|
|
2983
|
+
type FacilityOfferCondition = (FacilityOfferConditionWeekdays | FacilityOfferConditionCourts | FacilityOfferConditionDate | FacilityOfferConditionTime | FacilityOfferConditionHoursinadvance | FacilityOfferConditionActivities | FacilityOfferConditionNotImplemented) & {
|
|
2984
|
+
type?: 'WEEKDAYS' | 'COURTS' | 'DATE' | 'TIME' | 'HOURSINADVANCE' | 'ACTIVITIES' | 'NOT_IMPLEMENTED';
|
|
3016
2985
|
};
|
|
3017
2986
|
type FacilityOfferConditionActivities = {
|
|
3018
|
-
activities: Array<{
|
|
3019
|
-
id: number;
|
|
3020
|
-
name: string;
|
|
3021
|
-
type?: string;
|
|
3022
|
-
}>;
|
|
3023
2987
|
all_activities: boolean;
|
|
3024
2988
|
not_valid_for_activities: boolean;
|
|
2989
|
+
type: string;
|
|
3025
2990
|
};
|
|
3026
2991
|
type FacilityOfferConditionCourts = {
|
|
3027
|
-
|
|
3028
|
-
|
|
3029
|
-
name: string;
|
|
3030
|
-
}>;
|
|
2992
|
+
name?: string;
|
|
2993
|
+
type: string;
|
|
3031
2994
|
};
|
|
3032
2995
|
type FacilityOfferConditionDate = {
|
|
3033
2996
|
end_date: string;
|
|
3034
2997
|
start_date: string;
|
|
2998
|
+
type: string;
|
|
3035
2999
|
};
|
|
3036
3000
|
type FacilityOfferConditionHoursinadvance = {
|
|
3037
3001
|
nr_of_hours: number;
|
|
3002
|
+
type: string;
|
|
3003
|
+
};
|
|
3004
|
+
type FacilityOfferConditionNotImplemented = {
|
|
3005
|
+
type: string;
|
|
3038
3006
|
};
|
|
3039
3007
|
type FacilityOfferConditionTime = {
|
|
3040
3008
|
end_time: string;
|
|
3041
3009
|
start_time: string;
|
|
3010
|
+
type: string;
|
|
3042
3011
|
};
|
|
3043
3012
|
type FacilityOfferConditionWeekdays = {
|
|
3013
|
+
type: string;
|
|
3044
3014
|
weekdays: Array<number>;
|
|
3045
3015
|
};
|
|
3046
3016
|
type FacilityOfferList = {
|
|
@@ -3064,7 +3034,7 @@ type FacilityPunchCardData = {
|
|
|
3064
3034
|
members_only: boolean;
|
|
3065
3035
|
name: string;
|
|
3066
3036
|
nr_of_bookings_in_period: number | null;
|
|
3067
|
-
nr_of_days_valid: number
|
|
3037
|
+
nr_of_days_valid: number;
|
|
3068
3038
|
nr_of_tickets: number;
|
|
3069
3039
|
offer_id: number;
|
|
3070
3040
|
price: string;
|
|
@@ -3079,7 +3049,7 @@ type FacilityValueCardData = {
|
|
|
3079
3049
|
facility_receive_membership_requests: boolean;
|
|
3080
3050
|
members_only: boolean;
|
|
3081
3051
|
name: string;
|
|
3082
|
-
nr_of_days_valid: number
|
|
3052
|
+
nr_of_days_valid: number;
|
|
3083
3053
|
offer_id: number;
|
|
3084
3054
|
price: string;
|
|
3085
3055
|
user_has_active_membership: boolean;
|
|
@@ -3622,79 +3592,59 @@ declare const FacilityOfferConditionSchema: {
|
|
|
3622
3592
|
readonly $ref: "#/components/schemas/FacilityOfferConditionHoursinadvance";
|
|
3623
3593
|
}, {
|
|
3624
3594
|
readonly $ref: "#/components/schemas/FacilityOfferConditionActivities";
|
|
3595
|
+
}, {
|
|
3596
|
+
readonly $ref: "#/components/schemas/FacilityOfferConditionNotImplemented";
|
|
3625
3597
|
}];
|
|
3626
3598
|
readonly properties: {
|
|
3627
3599
|
readonly type: {
|
|
3628
|
-
readonly enum: readonly ["WEEKDAYS", "COURTS", "DATE", "TIME", "HOURSINADVANCE", "ACTIVITIES"];
|
|
3600
|
+
readonly enum: readonly ["WEEKDAYS", "COURTS", "DATE", "TIME", "HOURSINADVANCE", "ACTIVITIES", "NOT_IMPLEMENTED"];
|
|
3629
3601
|
readonly type: "string";
|
|
3630
3602
|
};
|
|
3631
3603
|
};
|
|
3632
|
-
readonly required: readonly ["type"];
|
|
3633
3604
|
readonly type: "object";
|
|
3634
3605
|
};
|
|
3635
3606
|
declare const FacilityOfferConditionActivitiesSchema: {
|
|
3636
3607
|
readonly properties: {
|
|
3637
|
-
readonly activities: {
|
|
3638
|
-
readonly items: {
|
|
3639
|
-
readonly properties: {
|
|
3640
|
-
readonly id: {
|
|
3641
|
-
readonly type: "integer";
|
|
3642
|
-
};
|
|
3643
|
-
readonly name: {
|
|
3644
|
-
readonly type: "string";
|
|
3645
|
-
};
|
|
3646
|
-
readonly type: {
|
|
3647
|
-
readonly type: "string";
|
|
3648
|
-
};
|
|
3649
|
-
};
|
|
3650
|
-
readonly required: readonly ["id", "name"];
|
|
3651
|
-
readonly type: "object";
|
|
3652
|
-
};
|
|
3653
|
-
readonly type: "array";
|
|
3654
|
-
};
|
|
3655
3608
|
readonly all_activities: {
|
|
3656
3609
|
readonly type: "boolean";
|
|
3657
3610
|
};
|
|
3658
3611
|
readonly not_valid_for_activities: {
|
|
3659
3612
|
readonly type: "boolean";
|
|
3660
3613
|
};
|
|
3614
|
+
readonly type: {
|
|
3615
|
+
readonly type: "string";
|
|
3616
|
+
};
|
|
3661
3617
|
};
|
|
3662
|
-
readonly required: readonly ["
|
|
3618
|
+
readonly required: readonly ["type", "not_valid_for_activities", "all_activities"];
|
|
3663
3619
|
readonly type: "object";
|
|
3664
3620
|
};
|
|
3665
3621
|
declare const FacilityOfferConditionCourtsSchema: {
|
|
3666
3622
|
readonly properties: {
|
|
3667
|
-
readonly
|
|
3668
|
-
readonly
|
|
3669
|
-
|
|
3670
|
-
|
|
3671
|
-
|
|
3672
|
-
};
|
|
3673
|
-
readonly name: {
|
|
3674
|
-
readonly type: "string";
|
|
3675
|
-
};
|
|
3676
|
-
};
|
|
3677
|
-
readonly required: readonly ["id", "name"];
|
|
3678
|
-
readonly type: "object";
|
|
3679
|
-
};
|
|
3680
|
-
readonly type: "array";
|
|
3623
|
+
readonly name: {
|
|
3624
|
+
readonly type: "string";
|
|
3625
|
+
};
|
|
3626
|
+
readonly type: {
|
|
3627
|
+
readonly type: "string";
|
|
3681
3628
|
};
|
|
3682
3629
|
};
|
|
3683
|
-
readonly required: readonly ["
|
|
3630
|
+
readonly required: readonly ["type"];
|
|
3684
3631
|
readonly type: "object";
|
|
3685
3632
|
};
|
|
3686
3633
|
declare const FacilityOfferConditionDateSchema: {
|
|
3687
3634
|
readonly properties: {
|
|
3688
3635
|
readonly end_date: {
|
|
3689
|
-
readonly format: "date";
|
|
3636
|
+
readonly format: "date-time";
|
|
3690
3637
|
readonly type: "string";
|
|
3691
3638
|
};
|
|
3692
3639
|
readonly start_date: {
|
|
3693
|
-
readonly format: "date";
|
|
3640
|
+
readonly format: "date-time";
|
|
3641
|
+
readonly type: "string";
|
|
3642
|
+
};
|
|
3643
|
+
readonly type: {
|
|
3694
3644
|
readonly type: "string";
|
|
3695
3645
|
};
|
|
3696
3646
|
};
|
|
3697
|
-
readonly required: readonly ["start_date", "end_date"];
|
|
3647
|
+
readonly required: readonly ["type", "start_date", "end_date"];
|
|
3698
3648
|
readonly type: "object";
|
|
3699
3649
|
};
|
|
3700
3650
|
declare const FacilityOfferConditionHoursinadvanceSchema: {
|
|
@@ -3702,8 +3652,20 @@ declare const FacilityOfferConditionHoursinadvanceSchema: {
|
|
|
3702
3652
|
readonly nr_of_hours: {
|
|
3703
3653
|
readonly type: "integer";
|
|
3704
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
|
+
};
|
|
3705
3667
|
};
|
|
3706
|
-
readonly required: readonly ["
|
|
3668
|
+
readonly required: readonly ["type"];
|
|
3707
3669
|
readonly type: "object";
|
|
3708
3670
|
};
|
|
3709
3671
|
declare const FacilityOfferConditionTimeSchema: {
|
|
@@ -3716,12 +3678,18 @@ declare const FacilityOfferConditionTimeSchema: {
|
|
|
3716
3678
|
readonly format: "time";
|
|
3717
3679
|
readonly type: "string";
|
|
3718
3680
|
};
|
|
3681
|
+
readonly type: {
|
|
3682
|
+
readonly type: "string";
|
|
3683
|
+
};
|
|
3719
3684
|
};
|
|
3720
|
-
readonly required: readonly ["start_time", "end_time"];
|
|
3685
|
+
readonly required: readonly ["type", "start_time", "end_time"];
|
|
3721
3686
|
readonly type: "object";
|
|
3722
3687
|
};
|
|
3723
3688
|
declare const FacilityOfferConditionWeekdaysSchema: {
|
|
3724
3689
|
readonly properties: {
|
|
3690
|
+
readonly type: {
|
|
3691
|
+
readonly type: "string";
|
|
3692
|
+
};
|
|
3725
3693
|
readonly weekdays: {
|
|
3726
3694
|
readonly items: {
|
|
3727
3695
|
readonly description: "Interger representation of weekday. 1 (Monday), 7 (Sunday).";
|
|
@@ -3730,7 +3698,7 @@ declare const FacilityOfferConditionWeekdaysSchema: {
|
|
|
3730
3698
|
readonly type: "array";
|
|
3731
3699
|
};
|
|
3732
3700
|
};
|
|
3733
|
-
readonly required: readonly ["weekdays"];
|
|
3701
|
+
readonly required: readonly ["type", "weekdays"];
|
|
3734
3702
|
readonly type: "object";
|
|
3735
3703
|
};
|
|
3736
3704
|
declare const FacilityOfferListSchema: {
|
|
@@ -3799,7 +3767,6 @@ declare const FacilityPunchCardDataSchema: {
|
|
|
3799
3767
|
readonly type: "integer";
|
|
3800
3768
|
};
|
|
3801
3769
|
readonly nr_of_days_valid: {
|
|
3802
|
-
readonly nullable: true;
|
|
3803
3770
|
readonly type: "integer";
|
|
3804
3771
|
};
|
|
3805
3772
|
readonly nr_of_tickets: {
|
|
@@ -3847,7 +3814,6 @@ declare const FacilityValueCardDataSchema: {
|
|
|
3847
3814
|
readonly type: "string";
|
|
3848
3815
|
};
|
|
3849
3816
|
readonly nr_of_days_valid: {
|
|
3850
|
-
readonly nullable: true;
|
|
3851
3817
|
readonly type: "integer";
|
|
3852
3818
|
};
|
|
3853
3819
|
readonly offer_id: {
|
|
@@ -4022,6 +3988,7 @@ declare const schemas_gen_FacilityOfferConditionActivitiesSchema: typeof Facilit
|
|
|
4022
3988
|
declare const schemas_gen_FacilityOfferConditionCourtsSchema: typeof FacilityOfferConditionCourtsSchema;
|
|
4023
3989
|
declare const schemas_gen_FacilityOfferConditionDateSchema: typeof FacilityOfferConditionDateSchema;
|
|
4024
3990
|
declare const schemas_gen_FacilityOfferConditionHoursinadvanceSchema: typeof FacilityOfferConditionHoursinadvanceSchema;
|
|
3991
|
+
declare const schemas_gen_FacilityOfferConditionNotImplementedSchema: typeof FacilityOfferConditionNotImplementedSchema;
|
|
4025
3992
|
declare const schemas_gen_FacilityOfferConditionSchema: typeof FacilityOfferConditionSchema;
|
|
4026
3993
|
declare const schemas_gen_FacilityOfferConditionTimeSchema: typeof FacilityOfferConditionTimeSchema;
|
|
4027
3994
|
declare const schemas_gen_FacilityOfferConditionWeekdaysSchema: typeof FacilityOfferConditionWeekdaysSchema;
|
|
@@ -4039,7 +4006,7 @@ declare const schemas_gen_pkgOpenapiSharedErrorsSchema: typeof pkgOpenapiSharedE
|
|
|
4039
4006
|
declare const schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema: typeof pkgOpenapiSharedOffsetPaginatedResultSetSchema;
|
|
4040
4007
|
declare const schemas_gen_pkgOpenapiSharedProblemDetailsSchema: typeof pkgOpenapiSharedProblemDetailsSchema;
|
|
4041
4008
|
declare namespace schemas_gen {
|
|
4042
|
-
export { schemas_gen_BookingSchema as BookingSchema, schemas_gen_CreateBookingSchema as CreateBookingSchema, schemas_gen_FacilityOfferConditionActivitiesSchema as FacilityOfferConditionActivitiesSchema, schemas_gen_FacilityOfferConditionCourtsSchema as FacilityOfferConditionCourtsSchema, schemas_gen_FacilityOfferConditionDateSchema as FacilityOfferConditionDateSchema, schemas_gen_FacilityOfferConditionHoursinadvanceSchema as FacilityOfferConditionHoursinadvanceSchema, schemas_gen_FacilityOfferConditionSchema as FacilityOfferConditionSchema, schemas_gen_FacilityOfferConditionTimeSchema as FacilityOfferConditionTimeSchema, schemas_gen_FacilityOfferConditionWeekdaysSchema as FacilityOfferConditionWeekdaysSchema, schemas_gen_FacilityOfferListSchema as FacilityOfferListSchema, schemas_gen_FacilityOfferOrderSchema as FacilityOfferOrderSchema, schemas_gen_FacilityOfferSchema as FacilityOfferSchema, schemas_gen_FacilityPunchCardDataSchema as FacilityPunchCardDataSchema, schemas_gen_FacilityValueCardDataSchema as FacilityValueCardDataSchema, schemas_gen_GuestSchema as GuestSchema, schemas_gen_PlayerSchema as PlayerSchema, schemas_gen_UpdateBookingSchema as UpdateBookingSchema, schemas_gen_pkgOpenapiSharedCursorPaginatedResultSetSchema as pkgOpenapiSharedCursorPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedErrorSchema as pkgOpenapiSharedErrorSchema, schemas_gen_pkgOpenapiSharedErrorsSchema as pkgOpenapiSharedErrorsSchema, schemas_gen_pkgOpenapiSharedOffsetPaginatedResultSetSchema as pkgOpenapiSharedOffsetPaginatedResultSetSchema, schemas_gen_pkgOpenapiSharedProblemDetailsSchema as pkgOpenapiSharedProblemDetailsSchema };
|
|
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 };
|
|
4043
4010
|
}
|
|
4044
4011
|
|
|
4045
4012
|
type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
|
|
@@ -4324,6 +4291,7 @@ type indexV1_FacilityOfferConditionActivities = FacilityOfferConditionActivities
|
|
|
4324
4291
|
type indexV1_FacilityOfferConditionCourts = FacilityOfferConditionCourts;
|
|
4325
4292
|
type indexV1_FacilityOfferConditionDate = FacilityOfferConditionDate;
|
|
4326
4293
|
type indexV1_FacilityOfferConditionHoursinadvance = FacilityOfferConditionHoursinadvance;
|
|
4294
|
+
type indexV1_FacilityOfferConditionNotImplemented = FacilityOfferConditionNotImplemented;
|
|
4327
4295
|
type indexV1_FacilityOfferConditionTime = FacilityOfferConditionTime;
|
|
4328
4296
|
type indexV1_FacilityOfferConditionWeekdays = FacilityOfferConditionWeekdays;
|
|
4329
4297
|
type indexV1_FacilityOfferList = FacilityOfferList;
|
|
@@ -4373,7 +4341,7 @@ declare const indexV1_findBookings: typeof findBookings;
|
|
|
4373
4341
|
declare const indexV1_listFacilityOffers: typeof listFacilityOffers;
|
|
4374
4342
|
declare const indexV1_updateBooking: typeof updateBooking;
|
|
4375
4343
|
declare namespace indexV1 {
|
|
4376
|
-
export { type indexV1_AddBookingData as AddBookingData, type indexV1_AddBookingError as AddBookingError, type indexV1_AddBookingErrors as AddBookingErrors, type indexV1_AddBookingResponse as AddBookingResponse, type indexV1_AddBookingResponses as AddBookingResponses, type indexV1_Booking as Booking, type indexV1_ClientOptions as ClientOptions, type indexV1_CreateBooking as CreateBooking, type indexV1_CreateFacilityOfferOrderData as CreateFacilityOfferOrderData, type indexV1_CreateFacilityOfferOrderError as CreateFacilityOfferOrderError, type indexV1_CreateFacilityOfferOrderErrors as CreateFacilityOfferOrderErrors, type indexV1_CreateFacilityOfferOrderResponse as CreateFacilityOfferOrderResponse, type indexV1_CreateFacilityOfferOrderResponses as CreateFacilityOfferOrderResponses, type indexV1_DeleteBookingData as DeleteBookingData, type indexV1_DeleteBookingError as DeleteBookingError, type indexV1_DeleteBookingErrors as DeleteBookingErrors, type indexV1_DeleteBookingResponse as DeleteBookingResponse, type indexV1_DeleteBookingResponses as DeleteBookingResponses, type indexV1_FacilityIdPath as FacilityIdPath, type indexV1_FacilityOffer as FacilityOffer, type indexV1_FacilityOfferCondition as FacilityOfferCondition, type indexV1_FacilityOfferConditionActivities as FacilityOfferConditionActivities, type indexV1_FacilityOfferConditionCourts as FacilityOfferConditionCourts, type indexV1_FacilityOfferConditionDate as FacilityOfferConditionDate, type indexV1_FacilityOfferConditionHoursinadvance as FacilityOfferConditionHoursinadvance, type indexV1_FacilityOfferConditionTime as FacilityOfferConditionTime, type indexV1_FacilityOfferConditionWeekdays as FacilityOfferConditionWeekdays, type indexV1_FacilityOfferList as FacilityOfferList, type indexV1_FacilityOfferOrder as FacilityOfferOrder, type indexV1_FacilityPunchCardData as FacilityPunchCardData, type indexV1_FacilityValueCardData as FacilityValueCardData, type indexV1_FindBookingByIdData as FindBookingByIdData, type indexV1_FindBookingByIdError as FindBookingByIdError, type indexV1_FindBookingByIdErrors as FindBookingByIdErrors, type indexV1_FindBookingByIdResponse as FindBookingByIdResponse, type indexV1_FindBookingByIdResponses as FindBookingByIdResponses, type indexV1_FindBookingsData as FindBookingsData, type indexV1_FindBookingsError as FindBookingsError, type indexV1_FindBookingsErrors as FindBookingsErrors, type indexV1_FindBookingsResponse as FindBookingsResponse, type indexV1_FindBookingsResponses as FindBookingsResponses, type indexV1_Guest as Guest, type indexV1_ListFacilityOffersData as ListFacilityOffersData, type indexV1_ListFacilityOffersError as ListFacilityOffersError, type indexV1_ListFacilityOffersErrors as ListFacilityOffersErrors, type indexV1_ListFacilityOffersResponse as ListFacilityOffersResponse, type indexV1_ListFacilityOffersResponses as ListFacilityOffersResponses, type indexV1_OfferIdPath as OfferIdPath, type indexV1_Options as Options, type indexV1_PkgOpenapiSharedCursorLimitParam as PkgOpenapiSharedCursorLimitParam, type indexV1_PkgOpenapiSharedCursorPaginatedResultSet as PkgOpenapiSharedCursorPaginatedResultSet, type indexV1_PkgOpenapiSharedCursorParam as PkgOpenapiSharedCursorParam, type indexV1_PkgOpenapiSharedError as PkgOpenapiSharedError, type indexV1_PkgOpenapiSharedErrors as PkgOpenapiSharedErrors, type indexV1_PkgOpenapiSharedOffsetLimitParam as PkgOpenapiSharedOffsetLimitParam, type indexV1_PkgOpenapiSharedOffsetPaginatedResultSet as PkgOpenapiSharedOffsetPaginatedResultSet, type indexV1_PkgOpenapiSharedOffsetParam as PkgOpenapiSharedOffsetParam, type indexV1_PkgOpenapiSharedProblemDetails as PkgOpenapiSharedProblemDetails, type indexV1_Player as Player, type indexV1_UpdateBooking as UpdateBooking, type indexV1_UpdateBookingData as UpdateBookingData, type indexV1_UpdateBookingError as UpdateBookingError, type indexV1_UpdateBookingErrors as UpdateBookingErrors, type indexV1_UpdateBookingResponse as UpdateBookingResponse, type indexV1_UpdateBookingResponses as UpdateBookingResponses, indexV1_addBooking as addBooking, indexV1_client as client, indexV1_createFacilityOfferOrder as createFacilityOfferOrder, indexV1_deleteBooking as deleteBooking, indexV1_findBookingById as findBookingById, indexV1_findBookings as findBookings, indexV1_listFacilityOffers as listFacilityOffers, reactQuery_gen as queries, schemas_gen as schemas, indexV1_updateBooking as updateBooking };
|
|
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 };
|
|
4377
4345
|
}
|
|
4378
4346
|
|
|
4379
|
-
export { type ActivityEvent, ActivityServiceV1Service, type AdminOccasionDetails, AnonymousService, ApiClientServiceV1Service, ApiError, AuthorizedService, BookingServiceV1Service, CancelError, CancelablePromise, CheckoutServiceV1Service, CompetitionServiceV1Service, CorsService, type Error$1 as Error, type ExternalServiceProperty, LoyaltyServiceV1Service, MembershipServiceV1Service, type OccasionCourt, OpenAPI, type OpenAPIConfig, type OrderPaymentDetails, type OrderPriceDetails, type OrderSplitPayments, type OrderSplitPaymentsRow, type OrderSplitPrice, type PaymentMethodPaymentRefund, PlaySessionServiceV1Service, type ServiceFeeSettings, UserServiceV1Service, access, type activitiesResponse, type activity, type activityOccasion, type activityType, type actor, type address, type adyenGiftCardOutcome, type apiClient, type apiClientInput, type apiClientListResponse, type article, type articleMetadata, type availability, type booking, type bookingGroup, bookingRestriction, type bookingRestrictions, bookingSubType, bookingSubscription, type bookingSubscriptionPayment, type bookingUser, bookingUserStatus, type bookingUsersResponse, type bookingsResponse, type camera, cancellationPolicy, chat, chatTarget, type checkoutResponse, clientType, type competitionAdminAccount, type config, type configuration, type configurationEntry, type configurationMap, type configurationResource, type coupon, type createBookingEventExternal, createChatResponse, type createPromoCode, type dailyQuota, type days, type deleteBookingEventExternal, directionParam, type endTimePriceDetail, type endTimesWithRestrictions, type exposeOccasions, type facilitiesResponse, type facility, type facilityConfiguration, type facilityDetails, type friendRelationResponse, type friendRelationsResponse, type getChatAuthResponse, type getChatResponse, type giftCard, type hideFullyBooked, type hours, type internalPaymentMethod, type levelRange, type limitParam, type listChatsResponse, type membershipRequest, type membershipRequestItem, type monthlyUsage, months, type newMessageNotification, notificationChatGroup, type notificationChatMember, notificationEntity, type notificationMessage, type notificationMessageData, type occasionBooking, type occasionParticipant, type offsetParam, type openingHours, type order, type orderSplitBaseResponse, type participants, type payment, type paymentDetails, type paymentInfo, type paymentInterval, type paymentMethodPaymentDetail, type paymentMethods, type paymentType, type paymentsResponse, pendingPayment, type playSession, type playSessionBooking, type playSessionBookingPayment, type playSessionResponse, playSessionSettings, playSessionUser, type playerLevels, playerStatusParam, playingUserResponse, type playingUsersResponse, type playsessionUserDetails, type position, type price, type priceDetails, type priceDetailsActivity, type profile, type promoCode, type promoCodeOutcome, type pspSession, type resource, type resultSet, type serviceFee, type
|
|
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 };
|