@gooday_corp/gooday-api-client 1.3.68 → 1.3.70
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
|
@@ -2354,6 +2354,12 @@ export interface BusinessVenueMapDTO {
|
|
|
2354
2354
|
* @memberof BusinessVenueMapDTO
|
|
2355
2355
|
*/
|
|
2356
2356
|
'category'?: Array<string>;
|
|
2357
|
+
/**
|
|
2358
|
+
* Users ID
|
|
2359
|
+
* @type {Array<string>}
|
|
2360
|
+
* @memberof BusinessVenueMapDTO
|
|
2361
|
+
*/
|
|
2362
|
+
'users'?: Array<string>;
|
|
2357
2363
|
/**
|
|
2358
2364
|
* Page number for pagination
|
|
2359
2365
|
* @type {number}
|
|
@@ -2371,7 +2377,13 @@ export interface BusinessVenueMapDTO {
|
|
|
2371
2377
|
* @type {string}
|
|
2372
2378
|
* @memberof BusinessVenueMapDTO
|
|
2373
2379
|
*/
|
|
2374
|
-
'
|
|
2380
|
+
'maxPrice'?: string;
|
|
2381
|
+
/**
|
|
2382
|
+
*
|
|
2383
|
+
* @type {string}
|
|
2384
|
+
* @memberof BusinessVenueMapDTO
|
|
2385
|
+
*/
|
|
2386
|
+
'minPrice'?: string;
|
|
2375
2387
|
/**
|
|
2376
2388
|
*
|
|
2377
2389
|
* @type {number}
|
|
@@ -7,9 +7,11 @@ Name | Type | Description | Notes
|
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**search** | **string** | Business name search | [optional] [default to undefined]
|
|
9
9
|
**category** | **Array<string>** | Business category ID | [optional] [default to undefined]
|
|
10
|
+
**users** | **Array<string>** | Users ID | [optional] [default to undefined]
|
|
10
11
|
**page** | **number** | Page number for pagination | [optional] [default to 1]
|
|
11
12
|
**limit** | **number** | Number of items per page for pagination | [optional] [default to 10]
|
|
12
|
-
**
|
|
13
|
+
**maxPrice** | **string** | | [optional] [default to undefined]
|
|
14
|
+
**minPrice** | **string** | | [optional] [default to undefined]
|
|
13
15
|
**people** | **number** | | [optional] [default to undefined]
|
|
14
16
|
**distance** | **string** | | [optional] [default to undefined]
|
|
15
17
|
**date** | **string** | Start date for the events | [optional] [default to undefined]
|
|
@@ -24,9 +26,11 @@ import { BusinessVenueMapDTO } from './api';
|
|
|
24
26
|
const instance: BusinessVenueMapDTO = {
|
|
25
27
|
search,
|
|
26
28
|
category,
|
|
29
|
+
users,
|
|
27
30
|
page,
|
|
28
31
|
limit,
|
|
29
|
-
|
|
32
|
+
maxPrice,
|
|
33
|
+
minPrice,
|
|
30
34
|
people,
|
|
31
35
|
distance,
|
|
32
36
|
date,
|
|
@@ -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-
|
|
9
|
+
**date** | **string** | The start date of the booking | [default to 2025-05-21T20:28:46+05:30]
|
|
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]
|
|
@@ -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-
|
|
8
|
+
**date** | **string** | The start date of the booking | [default to 2025-05-21T20:28:46+05:30]
|
|
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-
|
|
9
|
-
**endDate** | **string** | The end date of the waitlist | [default to 2025-05-
|
|
8
|
+
**startDate** | **string** | The start date of the waitlist | [default to 2025-05-21T20:28:46+05:30]
|
|
9
|
+
**endDate** | **string** | The end date of the waitlist | [default to 2025-05-21T21:28:46+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]
|