@knowledge-stack/ksapi 1.41.0 → 1.42.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.
- package/.openapi-generator/FILES +8 -0
- package/README.md +18 -9
- package/dist/apis/ApiKeysApi.d.ts +187 -0
- package/dist/apis/ApiKeysApi.js +193 -0
- package/dist/apis/AuthApi.d.ts +6 -0
- package/dist/apis/AuthApi.js +6 -0
- package/dist/apis/ChunkLineagesApi.d.ts +9 -0
- package/dist/apis/ChunkLineagesApi.js +9 -0
- package/dist/apis/ChunksApi.d.ts +24 -0
- package/dist/apis/ChunksApi.js +24 -0
- package/dist/apis/DocumentVersionsApi.d.ts +21 -0
- package/dist/apis/DocumentVersionsApi.js +21 -0
- package/dist/apis/DocumentsApi.d.ts +21 -0
- package/dist/apis/DocumentsApi.js +21 -0
- package/dist/apis/FoldersApi.d.ts +21 -0
- package/dist/apis/FoldersApi.js +21 -0
- package/dist/apis/InvitesApi.d.ts +12 -0
- package/dist/apis/InvitesApi.js +12 -0
- package/dist/apis/PathPartsApi.d.ts +18 -0
- package/dist/apis/PathPartsApi.js +18 -0
- package/dist/apis/SectionsApi.d.ts +12 -0
- package/dist/apis/SectionsApi.js +12 -0
- package/dist/apis/TagsApi.d.ts +15 -0
- package/dist/apis/TagsApi.js +15 -0
- package/dist/apis/TenantsApi.d.ts +24 -0
- package/dist/apis/TenantsApi.js +24 -0
- package/dist/apis/ThreadMessagesApi.d.ts +9 -0
- package/dist/apis/ThreadMessagesApi.js +9 -0
- package/dist/apis/ThreadsApi.d.ts +21 -0
- package/dist/apis/ThreadsApi.js +21 -0
- package/dist/apis/UserPermissionsApi.d.ts +12 -0
- package/dist/apis/UserPermissionsApi.js +12 -0
- package/dist/apis/UsersApi.d.ts +6 -0
- package/dist/apis/UsersApi.js +6 -0
- package/dist/apis/WorkflowsApi.d.ts +9 -0
- package/dist/apis/WorkflowsApi.js +9 -0
- package/dist/apis/index.d.ts +1 -0
- package/dist/apis/index.js +1 -0
- package/dist/esm/apis/ApiKeysApi.d.ts +187 -0
- package/dist/esm/apis/ApiKeysApi.js +189 -0
- package/dist/esm/apis/AuthApi.d.ts +6 -0
- package/dist/esm/apis/AuthApi.js +6 -0
- package/dist/esm/apis/ChunkLineagesApi.d.ts +9 -0
- package/dist/esm/apis/ChunkLineagesApi.js +9 -0
- package/dist/esm/apis/ChunksApi.d.ts +24 -0
- package/dist/esm/apis/ChunksApi.js +24 -0
- package/dist/esm/apis/DocumentVersionsApi.d.ts +21 -0
- package/dist/esm/apis/DocumentVersionsApi.js +21 -0
- package/dist/esm/apis/DocumentsApi.d.ts +21 -0
- package/dist/esm/apis/DocumentsApi.js +21 -0
- package/dist/esm/apis/FoldersApi.d.ts +21 -0
- package/dist/esm/apis/FoldersApi.js +21 -0
- package/dist/esm/apis/InvitesApi.d.ts +12 -0
- package/dist/esm/apis/InvitesApi.js +12 -0
- package/dist/esm/apis/PathPartsApi.d.ts +18 -0
- package/dist/esm/apis/PathPartsApi.js +18 -0
- package/dist/esm/apis/SectionsApi.d.ts +12 -0
- package/dist/esm/apis/SectionsApi.js +12 -0
- package/dist/esm/apis/TagsApi.d.ts +15 -0
- package/dist/esm/apis/TagsApi.js +15 -0
- package/dist/esm/apis/TenantsApi.d.ts +24 -0
- package/dist/esm/apis/TenantsApi.js +24 -0
- package/dist/esm/apis/ThreadMessagesApi.d.ts +9 -0
- package/dist/esm/apis/ThreadMessagesApi.js +9 -0
- package/dist/esm/apis/ThreadsApi.d.ts +21 -0
- package/dist/esm/apis/ThreadsApi.js +21 -0
- package/dist/esm/apis/UserPermissionsApi.d.ts +12 -0
- package/dist/esm/apis/UserPermissionsApi.js +12 -0
- package/dist/esm/apis/UsersApi.d.ts +6 -0
- package/dist/esm/apis/UsersApi.js +6 -0
- package/dist/esm/apis/WorkflowsApi.d.ts +9 -0
- package/dist/esm/apis/WorkflowsApi.js +9 -0
- package/dist/esm/apis/index.d.ts +1 -0
- package/dist/esm/apis/index.js +1 -0
- package/dist/esm/models/ApiKeyResponse.d.ts +65 -0
- package/dist/esm/models/ApiKeyResponse.js +56 -0
- package/dist/esm/models/CreateApiKeyRequest.d.ts +47 -0
- package/dist/esm/models/CreateApiKeyRequest.js +49 -0
- package/dist/esm/models/CreateApiKeyResponse.d.ts +71 -0
- package/dist/esm/models/CreateApiKeyResponse.js +60 -0
- package/dist/esm/models/index.d.ts +3 -0
- package/dist/esm/models/index.js +3 -0
- package/dist/models/ApiKeyResponse.d.ts +65 -0
- package/dist/models/ApiKeyResponse.js +64 -0
- package/dist/models/CreateApiKeyRequest.d.ts +47 -0
- package/dist/models/CreateApiKeyRequest.js +57 -0
- package/dist/models/CreateApiKeyResponse.d.ts +71 -0
- package/dist/models/CreateApiKeyResponse.js +68 -0
- package/dist/models/index.d.ts +3 -0
- package/dist/models/index.js +3 -0
- package/docs/ApiKeyResponse.md +41 -0
- package/docs/ApiKeysApi.md +293 -0
- package/docs/AuthApi.md +8 -2
- package/docs/ChunkLineagesApi.md +12 -3
- package/docs/ChunksApi.md +32 -8
- package/docs/CreateApiKeyRequest.md +35 -0
- package/docs/CreateApiKeyResponse.md +43 -0
- package/docs/DocumentVersionsApi.md +28 -7
- package/docs/DocumentsApi.md +28 -7
- package/docs/FoldersApi.md +28 -7
- package/docs/InvitesApi.md +16 -4
- package/docs/PathPartsApi.md +24 -6
- package/docs/SectionsApi.md +16 -4
- package/docs/TagsApi.md +20 -5
- package/docs/TenantsApi.md +32 -8
- package/docs/ThreadMessagesApi.md +12 -3
- package/docs/ThreadsApi.md +28 -7
- package/docs/UserPermissionsApi.md +16 -4
- package/docs/UsersApi.md +8 -2
- package/docs/WorkflowsApi.md +12 -3
- package/package.json +1 -1
- package/src/apis/ApiKeysApi.ts +350 -0
- package/src/apis/AuthApi.ts +14 -0
- package/src/apis/ChunkLineagesApi.ts +21 -0
- package/src/apis/ChunksApi.ts +56 -0
- package/src/apis/DocumentVersionsApi.ts +49 -0
- package/src/apis/DocumentsApi.ts +49 -0
- package/src/apis/FoldersApi.ts +49 -0
- package/src/apis/InvitesApi.ts +28 -0
- package/src/apis/PathPartsApi.ts +42 -0
- package/src/apis/SectionsApi.ts +28 -0
- package/src/apis/TagsApi.ts +35 -0
- package/src/apis/TenantsApi.ts +56 -0
- package/src/apis/ThreadMessagesApi.ts +21 -0
- package/src/apis/ThreadsApi.ts +49 -0
- package/src/apis/UserPermissionsApi.ts +28 -0
- package/src/apis/UsersApi.ts +14 -0
- package/src/apis/WorkflowsApi.ts +21 -0
- package/src/apis/index.ts +1 -0
- package/src/models/ApiKeyResponse.ts +110 -0
- package/src/models/CreateApiKeyRequest.ts +87 -0
- package/src/models/CreateApiKeyResponse.ts +119 -0
- package/src/models/index.ts +3 -0
package/docs/PathPartsApi.md
CHANGED
|
@@ -15,7 +15,7 @@ All URIs are relative to *http://localhost:8000*
|
|
|
15
15
|
|
|
16
16
|
## bulkAddPathPartTags
|
|
17
17
|
|
|
18
|
-
> PathPartTagsResponse bulkAddPathPartTags(pathPartId, bulkTagRequest, ksUat)
|
|
18
|
+
> PathPartTagsResponse bulkAddPathPartTags(pathPartId, bulkTagRequest, authorization, ksUat)
|
|
19
19
|
|
|
20
20
|
Bulk Add Path Part Tags Handler
|
|
21
21
|
|
|
@@ -40,6 +40,8 @@ async function example() {
|
|
|
40
40
|
// BulkTagRequest
|
|
41
41
|
bulkTagRequest: ...,
|
|
42
42
|
// string (optional)
|
|
43
|
+
authorization: authorization_example,
|
|
44
|
+
// string (optional)
|
|
43
45
|
ksUat: ksUat_example,
|
|
44
46
|
} satisfies BulkAddPathPartTagsRequest;
|
|
45
47
|
|
|
@@ -62,6 +64,7 @@ example().catch(console.error);
|
|
|
62
64
|
|------------- | ------------- | ------------- | -------------|
|
|
63
65
|
| **pathPartId** | `string` | | [Defaults to `undefined`] |
|
|
64
66
|
| **bulkTagRequest** | [BulkTagRequest](BulkTagRequest.md) | | |
|
|
67
|
+
| **authorization** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
65
68
|
| **ksUat** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
66
69
|
|
|
67
70
|
### Return type
|
|
@@ -89,7 +92,7 @@ No authorization required
|
|
|
89
92
|
|
|
90
93
|
## bulkRemovePathPartTags
|
|
91
94
|
|
|
92
|
-
> PathPartTagsResponse bulkRemovePathPartTags(pathPartId, bulkTagRequest, ksUat)
|
|
95
|
+
> PathPartTagsResponse bulkRemovePathPartTags(pathPartId, bulkTagRequest, authorization, ksUat)
|
|
93
96
|
|
|
94
97
|
Bulk Remove Path Part Tags Handler
|
|
95
98
|
|
|
@@ -114,6 +117,8 @@ async function example() {
|
|
|
114
117
|
// BulkTagRequest
|
|
115
118
|
bulkTagRequest: ...,
|
|
116
119
|
// string (optional)
|
|
120
|
+
authorization: authorization_example,
|
|
121
|
+
// string (optional)
|
|
117
122
|
ksUat: ksUat_example,
|
|
118
123
|
} satisfies BulkRemovePathPartTagsRequest;
|
|
119
124
|
|
|
@@ -136,6 +141,7 @@ example().catch(console.error);
|
|
|
136
141
|
|------------- | ------------- | ------------- | -------------|
|
|
137
142
|
| **pathPartId** | `string` | | [Defaults to `undefined`] |
|
|
138
143
|
| **bulkTagRequest** | [BulkTagRequest](BulkTagRequest.md) | | |
|
|
144
|
+
| **authorization** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
139
145
|
| **ksUat** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
140
146
|
|
|
141
147
|
### Return type
|
|
@@ -163,7 +169,7 @@ No authorization required
|
|
|
163
169
|
|
|
164
170
|
## getPathPart
|
|
165
171
|
|
|
166
|
-
> PathPartResponse getPathPart(pathPartId, ksUat)
|
|
172
|
+
> PathPartResponse getPathPart(pathPartId, authorization, ksUat)
|
|
167
173
|
|
|
168
174
|
Get Path Part Handler
|
|
169
175
|
|
|
@@ -186,6 +192,8 @@ async function example() {
|
|
|
186
192
|
// string
|
|
187
193
|
pathPartId: 38400000-8cf0-11bd-b23e-10b96e4ef00d,
|
|
188
194
|
// string (optional)
|
|
195
|
+
authorization: authorization_example,
|
|
196
|
+
// string (optional)
|
|
189
197
|
ksUat: ksUat_example,
|
|
190
198
|
} satisfies GetPathPartRequest;
|
|
191
199
|
|
|
@@ -207,6 +215,7 @@ example().catch(console.error);
|
|
|
207
215
|
| Name | Type | Description | Notes |
|
|
208
216
|
|------------- | ------------- | ------------- | -------------|
|
|
209
217
|
| **pathPartId** | `string` | | [Defaults to `undefined`] |
|
|
218
|
+
| **authorization** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
210
219
|
| **ksUat** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
211
220
|
|
|
212
221
|
### Return type
|
|
@@ -234,7 +243,7 @@ No authorization required
|
|
|
234
243
|
|
|
235
244
|
## getPathPartSubtreeChunks
|
|
236
245
|
|
|
237
|
-
> SubtreeChunksResponse getPathPartSubtreeChunks(pathPartId, ksUat)
|
|
246
|
+
> SubtreeChunksResponse getPathPartSubtreeChunks(pathPartId, authorization, ksUat)
|
|
238
247
|
|
|
239
248
|
Get Path Part Subtree Chunks Handler
|
|
240
249
|
|
|
@@ -257,6 +266,8 @@ async function example() {
|
|
|
257
266
|
// string
|
|
258
267
|
pathPartId: 38400000-8cf0-11bd-b23e-10b96e4ef00d,
|
|
259
268
|
// string (optional)
|
|
269
|
+
authorization: authorization_example,
|
|
270
|
+
// string (optional)
|
|
260
271
|
ksUat: ksUat_example,
|
|
261
272
|
} satisfies GetPathPartSubtreeChunksRequest;
|
|
262
273
|
|
|
@@ -278,6 +289,7 @@ example().catch(console.error);
|
|
|
278
289
|
| Name | Type | Description | Notes |
|
|
279
290
|
|------------- | ------------- | ------------- | -------------|
|
|
280
291
|
| **pathPartId** | `string` | | [Defaults to `undefined`] |
|
|
292
|
+
| **authorization** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
281
293
|
| **ksUat** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
282
294
|
|
|
283
295
|
### Return type
|
|
@@ -305,7 +317,7 @@ No authorization required
|
|
|
305
317
|
|
|
306
318
|
## getPathPartTags
|
|
307
319
|
|
|
308
|
-
> PathPartTagsResponse getPathPartTags(pathPartId, includeInherited, ksUat)
|
|
320
|
+
> PathPartTagsResponse getPathPartTags(pathPartId, includeInherited, authorization, ksUat)
|
|
309
321
|
|
|
310
322
|
Get Path Part Tags Handler
|
|
311
323
|
|
|
@@ -330,6 +342,8 @@ async function example() {
|
|
|
330
342
|
// boolean | Include tags inherited from ancestor path parts (optional)
|
|
331
343
|
includeInherited: true,
|
|
332
344
|
// string (optional)
|
|
345
|
+
authorization: authorization_example,
|
|
346
|
+
// string (optional)
|
|
333
347
|
ksUat: ksUat_example,
|
|
334
348
|
} satisfies GetPathPartTagsRequest;
|
|
335
349
|
|
|
@@ -352,6 +366,7 @@ example().catch(console.error);
|
|
|
352
366
|
|------------- | ------------- | ------------- | -------------|
|
|
353
367
|
| **pathPartId** | `string` | | [Defaults to `undefined`] |
|
|
354
368
|
| **includeInherited** | `boolean` | Include tags inherited from ancestor path parts | [Optional] [Defaults to `false`] |
|
|
369
|
+
| **authorization** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
355
370
|
| **ksUat** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
356
371
|
|
|
357
372
|
### Return type
|
|
@@ -379,7 +394,7 @@ No authorization required
|
|
|
379
394
|
|
|
380
395
|
## listPathParts
|
|
381
396
|
|
|
382
|
-
> PaginatedResponsePathPartResponse listPathParts(parentPathId, maxDepth, sortOrder, limit, offset, ksUat)
|
|
397
|
+
> PaginatedResponsePathPartResponse listPathParts(parentPathId, maxDepth, sortOrder, limit, offset, authorization, ksUat)
|
|
383
398
|
|
|
384
399
|
List Path Parts Handler
|
|
385
400
|
|
|
@@ -410,6 +425,8 @@ async function example() {
|
|
|
410
425
|
// number | Number of items to skip (optional)
|
|
411
426
|
offset: 56,
|
|
412
427
|
// string (optional)
|
|
428
|
+
authorization: authorization_example,
|
|
429
|
+
// string (optional)
|
|
413
430
|
ksUat: ksUat_example,
|
|
414
431
|
} satisfies ListPathPartsRequest;
|
|
415
432
|
|
|
@@ -435,6 +452,7 @@ example().catch(console.error);
|
|
|
435
452
|
| **sortOrder** | `PathOrder` | Sort order for results (default: LOGICAL) | [Optional] [Defaults to `undefined`] [Enum: LOGICAL, NAME, UPDATED_AT, CREATED_AT] |
|
|
436
453
|
| **limit** | `number` | Number of items per page | [Optional] [Defaults to `20`] |
|
|
437
454
|
| **offset** | `number` | Number of items to skip | [Optional] [Defaults to `0`] |
|
|
455
|
+
| **authorization** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
438
456
|
| **ksUat** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
439
457
|
|
|
440
458
|
### Return type
|
package/docs/SectionsApi.md
CHANGED
|
@@ -13,7 +13,7 @@ All URIs are relative to *http://localhost:8000*
|
|
|
13
13
|
|
|
14
14
|
## createSection
|
|
15
15
|
|
|
16
|
-
> SectionResponse createSection(createSectionRequest, ksUat)
|
|
16
|
+
> SectionResponse createSection(createSectionRequest, authorization, ksUat)
|
|
17
17
|
|
|
18
18
|
Create Section Handler
|
|
19
19
|
|
|
@@ -36,6 +36,8 @@ async function example() {
|
|
|
36
36
|
// CreateSectionRequest
|
|
37
37
|
createSectionRequest: ...,
|
|
38
38
|
// string (optional)
|
|
39
|
+
authorization: authorization_example,
|
|
40
|
+
// string (optional)
|
|
39
41
|
ksUat: ksUat_example,
|
|
40
42
|
} satisfies CreateSectionOperationRequest;
|
|
41
43
|
|
|
@@ -57,6 +59,7 @@ example().catch(console.error);
|
|
|
57
59
|
| Name | Type | Description | Notes |
|
|
58
60
|
|------------- | ------------- | ------------- | -------------|
|
|
59
61
|
| **createSectionRequest** | [CreateSectionRequest](CreateSectionRequest.md) | | |
|
|
62
|
+
| **authorization** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
60
63
|
| **ksUat** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
61
64
|
|
|
62
65
|
### Return type
|
|
@@ -84,7 +87,7 @@ No authorization required
|
|
|
84
87
|
|
|
85
88
|
## deleteSection
|
|
86
89
|
|
|
87
|
-
> deleteSection(sectionId, ksUat)
|
|
90
|
+
> deleteSection(sectionId, authorization, ksUat)
|
|
88
91
|
|
|
89
92
|
Delete Section Handler
|
|
90
93
|
|
|
@@ -107,6 +110,8 @@ async function example() {
|
|
|
107
110
|
// string
|
|
108
111
|
sectionId: 38400000-8cf0-11bd-b23e-10b96e4ef00d,
|
|
109
112
|
// string (optional)
|
|
113
|
+
authorization: authorization_example,
|
|
114
|
+
// string (optional)
|
|
110
115
|
ksUat: ksUat_example,
|
|
111
116
|
} satisfies DeleteSectionRequest;
|
|
112
117
|
|
|
@@ -128,6 +133,7 @@ example().catch(console.error);
|
|
|
128
133
|
| Name | Type | Description | Notes |
|
|
129
134
|
|------------- | ------------- | ------------- | -------------|
|
|
130
135
|
| **sectionId** | `string` | | [Defaults to `undefined`] |
|
|
136
|
+
| **authorization** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
131
137
|
| **ksUat** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
132
138
|
|
|
133
139
|
### Return type
|
|
@@ -155,7 +161,7 @@ No authorization required
|
|
|
155
161
|
|
|
156
162
|
## getSection
|
|
157
163
|
|
|
158
|
-
> SectionResponse getSection(sectionId, ksUat)
|
|
164
|
+
> SectionResponse getSection(sectionId, authorization, ksUat)
|
|
159
165
|
|
|
160
166
|
Get Section Handler
|
|
161
167
|
|
|
@@ -178,6 +184,8 @@ async function example() {
|
|
|
178
184
|
// string
|
|
179
185
|
sectionId: 38400000-8cf0-11bd-b23e-10b96e4ef00d,
|
|
180
186
|
// string (optional)
|
|
187
|
+
authorization: authorization_example,
|
|
188
|
+
// string (optional)
|
|
181
189
|
ksUat: ksUat_example,
|
|
182
190
|
} satisfies GetSectionRequest;
|
|
183
191
|
|
|
@@ -199,6 +207,7 @@ example().catch(console.error);
|
|
|
199
207
|
| Name | Type | Description | Notes |
|
|
200
208
|
|------------- | ------------- | ------------- | -------------|
|
|
201
209
|
| **sectionId** | `string` | | [Defaults to `undefined`] |
|
|
210
|
+
| **authorization** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
202
211
|
| **ksUat** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
203
212
|
|
|
204
213
|
### Return type
|
|
@@ -226,7 +235,7 @@ No authorization required
|
|
|
226
235
|
|
|
227
236
|
## updateSection
|
|
228
237
|
|
|
229
|
-
> SectionResponse updateSection(sectionId, updateSectionRequest, ksUat)
|
|
238
|
+
> SectionResponse updateSection(sectionId, updateSectionRequest, authorization, ksUat)
|
|
230
239
|
|
|
231
240
|
Update Section Handler
|
|
232
241
|
|
|
@@ -251,6 +260,8 @@ async function example() {
|
|
|
251
260
|
// UpdateSectionRequest
|
|
252
261
|
updateSectionRequest: ...,
|
|
253
262
|
// string (optional)
|
|
263
|
+
authorization: authorization_example,
|
|
264
|
+
// string (optional)
|
|
254
265
|
ksUat: ksUat_example,
|
|
255
266
|
} satisfies UpdateSectionOperationRequest;
|
|
256
267
|
|
|
@@ -273,6 +284,7 @@ example().catch(console.error);
|
|
|
273
284
|
|------------- | ------------- | ------------- | -------------|
|
|
274
285
|
| **sectionId** | `string` | | [Defaults to `undefined`] |
|
|
275
286
|
| **updateSectionRequest** | [UpdateSectionRequest](UpdateSectionRequest.md) | | |
|
|
287
|
+
| **authorization** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
276
288
|
| **ksUat** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
277
289
|
|
|
278
290
|
### Return type
|
package/docs/TagsApi.md
CHANGED
|
@@ -14,7 +14,7 @@ All URIs are relative to *http://localhost:8000*
|
|
|
14
14
|
|
|
15
15
|
## createTag
|
|
16
16
|
|
|
17
|
-
> TagResponse createTag(createTagRequest, ksUat)
|
|
17
|
+
> TagResponse createTag(createTagRequest, authorization, ksUat)
|
|
18
18
|
|
|
19
19
|
Create Tag Handler
|
|
20
20
|
|
|
@@ -37,6 +37,8 @@ async function example() {
|
|
|
37
37
|
// CreateTagRequest
|
|
38
38
|
createTagRequest: ...,
|
|
39
39
|
// string (optional)
|
|
40
|
+
authorization: authorization_example,
|
|
41
|
+
// string (optional)
|
|
40
42
|
ksUat: ksUat_example,
|
|
41
43
|
} satisfies CreateTagOperationRequest;
|
|
42
44
|
|
|
@@ -58,6 +60,7 @@ example().catch(console.error);
|
|
|
58
60
|
| Name | Type | Description | Notes |
|
|
59
61
|
|------------- | ------------- | ------------- | -------------|
|
|
60
62
|
| **createTagRequest** | [CreateTagRequest](CreateTagRequest.md) | | |
|
|
63
|
+
| **authorization** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
61
64
|
| **ksUat** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
62
65
|
|
|
63
66
|
### Return type
|
|
@@ -85,7 +88,7 @@ No authorization required
|
|
|
85
88
|
|
|
86
89
|
## deleteTag
|
|
87
90
|
|
|
88
|
-
> deleteTag(tagId, ksUat)
|
|
91
|
+
> deleteTag(tagId, authorization, ksUat)
|
|
89
92
|
|
|
90
93
|
Delete Tag Handler
|
|
91
94
|
|
|
@@ -108,6 +111,8 @@ async function example() {
|
|
|
108
111
|
// string
|
|
109
112
|
tagId: 38400000-8cf0-11bd-b23e-10b96e4ef00d,
|
|
110
113
|
// string (optional)
|
|
114
|
+
authorization: authorization_example,
|
|
115
|
+
// string (optional)
|
|
111
116
|
ksUat: ksUat_example,
|
|
112
117
|
} satisfies DeleteTagRequest;
|
|
113
118
|
|
|
@@ -129,6 +134,7 @@ example().catch(console.error);
|
|
|
129
134
|
| Name | Type | Description | Notes |
|
|
130
135
|
|------------- | ------------- | ------------- | -------------|
|
|
131
136
|
| **tagId** | `string` | | [Defaults to `undefined`] |
|
|
137
|
+
| **authorization** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
132
138
|
| **ksUat** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
133
139
|
|
|
134
140
|
### Return type
|
|
@@ -156,7 +162,7 @@ No authorization required
|
|
|
156
162
|
|
|
157
163
|
## getTag
|
|
158
164
|
|
|
159
|
-
> TagResponse getTag(tagId, ksUat)
|
|
165
|
+
> TagResponse getTag(tagId, authorization, ksUat)
|
|
160
166
|
|
|
161
167
|
Get Tag Handler
|
|
162
168
|
|
|
@@ -179,6 +185,8 @@ async function example() {
|
|
|
179
185
|
// string
|
|
180
186
|
tagId: 38400000-8cf0-11bd-b23e-10b96e4ef00d,
|
|
181
187
|
// string (optional)
|
|
188
|
+
authorization: authorization_example,
|
|
189
|
+
// string (optional)
|
|
182
190
|
ksUat: ksUat_example,
|
|
183
191
|
} satisfies GetTagRequest;
|
|
184
192
|
|
|
@@ -200,6 +208,7 @@ example().catch(console.error);
|
|
|
200
208
|
| Name | Type | Description | Notes |
|
|
201
209
|
|------------- | ------------- | ------------- | -------------|
|
|
202
210
|
| **tagId** | `string` | | [Defaults to `undefined`] |
|
|
211
|
+
| **authorization** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
203
212
|
| **ksUat** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
204
213
|
|
|
205
214
|
### Return type
|
|
@@ -227,7 +236,7 @@ No authorization required
|
|
|
227
236
|
|
|
228
237
|
## listTags
|
|
229
238
|
|
|
230
|
-
> PaginatedResponseTagResponse listTags(limit, offset, ksUat)
|
|
239
|
+
> PaginatedResponseTagResponse listTags(limit, offset, authorization, ksUat)
|
|
231
240
|
|
|
232
241
|
List Tags Handler
|
|
233
242
|
|
|
@@ -252,6 +261,8 @@ async function example() {
|
|
|
252
261
|
// number | Number of items to skip (optional)
|
|
253
262
|
offset: 56,
|
|
254
263
|
// string (optional)
|
|
264
|
+
authorization: authorization_example,
|
|
265
|
+
// string (optional)
|
|
255
266
|
ksUat: ksUat_example,
|
|
256
267
|
} satisfies ListTagsRequest;
|
|
257
268
|
|
|
@@ -274,6 +285,7 @@ example().catch(console.error);
|
|
|
274
285
|
|------------- | ------------- | ------------- | -------------|
|
|
275
286
|
| **limit** | `number` | Number of items per page | [Optional] [Defaults to `20`] |
|
|
276
287
|
| **offset** | `number` | Number of items to skip | [Optional] [Defaults to `0`] |
|
|
288
|
+
| **authorization** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
277
289
|
| **ksUat** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
278
290
|
|
|
279
291
|
### Return type
|
|
@@ -301,7 +313,7 @@ No authorization required
|
|
|
301
313
|
|
|
302
314
|
## updateTag
|
|
303
315
|
|
|
304
|
-
> TagResponse updateTag(tagId, updateTagRequest, ksUat)
|
|
316
|
+
> TagResponse updateTag(tagId, updateTagRequest, authorization, ksUat)
|
|
305
317
|
|
|
306
318
|
Update Tag Handler
|
|
307
319
|
|
|
@@ -326,6 +338,8 @@ async function example() {
|
|
|
326
338
|
// UpdateTagRequest
|
|
327
339
|
updateTagRequest: ...,
|
|
328
340
|
// string (optional)
|
|
341
|
+
authorization: authorization_example,
|
|
342
|
+
// string (optional)
|
|
329
343
|
ksUat: ksUat_example,
|
|
330
344
|
} satisfies UpdateTagOperationRequest;
|
|
331
345
|
|
|
@@ -348,6 +362,7 @@ example().catch(console.error);
|
|
|
348
362
|
|------------- | ------------- | ------------- | -------------|
|
|
349
363
|
| **tagId** | `string` | | [Defaults to `undefined`] |
|
|
350
364
|
| **updateTagRequest** | [UpdateTagRequest](UpdateTagRequest.md) | | |
|
|
365
|
+
| **authorization** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
351
366
|
| **ksUat** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
352
367
|
|
|
353
368
|
### Return type
|
package/docs/TenantsApi.md
CHANGED
|
@@ -17,7 +17,7 @@ All URIs are relative to *http://localhost:8000*
|
|
|
17
17
|
|
|
18
18
|
## createTenant
|
|
19
19
|
|
|
20
|
-
> TenantResponse createTenant(createTenantRequest, ksUat)
|
|
20
|
+
> TenantResponse createTenant(createTenantRequest, authorization, ksUat)
|
|
21
21
|
|
|
22
22
|
Create Tenant
|
|
23
23
|
|
|
@@ -40,6 +40,8 @@ async function example() {
|
|
|
40
40
|
// CreateTenantRequest
|
|
41
41
|
createTenantRequest: ...,
|
|
42
42
|
// string (optional)
|
|
43
|
+
authorization: authorization_example,
|
|
44
|
+
// string (optional)
|
|
43
45
|
ksUat: ksUat_example,
|
|
44
46
|
} satisfies CreateTenantOperationRequest;
|
|
45
47
|
|
|
@@ -61,6 +63,7 @@ example().catch(console.error);
|
|
|
61
63
|
| Name | Type | Description | Notes |
|
|
62
64
|
|------------- | ------------- | ------------- | -------------|
|
|
63
65
|
| **createTenantRequest** | [CreateTenantRequest](CreateTenantRequest.md) | | |
|
|
66
|
+
| **authorization** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
64
67
|
| **ksUat** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
65
68
|
|
|
66
69
|
### Return type
|
|
@@ -88,7 +91,7 @@ No authorization required
|
|
|
88
91
|
|
|
89
92
|
## deleteTenant
|
|
90
93
|
|
|
91
|
-
> deleteTenant(tenantId, ksUat)
|
|
94
|
+
> deleteTenant(tenantId, authorization, ksUat)
|
|
92
95
|
|
|
93
96
|
Delete Tenant
|
|
94
97
|
|
|
@@ -111,6 +114,8 @@ async function example() {
|
|
|
111
114
|
// string
|
|
112
115
|
tenantId: 38400000-8cf0-11bd-b23e-10b96e4ef00d,
|
|
113
116
|
// string (optional)
|
|
117
|
+
authorization: authorization_example,
|
|
118
|
+
// string (optional)
|
|
114
119
|
ksUat: ksUat_example,
|
|
115
120
|
} satisfies DeleteTenantRequest;
|
|
116
121
|
|
|
@@ -132,6 +137,7 @@ example().catch(console.error);
|
|
|
132
137
|
| Name | Type | Description | Notes |
|
|
133
138
|
|------------- | ------------- | ------------- | -------------|
|
|
134
139
|
| **tenantId** | `string` | | [Defaults to `undefined`] |
|
|
140
|
+
| **authorization** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
135
141
|
| **ksUat** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
136
142
|
|
|
137
143
|
### Return type
|
|
@@ -159,7 +165,7 @@ No authorization required
|
|
|
159
165
|
|
|
160
166
|
## deleteTenantUser
|
|
161
167
|
|
|
162
|
-
> deleteTenantUser(tenantId, userId, ksUat)
|
|
168
|
+
> deleteTenantUser(tenantId, userId, authorization, ksUat)
|
|
163
169
|
|
|
164
170
|
Delete Tenant User
|
|
165
171
|
|
|
@@ -184,6 +190,8 @@ async function example() {
|
|
|
184
190
|
// string
|
|
185
191
|
userId: 38400000-8cf0-11bd-b23e-10b96e4ef00d,
|
|
186
192
|
// string (optional)
|
|
193
|
+
authorization: authorization_example,
|
|
194
|
+
// string (optional)
|
|
187
195
|
ksUat: ksUat_example,
|
|
188
196
|
} satisfies DeleteTenantUserRequest;
|
|
189
197
|
|
|
@@ -206,6 +214,7 @@ example().catch(console.error);
|
|
|
206
214
|
|------------- | ------------- | ------------- | -------------|
|
|
207
215
|
| **tenantId** | `string` | | [Defaults to `undefined`] |
|
|
208
216
|
| **userId** | `string` | | [Defaults to `undefined`] |
|
|
217
|
+
| **authorization** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
209
218
|
| **ksUat** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
210
219
|
|
|
211
220
|
### Return type
|
|
@@ -233,7 +242,7 @@ No authorization required
|
|
|
233
242
|
|
|
234
243
|
## getTenant
|
|
235
244
|
|
|
236
|
-
> TenantResponse getTenant(tenantId, ksUat)
|
|
245
|
+
> TenantResponse getTenant(tenantId, authorization, ksUat)
|
|
237
246
|
|
|
238
247
|
Get Tenant
|
|
239
248
|
|
|
@@ -256,6 +265,8 @@ async function example() {
|
|
|
256
265
|
// string
|
|
257
266
|
tenantId: 38400000-8cf0-11bd-b23e-10b96e4ef00d,
|
|
258
267
|
// string (optional)
|
|
268
|
+
authorization: authorization_example,
|
|
269
|
+
// string (optional)
|
|
259
270
|
ksUat: ksUat_example,
|
|
260
271
|
} satisfies GetTenantRequest;
|
|
261
272
|
|
|
@@ -277,6 +288,7 @@ example().catch(console.error);
|
|
|
277
288
|
| Name | Type | Description | Notes |
|
|
278
289
|
|------------- | ------------- | ------------- | -------------|
|
|
279
290
|
| **tenantId** | `string` | | [Defaults to `undefined`] |
|
|
291
|
+
| **authorization** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
280
292
|
| **ksUat** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
281
293
|
|
|
282
294
|
### Return type
|
|
@@ -304,7 +316,7 @@ No authorization required
|
|
|
304
316
|
|
|
305
317
|
## listTenantUsers
|
|
306
318
|
|
|
307
|
-
> PaginatedResponseTenantUserResponse listTenantUsers(tenantId, limit, offset, ksUat)
|
|
319
|
+
> PaginatedResponseTenantUserResponse listTenantUsers(tenantId, limit, offset, authorization, ksUat)
|
|
308
320
|
|
|
309
321
|
List Tenant Users
|
|
310
322
|
|
|
@@ -331,6 +343,8 @@ async function example() {
|
|
|
331
343
|
// number | Number of items to skip (optional)
|
|
332
344
|
offset: 56,
|
|
333
345
|
// string (optional)
|
|
346
|
+
authorization: authorization_example,
|
|
347
|
+
// string (optional)
|
|
334
348
|
ksUat: ksUat_example,
|
|
335
349
|
} satisfies ListTenantUsersRequest;
|
|
336
350
|
|
|
@@ -354,6 +368,7 @@ example().catch(console.error);
|
|
|
354
368
|
| **tenantId** | `string` | | [Defaults to `undefined`] |
|
|
355
369
|
| **limit** | `number` | Number of items per page | [Optional] [Defaults to `20`] |
|
|
356
370
|
| **offset** | `number` | Number of items to skip | [Optional] [Defaults to `0`] |
|
|
371
|
+
| **authorization** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
357
372
|
| **ksUat** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
358
373
|
|
|
359
374
|
### Return type
|
|
@@ -381,7 +396,7 @@ No authorization required
|
|
|
381
396
|
|
|
382
397
|
## listTenants
|
|
383
398
|
|
|
384
|
-
> PaginatedResponseTenantResponse listTenants(limit, offset, ksUat)
|
|
399
|
+
> PaginatedResponseTenantResponse listTenants(limit, offset, authorization, ksUat)
|
|
385
400
|
|
|
386
401
|
List Tenants
|
|
387
402
|
|
|
@@ -406,6 +421,8 @@ async function example() {
|
|
|
406
421
|
// number | Number of items to skip (optional)
|
|
407
422
|
offset: 56,
|
|
408
423
|
// string (optional)
|
|
424
|
+
authorization: authorization_example,
|
|
425
|
+
// string (optional)
|
|
409
426
|
ksUat: ksUat_example,
|
|
410
427
|
} satisfies ListTenantsRequest;
|
|
411
428
|
|
|
@@ -428,6 +445,7 @@ example().catch(console.error);
|
|
|
428
445
|
|------------- | ------------- | ------------- | -------------|
|
|
429
446
|
| **limit** | `number` | Number of items per page | [Optional] [Defaults to `20`] |
|
|
430
447
|
| **offset** | `number` | Number of items to skip | [Optional] [Defaults to `0`] |
|
|
448
|
+
| **authorization** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
431
449
|
| **ksUat** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
432
450
|
|
|
433
451
|
### Return type
|
|
@@ -455,7 +473,7 @@ No authorization required
|
|
|
455
473
|
|
|
456
474
|
## updateTenant
|
|
457
475
|
|
|
458
|
-
> TenantResponse updateTenant(tenantId, updateTenantRequest, ksUat)
|
|
476
|
+
> TenantResponse updateTenant(tenantId, updateTenantRequest, authorization, ksUat)
|
|
459
477
|
|
|
460
478
|
Update Tenant
|
|
461
479
|
|
|
@@ -480,6 +498,8 @@ async function example() {
|
|
|
480
498
|
// UpdateTenantRequest
|
|
481
499
|
updateTenantRequest: ...,
|
|
482
500
|
// string (optional)
|
|
501
|
+
authorization: authorization_example,
|
|
502
|
+
// string (optional)
|
|
483
503
|
ksUat: ksUat_example,
|
|
484
504
|
} satisfies UpdateTenantOperationRequest;
|
|
485
505
|
|
|
@@ -502,6 +522,7 @@ example().catch(console.error);
|
|
|
502
522
|
|------------- | ------------- | ------------- | -------------|
|
|
503
523
|
| **tenantId** | `string` | | [Defaults to `undefined`] |
|
|
504
524
|
| **updateTenantRequest** | [UpdateTenantRequest](UpdateTenantRequest.md) | | |
|
|
525
|
+
| **authorization** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
505
526
|
| **ksUat** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
506
527
|
|
|
507
528
|
### Return type
|
|
@@ -529,7 +550,7 @@ No authorization required
|
|
|
529
550
|
|
|
530
551
|
## updateTenantUser
|
|
531
552
|
|
|
532
|
-
> TenantUserResponse updateTenantUser(tenantId, userId, tenantUserEditRequest, ksUat)
|
|
553
|
+
> TenantUserResponse updateTenantUser(tenantId, userId, tenantUserEditRequest, authorization, ksUat)
|
|
533
554
|
|
|
534
555
|
Update Tenant User
|
|
535
556
|
|
|
@@ -556,6 +577,8 @@ async function example() {
|
|
|
556
577
|
// TenantUserEditRequest
|
|
557
578
|
tenantUserEditRequest: ...,
|
|
558
579
|
// string (optional)
|
|
580
|
+
authorization: authorization_example,
|
|
581
|
+
// string (optional)
|
|
559
582
|
ksUat: ksUat_example,
|
|
560
583
|
} satisfies UpdateTenantUserRequest;
|
|
561
584
|
|
|
@@ -579,6 +602,7 @@ example().catch(console.error);
|
|
|
579
602
|
| **tenantId** | `string` | | [Defaults to `undefined`] |
|
|
580
603
|
| **userId** | `string` | | [Defaults to `undefined`] |
|
|
581
604
|
| **tenantUserEditRequest** | [TenantUserEditRequest](TenantUserEditRequest.md) | | |
|
|
605
|
+
| **authorization** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
582
606
|
| **ksUat** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
583
607
|
|
|
584
608
|
### Return type
|
|
@@ -12,7 +12,7 @@ All URIs are relative to *http://localhost:8000*
|
|
|
12
12
|
|
|
13
13
|
## createThreadMessage
|
|
14
14
|
|
|
15
|
-
> ThreadMessageResponse createThreadMessage(threadId, createThreadMessageRequest, ksUat)
|
|
15
|
+
> ThreadMessageResponse createThreadMessage(threadId, createThreadMessageRequest, authorization, ksUat)
|
|
16
16
|
|
|
17
17
|
Create Thread Message Handler
|
|
18
18
|
|
|
@@ -37,6 +37,8 @@ async function example() {
|
|
|
37
37
|
// CreateThreadMessageRequest
|
|
38
38
|
createThreadMessageRequest: ...,
|
|
39
39
|
// string (optional)
|
|
40
|
+
authorization: authorization_example,
|
|
41
|
+
// string (optional)
|
|
40
42
|
ksUat: ksUat_example,
|
|
41
43
|
} satisfies CreateThreadMessageOperationRequest;
|
|
42
44
|
|
|
@@ -59,6 +61,7 @@ example().catch(console.error);
|
|
|
59
61
|
|------------- | ------------- | ------------- | -------------|
|
|
60
62
|
| **threadId** | `string` | | [Defaults to `undefined`] |
|
|
61
63
|
| **createThreadMessageRequest** | [CreateThreadMessageRequest](CreateThreadMessageRequest.md) | | |
|
|
64
|
+
| **authorization** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
62
65
|
| **ksUat** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
63
66
|
|
|
64
67
|
### Return type
|
|
@@ -86,7 +89,7 @@ No authorization required
|
|
|
86
89
|
|
|
87
90
|
## getThreadMessage
|
|
88
91
|
|
|
89
|
-
> ThreadMessageResponse getThreadMessage(threadId, messageId, withDetails, ksUat)
|
|
92
|
+
> ThreadMessageResponse getThreadMessage(threadId, messageId, withDetails, authorization, ksUat)
|
|
90
93
|
|
|
91
94
|
Get Thread Message Handler
|
|
92
95
|
|
|
@@ -113,6 +116,8 @@ async function example() {
|
|
|
113
116
|
// boolean | Include execution steps in response (default true) (optional)
|
|
114
117
|
withDetails: true,
|
|
115
118
|
// string (optional)
|
|
119
|
+
authorization: authorization_example,
|
|
120
|
+
// string (optional)
|
|
116
121
|
ksUat: ksUat_example,
|
|
117
122
|
} satisfies GetThreadMessageRequest;
|
|
118
123
|
|
|
@@ -136,6 +141,7 @@ example().catch(console.error);
|
|
|
136
141
|
| **threadId** | `string` | | [Defaults to `undefined`] |
|
|
137
142
|
| **messageId** | `string` | | [Defaults to `undefined`] |
|
|
138
143
|
| **withDetails** | `boolean` | Include execution steps in response (default true) | [Optional] [Defaults to `true`] |
|
|
144
|
+
| **authorization** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
139
145
|
| **ksUat** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
140
146
|
|
|
141
147
|
### Return type
|
|
@@ -163,7 +169,7 @@ No authorization required
|
|
|
163
169
|
|
|
164
170
|
## listThreadMessages
|
|
165
171
|
|
|
166
|
-
> PaginatedResponseThreadMessageResponse listThreadMessages(threadId, before, withDetails, limit, offset, ksUat)
|
|
172
|
+
> PaginatedResponseThreadMessageResponse listThreadMessages(threadId, before, withDetails, limit, offset, authorization, ksUat)
|
|
167
173
|
|
|
168
174
|
List Thread Messages Handler
|
|
169
175
|
|
|
@@ -194,6 +200,8 @@ async function example() {
|
|
|
194
200
|
// number | Number of items to skip (optional)
|
|
195
201
|
offset: 56,
|
|
196
202
|
// string (optional)
|
|
203
|
+
authorization: authorization_example,
|
|
204
|
+
// string (optional)
|
|
197
205
|
ksUat: ksUat_example,
|
|
198
206
|
} satisfies ListThreadMessagesRequest;
|
|
199
207
|
|
|
@@ -219,6 +227,7 @@ example().catch(console.error);
|
|
|
219
227
|
| **withDetails** | `boolean` | Include execution steps in response (default false to reduce payload size) | [Optional] [Defaults to `false`] |
|
|
220
228
|
| **limit** | `number` | Number of items per page | [Optional] [Defaults to `20`] |
|
|
221
229
|
| **offset** | `number` | Number of items to skip | [Optional] [Defaults to `0`] |
|
|
230
|
+
| **authorization** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
222
231
|
| **ksUat** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
223
232
|
|
|
224
233
|
### Return type
|