@gooday_corp/gooday-api-client 4.5.87 → 4.5.96

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.
@@ -0,0 +1,559 @@
1
+ # RSVPV2Api
2
+
3
+ All URIs are relative to *http://localhost:8080*
4
+
5
+ |Method | HTTP request | Description|
6
+ |------------- | ------------- | -------------|
7
+ |[**rSVPV2ControllerConfirmPayment**](#rsvpv2controllerconfirmpayment) | **POST** /v1/rsvp/v2/attendees/payment/confirm | |
8
+ |[**rSVPV2ControllerCreateEvent**](#rsvpv2controllercreateevent) | **POST** /v1/rsvp/v2/events | |
9
+ |[**rSVPV2ControllerGetAttendees**](#rsvpv2controllergetattendees) | **GET** /v1/rsvp/v2/events/{id}/attendees | |
10
+ |[**rSVPV2ControllerGetEventById**](#rsvpv2controllergeteventbyid) | **GET** /v1/rsvp/v2/events/{id} | |
11
+ |[**rSVPV2ControllerGetHostEvents**](#rsvpv2controllergethostevents) | **GET** /v1/rsvp/v2/host/events | |
12
+ |[**rSVPV2ControllerGetMyEvents**](#rsvpv2controllergetmyevents) | **GET** /v1/rsvp/v2/my/events | |
13
+ |[**rSVPV2ControllerInvite**](#rsvpv2controllerinvite) | **POST** /v1/rsvp/v2/events/{id}/invite | |
14
+ |[**rSVPV2ControllerJoinEvent**](#rsvpv2controllerjoinevent) | **POST** /v1/rsvp/v2/events/{id}/join | |
15
+ |[**rSVPV2ControllerSetupPayment**](#rsvpv2controllersetuppayment) | **POST** /v1/rsvp/v2/attendees/payment/setup | |
16
+ |[**rSVPV2ControllerUpdateStatus**](#rsvpv2controllerupdatestatus) | **PUT** /v1/rsvp/v2/attendees/{id}/status | |
17
+
18
+ # **rSVPV2ControllerConfirmPayment**
19
+ > rSVPV2ControllerConfirmPayment(confirmRSVPV2PaymentDTO)
20
+
21
+
22
+ ### Example
23
+
24
+ ```typescript
25
+ import {
26
+ RSVPV2Api,
27
+ Configuration,
28
+ ConfirmRSVPV2PaymentDTO
29
+ } from './api';
30
+
31
+ const configuration = new Configuration();
32
+ const apiInstance = new RSVPV2Api(configuration);
33
+
34
+ let confirmRSVPV2PaymentDTO: ConfirmRSVPV2PaymentDTO; //
35
+
36
+ const { status, data } = await apiInstance.rSVPV2ControllerConfirmPayment(
37
+ confirmRSVPV2PaymentDTO
38
+ );
39
+ ```
40
+
41
+ ### Parameters
42
+
43
+ |Name | Type | Description | Notes|
44
+ |------------- | ------------- | ------------- | -------------|
45
+ | **confirmRSVPV2PaymentDTO** | **ConfirmRSVPV2PaymentDTO**| | |
46
+
47
+
48
+ ### Return type
49
+
50
+ void (empty response body)
51
+
52
+ ### Authorization
53
+
54
+ No authorization required
55
+
56
+ ### HTTP request headers
57
+
58
+ - **Content-Type**: application/json
59
+ - **Accept**: Not defined
60
+
61
+
62
+ ### HTTP response details
63
+ | Status code | Description | Response headers |
64
+ |-------------|-------------|------------------|
65
+ |**200** | Confirm payment success for an entire group | - |
66
+
67
+ [[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)
68
+
69
+ # **rSVPV2ControllerCreateEvent**
70
+ > rSVPV2ControllerCreateEvent(createRSVPEventV2DTO)
71
+
72
+
73
+ ### Example
74
+
75
+ ```typescript
76
+ import {
77
+ RSVPV2Api,
78
+ Configuration,
79
+ CreateRSVPEventV2DTO
80
+ } from './api';
81
+
82
+ const configuration = new Configuration();
83
+ const apiInstance = new RSVPV2Api(configuration);
84
+
85
+ let createRSVPEventV2DTO: CreateRSVPEventV2DTO; //
86
+
87
+ const { status, data } = await apiInstance.rSVPV2ControllerCreateEvent(
88
+ createRSVPEventV2DTO
89
+ );
90
+ ```
91
+
92
+ ### Parameters
93
+
94
+ |Name | Type | Description | Notes|
95
+ |------------- | ------------- | ------------- | -------------|
96
+ | **createRSVPEventV2DTO** | **CreateRSVPEventV2DTO**| | |
97
+
98
+
99
+ ### Return type
100
+
101
+ void (empty response body)
102
+
103
+ ### Authorization
104
+
105
+ No authorization required
106
+
107
+ ### HTTP request headers
108
+
109
+ - **Content-Type**: application/json
110
+ - **Accept**: Not defined
111
+
112
+
113
+ ### HTTP response details
114
+ | Status code | Description | Response headers |
115
+ |-------------|-------------|------------------|
116
+ |**201** | Create a new RSVP event (public or private) | - |
117
+
118
+ [[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)
119
+
120
+ # **rSVPV2ControllerGetAttendees**
121
+ > rSVPV2ControllerGetAttendees()
122
+
123
+
124
+ ### Example
125
+
126
+ ```typescript
127
+ import {
128
+ RSVPV2Api,
129
+ Configuration
130
+ } from './api';
131
+
132
+ const configuration = new Configuration();
133
+ const apiInstance = new RSVPV2Api(configuration);
134
+
135
+ let id: string; // (default to undefined)
136
+ let page: number; // (optional) (default to undefined)
137
+ let pageSize: number; // (optional) (default to undefined)
138
+ let isInvited: boolean; // (optional) (default to undefined)
139
+
140
+ const { status, data } = await apiInstance.rSVPV2ControllerGetAttendees(
141
+ id,
142
+ page,
143
+ pageSize,
144
+ isInvited
145
+ );
146
+ ```
147
+
148
+ ### Parameters
149
+
150
+ |Name | Type | Description | Notes|
151
+ |------------- | ------------- | ------------- | -------------|
152
+ | **id** | [**string**] | | defaults to undefined|
153
+ | **page** | [**number**] | | (optional) defaults to undefined|
154
+ | **pageSize** | [**number**] | | (optional) defaults to undefined|
155
+ | **isInvited** | [**boolean**] | | (optional) defaults to undefined|
156
+
157
+
158
+ ### Return type
159
+
160
+ void (empty response body)
161
+
162
+ ### Authorization
163
+
164
+ No authorization required
165
+
166
+ ### HTTP request headers
167
+
168
+ - **Content-Type**: Not defined
169
+ - **Accept**: Not defined
170
+
171
+
172
+ ### HTTP response details
173
+ | Status code | Description | Response headers |
174
+ |-------------|-------------|------------------|
175
+ |**200** | Get list of attendees (scalable with pagination) | - |
176
+
177
+ [[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)
178
+
179
+ # **rSVPV2ControllerGetEventById**
180
+ > rSVPV2ControllerGetEventById()
181
+
182
+
183
+ ### Example
184
+
185
+ ```typescript
186
+ import {
187
+ RSVPV2Api,
188
+ Configuration
189
+ } from './api';
190
+
191
+ const configuration = new Configuration();
192
+ const apiInstance = new RSVPV2Api(configuration);
193
+
194
+ let id: string; // (default to undefined)
195
+
196
+ const { status, data } = await apiInstance.rSVPV2ControllerGetEventById(
197
+ id
198
+ );
199
+ ```
200
+
201
+ ### Parameters
202
+
203
+ |Name | Type | Description | Notes|
204
+ |------------- | ------------- | ------------- | -------------|
205
+ | **id** | [**string**] | | defaults to undefined|
206
+
207
+
208
+ ### Return type
209
+
210
+ void (empty response body)
211
+
212
+ ### Authorization
213
+
214
+ No authorization required
215
+
216
+ ### HTTP request headers
217
+
218
+ - **Content-Type**: Not defined
219
+ - **Accept**: Not defined
220
+
221
+
222
+ ### HTTP response details
223
+ | Status code | Description | Response headers |
224
+ |-------------|-------------|------------------|
225
+ |**200** | Get event details by ID with attendee summary | - |
226
+
227
+ [[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)
228
+
229
+ # **rSVPV2ControllerGetHostEvents**
230
+ > rSVPV2ControllerGetHostEvents()
231
+
232
+
233
+ ### Example
234
+
235
+ ```typescript
236
+ import {
237
+ RSVPV2Api,
238
+ Configuration
239
+ } from './api';
240
+
241
+ const configuration = new Configuration();
242
+ const apiInstance = new RSVPV2Api(configuration);
243
+
244
+ let page: number; // (default to undefined)
245
+ let pageSize: number; // (default to undefined)
246
+ let search: string; // (optional) (default to undefined)
247
+ let venue: string; // (optional) (default to undefined)
248
+
249
+ const { status, data } = await apiInstance.rSVPV2ControllerGetHostEvents(
250
+ page,
251
+ pageSize,
252
+ search,
253
+ venue
254
+ );
255
+ ```
256
+
257
+ ### Parameters
258
+
259
+ |Name | Type | Description | Notes|
260
+ |------------- | ------------- | ------------- | -------------|
261
+ | **page** | [**number**] | | defaults to undefined|
262
+ | **pageSize** | [**number**] | | defaults to undefined|
263
+ | **search** | [**string**] | | (optional) defaults to undefined|
264
+ | **venue** | [**string**] | | (optional) defaults to undefined|
265
+
266
+
267
+ ### Return type
268
+
269
+ void (empty response body)
270
+
271
+ ### Authorization
272
+
273
+ [bearer](../README.md#bearer)
274
+
275
+ ### HTTP request headers
276
+
277
+ - **Content-Type**: Not defined
278
+ - **Accept**: Not defined
279
+
280
+
281
+ ### HTTP response details
282
+ | Status code | Description | Response headers |
283
+ |-------------|-------------|------------------|
284
+ |**200** | Get list of events where the user is a host | - |
285
+
286
+ [[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)
287
+
288
+ # **rSVPV2ControllerGetMyEvents**
289
+ > rSVPV2ControllerGetMyEvents()
290
+
291
+
292
+ ### Example
293
+
294
+ ```typescript
295
+ import {
296
+ RSVPV2Api,
297
+ Configuration
298
+ } from './api';
299
+
300
+ const configuration = new Configuration();
301
+ const apiInstance = new RSVPV2Api(configuration);
302
+
303
+ let page: number; // (default to undefined)
304
+ let pageSize: number; // (default to undefined)
305
+ let search: string; // (optional) (default to undefined)
306
+ let venue: string; // (optional) (default to undefined)
307
+
308
+ const { status, data } = await apiInstance.rSVPV2ControllerGetMyEvents(
309
+ page,
310
+ pageSize,
311
+ search,
312
+ venue
313
+ );
314
+ ```
315
+
316
+ ### Parameters
317
+
318
+ |Name | Type | Description | Notes|
319
+ |------------- | ------------- | ------------- | -------------|
320
+ | **page** | [**number**] | | defaults to undefined|
321
+ | **pageSize** | [**number**] | | defaults to undefined|
322
+ | **search** | [**string**] | | (optional) defaults to undefined|
323
+ | **venue** | [**string**] | | (optional) defaults to undefined|
324
+
325
+
326
+ ### Return type
327
+
328
+ void (empty response body)
329
+
330
+ ### Authorization
331
+
332
+ [bearer](../README.md#bearer)
333
+
334
+ ### HTTP request headers
335
+
336
+ - **Content-Type**: Not defined
337
+ - **Accept**: Not defined
338
+
339
+
340
+ ### HTTP response details
341
+ | Status code | Description | Response headers |
342
+ |-------------|-------------|------------------|
343
+ |**200** | Get list of events hosted by OR joined by the user | - |
344
+
345
+ [[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)
346
+
347
+ # **rSVPV2ControllerInvite**
348
+ > rSVPV2ControllerInvite(inviteRSVPArrayDTO)
349
+
350
+
351
+ ### Example
352
+
353
+ ```typescript
354
+ import {
355
+ RSVPV2Api,
356
+ Configuration,
357
+ InviteRSVPArrayDTO
358
+ } from './api';
359
+
360
+ const configuration = new Configuration();
361
+ const apiInstance = new RSVPV2Api(configuration);
362
+
363
+ let id: string; // (default to undefined)
364
+ let inviteRSVPArrayDTO: InviteRSVPArrayDTO; //
365
+
366
+ const { status, data } = await apiInstance.rSVPV2ControllerInvite(
367
+ id,
368
+ inviteRSVPArrayDTO
369
+ );
370
+ ```
371
+
372
+ ### Parameters
373
+
374
+ |Name | Type | Description | Notes|
375
+ |------------- | ------------- | ------------- | -------------|
376
+ | **inviteRSVPArrayDTO** | **InviteRSVPArrayDTO**| | |
377
+ | **id** | [**string**] | | defaults to undefined|
378
+
379
+
380
+ ### Return type
381
+
382
+ void (empty response body)
383
+
384
+ ### Authorization
385
+
386
+ [bearer](../README.md#bearer)
387
+
388
+ ### HTTP request headers
389
+
390
+ - **Content-Type**: application/json
391
+ - **Accept**: Not defined
392
+
393
+
394
+ ### HTTP response details
395
+ | Status code | Description | Response headers |
396
+ |-------------|-------------|------------------|
397
+ |**200** | Invite participants to an event | - |
398
+
399
+ [[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)
400
+
401
+ # **rSVPV2ControllerJoinEvent**
402
+ > rSVPV2ControllerJoinEvent(joinRSVPEventDTO)
403
+
404
+
405
+ ### Example
406
+
407
+ ```typescript
408
+ import {
409
+ RSVPV2Api,
410
+ Configuration,
411
+ JoinRSVPEventDTO
412
+ } from './api';
413
+
414
+ const configuration = new Configuration();
415
+ const apiInstance = new RSVPV2Api(configuration);
416
+
417
+ let id: string; // (default to undefined)
418
+ let joinRSVPEventDTO: JoinRSVPEventDTO; //
419
+
420
+ const { status, data } = await apiInstance.rSVPV2ControllerJoinEvent(
421
+ id,
422
+ joinRSVPEventDTO
423
+ );
424
+ ```
425
+
426
+ ### Parameters
427
+
428
+ |Name | Type | Description | Notes|
429
+ |------------- | ------------- | ------------- | -------------|
430
+ | **joinRSVPEventDTO** | **JoinRSVPEventDTO**| | |
431
+ | **id** | [**string**] | | defaults to undefined|
432
+
433
+
434
+ ### Return type
435
+
436
+ void (empty response body)
437
+
438
+ ### Authorization
439
+
440
+ [bearer](../README.md#bearer)
441
+
442
+ ### HTTP request headers
443
+
444
+ - **Content-Type**: application/json
445
+ - **Accept**: Not defined
446
+
447
+
448
+ ### HTTP response details
449
+ | Status code | Description | Response headers |
450
+ |-------------|-------------|------------------|
451
+ |**200** | Join/RSVP to an event | - |
452
+
453
+ [[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)
454
+
455
+ # **rSVPV2ControllerSetupPayment**
456
+ > rSVPV2ControllerSetupPayment(setupRSVPV2PaymentDTO)
457
+
458
+
459
+ ### Example
460
+
461
+ ```typescript
462
+ import {
463
+ RSVPV2Api,
464
+ Configuration,
465
+ SetupRSVPV2PaymentDTO
466
+ } from './api';
467
+
468
+ const configuration = new Configuration();
469
+ const apiInstance = new RSVPV2Api(configuration);
470
+
471
+ let setupRSVPV2PaymentDTO: SetupRSVPV2PaymentDTO; //
472
+
473
+ const { status, data } = await apiInstance.rSVPV2ControllerSetupPayment(
474
+ setupRSVPV2PaymentDTO
475
+ );
476
+ ```
477
+
478
+ ### Parameters
479
+
480
+ |Name | Type | Description | Notes|
481
+ |------------- | ------------- | ------------- | -------------|
482
+ | **setupRSVPV2PaymentDTO** | **SetupRSVPV2PaymentDTO**| | |
483
+
484
+
485
+ ### Return type
486
+
487
+ void (empty response body)
488
+
489
+ ### Authorization
490
+
491
+ No authorization required
492
+
493
+ ### HTTP request headers
494
+
495
+ - **Content-Type**: application/json
496
+ - **Accept**: Not defined
497
+
498
+
499
+ ### HTTP response details
500
+ | Status code | Description | Response headers |
501
+ |-------------|-------------|------------------|
502
+ |**200** | Setup payment intent for multiple attendees at once | - |
503
+
504
+ [[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)
505
+
506
+ # **rSVPV2ControllerUpdateStatus**
507
+ > rSVPV2ControllerUpdateStatus(updateRSVPStatusDTO)
508
+
509
+
510
+ ### Example
511
+
512
+ ```typescript
513
+ import {
514
+ RSVPV2Api,
515
+ Configuration,
516
+ UpdateRSVPStatusDTO
517
+ } from './api';
518
+
519
+ const configuration = new Configuration();
520
+ const apiInstance = new RSVPV2Api(configuration);
521
+
522
+ let id: string; // (default to undefined)
523
+ let updateRSVPStatusDTO: UpdateRSVPStatusDTO; //
524
+
525
+ const { status, data } = await apiInstance.rSVPV2ControllerUpdateStatus(
526
+ id,
527
+ updateRSVPStatusDTO
528
+ );
529
+ ```
530
+
531
+ ### Parameters
532
+
533
+ |Name | Type | Description | Notes|
534
+ |------------- | ------------- | ------------- | -------------|
535
+ | **updateRSVPStatusDTO** | **UpdateRSVPStatusDTO**| | |
536
+ | **id** | [**string**] | | defaults to undefined|
537
+
538
+
539
+ ### Return type
540
+
541
+ void (empty response body)
542
+
543
+ ### Authorization
544
+
545
+ [bearer](../README.md#bearer)
546
+
547
+ ### HTTP request headers
548
+
549
+ - **Content-Type**: application/json
550
+ - **Accept**: Not defined
551
+
552
+
553
+ ### HTTP response details
554
+ | Status code | Description | Response headers |
555
+ |-------------|-------------|------------------|
556
+ |**200** | Update your own status or manage attendees (if host) | - |
557
+
558
+ [[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)
559
+
@@ -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-04-03T05:22:11Z]
8
+ **date** | **string** | The start date of the booking | [default to 2026-04-09T06:57:23Z]
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)
@@ -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)
@@ -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-04-03T05:22:11Z]
9
- **endDate** | **string** | The end date of the waitlist | [default to 2026-04-03T06:22:11Z]
8
+ **startDate** | **string** | The start date of the waitlist | [default to 2026-04-09T06:57:23Z]
9
+ **endDate** | **string** | The end date of the waitlist | [default to 2026-04-09T07:57:23Z]
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.5.87",
3
+ "version": "4.5.96",
4
4
  "description": "API client for Gooday",
5
5
  "main": "index.ts",
6
6
  "scripts": {},