@gooday_corp/gooday-api-client 4.6.0 → 4.6.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 +19 -0
- package/.openapi-generator/VERSION +1 -1
- package/api.ts +12703 -1995
- package/base.ts +24 -0
- package/common.ts +38 -14
- package/configuration.ts +18 -24
- package/docs/AcceptBookingInvitePayload.md +3 -1
- package/docs/BookingPaymentCreateResponse.md +4 -0
- package/docs/BusinessApi.md +103 -9
- package/docs/BusinessOnBoardingDTO.md +2 -0
- package/docs/ConfirmRSVPV2PaymentDTO.md +20 -0
- package/docs/CreateBookingPayload.md +2 -2
- package/docs/CreateRSVPCollaboratorPayload.md +32 -0
- package/docs/CreateRSVPEventBookingPayload.md +2 -2
- package/docs/CreateRSVPEventV2DTO.md +94 -0
- package/docs/CreateWalkInBookingPayload.md +2 -2
- package/docs/DiscountV2DTO.md +22 -0
- package/docs/HashtagPayloadDTO.md +22 -0
- package/docs/HashtagResponseDTO.md +22 -0
- package/docs/HashtagUpdatePayloadDTO.md +24 -0
- package/docs/HashtagsApi.md +327 -0
- package/docs/HashtagsResponse.md +24 -0
- package/docs/HashtagsResponseDTO.md +22 -0
- package/docs/HostV2DTO.md +22 -0
- package/docs/InviteRSVPArrayDTO.md +20 -0
- package/docs/InviteRSVPDTO.md +34 -0
- package/docs/JoinRSVPEventDTO.md +34 -0
- package/docs/PaymentDetailsPayload.md +2 -2
- package/docs/PlansApi.md +44 -0
- package/docs/PromoCodeResponseDTO.md +2 -0
- package/docs/RSVPEvenPayloadDTO.md +10 -0
- package/docs/RSVPEventApi.md +52 -0
- package/docs/RSVPEventEntity.md +6 -0
- package/docs/RSVPEventFindDTO.md +6 -2
- package/docs/RSVPEventFindV2DTO.md +32 -0
- package/docs/RSVPEventLocationDTO.md +2 -2
- package/docs/RSVPEventMetaDTO.md +1 -1
- package/docs/RSVPEventMetaDataDTO.md +2 -0
- package/docs/RSVPV2Api.md +1054 -0
- package/docs/RejectBookingInvitePayload.md +3 -1
- package/docs/RescheduleBookingPayload.md +1 -1
- package/docs/SetupRSVPV2PaymentDTO.md +20 -0
- package/docs/SignupDto.md +2 -0
- package/docs/TagsApi.md +4 -4
- package/docs/UpdateRSVPEventV2DTO.md +94 -0
- package/docs/UpdateRSVPStatusDTO.md +20 -0
- package/docs/UserEntity.md +2 -0
- package/docs/WaitlistPayloadDTO.md +2 -2
- package/docs/WhatsOnLocationDTO.md +3 -3
- package/docs/WhatsOnLocationMetaDTO.md +1 -1
- package/package.json +1 -1
|
@@ -5,7 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
|
-
**bookingId** | **string** | ID of the booking | [default to undefined]
|
|
8
|
+
**bookingId** | **string** | ID of the booking | [optional] [default to undefined]
|
|
9
|
+
**rsvpId** | **string** | ID of the rsvp | [optional] [default to undefined]
|
|
9
10
|
|
|
10
11
|
## Example
|
|
11
12
|
|
|
@@ -14,6 +15,7 @@ import { RejectBookingInvitePayload } from './api';
|
|
|
14
15
|
|
|
15
16
|
const instance: RejectBookingInvitePayload = {
|
|
16
17
|
bookingId,
|
|
18
|
+
rsvpId,
|
|
17
19
|
};
|
|
18
20
|
```
|
|
19
21
|
|
|
@@ -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 2026-
|
|
8
|
+
**date** | **string** | The start date of the booking | [default to 2026-04-15T07:10:12Z]
|
|
9
9
|
**from** | **string** | | [optional] [default to undefined]
|
|
10
10
|
**to** | **string** | | [optional] [default to undefined]
|
|
11
11
|
**notes** | **string** | | [optional] [default to undefined]
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# SetupRSVPV2PaymentDTO
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**paymentGroupId** | **string** | | [default to undefined]
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
import { SetupRSVPV2PaymentDTO } from './api';
|
|
14
|
+
|
|
15
|
+
const instance: SetupRSVPV2PaymentDTO = {
|
|
16
|
+
paymentGroupId,
|
|
17
|
+
};
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
package/docs/SignupDto.md
CHANGED
|
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
|
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**email** | **string** | The email of the user | [default to undefined]
|
|
9
9
|
**password** | **string** | User Profile Name | [default to undefined]
|
|
10
|
+
**mobileNumber** | **string** | Phone No | [optional] [default to undefined]
|
|
10
11
|
**planId** | **string** | | [optional] [default to undefined]
|
|
11
12
|
**isApp** | **boolean** | | [optional] [default to true]
|
|
12
13
|
|
|
@@ -18,6 +19,7 @@ import { SignupDto } from './api';
|
|
|
18
19
|
const instance: SignupDto = {
|
|
19
20
|
email,
|
|
20
21
|
password,
|
|
22
|
+
mobileNumber,
|
|
21
23
|
planId,
|
|
22
24
|
isApp,
|
|
23
25
|
};
|
package/docs/TagsApi.md
CHANGED
|
@@ -130,7 +130,7 @@ const apiInstance = new TagsApi(configuration);
|
|
|
130
130
|
let page: number; // (default to undefined)
|
|
131
131
|
let pageSize: number; // (default to undefined)
|
|
132
132
|
let venue: Array<string>; // (optional) (default to undefined)
|
|
133
|
-
let category: Array<'BOOKING' | 'CUSTOMER' | 'GOODAY'>; // (optional) (default to undefined)
|
|
133
|
+
let category: Array<'BOOKING' | 'CUSTOMER' | 'GOODAY' | 'WEB'>; // (optional) (default to undefined)
|
|
134
134
|
|
|
135
135
|
const { status, data } = await apiInstance.tagsControllerFindTags(
|
|
136
136
|
page,
|
|
@@ -147,7 +147,7 @@ const { status, data } = await apiInstance.tagsControllerFindTags(
|
|
|
147
147
|
| **page** | [**number**] | | defaults to undefined|
|
|
148
148
|
| **pageSize** | [**number**] | | defaults to undefined|
|
|
149
149
|
| **venue** | **Array<string>** | | (optional) defaults to undefined|
|
|
150
|
-
| **category** | **Array<'BOOKING' | 'CUSTOMER' | 'GOODAY'>** | | (optional) defaults to undefined|
|
|
150
|
+
| **category** | **Array<'BOOKING' | 'CUSTOMER' | 'GOODAY' | 'WEB'>** | | (optional) defaults to undefined|
|
|
151
151
|
|
|
152
152
|
|
|
153
153
|
### Return type
|
|
@@ -189,7 +189,7 @@ const apiInstance = new TagsApi(configuration);
|
|
|
189
189
|
let page: number; // (default to undefined)
|
|
190
190
|
let pageSize: number; // (default to undefined)
|
|
191
191
|
let venue: Array<string>; // (optional) (default to undefined)
|
|
192
|
-
let category: Array<'BOOKING' | 'CUSTOMER' | 'GOODAY'>; // (optional) (default to undefined)
|
|
192
|
+
let category: Array<'BOOKING' | 'CUSTOMER' | 'GOODAY' | 'WEB'>; // (optional) (default to undefined)
|
|
193
193
|
|
|
194
194
|
const { status, data } = await apiInstance.tagsControllerGetTags(
|
|
195
195
|
page,
|
|
@@ -206,7 +206,7 @@ const { status, data } = await apiInstance.tagsControllerGetTags(
|
|
|
206
206
|
| **page** | [**number**] | | defaults to undefined|
|
|
207
207
|
| **pageSize** | [**number**] | | defaults to undefined|
|
|
208
208
|
| **venue** | **Array<string>** | | (optional) defaults to undefined|
|
|
209
|
-
| **category** | **Array<'BOOKING' | 'CUSTOMER' | 'GOODAY'>** | | (optional) defaults to undefined|
|
|
209
|
+
| **category** | **Array<'BOOKING' | 'CUSTOMER' | 'GOODAY' | 'WEB'>** | | (optional) defaults to undefined|
|
|
210
210
|
|
|
211
211
|
|
|
212
212
|
### Return type
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
# UpdateRSVPEventV2DTO
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**title** | **string** | | [optional] [default to undefined]
|
|
9
|
+
**description** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**photo** | **string** | | [optional] [default to undefined]
|
|
11
|
+
**tags** | **Array<string>** | | [optional] [default to undefined]
|
|
12
|
+
**totalCapacity** | **number** | | [optional] [default to undefined]
|
|
13
|
+
**costPerPerson** | **number** | | [optional] [default to undefined]
|
|
14
|
+
**currency** | **string** | | [optional] [default to undefined]
|
|
15
|
+
**type** | **string** | | [optional] [default to undefined]
|
|
16
|
+
**venue** | **string** | | [optional] [default to undefined]
|
|
17
|
+
**business** | **string** | | [optional] [default to undefined]
|
|
18
|
+
**timezone** | **string** | | [optional] [default to undefined]
|
|
19
|
+
**theme** | **string** | | [optional] [default to undefined]
|
|
20
|
+
**externalTicketingLink** | **string** | | [optional] [default to undefined]
|
|
21
|
+
**otherLinks** | **Array<string>** | | [optional] [default to undefined]
|
|
22
|
+
**hideGuestCount** | **boolean** | | [optional] [default to undefined]
|
|
23
|
+
**hideLocation** | **boolean** | | [optional] [default to undefined]
|
|
24
|
+
**location** | **object** | | [optional] [default to undefined]
|
|
25
|
+
**isRecurring** | **boolean** | | [optional] [default to undefined]
|
|
26
|
+
**duration** | **number** | | [optional] [default to undefined]
|
|
27
|
+
**startDate** | **string** | | [optional] [default to undefined]
|
|
28
|
+
**endDate** | **string** | | [optional] [default to undefined]
|
|
29
|
+
**recurrenceEndDate** | **string** | | [optional] [default to undefined]
|
|
30
|
+
**repeat** | **string** | | [optional] [default to undefined]
|
|
31
|
+
**pattern** | **string** | Recurrence pattern string (RFC 5545) | [optional] [default to undefined]
|
|
32
|
+
**repeatBy** | **string** | The method used to determine recurrence | [optional] [default to undefined]
|
|
33
|
+
**byDay** | **string** | Comma-separated days of the week (e.g., MO,WE,FR) | [optional] [default to undefined]
|
|
34
|
+
**byMonthDay** | **string** | Comma-separated days of the month (e.g., 1,15,31) | [optional] [default to undefined]
|
|
35
|
+
**byMonth** | **string** | Comma-separated months of the year (1-12) | [optional] [default to undefined]
|
|
36
|
+
**hosts** | [**Array<HostV2DTO>**](HostV2DTO.md) | | [optional] [default to undefined]
|
|
37
|
+
**invites** | [**Array<InviteRSVPDTO>**](InviteRSVPDTO.md) | | [optional] [default to undefined]
|
|
38
|
+
**discounts** | [**Array<DiscountV2DTO>**](DiscountV2DTO.md) | | [optional] [default to undefined]
|
|
39
|
+
**firstName** | **string** | | [optional] [default to undefined]
|
|
40
|
+
**lastName** | **string** | | [optional] [default to undefined]
|
|
41
|
+
**email** | **string** | | [optional] [default to undefined]
|
|
42
|
+
**mobileNumber** | **string** | | [optional] [default to undefined]
|
|
43
|
+
**countryCode** | **string** | | [optional] [default to undefined]
|
|
44
|
+
**hostBy** | **string** | | [optional] [default to undefined]
|
|
45
|
+
**hostImage** | **string** | | [optional] [default to undefined]
|
|
46
|
+
|
|
47
|
+
## Example
|
|
48
|
+
|
|
49
|
+
```typescript
|
|
50
|
+
import { UpdateRSVPEventV2DTO } from './api';
|
|
51
|
+
|
|
52
|
+
const instance: UpdateRSVPEventV2DTO = {
|
|
53
|
+
title,
|
|
54
|
+
description,
|
|
55
|
+
photo,
|
|
56
|
+
tags,
|
|
57
|
+
totalCapacity,
|
|
58
|
+
costPerPerson,
|
|
59
|
+
currency,
|
|
60
|
+
type,
|
|
61
|
+
venue,
|
|
62
|
+
business,
|
|
63
|
+
timezone,
|
|
64
|
+
theme,
|
|
65
|
+
externalTicketingLink,
|
|
66
|
+
otherLinks,
|
|
67
|
+
hideGuestCount,
|
|
68
|
+
hideLocation,
|
|
69
|
+
location,
|
|
70
|
+
isRecurring,
|
|
71
|
+
duration,
|
|
72
|
+
startDate,
|
|
73
|
+
endDate,
|
|
74
|
+
recurrenceEndDate,
|
|
75
|
+
repeat,
|
|
76
|
+
pattern,
|
|
77
|
+
repeatBy,
|
|
78
|
+
byDay,
|
|
79
|
+
byMonthDay,
|
|
80
|
+
byMonth,
|
|
81
|
+
hosts,
|
|
82
|
+
invites,
|
|
83
|
+
discounts,
|
|
84
|
+
firstName,
|
|
85
|
+
lastName,
|
|
86
|
+
email,
|
|
87
|
+
mobileNumber,
|
|
88
|
+
countryCode,
|
|
89
|
+
hostBy,
|
|
90
|
+
hostImage,
|
|
91
|
+
};
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# UpdateRSVPStatusDTO
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**status** | **string** | | [default to undefined]
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
import { UpdateRSVPStatusDTO } from './api';
|
|
14
|
+
|
|
15
|
+
const instance: UpdateRSVPStatusDTO = {
|
|
16
|
+
status,
|
|
17
|
+
};
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
package/docs/UserEntity.md
CHANGED
|
@@ -38,6 +38,7 @@ Name | Type | Description | Notes
|
|
|
38
38
|
**timezone** | **string** | | [optional] [default to undefined]
|
|
39
39
|
**chatToken** | **string** | | [optional] [default to undefined]
|
|
40
40
|
**isMobileVerified** | **boolean** | | [optional] [default to undefined]
|
|
41
|
+
**accountId** | **string** | | [optional] [default to undefined]
|
|
41
42
|
|
|
42
43
|
## Example
|
|
43
44
|
|
|
@@ -78,6 +79,7 @@ const instance: UserEntity = {
|
|
|
78
79
|
timezone,
|
|
79
80
|
chatToken,
|
|
80
81
|
isMobileVerified,
|
|
82
|
+
accountId,
|
|
81
83
|
};
|
|
82
84
|
```
|
|
83
85
|
|
|
@@ -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 2026-
|
|
9
|
-
**endDate** | **string** | The end date of the waitlist | [default to 2026-
|
|
8
|
+
**startDate** | **string** | The start date of the waitlist | [default to 2026-04-15T07:10:12Z]
|
|
9
|
+
**endDate** | **string** | The end date of the waitlist | [default to 2026-04-15T08:10:12Z]
|
|
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]
|
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
|
-
**type** | **string** | | [default to undefined]
|
|
9
|
-
**coordinates** | **Array<number>** | | [default to undefined]
|
|
8
|
+
**type** | **string** | | [optional] [default to undefined]
|
|
9
|
+
**coordinates** | **Array<number>** | | [optional] [default to undefined]
|
|
10
10
|
**distance** | **string** | Optional distance from a reference point. | [optional] [default to undefined]
|
|
11
|
-
**meta** | [**WhatsOnLocationMetaDTO**](WhatsOnLocationMetaDTO.md) | Meta information about the location. | [default to undefined]
|
|
11
|
+
**meta** | [**WhatsOnLocationMetaDTO**](WhatsOnLocationMetaDTO.md) | Meta information about the location. | [optional] [default to undefined]
|
|
12
12
|
|
|
13
13
|
## Example
|
|
14
14
|
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**formattedAddress** | **string** | | [optional] [default to undefined]
|
|
9
|
-
**shortFormattedAddress** | **string** | | [default to undefined]
|
|
9
|
+
**shortFormattedAddress** | **string** | | [optional] [default to undefined]
|
|
10
10
|
|
|
11
11
|
## Example
|
|
12
12
|
|