@gooday_corp/gooday-api-client 1.2.86 → 1.2.87
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/api.ts +62 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -1041,6 +1041,44 @@ export interface BookingResponseDTO {
|
|
|
1041
1041
|
*/
|
|
1042
1042
|
'data': BookingResponse;
|
|
1043
1043
|
}
|
|
1044
|
+
/**
|
|
1045
|
+
*
|
|
1046
|
+
* @export
|
|
1047
|
+
* @interface BookingRulesEntity
|
|
1048
|
+
*/
|
|
1049
|
+
export interface BookingRulesEntity {
|
|
1050
|
+
/**
|
|
1051
|
+
* Final booking relative time
|
|
1052
|
+
* @type {string}
|
|
1053
|
+
* @memberof BookingRulesEntity
|
|
1054
|
+
*/
|
|
1055
|
+
'finalBookingTimeRelative': string;
|
|
1056
|
+
/**
|
|
1057
|
+
* Final booking absolute time
|
|
1058
|
+
* @type {string}
|
|
1059
|
+
* @memberof BookingRulesEntity
|
|
1060
|
+
*/
|
|
1061
|
+
'finalBookingTimeAbsolute': string;
|
|
1062
|
+
}
|
|
1063
|
+
/**
|
|
1064
|
+
*
|
|
1065
|
+
* @export
|
|
1066
|
+
* @interface BookingRulesPayloadDTO
|
|
1067
|
+
*/
|
|
1068
|
+
export interface BookingRulesPayloadDTO {
|
|
1069
|
+
/**
|
|
1070
|
+
* Final booking relative time
|
|
1071
|
+
* @type {string}
|
|
1072
|
+
* @memberof BookingRulesPayloadDTO
|
|
1073
|
+
*/
|
|
1074
|
+
'finalBookingTimeRelative': string;
|
|
1075
|
+
/**
|
|
1076
|
+
* Final booking absolute time
|
|
1077
|
+
* @type {string}
|
|
1078
|
+
* @memberof BookingRulesPayloadDTO
|
|
1079
|
+
*/
|
|
1080
|
+
'finalBookingTimeAbsolute': string;
|
|
1081
|
+
}
|
|
1044
1082
|
/**
|
|
1045
1083
|
*
|
|
1046
1084
|
* @export
|
|
@@ -4968,6 +5006,12 @@ export interface PrepaidServiceEntity {
|
|
|
4968
5006
|
* @memberof PrepaidServiceEntity
|
|
4969
5007
|
*/
|
|
4970
5008
|
'staffs': Array<BusinessStaffEntity>;
|
|
5009
|
+
/**
|
|
5010
|
+
*
|
|
5011
|
+
* @type {BookingRulesEntity}
|
|
5012
|
+
* @memberof PrepaidServiceEntity
|
|
5013
|
+
*/
|
|
5014
|
+
'rules': BookingRulesEntity;
|
|
4971
5015
|
/**
|
|
4972
5016
|
*
|
|
4973
5017
|
* @type {Array<StaffPrice>}
|
|
@@ -5155,6 +5199,12 @@ export interface PrepaidServicePayloadDTO {
|
|
|
5155
5199
|
* @memberof PrepaidServicePayloadDTO
|
|
5156
5200
|
*/
|
|
5157
5201
|
'staffPrice': Array<StaffPrice>;
|
|
5202
|
+
/**
|
|
5203
|
+
* Booking rules
|
|
5204
|
+
* @type {BookingRulesPayloadDTO}
|
|
5205
|
+
* @memberof PrepaidServicePayloadDTO
|
|
5206
|
+
*/
|
|
5207
|
+
'rules': BookingRulesPayloadDTO;
|
|
5158
5208
|
/**
|
|
5159
5209
|
* Business venue
|
|
5160
5210
|
* @type {string}
|
|
@@ -7209,6 +7259,12 @@ export interface WhatsOnEntity {
|
|
|
7209
7259
|
* @memberof WhatsOnEntity
|
|
7210
7260
|
*/
|
|
7211
7261
|
'location'?: WhatsOnLocationDTO;
|
|
7262
|
+
/**
|
|
7263
|
+
*
|
|
7264
|
+
* @type {BookingRulesEntity}
|
|
7265
|
+
* @memberof WhatsOnEntity
|
|
7266
|
+
*/
|
|
7267
|
+
'rules'?: BookingRulesEntity;
|
|
7212
7268
|
/**
|
|
7213
7269
|
*
|
|
7214
7270
|
* @type {number}
|
|
@@ -7489,6 +7545,12 @@ export interface WhatsOnPayloadDTO {
|
|
|
7489
7545
|
* @memberof WhatsOnPayloadDTO
|
|
7490
7546
|
*/
|
|
7491
7547
|
'price': number;
|
|
7548
|
+
/**
|
|
7549
|
+
* Booking rules
|
|
7550
|
+
* @type {BookingRulesPayloadDTO}
|
|
7551
|
+
* @memberof WhatsOnPayloadDTO
|
|
7552
|
+
*/
|
|
7553
|
+
'rules': BookingRulesPayloadDTO;
|
|
7492
7554
|
/**
|
|
7493
7555
|
*
|
|
7494
7556
|
* @type {number}
|