@gooday_corp/gooday-api-client 1.5.30 → 1.5.31

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
@@ -7426,6 +7426,12 @@ export interface SearchHistoryMeta {
7426
7426
  * @memberof SearchHistoryMeta
7427
7427
  */
7428
7428
  'venue'?: BusinessVenueDetailsEntity;
7429
+ /**
7430
+ *
7431
+ * @type {WhatsOnEntity}
7432
+ * @memberof SearchHistoryMeta
7433
+ */
7434
+ 'whatsOn'?: WhatsOnEntity;
7429
7435
  }
7430
7436
  /**
7431
7437
  *
@@ -7472,6 +7478,12 @@ export interface SearchHistoryPayloadMeta {
7472
7478
  * @memberof SearchHistoryPayloadMeta
7473
7479
  */
7474
7480
  'venue'?: string;
7481
+ /**
7482
+ *
7483
+ * @type {string}
7484
+ * @memberof SearchHistoryPayloadMeta
7485
+ */
7486
+ 'whatsOn'?: string;
7475
7487
  }
7476
7488
  /**
7477
7489
  *
@@ -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-07-21T13:58:46Z]
10
- **recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2025-07-21T13:58:46Z]
9
+ **date** | **string** | The start date of the booking | [default to 2025-07-22T14:01:16+05:30]
10
+ **recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2025-07-22T14:01:16+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-07-21T13:58:46Z]
8
+ **date** | **string** | The start date of the booking | [default to 2025-07-22T14:01:16+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]
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **userId** | [**UserEntity**](UserEntity.md) | | [optional] [default to undefined]
9
9
  **venue** | [**BusinessVenueDetailsEntity**](BusinessVenueDetailsEntity.md) | | [optional] [default to undefined]
10
+ **whatsOn** | [**WhatsOnEntity**](WhatsOnEntity.md) | | [optional] [default to undefined]
10
11
 
11
12
  ## Example
12
13
 
@@ -16,6 +17,7 @@ import { SearchHistoryMeta } from './api';
16
17
  const instance: SearchHistoryMeta = {
17
18
  userId,
18
19
  venue,
20
+ whatsOn,
19
21
  };
20
22
  ```
21
23
 
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **userId** | **string** | | [optional] [default to undefined]
9
9
  **venue** | **string** | | [optional] [default to undefined]
10
+ **whatsOn** | **string** | | [optional] [default to undefined]
10
11
 
11
12
  ## Example
12
13
 
@@ -16,6 +17,7 @@ import { SearchHistoryPayloadMeta } from './api';
16
17
  const instance: SearchHistoryPayloadMeta = {
17
18
  userId,
18
19
  venue,
20
+ whatsOn,
19
21
  };
20
22
  ```
21
23
 
@@ -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-07-21T13:58:47Z]
9
- **endDate** | **string** | The end date of the waitlist | [default to 2025-07-21T14:58:47Z]
8
+ **startDate** | **string** | The start date of the waitlist | [default to 2025-07-22T14:01:16+05:30]
9
+ **endDate** | **string** | The end date of the waitlist | [default to 2025-07-22T15:01:16+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": "1.5.30",
3
+ "version": "1.5.31",
4
4
  "description": "API client for Gooday",
5
5
  "main": "index.ts",
6
6
  "scripts": {},