@gooday_corp/gooday-api-client 1.2.93 → 1.2.95
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 +39 -3
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -2379,6 +2379,24 @@ export interface CalendarSlots {
|
|
|
2379
2379
|
* @memberof CalendarSlots
|
|
2380
2380
|
*/
|
|
2381
2381
|
'end': string;
|
|
2382
|
+
/**
|
|
2383
|
+
* Slot is available or not
|
|
2384
|
+
* @type {boolean}
|
|
2385
|
+
* @memberof CalendarSlots
|
|
2386
|
+
*/
|
|
2387
|
+
'isAvailable': boolean;
|
|
2388
|
+
/**
|
|
2389
|
+
* Friends unavailable for this slot
|
|
2390
|
+
* @type {Array<object>}
|
|
2391
|
+
* @memberof CalendarSlots
|
|
2392
|
+
*/
|
|
2393
|
+
'unavailableFriends': Array<object>;
|
|
2394
|
+
/**
|
|
2395
|
+
* Staffs unavailable for this slot
|
|
2396
|
+
* @type {Array<BusinessStaffEntity>}
|
|
2397
|
+
* @memberof CalendarSlots
|
|
2398
|
+
*/
|
|
2399
|
+
'unavailableStaffs': Array<BusinessStaffEntity>;
|
|
2382
2400
|
}
|
|
2383
2401
|
/**
|
|
2384
2402
|
*
|
|
@@ -7102,13 +7120,25 @@ export interface WhatsDiscountCodeResponseDTO {
|
|
|
7102
7120
|
*/
|
|
7103
7121
|
export interface WhatsOnAvailabilityPayloadDTO {
|
|
7104
7122
|
/**
|
|
7105
|
-
*
|
|
7123
|
+
* Start date for the events
|
|
7124
|
+
* @type {string}
|
|
7125
|
+
* @memberof WhatsOnAvailabilityPayloadDTO
|
|
7126
|
+
*/
|
|
7127
|
+
'startDate': string;
|
|
7128
|
+
/**
|
|
7129
|
+
* End date for the events
|
|
7130
|
+
* @type {string}
|
|
7131
|
+
* @memberof WhatsOnAvailabilityPayloadDTO
|
|
7132
|
+
*/
|
|
7133
|
+
'endDate': string;
|
|
7134
|
+
/**
|
|
7135
|
+
* No of people for this booking
|
|
7106
7136
|
* @type {number}
|
|
7107
7137
|
* @memberof WhatsOnAvailabilityPayloadDTO
|
|
7108
7138
|
*/
|
|
7109
|
-
'
|
|
7139
|
+
'noOfPeople': number;
|
|
7110
7140
|
/**
|
|
7111
|
-
*
|
|
7141
|
+
* Whats On Id
|
|
7112
7142
|
* @type {string}
|
|
7113
7143
|
* @memberof WhatsOnAvailabilityPayloadDTO
|
|
7114
7144
|
*/
|
|
@@ -7698,6 +7728,12 @@ export interface WhatsOnSlotsPayload {
|
|
|
7698
7728
|
* @memberof WhatsOnSlotsPayload
|
|
7699
7729
|
*/
|
|
7700
7730
|
'collaborators': Array<string>;
|
|
7731
|
+
/**
|
|
7732
|
+
* List of staff associated with the booking
|
|
7733
|
+
* @type {Array<string>}
|
|
7734
|
+
* @memberof WhatsOnSlotsPayload
|
|
7735
|
+
*/
|
|
7736
|
+
'staffs': Array<string>;
|
|
7701
7737
|
/**
|
|
7702
7738
|
* WhatsOn ID
|
|
7703
7739
|
* @type {string}
|