@gooday_corp/gooday-api-client 1.9.9 → 2.0.1

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.
@@ -18,6 +18,7 @@ docs/AddDevicePayload.md
18
18
  docs/AppApi.md
19
19
  docs/AppEntity.md
20
20
  docs/AppResponseDTO.md
21
+ docs/AppResponseList.md
21
22
  docs/AppleDashboardPayloadDTO.md
22
23
  docs/AppleOAuthResponseDTO.md
23
24
  docs/AppleVerificationPayloadDTO.md
package/api.ts CHANGED
@@ -277,10 +277,29 @@ export interface AppResponseDTO {
277
277
  'statusCode': number;
278
278
  /**
279
279
  *
280
- * @type {AppEntity}
280
+ * @type {AppResponseList}
281
281
  * @memberof AppResponseDTO
282
282
  */
283
- 'data': AppEntity;
283
+ 'data': AppResponseList;
284
+ }
285
+ /**
286
+ *
287
+ * @export
288
+ * @interface AppResponseList
289
+ */
290
+ export interface AppResponseList {
291
+ /**
292
+ * statusCode
293
+ * @type {number}
294
+ * @memberof AppResponseList
295
+ */
296
+ 'count': number;
297
+ /**
298
+ *
299
+ * @type {Array<AppEntity>}
300
+ * @memberof AppResponseList
301
+ */
302
+ 'data': Array<AppEntity>;
284
303
  }
285
304
  /**
286
305
  *
@@ -6,7 +6,7 @@
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **statusCode** | **number** | statusCode | [default to undefined]
9
- **data** | [**AppEntity**](AppEntity.md) | | [default to undefined]
9
+ **data** | [**AppResponseList**](AppResponseList.md) | | [default to undefined]
10
10
 
11
11
  ## Example
12
12
 
@@ -0,0 +1,22 @@
1
+ # AppResponseList
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **count** | **number** | statusCode | [default to undefined]
9
+ **data** | [**Array&lt;AppEntity&gt;**](AppEntity.md) | | [default to undefined]
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import { AppResponseList } from './api';
15
+
16
+ const instance: AppResponseList = {
17
+ count,
18
+ data,
19
+ };
20
+ ```
21
+
22
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -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-08-28T10:03:44Z]
10
- **recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2025-08-28T10:03:44Z]
9
+ **date** | **string** | The start date of the booking | [default to 2025-08-28T10:28:37Z]
10
+ **recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2025-08-28T10:28:37Z]
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-08-28T10:03:44Z]
8
+ **date** | **string** | The start date of the booking | [default to 2025-08-28T10:28:37Z]
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-08-28T10:03:44Z]
9
- **endDate** | **string** | The end date of the waitlist | [default to 2025-08-28T11:03:44Z]
8
+ **startDate** | **string** | The start date of the waitlist | [default to 2025-08-28T10:28:37Z]
9
+ **endDate** | **string** | The end date of the waitlist | [default to 2025-08-28T11:28:37Z]
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.9.9",
3
+ "version": "2.0.1",
4
4
  "description": "API client for Gooday",
5
5
  "main": "index.ts",
6
6
  "scripts": {},