@gooday_corp/gooday-api-client 1.2.97 → 1.2.99
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 +9 -3
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -7110,6 +7110,12 @@ export interface WhatsOnAvailabilityPayloadDTO {
|
|
|
7110
7110
|
* @memberof WhatsOnAvailabilityPayloadDTO
|
|
7111
7111
|
*/
|
|
7112
7112
|
'endDate': string;
|
|
7113
|
+
/**
|
|
7114
|
+
* Staff id for this event
|
|
7115
|
+
* @type {string}
|
|
7116
|
+
* @memberof WhatsOnAvailabilityPayloadDTO
|
|
7117
|
+
*/
|
|
7118
|
+
'staff'?: string;
|
|
7113
7119
|
/**
|
|
7114
7120
|
* No of people for this booking
|
|
7115
7121
|
* @type {number}
|
|
@@ -7130,11 +7136,11 @@ export interface WhatsOnAvailabilityPayloadDTO {
|
|
|
7130
7136
|
*/
|
|
7131
7137
|
export interface WhatsOnAvailabilityResponseDTO {
|
|
7132
7138
|
/**
|
|
7133
|
-
*
|
|
7134
|
-
* @type {
|
|
7139
|
+
* Flag to indicate whether user can do booking or not
|
|
7140
|
+
* @type {boolean}
|
|
7135
7141
|
* @memberof WhatsOnAvailabilityResponseDTO
|
|
7136
7142
|
*/
|
|
7137
|
-
'
|
|
7143
|
+
'isBookingAllowed': boolean;
|
|
7138
7144
|
}
|
|
7139
7145
|
/**
|
|
7140
7146
|
*
|