@gooday_corp/gooday-api-client 4.6.26 → 4.6.28
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/api.ts +707 -22
- package/docs/CreateBookingPayload.md +2 -2
- package/docs/CreateRSVPEventBookingPayload.md +2 -2
- package/docs/CreateRSVPEventV2DTO.md +2 -0
- package/docs/CreateWalkInBookingPayload.md +2 -2
- package/docs/JoinRSVPEventDTO.md +2 -0
- package/docs/PaymentDetailsPayload.md +2 -2
- package/docs/RSVPV2Api.md +472 -0
- package/docs/RescheduleBookingPayload.md +1 -1
- package/docs/UpdateRSVPEventV2DTO.md +2 -0
- package/docs/WaitlistPayloadDTO.md +2 -2
- package/package.json +1 -1
|
@@ -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 2026-07-
|
|
10
|
-
**recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2026-07-
|
|
9
|
+
**date** | **string** | The start date of the booking | [default to 2026-07-07T15:31:46+05:30]
|
|
10
|
+
**recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2026-07-07T15:31:46+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 2026-07-
|
|
10
|
-
**endDate** | **string** | The start date of the booking | [default to 2026-07-
|
|
9
|
+
**startDate** | **string** | The start date of the booking | [default to 2026-07-07T15:31:46+05:30]
|
|
10
|
+
**endDate** | **string** | The start date of the booking | [default to 2026-07-07T15:31:46+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]
|
|
@@ -44,6 +44,7 @@ Name | Type | Description | Notes
|
|
|
44
44
|
**hostBy** | **string** | | [optional] [default to undefined]
|
|
45
45
|
**hostImage** | **string** | | [optional] [default to undefined]
|
|
46
46
|
**emailTemplate** | **string** | | [optional] [default to undefined]
|
|
47
|
+
**requireApproval** | **boolean** | | [optional] [default to undefined]
|
|
47
48
|
|
|
48
49
|
## Example
|
|
49
50
|
|
|
@@ -90,6 +91,7 @@ const instance: CreateRSVPEventV2DTO = {
|
|
|
90
91
|
hostBy,
|
|
91
92
|
hostImage,
|
|
92
93
|
emailTemplate,
|
|
94
|
+
requireApproval,
|
|
93
95
|
};
|
|
94
96
|
```
|
|
95
97
|
|
|
@@ -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 2026-07-
|
|
10
|
-
**endDate** | **string** | The start date of the booking | [default to 2026-07-
|
|
9
|
+
**startDate** | **string** | The start date of the booking | [default to 2026-07-07T15:31:46+05:30]
|
|
10
|
+
**endDate** | **string** | The start date of the booking | [default to 2026-07-07T15:31:46+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]
|
package/docs/JoinRSVPEventDTO.md
CHANGED
|
@@ -13,6 +13,7 @@ Name | Type | Description | Notes
|
|
|
13
13
|
**user** | **string** | | [optional] [default to undefined]
|
|
14
14
|
**contact** | **string** | | [optional] [default to undefined]
|
|
15
15
|
**others** | [**Array<InviteRSVPDTO>**](InviteRSVPDTO.md) | | [optional] [default to undefined]
|
|
16
|
+
**notes** | **string** | | [optional] [default to undefined]
|
|
16
17
|
|
|
17
18
|
## Example
|
|
18
19
|
|
|
@@ -28,6 +29,7 @@ const instance: JoinRSVPEventDTO = {
|
|
|
28
29
|
user,
|
|
29
30
|
contact,
|
|
30
31
|
others,
|
|
32
|
+
notes,
|
|
31
33
|
};
|
|
32
34
|
```
|
|
33
35
|
|
|
@@ -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-07-
|
|
12
|
-
**endDate** | **string** | The end date of the booking | [optional] [default to 2026-07-
|
|
11
|
+
**startDate** | **string** | The start date of the booking | [optional] [default to 2026-07-07T15:31:46+05:30]
|
|
12
|
+
**endDate** | **string** | The end date of the booking | [optional] [default to 2026-07-07T15:31:46+05:30]
|
|
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/RSVPV2Api.md
CHANGED
|
@@ -4,10 +4,14 @@ All URIs are relative to *http://localhost:8080*
|
|
|
4
4
|
|
|
5
5
|
|Method | HTTP request | Description|
|
|
6
6
|
|------------- | ------------- | -------------|
|
|
7
|
+
|[**rSVPV2ControllerAcceptProposal**](#rsvpv2controlleracceptproposal) | **POST** /v1/rsvp/v2/requests/{requestId}/accept | |
|
|
7
8
|
|[**rSVPV2ControllerAddEventCalendar**](#rsvpv2controlleraddeventcalendar) | **PUT** /v1/rsvp/v2/calendar/{id} | |
|
|
9
|
+
|[**rSVPV2ControllerApproveRequest**](#rsvpv2controllerapproverequest) | **POST** /v1/rsvp/v2/requests/{requestId}/approve | |
|
|
10
|
+
|[**rSVPV2ControllerCancelRequest**](#rsvpv2controllercancelrequest) | **POST** /v1/rsvp/v2/requests/{requestId}/cancel | |
|
|
8
11
|
|[**rSVPV2ControllerCheckAvailability**](#rsvpv2controllercheckavailability) | **GET** /v1/rsvp/v2/events/{id}/availability | |
|
|
9
12
|
|[**rSVPV2ControllerConfirmPayment**](#rsvpv2controllerconfirmpayment) | **POST** /v1/rsvp/v2/attendees/payment/confirm | |
|
|
10
13
|
|[**rSVPV2ControllerCreateEvent**](#rsvpv2controllercreateevent) | **POST** /v1/rsvp/v2/events | |
|
|
14
|
+
|[**rSVPV2ControllerDeclineRequest**](#rsvpv2controllerdeclinerequest) | **POST** /v1/rsvp/v2/requests/{requestId}/decline | |
|
|
11
15
|
|[**rSVPV2ControllerDeleteEvent**](#rsvpv2controllerdeleteevent) | **DELETE** /v1/rsvp/v2/events/{id} | |
|
|
12
16
|
|[**rSVPV2ControllerDeleteEventSuperAdmin**](#rsvpv2controllerdeleteeventsuperadmin) | **DELETE** /v1/rsvp/v2/super-admin/rsvp | |
|
|
13
17
|
|[**rSVPV2ControllerDeleteRSVPFavorites**](#rsvpv2controllerdeletersvpfavorites) | **DELETE** /v1/rsvp/v2/event/unfavorite | |
|
|
@@ -16,6 +20,7 @@ All URIs are relative to *http://localhost:8080*
|
|
|
16
20
|
|[**rSVPV2ControllerGetAssociatedEventsCount**](#rsvpv2controllergetassociatedeventscount) | **GET** /v1/rsvp/v2/associated-events/count | |
|
|
17
21
|
|[**rSVPV2ControllerGetAttendees**](#rsvpv2controllergetattendees) | **GET** /v1/rsvp/v2/events/{id}/attendees | |
|
|
18
22
|
|[**rSVPV2ControllerGetBlasts**](#rsvpv2controllergetblasts) | **GET** /v1/rsvp/v2/events/{id}/blasts | |
|
|
23
|
+
|[**rSVPV2ControllerGetDashboardRequests**](#rsvpv2controllergetdashboardrequests) | **GET** /v1/rsvp/v2/dashboard/approval-requests | |
|
|
19
24
|
|[**rSVPV2ControllerGetEventById**](#rsvpv2controllergeteventbyid) | **GET** /v1/rsvp/v2/events/{id} | |
|
|
20
25
|
|[**rSVPV2ControllerGetEventsByBusiness**](#rsvpv2controllergeteventsbybusiness) | **GET** /v1/rsvp/v2/events/business/{businessId} | |
|
|
21
26
|
|[**rSVPV2ControllerGetEventsByVenue**](#rsvpv2controllergeteventsbyvenue) | **GET** /v1/rsvp/v2/events/venue/{venueId} | |
|
|
@@ -23,16 +28,70 @@ All URIs are relative to *http://localhost:8080*
|
|
|
23
28
|
|[**rSVPV2ControllerGetHostEvents**](#rsvpv2controllergethostevents) | **GET** /v1/rsvp/v2/host/events | |
|
|
24
29
|
|[**rSVPV2ControllerGetMyEvents**](#rsvpv2controllergetmyevents) | **GET** /v1/rsvp/v2/my/events | |
|
|
25
30
|
|[**rSVPV2ControllerGetNearbyPublicEvents**](#rsvpv2controllergetnearbypublicevents) | **GET** /v1/rsvp/v2/events/nearby | |
|
|
31
|
+
|[**rSVPV2ControllerGetPendingRequests**](#rsvpv2controllergetpendingrequests) | **GET** /v1/rsvp/v2/events/{id}/requests/pending | |
|
|
26
32
|
|[**rSVPV2ControllerGetSuperAdminEvents**](#rsvpv2controllergetsuperadminevents) | **POST** /v1/rsvp/v2/super-admin/events | |
|
|
27
33
|
|[**rSVPV2ControllerInvite**](#rsvpv2controllerinvite) | **POST** /v1/rsvp/v2/events/{id}/invite | |
|
|
28
34
|
|[**rSVPV2ControllerJoinEvent**](#rsvpv2controllerjoinevent) | **POST** /v1/rsvp/v2/events/{id}/join | |
|
|
35
|
+
|[**rSVPV2ControllerProposeTime**](#rsvpv2controllerproposetime) | **POST** /v1/rsvp/v2/requests/{requestId}/propose | |
|
|
36
|
+
|[**rSVPV2ControllerRejectProposal**](#rsvpv2controllerrejectproposal) | **POST** /v1/rsvp/v2/requests/{requestId}/reject | |
|
|
29
37
|
|[**rSVPV2ControllerReminderEventCalendar**](#rsvpv2controllerremindereventcalendar) | **PUT** /v1/rsvp/v2/remindar/{id} | |
|
|
38
|
+
|[**rSVPV2ControllerRequestToJoin**](#rsvpv2controllerrequesttojoin) | **POST** /v1/rsvp/v2/events/{id}/request | |
|
|
30
39
|
|[**rSVPV2ControllerRsvpFavorites**](#rsvpv2controllerrsvpfavorites) | **POST** /v1/rsvp/v2/event/favorite | |
|
|
31
40
|
|[**rSVPV2ControllerSendBlast**](#rsvpv2controllersendblast) | **POST** /v1/rsvp/v2/events/{id}/blasts | |
|
|
32
41
|
|[**rSVPV2ControllerSetupPayment**](#rsvpv2controllersetuppayment) | **POST** /v1/rsvp/v2/attendees/payment/setup | |
|
|
33
42
|
|[**rSVPV2ControllerUpdateEvent**](#rsvpv2controllerupdateevent) | **PUT** /v1/rsvp/v2/events/{id} | |
|
|
34
43
|
|[**rSVPV2ControllerUpdateStatus**](#rsvpv2controllerupdatestatus) | **PUT** /v1/rsvp/v2/attendees/{id}/status | |
|
|
35
44
|
|
|
45
|
+
# **rSVPV2ControllerAcceptProposal**
|
|
46
|
+
> rSVPV2ControllerAcceptProposal()
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
### Example
|
|
50
|
+
|
|
51
|
+
```typescript
|
|
52
|
+
import {
|
|
53
|
+
RSVPV2Api,
|
|
54
|
+
Configuration
|
|
55
|
+
} from './api';
|
|
56
|
+
|
|
57
|
+
const configuration = new Configuration();
|
|
58
|
+
const apiInstance = new RSVPV2Api(configuration);
|
|
59
|
+
|
|
60
|
+
let requestId: string; // (default to undefined)
|
|
61
|
+
|
|
62
|
+
const { status, data } = await apiInstance.rSVPV2ControllerAcceptProposal(
|
|
63
|
+
requestId
|
|
64
|
+
);
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
### Parameters
|
|
68
|
+
|
|
69
|
+
|Name | Type | Description | Notes|
|
|
70
|
+
|------------- | ------------- | ------------- | -------------|
|
|
71
|
+
| **requestId** | [**string**] | | defaults to undefined|
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
### Return type
|
|
75
|
+
|
|
76
|
+
void (empty response body)
|
|
77
|
+
|
|
78
|
+
### Authorization
|
|
79
|
+
|
|
80
|
+
[bearer](../README.md#bearer)
|
|
81
|
+
|
|
82
|
+
### HTTP request headers
|
|
83
|
+
|
|
84
|
+
- **Content-Type**: Not defined
|
|
85
|
+
- **Accept**: Not defined
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
### HTTP response details
|
|
89
|
+
| Status code | Description | Response headers |
|
|
90
|
+
|-------------|-------------|------------------|
|
|
91
|
+
|**200** | Accept proposal for a new date & time | - |
|
|
92
|
+
|
|
93
|
+
[[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)
|
|
94
|
+
|
|
36
95
|
# **rSVPV2ControllerAddEventCalendar**
|
|
37
96
|
> rSVPV2ControllerAddEventCalendar()
|
|
38
97
|
|
|
@@ -83,6 +142,106 @@ No authorization required
|
|
|
83
142
|
|
|
84
143
|
[[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)
|
|
85
144
|
|
|
145
|
+
# **rSVPV2ControllerApproveRequest**
|
|
146
|
+
> rSVPV2ControllerApproveRequest()
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
### Example
|
|
150
|
+
|
|
151
|
+
```typescript
|
|
152
|
+
import {
|
|
153
|
+
RSVPV2Api,
|
|
154
|
+
Configuration
|
|
155
|
+
} from './api';
|
|
156
|
+
|
|
157
|
+
const configuration = new Configuration();
|
|
158
|
+
const apiInstance = new RSVPV2Api(configuration);
|
|
159
|
+
|
|
160
|
+
let requestId: string; // (default to undefined)
|
|
161
|
+
|
|
162
|
+
const { status, data } = await apiInstance.rSVPV2ControllerApproveRequest(
|
|
163
|
+
requestId
|
|
164
|
+
);
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
### Parameters
|
|
168
|
+
|
|
169
|
+
|Name | Type | Description | Notes|
|
|
170
|
+
|------------- | ------------- | ------------- | -------------|
|
|
171
|
+
| **requestId** | [**string**] | | defaults to undefined|
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
### Return type
|
|
175
|
+
|
|
176
|
+
void (empty response body)
|
|
177
|
+
|
|
178
|
+
### Authorization
|
|
179
|
+
|
|
180
|
+
[bearer](../README.md#bearer)
|
|
181
|
+
|
|
182
|
+
### HTTP request headers
|
|
183
|
+
|
|
184
|
+
- **Content-Type**: Not defined
|
|
185
|
+
- **Accept**: Not defined
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
### HTTP response details
|
|
189
|
+
| Status code | Description | Response headers |
|
|
190
|
+
|-------------|-------------|------------------|
|
|
191
|
+
|**200** | Approve join request | - |
|
|
192
|
+
|
|
193
|
+
[[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)
|
|
194
|
+
|
|
195
|
+
# **rSVPV2ControllerCancelRequest**
|
|
196
|
+
> rSVPV2ControllerCancelRequest()
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
### Example
|
|
200
|
+
|
|
201
|
+
```typescript
|
|
202
|
+
import {
|
|
203
|
+
RSVPV2Api,
|
|
204
|
+
Configuration
|
|
205
|
+
} from './api';
|
|
206
|
+
|
|
207
|
+
const configuration = new Configuration();
|
|
208
|
+
const apiInstance = new RSVPV2Api(configuration);
|
|
209
|
+
|
|
210
|
+
let requestId: string; // (default to undefined)
|
|
211
|
+
|
|
212
|
+
const { status, data } = await apiInstance.rSVPV2ControllerCancelRequest(
|
|
213
|
+
requestId
|
|
214
|
+
);
|
|
215
|
+
```
|
|
216
|
+
|
|
217
|
+
### Parameters
|
|
218
|
+
|
|
219
|
+
|Name | Type | Description | Notes|
|
|
220
|
+
|------------- | ------------- | ------------- | -------------|
|
|
221
|
+
| **requestId** | [**string**] | | defaults to undefined|
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
### Return type
|
|
225
|
+
|
|
226
|
+
void (empty response body)
|
|
227
|
+
|
|
228
|
+
### Authorization
|
|
229
|
+
|
|
230
|
+
[bearer](../README.md#bearer)
|
|
231
|
+
|
|
232
|
+
### HTTP request headers
|
|
233
|
+
|
|
234
|
+
- **Content-Type**: Not defined
|
|
235
|
+
- **Accept**: Not defined
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
### HTTP response details
|
|
239
|
+
| Status code | Description | Response headers |
|
|
240
|
+
|-------------|-------------|------------------|
|
|
241
|
+
|**200** | Cancel your own pending request | - |
|
|
242
|
+
|
|
243
|
+
[[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)
|
|
244
|
+
|
|
86
245
|
# **rSVPV2ControllerCheckAvailability**
|
|
87
246
|
> rSVPV2ControllerCheckAvailability()
|
|
88
247
|
|
|
@@ -238,6 +397,56 @@ void (empty response body)
|
|
|
238
397
|
|
|
239
398
|
[[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)
|
|
240
399
|
|
|
400
|
+
# **rSVPV2ControllerDeclineRequest**
|
|
401
|
+
> rSVPV2ControllerDeclineRequest()
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
### Example
|
|
405
|
+
|
|
406
|
+
```typescript
|
|
407
|
+
import {
|
|
408
|
+
RSVPV2Api,
|
|
409
|
+
Configuration
|
|
410
|
+
} from './api';
|
|
411
|
+
|
|
412
|
+
const configuration = new Configuration();
|
|
413
|
+
const apiInstance = new RSVPV2Api(configuration);
|
|
414
|
+
|
|
415
|
+
let requestId: string; // (default to undefined)
|
|
416
|
+
|
|
417
|
+
const { status, data } = await apiInstance.rSVPV2ControllerDeclineRequest(
|
|
418
|
+
requestId
|
|
419
|
+
);
|
|
420
|
+
```
|
|
421
|
+
|
|
422
|
+
### Parameters
|
|
423
|
+
|
|
424
|
+
|Name | Type | Description | Notes|
|
|
425
|
+
|------------- | ------------- | ------------- | -------------|
|
|
426
|
+
| **requestId** | [**string**] | | defaults to undefined|
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
### Return type
|
|
430
|
+
|
|
431
|
+
void (empty response body)
|
|
432
|
+
|
|
433
|
+
### Authorization
|
|
434
|
+
|
|
435
|
+
[bearer](../README.md#bearer)
|
|
436
|
+
|
|
437
|
+
### HTTP request headers
|
|
438
|
+
|
|
439
|
+
- **Content-Type**: Not defined
|
|
440
|
+
- **Accept**: Not defined
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
### HTTP response details
|
|
444
|
+
| Status code | Description | Response headers |
|
|
445
|
+
|-------------|-------------|------------------|
|
|
446
|
+
|**200** | Decline join request | - |
|
|
447
|
+
|
|
448
|
+
[[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)
|
|
449
|
+
|
|
241
450
|
# **rSVPV2ControllerDeleteEvent**
|
|
242
451
|
> rSVPV2ControllerDeleteEvent()
|
|
243
452
|
|
|
@@ -657,6 +866,59 @@ void (empty response body)
|
|
|
657
866
|
|
|
658
867
|
[[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)
|
|
659
868
|
|
|
869
|
+
# **rSVPV2ControllerGetDashboardRequests**
|
|
870
|
+
> rSVPV2ControllerGetDashboardRequests()
|
|
871
|
+
|
|
872
|
+
|
|
873
|
+
### Example
|
|
874
|
+
|
|
875
|
+
```typescript
|
|
876
|
+
import {
|
|
877
|
+
RSVPV2Api,
|
|
878
|
+
Configuration
|
|
879
|
+
} from './api';
|
|
880
|
+
|
|
881
|
+
const configuration = new Configuration();
|
|
882
|
+
const apiInstance = new RSVPV2Api(configuration);
|
|
883
|
+
|
|
884
|
+
let page: number; // (default to undefined)
|
|
885
|
+
let pageSize: number; // (default to undefined)
|
|
886
|
+
|
|
887
|
+
const { status, data } = await apiInstance.rSVPV2ControllerGetDashboardRequests(
|
|
888
|
+
page,
|
|
889
|
+
pageSize
|
|
890
|
+
);
|
|
891
|
+
```
|
|
892
|
+
|
|
893
|
+
### Parameters
|
|
894
|
+
|
|
895
|
+
|Name | Type | Description | Notes|
|
|
896
|
+
|------------- | ------------- | ------------- | -------------|
|
|
897
|
+
| **page** | [**number**] | | defaults to undefined|
|
|
898
|
+
| **pageSize** | [**number**] | | defaults to undefined|
|
|
899
|
+
|
|
900
|
+
|
|
901
|
+
### Return type
|
|
902
|
+
|
|
903
|
+
void (empty response body)
|
|
904
|
+
|
|
905
|
+
### Authorization
|
|
906
|
+
|
|
907
|
+
[bearer](../README.md#bearer)
|
|
908
|
+
|
|
909
|
+
### HTTP request headers
|
|
910
|
+
|
|
911
|
+
- **Content-Type**: Not defined
|
|
912
|
+
- **Accept**: Not defined
|
|
913
|
+
|
|
914
|
+
|
|
915
|
+
### HTTP response details
|
|
916
|
+
| Status code | Description | Response headers |
|
|
917
|
+
|-------------|-------------|------------------|
|
|
918
|
+
|**200** | Get all pending requests for the host\'s dashboard | - |
|
|
919
|
+
|
|
920
|
+
[[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)
|
|
921
|
+
|
|
660
922
|
# **rSVPV2ControllerGetEventById**
|
|
661
923
|
> rSVPV2ControllerGetEventById()
|
|
662
924
|
|
|
@@ -1109,6 +1371,62 @@ No authorization required
|
|
|
1109
1371
|
|
|
1110
1372
|
[[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)
|
|
1111
1373
|
|
|
1374
|
+
# **rSVPV2ControllerGetPendingRequests**
|
|
1375
|
+
> rSVPV2ControllerGetPendingRequests()
|
|
1376
|
+
|
|
1377
|
+
|
|
1378
|
+
### Example
|
|
1379
|
+
|
|
1380
|
+
```typescript
|
|
1381
|
+
import {
|
|
1382
|
+
RSVPV2Api,
|
|
1383
|
+
Configuration
|
|
1384
|
+
} from './api';
|
|
1385
|
+
|
|
1386
|
+
const configuration = new Configuration();
|
|
1387
|
+
const apiInstance = new RSVPV2Api(configuration);
|
|
1388
|
+
|
|
1389
|
+
let id: string; // (default to undefined)
|
|
1390
|
+
let page: number; // (default to undefined)
|
|
1391
|
+
let pageSize: number; // (default to undefined)
|
|
1392
|
+
|
|
1393
|
+
const { status, data } = await apiInstance.rSVPV2ControllerGetPendingRequests(
|
|
1394
|
+
id,
|
|
1395
|
+
page,
|
|
1396
|
+
pageSize
|
|
1397
|
+
);
|
|
1398
|
+
```
|
|
1399
|
+
|
|
1400
|
+
### Parameters
|
|
1401
|
+
|
|
1402
|
+
|Name | Type | Description | Notes|
|
|
1403
|
+
|------------- | ------------- | ------------- | -------------|
|
|
1404
|
+
| **id** | [**string**] | | defaults to undefined|
|
|
1405
|
+
| **page** | [**number**] | | defaults to undefined|
|
|
1406
|
+
| **pageSize** | [**number**] | | defaults to undefined|
|
|
1407
|
+
|
|
1408
|
+
|
|
1409
|
+
### Return type
|
|
1410
|
+
|
|
1411
|
+
void (empty response body)
|
|
1412
|
+
|
|
1413
|
+
### Authorization
|
|
1414
|
+
|
|
1415
|
+
[bearer](../README.md#bearer)
|
|
1416
|
+
|
|
1417
|
+
### HTTP request headers
|
|
1418
|
+
|
|
1419
|
+
- **Content-Type**: Not defined
|
|
1420
|
+
- **Accept**: Not defined
|
|
1421
|
+
|
|
1422
|
+
|
|
1423
|
+
### HTTP response details
|
|
1424
|
+
| Status code | Description | Response headers |
|
|
1425
|
+
|-------------|-------------|------------------|
|
|
1426
|
+
|**200** | Get pending requests for an event | - |
|
|
1427
|
+
|
|
1428
|
+
[[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)
|
|
1429
|
+
|
|
1112
1430
|
# **rSVPV2ControllerGetSuperAdminEvents**
|
|
1113
1431
|
> rSVPV2ControllerGetSuperAdminEvents(rSVPEventFindV2DTO)
|
|
1114
1432
|
|
|
@@ -1268,6 +1586,106 @@ void (empty response body)
|
|
|
1268
1586
|
|
|
1269
1587
|
[[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)
|
|
1270
1588
|
|
|
1589
|
+
# **rSVPV2ControllerProposeTime**
|
|
1590
|
+
> rSVPV2ControllerProposeTime()
|
|
1591
|
+
|
|
1592
|
+
|
|
1593
|
+
### Example
|
|
1594
|
+
|
|
1595
|
+
```typescript
|
|
1596
|
+
import {
|
|
1597
|
+
RSVPV2Api,
|
|
1598
|
+
Configuration
|
|
1599
|
+
} from './api';
|
|
1600
|
+
|
|
1601
|
+
const configuration = new Configuration();
|
|
1602
|
+
const apiInstance = new RSVPV2Api(configuration);
|
|
1603
|
+
|
|
1604
|
+
let requestId: string; // (default to undefined)
|
|
1605
|
+
|
|
1606
|
+
const { status, data } = await apiInstance.rSVPV2ControllerProposeTime(
|
|
1607
|
+
requestId
|
|
1608
|
+
);
|
|
1609
|
+
```
|
|
1610
|
+
|
|
1611
|
+
### Parameters
|
|
1612
|
+
|
|
1613
|
+
|Name | Type | Description | Notes|
|
|
1614
|
+
|------------- | ------------- | ------------- | -------------|
|
|
1615
|
+
| **requestId** | [**string**] | | defaults to undefined|
|
|
1616
|
+
|
|
1617
|
+
|
|
1618
|
+
### Return type
|
|
1619
|
+
|
|
1620
|
+
void (empty response body)
|
|
1621
|
+
|
|
1622
|
+
### Authorization
|
|
1623
|
+
|
|
1624
|
+
[bearer](../README.md#bearer)
|
|
1625
|
+
|
|
1626
|
+
### HTTP request headers
|
|
1627
|
+
|
|
1628
|
+
- **Content-Type**: Not defined
|
|
1629
|
+
- **Accept**: Not defined
|
|
1630
|
+
|
|
1631
|
+
|
|
1632
|
+
### HTTP response details
|
|
1633
|
+
| Status code | Description | Response headers |
|
|
1634
|
+
|-------------|-------------|------------------|
|
|
1635
|
+
|**200** | Propose a new date & time for join request | - |
|
|
1636
|
+
|
|
1637
|
+
[[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)
|
|
1638
|
+
|
|
1639
|
+
# **rSVPV2ControllerRejectProposal**
|
|
1640
|
+
> rSVPV2ControllerRejectProposal()
|
|
1641
|
+
|
|
1642
|
+
|
|
1643
|
+
### Example
|
|
1644
|
+
|
|
1645
|
+
```typescript
|
|
1646
|
+
import {
|
|
1647
|
+
RSVPV2Api,
|
|
1648
|
+
Configuration
|
|
1649
|
+
} from './api';
|
|
1650
|
+
|
|
1651
|
+
const configuration = new Configuration();
|
|
1652
|
+
const apiInstance = new RSVPV2Api(configuration);
|
|
1653
|
+
|
|
1654
|
+
let requestId: string; // (default to undefined)
|
|
1655
|
+
|
|
1656
|
+
const { status, data } = await apiInstance.rSVPV2ControllerRejectProposal(
|
|
1657
|
+
requestId
|
|
1658
|
+
);
|
|
1659
|
+
```
|
|
1660
|
+
|
|
1661
|
+
### Parameters
|
|
1662
|
+
|
|
1663
|
+
|Name | Type | Description | Notes|
|
|
1664
|
+
|------------- | ------------- | ------------- | -------------|
|
|
1665
|
+
| **requestId** | [**string**] | | defaults to undefined|
|
|
1666
|
+
|
|
1667
|
+
|
|
1668
|
+
### Return type
|
|
1669
|
+
|
|
1670
|
+
void (empty response body)
|
|
1671
|
+
|
|
1672
|
+
### Authorization
|
|
1673
|
+
|
|
1674
|
+
[bearer](../README.md#bearer)
|
|
1675
|
+
|
|
1676
|
+
### HTTP request headers
|
|
1677
|
+
|
|
1678
|
+
- **Content-Type**: Not defined
|
|
1679
|
+
- **Accept**: Not defined
|
|
1680
|
+
|
|
1681
|
+
|
|
1682
|
+
### HTTP response details
|
|
1683
|
+
| Status code | Description | Response headers |
|
|
1684
|
+
|-------------|-------------|------------------|
|
|
1685
|
+
|**200** | Reject proposal for a new date & time | - |
|
|
1686
|
+
|
|
1687
|
+
[[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)
|
|
1688
|
+
|
|
1271
1689
|
# **rSVPV2ControllerReminderEventCalendar**
|
|
1272
1690
|
> rSVPV2ControllerReminderEventCalendar()
|
|
1273
1691
|
|
|
@@ -1318,6 +1736,60 @@ No authorization required
|
|
|
1318
1736
|
|
|
1319
1737
|
[[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)
|
|
1320
1738
|
|
|
1739
|
+
# **rSVPV2ControllerRequestToJoin**
|
|
1740
|
+
> rSVPV2ControllerRequestToJoin(joinRSVPEventDTO)
|
|
1741
|
+
|
|
1742
|
+
|
|
1743
|
+
### Example
|
|
1744
|
+
|
|
1745
|
+
```typescript
|
|
1746
|
+
import {
|
|
1747
|
+
RSVPV2Api,
|
|
1748
|
+
Configuration,
|
|
1749
|
+
JoinRSVPEventDTO
|
|
1750
|
+
} from './api';
|
|
1751
|
+
|
|
1752
|
+
const configuration = new Configuration();
|
|
1753
|
+
const apiInstance = new RSVPV2Api(configuration);
|
|
1754
|
+
|
|
1755
|
+
let id: string; // (default to undefined)
|
|
1756
|
+
let joinRSVPEventDTO: JoinRSVPEventDTO; //
|
|
1757
|
+
|
|
1758
|
+
const { status, data } = await apiInstance.rSVPV2ControllerRequestToJoin(
|
|
1759
|
+
id,
|
|
1760
|
+
joinRSVPEventDTO
|
|
1761
|
+
);
|
|
1762
|
+
```
|
|
1763
|
+
|
|
1764
|
+
### Parameters
|
|
1765
|
+
|
|
1766
|
+
|Name | Type | Description | Notes|
|
|
1767
|
+
|------------- | ------------- | ------------- | -------------|
|
|
1768
|
+
| **joinRSVPEventDTO** | **JoinRSVPEventDTO**| | |
|
|
1769
|
+
| **id** | [**string**] | | defaults to undefined|
|
|
1770
|
+
|
|
1771
|
+
|
|
1772
|
+
### Return type
|
|
1773
|
+
|
|
1774
|
+
void (empty response body)
|
|
1775
|
+
|
|
1776
|
+
### Authorization
|
|
1777
|
+
|
|
1778
|
+
[bearer](../README.md#bearer)
|
|
1779
|
+
|
|
1780
|
+
### HTTP request headers
|
|
1781
|
+
|
|
1782
|
+
- **Content-Type**: application/json
|
|
1783
|
+
- **Accept**: Not defined
|
|
1784
|
+
|
|
1785
|
+
|
|
1786
|
+
### HTTP response details
|
|
1787
|
+
| Status code | Description | Response headers |
|
|
1788
|
+
|-------------|-------------|------------------|
|
|
1789
|
+
|**201** | Submit request to join an approval-required event | - |
|
|
1790
|
+
|
|
1791
|
+
[[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)
|
|
1792
|
+
|
|
1321
1793
|
# **rSVPV2ControllerRsvpFavorites**
|
|
1322
1794
|
> RSVPEventFavoritedDTO rSVPV2ControllerRsvpFavorites(rSVPEventFavoriteDTO)
|
|
1323
1795
|
|
|
@@ -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-07-
|
|
8
|
+
**date** | **string** | The start date of the booking | [default to 2026-07-07T15:31:46+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]
|
|
@@ -44,6 +44,7 @@ Name | Type | Description | Notes
|
|
|
44
44
|
**hostBy** | **string** | | [optional] [default to undefined]
|
|
45
45
|
**hostImage** | **string** | | [optional] [default to undefined]
|
|
46
46
|
**emailTemplate** | **string** | | [optional] [default to undefined]
|
|
47
|
+
**requireApproval** | **boolean** | | [optional] [default to undefined]
|
|
47
48
|
|
|
48
49
|
## Example
|
|
49
50
|
|
|
@@ -90,6 +91,7 @@ const instance: UpdateRSVPEventV2DTO = {
|
|
|
90
91
|
hostBy,
|
|
91
92
|
hostImage,
|
|
92
93
|
emailTemplate,
|
|
94
|
+
requireApproval,
|
|
93
95
|
};
|
|
94
96
|
```
|
|
95
97
|
|
|
@@ -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-07-
|
|
9
|
-
**endDate** | **string** | The end date of the waitlist | [default to 2026-07-
|
|
8
|
+
**startDate** | **string** | The start date of the waitlist | [default to 2026-07-07T15:31:46+05:30]
|
|
9
|
+
**endDate** | **string** | The end date of the waitlist | [default to 2026-07-07T16:31:46+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]
|