@gooday_corp/gooday-api-client 4.4.36 → 4.4.37
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 +17 -3
- package/docs/CreateBookingPayload.md +2 -2
- package/docs/CreateWalkInBookingPayload.md +2 -2
- package/docs/RSVPEvenPayloadDTO.md +5 -3
- package/docs/RSVPEventEntity.md +2 -0
- package/docs/RSVPEventMetaDataDTO.md +26 -0
- package/docs/RescheduleBookingPayload.md +1 -1
- package/docs/WaitlistPayloadDTO.md +2 -2
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -280,6 +280,7 @@ docs/RSVPEventDeleteDTO.md
|
|
|
280
280
|
docs/RSVPEventEntity.md
|
|
281
281
|
docs/RSVPEventLocationDTO.md
|
|
282
282
|
docs/RSVPEventMetaDTO.md
|
|
283
|
+
docs/RSVPEventMetaDataDTO.md
|
|
283
284
|
docs/RSVPEventResponse.md
|
|
284
285
|
docs/RSVPEventResponseDTO.md
|
|
285
286
|
docs/RegularBookingAvailabilityPayloadDTO.md
|
package/api.ts
CHANGED
|
@@ -3761,15 +3761,15 @@ export interface RSVPEvenPayloadDTO {
|
|
|
3761
3761
|
/**
|
|
3762
3762
|
* user
|
|
3763
3763
|
*/
|
|
3764
|
-
'userId'
|
|
3764
|
+
'userId'?: string;
|
|
3765
3765
|
/**
|
|
3766
3766
|
* Business
|
|
3767
3767
|
*/
|
|
3768
|
-
'business'
|
|
3768
|
+
'business'?: string;
|
|
3769
3769
|
/**
|
|
3770
3770
|
* Business venue
|
|
3771
3771
|
*/
|
|
3772
|
-
'venue'
|
|
3772
|
+
'venue'?: string;
|
|
3773
3773
|
'tags'?: Array<string>;
|
|
3774
3774
|
'hideLocation'?: boolean;
|
|
3775
3775
|
'hostBy': string;
|
|
@@ -3781,6 +3781,10 @@ export interface RSVPEvenPayloadDTO {
|
|
|
3781
3781
|
'otherLink'?: string;
|
|
3782
3782
|
'location'?: RSVPEventLocationDTO;
|
|
3783
3783
|
'discounts'?: Array<Discount>;
|
|
3784
|
+
/**
|
|
3785
|
+
* Meta information about the location.
|
|
3786
|
+
*/
|
|
3787
|
+
'meta'?: RSVPEventMetaDataDTO;
|
|
3784
3788
|
}
|
|
3785
3789
|
|
|
3786
3790
|
export const RSVPEvenPayloadDTORepeatEnum = {
|
|
@@ -3875,6 +3879,10 @@ export interface RSVPEventEntity {
|
|
|
3875
3879
|
'externalTicketing'?: string;
|
|
3876
3880
|
'otherLink'?: string;
|
|
3877
3881
|
'location'?: RSVPEventLocationDTO;
|
|
3882
|
+
/**
|
|
3883
|
+
* Meta information about the location.
|
|
3884
|
+
*/
|
|
3885
|
+
'meta'?: RSVPEventMetaDataDTO;
|
|
3878
3886
|
'discounts'?: Array<Discount>;
|
|
3879
3887
|
}
|
|
3880
3888
|
|
|
@@ -3917,6 +3925,12 @@ export interface RSVPEventMetaDTO {
|
|
|
3917
3925
|
'formattedAddress'?: string;
|
|
3918
3926
|
'shortFormattedAddress': string;
|
|
3919
3927
|
}
|
|
3928
|
+
export interface RSVPEventMetaDataDTO {
|
|
3929
|
+
'email'?: string;
|
|
3930
|
+
'firstName': string;
|
|
3931
|
+
'lastName': string;
|
|
3932
|
+
'mobileNumber': string;
|
|
3933
|
+
}
|
|
3920
3934
|
export interface RSVPEventResponse {
|
|
3921
3935
|
'count': number;
|
|
3922
3936
|
'data': Array<RSVPEventEntity>;
|
|
@@ -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-12-
|
|
10
|
-
**recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2025-12-
|
|
9
|
+
**date** | **string** | The start date of the booking | [default to 2025-12-04T19:43:18+05:30]
|
|
10
|
+
**recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2025-12-04T19:43:18+05:30]
|
|
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]
|
|
@@ -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
|
-
**startDate** | **string** | The start date of the booking | [default to 2025-12-
|
|
10
|
-
**endDate** | **string** | The start date of the booking | [default to 2025-12-
|
|
9
|
+
**startDate** | **string** | The start date of the booking | [default to 2025-12-04T19:43:18+05:30]
|
|
10
|
+
**endDate** | **string** | The start date of the booking | [default to 2025-12-04T19:43:18+05:30]
|
|
11
11
|
**note** | **string** | Notes attached with booking | [optional] [default to undefined]
|
|
12
12
|
**occasion** | **string** | Occasion id | [optional] [default to undefined]
|
|
13
13
|
**calendar** | **Array<string>** | Calendar attached with booking | [optional] [default to undefined]
|
|
@@ -19,9 +19,9 @@ Name | Type | Description | Notes
|
|
|
19
19
|
**price** | **number** | | [default to undefined]
|
|
20
20
|
**description** | **string** | | [default to undefined]
|
|
21
21
|
**capacity** | **number** | | [default to undefined]
|
|
22
|
-
**userId** | **string** | user | [default to undefined]
|
|
23
|
-
**business** | **string** | Business | [default to undefined]
|
|
24
|
-
**venue** | **string** | Business venue | [default to undefined]
|
|
22
|
+
**userId** | **string** | user | [optional] [default to undefined]
|
|
23
|
+
**business** | **string** | Business | [optional] [default to undefined]
|
|
24
|
+
**venue** | **string** | Business venue | [optional] [default to undefined]
|
|
25
25
|
**tags** | **Array<string>** | | [optional] [default to undefined]
|
|
26
26
|
**hideLocation** | **boolean** | | [optional] [default to undefined]
|
|
27
27
|
**hostBy** | **string** | | [default to undefined]
|
|
@@ -33,6 +33,7 @@ Name | Type | Description | Notes
|
|
|
33
33
|
**otherLink** | **string** | | [optional] [default to undefined]
|
|
34
34
|
**location** | [**RSVPEventLocationDTO**](RSVPEventLocationDTO.md) | | [optional] [default to undefined]
|
|
35
35
|
**discounts** | [**Array<Discount>**](Discount.md) | | [optional] [default to undefined]
|
|
36
|
+
**meta** | [**RSVPEventMetaDataDTO**](RSVPEventMetaDataDTO.md) | Meta information about the location. | [optional] [default to undefined]
|
|
36
37
|
|
|
37
38
|
## Example
|
|
38
39
|
|
|
@@ -68,6 +69,7 @@ const instance: RSVPEvenPayloadDTO = {
|
|
|
68
69
|
otherLink,
|
|
69
70
|
location,
|
|
70
71
|
discounts,
|
|
72
|
+
meta,
|
|
71
73
|
};
|
|
72
74
|
```
|
|
73
75
|
|
package/docs/RSVPEventEntity.md
CHANGED
|
@@ -34,6 +34,7 @@ Name | Type | Description | Notes
|
|
|
34
34
|
**externalTicketing** | **string** | | [optional] [default to undefined]
|
|
35
35
|
**otherLink** | **string** | | [optional] [default to undefined]
|
|
36
36
|
**location** | [**RSVPEventLocationDTO**](RSVPEventLocationDTO.md) | | [optional] [default to undefined]
|
|
37
|
+
**meta** | [**RSVPEventMetaDataDTO**](RSVPEventMetaDataDTO.md) | Meta information about the location. | [optional] [default to undefined]
|
|
37
38
|
**discounts** | [**Array<Discount>**](Discount.md) | | [optional] [default to undefined]
|
|
38
39
|
|
|
39
40
|
## Example
|
|
@@ -71,6 +72,7 @@ const instance: RSVPEventEntity = {
|
|
|
71
72
|
externalTicketing,
|
|
72
73
|
otherLink,
|
|
73
74
|
location,
|
|
75
|
+
meta,
|
|
74
76
|
discounts,
|
|
75
77
|
};
|
|
76
78
|
```
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# RSVPEventMetaDataDTO
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**email** | **string** | | [optional] [default to undefined]
|
|
9
|
+
**firstName** | **string** | | [default to undefined]
|
|
10
|
+
**lastName** | **string** | | [default to undefined]
|
|
11
|
+
**mobileNumber** | **string** | | [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { RSVPEventMetaDataDTO } from './api';
|
|
17
|
+
|
|
18
|
+
const instance: RSVPEventMetaDataDTO = {
|
|
19
|
+
email,
|
|
20
|
+
firstName,
|
|
21
|
+
lastName,
|
|
22
|
+
mobileNumber,
|
|
23
|
+
};
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -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-12-
|
|
8
|
+
**date** | **string** | The start date of the booking | [default to 2025-12-04T19:43:18+05:30]
|
|
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-12-
|
|
9
|
-
**endDate** | **string** | The end date of the waitlist | [default to 2025-12-
|
|
8
|
+
**startDate** | **string** | The start date of the waitlist | [default to 2025-12-04T19:43:18+05:30]
|
|
9
|
+
**endDate** | **string** | The end date of the waitlist | [default to 2025-12-04T20:43:18+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]
|