@gooday_corp/gooday-api-client 1.3.83 → 1.3.84
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'
|
|
4891
|
+
'coordinates'?: Array<number>;
|
|
4892
4892
|
}
|
|
4893
4893
|
/**
|
|
4894
4894
|
*
|
|
@@ -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-29T15:34:59Z]
|
|
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
|
-
**coordinates** | **Array<number>** |
|
|
12
|
+
**coordinates** | **Array<number>** | 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-
|
|
8
|
+
**date** | **string** | The start date of the booking | [default to 2025-05-29T15:34:59Z]
|
|
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-29T15:34:59Z]
|
|
9
|
+
**endDate** | **string** | The end date of the waitlist | [default to 2025-05-29T16:34:59Z]
|
|
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]
|