@gooday_corp/gooday-api-client 1.3.40 → 1.3.41
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
|
@@ -4433,10 +4433,10 @@ export interface GetAllVenueDto {
|
|
|
4433
4433
|
'people'?: number;
|
|
4434
4434
|
/**
|
|
4435
4435
|
*
|
|
4436
|
-
* @type {
|
|
4436
|
+
* @type {Array<number>}
|
|
4437
4437
|
* @memberof GetAllVenueDto
|
|
4438
4438
|
*/
|
|
4439
|
-
'
|
|
4439
|
+
'coordinates': Array<number>;
|
|
4440
4440
|
}
|
|
4441
4441
|
/**
|
|
4442
4442
|
*
|
|
@@ -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-04-
|
|
9
|
+
**date** | **string** | The start date of the booking | [default to 2025-04-30T15:30:07+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]
|
package/docs/GetAllVenueDto.md
CHANGED
|
@@ -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
|
-
**
|
|
12
|
+
**coordinates** | **Array<number>** | | [default to undefined]
|
|
13
13
|
|
|
14
14
|
## Example
|
|
15
15
|
|
|
@@ -21,7 +21,7 @@ const instance: GetAllVenueDto = {
|
|
|
21
21
|
page,
|
|
22
22
|
limit,
|
|
23
23
|
people,
|
|
24
|
-
|
|
24
|
+
coordinates,
|
|
25
25
|
};
|
|
26
26
|
```
|
|
27
27
|
|
|
@@ -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-04-
|
|
8
|
+
**date** | **string** | The start date of the booking | [default to 2025-04-30T15:30:07+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-04-
|
|
9
|
-
**endDate** | **string** | The end date of the waitlist | [default to 2025-04-
|
|
8
|
+
**startDate** | **string** | The start date of the waitlist | [default to 2025-04-30T15:30:08+05:30]
|
|
9
|
+
**endDate** | **string** | The end date of the waitlist | [default to 2025-04-30T16:30:08+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]
|