@wildix/wim-knowledge-base-client 0.0.54 → 0.0.56

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.
@@ -10,7 +10,7 @@ const smithy_client_1 = require("@smithy/smithy-client");
10
10
  const se_CleanDataSourceCommand = async (input, context) => {
11
11
  const b = (0, core_2.requestBuilder)(input, context);
12
12
  const headers = {};
13
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/clean");
13
+ b.bp("/api/v1/data-sources/{dataSourceId}/clean");
14
14
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
15
15
  const query = (0, smithy_client_1.map)({
16
16
  [_c]: [, input[_cI]],
@@ -26,7 +26,7 @@ exports.se_CleanDataSourceCommand = se_CleanDataSourceCommand;
26
26
  const se_CloneDataSourceCommand = async (input, context) => {
27
27
  const b = (0, core_2.requestBuilder)(input, context);
28
28
  const headers = {};
29
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/clone");
29
+ b.bp("/api/v1/data-sources/{dataSourceId}/clone");
30
30
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
31
31
  const query = (0, smithy_client_1.map)({
32
32
  [_c]: [, input[_cI]],
@@ -44,7 +44,7 @@ const se_ConfigureDataSourceCommand = async (input, context) => {
44
44
  const headers = {
45
45
  'content-type': 'application/json',
46
46
  };
47
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/configure");
47
+ b.bp("/api/v1/data-sources/{dataSourceId}/configure");
48
48
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
49
49
  const query = (0, smithy_client_1.map)({
50
50
  [_c]: [, input[_cI]],
@@ -66,7 +66,7 @@ const se_CreateDataSourceCommand = async (input, context) => {
66
66
  const headers = {
67
67
  'content-type': 'application/json',
68
68
  };
69
- b.bp("/api/v1/knowledge-bases/data-sources");
69
+ b.bp("/api/v1/data-sources");
70
70
  const query = (0, smithy_client_1.map)({
71
71
  [_c]: [, input[_cI]],
72
72
  });
@@ -88,7 +88,7 @@ const se_CreateDocumentCommand = async (input, context) => {
88
88
  const headers = {
89
89
  'content-type': 'application/json',
90
90
  };
91
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/documents");
91
+ b.bp("/api/v1/data-sources/{dataSourceId}/documents");
92
92
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
93
93
  const query = (0, smithy_client_1.map)({
94
94
  [_c]: [, input[_cI]],
@@ -135,7 +135,7 @@ exports.se_CreateKnowledgeBaseCommand = se_CreateKnowledgeBaseCommand;
135
135
  const se_DeleteDataSourceCommand = async (input, context) => {
136
136
  const b = (0, core_2.requestBuilder)(input, context);
137
137
  const headers = {};
138
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}");
138
+ b.bp("/api/v1/data-sources/{dataSourceId}");
139
139
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
140
140
  const query = (0, smithy_client_1.map)({
141
141
  [_c]: [, input[_cI]],
@@ -151,7 +151,7 @@ exports.se_DeleteDataSourceCommand = se_DeleteDataSourceCommand;
151
151
  const se_DeleteDocumentCommand = async (input, context) => {
152
152
  const b = (0, core_2.requestBuilder)(input, context);
153
153
  const headers = {};
154
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/documents/{documentId}");
154
+ b.bp("/api/v1/data-sources/{dataSourceId}/documents/{documentId}");
155
155
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
156
156
  b.p('documentId', () => input.documentId, '{documentId}', false);
157
157
  const query = (0, smithy_client_1.map)({
@@ -186,7 +186,7 @@ const se_DescribeDataSourceCommand = async (input, context) => {
186
186
  const headers = {
187
187
  'content-type': 'application/json',
188
188
  };
189
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/describe");
189
+ b.bp("/api/v1/data-sources/{dataSourceId}/describe");
190
190
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
191
191
  const query = (0, smithy_client_1.map)({
192
192
  [_c]: [, input[_cI]],
@@ -230,7 +230,7 @@ exports.se_GenerateSearchAnswerCommand = se_GenerateSearchAnswerCommand;
230
230
  const se_GetDataSourceCommand = async (input, context) => {
231
231
  const b = (0, core_2.requestBuilder)(input, context);
232
232
  const headers = {};
233
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}");
233
+ b.bp("/api/v1/data-sources/{dataSourceId}");
234
234
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
235
235
  const query = (0, smithy_client_1.map)({
236
236
  [_c]: [, input[_cI]],
@@ -246,7 +246,7 @@ exports.se_GetDataSourceCommand = se_GetDataSourceCommand;
246
246
  const se_GetDataSourceSyncStatusCommand = async (input, context) => {
247
247
  const b = (0, core_2.requestBuilder)(input, context);
248
248
  const headers = {};
249
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/sync-status");
249
+ b.bp("/api/v1/data-sources/{dataSourceId}/sync-status");
250
250
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
251
251
  const query = (0, smithy_client_1.map)({
252
252
  [_c]: [, input[_cI]],
@@ -262,7 +262,7 @@ exports.se_GetDataSourceSyncStatusCommand = se_GetDataSourceSyncStatusCommand;
262
262
  const se_GetDocumentCommand = async (input, context) => {
263
263
  const b = (0, core_2.requestBuilder)(input, context);
264
264
  const headers = {};
265
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/documents/{documentId}");
265
+ b.bp("/api/v1/data-sources/{dataSourceId}/documents/{documentId}");
266
266
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
267
267
  b.p('documentId', () => input.documentId, '{documentId}', false);
268
268
  const query = (0, smithy_client_1.map)({
@@ -279,7 +279,7 @@ exports.se_GetDocumentCommand = se_GetDocumentCommand;
279
279
  const se_GetDocumentChunksCommand = async (input, context) => {
280
280
  const b = (0, core_2.requestBuilder)(input, context);
281
281
  const headers = {};
282
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/documents/{documentId}/chunks");
282
+ b.bp("/api/v1/data-sources/{dataSourceId}/documents/{documentId}/chunks");
283
283
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
284
284
  b.p('documentId', () => input.documentId, '{documentId}', false);
285
285
  const query = (0, smithy_client_1.map)({
@@ -296,7 +296,7 @@ exports.se_GetDocumentChunksCommand = se_GetDocumentChunksCommand;
296
296
  const se_GetDocumentDownloadUrlCommand = async (input, context) => {
297
297
  const b = (0, core_2.requestBuilder)(input, context);
298
298
  const headers = {};
299
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/documents/{documentId}/download-url");
299
+ b.bp("/api/v1/data-sources/{dataSourceId}/documents/{documentId}/download-url");
300
300
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
301
301
  b.p('documentId', () => input.documentId, '{documentId}', false);
302
302
  const query = (0, smithy_client_1.map)({
@@ -313,7 +313,7 @@ exports.se_GetDocumentDownloadUrlCommand = se_GetDocumentDownloadUrlCommand;
313
313
  const se_GetDocumentMarkdownCommand = async (input, context) => {
314
314
  const b = (0, core_2.requestBuilder)(input, context);
315
315
  const headers = {};
316
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/documents/{documentId}/markdown");
316
+ b.bp("/api/v1/data-sources/{dataSourceId}/documents/{documentId}/markdown");
317
317
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
318
318
  b.p('documentId', () => input.documentId, '{documentId}', false);
319
319
  const query = (0, smithy_client_1.map)({
@@ -330,7 +330,7 @@ exports.se_GetDocumentMarkdownCommand = se_GetDocumentMarkdownCommand;
330
330
  const se_GetDocumentUploadUrlCommand = async (input, context) => {
331
331
  const b = (0, core_2.requestBuilder)(input, context);
332
332
  const headers = {};
333
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/documents/{documentId}/upload-url");
333
+ b.bp("/api/v1/data-sources/{dataSourceId}/documents/{documentId}/upload-url");
334
334
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
335
335
  b.p('documentId', () => input.documentId, '{documentId}', false);
336
336
  const query = (0, smithy_client_1.map)({
@@ -347,7 +347,7 @@ exports.se_GetDocumentUploadUrlCommand = se_GetDocumentUploadUrlCommand;
347
347
  const se_GetDocumentWithContentAndChunksCommand = async (input, context) => {
348
348
  const b = (0, core_2.requestBuilder)(input, context);
349
349
  const headers = {};
350
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/documents/{documentId}/with-content-and-chunks");
350
+ b.bp("/api/v1/data-sources/{dataSourceId}/documents/{documentId}/with-content-and-chunks");
351
351
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
352
352
  b.p('documentId', () => input.documentId, '{documentId}', false);
353
353
  const query = (0, smithy_client_1.map)({
@@ -380,7 +380,7 @@ exports.se_GetKnowledgeBaseCommand = se_GetKnowledgeBaseCommand;
380
380
  const se_ListDataSourcesCommand = async (input, context) => {
381
381
  const b = (0, core_2.requestBuilder)(input, context);
382
382
  const headers = {};
383
- b.bp("/api/v1/knowledge-bases/data-sources");
383
+ b.bp("/api/v1/data-sources");
384
384
  const query = (0, smithy_client_1.map)({
385
385
  [_c]: [, input[_cI]],
386
386
  });
@@ -395,7 +395,7 @@ exports.se_ListDataSourcesCommand = se_ListDataSourcesCommand;
395
395
  const se_ListDataSourceStatisticsCommand = async (input, context) => {
396
396
  const b = (0, core_2.requestBuilder)(input, context);
397
397
  const headers = {};
398
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/statistics");
398
+ b.bp("/api/v1/data-sources/{dataSourceId}/statistics");
399
399
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
400
400
  const query = (0, smithy_client_1.map)({
401
401
  [_c]: [, input[_cI]],
@@ -411,7 +411,7 @@ exports.se_ListDataSourceStatisticsCommand = se_ListDataSourceStatisticsCommand;
411
411
  const se_ListDataSourceSynchronizationLogsCommand = async (input, context) => {
412
412
  const b = (0, core_2.requestBuilder)(input, context);
413
413
  const headers = {};
414
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/sync-logs");
414
+ b.bp("/api/v1/data-sources/{dataSourceId}/sync-logs");
415
415
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
416
416
  const query = (0, smithy_client_1.map)({
417
417
  [_c]: [, input[_cI]],
@@ -432,7 +432,7 @@ exports.se_ListDataSourceSynchronizationLogsCommand = se_ListDataSourceSynchroni
432
432
  const se_ListDocumentsCommand = async (input, context) => {
433
433
  const b = (0, core_2.requestBuilder)(input, context);
434
434
  const headers = {};
435
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/documents");
435
+ b.bp("/api/v1/data-sources/{dataSourceId}/documents");
436
436
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
437
437
  const query = (0, smithy_client_1.map)({
438
438
  [_c]: [, input[_cI]],
@@ -518,7 +518,7 @@ exports.se_SearchKnowledgeBaseCommand = se_SearchKnowledgeBaseCommand;
518
518
  const se_StartSyncDataSourceCommand = async (input, context) => {
519
519
  const b = (0, core_2.requestBuilder)(input, context);
520
520
  const headers = {};
521
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/start-sync");
521
+ b.bp("/api/v1/data-sources/{dataSourceId}/start-sync");
522
522
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
523
523
  const query = (0, smithy_client_1.map)({
524
524
  [_c]: [, input[_cI]],
@@ -535,7 +535,7 @@ exports.se_StartSyncDataSourceCommand = se_StartSyncDataSourceCommand;
535
535
  const se_StopSyncDataSourceCommand = async (input, context) => {
536
536
  const b = (0, core_2.requestBuilder)(input, context);
537
537
  const headers = {};
538
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/stop-sync");
538
+ b.bp("/api/v1/data-sources/{dataSourceId}/stop-sync");
539
539
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
540
540
  const query = (0, smithy_client_1.map)({
541
541
  [_c]: [, input[_cI]],
@@ -553,7 +553,7 @@ const se_UpdateDataSourceCommand = async (input, context) => {
553
553
  const headers = {
554
554
  'content-type': 'application/json',
555
555
  };
556
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}");
556
+ b.bp("/api/v1/data-sources/{dataSourceId}");
557
557
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
558
558
  const query = (0, smithy_client_1.map)({
559
559
  [_c]: [, input[_cI]],
@@ -575,7 +575,7 @@ const se_UpdateDocumentCommand = async (input, context) => {
575
575
  const headers = {
576
576
  'content-type': 'application/json',
577
577
  };
578
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/documents/{documentId}");
578
+ b.bp("/api/v1/data-sources/{dataSourceId}/documents/{documentId}");
579
579
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
580
580
  b.p('documentId', () => input.documentId, '{documentId}', false);
581
581
  const query = (0, smithy_client_1.map)({
@@ -1287,11 +1287,11 @@ const de_DescribeDataSourceResult = (output, context) => {
1287
1287
  };
1288
1288
  const de_SearchHistoryItem = (output, context) => {
1289
1289
  return (0, smithy_client_1.take)(output, {
1290
- 'chunks': (_) => de_SearchKnowledgeBaseResultsList(_, context),
1291
1290
  'chunksCount': smithy_client_1.expectInt32,
1292
1291
  'companyId': smithy_client_1.expectString,
1293
1292
  'createdAt': (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
1294
1293
  'request': (_) => de_SearchHistoryRequest(_, context),
1294
+ 'results': (_) => de_SearchHistoryResultsList(_, context),
1295
1295
  'sessionId': smithy_client_1.expectString,
1296
1296
  'stages': smithy_client_1._json,
1297
1297
  'totalDuration': smithy_client_1.expectInt32,
@@ -1314,6 +1314,12 @@ const de_SearchHistoryRequest = (output, context) => {
1314
1314
  'user': smithy_client_1.expectString,
1315
1315
  });
1316
1316
  };
1317
+ const de_SearchHistoryResultsList = (output, context) => {
1318
+ const retVal = (output || []).filter((e) => e != null).map((entry) => {
1319
+ return de_SearchKnowledgeBaseResultItem(entry, context);
1320
+ });
1321
+ return retVal;
1322
+ };
1317
1323
  const de_SearchKnowledgeBaseResultItem = (output, context) => {
1318
1324
  return (0, smithy_client_1.take)(output, {
1319
1325
  'chunkId': smithy_client_1.expectString,
@@ -6,7 +6,7 @@ import { decorateServiceException as __decorateServiceException, expectInt32 as
6
6
  export const se_CleanDataSourceCommand = async (input, context) => {
7
7
  const b = rb(input, context);
8
8
  const headers = {};
9
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/clean");
9
+ b.bp("/api/v1/data-sources/{dataSourceId}/clean");
10
10
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
11
11
  const query = map({
12
12
  [_c]: [, input[_cI]],
@@ -21,7 +21,7 @@ export const se_CleanDataSourceCommand = async (input, context) => {
21
21
  export const se_CloneDataSourceCommand = async (input, context) => {
22
22
  const b = rb(input, context);
23
23
  const headers = {};
24
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/clone");
24
+ b.bp("/api/v1/data-sources/{dataSourceId}/clone");
25
25
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
26
26
  const query = map({
27
27
  [_c]: [, input[_cI]],
@@ -38,7 +38,7 @@ export const se_ConfigureDataSourceCommand = async (input, context) => {
38
38
  const headers = {
39
39
  'content-type': 'application/json',
40
40
  };
41
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/configure");
41
+ b.bp("/api/v1/data-sources/{dataSourceId}/configure");
42
42
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
43
43
  const query = map({
44
44
  [_c]: [, input[_cI]],
@@ -59,7 +59,7 @@ export const se_CreateDataSourceCommand = async (input, context) => {
59
59
  const headers = {
60
60
  'content-type': 'application/json',
61
61
  };
62
- b.bp("/api/v1/knowledge-bases/data-sources");
62
+ b.bp("/api/v1/data-sources");
63
63
  const query = map({
64
64
  [_c]: [, input[_cI]],
65
65
  });
@@ -80,7 +80,7 @@ export const se_CreateDocumentCommand = async (input, context) => {
80
80
  const headers = {
81
81
  'content-type': 'application/json',
82
82
  };
83
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/documents");
83
+ b.bp("/api/v1/data-sources/{dataSourceId}/documents");
84
84
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
85
85
  const query = map({
86
86
  [_c]: [, input[_cI]],
@@ -125,7 +125,7 @@ export const se_CreateKnowledgeBaseCommand = async (input, context) => {
125
125
  export const se_DeleteDataSourceCommand = async (input, context) => {
126
126
  const b = rb(input, context);
127
127
  const headers = {};
128
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}");
128
+ b.bp("/api/v1/data-sources/{dataSourceId}");
129
129
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
130
130
  const query = map({
131
131
  [_c]: [, input[_cI]],
@@ -140,7 +140,7 @@ export const se_DeleteDataSourceCommand = async (input, context) => {
140
140
  export const se_DeleteDocumentCommand = async (input, context) => {
141
141
  const b = rb(input, context);
142
142
  const headers = {};
143
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/documents/{documentId}");
143
+ b.bp("/api/v1/data-sources/{dataSourceId}/documents/{documentId}");
144
144
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
145
145
  b.p('documentId', () => input.documentId, '{documentId}', false);
146
146
  const query = map({
@@ -173,7 +173,7 @@ export const se_DescribeDataSourceCommand = async (input, context) => {
173
173
  const headers = {
174
174
  'content-type': 'application/json',
175
175
  };
176
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/describe");
176
+ b.bp("/api/v1/data-sources/{dataSourceId}/describe");
177
177
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
178
178
  const query = map({
179
179
  [_c]: [, input[_cI]],
@@ -215,7 +215,7 @@ export const se_GenerateSearchAnswerCommand = async (input, context) => {
215
215
  export const se_GetDataSourceCommand = async (input, context) => {
216
216
  const b = rb(input, context);
217
217
  const headers = {};
218
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}");
218
+ b.bp("/api/v1/data-sources/{dataSourceId}");
219
219
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
220
220
  const query = map({
221
221
  [_c]: [, input[_cI]],
@@ -230,7 +230,7 @@ export const se_GetDataSourceCommand = async (input, context) => {
230
230
  export const se_GetDataSourceSyncStatusCommand = async (input, context) => {
231
231
  const b = rb(input, context);
232
232
  const headers = {};
233
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/sync-status");
233
+ b.bp("/api/v1/data-sources/{dataSourceId}/sync-status");
234
234
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
235
235
  const query = map({
236
236
  [_c]: [, input[_cI]],
@@ -245,7 +245,7 @@ export const se_GetDataSourceSyncStatusCommand = async (input, context) => {
245
245
  export const se_GetDocumentCommand = async (input, context) => {
246
246
  const b = rb(input, context);
247
247
  const headers = {};
248
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/documents/{documentId}");
248
+ b.bp("/api/v1/data-sources/{dataSourceId}/documents/{documentId}");
249
249
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
250
250
  b.p('documentId', () => input.documentId, '{documentId}', false);
251
251
  const query = map({
@@ -261,7 +261,7 @@ export const se_GetDocumentCommand = async (input, context) => {
261
261
  export const se_GetDocumentChunksCommand = async (input, context) => {
262
262
  const b = rb(input, context);
263
263
  const headers = {};
264
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/documents/{documentId}/chunks");
264
+ b.bp("/api/v1/data-sources/{dataSourceId}/documents/{documentId}/chunks");
265
265
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
266
266
  b.p('documentId', () => input.documentId, '{documentId}', false);
267
267
  const query = map({
@@ -277,7 +277,7 @@ export const se_GetDocumentChunksCommand = async (input, context) => {
277
277
  export const se_GetDocumentDownloadUrlCommand = async (input, context) => {
278
278
  const b = rb(input, context);
279
279
  const headers = {};
280
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/documents/{documentId}/download-url");
280
+ b.bp("/api/v1/data-sources/{dataSourceId}/documents/{documentId}/download-url");
281
281
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
282
282
  b.p('documentId', () => input.documentId, '{documentId}', false);
283
283
  const query = map({
@@ -293,7 +293,7 @@ export const se_GetDocumentDownloadUrlCommand = async (input, context) => {
293
293
  export const se_GetDocumentMarkdownCommand = async (input, context) => {
294
294
  const b = rb(input, context);
295
295
  const headers = {};
296
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/documents/{documentId}/markdown");
296
+ b.bp("/api/v1/data-sources/{dataSourceId}/documents/{documentId}/markdown");
297
297
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
298
298
  b.p('documentId', () => input.documentId, '{documentId}', false);
299
299
  const query = map({
@@ -309,7 +309,7 @@ export const se_GetDocumentMarkdownCommand = async (input, context) => {
309
309
  export const se_GetDocumentUploadUrlCommand = async (input, context) => {
310
310
  const b = rb(input, context);
311
311
  const headers = {};
312
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/documents/{documentId}/upload-url");
312
+ b.bp("/api/v1/data-sources/{dataSourceId}/documents/{documentId}/upload-url");
313
313
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
314
314
  b.p('documentId', () => input.documentId, '{documentId}', false);
315
315
  const query = map({
@@ -325,7 +325,7 @@ export const se_GetDocumentUploadUrlCommand = async (input, context) => {
325
325
  export const se_GetDocumentWithContentAndChunksCommand = async (input, context) => {
326
326
  const b = rb(input, context);
327
327
  const headers = {};
328
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/documents/{documentId}/with-content-and-chunks");
328
+ b.bp("/api/v1/data-sources/{dataSourceId}/documents/{documentId}/with-content-and-chunks");
329
329
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
330
330
  b.p('documentId', () => input.documentId, '{documentId}', false);
331
331
  const query = map({
@@ -356,7 +356,7 @@ export const se_GetKnowledgeBaseCommand = async (input, context) => {
356
356
  export const se_ListDataSourcesCommand = async (input, context) => {
357
357
  const b = rb(input, context);
358
358
  const headers = {};
359
- b.bp("/api/v1/knowledge-bases/data-sources");
359
+ b.bp("/api/v1/data-sources");
360
360
  const query = map({
361
361
  [_c]: [, input[_cI]],
362
362
  });
@@ -370,7 +370,7 @@ export const se_ListDataSourcesCommand = async (input, context) => {
370
370
  export const se_ListDataSourceStatisticsCommand = async (input, context) => {
371
371
  const b = rb(input, context);
372
372
  const headers = {};
373
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/statistics");
373
+ b.bp("/api/v1/data-sources/{dataSourceId}/statistics");
374
374
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
375
375
  const query = map({
376
376
  [_c]: [, input[_cI]],
@@ -385,7 +385,7 @@ export const se_ListDataSourceStatisticsCommand = async (input, context) => {
385
385
  export const se_ListDataSourceSynchronizationLogsCommand = async (input, context) => {
386
386
  const b = rb(input, context);
387
387
  const headers = {};
388
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/sync-logs");
388
+ b.bp("/api/v1/data-sources/{dataSourceId}/sync-logs");
389
389
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
390
390
  const query = map({
391
391
  [_c]: [, input[_cI]],
@@ -405,7 +405,7 @@ export const se_ListDataSourceSynchronizationLogsCommand = async (input, context
405
405
  export const se_ListDocumentsCommand = async (input, context) => {
406
406
  const b = rb(input, context);
407
407
  const headers = {};
408
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/documents");
408
+ b.bp("/api/v1/data-sources/{dataSourceId}/documents");
409
409
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
410
410
  const query = map({
411
411
  [_c]: [, input[_cI]],
@@ -487,7 +487,7 @@ export const se_SearchKnowledgeBaseCommand = async (input, context) => {
487
487
  export const se_StartSyncDataSourceCommand = async (input, context) => {
488
488
  const b = rb(input, context);
489
489
  const headers = {};
490
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/start-sync");
490
+ b.bp("/api/v1/data-sources/{dataSourceId}/start-sync");
491
491
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
492
492
  const query = map({
493
493
  [_c]: [, input[_cI]],
@@ -503,7 +503,7 @@ export const se_StartSyncDataSourceCommand = async (input, context) => {
503
503
  export const se_StopSyncDataSourceCommand = async (input, context) => {
504
504
  const b = rb(input, context);
505
505
  const headers = {};
506
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/stop-sync");
506
+ b.bp("/api/v1/data-sources/{dataSourceId}/stop-sync");
507
507
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
508
508
  const query = map({
509
509
  [_c]: [, input[_cI]],
@@ -520,7 +520,7 @@ export const se_UpdateDataSourceCommand = async (input, context) => {
520
520
  const headers = {
521
521
  'content-type': 'application/json',
522
522
  };
523
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}");
523
+ b.bp("/api/v1/data-sources/{dataSourceId}");
524
524
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
525
525
  const query = map({
526
526
  [_c]: [, input[_cI]],
@@ -541,7 +541,7 @@ export const se_UpdateDocumentCommand = async (input, context) => {
541
541
  const headers = {
542
542
  'content-type': 'application/json',
543
543
  };
544
- b.bp("/api/v1/knowledge-bases/data-sources/{dataSourceId}/documents/{documentId}");
544
+ b.bp("/api/v1/data-sources/{dataSourceId}/documents/{documentId}");
545
545
  b.p('dataSourceId', () => input.dataSourceId, '{dataSourceId}', false);
546
546
  b.p('documentId', () => input.documentId, '{documentId}', false);
547
547
  const query = map({
@@ -1219,11 +1219,11 @@ const de_DescribeDataSourceResult = (output, context) => {
1219
1219
  };
1220
1220
  const de_SearchHistoryItem = (output, context) => {
1221
1221
  return take(output, {
1222
- 'chunks': (_) => de_SearchKnowledgeBaseResultsList(_, context),
1223
1222
  'chunksCount': __expectInt32,
1224
1223
  'companyId': __expectString,
1225
1224
  'createdAt': (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1226
1225
  'request': (_) => de_SearchHistoryRequest(_, context),
1226
+ 'results': (_) => de_SearchHistoryResultsList(_, context),
1227
1227
  'sessionId': __expectString,
1228
1228
  'stages': _json,
1229
1229
  'totalDuration': __expectInt32,
@@ -1246,6 +1246,12 @@ const de_SearchHistoryRequest = (output, context) => {
1246
1246
  'user': __expectString,
1247
1247
  });
1248
1248
  };
1249
+ const de_SearchHistoryResultsList = (output, context) => {
1250
+ const retVal = (output || []).filter((e) => e != null).map((entry) => {
1251
+ return de_SearchKnowledgeBaseResultItem(entry, context);
1252
+ });
1253
+ return retVal;
1254
+ };
1249
1255
  const de_SearchKnowledgeBaseResultItem = (output, context) => {
1250
1256
  return take(output, {
1251
1257
  'chunkId': __expectString,
@@ -45,13 +45,13 @@ declare const GenerateSearchAnswerCommand_base: {
45
45
  * documentUrl: "STRING_VALUE", // required
46
46
  * dataSourceId: "STRING_VALUE", // required
47
47
  * dataSourceType: "files" || "confluence" || "gdrive", // required
48
- * content: "STRING_VALUE", // required
49
48
  * score: Number("double"), // required
50
49
  * fullTextScore: Number("double"),
51
50
  * semanticScore: Number("double"),
52
51
  * documentHierarchy: [ // StringList
53
52
  * "STRING_VALUE",
54
53
  * ],
54
+ * content: "STRING_VALUE", // required
55
55
  * },
56
56
  * ],
57
57
  * model: "STRING_VALUE",
@@ -77,13 +77,13 @@ declare const GenerateSearchAnswerCommand_base: {
77
77
  * // documentUrl: "STRING_VALUE", // required
78
78
  * // dataSourceId: "STRING_VALUE", // required
79
79
  * // dataSourceType: "files" || "confluence" || "gdrive", // required
80
- * // content: "STRING_VALUE", // required
81
80
  * // score: Number("double"), // required
82
81
  * // fullTextScore: Number("double"),
83
82
  * // semanticScore: Number("double"),
84
83
  * // documentHierarchy: [ // StringList
85
84
  * // "STRING_VALUE",
86
85
  * // ],
86
+ * // content: "STRING_VALUE", // required
87
87
  * // },
88
88
  * // ],
89
89
  * // };
@@ -90,7 +90,7 @@ declare const ListSearchQueriesHistoryCommand_base: {
90
90
  * // duration: Number("int"), // required
91
91
  * // },
92
92
  * // },
93
- * // chunks: [ // SearchKnowledgeBaseResultsList // required
93
+ * // results: [ // SearchHistoryResultsList // required
94
94
  * // { // SearchKnowledgeBaseResultItem
95
95
  * // chunkId: "STRING_VALUE", // required
96
96
  * // documentId: "STRING_VALUE", // required
@@ -98,13 +98,13 @@ declare const ListSearchQueriesHistoryCommand_base: {
98
98
  * // documentUrl: "STRING_VALUE", // required
99
99
  * // dataSourceId: "STRING_VALUE", // required
100
100
  * // dataSourceType: "files" || "confluence" || "gdrive", // required
101
- * // content: "STRING_VALUE", // required
102
101
  * // score: Number("double"), // required
103
102
  * // fullTextScore: Number("double"),
104
103
  * // semanticScore: Number("double"),
105
104
  * // documentHierarchy: [ // StringList
106
105
  * // "STRING_VALUE",
107
106
  * // ],
107
+ * // content: "STRING_VALUE", // required
108
108
  * // },
109
109
  * // ],
110
110
  * // createdAt: new Date("TIMESTAMP"), // required
@@ -56,13 +56,13 @@ declare const SearchKnowledgeBaseCommand_base: {
56
56
  * // documentUrl: "STRING_VALUE", // required
57
57
  * // dataSourceId: "STRING_VALUE", // required
58
58
  * // dataSourceType: "files" || "confluence" || "gdrive", // required
59
- * // content: "STRING_VALUE", // required
60
59
  * // score: Number("double"), // required
61
60
  * // fullTextScore: Number("double"),
62
61
  * // semanticScore: Number("double"),
63
62
  * // documentHierarchy: [ // StringList
64
63
  * // "STRING_VALUE",
65
64
  * // ],
65
+ * // content: "STRING_VALUE", // required
66
66
  * // },
67
67
  * // ],
68
68
  * // metadata: { // SearchResultMetadata
@@ -963,7 +963,6 @@ export interface SearchKnowledgeBaseResultItem {
963
963
  */
964
964
  dataSourceId: string;
965
965
  dataSourceType: DataSourceType;
966
- content: string;
967
966
  /**
968
967
  * The total score of the result, calculated from the semantic search score and the full-text search score.
969
968
  * @public
@@ -984,6 +983,7 @@ export interface SearchKnowledgeBaseResultItem {
984
983
  * @public
985
984
  */
986
985
  documentHierarchy?: (string)[] | undefined;
986
+ content: string;
987
987
  }
988
988
  /**
989
989
  * @public
@@ -1553,7 +1553,7 @@ export interface SearchHistoryItem {
1553
1553
  companyId: string;
1554
1554
  request: SearchHistoryRequest;
1555
1555
  stages: SearchHistoryStages;
1556
- chunks: (SearchKnowledgeBaseResultItem)[];
1556
+ results: (SearchKnowledgeBaseResultItem)[];
1557
1557
  createdAt: Date;
1558
1558
  totalDuration: number;
1559
1559
  chunksCount: number;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wildix/wim-knowledge-base-client",
3
3
  "description": "@wildix/wim-knowledge-base-client client",
4
- "version": "0.0.54",
4
+ "version": "0.0.56",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",