@gooday_corp/gooday-api-client 4.6.3 → 4.6.5
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 +16340 -5569
- package/base.ts +24 -0
- package/common.ts +38 -15
- 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/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 +96 -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 +8 -0
- package/docs/RSVPEventApi.md +1 -1
- 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 +1156 -0
- package/docs/RejectBookingInvitePayload.md +3 -1
- package/docs/RescheduleBookingPayload.md +1 -1
- package/docs/SetupRSVPV2PaymentDTO.md +20 -0
- package/docs/UpdateRSVPEventV2DTO.md +96 -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
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# HashtagPayloadDTO
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**name** | **string** | Hashtag name | [default to undefined]
|
|
9
|
+
**category** | **string** | Hashtag category | [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { HashtagPayloadDTO } from './api';
|
|
15
|
+
|
|
16
|
+
const instance: HashtagPayloadDTO = {
|
|
17
|
+
name,
|
|
18
|
+
category,
|
|
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)
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# HashtagResponseDTO
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**data** | [**HashtagsResponse**](HashtagsResponse.md) | | [default to undefined]
|
|
9
|
+
**statusCode** | **number** | statusCode | [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { HashtagResponseDTO } from './api';
|
|
15
|
+
|
|
16
|
+
const instance: HashtagResponseDTO = {
|
|
17
|
+
data,
|
|
18
|
+
statusCode,
|
|
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)
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# HashtagUpdatePayloadDTO
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**_id** | **string** | Hashtag id | [default to undefined]
|
|
9
|
+
**name** | **string** | Hashtag name | [default to undefined]
|
|
10
|
+
**category** | **string** | Hashtag category | [default to undefined]
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import { HashtagUpdatePayloadDTO } from './api';
|
|
16
|
+
|
|
17
|
+
const instance: HashtagUpdatePayloadDTO = {
|
|
18
|
+
_id,
|
|
19
|
+
name,
|
|
20
|
+
category,
|
|
21
|
+
};
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
[[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,327 @@
|
|
|
1
|
+
# HashtagsApi
|
|
2
|
+
|
|
3
|
+
All URIs are relative to *http://localhost:8080*
|
|
4
|
+
|
|
5
|
+
|Method | HTTP request | Description|
|
|
6
|
+
|------------- | ------------- | -------------|
|
|
7
|
+
|[**hashtagsControllerCreateHashtag**](#hashtagscontrollercreatehashtag) | **POST** /v1/hashtag | |
|
|
8
|
+
|[**hashtagsControllerDeleteHashtagById**](#hashtagscontrollerdeletehashtagbyid) | **DELETE** /v1/hashtag/{id} | |
|
|
9
|
+
|[**hashtagsControllerFindHashtags**](#hashtagscontrollerfindhashtags) | **GET** /v1/hashtags | |
|
|
10
|
+
|[**hashtagsControllerGetHashtags**](#hashtagscontrollergethashtags) | **GET** /v1/hashtag-web | |
|
|
11
|
+
|[**hashtagsControllerHashtagById**](#hashtagscontrollerhashtagbyid) | **GET** /v1/hashtag/{id} | |
|
|
12
|
+
|[**hashtagsControllerUpdateHashtagById**](#hashtagscontrollerupdatehashtagbyid) | **PUT** /v1/hashtag | |
|
|
13
|
+
|
|
14
|
+
# **hashtagsControllerCreateHashtag**
|
|
15
|
+
> HashtagResponseDTO hashtagsControllerCreateHashtag(hashtagPayloadDTO)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Example
|
|
19
|
+
|
|
20
|
+
```typescript
|
|
21
|
+
import {
|
|
22
|
+
HashtagsApi,
|
|
23
|
+
Configuration,
|
|
24
|
+
HashtagPayloadDTO
|
|
25
|
+
} from './api';
|
|
26
|
+
|
|
27
|
+
const configuration = new Configuration();
|
|
28
|
+
const apiInstance = new HashtagsApi(configuration);
|
|
29
|
+
|
|
30
|
+
let hashtagPayloadDTO: HashtagPayloadDTO; //
|
|
31
|
+
|
|
32
|
+
const { status, data } = await apiInstance.hashtagsControllerCreateHashtag(
|
|
33
|
+
hashtagPayloadDTO
|
|
34
|
+
);
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
### Parameters
|
|
38
|
+
|
|
39
|
+
|Name | Type | Description | Notes|
|
|
40
|
+
|------------- | ------------- | ------------- | -------------|
|
|
41
|
+
| **hashtagPayloadDTO** | **HashtagPayloadDTO**| | |
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
### Return type
|
|
45
|
+
|
|
46
|
+
**HashtagResponseDTO**
|
|
47
|
+
|
|
48
|
+
### Authorization
|
|
49
|
+
|
|
50
|
+
No authorization required
|
|
51
|
+
|
|
52
|
+
### HTTP request headers
|
|
53
|
+
|
|
54
|
+
- **Content-Type**: application/json
|
|
55
|
+
- **Accept**: application/json
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
### HTTP response details
|
|
59
|
+
| Status code | Description | Response headers |
|
|
60
|
+
|-------------|-------------|------------------|
|
|
61
|
+
|**200** | | - |
|
|
62
|
+
|
|
63
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
64
|
+
|
|
65
|
+
# **hashtagsControllerDeleteHashtagById**
|
|
66
|
+
> HashtagResponseDTO hashtagsControllerDeleteHashtagById()
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
### Example
|
|
70
|
+
|
|
71
|
+
```typescript
|
|
72
|
+
import {
|
|
73
|
+
HashtagsApi,
|
|
74
|
+
Configuration
|
|
75
|
+
} from './api';
|
|
76
|
+
|
|
77
|
+
const configuration = new Configuration();
|
|
78
|
+
const apiInstance = new HashtagsApi(configuration);
|
|
79
|
+
|
|
80
|
+
let id: string; // (default to undefined)
|
|
81
|
+
|
|
82
|
+
const { status, data } = await apiInstance.hashtagsControllerDeleteHashtagById(
|
|
83
|
+
id
|
|
84
|
+
);
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
### Parameters
|
|
88
|
+
|
|
89
|
+
|Name | Type | Description | Notes|
|
|
90
|
+
|------------- | ------------- | ------------- | -------------|
|
|
91
|
+
| **id** | [**string**] | | defaults to undefined|
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
### Return type
|
|
95
|
+
|
|
96
|
+
**HashtagResponseDTO**
|
|
97
|
+
|
|
98
|
+
### Authorization
|
|
99
|
+
|
|
100
|
+
No authorization required
|
|
101
|
+
|
|
102
|
+
### HTTP request headers
|
|
103
|
+
|
|
104
|
+
- **Content-Type**: Not defined
|
|
105
|
+
- **Accept**: application/json
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
### HTTP response details
|
|
109
|
+
| Status code | Description | Response headers |
|
|
110
|
+
|-------------|-------------|------------------|
|
|
111
|
+
|**200** | | - |
|
|
112
|
+
|
|
113
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
114
|
+
|
|
115
|
+
# **hashtagsControllerFindHashtags**
|
|
116
|
+
> HashtagsResponseDTO hashtagsControllerFindHashtags()
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
### Example
|
|
120
|
+
|
|
121
|
+
```typescript
|
|
122
|
+
import {
|
|
123
|
+
HashtagsApi,
|
|
124
|
+
Configuration
|
|
125
|
+
} from './api';
|
|
126
|
+
|
|
127
|
+
const configuration = new Configuration();
|
|
128
|
+
const apiInstance = new HashtagsApi(configuration);
|
|
129
|
+
|
|
130
|
+
let page: number; // (default to undefined)
|
|
131
|
+
let pageSize: number; // (default to undefined)
|
|
132
|
+
let category: Array<'RSVP'>; // (optional) (default to undefined)
|
|
133
|
+
|
|
134
|
+
const { status, data } = await apiInstance.hashtagsControllerFindHashtags(
|
|
135
|
+
page,
|
|
136
|
+
pageSize,
|
|
137
|
+
category
|
|
138
|
+
);
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
### Parameters
|
|
142
|
+
|
|
143
|
+
|Name | Type | Description | Notes|
|
|
144
|
+
|------------- | ------------- | ------------- | -------------|
|
|
145
|
+
| **page** | [**number**] | | defaults to undefined|
|
|
146
|
+
| **pageSize** | [**number**] | | defaults to undefined|
|
|
147
|
+
| **category** | **Array<'RSVP'>** | | (optional) defaults to undefined|
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
### Return type
|
|
151
|
+
|
|
152
|
+
**HashtagsResponseDTO**
|
|
153
|
+
|
|
154
|
+
### Authorization
|
|
155
|
+
|
|
156
|
+
No authorization required
|
|
157
|
+
|
|
158
|
+
### HTTP request headers
|
|
159
|
+
|
|
160
|
+
- **Content-Type**: Not defined
|
|
161
|
+
- **Accept**: application/json
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
### HTTP response details
|
|
165
|
+
| Status code | Description | Response headers |
|
|
166
|
+
|-------------|-------------|------------------|
|
|
167
|
+
|**200** | | - |
|
|
168
|
+
|
|
169
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
170
|
+
|
|
171
|
+
# **hashtagsControllerGetHashtags**
|
|
172
|
+
> HashtagsResponseDTO hashtagsControllerGetHashtags()
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
### Example
|
|
176
|
+
|
|
177
|
+
```typescript
|
|
178
|
+
import {
|
|
179
|
+
HashtagsApi,
|
|
180
|
+
Configuration
|
|
181
|
+
} from './api';
|
|
182
|
+
|
|
183
|
+
const configuration = new Configuration();
|
|
184
|
+
const apiInstance = new HashtagsApi(configuration);
|
|
185
|
+
|
|
186
|
+
let page: number; // (default to undefined)
|
|
187
|
+
let pageSize: number; // (default to undefined)
|
|
188
|
+
let category: Array<'RSVP'>; // (optional) (default to undefined)
|
|
189
|
+
|
|
190
|
+
const { status, data } = await apiInstance.hashtagsControllerGetHashtags(
|
|
191
|
+
page,
|
|
192
|
+
pageSize,
|
|
193
|
+
category
|
|
194
|
+
);
|
|
195
|
+
```
|
|
196
|
+
|
|
197
|
+
### Parameters
|
|
198
|
+
|
|
199
|
+
|Name | Type | Description | Notes|
|
|
200
|
+
|------------- | ------------- | ------------- | -------------|
|
|
201
|
+
| **page** | [**number**] | | defaults to undefined|
|
|
202
|
+
| **pageSize** | [**number**] | | defaults to undefined|
|
|
203
|
+
| **category** | **Array<'RSVP'>** | | (optional) defaults to undefined|
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
### Return type
|
|
207
|
+
|
|
208
|
+
**HashtagsResponseDTO**
|
|
209
|
+
|
|
210
|
+
### Authorization
|
|
211
|
+
|
|
212
|
+
No authorization required
|
|
213
|
+
|
|
214
|
+
### HTTP request headers
|
|
215
|
+
|
|
216
|
+
- **Content-Type**: Not defined
|
|
217
|
+
- **Accept**: application/json
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
### HTTP response details
|
|
221
|
+
| Status code | Description | Response headers |
|
|
222
|
+
|-------------|-------------|------------------|
|
|
223
|
+
|**200** | | - |
|
|
224
|
+
|
|
225
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
226
|
+
|
|
227
|
+
# **hashtagsControllerHashtagById**
|
|
228
|
+
> HashtagResponseDTO hashtagsControllerHashtagById()
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
### Example
|
|
232
|
+
|
|
233
|
+
```typescript
|
|
234
|
+
import {
|
|
235
|
+
HashtagsApi,
|
|
236
|
+
Configuration
|
|
237
|
+
} from './api';
|
|
238
|
+
|
|
239
|
+
const configuration = new Configuration();
|
|
240
|
+
const apiInstance = new HashtagsApi(configuration);
|
|
241
|
+
|
|
242
|
+
let id: string; // (default to undefined)
|
|
243
|
+
|
|
244
|
+
const { status, data } = await apiInstance.hashtagsControllerHashtagById(
|
|
245
|
+
id
|
|
246
|
+
);
|
|
247
|
+
```
|
|
248
|
+
|
|
249
|
+
### Parameters
|
|
250
|
+
|
|
251
|
+
|Name | Type | Description | Notes|
|
|
252
|
+
|------------- | ------------- | ------------- | -------------|
|
|
253
|
+
| **id** | [**string**] | | defaults to undefined|
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
### Return type
|
|
257
|
+
|
|
258
|
+
**HashtagResponseDTO**
|
|
259
|
+
|
|
260
|
+
### Authorization
|
|
261
|
+
|
|
262
|
+
No authorization required
|
|
263
|
+
|
|
264
|
+
### HTTP request headers
|
|
265
|
+
|
|
266
|
+
- **Content-Type**: Not defined
|
|
267
|
+
- **Accept**: application/json
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
### HTTP response details
|
|
271
|
+
| Status code | Description | Response headers |
|
|
272
|
+
|-------------|-------------|------------------|
|
|
273
|
+
|**200** | | - |
|
|
274
|
+
|
|
275
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
276
|
+
|
|
277
|
+
# **hashtagsControllerUpdateHashtagById**
|
|
278
|
+
> HashtagResponseDTO hashtagsControllerUpdateHashtagById(hashtagUpdatePayloadDTO)
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
### Example
|
|
282
|
+
|
|
283
|
+
```typescript
|
|
284
|
+
import {
|
|
285
|
+
HashtagsApi,
|
|
286
|
+
Configuration,
|
|
287
|
+
HashtagUpdatePayloadDTO
|
|
288
|
+
} from './api';
|
|
289
|
+
|
|
290
|
+
const configuration = new Configuration();
|
|
291
|
+
const apiInstance = new HashtagsApi(configuration);
|
|
292
|
+
|
|
293
|
+
let hashtagUpdatePayloadDTO: HashtagUpdatePayloadDTO; //
|
|
294
|
+
|
|
295
|
+
const { status, data } = await apiInstance.hashtagsControllerUpdateHashtagById(
|
|
296
|
+
hashtagUpdatePayloadDTO
|
|
297
|
+
);
|
|
298
|
+
```
|
|
299
|
+
|
|
300
|
+
### Parameters
|
|
301
|
+
|
|
302
|
+
|Name | Type | Description | Notes|
|
|
303
|
+
|------------- | ------------- | ------------- | -------------|
|
|
304
|
+
| **hashtagUpdatePayloadDTO** | **HashtagUpdatePayloadDTO**| | |
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
### Return type
|
|
308
|
+
|
|
309
|
+
**HashtagResponseDTO**
|
|
310
|
+
|
|
311
|
+
### Authorization
|
|
312
|
+
|
|
313
|
+
No authorization required
|
|
314
|
+
|
|
315
|
+
### HTTP request headers
|
|
316
|
+
|
|
317
|
+
- **Content-Type**: application/json
|
|
318
|
+
- **Accept**: application/json
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
### HTTP response details
|
|
322
|
+
| Status code | Description | Response headers |
|
|
323
|
+
|-------------|-------------|------------------|
|
|
324
|
+
|**200** | | - |
|
|
325
|
+
|
|
326
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
327
|
+
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# HashtagsResponse
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**_id** | **string** | Hashtag id | [default to undefined]
|
|
9
|
+
**name** | **string** | Hashtag name | [default to undefined]
|
|
10
|
+
**category** | **string** | Hashtag category | [default to undefined]
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import { HashtagsResponse } from './api';
|
|
16
|
+
|
|
17
|
+
const instance: HashtagsResponse = {
|
|
18
|
+
_id,
|
|
19
|
+
name,
|
|
20
|
+
category,
|
|
21
|
+
};
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
[[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,22 @@
|
|
|
1
|
+
# HashtagsResponseDTO
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**data** | [**Array<HashtagsResponse>**](HashtagsResponse.md) | | [default to undefined]
|
|
9
|
+
**statusCode** | **number** | statusCode | [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { HashtagsResponseDTO } from './api';
|
|
15
|
+
|
|
16
|
+
const instance: HashtagsResponseDTO = {
|
|
17
|
+
data,
|
|
18
|
+
statusCode,
|
|
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)
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# HostV2DTO
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**hostId** | **string** | | [default to undefined]
|
|
9
|
+
**hostType** | **string** | | [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { HostV2DTO } from './api';
|
|
15
|
+
|
|
16
|
+
const instance: HostV2DTO = {
|
|
17
|
+
hostId,
|
|
18
|
+
hostType,
|
|
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)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# InviteRSVPArrayDTO
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**invites** | [**Array<InviteRSVPDTO>**](InviteRSVPDTO.md) | | [default to undefined]
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
import { InviteRSVPArrayDTO } from './api';
|
|
14
|
+
|
|
15
|
+
const instance: InviteRSVPArrayDTO = {
|
|
16
|
+
invites,
|
|
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)
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# InviteRSVPDTO
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**email** | **string** | | [optional] [default to undefined]
|
|
9
|
+
**firstName** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**lastName** | **string** | | [optional] [default to undefined]
|
|
11
|
+
**mobileNumber** | **string** | | [optional] [default to undefined]
|
|
12
|
+
**user** | **string** | | [optional] [default to undefined]
|
|
13
|
+
**contact** | **string** | | [optional] [default to undefined]
|
|
14
|
+
**business** | **string** | | [optional] [default to undefined]
|
|
15
|
+
**profile** | **string** | | [optional] [default to undefined]
|
|
16
|
+
|
|
17
|
+
## Example
|
|
18
|
+
|
|
19
|
+
```typescript
|
|
20
|
+
import { InviteRSVPDTO } from './api';
|
|
21
|
+
|
|
22
|
+
const instance: InviteRSVPDTO = {
|
|
23
|
+
email,
|
|
24
|
+
firstName,
|
|
25
|
+
lastName,
|
|
26
|
+
mobileNumber,
|
|
27
|
+
user,
|
|
28
|
+
contact,
|
|
29
|
+
business,
|
|
30
|
+
profile,
|
|
31
|
+
};
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
[[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,34 @@
|
|
|
1
|
+
# JoinRSVPEventDTO
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**firstName** | **string** | | [optional] [default to undefined]
|
|
9
|
+
**lastName** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**email** | **string** | | [optional] [default to undefined]
|
|
11
|
+
**mobileNumber** | **string** | | [optional] [default to undefined]
|
|
12
|
+
**profile** | **string** | | [optional] [default to undefined]
|
|
13
|
+
**user** | **string** | | [optional] [default to undefined]
|
|
14
|
+
**contact** | **string** | | [optional] [default to undefined]
|
|
15
|
+
**others** | [**Array<InviteRSVPDTO>**](InviteRSVPDTO.md) | | [optional] [default to undefined]
|
|
16
|
+
|
|
17
|
+
## Example
|
|
18
|
+
|
|
19
|
+
```typescript
|
|
20
|
+
import { JoinRSVPEventDTO } from './api';
|
|
21
|
+
|
|
22
|
+
const instance: JoinRSVPEventDTO = {
|
|
23
|
+
firstName,
|
|
24
|
+
lastName,
|
|
25
|
+
email,
|
|
26
|
+
mobileNumber,
|
|
27
|
+
profile,
|
|
28
|
+
user,
|
|
29
|
+
contact,
|
|
30
|
+
others,
|
|
31
|
+
};
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -8,8 +8,8 @@ Name | Type | Description | Notes
|
|
|
8
8
|
**whatsOnId** | **string** | Event ID | [optional] [default to undefined]
|
|
9
9
|
**serviceId** | **string** | Service ID | [optional] [default to undefined]
|
|
10
10
|
**rsvpId** | **string** | RSVP ID | [optional] [default to undefined]
|
|
11
|
-
**startDate** | **string** | The start date of the booking | [optional] [default to 2026-
|
|
12
|
-
**endDate** | **string** | The end date of the booking | [optional] [default to 2026-
|
|
11
|
+
**startDate** | **string** | The start date of the booking | [optional] [default to 2026-04-16T09:48:32Z]
|
|
12
|
+
**endDate** | **string** | The end date of the booking | [optional] [default to 2026-04-16T09:48:32Z]
|
|
13
13
|
**discountId** | **string** | Discount ID | [optional] [default to undefined]
|
|
14
14
|
**selectedStaff** | **string** | Staff ID | [optional] [default to undefined]
|
|
15
15
|
**quantity** | **number** | | [optional] [default to 0]
|
package/docs/PlansApi.md
CHANGED
|
@@ -18,6 +18,7 @@ All URIs are relative to *http://localhost:8080*
|
|
|
18
18
|
|[**paymentControllerServiceById**](#paymentcontrollerservicebyid) | **GET** /v1/payment/stripe-plan/{id} | |
|
|
19
19
|
|[**paymentControllerSetupBookingPayment**](#paymentcontrollersetupbookingpayment) | **POST** /v1/payment/booking | |
|
|
20
20
|
|[**paymentControllerSetupDashboardBookingPayment**](#paymentcontrollersetupdashboardbookingpayment) | **POST** /v1/payment/booking/rsvp | |
|
|
21
|
+
|[**paymentControllerSetupRSVPV2Payment**](#paymentcontrollersetuprsvpv2payment) | **POST** /v1/payment/rsvp-v2 | |
|
|
21
22
|
|[**paymentControllerStripeWebhook**](#paymentcontrollerstripewebhook) | **POST** /v1/payment/stripe-webhook | |
|
|
22
23
|
|
|
23
24
|
# **paymentControllerConnectAccount**
|
|
@@ -678,6 +679,49 @@ No authorization required
|
|
|
678
679
|
- **Accept**: application/json
|
|
679
680
|
|
|
680
681
|
|
|
682
|
+
### HTTP response details
|
|
683
|
+
| Status code | Description | Response headers |
|
|
684
|
+
|-------------|-------------|------------------|
|
|
685
|
+
|**200** | | - |
|
|
686
|
+
|
|
687
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
688
|
+
|
|
689
|
+
# **paymentControllerSetupRSVPV2Payment**
|
|
690
|
+
> BookingPaymentCreateResponseDTO paymentControllerSetupRSVPV2Payment()
|
|
691
|
+
|
|
692
|
+
|
|
693
|
+
### Example
|
|
694
|
+
|
|
695
|
+
```typescript
|
|
696
|
+
import {
|
|
697
|
+
PlansApi,
|
|
698
|
+
Configuration
|
|
699
|
+
} from './api';
|
|
700
|
+
|
|
701
|
+
const configuration = new Configuration();
|
|
702
|
+
const apiInstance = new PlansApi(configuration);
|
|
703
|
+
|
|
704
|
+
const { status, data } = await apiInstance.paymentControllerSetupRSVPV2Payment();
|
|
705
|
+
```
|
|
706
|
+
|
|
707
|
+
### Parameters
|
|
708
|
+
This endpoint does not have any parameters.
|
|
709
|
+
|
|
710
|
+
|
|
711
|
+
### Return type
|
|
712
|
+
|
|
713
|
+
**BookingPaymentCreateResponseDTO**
|
|
714
|
+
|
|
715
|
+
### Authorization
|
|
716
|
+
|
|
717
|
+
[bearer](../README.md#bearer)
|
|
718
|
+
|
|
719
|
+
### HTTP request headers
|
|
720
|
+
|
|
721
|
+
- **Content-Type**: Not defined
|
|
722
|
+
- **Accept**: application/json
|
|
723
|
+
|
|
724
|
+
|
|
681
725
|
### HTTP response details
|
|
682
726
|
| Status code | Description | Response headers |
|
|
683
727
|
|-------------|-------------|------------------|
|
|
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
|
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**statusCode** | **number** | statusCode | [default to undefined]
|
|
9
9
|
**message** | **string** | Discount ID | [default to undefined]
|
|
10
|
+
**data** | **string** | Discount | [default to undefined]
|
|
10
11
|
|
|
11
12
|
## Example
|
|
12
13
|
|
|
@@ -16,6 +17,7 @@ import { PromoCodeResponseDTO } from './api';
|
|
|
16
17
|
const instance: PromoCodeResponseDTO = {
|
|
17
18
|
statusCode,
|
|
18
19
|
message,
|
|
20
|
+
data,
|
|
19
21
|
};
|
|
20
22
|
```
|
|
21
23
|
|
|
@@ -37,6 +37,10 @@ Name | Type | Description | Notes
|
|
|
37
37
|
**discounts** | **Array<object>** | | [optional] [default to undefined]
|
|
38
38
|
**meta** | [**RSVPEventMetaDataDTO**](RSVPEventMetaDataDTO.md) | Meta information about the location. | [optional] [default to undefined]
|
|
39
39
|
**stripeProduct** | **string** | | [optional] [default to undefined]
|
|
40
|
+
**collaboratorUsers** | [**Array<CreateRSVPCollaboratorPayload>**](CreateRSVPCollaboratorPayload.md) | The list of collaborators associated with the booking | [optional] [default to undefined]
|
|
41
|
+
**calendars** | **Array<string>** | | [optional] [default to undefined]
|
|
42
|
+
**theme** | **string** | | [optional] [default to undefined]
|
|
43
|
+
**hideGuestCount** | **boolean** | | [optional] [default to undefined]
|
|
40
44
|
|
|
41
45
|
## Example
|
|
42
46
|
|
|
@@ -76,6 +80,10 @@ const instance: RSVPEvenPayloadDTO = {
|
|
|
76
80
|
discounts,
|
|
77
81
|
meta,
|
|
78
82
|
stripeProduct,
|
|
83
|
+
collaboratorUsers,
|
|
84
|
+
calendars,
|
|
85
|
+
theme,
|
|
86
|
+
hideGuestCount,
|
|
79
87
|
};
|
|
80
88
|
```
|
|
81
89
|
|
package/docs/RSVPEventApi.md
CHANGED
package/docs/RSVPEventEntity.md
CHANGED
|
@@ -40,6 +40,9 @@ Name | Type | Description | Notes
|
|
|
40
40
|
**discounts** | **Array<object>** | | [optional] [default to undefined]
|
|
41
41
|
**reminder** | **boolean** | | [optional] [default to undefined]
|
|
42
42
|
**calendar** | **boolean** | | [optional] [default to undefined]
|
|
43
|
+
**collaborators** | [**Array<CreateRSVPCollaboratorPayload>**](CreateRSVPCollaboratorPayload.md) | The list of collaborators associated with the booking | [optional] [default to undefined]
|
|
44
|
+
**theme** | **string** | | [optional] [default to undefined]
|
|
45
|
+
**hideGuestCount** | **boolean** | | [optional] [default to undefined]
|
|
43
46
|
|
|
44
47
|
## Example
|
|
45
48
|
|
|
@@ -82,6 +85,9 @@ const instance: RSVPEventEntity = {
|
|
|
82
85
|
discounts,
|
|
83
86
|
reminder,
|
|
84
87
|
calendar,
|
|
88
|
+
collaborators,
|
|
89
|
+
theme,
|
|
90
|
+
hideGuestCount,
|
|
85
91
|
};
|
|
86
92
|
```
|
|
87
93
|
|