@bluecopa/core 0.1.7 → 0.1.9
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/README.md +157 -8
- package/dist/api/chat/checkSubscriptionStatus.d.ts +16 -0
- package/dist/api/chat/createThread.d.ts +16 -0
- package/dist/api/chat/deleteComment.d.ts +12 -0
- package/dist/api/chat/getCommentsByThreadId.d.ts +13 -0
- package/dist/api/chat/index.d.ts +8 -0
- package/dist/api/chat/postComment.d.ts +16 -0
- package/dist/api/chat/subscribeUser.d.ts +18 -0
- package/dist/api/chat/unsubscribeUser.d.ts +18 -0
- package/dist/api/chat/updateComment.d.ts +17 -0
- package/dist/api/index.d.ts +1 -0
- package/dist/config.d.ts +1 -0
- package/dist/index.es.js +3907 -182
- package/dist/index.es.js.map +1 -1
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/inputTable/inputTableDefinition.d.ts +1 -1
- package/dist/utils/metric/analysisMethods.d.ts +35 -8
- package/dist/utils/metric/filterUtils.d.ts +1 -1
- package/dist/utils/metric/getMetricDefinition.d.ts +1 -1
- package/dist/utils/websockets/centrifugoWebsocket.d.ts +18 -0
- package/dist/utils/websockets/websocketProviderFactory.d.ts +13 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -20,9 +20,15 @@ The core package provides essential API utilities and functions for data managem
|
|
|
20
20
|
- [Workbook Module](#workbook-module)
|
|
21
21
|
- [Workflow Module](#workflow-module)
|
|
22
22
|
- [Worksheet Module](#worksheet-module)
|
|
23
|
+
- [WebSocket Connection](#websocket-connection)
|
|
24
|
+
- [WebSocket Factory](#websocket-factory)
|
|
25
|
+
- [WebSocket Provider Interface](#websocket-provider-interface)
|
|
26
|
+
- [WebSocket Usage Example](#websocket-usage-example)
|
|
27
|
+
- [WebSocket Requirements](#websocket-requirements)
|
|
23
28
|
- [Examples](#examples)
|
|
24
|
-
- [1.
|
|
25
|
-
- [2. Get
|
|
29
|
+
- [1. Complete Setup with User Details and WebSocket](#1-complete-setup-with-user-details-and-websocket)
|
|
30
|
+
- [2. Get Input Tables](#2-get-input-tables)
|
|
31
|
+
- [3. Get Workbooks by Type](#3-get-workbooks-by-type)
|
|
26
32
|
- [Development](#development)
|
|
27
33
|
- [Related Packages](#related-packages)
|
|
28
34
|
|
|
@@ -42,7 +48,7 @@ npm install @bluecopa/core
|
|
|
42
48
|
- Dependencies:
|
|
43
49
|
- axios (1.12.0) - For HTTP requests
|
|
44
50
|
- lodash (4.17.21) - For utility functions
|
|
45
|
-
|
|
51
|
+
- centrifuge (5.0.0) - For WebSocket connections
|
|
46
52
|
|
|
47
53
|
## Configuration
|
|
48
54
|
|
|
@@ -51,13 +57,38 @@ The package uses a singleton-based configuration system to manage API settings.
|
|
|
51
57
|
Import and set the config:
|
|
52
58
|
|
|
53
59
|
```typescript
|
|
54
|
-
import { copaSetConfig } from '@bluecopa/core';
|
|
60
|
+
import { copaSetConfig, copaApi } from '@bluecopa/core';
|
|
55
61
|
|
|
56
62
|
copaSetConfig({
|
|
57
63
|
apiBaseUrl: 'https://develop.bluecopa.com', // Base URL for API endpoints
|
|
58
64
|
accessToken: 'your-access-token', // Authentication token
|
|
59
|
-
workspaceId: 'your-workspace-id'
|
|
65
|
+
workspaceId: 'your-workspace-id', // Current workspace identifier
|
|
66
|
+
userId: 'your-user-id' // User identifier for WebSocket connections
|
|
67
|
+
});
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
### Getting User Details and Setting User ID
|
|
71
|
+
|
|
72
|
+
To automatically set the userId from the logged-in user:
|
|
73
|
+
|
|
74
|
+
```typescript
|
|
75
|
+
import { copaSetConfig, copaApi } from '@bluecopa/core';
|
|
76
|
+
|
|
77
|
+
// First configure basic settings
|
|
78
|
+
copaSetConfig({
|
|
79
|
+
apiBaseUrl: 'https://develop.bluecopa.com',
|
|
80
|
+
accessToken: 'your-access-token',
|
|
81
|
+
workspaceId: 'your-workspace-id'
|
|
60
82
|
});
|
|
83
|
+
|
|
84
|
+
// Get user details and set userId
|
|
85
|
+
try {
|
|
86
|
+
const userDetails = await copaApi.user.getLoggedInUserDetails();
|
|
87
|
+
copaSetConfig({ userId: userDetails.id });
|
|
88
|
+
console.log('User ID set:', userDetails.id);
|
|
89
|
+
} catch (error) {
|
|
90
|
+
console.error('Failed to get user details:', error);
|
|
91
|
+
}
|
|
61
92
|
```
|
|
62
93
|
|
|
63
94
|
- `copaSetConfig(partialConfig: Partial<Config>)`: Updates the configuration.
|
|
@@ -71,6 +102,7 @@ export interface Config {
|
|
|
71
102
|
apiBaseUrl: string;
|
|
72
103
|
accessToken: string;
|
|
73
104
|
workspaceId: string;
|
|
105
|
+
userId: string;
|
|
74
106
|
}
|
|
75
107
|
```
|
|
76
108
|
|
|
@@ -79,6 +111,7 @@ export interface Config {
|
|
|
79
111
|
All API functions are asynchronous and use the shared `apiClient` for HTTP requests. They handle errors by throwing objects with `message` and `status`. Access via `copaApi.moduleName.functionName()`.
|
|
80
112
|
|
|
81
113
|
### Dataset Module
|
|
114
|
+
|
|
82
115
|
- `copaApi.dataset.getData()`: Retrieves specific dataset data by ID or parameters
|
|
83
116
|
- `copaApi.dataset.getDatasets()`: Fetches a list of datasets
|
|
84
117
|
- `copaApi.dataset.getSampleData()`: Gets sample data for datasets
|
|
@@ -86,6 +119,7 @@ All API functions are asynchronous and use the shared `apiClient` for HTTP reque
|
|
|
86
119
|
See: [`dataset/getData.ts`](src/api/dataset/getData.ts:1), [`dataset/getSampleData.ts`](src/api/dataset/getSampleData.ts:1), [`dataset/getDatasets.ts`](src/api/dataset/getDatasets.ts:1)
|
|
87
120
|
|
|
88
121
|
### Definition Module
|
|
122
|
+
|
|
89
123
|
- `copaApi.definition.runDefinition()`: Executes a custom definition
|
|
90
124
|
- `copaApi.definition.runPublishedDefinition()`: Runs a published definition
|
|
91
125
|
- `copaApi.definition.runSampleDefinition()`: Executes a sample definition for testing
|
|
@@ -93,11 +127,13 @@ See: [`dataset/getData.ts`](src/api/dataset/getData.ts:1), [`dataset/getSampleDa
|
|
|
93
127
|
See: [`definition/runPublishedDefinition.ts`](src/api/definition/runPublishedDefinition.ts:1), [`definition/runSampleDefinition.ts`](src/api/definition/runSampleDefinition.ts:1), [`definition/runDefinition.ts`](src/api/definition/runDefinition.ts:1)
|
|
94
128
|
|
|
95
129
|
### File Module
|
|
130
|
+
|
|
96
131
|
- `copaApi.files.getFileUrlByFileId(fileId: string)`: Generates a URL for a file by its ID
|
|
97
132
|
|
|
98
133
|
See: [`file/getFileUrlByFileId.ts`](src/api/file/getFileUrlByFileId.ts:1)
|
|
99
134
|
|
|
100
135
|
### InputTable Module
|
|
136
|
+
|
|
101
137
|
- `copaApi.inputTable.getData()`: Retrieves data from an input table
|
|
102
138
|
- `copaApi.inputTable.getInputTables()`: Fetches all input tables
|
|
103
139
|
- `copaApi.inputTable.getTableById(id: string)`: Gets a specific input table by ID
|
|
@@ -105,22 +141,26 @@ See: [`file/getFileUrlByFileId.ts`](src/api/file/getFileUrlByFileId.ts:1)
|
|
|
105
141
|
See: [`inputTable/getData.ts`](src/api/inputTable/getData.ts:1), [`inputTable/getInputTables.ts`](src/api/inputTable/getInputTables.ts:1), [`inputTable/getTableById.ts`](src/api/inputTable/getTableById.ts:1)
|
|
106
142
|
|
|
107
143
|
### Metric Module
|
|
144
|
+
|
|
108
145
|
- `copaApi.metric.getData()`: Fetches metric data
|
|
109
146
|
|
|
110
147
|
See: [`metric/getData.ts`](src/api/metric/getData.ts:1)
|
|
111
148
|
|
|
112
149
|
### User Module
|
|
150
|
+
|
|
113
151
|
- `copaApi.user.getLoggedInUserDetails()`: Retrieves details of the currently logged-in user
|
|
114
152
|
|
|
115
153
|
See: [`user/getLoggedInUserDetails.ts`](src/api/user/getLoggedInUserDetails.ts:1)
|
|
116
154
|
|
|
117
155
|
### Workbook Module
|
|
156
|
+
|
|
118
157
|
- `copaApi.workbook.getPublishedWorkbookById(id: string)`: Fetches a published workbook by ID
|
|
119
158
|
- `copaApi.workbook.getWorkbooksByType(type: string)`: Retrieves workbooks filtered by type
|
|
120
159
|
|
|
121
160
|
See: [`workbook/getPublishedWorkbookById.ts`](src/api/workbook/getPublishedWorkbookById.ts:1), [`workbook/getWorkbooksByType.ts`](src/api/workbook/getWorkbooksByType.ts:1)
|
|
122
161
|
|
|
123
162
|
### Workflow Module
|
|
163
|
+
|
|
124
164
|
- `copaApi.workflow.getWorkflowInstanceStatusById(id: string)`: Checks the status of a workflow instance
|
|
125
165
|
- `copaApi.workflow.triggerHttpWorkflowById(id: string)`: Triggers an HTTP-based workflow
|
|
126
166
|
- `copaApi.workflow.triggerWorkflowById(id: string)`: Triggers a workflow by ID
|
|
@@ -128,28 +168,137 @@ See: [`workbook/getPublishedWorkbookById.ts`](src/api/workbook/getPublishedWorkb
|
|
|
128
168
|
See: [`workflow/triggerHttpWorkflowById.ts`](src/api/workflow/triggerHttpWorkflowById.ts:1), [`workflow/triggerWorkflowById.ts`](src/api/workflow/triggerWorkflowById.ts:1), [`workflow/getWorkflowInstanceStatusById.ts`](src/api/workflow/getWorkflowInstanceStatusById.ts:1)
|
|
129
169
|
|
|
130
170
|
### Worksheet Module
|
|
171
|
+
|
|
131
172
|
- `copaApi.worksheet.getWorksheets()`: Fetches all worksheets
|
|
132
173
|
- `copaApi.worksheet.getWorksheetsByType(type: string)`: Retrieves worksheets by type
|
|
133
174
|
|
|
134
175
|
See: [`worksheet/getWorksheets.ts`](src/api/worksheet/getWorksheets.ts:1), [`worksheet/getWorksheetsByType.ts`](src/api/worksheet/getWorksheetsByType.ts:1)
|
|
135
176
|
|
|
177
|
+
## WebSocket Connection
|
|
178
|
+
|
|
179
|
+
The core package provides WebSocket utilities for real-time communication using Centrifugo.
|
|
180
|
+
|
|
181
|
+
### WebSocket Factory
|
|
182
|
+
|
|
183
|
+
Access WebSocket functionality through the utilities:
|
|
184
|
+
|
|
185
|
+
```typescript
|
|
186
|
+
import { copaUtils } from '@bluecopa/core';
|
|
187
|
+
|
|
188
|
+
// Create a WebSocket connection
|
|
189
|
+
const websocket = copaUtils.websocketUtils.WebsocketContextFactory.create('centrifugo', {
|
|
190
|
+
connectionUrl: 'wss://your-centrifugo-url'
|
|
191
|
+
});
|
|
192
|
+
```
|
|
193
|
+
|
|
194
|
+
### WebSocket Provider Interface
|
|
195
|
+
|
|
196
|
+
The `IWebsocketProvider` interface provides the following methods:
|
|
197
|
+
|
|
198
|
+
- `connect()`: Establishes the WebSocket connection
|
|
199
|
+
- `bind(channel: string, event: string, callback: (data: any) => void)`: Subscribe to private user-specific channels
|
|
200
|
+
- `bindGlobal(event: string, callback: (data: any) => void)`: Subscribe to global channels
|
|
201
|
+
- `unbindAll(channel: string)`: Unsubscribe from all events on a channel
|
|
202
|
+
- `disconnect()`: Close the WebSocket connection
|
|
203
|
+
|
|
204
|
+
### WebSocket Usage Example
|
|
205
|
+
|
|
206
|
+
```typescript
|
|
207
|
+
import { copaSetConfig, copaApi, copaUtils } from '@bluecopa/core';
|
|
208
|
+
|
|
209
|
+
// Configure with userId for WebSocket connections
|
|
210
|
+
copaSetConfig({
|
|
211
|
+
apiBaseUrl: 'https://develop.bluecopa.com',
|
|
212
|
+
accessToken: 'your-access-token',
|
|
213
|
+
workspaceId: 'your-workspace-id',
|
|
214
|
+
userId: 'your-user-id'
|
|
215
|
+
});
|
|
216
|
+
|
|
217
|
+
// Create WebSocket connection
|
|
218
|
+
const websocket = copaUtils.websocketUtils.WebsocketContextFactory.create('centrifugo', {
|
|
219
|
+
connectionUrl: 'wss://centrifugo.your-domain.com/connection/websocket'
|
|
220
|
+
});
|
|
221
|
+
|
|
222
|
+
// Subscribe to user-specific events
|
|
223
|
+
websocket.bind('notifications', 'new_message', (data) => {
|
|
224
|
+
console.log('New notification:', data);
|
|
225
|
+
});
|
|
226
|
+
|
|
227
|
+
// Subscribe to global events
|
|
228
|
+
websocket.bindGlobal('system_updates', (data) => {
|
|
229
|
+
console.log('System update:', data);
|
|
230
|
+
});
|
|
231
|
+
|
|
232
|
+
// Clean up when done
|
|
233
|
+
websocket.disconnect();
|
|
234
|
+
```
|
|
235
|
+
|
|
236
|
+
### WebSocket Requirements
|
|
237
|
+
|
|
238
|
+
- **userId**: Required for private channel subscriptions (`bind` method)
|
|
239
|
+
- **accessToken**: Required for authentication with Centrifugo
|
|
240
|
+
- **connectionUrl**: WebSocket endpoint URL
|
|
241
|
+
|
|
242
|
+
The WebSocket connection automatically uses the configured `accessToken` and `userId` from the config for authentication and channel binding.
|
|
243
|
+
|
|
136
244
|
## Examples
|
|
137
245
|
|
|
138
|
-
### 1.
|
|
246
|
+
### 1. Complete Setup with User Details and WebSocket
|
|
247
|
+
|
|
248
|
+
Complete example showing configuration, user details retrieval, and WebSocket setup.
|
|
249
|
+
|
|
250
|
+
```typescript
|
|
251
|
+
import { copaSetConfig, copaApi, copaUtils } from '@bluecopa/core';
|
|
252
|
+
|
|
253
|
+
// Initial configuration
|
|
254
|
+
copaSetConfig({
|
|
255
|
+
apiBaseUrl: 'https://develop.bluecopa.com',
|
|
256
|
+
accessToken: 'your-access-token',
|
|
257
|
+
workspaceId: 'your-workspace-id'
|
|
258
|
+
});
|
|
259
|
+
|
|
260
|
+
// Get user details and set userId
|
|
261
|
+
try {
|
|
262
|
+
const userDetails = await copaApi.user.getLoggedInUserDetails();
|
|
263
|
+
copaSetConfig({ userId: userDetails.id });
|
|
264
|
+
console.log('User configured:', userDetails.name, userDetails.id);
|
|
265
|
+
} catch (error: any) {
|
|
266
|
+
console.error('Failed to get user details:', error.message, error.status);
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
// Set up WebSocket connection
|
|
270
|
+
const websocket = copaUtils.websocketUtils.WebsocketContextFactory.create('centrifugo', {
|
|
271
|
+
connectionUrl: 'wss://centrifugo.develop.bluecopa.com/connection/websocket'
|
|
272
|
+
});
|
|
273
|
+
|
|
274
|
+
// Subscribe to notifications
|
|
275
|
+
websocket.bind('notifications', 'new_message', (data) => {
|
|
276
|
+
console.log('New notification received:', data);
|
|
277
|
+
});
|
|
278
|
+
```
|
|
279
|
+
|
|
280
|
+
### 2. Get Input Tables
|
|
281
|
+
|
|
139
282
|
Fetches all input tables from the API.
|
|
140
283
|
|
|
141
284
|
```typescript
|
|
142
285
|
import { copaApi } from '@bluecopa/core';
|
|
143
286
|
|
|
144
287
|
// Configure first
|
|
145
|
-
copaSetConfig({
|
|
288
|
+
copaSetConfig({
|
|
289
|
+
apiBaseUrl: 'https://api.example.com',
|
|
290
|
+
accessToken: 'token',
|
|
291
|
+
workspaceId: 'ws1',
|
|
292
|
+
userId: 'user123'
|
|
293
|
+
});
|
|
146
294
|
|
|
147
295
|
// Use API
|
|
148
296
|
const { getInputTables } = copaApi.inputTable;
|
|
149
297
|
const { getWorkbooksByType } = copaApi.workbook;
|
|
150
298
|
```
|
|
151
299
|
|
|
152
|
-
###
|
|
300
|
+
### 3. Get Workbooks by Type
|
|
301
|
+
|
|
153
302
|
Retrieves workbooks filtered by a specific type.
|
|
154
303
|
|
|
155
304
|
```typescript
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export interface CheckSubscriptionStatusResponse {
|
|
2
|
+
success: boolean;
|
|
3
|
+
data: {
|
|
4
|
+
isSubscribed: boolean;
|
|
5
|
+
subscriptionDetails?: any;
|
|
6
|
+
};
|
|
7
|
+
message?: string;
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Checks if a user is subscribed to a thread
|
|
11
|
+
* @param userId - The ID of the user
|
|
12
|
+
* @param threadId - The ID of the thread
|
|
13
|
+
* @returns Promise<CheckSubscriptionStatusResponse> The subscription status
|
|
14
|
+
* @throws Error if the request fails
|
|
15
|
+
*/
|
|
16
|
+
export declare function checkSubscriptionStatus(userId: string, threadId: string): Promise<CheckSubscriptionStatusResponse>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ChatThread } from '../../../../models/src/lib/gen/Api';
|
|
2
|
+
export interface CreateThreadRequest {
|
|
3
|
+
data: ChatThread;
|
|
4
|
+
}
|
|
5
|
+
export interface CreateThreadResponse {
|
|
6
|
+
success: boolean;
|
|
7
|
+
data: ChatThread;
|
|
8
|
+
message?: string;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* Creates a new comment thread
|
|
12
|
+
* @param request - The thread creation request containing ChatThread data
|
|
13
|
+
* @returns Promise<CreateThreadResponse> The created thread details
|
|
14
|
+
* @throws Error if the request fails
|
|
15
|
+
*/
|
|
16
|
+
export declare function createThread(request: CreateThreadRequest): Promise<CreateThreadResponse>;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export interface DeleteCommentResponse {
|
|
2
|
+
success: boolean;
|
|
3
|
+
data?: any;
|
|
4
|
+
message?: string;
|
|
5
|
+
}
|
|
6
|
+
/**
|
|
7
|
+
* Deletes a comment
|
|
8
|
+
* @param commentId - The ID of the comment to delete
|
|
9
|
+
* @returns Promise<DeleteCommentResponse> The deletion result
|
|
10
|
+
* @throws Error if the request fails
|
|
11
|
+
*/
|
|
12
|
+
export declare function deleteComment(commentId: string): Promise<DeleteCommentResponse>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ChatComment } from '../../../../models/src/lib/gen/Api';
|
|
2
|
+
export interface GetCommentsByThreadIdResponse {
|
|
3
|
+
success: boolean;
|
|
4
|
+
data: ChatComment[];
|
|
5
|
+
message?: string;
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* Gets all comments for a specific thread
|
|
9
|
+
* @param threadId - The ID of the thread to get comments for
|
|
10
|
+
* @returns Promise<GetCommentsByThreadIdResponse> The comments for the thread
|
|
11
|
+
* @throws Error if the request fails
|
|
12
|
+
*/
|
|
13
|
+
export declare function getCommentsByThreadId(threadId: string): Promise<GetCommentsByThreadIdResponse>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export { createThread, type CreateThreadRequest, type CreateThreadResponse } from './createThread';
|
|
2
|
+
export { getCommentsByThreadId, type GetCommentsByThreadIdResponse } from './getCommentsByThreadId';
|
|
3
|
+
export { postComment, type PostCommentRequest, type PostCommentResponse } from './postComment';
|
|
4
|
+
export { updateComment, type UpdateCommentRequest, type UpdateCommentResponse } from './updateComment';
|
|
5
|
+
export { deleteComment, type DeleteCommentResponse } from './deleteComment';
|
|
6
|
+
export { subscribeUser, type SubscribeUserRequest, type SubscribeUserResponse } from './subscribeUser';
|
|
7
|
+
export { unsubscribeUser, type UnsubscribeUserRequest, type UnsubscribeUserResponse } from './unsubscribeUser';
|
|
8
|
+
export { checkSubscriptionStatus, type CheckSubscriptionStatusResponse } from './checkSubscriptionStatus';
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ChatComment } from '../../../../models/src/lib/gen/Api';
|
|
2
|
+
export interface PostCommentRequest {
|
|
3
|
+
data: ChatComment;
|
|
4
|
+
}
|
|
5
|
+
export interface PostCommentResponse {
|
|
6
|
+
success: boolean;
|
|
7
|
+
data: ChatComment;
|
|
8
|
+
message?: string;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* Adds a new comment to an existing thread
|
|
12
|
+
* @param request - The comment creation request containing ChatComment data
|
|
13
|
+
* @returns Promise<PostCommentResponse> The created comment details
|
|
14
|
+
* @throws Error if the request fails
|
|
15
|
+
*/
|
|
16
|
+
export declare function postComment(request: PostCommentRequest): Promise<PostCommentResponse>;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export interface SubscribeUserRequest {
|
|
2
|
+
params: {
|
|
3
|
+
userId: string;
|
|
4
|
+
threadId: string;
|
|
5
|
+
};
|
|
6
|
+
}
|
|
7
|
+
export interface SubscribeUserResponse {
|
|
8
|
+
success: boolean;
|
|
9
|
+
data?: any;
|
|
10
|
+
message?: string;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* Subscribes a user to a thread
|
|
14
|
+
* @param request - The subscription request containing userId and threadId
|
|
15
|
+
* @returns Promise<SubscribeUserResponse> The subscription result
|
|
16
|
+
* @throws Error if the request fails
|
|
17
|
+
*/
|
|
18
|
+
export declare function subscribeUser(request: SubscribeUserRequest): Promise<SubscribeUserResponse>;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export interface UnsubscribeUserRequest {
|
|
2
|
+
params: {
|
|
3
|
+
userId: string;
|
|
4
|
+
threadId: string;
|
|
5
|
+
};
|
|
6
|
+
}
|
|
7
|
+
export interface UnsubscribeUserResponse {
|
|
8
|
+
success: boolean;
|
|
9
|
+
data?: any;
|
|
10
|
+
message?: string;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* Unsubscribes a user from a thread
|
|
14
|
+
* @param request - The unsubscription request containing userId and threadId
|
|
15
|
+
* @returns Promise<UnsubscribeUserResponse> The unsubscription result
|
|
16
|
+
* @throws Error if the request fails
|
|
17
|
+
*/
|
|
18
|
+
export declare function unsubscribeUser(request: UnsubscribeUserRequest): Promise<UnsubscribeUserResponse>;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ChatComment } from '../../../../models/src/lib/gen/Api';
|
|
2
|
+
export interface UpdateCommentRequest {
|
|
3
|
+
data: ChatComment;
|
|
4
|
+
commentId: string;
|
|
5
|
+
}
|
|
6
|
+
export interface UpdateCommentResponse {
|
|
7
|
+
success: boolean;
|
|
8
|
+
data: ChatComment;
|
|
9
|
+
message?: string;
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* Updates an existing comment
|
|
13
|
+
* @param request - The comment update request containing ChatComment data and commentId
|
|
14
|
+
* @returns Promise<UpdateCommentResponse> The updated comment details
|
|
15
|
+
* @throws Error if the request fails
|
|
16
|
+
*/
|
|
17
|
+
export declare function updateComment(request: UpdateCommentRequest): Promise<UpdateCommentResponse>;
|
package/dist/api/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ export * as workflow from './workflow';
|
|
|
4
4
|
export * as files from './file';
|
|
5
5
|
export * as definition from './definition';
|
|
6
6
|
export * as metric from './metric';
|
|
7
|
+
export * as chat from './chat';
|
|
7
8
|
export * as dataset from './dataset';
|
|
8
9
|
export * as inputTable from './inputTable';
|
|
9
10
|
export * as workbook from './workbook';
|