@gooday_corp/gooday-api-client 1.3.77 → 1.3.79

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
@@ -2106,10 +2106,16 @@ export interface BusinessVenueDTO {
2106
2106
  'timing'?: Array<BusinessTiming>;
2107
2107
  /**
2108
2108
  *
2109
- * @type {string}
2109
+ * @type {number}
2110
+ * @memberof BusinessVenueDTO
2111
+ */
2112
+ 'minPrice': number;
2113
+ /**
2114
+ *
2115
+ * @type {number}
2110
2116
  * @memberof BusinessVenueDTO
2111
2117
  */
2112
- 'priceRange': string;
2118
+ 'maxPrice': number;
2113
2119
  /**
2114
2120
  *
2115
2121
  * @type {LocationDTO}
@@ -2195,12 +2201,6 @@ export interface BusinessVenueDetailsEntity {
2195
2201
  * @memberof BusinessVenueDetailsEntity
2196
2202
  */
2197
2203
  'coverPhoto': Array<string>;
2198
- /**
2199
- *
2200
- * @type {string}
2201
- * @memberof BusinessVenueDetailsEntity
2202
- */
2203
- 'priceRange': string;
2204
2204
  /**
2205
2205
  *
2206
2206
  * @type {string}
@@ -2297,6 +2297,18 @@ export interface BusinessVenueDetailsEntity {
2297
2297
  * @memberof BusinessVenueDetailsEntity
2298
2298
  */
2299
2299
  'favoriteCount': number;
2300
+ /**
2301
+ *
2302
+ * @type {number}
2303
+ * @memberof BusinessVenueDetailsEntity
2304
+ */
2305
+ 'minPrice': number;
2306
+ /**
2307
+ *
2308
+ * @type {number}
2309
+ * @memberof BusinessVenueDetailsEntity
2310
+ */
2311
+ 'maxPrice': number;
2300
2312
  }
2301
2313
  /**
2302
2314
  *
@@ -2441,10 +2453,16 @@ export interface BusinessVenueMapDetailsEntity {
2441
2453
  'coverPhoto': Array<string>;
2442
2454
  /**
2443
2455
  *
2444
- * @type {string}
2456
+ * @type {number}
2457
+ * @memberof BusinessVenueMapDetailsEntity
2458
+ */
2459
+ 'minPrice': number;
2460
+ /**
2461
+ *
2462
+ * @type {number}
2445
2463
  * @memberof BusinessVenueMapDetailsEntity
2446
2464
  */
2447
- 'priceRange': string;
2465
+ 'maxPrice': number;
2448
2466
  /**
2449
2467
  *
2450
2468
  * @type {string}
@@ -4435,10 +4453,16 @@ export interface FindCustomerBookingPayload {
4435
4453
  export interface FindFriendsFavoritesDTO {
4436
4454
  /**
4437
4455
  *
4438
- * @type {string}
4456
+ * @type {number}
4457
+ * @memberof FindFriendsFavoritesDTO
4458
+ */
4459
+ 'maxPrice'?: number;
4460
+ /**
4461
+ *
4462
+ * @type {number}
4439
4463
  * @memberof FindFriendsFavoritesDTO
4440
4464
  */
4441
- 'price'?: string;
4465
+ 'minPrice'?: number;
4442
4466
  /**
4443
4467
  *
4444
4468
  * @type {number}
@@ -4903,10 +4927,16 @@ export interface GetBusinessVenueDto {
4903
4927
  'limit'?: number;
4904
4928
  /**
4905
4929
  *
4906
- * @type {string}
4930
+ * @type {number}
4931
+ * @memberof GetBusinessVenueDto
4932
+ */
4933
+ 'maxPrice'?: number;
4934
+ /**
4935
+ *
4936
+ * @type {number}
4907
4937
  * @memberof GetBusinessVenueDto
4908
4938
  */
4909
- 'price'?: string;
4939
+ 'minPrice'?: number;
4910
4940
  /**
4911
4941
  *
4912
4942
  * @type {number}
@@ -7,7 +7,8 @@ Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **coverPhoto** | **Array&lt;string&gt;** | coverPhots | [default to undefined]
9
9
  **timing** | [**Array&lt;BusinessTiming&gt;**](BusinessTiming.md) | Business Timing | [optional] [default to undefined]
10
- **priceRange** | **string** | | [default to undefined]
10
+ **minPrice** | **number** | | [default to undefined]
11
+ **maxPrice** | **number** | | [default to undefined]
11
12
  **location** | [**LocationDTO**](LocationDTO.md) | | [default to undefined]
12
13
  **numberOfEmployee** | **string** | | [default to undefined]
13
14
  **keywords** | **Array&lt;string&gt;** | | [default to undefined]
@@ -28,7 +29,8 @@ import { BusinessVenueDTO } from './api';
28
29
  const instance: BusinessVenueDTO = {
29
30
  coverPhoto,
30
31
  timing,
31
- priceRange,
32
+ minPrice,
33
+ maxPrice,
32
34
  location,
33
35
  numberOfEmployee,
34
36
  keywords,
@@ -7,7 +7,6 @@ Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **_id** | **string** | Unique identifier for the business venue | [optional] [default to undefined]
9
9
  **coverPhoto** | **Array&lt;string&gt;** | coverPhots | [default to undefined]
10
- **priceRange** | **string** | | [default to undefined]
11
10
  **description** | **string** | | [default to undefined]
12
11
  **email** | **string** | | [default to undefined]
13
12
  **website** | **string** | | [default to undefined]
@@ -24,6 +23,8 @@ Name | Type | Description | Notes
24
23
  **timing** | [**Array&lt;BusinessTiming&gt;**](BusinessTiming.md) | | [optional] [default to undefined]
25
24
  **currentTime** | [**BusinessTiming**](BusinessTiming.md) | Business Current Timing | [optional] [default to undefined]
26
25
  **favoriteCount** | **number** | | [default to undefined]
26
+ **minPrice** | **number** | | [default to undefined]
27
+ **maxPrice** | **number** | | [default to undefined]
27
28
 
28
29
  ## Example
29
30
 
@@ -33,7 +34,6 @@ import { BusinessVenueDetailsEntity } from './api';
33
34
  const instance: BusinessVenueDetailsEntity = {
34
35
  _id,
35
36
  coverPhoto,
36
- priceRange,
37
37
  description,
38
38
  email,
39
39
  website,
@@ -50,6 +50,8 @@ const instance: BusinessVenueDetailsEntity = {
50
50
  timing,
51
51
  currentTime,
52
52
  favoriteCount,
53
+ minPrice,
54
+ maxPrice,
53
55
  };
54
56
  ```
55
57
 
@@ -7,7 +7,8 @@ Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **_id** | **string** | Unique identifier for the business venue | [optional] [default to undefined]
9
9
  **coverPhoto** | **Array&lt;string&gt;** | coverPhots | [default to undefined]
10
- **priceRange** | **string** | | [default to undefined]
10
+ **minPrice** | **number** | | [default to undefined]
11
+ **maxPrice** | **number** | | [default to undefined]
11
12
  **description** | **string** | | [default to undefined]
12
13
  **name** | **string** | | [default to undefined]
13
14
  **business** | **string** | | [default to undefined]
@@ -21,7 +22,8 @@ import { BusinessVenueMapDetailsEntity } from './api';
21
22
  const instance: BusinessVenueMapDetailsEntity = {
22
23
  _id,
23
24
  coverPhoto,
24
- priceRange,
25
+ minPrice,
26
+ maxPrice,
25
27
  description,
26
28
  name,
27
29
  business,
@@ -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-26T10:30:24+05:30]
9
+ **date** | **string** | The start date of the booking | [default to 2025-05-26T18:06:17+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,8 @@
5
5
 
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
- **price** | **string** | | [optional] [default to undefined]
8
+ **maxPrice** | **number** | | [optional] [default to undefined]
9
+ **minPrice** | **number** | | [optional] [default to undefined]
9
10
  **people** | **number** | | [optional] [default to undefined]
10
11
  **available_today** | **boolean** | | [optional] [default to undefined]
11
12
  **distance** | **string** | | [optional] [default to undefined]
@@ -19,7 +20,8 @@ Name | Type | Description | Notes
19
20
  import { FindFriendsFavoritesDTO } from './api';
20
21
 
21
22
  const instance: FindFriendsFavoritesDTO = {
22
- price,
23
+ maxPrice,
24
+ minPrice,
23
25
  people,
24
26
  available_today,
25
27
  distance,
@@ -10,7 +10,8 @@ Name | Type | Description | Notes
10
10
  **category** | **string** | Business category ID | [optional] [default to undefined]
11
11
  **page** | **number** | Page number for pagination | [optional] [default to undefined]
12
12
  **limit** | **number** | Number of items per page for pagination | [optional] [default to undefined]
13
- **price** | **string** | | [optional] [default to undefined]
13
+ **maxPrice** | **number** | | [optional] [default to undefined]
14
+ **minPrice** | **number** | | [optional] [default to undefined]
14
15
  **people** | **number** | | [optional] [default to undefined]
15
16
  **available_today** | **boolean** | | [optional] [default to undefined]
16
17
  **distance** | **string** | | [optional] [default to undefined]
@@ -27,7 +28,8 @@ const instance: GetBusinessVenueDto = {
27
28
  category,
28
29
  page,
29
30
  limit,
30
- price,
31
+ maxPrice,
32
+ minPrice,
31
33
  people,
32
34
  available_today,
33
35
  distance,
@@ -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-26T10:30:24+05:30]
8
+ **date** | **string** | The start date of the booking | [default to 2025-05-26T18:06:17+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-26T10:30:24+05:30]
9
- **endDate** | **string** | The end date of the waitlist | [default to 2025-05-26T11:30:24+05:30]
8
+ **startDate** | **string** | The start date of the waitlist | [default to 2025-05-26T18:06:17+05:30]
9
+ **endDate** | **string** | The end date of the waitlist | [default to 2025-05-26T19:06:17+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&lt;CreateWaitlistBookingCollaboratorPayload&gt;**](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.3.77",
3
+ "version": "1.3.79",
4
4
  "description": "API client for Gooday",
5
5
  "main": "index.ts",
6
6
  "scripts": {},