@gooday_corp/gooday-api-client 1.3.70 → 1.3.72
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
|
@@ -2414,6 +2414,12 @@ export interface BusinessVenueMapDTO {
|
|
|
2414
2414
|
* @memberof BusinessVenueMapDTO
|
|
2415
2415
|
*/
|
|
2416
2416
|
'to'?: string;
|
|
2417
|
+
/**
|
|
2418
|
+
*
|
|
2419
|
+
* @type {Array<string>}
|
|
2420
|
+
* @memberof BusinessVenueMapDTO
|
|
2421
|
+
*/
|
|
2422
|
+
'cuisines'?: Array<string>;
|
|
2417
2423
|
}
|
|
2418
2424
|
/**
|
|
2419
2425
|
*
|
|
@@ -2658,6 +2664,12 @@ export interface CalendarEventResponse {
|
|
|
2658
2664
|
* @memberof CalendarEventResponse
|
|
2659
2665
|
*/
|
|
2660
2666
|
'status': string;
|
|
2667
|
+
/**
|
|
2668
|
+
*
|
|
2669
|
+
* @type {LocationDTO}
|
|
2670
|
+
* @memberof CalendarEventResponse
|
|
2671
|
+
*/
|
|
2672
|
+
'location': LocationDTO;
|
|
2661
2673
|
}
|
|
2662
2674
|
/**
|
|
2663
2675
|
*
|
|
@@ -17,6 +17,7 @@ Name | Type | Description | Notes
|
|
|
17
17
|
**date** | **string** | Start date for the events | [optional] [default to undefined]
|
|
18
18
|
**from** | **string** | | [optional] [default to undefined]
|
|
19
19
|
**to** | **string** | | [optional] [default to undefined]
|
|
20
|
+
**cuisines** | **Array<string>** | | [optional] [default to undefined]
|
|
20
21
|
|
|
21
22
|
## Example
|
|
22
23
|
|
|
@@ -36,6 +37,7 @@ const instance: BusinessVenueMapDTO = {
|
|
|
36
37
|
date,
|
|
37
38
|
from,
|
|
38
39
|
to,
|
|
40
|
+
cuisines,
|
|
39
41
|
};
|
|
40
42
|
```
|
|
41
43
|
|
|
@@ -14,6 +14,7 @@ Name | Type | Description | Notes
|
|
|
14
14
|
**profile** | **string** | | [default to undefined]
|
|
15
15
|
**calendar** | **Array<string>** | | [default to undefined]
|
|
16
16
|
**status** | **string** | | [default to undefined]
|
|
17
|
+
**location** | [**LocationDTO**](LocationDTO.md) | | [default to undefined]
|
|
17
18
|
|
|
18
19
|
## Example
|
|
19
20
|
|
|
@@ -30,6 +31,7 @@ const instance: CalendarEventResponse = {
|
|
|
30
31
|
profile,
|
|
31
32
|
calendar,
|
|
32
33
|
status,
|
|
34
|
+
location,
|
|
33
35
|
};
|
|
34
36
|
```
|
|
35
37
|
|
|
@@ -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-23T20:10:54+10:00]
|
|
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-23T20:10:54+10:00]
|
|
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-23T20:10:54+10:00]
|
|
9
|
+
**endDate** | **string** | The end date of the waitlist | [default to 2025-05-23T21:10:54+10:00]
|
|
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]
|