@gooday_corp/gooday-api-client 1.2.93 → 1.2.94

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.
Files changed (2) hide show
  1. package/api.ts +27 -3
  2. package/package.json +1 -1
package/api.ts CHANGED
@@ -2379,6 +2379,18 @@ 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>;
2382
2394
  }
2383
2395
  /**
2384
2396
  *
@@ -7102,13 +7114,25 @@ export interface WhatsDiscountCodeResponseDTO {
7102
7114
  */
7103
7115
  export interface WhatsOnAvailabilityPayloadDTO {
7104
7116
  /**
7105
- *
7117
+ * Start date for the events
7118
+ * @type {string}
7119
+ * @memberof WhatsOnAvailabilityPayloadDTO
7120
+ */
7121
+ 'startDate': string;
7122
+ /**
7123
+ * End date for the events
7124
+ * @type {string}
7125
+ * @memberof WhatsOnAvailabilityPayloadDTO
7126
+ */
7127
+ 'endDate': string;
7128
+ /**
7129
+ * No of people for this booking
7106
7130
  * @type {number}
7107
7131
  * @memberof WhatsOnAvailabilityPayloadDTO
7108
7132
  */
7109
- 'customers': number;
7133
+ 'noOfPeople': number;
7110
7134
  /**
7111
- *
7135
+ * Whats On Id
7112
7136
  * @type {string}
7113
7137
  * @memberof WhatsOnAvailabilityPayloadDTO
7114
7138
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooday_corp/gooday-api-client",
3
- "version": "1.2.93",
3
+ "version": "1.2.94",
4
4
  "description": "API client for Gooday",
5
5
  "main": "index.ts",
6
6
  "scripts": {},