@gooday_corp/gooday-api-client 2.2.6 → 2.2.7

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 CHANGED
@@ -3170,6 +3170,12 @@ export interface CalendarSlots {
3170
3170
  * @memberof CalendarSlots
3171
3171
  */
3172
3172
  'end': string;
3173
+ /**
3174
+ * Slot is available or not
3175
+ * @type {boolean}
3176
+ * @memberof CalendarSlots
3177
+ */
3178
+ 'isBusinessAvailable': boolean;
3173
3179
  /**
3174
3180
  * Slot is available or not
3175
3181
  * @type {boolean}
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **start** | **string** | start | [default to undefined]
9
9
  **end** | **string** | end | [default to undefined]
10
+ **isBusinessAvailable** | **boolean** | Slot is available or not | [default to undefined]
10
11
  **isAvailable** | **boolean** | Slot is available or not | [default to undefined]
11
12
  **unavailableFriends** | **Array<object>** | Friends unavailable for this slot | [default to undefined]
12
13
  **unavailableStaffs** | [**Array<BusinessStaffEntity>**](BusinessStaffEntity.md) | Staffs unavailable for this slot | [default to undefined]
@@ -19,6 +20,7 @@ import { CalendarSlots } from './api';
19
20
  const instance: CalendarSlots = {
20
21
  start,
21
22
  end,
23
+ isBusinessAvailable,
22
24
  isAvailable,
23
25
  unavailableFriends,
24
26
  unavailableStaffs,
@@ -6,8 +6,8 @@
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **title** | **string** | The title of the booking | [default to 'Default Booking Title']
9
- **date** | **string** | The start date of the booking | [default to 2025-09-09T17:59:11+05:30]
10
- **recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2025-09-09T17:59:11+05:30]
9
+ **date** | **string** | The start date of the booking | [default to 2025-09-10T18:00:14+05:30]
10
+ **recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2025-09-10T18:00:14+05:30]
11
11
  **from** | **string** | | [optional] [default to undefined]
12
12
  **to** | **string** | | [optional] [default to undefined]
13
13
  **venue** | **string** | The venue of the booking | [default to undefined]
@@ -5,7 +5,7 @@
5
5
 
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
- **date** | **string** | The start date of the booking | [default to 2025-09-09T17:59:11+05:30]
8
+ **date** | **string** | The start date of the booking | [default to 2025-09-10T18:00:14+05:30]
9
9
  **from** | **string** | | [optional] [default to undefined]
10
10
  **to** | **string** | | [optional] [default to undefined]
11
11
  **notes** | **string** | | [optional] [default to undefined]
@@ -5,8 +5,8 @@
5
5
 
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
- **startDate** | **string** | The start date of the waitlist | [default to 2025-09-09T17:59:11+05:30]
9
- **endDate** | **string** | The end date of the waitlist | [default to 2025-09-09T18:59:11+05:30]
8
+ **startDate** | **string** | The start date of the waitlist | [default to 2025-09-10T18:00:14+05:30]
9
+ **endDate** | **string** | The end date of the waitlist | [default to 2025-09-10T19:00:14+05:30]
10
10
  **venue** | **string** | The venue of the waitlist | [default to undefined]
11
11
  **business** | **string** | The business associated with the waitlist | [default to undefined]
12
12
  **collaborators** | [**Array<CreateWaitlistBookingCollaboratorPayload>**](CreateWaitlistBookingCollaboratorPayload.md) | The list of collaborators associated with the waitlist | [default to undefined]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooday_corp/gooday-api-client",
3
- "version": "2.2.6",
3
+ "version": "2.2.7",
4
4
  "description": "API client for Gooday",
5
5
  "main": "index.ts",
6
6
  "scripts": {},