@gooday_corp/gooday-api-client 1.9.9 → 2.0.2
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/.openapi-generator/FILES +1 -0
- package/api.ts +23 -4
- package/docs/AppEntity.md +1 -1
- package/docs/AppResponseDTO.md +1 -1
- package/docs/AppResponseList.md +22 -0
- package/docs/CreateBookingPayload.md +2 -2
- package/docs/RescheduleBookingPayload.md +1 -1
- package/docs/WaitlistPayloadDTO.md +2 -2
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
package/api.ts
CHANGED
|
@@ -238,10 +238,10 @@ export interface AppEntity {
|
|
|
238
238
|
'_id': string;
|
|
239
239
|
/**
|
|
240
240
|
*
|
|
241
|
-
* @type {
|
|
241
|
+
* @type {FeedbackPayloadDTO}
|
|
242
242
|
* @memberof AppEntity
|
|
243
243
|
*/
|
|
244
|
-
'content':
|
|
244
|
+
'content': FeedbackPayloadDTO;
|
|
245
245
|
/**
|
|
246
246
|
*
|
|
247
247
|
* @type {string}
|
|
@@ -277,10 +277,29 @@ export interface AppResponseDTO {
|
|
|
277
277
|
'statusCode': number;
|
|
278
278
|
/**
|
|
279
279
|
*
|
|
280
|
-
* @type {
|
|
280
|
+
* @type {AppResponseList}
|
|
281
281
|
* @memberof AppResponseDTO
|
|
282
282
|
*/
|
|
283
|
-
'data':
|
|
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
|
*
|
package/docs/AppEntity.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**_id** | **string** | Unique identifier for the user | [default to undefined]
|
|
9
|
-
**content** | **
|
|
9
|
+
**content** | [**FeedbackPayloadDTO**](FeedbackPayloadDTO.md) | | [default to undefined]
|
|
10
10
|
**user** | **string** | | [default to undefined]
|
|
11
11
|
**type** | **string** | | [default to undefined]
|
|
12
12
|
|
package/docs/AppResponseDTO.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**statusCode** | **number** | statusCode | [default to undefined]
|
|
9
|
-
**data** | [**
|
|
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<AppEntity>**](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-
|
|
10
|
-
**recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2025-08-
|
|
9
|
+
**date** | **string** | The start date of the booking | [default to 2025-08-28T13:36Z]
|
|
10
|
+
**recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2025-08-28T13:36Z]
|
|
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-
|
|
8
|
+
**date** | **string** | The start date of the booking | [default to 2025-08-28T13:36Z]
|
|
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-
|
|
9
|
-
**endDate** | **string** | The end date of the waitlist | [default to 2025-08-
|
|
8
|
+
**startDate** | **string** | The start date of the waitlist | [default to 2025-08-28T13:36Z]
|
|
9
|
+
**endDate** | **string** | The end date of the waitlist | [default to 2025-08-28T14:36Z]
|
|
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]
|