@gooday_corp/gooday-api-client 1.3.83 → 1.3.85

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
@@ -4884,11 +4884,11 @@ export interface GetAllVenueDto {
4884
4884
  */
4885
4885
  'people'?: number;
4886
4886
  /**
4887
- *
4887
+ * Coordinates in the format [longitude, latitude]
4888
4888
  * @type {Array<number>}
4889
4889
  * @memberof GetAllVenueDto
4890
4890
  */
4891
- 'coordinates': Array<number>;
4891
+ 'coordinates'?: Array<number>;
4892
4892
  }
4893
4893
  /**
4894
4894
  *
@@ -9375,12 +9375,24 @@ export interface WhatsOnFilterDTO {
9375
9375
  * @memberof WhatsOnFilterDTO
9376
9376
  */
9377
9377
  'maxPrice'?: number;
9378
+ /**
9379
+ * Maximum price filter
9380
+ * @type {number}
9381
+ * @memberof WhatsOnFilterDTO
9382
+ */
9383
+ 'minPrice'?: number;
9378
9384
  /**
9379
9385
  *
9380
9386
  * @type {number}
9381
9387
  * @memberof WhatsOnFilterDTO
9382
9388
  */
9383
9389
  'number'?: number;
9390
+ /**
9391
+ *
9392
+ * @type {Array<string>}
9393
+ * @memberof WhatsOnFilterDTO
9394
+ */
9395
+ 'cuisines'?: Array<string>;
9384
9396
  }
9385
9397
  /**
9386
9398
  *
@@ -6,7 +6,7 @@
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-05-27T04:13:51Z]
9
+ **date** | **string** | The start date of the booking | [default to 2025-05-30T11:34:12Z]
10
10
  **from** | **string** | | [optional] [default to undefined]
11
11
  **to** | **string** | | [optional] [default to undefined]
12
12
  **venue** | **string** | The venue of the booking | [default to undefined]
@@ -9,7 +9,7 @@ Name | Type | Description | Notes
9
9
  **page** | **number** | Page number for pagination | [optional] [default to undefined]
10
10
  **limit** | **number** | Number of items per page for pagination | [optional] [default to undefined]
11
11
  **people** | **number** | | [optional] [default to undefined]
12
- **coordinates** | **Array&lt;number&gt;** | | [default to undefined]
12
+ **coordinates** | **Array&lt;number&gt;** | Coordinates in the format [longitude, latitude] | [optional] [default to undefined]
13
13
 
14
14
  ## Example
15
15
 
@@ -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-05-27T04:13:51Z]
8
+ **date** | **string** | The start date of the booking | [default to 2025-05-30T11:34:12Z]
9
9
  **from** | **string** | | [optional] [default to undefined]
10
10
  **to** | **string** | | [optional] [default to undefined]
11
11
 
@@ -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-05-27T04:13:51Z]
9
- **endDate** | **string** | The end date of the waitlist | [default to 2025-05-27T05:13:51Z]
8
+ **startDate** | **string** | The start date of the waitlist | [default to 2025-05-30T11:34:12Z]
9
+ **endDate** | **string** | The end date of the waitlist | [default to 2025-05-30T12:34:12Z]
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&lt;CreateWaitlistBookingCollaboratorPayload&gt;**](CreateWaitlistBookingCollaboratorPayload.md) | The list of collaborators associated with the waitlist | [default to undefined]
@@ -15,7 +15,9 @@ Name | Type | Description | Notes
15
15
  **to** | **string** | | [optional] [default to undefined]
16
16
  **distance** | **number** | | [optional] [default to undefined]
17
17
  **maxPrice** | **number** | Maximum price filter | [optional] [default to undefined]
18
+ **minPrice** | **number** | Maximum price filter | [optional] [default to undefined]
18
19
  **number** | **number** | | [optional] [default to undefined]
20
+ **cuisines** | **Array&lt;string&gt;** | | [optional] [default to undefined]
19
21
 
20
22
  ## Example
21
23
 
@@ -33,7 +35,9 @@ const instance: WhatsOnFilterDTO = {
33
35
  to,
34
36
  distance,
35
37
  maxPrice,
38
+ minPrice,
36
39
  number,
40
+ cuisines,
37
41
  };
38
42
  ```
39
43
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooday_corp/gooday-api-client",
3
- "version": "1.3.83",
3
+ "version": "1.3.85",
4
4
  "description": "API client for Gooday",
5
5
  "main": "index.ts",
6
6
  "scripts": {},