@gooday_corp/gooday-api-client 4.6.17 → 4.6.26

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/docs/RSVPV2Api.md CHANGED
@@ -12,10 +12,14 @@ All URIs are relative to *http://localhost:8080*
12
12
  |[**rSVPV2ControllerDeleteEventSuperAdmin**](#rsvpv2controllerdeleteeventsuperadmin) | **DELETE** /v1/rsvp/v2/super-admin/rsvp | |
13
13
  |[**rSVPV2ControllerDeleteRSVPFavorites**](#rsvpv2controllerdeletersvpfavorites) | **DELETE** /v1/rsvp/v2/event/unfavorite | |
14
14
  |[**rSVPV2ControllerFavoriteRSVPEventById**](#rsvpv2controllerfavoritersvpeventbyid) | **GET** /v1/rsvp/v2/favoriteId/{id} | |
15
+ |[**rSVPV2ControllerGetAssociatedEvents**](#rsvpv2controllergetassociatedevents) | **GET** /v1/rsvp/v2/associated-events | |
16
+ |[**rSVPV2ControllerGetAssociatedEventsCount**](#rsvpv2controllergetassociatedeventscount) | **GET** /v1/rsvp/v2/associated-events/count | |
15
17
  |[**rSVPV2ControllerGetAttendees**](#rsvpv2controllergetattendees) | **GET** /v1/rsvp/v2/events/{id}/attendees | |
18
+ |[**rSVPV2ControllerGetBlasts**](#rsvpv2controllergetblasts) | **GET** /v1/rsvp/v2/events/{id}/blasts | |
16
19
  |[**rSVPV2ControllerGetEventById**](#rsvpv2controllergeteventbyid) | **GET** /v1/rsvp/v2/events/{id} | |
17
20
  |[**rSVPV2ControllerGetEventsByBusiness**](#rsvpv2controllergeteventsbybusiness) | **GET** /v1/rsvp/v2/events/business/{businessId} | |
18
21
  |[**rSVPV2ControllerGetEventsByVenue**](#rsvpv2controllergeteventsbyvenue) | **GET** /v1/rsvp/v2/events/venue/{venueId} | |
22
+ |[**rSVPV2ControllerGetFavoriteRSVPEvents**](#rsvpv2controllergetfavoritersvpevents) | **GET** /v1/rsvp/v2/event/favorites | |
19
23
  |[**rSVPV2ControllerGetHostEvents**](#rsvpv2controllergethostevents) | **GET** /v1/rsvp/v2/host/events | |
20
24
  |[**rSVPV2ControllerGetMyEvents**](#rsvpv2controllergetmyevents) | **GET** /v1/rsvp/v2/my/events | |
21
25
  |[**rSVPV2ControllerGetNearbyPublicEvents**](#rsvpv2controllergetnearbypublicevents) | **GET** /v1/rsvp/v2/events/nearby | |
@@ -24,6 +28,7 @@ All URIs are relative to *http://localhost:8080*
24
28
  |[**rSVPV2ControllerJoinEvent**](#rsvpv2controllerjoinevent) | **POST** /v1/rsvp/v2/events/{id}/join | |
25
29
  |[**rSVPV2ControllerReminderEventCalendar**](#rsvpv2controllerremindereventcalendar) | **PUT** /v1/rsvp/v2/remindar/{id} | |
26
30
  |[**rSVPV2ControllerRsvpFavorites**](#rsvpv2controllerrsvpfavorites) | **POST** /v1/rsvp/v2/event/favorite | |
31
+ |[**rSVPV2ControllerSendBlast**](#rsvpv2controllersendblast) | **POST** /v1/rsvp/v2/events/{id}/blasts | |
27
32
  |[**rSVPV2ControllerSetupPayment**](#rsvpv2controllersetuppayment) | **POST** /v1/rsvp/v2/attendees/payment/setup | |
28
33
  |[**rSVPV2ControllerUpdateEvent**](#rsvpv2controllerupdateevent) | **PUT** /v1/rsvp/v2/events/{id} | |
29
34
  |[**rSVPV2ControllerUpdateStatus**](#rsvpv2controllerupdatestatus) | **PUT** /v1/rsvp/v2/attendees/{id}/status | |
@@ -435,6 +440,108 @@ const { status, data } = await apiInstance.rSVPV2ControllerFavoriteRSVPEventById
435
440
 
436
441
  [[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)
437
442
 
443
+ # **rSVPV2ControllerGetAssociatedEvents**
444
+ > rSVPV2ControllerGetAssociatedEvents()
445
+
446
+
447
+ ### Example
448
+
449
+ ```typescript
450
+ import {
451
+ RSVPV2Api,
452
+ Configuration
453
+ } from './api';
454
+
455
+ const configuration = new Configuration();
456
+ const apiInstance = new RSVPV2Api(configuration);
457
+
458
+ let page: number; // (default to undefined)
459
+ let pageSize: number; // (default to undefined)
460
+ let filter: 'upcoming' | 'past' | 'declined' | 'all'; // (optional) (default to undefined)
461
+ let search: string; // (optional) (default to undefined)
462
+
463
+ const { status, data } = await apiInstance.rSVPV2ControllerGetAssociatedEvents(
464
+ page,
465
+ pageSize,
466
+ filter,
467
+ search
468
+ );
469
+ ```
470
+
471
+ ### Parameters
472
+
473
+ |Name | Type | Description | Notes|
474
+ |------------- | ------------- | ------------- | -------------|
475
+ | **page** | [**number**] | | defaults to undefined|
476
+ | **pageSize** | [**number**] | | defaults to undefined|
477
+ | **filter** | [**&#39;upcoming&#39; | &#39;past&#39; | &#39;declined&#39; | &#39;all&#39;**]**Array<&#39;upcoming&#39; &#124; &#39;past&#39; &#124; &#39;declined&#39; &#124; &#39;all&#39;>** | | (optional) defaults to undefined|
478
+ | **search** | [**string**] | | (optional) defaults to undefined|
479
+
480
+
481
+ ### Return type
482
+
483
+ void (empty response body)
484
+
485
+ ### Authorization
486
+
487
+ [bearer](../README.md#bearer)
488
+
489
+ ### HTTP request headers
490
+
491
+ - **Content-Type**: Not defined
492
+ - **Accept**: Not defined
493
+
494
+
495
+ ### HTTP response details
496
+ | Status code | Description | Response headers |
497
+ |-------------|-------------|------------------|
498
+ |**200** | Get list of all events associated with the user | - |
499
+
500
+ [[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)
501
+
502
+ # **rSVPV2ControllerGetAssociatedEventsCount**
503
+ > rSVPV2ControllerGetAssociatedEventsCount()
504
+
505
+
506
+ ### Example
507
+
508
+ ```typescript
509
+ import {
510
+ RSVPV2Api,
511
+ Configuration
512
+ } from './api';
513
+
514
+ const configuration = new Configuration();
515
+ const apiInstance = new RSVPV2Api(configuration);
516
+
517
+ const { status, data } = await apiInstance.rSVPV2ControllerGetAssociatedEventsCount();
518
+ ```
519
+
520
+ ### Parameters
521
+ This endpoint does not have any parameters.
522
+
523
+
524
+ ### Return type
525
+
526
+ void (empty response body)
527
+
528
+ ### Authorization
529
+
530
+ [bearer](../README.md#bearer)
531
+
532
+ ### HTTP request headers
533
+
534
+ - **Content-Type**: Not defined
535
+ - **Accept**: Not defined
536
+
537
+
538
+ ### HTTP response details
539
+ | Status code | Description | Response headers |
540
+ |-------------|-------------|------------------|
541
+ |**200** | Get the counts of associated events by type | - |
542
+
543
+ [[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)
544
+
438
545
  # **rSVPV2ControllerGetAttendees**
439
546
  > rSVPV2ControllerGetAttendees()
440
547
 
@@ -494,6 +601,62 @@ No authorization required
494
601
 
495
602
  [[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)
496
603
 
604
+ # **rSVPV2ControllerGetBlasts**
605
+ > rSVPV2ControllerGetBlasts()
606
+
607
+
608
+ ### Example
609
+
610
+ ```typescript
611
+ import {
612
+ RSVPV2Api,
613
+ Configuration
614
+ } from './api';
615
+
616
+ const configuration = new Configuration();
617
+ const apiInstance = new RSVPV2Api(configuration);
618
+
619
+ let id: string; // (default to undefined)
620
+ let page: number; // (optional) (default to undefined)
621
+ let pageSize: number; // (optional) (default to undefined)
622
+
623
+ const { status, data } = await apiInstance.rSVPV2ControllerGetBlasts(
624
+ id,
625
+ page,
626
+ pageSize
627
+ );
628
+ ```
629
+
630
+ ### Parameters
631
+
632
+ |Name | Type | Description | Notes|
633
+ |------------- | ------------- | ------------- | -------------|
634
+ | **id** | [**string**] | | defaults to undefined|
635
+ | **page** | [**number**] | | (optional) defaults to undefined|
636
+ | **pageSize** | [**number**] | | (optional) defaults to undefined|
637
+
638
+
639
+ ### Return type
640
+
641
+ void (empty response body)
642
+
643
+ ### Authorization
644
+
645
+ [bearer](../README.md#bearer)
646
+
647
+ ### HTTP request headers
648
+
649
+ - **Content-Type**: Not defined
650
+ - **Accept**: Not defined
651
+
652
+
653
+ ### HTTP response details
654
+ | Status code | Description | Response headers |
655
+ |-------------|-------------|------------------|
656
+ |**200** | Get blast message history | - |
657
+
658
+ [[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
+
497
660
  # **rSVPV2ControllerGetEventById**
498
661
  > rSVPV2ControllerGetEventById()
499
662
 
@@ -686,6 +849,62 @@ No authorization required
686
849
 
687
850
  [[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
851
 
852
+ # **rSVPV2ControllerGetFavoriteRSVPEvents**
853
+ > rSVPV2ControllerGetFavoriteRSVPEvents()
854
+
855
+
856
+ ### Example
857
+
858
+ ```typescript
859
+ import {
860
+ RSVPV2Api,
861
+ Configuration
862
+ } from './api';
863
+
864
+ const configuration = new Configuration();
865
+ const apiInstance = new RSVPV2Api(configuration);
866
+
867
+ let page: number; // (optional) (default to undefined)
868
+ let pageSize: number; // (optional) (default to undefined)
869
+ let search: string; // (optional) (default to undefined)
870
+
871
+ const { status, data } = await apiInstance.rSVPV2ControllerGetFavoriteRSVPEvents(
872
+ page,
873
+ pageSize,
874
+ search
875
+ );
876
+ ```
877
+
878
+ ### Parameters
879
+
880
+ |Name | Type | Description | Notes|
881
+ |------------- | ------------- | ------------- | -------------|
882
+ | **page** | [**number**] | | (optional) defaults to undefined|
883
+ | **pageSize** | [**number**] | | (optional) defaults to undefined|
884
+ | **search** | [**string**] | | (optional) defaults to undefined|
885
+
886
+
887
+ ### Return type
888
+
889
+ void (empty response body)
890
+
891
+ ### Authorization
892
+
893
+ [bearer](../README.md#bearer)
894
+
895
+ ### HTTP request headers
896
+
897
+ - **Content-Type**: Not defined
898
+ - **Accept**: Not defined
899
+
900
+
901
+ ### HTTP response details
902
+ | Status code | Description | Response headers |
903
+ |-------------|-------------|------------------|
904
+ |**200** | Get list of favorited RSVP V2 events for the authenticated user | - |
905
+
906
+ [[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)
907
+
689
908
  # **rSVPV2ControllerGetHostEvents**
690
909
  > rSVPV2ControllerGetHostEvents()
691
910
 
@@ -942,7 +1161,7 @@ No authorization required
942
1161
  [[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)
943
1162
 
944
1163
  # **rSVPV2ControllerInvite**
945
- > rSVPV2ControllerInvite(inviteRSVPArrayDTO)
1164
+ > InviteRSVPResponseDTO rSVPV2ControllerInvite(inviteRSVPArrayDTO)
946
1165
 
947
1166
 
948
1167
  ### Example
@@ -976,7 +1195,7 @@ const { status, data } = await apiInstance.rSVPV2ControllerInvite(
976
1195
 
977
1196
  ### Return type
978
1197
 
979
- void (empty response body)
1198
+ **InviteRSVPResponseDTO**
980
1199
 
981
1200
  ### Authorization
982
1201
 
@@ -985,7 +1204,7 @@ void (empty response body)
985
1204
  ### HTTP request headers
986
1205
 
987
1206
  - **Content-Type**: application/json
988
- - **Accept**: Not defined
1207
+ - **Accept**: application/json
989
1208
 
990
1209
 
991
1210
  ### HTTP response details
@@ -1150,6 +1369,60 @@ const { status, data } = await apiInstance.rSVPV2ControllerRsvpFavorites(
1150
1369
 
1151
1370
  [[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)
1152
1371
 
1372
+ # **rSVPV2ControllerSendBlast**
1373
+ > rSVPV2ControllerSendBlast(createRSVPBlastDTO)
1374
+
1375
+
1376
+ ### Example
1377
+
1378
+ ```typescript
1379
+ import {
1380
+ RSVPV2Api,
1381
+ Configuration,
1382
+ CreateRSVPBlastDTO
1383
+ } from './api';
1384
+
1385
+ const configuration = new Configuration();
1386
+ const apiInstance = new RSVPV2Api(configuration);
1387
+
1388
+ let id: string; // (default to undefined)
1389
+ let createRSVPBlastDTO: CreateRSVPBlastDTO; //
1390
+
1391
+ const { status, data } = await apiInstance.rSVPV2ControllerSendBlast(
1392
+ id,
1393
+ createRSVPBlastDTO
1394
+ );
1395
+ ```
1396
+
1397
+ ### Parameters
1398
+
1399
+ |Name | Type | Description | Notes|
1400
+ |------------- | ------------- | ------------- | -------------|
1401
+ | **createRSVPBlastDTO** | **CreateRSVPBlastDTO**| | |
1402
+ | **id** | [**string**] | | defaults to undefined|
1403
+
1404
+
1405
+ ### Return type
1406
+
1407
+ void (empty response body)
1408
+
1409
+ ### Authorization
1410
+
1411
+ [bearer](../README.md#bearer)
1412
+
1413
+ ### HTTP request headers
1414
+
1415
+ - **Content-Type**: application/json
1416
+ - **Accept**: Not defined
1417
+
1418
+
1419
+ ### HTTP response details
1420
+ | Status code | Description | Response headers |
1421
+ |-------------|-------------|------------------|
1422
+ |**200** | Send a blast message to selected recipients | - |
1423
+
1424
+ [[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)
1425
+
1153
1426
  # **rSVPV2ControllerSetupPayment**
1154
1427
  > rSVPV2ControllerSetupPayment(setupRSVPV2PaymentDTO)
1155
1428
 
@@ -0,0 +1,163 @@
1
+ # RSVPV2MutualAvailabilityApi
2
+
3
+ All URIs are relative to *http://localhost:8080*
4
+
5
+ |Method | HTTP request | Description|
6
+ |------------- | ------------- | -------------|
7
+ |[**mutualAvailabilityControllerCheckMutualAvailability**](#mutualavailabilitycontrollercheckmutualavailability) | **POST** /v2/rsvp/mutual-availability/check | |
8
+ |[**mutualAvailabilityControllerFindMoreAvailableTimes**](#mutualavailabilitycontrollerfindmoreavailabletimes) | **POST** /v2/rsvp/mutual-availability/more-times | |
9
+ |[**mutualAvailabilityControllerGetAvailabilityDetails**](#mutualavailabilitycontrollergetavailabilitydetails) | **POST** /v2/rsvp/mutual-availability/details | |
10
+
11
+ # **mutualAvailabilityControllerCheckMutualAvailability**
12
+ > mutualAvailabilityControllerCheckMutualAvailability(checkMutualAvailabilityPayloadDTO)
13
+
14
+
15
+ ### Example
16
+
17
+ ```typescript
18
+ import {
19
+ RSVPV2MutualAvailabilityApi,
20
+ Configuration,
21
+ CheckMutualAvailabilityPayloadDTO
22
+ } from './api';
23
+
24
+ const configuration = new Configuration();
25
+ const apiInstance = new RSVPV2MutualAvailabilityApi(configuration);
26
+
27
+ let checkMutualAvailabilityPayloadDTO: CheckMutualAvailabilityPayloadDTO; //
28
+
29
+ const { status, data } = await apiInstance.mutualAvailabilityControllerCheckMutualAvailability(
30
+ checkMutualAvailabilityPayloadDTO
31
+ );
32
+ ```
33
+
34
+ ### Parameters
35
+
36
+ |Name | Type | Description | Notes|
37
+ |------------- | ------------- | ------------- | -------------|
38
+ | **checkMutualAvailabilityPayloadDTO** | **CheckMutualAvailabilityPayloadDTO**| | |
39
+
40
+
41
+ ### Return type
42
+
43
+ void (empty response body)
44
+
45
+ ### Authorization
46
+
47
+ [bearer](../README.md#bearer)
48
+
49
+ ### HTTP request headers
50
+
51
+ - **Content-Type**: application/json
52
+ - **Accept**: Not defined
53
+
54
+
55
+ ### HTTP response details
56
+ | Status code | Description | Response headers |
57
+ |-------------|-------------|------------------|
58
+ |**200** | Check mutual availability of invitees | - |
59
+
60
+ [[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)
61
+
62
+ # **mutualAvailabilityControllerFindMoreAvailableTimes**
63
+ > mutualAvailabilityControllerFindMoreAvailableTimes(checkMutualAvailabilityPayloadDTO)
64
+
65
+
66
+ ### Example
67
+
68
+ ```typescript
69
+ import {
70
+ RSVPV2MutualAvailabilityApi,
71
+ Configuration,
72
+ CheckMutualAvailabilityPayloadDTO
73
+ } from './api';
74
+
75
+ const configuration = new Configuration();
76
+ const apiInstance = new RSVPV2MutualAvailabilityApi(configuration);
77
+
78
+ let checkMutualAvailabilityPayloadDTO: CheckMutualAvailabilityPayloadDTO; //
79
+
80
+ const { status, data } = await apiInstance.mutualAvailabilityControllerFindMoreAvailableTimes(
81
+ checkMutualAvailabilityPayloadDTO
82
+ );
83
+ ```
84
+
85
+ ### Parameters
86
+
87
+ |Name | Type | Description | Notes|
88
+ |------------- | ------------- | ------------- | -------------|
89
+ | **checkMutualAvailabilityPayloadDTO** | **CheckMutualAvailabilityPayloadDTO**| | |
90
+
91
+
92
+ ### Return type
93
+
94
+ void (empty response body)
95
+
96
+ ### Authorization
97
+
98
+ [bearer](../README.md#bearer)
99
+
100
+ ### HTTP request headers
101
+
102
+ - **Content-Type**: application/json
103
+ - **Accept**: Not defined
104
+
105
+
106
+ ### HTTP response details
107
+ | Status code | Description | Response headers |
108
+ |-------------|-------------|------------------|
109
+ |**200** | Find the next 2 days that have the most qualifying time slots (slots where at least 2 invitees are free), radiating outward from the originally requested date. | - |
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
+ # **mutualAvailabilityControllerGetAvailabilityDetails**
114
+ > mutualAvailabilityControllerGetAvailabilityDetails(checkMutualAvailabilityPayloadDTO)
115
+
116
+
117
+ ### Example
118
+
119
+ ```typescript
120
+ import {
121
+ RSVPV2MutualAvailabilityApi,
122
+ Configuration,
123
+ CheckMutualAvailabilityPayloadDTO
124
+ } from './api';
125
+
126
+ const configuration = new Configuration();
127
+ const apiInstance = new RSVPV2MutualAvailabilityApi(configuration);
128
+
129
+ let checkMutualAvailabilityPayloadDTO: CheckMutualAvailabilityPayloadDTO; //
130
+
131
+ const { status, data } = await apiInstance.mutualAvailabilityControllerGetAvailabilityDetails(
132
+ checkMutualAvailabilityPayloadDTO
133
+ );
134
+ ```
135
+
136
+ ### Parameters
137
+
138
+ |Name | Type | Description | Notes|
139
+ |------------- | ------------- | ------------- | -------------|
140
+ | **checkMutualAvailabilityPayloadDTO** | **CheckMutualAvailabilityPayloadDTO**| | |
141
+
142
+
143
+ ### Return type
144
+
145
+ void (empty response body)
146
+
147
+ ### Authorization
148
+
149
+ [bearer](../README.md#bearer)
150
+
151
+ ### HTTP request headers
152
+
153
+ - **Content-Type**: application/json
154
+ - **Accept**: Not defined
155
+
156
+
157
+ ### HTTP response details
158
+ | Status code | Description | Response headers |
159
+ |-------------|-------------|------------------|
160
+ |**200** | Get detailed availability list of invitees | - |
161
+
162
+ [[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)
163
+
@@ -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-30T10:06:05Z]
8
+ **date** | **string** | The start date of the booking | [default to 2026-07-06T07:33: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]
@@ -7,6 +7,10 @@ Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **images** | **Array&lt;string&gt;** | | [optional] [default to undefined]
9
9
  **link** | **string** | | [optional] [default to undefined]
10
+ **instagram** | **string** | | [optional] [default to undefined]
11
+ **facebook** | **string** | | [optional] [default to undefined]
12
+ **tiktok** | **string** | | [optional] [default to undefined]
13
+ **twitter** | **string** | | [optional] [default to undefined]
10
14
 
11
15
  ## Example
12
16
 
@@ -16,6 +20,10 @@ import { SocialMedia } from './api';
16
20
  const instance: SocialMedia = {
17
21
  images,
18
22
  link,
23
+ instagram,
24
+ facebook,
25
+ tiktok,
26
+ twitter,
19
27
  };
20
28
  ```
21
29
 
@@ -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-30T10:06:05Z]
9
- **endDate** | **string** | The end date of the waitlist | [default to 2026-04-30T11:06:05Z]
8
+ **startDate** | **string** | The start date of the waitlist | [default to 2026-07-06T07:33:23Z]
9
+ **endDate** | **string** | The end date of the waitlist | [default to 2026-07-06T08:33: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&lt;CreateWaitlistBookingCollaboratorPayload&gt;**](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.6.17",
3
+ "version": "4.6.26",
4
4
  "description": "API client for Gooday",
5
5
  "main": "index.ts",
6
6
  "scripts": {},