@gooday_corp/gooday-api-client 4.1.18 → 4.1.19

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.
@@ -112,6 +112,7 @@ docs/CategoryEntity.md
112
112
  docs/CategoryListResponse.md
113
113
  docs/ChannelCreateMultipleUsersPayload.md
114
114
  docs/ChannelCreatePayload.md
115
+ docs/ChatChannelCreateResponseDTO.md
115
116
  docs/ChatMessagingApi.md
116
117
  docs/ChatResponseDTO.md
117
118
  docs/ContactDTO.md
package/api.ts CHANGED
@@ -1686,6 +1686,13 @@ export interface ChannelCreateMultipleUsersPayload {
1686
1686
  export interface ChannelCreatePayload {
1687
1687
  'userId': string;
1688
1688
  }
1689
+ export interface ChatChannelCreateResponseDTO {
1690
+ /**
1691
+ * statusCode
1692
+ */
1693
+ 'statusCode': number;
1694
+ 'cid': string;
1695
+ }
1689
1696
  export interface ChatResponseDTO {
1690
1697
  /**
1691
1698
  * statusCode
@@ -11752,7 +11759,7 @@ export const ChatMessagingApiFp = function(configuration?: Configuration) {
11752
11759
  * @param {*} [options] Override http request option.
11753
11760
  * @throws {RequiredError}
11754
11761
  */
11755
- async chatControllerChannelCreate(channelCreatePayload: ChannelCreatePayload, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ChatResponseDTO>> {
11762
+ async chatControllerChannelCreate(channelCreatePayload: ChannelCreatePayload, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ChatChannelCreateResponseDTO>> {
11756
11763
  const localVarAxiosArgs = await localVarAxiosParamCreator.chatControllerChannelCreate(channelCreatePayload, options);
11757
11764
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
11758
11765
  const localVarOperationServerBasePath = operationServerMap['ChatMessagingApi.chatControllerChannelCreate']?.[localVarOperationServerIndex]?.url;
@@ -11764,7 +11771,7 @@ export const ChatMessagingApiFp = function(configuration?: Configuration) {
11764
11771
  * @param {*} [options] Override http request option.
11765
11772
  * @throws {RequiredError}
11766
11773
  */
11767
- async chatControllerChannelCreateMultipleUsers(channelCreateMultipleUsersPayload: ChannelCreateMultipleUsersPayload, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ChatResponseDTO>> {
11774
+ async chatControllerChannelCreateMultipleUsers(channelCreateMultipleUsersPayload: ChannelCreateMultipleUsersPayload, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ChatChannelCreateResponseDTO>> {
11768
11775
  const localVarAxiosArgs = await localVarAxiosParamCreator.chatControllerChannelCreateMultipleUsers(channelCreateMultipleUsersPayload, options);
11769
11776
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
11770
11777
  const localVarOperationServerBasePath = operationServerMap['ChatMessagingApi.chatControllerChannelCreateMultipleUsers']?.[localVarOperationServerIndex]?.url;
@@ -11797,7 +11804,7 @@ export const ChatMessagingApiFactory = function (configuration?: Configuration,
11797
11804
  * @param {*} [options] Override http request option.
11798
11805
  * @throws {RequiredError}
11799
11806
  */
11800
- chatControllerChannelCreate(channelCreatePayload: ChannelCreatePayload, options?: RawAxiosRequestConfig): AxiosPromise<ChatResponseDTO> {
11807
+ chatControllerChannelCreate(channelCreatePayload: ChannelCreatePayload, options?: RawAxiosRequestConfig): AxiosPromise<ChatChannelCreateResponseDTO> {
11801
11808
  return localVarFp.chatControllerChannelCreate(channelCreatePayload, options).then((request) => request(axios, basePath));
11802
11809
  },
11803
11810
  /**
@@ -11806,7 +11813,7 @@ export const ChatMessagingApiFactory = function (configuration?: Configuration,
11806
11813
  * @param {*} [options] Override http request option.
11807
11814
  * @throws {RequiredError}
11808
11815
  */
11809
- chatControllerChannelCreateMultipleUsers(channelCreateMultipleUsersPayload: ChannelCreateMultipleUsersPayload, options?: RawAxiosRequestConfig): AxiosPromise<ChatResponseDTO> {
11816
+ chatControllerChannelCreateMultipleUsers(channelCreateMultipleUsersPayload: ChannelCreateMultipleUsersPayload, options?: RawAxiosRequestConfig): AxiosPromise<ChatChannelCreateResponseDTO> {
11810
11817
  return localVarFp.chatControllerChannelCreateMultipleUsers(channelCreateMultipleUsersPayload, options).then((request) => request(axios, basePath));
11811
11818
  },
11812
11819
  /**
@@ -0,0 +1,22 @@
1
+ # ChatChannelCreateResponseDTO
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **statusCode** | **number** | statusCode | [default to undefined]
9
+ **cid** | **string** | | [default to undefined]
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import { ChatChannelCreateResponseDTO } from './api';
15
+
16
+ const instance: ChatChannelCreateResponseDTO = {
17
+ statusCode,
18
+ cid,
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)
@@ -9,7 +9,7 @@ All URIs are relative to *http://localhost:8080*
9
9
  |[**chatControllerCreateUsers**](#chatcontrollercreateusers) | **POST** /v1/chat-messaging/add-users | |
10
10
 
11
11
  # **chatControllerChannelCreate**
12
- > ChatResponseDTO chatControllerChannelCreate(channelCreatePayload)
12
+ > ChatChannelCreateResponseDTO chatControllerChannelCreate(channelCreatePayload)
13
13
 
14
14
 
15
15
  ### Example
@@ -40,7 +40,7 @@ const { status, data } = await apiInstance.chatControllerChannelCreate(
40
40
 
41
41
  ### Return type
42
42
 
43
- **ChatResponseDTO**
43
+ **ChatChannelCreateResponseDTO**
44
44
 
45
45
  ### Authorization
46
46
 
@@ -60,7 +60,7 @@ const { status, data } = await apiInstance.chatControllerChannelCreate(
60
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
61
 
62
62
  # **chatControllerChannelCreateMultipleUsers**
63
- > ChatResponseDTO chatControllerChannelCreateMultipleUsers(channelCreateMultipleUsersPayload)
63
+ > ChatChannelCreateResponseDTO chatControllerChannelCreateMultipleUsers(channelCreateMultipleUsersPayload)
64
64
 
65
65
 
66
66
  ### Example
@@ -91,7 +91,7 @@ const { status, data } = await apiInstance.chatControllerChannelCreateMultipleUs
91
91
 
92
92
  ### Return type
93
93
 
94
- **ChatResponseDTO**
94
+ **ChatChannelCreateResponseDTO**
95
95
 
96
96
  ### Authorization
97
97
 
@@ -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-19T11:54:02+05:30]
10
- **recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2025-11-19T11:54:02+05:30]
9
+ **date** | **string** | The start date of the booking | [default to 2025-11-20T11:55:30+05:30]
10
+ **recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2025-11-20T11:55:30+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-19T11:54:02+05:30]
10
- **endDate** | **string** | The start date of the booking | [default to 2025-11-19T11:54:02+05:30]
9
+ **startDate** | **string** | The start date of the booking | [default to 2025-11-20T11:55:30+05:30]
10
+ **endDate** | **string** | The start date of the booking | [default to 2025-11-20T11:55:30+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-19T11:54:02+05:30]
8
+ **date** | **string** | The start date of the booking | [default to 2025-11-20T11:55:30+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-19T11:54:02+05:30]
9
- **endDate** | **string** | The end date of the waitlist | [default to 2025-11-19T12:54:02+05:30]
8
+ **startDate** | **string** | The start date of the waitlist | [default to 2025-11-20T11:55:30+05:30]
9
+ **endDate** | **string** | The end date of the waitlist | [default to 2025-11-20T12:55:30+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.18",
3
+ "version": "4.1.19",
4
4
  "description": "API client for Gooday",
5
5
  "main": "index.ts",
6
6
  "scripts": {},