@gooday_corp/gooday-api-client 4.4.26 → 4.4.29

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.
@@ -20,6 +20,7 @@ All URIs are relative to *http://localhost:8080*
20
20
  |[**bookingControllerRegularBookingAvailability**](#bookingcontrollerregularbookingavailability) | **POST** /v1/booking/availability | |
21
21
  |[**bookingControllerRejectBookingInvite**](#bookingcontrollerrejectbookinginvite) | **POST** /v1/booking/reject | |
22
22
  |[**bookingControllerRescheduleBooking**](#bookingcontrollerreschedulebooking) | **PUT** /v1/booking/reschedule/{id} | |
23
+ |[**bookingControllerRevertBookingStatus**](#bookingcontrollerrevertbookingstatus) | **POST** /v1/booking/revert-booking-status | |
23
24
  |[**bookingControllerTrendingEvents**](#bookingcontrollertrendingevents) | **POST** /v1/booking/trending-events | |
24
25
  |[**bookingControllerUpdateBooking**](#bookingcontrollerupdatebooking) | **PUT** /v1/booking/{id} | |
25
26
 
@@ -833,6 +834,57 @@ const { status, data } = await apiInstance.bookingControllerRescheduleBooking(
833
834
  - **Accept**: application/json
834
835
 
835
836
 
837
+ ### HTTP response details
838
+ | Status code | Description | Response headers |
839
+ |-------------|-------------|------------------|
840
+ |**0** | | - |
841
+
842
+ [[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)
843
+
844
+ # **bookingControllerRevertBookingStatus**
845
+ > BookingRequestResponseDTO bookingControllerRevertBookingStatus(acceptBookingInvitePayload)
846
+
847
+
848
+ ### Example
849
+
850
+ ```typescript
851
+ import {
852
+ BookingApi,
853
+ Configuration,
854
+ AcceptBookingInvitePayload
855
+ } from './api';
856
+
857
+ const configuration = new Configuration();
858
+ const apiInstance = new BookingApi(configuration);
859
+
860
+ let acceptBookingInvitePayload: AcceptBookingInvitePayload; //
861
+
862
+ const { status, data } = await apiInstance.bookingControllerRevertBookingStatus(
863
+ acceptBookingInvitePayload
864
+ );
865
+ ```
866
+
867
+ ### Parameters
868
+
869
+ |Name | Type | Description | Notes|
870
+ |------------- | ------------- | ------------- | -------------|
871
+ | **acceptBookingInvitePayload** | **AcceptBookingInvitePayload**| | |
872
+
873
+
874
+ ### Return type
875
+
876
+ **BookingRequestResponseDTO**
877
+
878
+ ### Authorization
879
+
880
+ [bearer](../README.md#bearer)
881
+
882
+ ### HTTP request headers
883
+
884
+ - **Content-Type**: application/json
885
+ - **Accept**: application/json
886
+
887
+
836
888
  ### HTTP response details
837
889
  | Status code | Description | Response headers |
838
890
  |-------------|-------------|------------------|
@@ -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-11-25T18:48:09+05:30]
10
- **recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2025-11-25T18:48:09+05:30]
9
+ **date** | **string** | The start date of the booking | [default to 2025-12-03T16:41:14+05:30]
10
+ **recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2025-12-03T16:41:14+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-11-25T18:48:09+05:30]
10
- **endDate** | **string** | The start date of the booking | [default to 2025-11-25T18:48:09+05:30]
9
+ **startDate** | **string** | The start date of the booking | [default to 2025-12-03T16:41:14+05:30]
10
+ **endDate** | **string** | The start date of the booking | [default to 2025-12-03T16:41:14+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/EventsApi.md CHANGED
@@ -10,6 +10,7 @@ All URIs are relative to *http://localhost:8080*
10
10
  |[**eventControllerDeleteEvents**](#eventcontrollerdeleteevents) | **DELETE** /v1/event | |
11
11
  |[**eventControllerEventDetail**](#eventcontrollereventdetail) | **GET** /v1/event/{id} | |
12
12
  |[**eventControllerRejectEventInvite**](#eventcontrollerrejecteventinvite) | **POST** /v1/event/reject | |
13
+ |[**eventControllerRevertEventStatus**](#eventcontrollerreverteventstatus) | **PUT** /v1/event/revert-event-status | |
13
14
  |[**eventControllerUpdateEvents**](#eventcontrollerupdateevents) | **PUT** /v1/event | |
14
15
 
15
16
  # **eventControllerAcceptEventInvite**
@@ -317,6 +318,57 @@ const { status, data } = await apiInstance.eventControllerRejectEventInvite(
317
318
 
318
319
  [[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)
319
320
 
321
+ # **eventControllerRevertEventStatus**
322
+ > EventResponseDTO eventControllerRevertEventStatus(acceptEventInvitePayload)
323
+
324
+
325
+ ### Example
326
+
327
+ ```typescript
328
+ import {
329
+ EventsApi,
330
+ Configuration,
331
+ AcceptEventInvitePayload
332
+ } from './api';
333
+
334
+ const configuration = new Configuration();
335
+ const apiInstance = new EventsApi(configuration);
336
+
337
+ let acceptEventInvitePayload: AcceptEventInvitePayload; //
338
+
339
+ const { status, data } = await apiInstance.eventControllerRevertEventStatus(
340
+ acceptEventInvitePayload
341
+ );
342
+ ```
343
+
344
+ ### Parameters
345
+
346
+ |Name | Type | Description | Notes|
347
+ |------------- | ------------- | ------------- | -------------|
348
+ | **acceptEventInvitePayload** | **AcceptEventInvitePayload**| | |
349
+
350
+
351
+ ### Return type
352
+
353
+ **EventResponseDTO**
354
+
355
+ ### Authorization
356
+
357
+ [bearer](../README.md#bearer)
358
+
359
+ ### HTTP request headers
360
+
361
+ - **Content-Type**: application/json
362
+ - **Accept**: application/json
363
+
364
+
365
+ ### HTTP response details
366
+ | Status code | Description | Response headers |
367
+ |-------------|-------------|------------------|
368
+ |**200** | | - |
369
+
370
+ [[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)
371
+
320
372
  # **eventControllerUpdateEvents**
321
373
  > EventResponseDTO eventControllerUpdateEvents(createEventPayloadDTO)
322
374
 
@@ -0,0 +1,74 @@
1
+ # RSVPEvenPayloadDTO
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **startDate** | **string** | Start date of event | [default to undefined]
9
+ **endDate** | **string** | End date of event | [default to undefined]
10
+ **recurrenceEndDate** | **string** | Recurrence End date of event | [default to undefined]
11
+ **from** | **string** | Start hour of an event | [default to undefined]
12
+ **to** | **string** | End hour of an event | [default to undefined]
13
+ **repeat** | **string** | | [default to undefined]
14
+ **byDay** | **string** | | [optional] [default to undefined]
15
+ **byMonthDay** | **string** | | [optional] [default to undefined]
16
+ **byMonth** | **string** | | [optional] [default to undefined]
17
+ **repeatBy** | **string** | | [optional] [default to undefined]
18
+ **title** | **string** | Event name | [default to undefined]
19
+ **price** | **number** | | [default to undefined]
20
+ **description** | **string** | | [default to undefined]
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]
25
+ **tags** | **Array<string>** | | [default to undefined]
26
+ **hideLocation** | **boolean** | | [default to undefined]
27
+ **hostBy** | **string** | | [default to undefined]
28
+ **hosImage** | **string** | | [default to undefined]
29
+ **photo** | **string** | | [default to undefined]
30
+ **timezone** | **string** | | [default to undefined]
31
+ **category** | **string** | | [default to undefined]
32
+ **externalTicketing** | **string** | | [optional] [default to undefined]
33
+ **otherLink** | **string** | | [optional] [default to undefined]
34
+ **location** | [**RSVPEventLocationDTO**](RSVPEventLocationDTO.md) | | [optional] [default to undefined]
35
+ **discounts** | [**Array<Discount>**](Discount.md) | | [optional] [default to undefined]
36
+
37
+ ## Example
38
+
39
+ ```typescript
40
+ import { RSVPEvenPayloadDTO } from './api';
41
+
42
+ const instance: RSVPEvenPayloadDTO = {
43
+ startDate,
44
+ endDate,
45
+ recurrenceEndDate,
46
+ from,
47
+ to,
48
+ repeat,
49
+ byDay,
50
+ byMonthDay,
51
+ byMonth,
52
+ repeatBy,
53
+ title,
54
+ price,
55
+ description,
56
+ capacity,
57
+ userId,
58
+ business,
59
+ venue,
60
+ tags,
61
+ hideLocation,
62
+ hostBy,
63
+ hosImage,
64
+ photo,
65
+ timezone,
66
+ category,
67
+ externalTicketing,
68
+ otherLink,
69
+ location,
70
+ discounts,
71
+ };
72
+ ```
73
+
74
+ [[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,225 @@
1
+ # RSVPEventApi
2
+
3
+ All URIs are relative to *http://localhost:8080*
4
+
5
+ |Method | HTTP request | Description|
6
+ |------------- | ------------- | -------------|
7
+ |[**searchControllerAddRSVPEvent**](#searchcontrolleraddrsvpevent) | **POST** /v1/rsvp | |
8
+ |[**searchControllerRsvpEventById**](#searchcontrollerrsvpeventbyid) | **GET** /v1/rsvp/{id} | |
9
+ |[**searchControllerRsvpEvents**](#searchcontrollerrsvpevents) | **GET** /v1/rsvp | |
10
+ |[**searchControllerUpdateRSVPEvent**](#searchcontrollerupdatersvpevent) | **PUT** /v1/rsvp/{id} | |
11
+
12
+ # **searchControllerAddRSVPEvent**
13
+ > RSVPEventDTO searchControllerAddRSVPEvent(rSVPEvenPayloadDTO)
14
+
15
+
16
+ ### Example
17
+
18
+ ```typescript
19
+ import {
20
+ RSVPEventApi,
21
+ Configuration,
22
+ RSVPEvenPayloadDTO
23
+ } from './api';
24
+
25
+ const configuration = new Configuration();
26
+ const apiInstance = new RSVPEventApi(configuration);
27
+
28
+ let rSVPEvenPayloadDTO: RSVPEvenPayloadDTO; //
29
+
30
+ const { status, data } = await apiInstance.searchControllerAddRSVPEvent(
31
+ rSVPEvenPayloadDTO
32
+ );
33
+ ```
34
+
35
+ ### Parameters
36
+
37
+ |Name | Type | Description | Notes|
38
+ |------------- | ------------- | ------------- | -------------|
39
+ | **rSVPEvenPayloadDTO** | **RSVPEvenPayloadDTO**| | |
40
+
41
+
42
+ ### Return type
43
+
44
+ **RSVPEventDTO**
45
+
46
+ ### Authorization
47
+
48
+ No authorization required
49
+
50
+ ### HTTP request headers
51
+
52
+ - **Content-Type**: application/json
53
+ - **Accept**: application/json
54
+
55
+
56
+ ### HTTP response details
57
+ | Status code | Description | Response headers |
58
+ |-------------|-------------|------------------|
59
+ |**200** | | - |
60
+
61
+ [[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)
62
+
63
+ # **searchControllerRsvpEventById**
64
+ > RSVPEventDTO searchControllerRsvpEventById()
65
+
66
+
67
+ ### Example
68
+
69
+ ```typescript
70
+ import {
71
+ RSVPEventApi,
72
+ Configuration
73
+ } from './api';
74
+
75
+ const configuration = new Configuration();
76
+ const apiInstance = new RSVPEventApi(configuration);
77
+
78
+ let id: string; // (default to undefined)
79
+
80
+ const { status, data } = await apiInstance.searchControllerRsvpEventById(
81
+ id
82
+ );
83
+ ```
84
+
85
+ ### Parameters
86
+
87
+ |Name | Type | Description | Notes|
88
+ |------------- | ------------- | ------------- | -------------|
89
+ | **id** | [**string**] | | defaults to undefined|
90
+
91
+
92
+ ### Return type
93
+
94
+ **RSVPEventDTO**
95
+
96
+ ### Authorization
97
+
98
+ No authorization required
99
+
100
+ ### HTTP request headers
101
+
102
+ - **Content-Type**: Not defined
103
+ - **Accept**: application/json
104
+
105
+
106
+ ### HTTP response details
107
+ | Status code | Description | Response headers |
108
+ |-------------|-------------|------------------|
109
+ |**200** | | - |
110
+
111
+ [[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)
112
+
113
+ # **searchControllerRsvpEvents**
114
+ > RSVPEventResponseDTO searchControllerRsvpEvents()
115
+
116
+
117
+ ### Example
118
+
119
+ ```typescript
120
+ import {
121
+ RSVPEventApi,
122
+ Configuration
123
+ } from './api';
124
+
125
+ const configuration = new Configuration();
126
+ const apiInstance = new RSVPEventApi(configuration);
127
+
128
+ let page: number; // (default to undefined)
129
+ let pageSize: number; // (default to undefined)
130
+ let search: string; // (optional) (default to undefined)
131
+ let venue: string; // (optional) (default to undefined)
132
+
133
+ const { status, data } = await apiInstance.searchControllerRsvpEvents(
134
+ page,
135
+ pageSize,
136
+ search,
137
+ venue
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
+ | **search** | [**string**] | | (optional) defaults to undefined|
148
+ | **venue** | [**string**] | | (optional) defaults to undefined|
149
+
150
+
151
+ ### Return type
152
+
153
+ **RSVPEventResponseDTO**
154
+
155
+ ### Authorization
156
+
157
+ No authorization required
158
+
159
+ ### HTTP request headers
160
+
161
+ - **Content-Type**: Not defined
162
+ - **Accept**: application/json
163
+
164
+
165
+ ### HTTP response details
166
+ | Status code | Description | Response headers |
167
+ |-------------|-------------|------------------|
168
+ |**200** | | - |
169
+
170
+ [[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)
171
+
172
+ # **searchControllerUpdateRSVPEvent**
173
+ > RSVPEventDTO searchControllerUpdateRSVPEvent(rSVPEvenPayloadDTO)
174
+
175
+
176
+ ### Example
177
+
178
+ ```typescript
179
+ import {
180
+ RSVPEventApi,
181
+ Configuration,
182
+ RSVPEvenPayloadDTO
183
+ } from './api';
184
+
185
+ const configuration = new Configuration();
186
+ const apiInstance = new RSVPEventApi(configuration);
187
+
188
+ let id: string; // (default to undefined)
189
+ let rSVPEvenPayloadDTO: RSVPEvenPayloadDTO; //
190
+
191
+ const { status, data } = await apiInstance.searchControllerUpdateRSVPEvent(
192
+ id,
193
+ rSVPEvenPayloadDTO
194
+ );
195
+ ```
196
+
197
+ ### Parameters
198
+
199
+ |Name | Type | Description | Notes|
200
+ |------------- | ------------- | ------------- | -------------|
201
+ | **rSVPEvenPayloadDTO** | **RSVPEvenPayloadDTO**| | |
202
+ | **id** | [**string**] | | defaults to undefined|
203
+
204
+
205
+ ### Return type
206
+
207
+ **RSVPEventDTO**
208
+
209
+ ### Authorization
210
+
211
+ No authorization required
212
+
213
+ ### HTTP request headers
214
+
215
+ - **Content-Type**: application/json
216
+ - **Accept**: application/json
217
+
218
+
219
+ ### HTTP response details
220
+ | Status code | Description | Response headers |
221
+ |-------------|-------------|------------------|
222
+ |**200** | | - |
223
+
224
+ [[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)
225
+
@@ -0,0 +1,22 @@
1
+ # RSVPEventDTO
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **statusCode** | **number** | statusCode | [default to undefined]
9
+ **data** | [**RSVPEventEntity**](RSVPEventEntity.md) | | [default to undefined]
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import { RSVPEventDTO } from './api';
15
+
16
+ const instance: RSVPEventDTO = {
17
+ statusCode,
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)
@@ -0,0 +1,78 @@
1
+ # RSVPEventEntity
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **isRecurring** | **boolean** | Is recurring event | [default to undefined]
9
+ **duration** | **number** | Duration in minutes | [default to undefined]
10
+ **repeat** | **string** | Repeat interval for event | [default to undefined]
11
+ **startDate** | **string** | Start date of an event | [default to undefined]
12
+ **endDate** | **string** | End date of an event | [default to undefined]
13
+ **recurrenceEndDate** | **string** | Recurrence end date of an event | [default to undefined]
14
+ **pattern** | **string** | Recurrence pattern | [optional] [default to undefined]
15
+ **byDay** | **string** | | [optional] [default to undefined]
16
+ **byMonthDay** | **string** | | [optional] [default to undefined]
17
+ **byMonth** | **string** | | [optional] [default to undefined]
18
+ **repeatBy** | **string** | | [optional] [default to undefined]
19
+ **_id** | **string** | Unique identifier for the booking | [default to undefined]
20
+ **title** | **string** | Event name | [default to undefined]
21
+ **price** | **number** | | [default to undefined]
22
+ **description** | **string** | | [default to undefined]
23
+ **capacity** | **number** | | [default to undefined]
24
+ **userId** | [**UserEntity**](UserEntity.md) | user | [default to undefined]
25
+ **business** | [**BusinessEntity**](BusinessEntity.md) | Business | [default to undefined]
26
+ **venue** | [**BusinessVenueDetailsEntity**](BusinessVenueDetailsEntity.md) | Business venue | [default to undefined]
27
+ **tags** | **Array<string>** | | [default to undefined]
28
+ **hideLocation** | **boolean** | | [default to undefined]
29
+ **hostBy** | **string** | | [default to undefined]
30
+ **hostImage** | **string** | | [default to undefined]
31
+ **photo** | **string** | | [default to undefined]
32
+ **timezone** | **string** | | [default to undefined]
33
+ **type** | **string** | | [default to undefined]
34
+ **externalTicketing** | **string** | | [optional] [default to undefined]
35
+ **otherLink** | **string** | | [optional] [default to undefined]
36
+ **location** | [**RSVPEventLocationDTO**](RSVPEventLocationDTO.md) | | [optional] [default to undefined]
37
+ **discounts** | [**Array<Discount>**](Discount.md) | | [optional] [default to undefined]
38
+
39
+ ## Example
40
+
41
+ ```typescript
42
+ import { RSVPEventEntity } from './api';
43
+
44
+ const instance: RSVPEventEntity = {
45
+ isRecurring,
46
+ duration,
47
+ repeat,
48
+ startDate,
49
+ endDate,
50
+ recurrenceEndDate,
51
+ pattern,
52
+ byDay,
53
+ byMonthDay,
54
+ byMonth,
55
+ repeatBy,
56
+ _id,
57
+ title,
58
+ price,
59
+ description,
60
+ capacity,
61
+ userId,
62
+ business,
63
+ venue,
64
+ tags,
65
+ hideLocation,
66
+ hostBy,
67
+ hostImage,
68
+ photo,
69
+ timezone,
70
+ type,
71
+ externalTicketing,
72
+ otherLink,
73
+ location,
74
+ discounts,
75
+ };
76
+ ```
77
+
78
+ [[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,26 @@
1
+ # RSVPEventLocationDTO
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **type** | **string** | | [default to undefined]
9
+ **coordinates** | **Array<number>** | | [default to undefined]
10
+ **distance** | **string** | Optional distance from a reference point. | [optional] [default to undefined]
11
+ **meta** | [**RSVPEventMetaDTO**](RSVPEventMetaDTO.md) | Meta information about the location. | [default to undefined]
12
+
13
+ ## Example
14
+
15
+ ```typescript
16
+ import { RSVPEventLocationDTO } from './api';
17
+
18
+ const instance: RSVPEventLocationDTO = {
19
+ type,
20
+ coordinates,
21
+ distance,
22
+ meta,
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)
@@ -0,0 +1,22 @@
1
+ # RSVPEventMetaDTO
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **formattedAddress** | **string** | | [optional] [default to undefined]
9
+ **shortFormattedAddress** | **string** | | [default to undefined]
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import { RSVPEventMetaDTO } from './api';
15
+
16
+ const instance: RSVPEventMetaDTO = {
17
+ formattedAddress,
18
+ shortFormattedAddress,
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
+ # RSVPEventResponseDTO
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **statusCode** | **number** | statusCode | [default to undefined]
9
+ **data** | [**Array<RSVPEventEntity>**](RSVPEventEntity.md) | | [default to undefined]
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import { RSVPEventResponseDTO } from './api';
15
+
16
+ const instance: RSVPEventResponseDTO = {
17
+ statusCode,
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)
@@ -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-11-25T18:48:09+05:30]
8
+ **date** | **string** | The start date of the booking | [default to 2025-12-03T16:41:14+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-11-25T18:48:09+05:30]
9
- **endDate** | **string** | The end date of the waitlist | [default to 2025-11-25T19:48:09+05:30]
8
+ **startDate** | **string** | The start date of the waitlist | [default to 2025-12-03T16:41:14+05:30]
9
+ **endDate** | **string** | The end date of the waitlist | [default to 2025-12-03T17:41:14+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]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooday_corp/gooday-api-client",
3
- "version": "4.4.26",
3
+ "version": "4.4.29",
4
4
  "description": "API client for Gooday",
5
5
  "main": "index.ts",
6
6
  "scripts": {},