@gooday_corp/gooday-api-client 4.1.17 → 4.1.18

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 CHANGED
@@ -11686,6 +11686,45 @@ export const ChatMessagingApiAxiosParamCreator = function (configuration?: Confi
11686
11686
 
11687
11687
 
11688
11688
 
11689
+ localVarHeaderParameter['Content-Type'] = 'application/json';
11690
+
11691
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
11692
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
11693
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
11694
+ localVarRequestOptions.data = serializeDataIfNeeded(channelCreateMultipleUsersPayload, localVarRequestOptions, configuration)
11695
+
11696
+ return {
11697
+ url: toPathString(localVarUrlObj),
11698
+ options: localVarRequestOptions,
11699
+ };
11700
+ },
11701
+ /**
11702
+ *
11703
+ * @param {ChannelCreateMultipleUsersPayload} channelCreateMultipleUsersPayload
11704
+ * @param {*} [options] Override http request option.
11705
+ * @throws {RequiredError}
11706
+ */
11707
+ chatControllerCreateUsers: async (channelCreateMultipleUsersPayload: ChannelCreateMultipleUsersPayload, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
11708
+ // verify required parameter 'channelCreateMultipleUsersPayload' is not null or undefined
11709
+ assertParamExists('chatControllerCreateUsers', 'channelCreateMultipleUsersPayload', channelCreateMultipleUsersPayload)
11710
+ const localVarPath = `/v1/chat-messaging/add-users`;
11711
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
11712
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
11713
+ let baseOptions;
11714
+ if (configuration) {
11715
+ baseOptions = configuration.baseOptions;
11716
+ }
11717
+
11718
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
11719
+ const localVarHeaderParameter = {} as any;
11720
+ const localVarQueryParameter = {} as any;
11721
+
11722
+ // authentication bearer required
11723
+ // http bearer authentication required
11724
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
11725
+
11726
+
11727
+
11689
11728
  localVarHeaderParameter['Content-Type'] = 'application/json';
11690
11729
 
11691
11730
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -11731,6 +11770,18 @@ export const ChatMessagingApiFp = function(configuration?: Configuration) {
11731
11770
  const localVarOperationServerBasePath = operationServerMap['ChatMessagingApi.chatControllerChannelCreateMultipleUsers']?.[localVarOperationServerIndex]?.url;
11732
11771
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
11733
11772
  },
11773
+ /**
11774
+ *
11775
+ * @param {ChannelCreateMultipleUsersPayload} channelCreateMultipleUsersPayload
11776
+ * @param {*} [options] Override http request option.
11777
+ * @throws {RequiredError}
11778
+ */
11779
+ async chatControllerCreateUsers(channelCreateMultipleUsersPayload: ChannelCreateMultipleUsersPayload, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ChatResponseDTO>> {
11780
+ const localVarAxiosArgs = await localVarAxiosParamCreator.chatControllerCreateUsers(channelCreateMultipleUsersPayload, options);
11781
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
11782
+ const localVarOperationServerBasePath = operationServerMap['ChatMessagingApi.chatControllerCreateUsers']?.[localVarOperationServerIndex]?.url;
11783
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
11784
+ },
11734
11785
  }
11735
11786
  };
11736
11787
 
@@ -11758,6 +11809,15 @@ export const ChatMessagingApiFactory = function (configuration?: Configuration,
11758
11809
  chatControllerChannelCreateMultipleUsers(channelCreateMultipleUsersPayload: ChannelCreateMultipleUsersPayload, options?: RawAxiosRequestConfig): AxiosPromise<ChatResponseDTO> {
11759
11810
  return localVarFp.chatControllerChannelCreateMultipleUsers(channelCreateMultipleUsersPayload, options).then((request) => request(axios, basePath));
11760
11811
  },
11812
+ /**
11813
+ *
11814
+ * @param {ChannelCreateMultipleUsersPayload} channelCreateMultipleUsersPayload
11815
+ * @param {*} [options] Override http request option.
11816
+ * @throws {RequiredError}
11817
+ */
11818
+ chatControllerCreateUsers(channelCreateMultipleUsersPayload: ChannelCreateMultipleUsersPayload, options?: RawAxiosRequestConfig): AxiosPromise<ChatResponseDTO> {
11819
+ return localVarFp.chatControllerCreateUsers(channelCreateMultipleUsersPayload, options).then((request) => request(axios, basePath));
11820
+ },
11761
11821
  };
11762
11822
  };
11763
11823
 
@@ -11784,6 +11844,16 @@ export class ChatMessagingApi extends BaseAPI {
11784
11844
  public chatControllerChannelCreateMultipleUsers(channelCreateMultipleUsersPayload: ChannelCreateMultipleUsersPayload, options?: RawAxiosRequestConfig) {
11785
11845
  return ChatMessagingApiFp(this.configuration).chatControllerChannelCreateMultipleUsers(channelCreateMultipleUsersPayload, options).then((request) => request(this.axios, this.basePath));
11786
11846
  }
11847
+
11848
+ /**
11849
+ *
11850
+ * @param {ChannelCreateMultipleUsersPayload} channelCreateMultipleUsersPayload
11851
+ * @param {*} [options] Override http request option.
11852
+ * @throws {RequiredError}
11853
+ */
11854
+ public chatControllerCreateUsers(channelCreateMultipleUsersPayload: ChannelCreateMultipleUsersPayload, options?: RawAxiosRequestConfig) {
11855
+ return ChatMessagingApiFp(this.configuration).chatControllerCreateUsers(channelCreateMultipleUsersPayload, options).then((request) => request(this.axios, this.basePath));
11856
+ }
11787
11857
  }
11788
11858
 
11789
11859
 
@@ -11908,10 +11978,11 @@ export const ContactsApiAxiosParamCreator = function (configuration?: Configurat
11908
11978
  * @param {number} [page]
11909
11979
  * @param {number} [pageSize]
11910
11980
  * @param {string} [contactId]
11981
+ * @param {Array<string>} [users]
11911
11982
  * @param {*} [options] Override http request option.
11912
11983
  * @throws {RequiredError}
11913
11984
  */
11914
- contactsControllerFindContacts: async (search?: string, page?: number, pageSize?: number, contactId?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
11985
+ contactsControllerFindContacts: async (search?: string, page?: number, pageSize?: number, contactId?: string, users?: Array<string>, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
11915
11986
  const localVarPath = `/v1/contacts`;
11916
11987
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
11917
11988
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -11944,6 +12015,10 @@ export const ContactsApiAxiosParamCreator = function (configuration?: Configurat
11944
12015
  localVarQueryParameter['contactId'] = contactId;
11945
12016
  }
11946
12017
 
12018
+ if (users) {
12019
+ localVarQueryParameter['users'] = users;
12020
+ }
12021
+
11947
12022
 
11948
12023
 
11949
12024
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -11961,10 +12036,11 @@ export const ContactsApiAxiosParamCreator = function (configuration?: Configurat
11961
12036
  * @param {number} [page]
11962
12037
  * @param {number} [pageSize]
11963
12038
  * @param {string} [contactId]
12039
+ * @param {Array<string>} [users]
11964
12040
  * @param {*} [options] Override http request option.
11965
12041
  * @throws {RequiredError}
11966
12042
  */
11967
- contactsControllerFindContactsSuggestion: async (search?: string, page?: number, pageSize?: number, contactId?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
12043
+ contactsControllerFindContactsSuggestion: async (search?: string, page?: number, pageSize?: number, contactId?: string, users?: Array<string>, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
11968
12044
  const localVarPath = `/v1/contacts/suggestion`;
11969
12045
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
11970
12046
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -11997,6 +12073,10 @@ export const ContactsApiAxiosParamCreator = function (configuration?: Configurat
11997
12073
  localVarQueryParameter['contactId'] = contactId;
11998
12074
  }
11999
12075
 
12076
+ if (users) {
12077
+ localVarQueryParameter['users'] = users;
12078
+ }
12079
+
12000
12080
 
12001
12081
 
12002
12082
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -12058,11 +12138,12 @@ export const ContactsApiFp = function(configuration?: Configuration) {
12058
12138
  * @param {number} [page]
12059
12139
  * @param {number} [pageSize]
12060
12140
  * @param {string} [contactId]
12141
+ * @param {Array<string>} [users]
12061
12142
  * @param {*} [options] Override http request option.
12062
12143
  * @throws {RequiredError}
12063
12144
  */
12064
- async contactsControllerFindContacts(search?: string, page?: number, pageSize?: number, contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContactsResponseDTO>> {
12065
- const localVarAxiosArgs = await localVarAxiosParamCreator.contactsControllerFindContacts(search, page, pageSize, contactId, options);
12145
+ async contactsControllerFindContacts(search?: string, page?: number, pageSize?: number, contactId?: string, users?: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContactsResponseDTO>> {
12146
+ const localVarAxiosArgs = await localVarAxiosParamCreator.contactsControllerFindContacts(search, page, pageSize, contactId, users, options);
12066
12147
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
12067
12148
  const localVarOperationServerBasePath = operationServerMap['ContactsApi.contactsControllerFindContacts']?.[localVarOperationServerIndex]?.url;
12068
12149
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -12073,11 +12154,12 @@ export const ContactsApiFp = function(configuration?: Configuration) {
12073
12154
  * @param {number} [page]
12074
12155
  * @param {number} [pageSize]
12075
12156
  * @param {string} [contactId]
12157
+ * @param {Array<string>} [users]
12076
12158
  * @param {*} [options] Override http request option.
12077
12159
  * @throws {RequiredError}
12078
12160
  */
12079
- async contactsControllerFindContactsSuggestion(search?: string, page?: number, pageSize?: number, contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContactsResponseDTO>> {
12080
- const localVarAxiosArgs = await localVarAxiosParamCreator.contactsControllerFindContactsSuggestion(search, page, pageSize, contactId, options);
12161
+ async contactsControllerFindContactsSuggestion(search?: string, page?: number, pageSize?: number, contactId?: string, users?: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContactsResponseDTO>> {
12162
+ const localVarAxiosArgs = await localVarAxiosParamCreator.contactsControllerFindContactsSuggestion(search, page, pageSize, contactId, users, options);
12081
12163
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
12082
12164
  const localVarOperationServerBasePath = operationServerMap['ContactsApi.contactsControllerFindContactsSuggestion']?.[localVarOperationServerIndex]?.url;
12083
12165
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -12123,11 +12205,12 @@ export const ContactsApiFactory = function (configuration?: Configuration, baseP
12123
12205
  * @param {number} [page]
12124
12206
  * @param {number} [pageSize]
12125
12207
  * @param {string} [contactId]
12208
+ * @param {Array<string>} [users]
12126
12209
  * @param {*} [options] Override http request option.
12127
12210
  * @throws {RequiredError}
12128
12211
  */
12129
- contactsControllerFindContacts(search?: string, page?: number, pageSize?: number, contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ContactsResponseDTO> {
12130
- return localVarFp.contactsControllerFindContacts(search, page, pageSize, contactId, options).then((request) => request(axios, basePath));
12212
+ contactsControllerFindContacts(search?: string, page?: number, pageSize?: number, contactId?: string, users?: Array<string>, options?: RawAxiosRequestConfig): AxiosPromise<ContactsResponseDTO> {
12213
+ return localVarFp.contactsControllerFindContacts(search, page, pageSize, contactId, users, options).then((request) => request(axios, basePath));
12131
12214
  },
12132
12215
  /**
12133
12216
  *
@@ -12135,11 +12218,12 @@ export const ContactsApiFactory = function (configuration?: Configuration, baseP
12135
12218
  * @param {number} [page]
12136
12219
  * @param {number} [pageSize]
12137
12220
  * @param {string} [contactId]
12221
+ * @param {Array<string>} [users]
12138
12222
  * @param {*} [options] Override http request option.
12139
12223
  * @throws {RequiredError}
12140
12224
  */
12141
- contactsControllerFindContactsSuggestion(search?: string, page?: number, pageSize?: number, contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ContactsResponseDTO> {
12142
- return localVarFp.contactsControllerFindContactsSuggestion(search, page, pageSize, contactId, options).then((request) => request(axios, basePath));
12225
+ contactsControllerFindContactsSuggestion(search?: string, page?: number, pageSize?: number, contactId?: string, users?: Array<string>, options?: RawAxiosRequestConfig): AxiosPromise<ContactsResponseDTO> {
12226
+ return localVarFp.contactsControllerFindContactsSuggestion(search, page, pageSize, contactId, users, options).then((request) => request(axios, basePath));
12143
12227
  },
12144
12228
  };
12145
12229
  };
@@ -12183,11 +12267,12 @@ export class ContactsApi extends BaseAPI {
12183
12267
  * @param {number} [page]
12184
12268
  * @param {number} [pageSize]
12185
12269
  * @param {string} [contactId]
12270
+ * @param {Array<string>} [users]
12186
12271
  * @param {*} [options] Override http request option.
12187
12272
  * @throws {RequiredError}
12188
12273
  */
12189
- public contactsControllerFindContacts(search?: string, page?: number, pageSize?: number, contactId?: string, options?: RawAxiosRequestConfig) {
12190
- return ContactsApiFp(this.configuration).contactsControllerFindContacts(search, page, pageSize, contactId, options).then((request) => request(this.axios, this.basePath));
12274
+ public contactsControllerFindContacts(search?: string, page?: number, pageSize?: number, contactId?: string, users?: Array<string>, options?: RawAxiosRequestConfig) {
12275
+ return ContactsApiFp(this.configuration).contactsControllerFindContacts(search, page, pageSize, contactId, users, options).then((request) => request(this.axios, this.basePath));
12191
12276
  }
12192
12277
 
12193
12278
  /**
@@ -12196,11 +12281,12 @@ export class ContactsApi extends BaseAPI {
12196
12281
  * @param {number} [page]
12197
12282
  * @param {number} [pageSize]
12198
12283
  * @param {string} [contactId]
12284
+ * @param {Array<string>} [users]
12199
12285
  * @param {*} [options] Override http request option.
12200
12286
  * @throws {RequiredError}
12201
12287
  */
12202
- public contactsControllerFindContactsSuggestion(search?: string, page?: number, pageSize?: number, contactId?: string, options?: RawAxiosRequestConfig) {
12203
- return ContactsApiFp(this.configuration).contactsControllerFindContactsSuggestion(search, page, pageSize, contactId, options).then((request) => request(this.axios, this.basePath));
12288
+ public contactsControllerFindContactsSuggestion(search?: string, page?: number, pageSize?: number, contactId?: string, users?: Array<string>, options?: RawAxiosRequestConfig) {
12289
+ return ContactsApiFp(this.configuration).contactsControllerFindContactsSuggestion(search, page, pageSize, contactId, users, options).then((request) => request(this.axios, this.basePath));
12204
12290
  }
12205
12291
  }
12206
12292
 
@@ -6,6 +6,7 @@ All URIs are relative to *http://localhost:8080*
6
6
  |------------- | ------------- | -------------|
7
7
  |[**chatControllerChannelCreate**](#chatcontrollerchannelcreate) | **POST** /v1/chat-messaging | |
8
8
  |[**chatControllerChannelCreateMultipleUsers**](#chatcontrollerchannelcreatemultipleusers) | **POST** /v1/chat-messaging/multiple-members | |
9
+ |[**chatControllerCreateUsers**](#chatcontrollercreateusers) | **POST** /v1/chat-messaging/add-users | |
9
10
 
10
11
  # **chatControllerChannelCreate**
11
12
  > ChatResponseDTO chatControllerChannelCreate(channelCreatePayload)
@@ -109,3 +110,54 @@ const { status, data } = await apiInstance.chatControllerChannelCreateMultipleUs
109
110
 
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)
111
112
 
113
+ # **chatControllerCreateUsers**
114
+ > ChatResponseDTO chatControllerCreateUsers(channelCreateMultipleUsersPayload)
115
+
116
+
117
+ ### Example
118
+
119
+ ```typescript
120
+ import {
121
+ ChatMessagingApi,
122
+ Configuration,
123
+ ChannelCreateMultipleUsersPayload
124
+ } from './api';
125
+
126
+ const configuration = new Configuration();
127
+ const apiInstance = new ChatMessagingApi(configuration);
128
+
129
+ let channelCreateMultipleUsersPayload: ChannelCreateMultipleUsersPayload; //
130
+
131
+ const { status, data } = await apiInstance.chatControllerCreateUsers(
132
+ channelCreateMultipleUsersPayload
133
+ );
134
+ ```
135
+
136
+ ### Parameters
137
+
138
+ |Name | Type | Description | Notes|
139
+ |------------- | ------------- | ------------- | -------------|
140
+ | **channelCreateMultipleUsersPayload** | **ChannelCreateMultipleUsersPayload**| | |
141
+
142
+
143
+ ### Return type
144
+
145
+ **ChatResponseDTO**
146
+
147
+ ### Authorization
148
+
149
+ [bearer](../README.md#bearer)
150
+
151
+ ### HTTP request headers
152
+
153
+ - **Content-Type**: application/json
154
+ - **Accept**: application/json
155
+
156
+
157
+ ### HTTP response details
158
+ | Status code | Description | Response headers |
159
+ |-------------|-------------|------------------|
160
+ |**200** | | - |
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
+
@@ -172,12 +172,14 @@ let search: string; // (optional) (default to undefined)
172
172
  let page: number; // (optional) (default to undefined)
173
173
  let pageSize: number; // (optional) (default to undefined)
174
174
  let contactId: string; // (optional) (default to undefined)
175
+ let users: Array<string>; // (optional) (default to undefined)
175
176
 
176
177
  const { status, data } = await apiInstance.contactsControllerFindContacts(
177
178
  search,
178
179
  page,
179
180
  pageSize,
180
- contactId
181
+ contactId,
182
+ users
181
183
  );
182
184
  ```
183
185
 
@@ -189,6 +191,7 @@ const { status, data } = await apiInstance.contactsControllerFindContacts(
189
191
  | **page** | [**number**] | | (optional) defaults to undefined|
190
192
  | **pageSize** | [**number**] | | (optional) defaults to undefined|
191
193
  | **contactId** | [**string**] | | (optional) defaults to undefined|
194
+ | **users** | **Array&lt;string&gt;** | | (optional) defaults to undefined|
192
195
 
193
196
 
194
197
  ### Return type
@@ -231,12 +234,14 @@ let search: string; // (optional) (default to undefined)
231
234
  let page: number; // (optional) (default to undefined)
232
235
  let pageSize: number; // (optional) (default to undefined)
233
236
  let contactId: string; // (optional) (default to undefined)
237
+ let users: Array<string>; // (optional) (default to undefined)
234
238
 
235
239
  const { status, data } = await apiInstance.contactsControllerFindContactsSuggestion(
236
240
  search,
237
241
  page,
238
242
  pageSize,
239
- contactId
243
+ contactId,
244
+ users
240
245
  );
241
246
  ```
242
247
 
@@ -248,6 +253,7 @@ const { status, data } = await apiInstance.contactsControllerFindContactsSuggest
248
253
  | **page** | [**number**] | | (optional) defaults to undefined|
249
254
  | **pageSize** | [**number**] | | (optional) defaults to undefined|
250
255
  | **contactId** | [**string**] | | (optional) defaults to undefined|
256
+ | **users** | **Array&lt;string&gt;** | | (optional) defaults to undefined|
251
257
 
252
258
 
253
259
  ### Return type
@@ -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-18T12:27:32+05:30]
10
- **recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2025-11-18T12:27:32+05:30]
9
+ **date** | **string** | The start date of the booking | [default to 2025-11-19T11:54:02+05:30]
10
+ **recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2025-11-19T11:54:02+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-18T12:27:32+05:30]
10
- **endDate** | **string** | The start date of the booking | [default to 2025-11-18T12:27:32+05:30]
9
+ **startDate** | **string** | The start date of the booking | [default to 2025-11-19T11:54:02+05:30]
10
+ **endDate** | **string** | The start date of the booking | [default to 2025-11-19T11:54:02+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&lt;string&gt;** | Calendar attached with booking | [optional] [default to undefined]
@@ -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-18T12:27:32+05:30]
8
+ **date** | **string** | The start date of the booking | [default to 2025-11-19T11:54:02+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-18T12:27:32+05:30]
9
- **endDate** | **string** | The end date of the waitlist | [default to 2025-11-18T13:27:32+05:30]
8
+ **startDate** | **string** | The start date of the waitlist | [default to 2025-11-19T11:54:02+05:30]
9
+ **endDate** | **string** | The end date of the waitlist | [default to 2025-11-19T12:54:02+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&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.1.17",
3
+ "version": "4.1.18",
4
4
  "description": "API client for Gooday",
5
5
  "main": "index.ts",
6
6
  "scripts": {},