@easyedu/js-lsm-api 1.38.0 → 1.40.0

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.
Files changed (61) hide show
  1. package/.openapi-generator/FILES +16 -0
  2. package/README.md +21 -9
  3. package/dist/apis/ChatApi.d.ts +95 -0
  4. package/dist/apis/ChatApi.js +235 -0
  5. package/dist/apis/index.d.ts +1 -0
  6. package/dist/apis/index.js +1 -0
  7. package/dist/esm/apis/ChatApi.d.ts +95 -0
  8. package/dist/esm/apis/ChatApi.js +231 -0
  9. package/dist/esm/apis/index.d.ts +1 -0
  10. package/dist/esm/apis/index.js +1 -0
  11. package/dist/esm/models/GetChatMessage.d.ts +44 -0
  12. package/dist/esm/models/GetChatMessage.js +51 -0
  13. package/dist/esm/models/GetConversation.d.ts +50 -0
  14. package/dist/esm/models/GetConversation.js +53 -0
  15. package/dist/esm/models/GetConversationList.d.ts +57 -0
  16. package/dist/esm/models/GetConversationList.js +60 -0
  17. package/dist/esm/models/PostConversation.d.ts +32 -0
  18. package/dist/esm/models/PostConversation.js +43 -0
  19. package/dist/esm/models/PostConversationResponse.d.ts +44 -0
  20. package/dist/esm/models/PostConversationResponse.js +51 -0
  21. package/dist/esm/models/PostMessage.d.ts +32 -0
  22. package/dist/esm/models/PostMessage.js +43 -0
  23. package/dist/esm/models/PostMessageResponse.d.ts +38 -0
  24. package/dist/esm/models/PostMessageResponse.js +47 -0
  25. package/dist/esm/models/index.d.ts +7 -0
  26. package/dist/esm/models/index.js +7 -0
  27. package/dist/models/GetChatMessage.d.ts +44 -0
  28. package/dist/models/GetChatMessage.js +58 -0
  29. package/dist/models/GetConversation.d.ts +50 -0
  30. package/dist/models/GetConversation.js +60 -0
  31. package/dist/models/GetConversationList.d.ts +57 -0
  32. package/dist/models/GetConversationList.js +67 -0
  33. package/dist/models/PostConversation.d.ts +32 -0
  34. package/dist/models/PostConversation.js +50 -0
  35. package/dist/models/PostConversationResponse.d.ts +44 -0
  36. package/dist/models/PostConversationResponse.js +58 -0
  37. package/dist/models/PostMessage.d.ts +32 -0
  38. package/dist/models/PostMessage.js +50 -0
  39. package/dist/models/PostMessageResponse.d.ts +38 -0
  40. package/dist/models/PostMessageResponse.js +54 -0
  41. package/dist/models/index.d.ts +7 -0
  42. package/dist/models/index.js +7 -0
  43. package/docs/ChatApi.md +357 -0
  44. package/docs/GetChatMessage.md +38 -0
  45. package/docs/GetConversation.md +40 -0
  46. package/docs/GetConversationList.md +42 -0
  47. package/docs/PostConversation.md +34 -0
  48. package/docs/PostConversationResponse.md +38 -0
  49. package/docs/PostMessage.md +34 -0
  50. package/docs/PostMessageResponse.md +36 -0
  51. package/package.json +1 -1
  52. package/src/apis/ChatApi.ts +303 -0
  53. package/src/apis/index.ts +1 -0
  54. package/src/models/GetChatMessage.ts +84 -0
  55. package/src/models/GetConversation.ts +92 -0
  56. package/src/models/GetConversationList.ts +110 -0
  57. package/src/models/PostConversation.ts +66 -0
  58. package/src/models/PostConversationResponse.ts +84 -0
  59. package/src/models/PostMessage.ts +66 -0
  60. package/src/models/PostMessageResponse.ts +75 -0
  61. package/src/models/index.ts +7 -0
@@ -0,0 +1,357 @@
1
+ # ChatApi
2
+
3
+ All URIs are relative to *https://sbzw93t49b.execute-api.us-east-2.amazonaws.com/stage1*
4
+
5
+ | Method | HTTP request | Description |
6
+ |------------- | ------------- | -------------|
7
+ | [**deleteConversation**](ChatApi.md#deleteconversation) | **DELETE** /chat/conversations/{conversationId} | Delete a conversation |
8
+ | [**getConversationMessages**](ChatApi.md#getconversationmessages) | **GET** /chat/conversations/{conversationId}/messages | Get all messages in a conversation |
9
+ | [**getConversations**](ChatApi.md#getconversations) | **GET** /chat/conversations | List conversations for the current user |
10
+ | [**postConversation**](ChatApi.md#postconversation) | **POST** /chat/conversations | Create a new conversation |
11
+ | [**postMessage**](ChatApi.md#postmessage) | **POST** /chat/conversations/{conversationId}/messages | Send a message to a conversation |
12
+
13
+
14
+
15
+ ## deleteConversation
16
+
17
+ > deleteConversation(conversationId)
18
+
19
+ Delete a conversation
20
+
21
+ ### Example
22
+
23
+ ```ts
24
+ import {
25
+ Configuration,
26
+ ChatApi,
27
+ } from '@easyedu/js-lsm-api';
28
+ import type { DeleteConversationRequest } from '@easyedu/js-lsm-api';
29
+
30
+ async function example() {
31
+ console.log("🚀 Testing @easyedu/js-lsm-api SDK...");
32
+ const api = new ChatApi();
33
+
34
+ const body = {
35
+ // string
36
+ conversationId: conversationId_example,
37
+ } satisfies DeleteConversationRequest;
38
+
39
+ try {
40
+ const data = await api.deleteConversation(body);
41
+ console.log(data);
42
+ } catch (error) {
43
+ console.error(error);
44
+ }
45
+ }
46
+
47
+ // Run the test
48
+ example().catch(console.error);
49
+ ```
50
+
51
+ ### Parameters
52
+
53
+
54
+ | Name | Type | Description | Notes |
55
+ |------------- | ------------- | ------------- | -------------|
56
+ | **conversationId** | `string` | | [Defaults to `undefined`] |
57
+
58
+ ### Return type
59
+
60
+ `void` (Empty response body)
61
+
62
+ ### Authorization
63
+
64
+ No authorization required
65
+
66
+ ### HTTP request headers
67
+
68
+ - **Content-Type**: Not defined
69
+ - **Accept**: Not defined
70
+
71
+
72
+ ### HTTP response details
73
+ | Status code | Description | Response headers |
74
+ |-------------|-------------|------------------|
75
+ | **204** | Conversation deleted | - |
76
+ | **401** | Unauthorized | - |
77
+ | **403** | Forbidden | - |
78
+ | **404** | Conversation not found | - |
79
+
80
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
81
+
82
+
83
+ ## getConversationMessages
84
+
85
+ > Array<GetChatMessage> getConversationMessages(conversationId)
86
+
87
+ Get all messages in a conversation
88
+
89
+ ### Example
90
+
91
+ ```ts
92
+ import {
93
+ Configuration,
94
+ ChatApi,
95
+ } from '@easyedu/js-lsm-api';
96
+ import type { GetConversationMessagesRequest } from '@easyedu/js-lsm-api';
97
+
98
+ async function example() {
99
+ console.log("🚀 Testing @easyedu/js-lsm-api SDK...");
100
+ const api = new ChatApi();
101
+
102
+ const body = {
103
+ // string
104
+ conversationId: conversationId_example,
105
+ } satisfies GetConversationMessagesRequest;
106
+
107
+ try {
108
+ const data = await api.getConversationMessages(body);
109
+ console.log(data);
110
+ } catch (error) {
111
+ console.error(error);
112
+ }
113
+ }
114
+
115
+ // Run the test
116
+ example().catch(console.error);
117
+ ```
118
+
119
+ ### Parameters
120
+
121
+
122
+ | Name | Type | Description | Notes |
123
+ |------------- | ------------- | ------------- | -------------|
124
+ | **conversationId** | `string` | | [Defaults to `undefined`] |
125
+
126
+ ### Return type
127
+
128
+ [**Array<GetChatMessage>**](GetChatMessage.md)
129
+
130
+ ### Authorization
131
+
132
+ No authorization required
133
+
134
+ ### HTTP request headers
135
+
136
+ - **Content-Type**: Not defined
137
+ - **Accept**: `application/json`
138
+
139
+
140
+ ### HTTP response details
141
+ | Status code | Description | Response headers |
142
+ |-------------|-------------|------------------|
143
+ | **200** | List of messages in the conversation | - |
144
+ | **401** | Unauthorized | - |
145
+ | **403** | Forbidden | - |
146
+ | **404** | Conversation not found | - |
147
+
148
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
149
+
150
+
151
+ ## getConversations
152
+
153
+ > GetConversationList getConversations(page, pageSize)
154
+
155
+ List conversations for the current user
156
+
157
+ ### Example
158
+
159
+ ```ts
160
+ import {
161
+ Configuration,
162
+ ChatApi,
163
+ } from '@easyedu/js-lsm-api';
164
+ import type { GetConversationsRequest } from '@easyedu/js-lsm-api';
165
+
166
+ async function example() {
167
+ console.log("🚀 Testing @easyedu/js-lsm-api SDK...");
168
+ const api = new ChatApi();
169
+
170
+ const body = {
171
+ // number | Page number for pagination (optional)
172
+ page: 56,
173
+ // number | Number of items per page (optional)
174
+ pageSize: 56,
175
+ } satisfies GetConversationsRequest;
176
+
177
+ try {
178
+ const data = await api.getConversations(body);
179
+ console.log(data);
180
+ } catch (error) {
181
+ console.error(error);
182
+ }
183
+ }
184
+
185
+ // Run the test
186
+ example().catch(console.error);
187
+ ```
188
+
189
+ ### Parameters
190
+
191
+
192
+ | Name | Type | Description | Notes |
193
+ |------------- | ------------- | ------------- | -------------|
194
+ | **page** | `number` | Page number for pagination | [Optional] [Defaults to `1`] |
195
+ | **pageSize** | `number` | Number of items per page | [Optional] [Defaults to `20`] |
196
+
197
+ ### Return type
198
+
199
+ [**GetConversationList**](GetConversationList.md)
200
+
201
+ ### Authorization
202
+
203
+ No authorization required
204
+
205
+ ### HTTP request headers
206
+
207
+ - **Content-Type**: Not defined
208
+ - **Accept**: `application/json`
209
+
210
+
211
+ ### HTTP response details
212
+ | Status code | Description | Response headers |
213
+ |-------------|-------------|------------------|
214
+ | **200** | Paginated list of conversations | - |
215
+ | **401** | Unauthorized | - |
216
+ | **403** | Forbidden | - |
217
+
218
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
219
+
220
+
221
+ ## postConversation
222
+
223
+ > PostConversationResponse postConversation(postConversation)
224
+
225
+ Create a new conversation
226
+
227
+ ### Example
228
+
229
+ ```ts
230
+ import {
231
+ Configuration,
232
+ ChatApi,
233
+ } from '@easyedu/js-lsm-api';
234
+ import type { PostConversationRequest } from '@easyedu/js-lsm-api';
235
+
236
+ async function example() {
237
+ console.log("🚀 Testing @easyedu/js-lsm-api SDK...");
238
+ const api = new ChatApi();
239
+
240
+ const body = {
241
+ // PostConversation | Initial message to start the conversation
242
+ postConversation: ...,
243
+ } satisfies PostConversationRequest;
244
+
245
+ try {
246
+ const data = await api.postConversation(body);
247
+ console.log(data);
248
+ } catch (error) {
249
+ console.error(error);
250
+ }
251
+ }
252
+
253
+ // Run the test
254
+ example().catch(console.error);
255
+ ```
256
+
257
+ ### Parameters
258
+
259
+
260
+ | Name | Type | Description | Notes |
261
+ |------------- | ------------- | ------------- | -------------|
262
+ | **postConversation** | [PostConversation](PostConversation.md) | Initial message to start the conversation | |
263
+
264
+ ### Return type
265
+
266
+ [**PostConversationResponse**](PostConversationResponse.md)
267
+
268
+ ### Authorization
269
+
270
+ No authorization required
271
+
272
+ ### HTTP request headers
273
+
274
+ - **Content-Type**: `application/json`
275
+ - **Accept**: `application/json`
276
+
277
+
278
+ ### HTTP response details
279
+ | Status code | Description | Response headers |
280
+ |-------------|-------------|------------------|
281
+ | **201** | Conversation created with LLM response | - |
282
+ | **401** | Unauthorized | - |
283
+ | **403** | Forbidden | - |
284
+
285
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
286
+
287
+
288
+ ## postMessage
289
+
290
+ > PostMessageResponse postMessage(conversationId, postMessage)
291
+
292
+ Send a message to a conversation
293
+
294
+ ### Example
295
+
296
+ ```ts
297
+ import {
298
+ Configuration,
299
+ ChatApi,
300
+ } from '@easyedu/js-lsm-api';
301
+ import type { PostMessageRequest } from '@easyedu/js-lsm-api';
302
+
303
+ async function example() {
304
+ console.log("🚀 Testing @easyedu/js-lsm-api SDK...");
305
+ const api = new ChatApi();
306
+
307
+ const body = {
308
+ // string
309
+ conversationId: conversationId_example,
310
+ // PostMessage | Message to send
311
+ postMessage: ...,
312
+ } satisfies PostMessageRequest;
313
+
314
+ try {
315
+ const data = await api.postMessage(body);
316
+ console.log(data);
317
+ } catch (error) {
318
+ console.error(error);
319
+ }
320
+ }
321
+
322
+ // Run the test
323
+ example().catch(console.error);
324
+ ```
325
+
326
+ ### Parameters
327
+
328
+
329
+ | Name | Type | Description | Notes |
330
+ |------------- | ------------- | ------------- | -------------|
331
+ | **conversationId** | `string` | | [Defaults to `undefined`] |
332
+ | **postMessage** | [PostMessage](PostMessage.md) | Message to send | |
333
+
334
+ ### Return type
335
+
336
+ [**PostMessageResponse**](PostMessageResponse.md)
337
+
338
+ ### Authorization
339
+
340
+ No authorization required
341
+
342
+ ### HTTP request headers
343
+
344
+ - **Content-Type**: `application/json`
345
+ - **Accept**: `application/json`
346
+
347
+
348
+ ### HTTP response details
349
+ | Status code | Description | Response headers |
350
+ |-------------|-------------|------------------|
351
+ | **200** | LLM response to the message | - |
352
+ | **401** | Unauthorized | - |
353
+ | **403** | Forbidden | - |
354
+ | **404** | Conversation not found | - |
355
+
356
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
357
+
@@ -0,0 +1,38 @@
1
+
2
+ # GetChatMessage
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `role` | string
10
+ `content` | string
11
+ `createdAt` | number
12
+
13
+ ## Example
14
+
15
+ ```typescript
16
+ import type { GetChatMessage } from '@easyedu/js-lsm-api'
17
+
18
+ // TODO: Update the object below with actual values
19
+ const example = {
20
+ "role": null,
21
+ "content": null,
22
+ "createdAt": null,
23
+ } satisfies GetChatMessage
24
+
25
+ console.log(example)
26
+
27
+ // Convert the instance to a JSON string
28
+ const exampleJSON: string = JSON.stringify(example)
29
+ console.log(exampleJSON)
30
+
31
+ // Parse the JSON string back to an object
32
+ const exampleParsed = JSON.parse(exampleJSON) as GetChatMessage
33
+ console.log(exampleParsed)
34
+ ```
35
+
36
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
37
+
38
+
@@ -0,0 +1,40 @@
1
+
2
+ # GetConversation
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `id` | string
10
+ `title` | string
11
+ `createdAt` | number
12
+ `updatedAt` | number
13
+
14
+ ## Example
15
+
16
+ ```typescript
17
+ import type { GetConversation } from '@easyedu/js-lsm-api'
18
+
19
+ // TODO: Update the object below with actual values
20
+ const example = {
21
+ "id": null,
22
+ "title": null,
23
+ "createdAt": null,
24
+ "updatedAt": null,
25
+ } satisfies GetConversation
26
+
27
+ console.log(example)
28
+
29
+ // Convert the instance to a JSON string
30
+ const exampleJSON: string = JSON.stringify(example)
31
+ console.log(exampleJSON)
32
+
33
+ // Parse the JSON string back to an object
34
+ const exampleParsed = JSON.parse(exampleJSON) as GetConversation
35
+ console.log(exampleParsed)
36
+ ```
37
+
38
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
39
+
40
+
@@ -0,0 +1,42 @@
1
+
2
+ # GetConversationList
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `page` | number
10
+ `pageSize` | number
11
+ `totalPages` | number
12
+ `totalItems` | number
13
+ `items` | [Array<GetConversation>](GetConversation.md)
14
+
15
+ ## Example
16
+
17
+ ```typescript
18
+ import type { GetConversationList } from '@easyedu/js-lsm-api'
19
+
20
+ // TODO: Update the object below with actual values
21
+ const example = {
22
+ "page": null,
23
+ "pageSize": null,
24
+ "totalPages": null,
25
+ "totalItems": null,
26
+ "items": null,
27
+ } satisfies GetConversationList
28
+
29
+ console.log(example)
30
+
31
+ // Convert the instance to a JSON string
32
+ const exampleJSON: string = JSON.stringify(example)
33
+ console.log(exampleJSON)
34
+
35
+ // Parse the JSON string back to an object
36
+ const exampleParsed = JSON.parse(exampleJSON) as GetConversationList
37
+ console.log(exampleParsed)
38
+ ```
39
+
40
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
41
+
42
+
@@ -0,0 +1,34 @@
1
+
2
+ # PostConversation
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `message` | string
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import type { PostConversation } from '@easyedu/js-lsm-api'
15
+
16
+ // TODO: Update the object below with actual values
17
+ const example = {
18
+ "message": null,
19
+ } satisfies PostConversation
20
+
21
+ console.log(example)
22
+
23
+ // Convert the instance to a JSON string
24
+ const exampleJSON: string = JSON.stringify(example)
25
+ console.log(exampleJSON)
26
+
27
+ // Parse the JSON string back to an object
28
+ const exampleParsed = JSON.parse(exampleJSON) as PostConversation
29
+ console.log(exampleParsed)
30
+ ```
31
+
32
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
33
+
34
+
@@ -0,0 +1,38 @@
1
+
2
+ # PostConversationResponse
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `conversationId` | string
10
+ `title` | string
11
+ `response` | string
12
+
13
+ ## Example
14
+
15
+ ```typescript
16
+ import type { PostConversationResponse } from '@easyedu/js-lsm-api'
17
+
18
+ // TODO: Update the object below with actual values
19
+ const example = {
20
+ "conversationId": null,
21
+ "title": null,
22
+ "response": null,
23
+ } satisfies PostConversationResponse
24
+
25
+ console.log(example)
26
+
27
+ // Convert the instance to a JSON string
28
+ const exampleJSON: string = JSON.stringify(example)
29
+ console.log(exampleJSON)
30
+
31
+ // Parse the JSON string back to an object
32
+ const exampleParsed = JSON.parse(exampleJSON) as PostConversationResponse
33
+ console.log(exampleParsed)
34
+ ```
35
+
36
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
37
+
38
+
@@ -0,0 +1,34 @@
1
+
2
+ # PostMessage
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `message` | string
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import type { PostMessage } from '@easyedu/js-lsm-api'
15
+
16
+ // TODO: Update the object below with actual values
17
+ const example = {
18
+ "message": null,
19
+ } satisfies PostMessage
20
+
21
+ console.log(example)
22
+
23
+ // Convert the instance to a JSON string
24
+ const exampleJSON: string = JSON.stringify(example)
25
+ console.log(exampleJSON)
26
+
27
+ // Parse the JSON string back to an object
28
+ const exampleParsed = JSON.parse(exampleJSON) as PostMessage
29
+ console.log(exampleParsed)
30
+ ```
31
+
32
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
33
+
34
+
@@ -0,0 +1,36 @@
1
+
2
+ # PostMessageResponse
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `conversationId` | string
10
+ `response` | string
11
+
12
+ ## Example
13
+
14
+ ```typescript
15
+ import type { PostMessageResponse } from '@easyedu/js-lsm-api'
16
+
17
+ // TODO: Update the object below with actual values
18
+ const example = {
19
+ "conversationId": null,
20
+ "response": null,
21
+ } satisfies PostMessageResponse
22
+
23
+ console.log(example)
24
+
25
+ // Convert the instance to a JSON string
26
+ const exampleJSON: string = JSON.stringify(example)
27
+ console.log(exampleJSON)
28
+
29
+ // Parse the JSON string back to an object
30
+ const exampleParsed = JSON.parse(exampleJSON) as PostMessageResponse
31
+ console.log(exampleParsed)
32
+ ```
33
+
34
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
35
+
36
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@easyedu/js-lsm-api",
3
- "version": "1.38.0",
3
+ "version": "1.40.0",
4
4
  "description": "OpenAPI client for @easyedu/js-lsm-api",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {