@gooday_corp/gooday-api-client 4.6.18 → 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.
@@ -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-30T11:22:31Z]
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]
@@ -7,6 +7,10 @@ Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **images** | **Array<string>** | | [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
 
@@ -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-04-30T11:22:31Z]
9
- **endDate** | **string** | The end date of the waitlist | [default to 2026-04-30T12:22:31Z]
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]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooday_corp/gooday-api-client",
3
- "version": "4.6.18",
3
+ "version": "4.6.28",
4
4
  "description": "API client for Gooday",
5
5
  "main": "index.ts",
6
6
  "scripts": {},