@gooday_corp/gooday-api-client 2.1.1 → 2.1.3

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
@@ -2359,6 +2359,12 @@ export interface BusinessVenueDTO {
2359
2359
  * @memberof BusinessVenueDTO
2360
2360
  */
2361
2361
  'averageBookingDuration': string;
2362
+ /**
2363
+ *
2364
+ * @type {number}
2365
+ * @memberof BusinessVenueDTO
2366
+ */
2367
+ 'capacity': number;
2362
2368
  /**
2363
2369
  *
2364
2370
  * @type {string}
@@ -2456,6 +2462,12 @@ export interface BusinessVenueDetailsEntity {
2456
2462
  * @memberof BusinessVenueDetailsEntity
2457
2463
  */
2458
2464
  'averageBookingDuration': string;
2465
+ /**
2466
+ *
2467
+ * @type {number}
2468
+ * @memberof BusinessVenueDetailsEntity
2469
+ */
2470
+ 'capacity': number;
2459
2471
  /**
2460
2472
  *
2461
2473
  * @type {string}
@@ -19,6 +19,7 @@ Name | Type | Description | Notes
19
19
  **name** | **string** | | [optional] [default to undefined]
20
20
  **description** | **string** | | [default to undefined]
21
21
  **averageBookingDuration** | **string** | | [default to undefined]
22
+ **capacity** | **number** | | [default to undefined]
22
23
  **furtherInstructions** | **string** | | [default to undefined]
23
24
 
24
25
  ## Example
@@ -41,6 +42,7 @@ const instance: BusinessVenueDTO = {
41
42
  name,
42
43
  description,
43
44
  averageBookingDuration,
45
+ capacity,
44
46
  furtherInstructions,
45
47
  };
46
48
  ```
@@ -19,6 +19,7 @@ Name | Type | Description | Notes
19
19
  **keywords** | **Array<string>** | | [default to undefined]
20
20
  **socialMedia** | [**SocialMedia**](SocialMedia.md) | | [default to undefined]
21
21
  **averageBookingDuration** | **string** | | [default to undefined]
22
+ **capacity** | **number** | | [default to undefined]
22
23
  **furtherInstructions** | **string** | | [default to undefined]
23
24
  **timing** | [**Array<BusinessTiming>**](BusinessTiming.md) | | [optional] [default to undefined]
24
25
  **currentTime** | [**BusinessTiming**](BusinessTiming.md) | Business Current Timing | [optional] [default to undefined]
@@ -46,6 +47,7 @@ const instance: BusinessVenueDetailsEntity = {
46
47
  keywords,
47
48
  socialMedia,
48
49
  averageBookingDuration,
50
+ capacity,
49
51
  furtherInstructions,
50
52
  timing,
51
53
  currentTime,
@@ -6,8 +6,8 @@
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-09-03T12:10:11Z]
10
- **recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2025-09-03T12:10:11Z]
9
+ **date** | **string** | The start date of the booking | [default to 2025-09-08T14:47:48Z]
10
+ **recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2025-09-08T14:47:48Z]
11
11
  **from** | **string** | | [optional] [default to undefined]
12
12
  **to** | **string** | | [optional] [default to undefined]
13
13
  **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-09-03T12:10:11Z]
8
+ **date** | **string** | The start date of the booking | [default to 2025-09-08T14:47:48Z]
9
9
  **from** | **string** | | [optional] [default to undefined]
10
10
  **to** | **string** | | [optional] [default to undefined]
11
11
  **notes** | **string** | | [optional] [default to undefined]
@@ -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-09-03T12:10:11Z]
9
- **endDate** | **string** | The end date of the waitlist | [default to 2025-09-03T13:10:11Z]
8
+ **startDate** | **string** | The start date of the waitlist | [default to 2025-09-08T14:47:48Z]
9
+ **endDate** | **string** | The end date of the waitlist | [default to 2025-09-08T15:47:48Z]
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]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooday_corp/gooday-api-client",
3
- "version": "2.1.1",
3
+ "version": "2.1.3",
4
4
  "description": "API client for Gooday",
5
5
  "main": "index.ts",
6
6
  "scripts": {},