@aws-sdk/client-wisdom 3.100.0 → 3.110.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/CHANGELOG.md +27 -0
- package/dist-cjs/WisdomClient.js +2 -0
- package/dist-es/WisdomClient.js +2 -0
- package/dist-types/models/models_0.d.ts +21 -63
- package/dist-types/ts3.4/models/models_0.d.ts +21 -63
- package/package.json +29 -28
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.110.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.109.0...v3.110.0) (2022-06-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-wisdom
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.109.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.108.1...v3.109.0) (2022-06-13)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-wisdom
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* **clients:** support recursion detection in Lambda ([#3654](https://github.com/aws/aws-sdk-js-v3/issues/3654)) ([ecfe46e](https://github.com/aws/aws-sdk-js-v3/commit/ecfe46ea1fd8b6e3812b75b3dc6c03554fb4b3fa))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @aws-sdk/client-wisdom
|
package/dist-cjs/WisdomClient.js
CHANGED
|
@@ -5,6 +5,7 @@ const config_resolver_1 = require("@aws-sdk/config-resolver");
|
|
|
5
5
|
const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
|
|
6
6
|
const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
|
|
7
7
|
const middleware_logger_1 = require("@aws-sdk/middleware-logger");
|
|
8
|
+
const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
|
|
8
9
|
const middleware_retry_1 = require("@aws-sdk/middleware-retry");
|
|
9
10
|
const middleware_signing_1 = require("@aws-sdk/middleware-signing");
|
|
10
11
|
const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
|
|
@@ -25,6 +26,7 @@ class WisdomClient extends smithy_client_1.Client {
|
|
|
25
26
|
this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
|
|
26
27
|
this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
|
|
27
28
|
this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
|
|
29
|
+
this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
|
|
28
30
|
this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
|
|
29
31
|
this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
|
|
30
32
|
}
|
package/dist-es/WisdomClient.js
CHANGED
|
@@ -3,6 +3,7 @@ import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-re
|
|
|
3
3
|
import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
|
|
4
4
|
import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
|
|
5
5
|
import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
|
|
6
|
+
import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
|
|
6
7
|
import { getRetryPlugin, resolveRetryConfig } from "@aws-sdk/middleware-retry";
|
|
7
8
|
import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-signing";
|
|
8
9
|
import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
|
|
@@ -25,6 +26,7 @@ var WisdomClient = (function (_super) {
|
|
|
25
26
|
_this.middlewareStack.use(getContentLengthPlugin(_this.config));
|
|
26
27
|
_this.middlewareStack.use(getHostHeaderPlugin(_this.config));
|
|
27
28
|
_this.middlewareStack.use(getLoggerPlugin(_this.config));
|
|
29
|
+
_this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
|
|
28
30
|
_this.middlewareStack.use(getAwsAuthPlugin(_this.config));
|
|
29
31
|
_this.middlewareStack.use(getUserAgentPlugin(_this.config));
|
|
30
32
|
return _this;
|
|
@@ -108,9 +108,7 @@ export interface CreateAssistantAssociationRequest {
|
|
|
108
108
|
/**
|
|
109
109
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
110
110
|
*/
|
|
111
|
-
tags?:
|
|
112
|
-
[key: string]: string;
|
|
113
|
-
};
|
|
111
|
+
tags?: Record<string, string>;
|
|
114
112
|
}
|
|
115
113
|
export declare namespace CreateAssistantAssociationRequest {
|
|
116
114
|
/**
|
|
@@ -194,9 +192,7 @@ export interface AssistantAssociationData {
|
|
|
194
192
|
/**
|
|
195
193
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
196
194
|
*/
|
|
197
|
-
tags?:
|
|
198
|
-
[key: string]: string;
|
|
199
|
-
};
|
|
195
|
+
tags?: Record<string, string>;
|
|
200
196
|
}
|
|
201
197
|
export declare namespace AssistantAssociationData {
|
|
202
198
|
/**
|
|
@@ -358,9 +354,7 @@ export interface AssistantAssociationSummary {
|
|
|
358
354
|
/**
|
|
359
355
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
360
356
|
*/
|
|
361
|
-
tags?:
|
|
362
|
-
[key: string]: string;
|
|
363
|
-
};
|
|
357
|
+
tags?: Record<string, string>;
|
|
364
358
|
}
|
|
365
359
|
export declare namespace AssistantAssociationSummary {
|
|
366
360
|
/**
|
|
@@ -423,9 +417,7 @@ export interface CreateAssistantRequest {
|
|
|
423
417
|
/**
|
|
424
418
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
425
419
|
*/
|
|
426
|
-
tags?:
|
|
427
|
-
[key: string]: string;
|
|
428
|
-
};
|
|
420
|
+
tags?: Record<string, string>;
|
|
429
421
|
/**
|
|
430
422
|
* <p>The KMS key used for encryption.</p>
|
|
431
423
|
*/
|
|
@@ -476,9 +468,7 @@ export interface AssistantData {
|
|
|
476
468
|
/**
|
|
477
469
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
478
470
|
*/
|
|
479
|
-
tags?:
|
|
480
|
-
[key: string]: string;
|
|
481
|
-
};
|
|
471
|
+
tags?: Record<string, string>;
|
|
482
472
|
/**
|
|
483
473
|
* <p>The KMS key used for encryption.</p>
|
|
484
474
|
*/
|
|
@@ -856,9 +846,7 @@ export interface AssistantSummary {
|
|
|
856
846
|
/**
|
|
857
847
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
858
848
|
*/
|
|
859
|
-
tags?:
|
|
860
|
-
[key: string]: string;
|
|
861
|
-
};
|
|
849
|
+
tags?: Record<string, string>;
|
|
862
850
|
/**
|
|
863
851
|
* <p>The KMS key used for encryption.</p>
|
|
864
852
|
*/
|
|
@@ -1138,9 +1126,7 @@ export interface CreateSessionRequest {
|
|
|
1138
1126
|
/**
|
|
1139
1127
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
1140
1128
|
*/
|
|
1141
|
-
tags?:
|
|
1142
|
-
[key: string]: string;
|
|
1143
|
-
};
|
|
1129
|
+
tags?: Record<string, string>;
|
|
1144
1130
|
}
|
|
1145
1131
|
export declare namespace CreateSessionRequest {
|
|
1146
1132
|
/**
|
|
@@ -1171,9 +1157,7 @@ export interface SessionData {
|
|
|
1171
1157
|
/**
|
|
1172
1158
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
1173
1159
|
*/
|
|
1174
|
-
tags?:
|
|
1175
|
-
[key: string]: string;
|
|
1176
|
-
};
|
|
1160
|
+
tags?: Record<string, string>;
|
|
1177
1161
|
}
|
|
1178
1162
|
export declare namespace SessionData {
|
|
1179
1163
|
/**
|
|
@@ -1245,9 +1229,7 @@ export interface CreateContentRequest {
|
|
|
1245
1229
|
* <p>A key/value map to store attributes without affecting tagging or recommendations.
|
|
1246
1230
|
* For example, when synchronizing data between an external system and Wisdom, you can store an external version identifier as metadata to utilize for determining drift.</p>
|
|
1247
1231
|
*/
|
|
1248
|
-
metadata?:
|
|
1249
|
-
[key: string]: string;
|
|
1250
|
-
};
|
|
1232
|
+
metadata?: Record<string, string>;
|
|
1251
1233
|
/**
|
|
1252
1234
|
* <p>A pointer to the uploaded asset. This value is returned by <a href="https://docs.aws.amazon.com/wisdom/latest/APIReference/API_StartContentUpload.html">StartContentUpload</a>.</p>
|
|
1253
1235
|
*/
|
|
@@ -1260,9 +1242,7 @@ export interface CreateContentRequest {
|
|
|
1260
1242
|
/**
|
|
1261
1243
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
1262
1244
|
*/
|
|
1263
|
-
tags?:
|
|
1264
|
-
[key: string]: string;
|
|
1265
|
-
};
|
|
1245
|
+
tags?: Record<string, string>;
|
|
1266
1246
|
}
|
|
1267
1247
|
export declare namespace CreateContentRequest {
|
|
1268
1248
|
/**
|
|
@@ -1323,15 +1303,11 @@ export interface ContentData {
|
|
|
1323
1303
|
* <p>A key/value map to store attributes without affecting tagging or recommendations.
|
|
1324
1304
|
* For example, when synchronizing data between an external system and Wisdom, you can store an external version identifier as metadata to utilize for determining drift.</p>
|
|
1325
1305
|
*/
|
|
1326
|
-
metadata:
|
|
1327
|
-
[key: string]: string;
|
|
1328
|
-
} | undefined;
|
|
1306
|
+
metadata: Record<string, string> | undefined;
|
|
1329
1307
|
/**
|
|
1330
1308
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
1331
1309
|
*/
|
|
1332
|
-
tags?:
|
|
1333
|
-
[key: string]: string;
|
|
1334
|
-
};
|
|
1310
|
+
tags?: Record<string, string>;
|
|
1335
1311
|
/**
|
|
1336
1312
|
* <p>The URI of the content.</p>
|
|
1337
1313
|
*/
|
|
@@ -1475,15 +1451,11 @@ export interface ContentSummary {
|
|
|
1475
1451
|
* <p>A key/value map to store attributes without affecting tagging or recommendations.
|
|
1476
1452
|
* For example, when synchronizing data between an external system and Wisdom, you can store an external version identifier as metadata to utilize for determining drift.</p>
|
|
1477
1453
|
*/
|
|
1478
|
-
metadata:
|
|
1479
|
-
[key: string]: string;
|
|
1480
|
-
} | undefined;
|
|
1454
|
+
metadata: Record<string, string> | undefined;
|
|
1481
1455
|
/**
|
|
1482
1456
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
1483
1457
|
*/
|
|
1484
|
-
tags?:
|
|
1485
|
-
[key: string]: string;
|
|
1486
|
-
};
|
|
1458
|
+
tags?: Record<string, string>;
|
|
1487
1459
|
}
|
|
1488
1460
|
export declare namespace ContentSummary {
|
|
1489
1461
|
/**
|
|
@@ -1588,9 +1560,7 @@ export interface UpdateContentRequest {
|
|
|
1588
1560
|
* example, when synchronizing data between an external system and Wisdom, you can store an
|
|
1589
1561
|
* external version identifier as metadata to utilize for determining drift.</p>
|
|
1590
1562
|
*/
|
|
1591
|
-
metadata?:
|
|
1592
|
-
[key: string]: string;
|
|
1593
|
-
};
|
|
1563
|
+
metadata?: Record<string, string>;
|
|
1594
1564
|
/**
|
|
1595
1565
|
* <p>A pointer to the uploaded asset. This value is returned by <a href="https://docs.aws.amazon.com/wisdom/latest/APIReference/API_StartContentUpload.html">StartContentUpload</a>.
|
|
1596
1566
|
* </p>
|
|
@@ -1712,9 +1682,7 @@ export interface CreateKnowledgeBaseRequest {
|
|
|
1712
1682
|
/**
|
|
1713
1683
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
1714
1684
|
*/
|
|
1715
|
-
tags?:
|
|
1716
|
-
[key: string]: string;
|
|
1717
|
-
};
|
|
1685
|
+
tags?: Record<string, string>;
|
|
1718
1686
|
}
|
|
1719
1687
|
export declare namespace CreateKnowledgeBaseRequest {
|
|
1720
1688
|
/**
|
|
@@ -1778,9 +1746,7 @@ export interface KnowledgeBaseData {
|
|
|
1778
1746
|
/**
|
|
1779
1747
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
1780
1748
|
*/
|
|
1781
|
-
tags?:
|
|
1782
|
-
[key: string]: string;
|
|
1783
|
-
};
|
|
1749
|
+
tags?: Record<string, string>;
|
|
1784
1750
|
}
|
|
1785
1751
|
export declare namespace KnowledgeBaseData {
|
|
1786
1752
|
/**
|
|
@@ -1904,9 +1870,7 @@ export interface KnowledgeBaseSummary {
|
|
|
1904
1870
|
/**
|
|
1905
1871
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
1906
1872
|
*/
|
|
1907
|
-
tags?:
|
|
1908
|
-
[key: string]: string;
|
|
1909
|
-
};
|
|
1873
|
+
tags?: Record<string, string>;
|
|
1910
1874
|
}
|
|
1911
1875
|
export declare namespace KnowledgeBaseSummary {
|
|
1912
1876
|
/**
|
|
@@ -2023,9 +1987,7 @@ export interface StartContentUploadResponse {
|
|
|
2023
1987
|
/**
|
|
2024
1988
|
* <p>The headers to include in the upload.</p>
|
|
2025
1989
|
*/
|
|
2026
|
-
headersToInclude:
|
|
2027
|
-
[key: string]: string;
|
|
2028
|
-
} | undefined;
|
|
1990
|
+
headersToInclude: Record<string, string> | undefined;
|
|
2029
1991
|
}
|
|
2030
1992
|
export declare namespace StartContentUploadResponse {
|
|
2031
1993
|
/**
|
|
@@ -2077,9 +2039,7 @@ export interface ListTagsForResourceResponse {
|
|
|
2077
2039
|
/**
|
|
2078
2040
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
2079
2041
|
*/
|
|
2080
|
-
tags?:
|
|
2081
|
-
[key: string]: string;
|
|
2082
|
-
};
|
|
2042
|
+
tags?: Record<string, string>;
|
|
2083
2043
|
}
|
|
2084
2044
|
export declare namespace ListTagsForResourceResponse {
|
|
2085
2045
|
/**
|
|
@@ -2095,9 +2055,7 @@ export interface TagResourceRequest {
|
|
|
2095
2055
|
/**
|
|
2096
2056
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
2097
2057
|
*/
|
|
2098
|
-
tags:
|
|
2099
|
-
[key: string]: string;
|
|
2100
|
-
} | undefined;
|
|
2058
|
+
tags: Record<string, string> | undefined;
|
|
2101
2059
|
}
|
|
2102
2060
|
export declare namespace TagResourceRequest {
|
|
2103
2061
|
/**
|
|
@@ -61,9 +61,7 @@ export interface CreateAssistantAssociationRequest {
|
|
|
61
61
|
|
|
62
62
|
clientToken?: string;
|
|
63
63
|
|
|
64
|
-
tags?:
|
|
65
|
-
[key: string]: string;
|
|
66
|
-
};
|
|
64
|
+
tags?: Record<string, string>;
|
|
67
65
|
}
|
|
68
66
|
export declare namespace CreateAssistantAssociationRequest {
|
|
69
67
|
|
|
@@ -118,9 +116,7 @@ export interface AssistantAssociationData {
|
|
|
118
116
|
|
|
119
117
|
associationData: AssistantAssociationOutputData | undefined;
|
|
120
118
|
|
|
121
|
-
tags?:
|
|
122
|
-
[key: string]: string;
|
|
123
|
-
};
|
|
119
|
+
tags?: Record<string, string>;
|
|
124
120
|
}
|
|
125
121
|
export declare namespace AssistantAssociationData {
|
|
126
122
|
|
|
@@ -218,9 +214,7 @@ export interface AssistantAssociationSummary {
|
|
|
218
214
|
|
|
219
215
|
associationData: AssistantAssociationOutputData | undefined;
|
|
220
216
|
|
|
221
|
-
tags?:
|
|
222
|
-
[key: string]: string;
|
|
223
|
-
};
|
|
217
|
+
tags?: Record<string, string>;
|
|
224
218
|
}
|
|
225
219
|
export declare namespace AssistantAssociationSummary {
|
|
226
220
|
|
|
@@ -258,9 +252,7 @@ export interface CreateAssistantRequest {
|
|
|
258
252
|
|
|
259
253
|
description?: string;
|
|
260
254
|
|
|
261
|
-
tags?:
|
|
262
|
-
[key: string]: string;
|
|
263
|
-
};
|
|
255
|
+
tags?: Record<string, string>;
|
|
264
256
|
|
|
265
257
|
serverSideEncryptionConfiguration?: ServerSideEncryptionConfiguration;
|
|
266
258
|
}
|
|
@@ -291,9 +283,7 @@ export interface AssistantData {
|
|
|
291
283
|
|
|
292
284
|
description?: string;
|
|
293
285
|
|
|
294
|
-
tags?:
|
|
295
|
-
[key: string]: string;
|
|
296
|
-
};
|
|
286
|
+
tags?: Record<string, string>;
|
|
297
287
|
|
|
298
288
|
serverSideEncryptionConfiguration?: ServerSideEncryptionConfiguration;
|
|
299
289
|
}
|
|
@@ -520,9 +510,7 @@ export interface AssistantSummary {
|
|
|
520
510
|
|
|
521
511
|
description?: string;
|
|
522
512
|
|
|
523
|
-
tags?:
|
|
524
|
-
[key: string]: string;
|
|
525
|
-
};
|
|
513
|
+
tags?: Record<string, string>;
|
|
526
514
|
|
|
527
515
|
serverSideEncryptionConfiguration?: ServerSideEncryptionConfiguration;
|
|
528
516
|
}
|
|
@@ -687,9 +675,7 @@ export interface CreateSessionRequest {
|
|
|
687
675
|
|
|
688
676
|
description?: string;
|
|
689
677
|
|
|
690
|
-
tags?:
|
|
691
|
-
[key: string]: string;
|
|
692
|
-
};
|
|
678
|
+
tags?: Record<string, string>;
|
|
693
679
|
}
|
|
694
680
|
export declare namespace CreateSessionRequest {
|
|
695
681
|
|
|
@@ -706,9 +692,7 @@ export interface SessionData {
|
|
|
706
692
|
|
|
707
693
|
description?: string;
|
|
708
694
|
|
|
709
|
-
tags?:
|
|
710
|
-
[key: string]: string;
|
|
711
|
-
};
|
|
695
|
+
tags?: Record<string, string>;
|
|
712
696
|
}
|
|
713
697
|
export declare namespace SessionData {
|
|
714
698
|
|
|
@@ -750,17 +734,13 @@ export interface CreateContentRequest {
|
|
|
750
734
|
|
|
751
735
|
overrideLinkOutUri?: string;
|
|
752
736
|
|
|
753
|
-
metadata?:
|
|
754
|
-
[key: string]: string;
|
|
755
|
-
};
|
|
737
|
+
metadata?: Record<string, string>;
|
|
756
738
|
|
|
757
739
|
uploadId: string | undefined;
|
|
758
740
|
|
|
759
741
|
clientToken?: string;
|
|
760
742
|
|
|
761
|
-
tags?:
|
|
762
|
-
[key: string]: string;
|
|
763
|
-
};
|
|
743
|
+
tags?: Record<string, string>;
|
|
764
744
|
}
|
|
765
745
|
export declare namespace CreateContentRequest {
|
|
766
746
|
|
|
@@ -796,13 +776,9 @@ export interface ContentData {
|
|
|
796
776
|
|
|
797
777
|
status: ContentStatus | string | undefined;
|
|
798
778
|
|
|
799
|
-
metadata:
|
|
800
|
-
[key: string]: string;
|
|
801
|
-
} | undefined;
|
|
779
|
+
metadata: Record<string, string> | undefined;
|
|
802
780
|
|
|
803
|
-
tags?:
|
|
804
|
-
[key: string]: string;
|
|
805
|
-
};
|
|
781
|
+
tags?: Record<string, string>;
|
|
806
782
|
|
|
807
783
|
linkOutUri?: string;
|
|
808
784
|
|
|
@@ -887,13 +863,9 @@ export interface ContentSummary {
|
|
|
887
863
|
|
|
888
864
|
status: ContentStatus | string | undefined;
|
|
889
865
|
|
|
890
|
-
metadata:
|
|
891
|
-
[key: string]: string;
|
|
892
|
-
} | undefined;
|
|
866
|
+
metadata: Record<string, string> | undefined;
|
|
893
867
|
|
|
894
|
-
tags?:
|
|
895
|
-
[key: string]: string;
|
|
896
|
-
};
|
|
868
|
+
tags?: Record<string, string>;
|
|
897
869
|
}
|
|
898
870
|
export declare namespace ContentSummary {
|
|
899
871
|
|
|
@@ -950,9 +922,7 @@ export interface UpdateContentRequest {
|
|
|
950
922
|
|
|
951
923
|
removeOverrideLinkOutUri?: boolean;
|
|
952
924
|
|
|
953
|
-
metadata?:
|
|
954
|
-
[key: string]: string;
|
|
955
|
-
};
|
|
925
|
+
metadata?: Record<string, string>;
|
|
956
926
|
|
|
957
927
|
uploadId?: string;
|
|
958
928
|
}
|
|
@@ -1020,9 +990,7 @@ export interface CreateKnowledgeBaseRequest {
|
|
|
1020
990
|
|
|
1021
991
|
description?: string;
|
|
1022
992
|
|
|
1023
|
-
tags?:
|
|
1024
|
-
[key: string]: string;
|
|
1025
|
-
};
|
|
993
|
+
tags?: Record<string, string>;
|
|
1026
994
|
}
|
|
1027
995
|
export declare namespace CreateKnowledgeBaseRequest {
|
|
1028
996
|
|
|
@@ -1059,9 +1027,7 @@ export interface KnowledgeBaseData {
|
|
|
1059
1027
|
|
|
1060
1028
|
description?: string;
|
|
1061
1029
|
|
|
1062
|
-
tags?:
|
|
1063
|
-
[key: string]: string;
|
|
1064
|
-
};
|
|
1030
|
+
tags?: Record<string, string>;
|
|
1065
1031
|
}
|
|
1066
1032
|
export declare namespace KnowledgeBaseData {
|
|
1067
1033
|
|
|
@@ -1136,9 +1102,7 @@ export interface KnowledgeBaseSummary {
|
|
|
1136
1102
|
|
|
1137
1103
|
description?: string;
|
|
1138
1104
|
|
|
1139
|
-
tags?:
|
|
1140
|
-
[key: string]: string;
|
|
1141
|
-
};
|
|
1105
|
+
tags?: Record<string, string>;
|
|
1142
1106
|
}
|
|
1143
1107
|
export declare namespace KnowledgeBaseSummary {
|
|
1144
1108
|
|
|
@@ -1210,9 +1174,7 @@ export interface StartContentUploadResponse {
|
|
|
1210
1174
|
|
|
1211
1175
|
urlExpiry: Date | undefined;
|
|
1212
1176
|
|
|
1213
|
-
headersToInclude:
|
|
1214
|
-
[key: string]: string;
|
|
1215
|
-
} | undefined;
|
|
1177
|
+
headersToInclude: Record<string, string> | undefined;
|
|
1216
1178
|
}
|
|
1217
1179
|
export declare namespace StartContentUploadResponse {
|
|
1218
1180
|
|
|
@@ -1246,9 +1208,7 @@ export declare namespace ListTagsForResourceRequest {
|
|
|
1246
1208
|
}
|
|
1247
1209
|
export interface ListTagsForResourceResponse {
|
|
1248
1210
|
|
|
1249
|
-
tags?:
|
|
1250
|
-
[key: string]: string;
|
|
1251
|
-
};
|
|
1211
|
+
tags?: Record<string, string>;
|
|
1252
1212
|
}
|
|
1253
1213
|
export declare namespace ListTagsForResourceResponse {
|
|
1254
1214
|
|
|
@@ -1258,9 +1218,7 @@ export interface TagResourceRequest {
|
|
|
1258
1218
|
|
|
1259
1219
|
resourceArn: string | undefined;
|
|
1260
1220
|
|
|
1261
|
-
tags:
|
|
1262
|
-
[key: string]: string;
|
|
1263
|
-
} | undefined;
|
|
1221
|
+
tags: Record<string, string> | undefined;
|
|
1264
1222
|
}
|
|
1265
1223
|
export declare namespace TagResourceRequest {
|
|
1266
1224
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-wisdom",
|
|
3
3
|
"description": "AWS SDK for JavaScript Wisdom Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.110.0",
|
|
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",
|
|
@@ -18,36 +18,37 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-
|
|
31
|
-
"@aws-sdk/middleware-
|
|
32
|
-
"@aws-sdk/middleware-
|
|
33
|
-
"@aws-sdk/middleware-
|
|
34
|
-
"@aws-sdk/middleware-
|
|
35
|
-
"@aws-sdk/
|
|
36
|
-
"@aws-sdk/node-
|
|
37
|
-
"@aws-sdk/
|
|
38
|
-
"@aws-sdk/
|
|
39
|
-
"@aws-sdk/
|
|
40
|
-
"@aws-sdk/
|
|
41
|
-
"@aws-sdk/
|
|
21
|
+
"@aws-sdk/client-sts": "3.110.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.110.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.110.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.110.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.110.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.110.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.110.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.110.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.110.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.110.0",
|
|
31
|
+
"@aws-sdk/middleware-retry": "3.110.0",
|
|
32
|
+
"@aws-sdk/middleware-serde": "3.110.0",
|
|
33
|
+
"@aws-sdk/middleware-signing": "3.110.0",
|
|
34
|
+
"@aws-sdk/middleware-stack": "3.110.0",
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "3.110.0",
|
|
36
|
+
"@aws-sdk/node-config-provider": "3.110.0",
|
|
37
|
+
"@aws-sdk/node-http-handler": "3.110.0",
|
|
38
|
+
"@aws-sdk/protocol-http": "3.110.0",
|
|
39
|
+
"@aws-sdk/smithy-client": "3.110.0",
|
|
40
|
+
"@aws-sdk/types": "3.110.0",
|
|
41
|
+
"@aws-sdk/url-parser": "3.110.0",
|
|
42
|
+
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
42
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
43
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
44
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.110.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.110.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.110.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.110.0",
|
|
50
|
+
"@aws-sdk/util-utf8-browser": "3.109.0",
|
|
51
|
+
"@aws-sdk/util-utf8-node": "3.109.0",
|
|
51
52
|
"tslib": "^2.3.1",
|
|
52
53
|
"uuid": "^8.3.2"
|
|
53
54
|
},
|