@aws-sdk/client-wisdom 3.369.0 → 3.377.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/dist-types/commands/CreateAssistantCommand.d.ts +3 -0
- package/dist-types/commands/CreateSessionCommand.d.ts +3 -0
- package/dist-types/commands/GetAssistantCommand.d.ts +3 -0
- package/dist-types/commands/GetSessionCommand.d.ts +3 -0
- package/dist-types/commands/ListAssistantsCommand.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +32 -0
- package/dist-types/ts3.4/models/models_0.d.ts +9 -0
- package/package.json +16 -17
|
@@ -58,6 +58,9 @@ export interface CreateAssistantCommandOutput extends CreateAssistantResponse, _
|
|
|
58
58
|
* // serverSideEncryptionConfiguration: { // ServerSideEncryptionConfiguration
|
|
59
59
|
* // kmsKeyId: "STRING_VALUE",
|
|
60
60
|
* // },
|
|
61
|
+
* // integrationConfiguration: { // AssistantIntegrationConfiguration
|
|
62
|
+
* // topicIntegrationArn: "STRING_VALUE",
|
|
63
|
+
* // },
|
|
61
64
|
* // },
|
|
62
65
|
* // };
|
|
63
66
|
*
|
|
@@ -52,6 +52,9 @@ export interface CreateSessionCommandOutput extends CreateSessionResponse, __Met
|
|
|
52
52
|
* // tags: { // Tags
|
|
53
53
|
* // "<keys>": "STRING_VALUE",
|
|
54
54
|
* // },
|
|
55
|
+
* // integrationConfiguration: { // SessionIntegrationConfiguration
|
|
56
|
+
* // topicIntegrationArn: "STRING_VALUE",
|
|
57
|
+
* // },
|
|
55
58
|
* // },
|
|
56
59
|
* // };
|
|
57
60
|
*
|
|
@@ -49,6 +49,9 @@ export interface GetAssistantCommandOutput extends GetAssistantResponse, __Metad
|
|
|
49
49
|
* // serverSideEncryptionConfiguration: { // ServerSideEncryptionConfiguration
|
|
50
50
|
* // kmsKeyId: "STRING_VALUE",
|
|
51
51
|
* // },
|
|
52
|
+
* // integrationConfiguration: { // AssistantIntegrationConfiguration
|
|
53
|
+
* // topicIntegrationArn: "STRING_VALUE",
|
|
54
|
+
* // },
|
|
52
55
|
* // },
|
|
53
56
|
* // };
|
|
54
57
|
*
|
|
@@ -45,6 +45,9 @@ export interface GetSessionCommandOutput extends GetSessionResponse, __MetadataB
|
|
|
45
45
|
* // tags: { // Tags
|
|
46
46
|
* // "<keys>": "STRING_VALUE",
|
|
47
47
|
* // },
|
|
48
|
+
* // integrationConfiguration: { // SessionIntegrationConfiguration
|
|
49
|
+
* // topicIntegrationArn: "STRING_VALUE",
|
|
50
|
+
* // },
|
|
48
51
|
* // },
|
|
49
52
|
* // };
|
|
50
53
|
*
|
|
@@ -51,6 +51,9 @@ export interface ListAssistantsCommandOutput extends ListAssistantsResponse, __M
|
|
|
51
51
|
* // serverSideEncryptionConfiguration: { // ServerSideEncryptionConfiguration
|
|
52
52
|
* // kmsKeyId: "STRING_VALUE",
|
|
53
53
|
* // },
|
|
54
|
+
* // integrationConfiguration: { // AssistantIntegrationConfiguration
|
|
55
|
+
* // topicIntegrationArn: "STRING_VALUE",
|
|
56
|
+
* // },
|
|
54
57
|
* // },
|
|
55
58
|
* // ],
|
|
56
59
|
* // nextToken: "STRING_VALUE",
|
|
@@ -435,6 +435,16 @@ export interface CreateAssistantRequest {
|
|
|
435
435
|
*/
|
|
436
436
|
serverSideEncryptionConfiguration?: ServerSideEncryptionConfiguration;
|
|
437
437
|
}
|
|
438
|
+
/**
|
|
439
|
+
* @public
|
|
440
|
+
* <p>The configuration information for the Wisdom assistant integration.</p>
|
|
441
|
+
*/
|
|
442
|
+
export interface AssistantIntegrationConfiguration {
|
|
443
|
+
/**
|
|
444
|
+
* <p>The Amazon Resource Name (ARN) of the integrated Amazon SNS topic used for streaming chat messages.</p>
|
|
445
|
+
*/
|
|
446
|
+
topicIntegrationArn?: string;
|
|
447
|
+
}
|
|
438
448
|
/**
|
|
439
449
|
* @public
|
|
440
450
|
* @enum
|
|
@@ -488,6 +498,10 @@ export interface AssistantData {
|
|
|
488
498
|
* <p>The KMS key used for encryption.</p>
|
|
489
499
|
*/
|
|
490
500
|
serverSideEncryptionConfiguration?: ServerSideEncryptionConfiguration;
|
|
501
|
+
/**
|
|
502
|
+
* <p>The configuration information for the Wisdom assistant integration.</p>
|
|
503
|
+
*/
|
|
504
|
+
integrationConfiguration?: AssistantIntegrationConfiguration;
|
|
491
505
|
}
|
|
492
506
|
/**
|
|
493
507
|
* @public
|
|
@@ -835,6 +849,10 @@ export interface AssistantSummary {
|
|
|
835
849
|
* <p>The KMS key used for encryption.</p>
|
|
836
850
|
*/
|
|
837
851
|
serverSideEncryptionConfiguration?: ServerSideEncryptionConfiguration;
|
|
852
|
+
/**
|
|
853
|
+
* <p>The configuration information for the Wisdom assistant integration.</p>
|
|
854
|
+
*/
|
|
855
|
+
integrationConfiguration?: AssistantIntegrationConfiguration;
|
|
838
856
|
}
|
|
839
857
|
/**
|
|
840
858
|
* @public
|
|
@@ -1081,6 +1099,16 @@ export interface CreateSessionRequest {
|
|
|
1081
1099
|
*/
|
|
1082
1100
|
tags?: Record<string, string>;
|
|
1083
1101
|
}
|
|
1102
|
+
/**
|
|
1103
|
+
* @public
|
|
1104
|
+
* <p>The configuration information for the session integration.</p>
|
|
1105
|
+
*/
|
|
1106
|
+
export interface SessionIntegrationConfiguration {
|
|
1107
|
+
/**
|
|
1108
|
+
* <p>The Amazon Resource Name (ARN) of the integrated Amazon SNS topic used for streaming chat messages.</p>
|
|
1109
|
+
*/
|
|
1110
|
+
topicIntegrationArn?: string;
|
|
1111
|
+
}
|
|
1084
1112
|
/**
|
|
1085
1113
|
* @public
|
|
1086
1114
|
* <p>Information about the session.</p>
|
|
@@ -1106,6 +1134,10 @@ export interface SessionData {
|
|
|
1106
1134
|
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
1107
1135
|
*/
|
|
1108
1136
|
tags?: Record<string, string>;
|
|
1137
|
+
/**
|
|
1138
|
+
* <p>The configuration information for the session integration.</p>
|
|
1139
|
+
*/
|
|
1140
|
+
integrationConfiguration?: SessionIntegrationConfiguration;
|
|
1109
1141
|
}
|
|
1110
1142
|
/**
|
|
1111
1143
|
* @public
|
|
@@ -153,6 +153,9 @@ export interface CreateAssistantRequest {
|
|
|
153
153
|
tags?: Record<string, string>;
|
|
154
154
|
serverSideEncryptionConfiguration?: ServerSideEncryptionConfiguration;
|
|
155
155
|
}
|
|
156
|
+
export interface AssistantIntegrationConfiguration {
|
|
157
|
+
topicIntegrationArn?: string;
|
|
158
|
+
}
|
|
156
159
|
export declare const AssistantStatus: {
|
|
157
160
|
readonly ACTIVE: "ACTIVE";
|
|
158
161
|
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
@@ -172,6 +175,7 @@ export interface AssistantData {
|
|
|
172
175
|
description?: string;
|
|
173
176
|
tags?: Record<string, string>;
|
|
174
177
|
serverSideEncryptionConfiguration?: ServerSideEncryptionConfiguration;
|
|
178
|
+
integrationConfiguration?: AssistantIntegrationConfiguration;
|
|
175
179
|
}
|
|
176
180
|
export interface CreateAssistantResponse {
|
|
177
181
|
assistant?: AssistantData;
|
|
@@ -287,6 +291,7 @@ export interface AssistantSummary {
|
|
|
287
291
|
description?: string;
|
|
288
292
|
tags?: Record<string, string>;
|
|
289
293
|
serverSideEncryptionConfiguration?: ServerSideEncryptionConfiguration;
|
|
294
|
+
integrationConfiguration?: AssistantIntegrationConfiguration;
|
|
290
295
|
}
|
|
291
296
|
export interface ListAssistantsResponse {
|
|
292
297
|
assistantSummaries: AssistantSummary[] | undefined;
|
|
@@ -360,12 +365,16 @@ export interface CreateSessionRequest {
|
|
|
360
365
|
description?: string;
|
|
361
366
|
tags?: Record<string, string>;
|
|
362
367
|
}
|
|
368
|
+
export interface SessionIntegrationConfiguration {
|
|
369
|
+
topicIntegrationArn?: string;
|
|
370
|
+
}
|
|
363
371
|
export interface SessionData {
|
|
364
372
|
sessionArn: string | undefined;
|
|
365
373
|
sessionId: string | undefined;
|
|
366
374
|
name: string | undefined;
|
|
367
375
|
description?: string;
|
|
368
376
|
tags?: Record<string, string>;
|
|
377
|
+
integrationConfiguration?: SessionIntegrationConfiguration;
|
|
369
378
|
}
|
|
370
379
|
export interface CreateSessionResponse {
|
|
371
380
|
session?: SessionData;
|
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.377.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",
|
|
@@ -21,29 +21,29 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.377.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.370.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.370.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.370.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.370.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.370.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.370.0",
|
|
31
|
+
"@aws-sdk/types": "3.370.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.370.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.370.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.370.0",
|
|
35
35
|
"@smithy/config-resolver": "^1.0.1",
|
|
36
36
|
"@smithy/fetch-http-handler": "^1.0.1",
|
|
37
37
|
"@smithy/hash-node": "^1.0.1",
|
|
38
38
|
"@smithy/invalid-dependency": "^1.0.1",
|
|
39
39
|
"@smithy/middleware-content-length": "^1.0.1",
|
|
40
|
-
"@smithy/middleware-endpoint": "^1.0.
|
|
41
|
-
"@smithy/middleware-retry": "^1.0.
|
|
40
|
+
"@smithy/middleware-endpoint": "^1.0.2",
|
|
41
|
+
"@smithy/middleware-retry": "^1.0.3",
|
|
42
42
|
"@smithy/middleware-serde": "^1.0.1",
|
|
43
43
|
"@smithy/middleware-stack": "^1.0.1",
|
|
44
44
|
"@smithy/node-config-provider": "^1.0.1",
|
|
45
45
|
"@smithy/node-http-handler": "^1.0.2",
|
|
46
|
-
"@smithy/protocol-http": "^1.0
|
|
46
|
+
"@smithy/protocol-http": "^1.1.0",
|
|
47
47
|
"@smithy/smithy-client": "^1.0.3",
|
|
48
48
|
"@smithy/types": "^1.1.0",
|
|
49
49
|
"@smithy/url-parser": "^1.0.1",
|
|
@@ -52,13 +52,12 @@
|
|
|
52
52
|
"@smithy/util-body-length-node": "^1.0.1",
|
|
53
53
|
"@smithy/util-defaults-mode-browser": "^1.0.1",
|
|
54
54
|
"@smithy/util-defaults-mode-node": "^1.0.1",
|
|
55
|
-
"@smithy/util-retry": "^1.0.
|
|
55
|
+
"@smithy/util-retry": "^1.0.3",
|
|
56
56
|
"@smithy/util-utf8": "^1.0.1",
|
|
57
57
|
"tslib": "^2.5.0",
|
|
58
58
|
"uuid": "^8.3.2"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@aws-sdk/service-client-documentation-generator": "3.310.0",
|
|
62
61
|
"@smithy/service-client-documentation-generator": "^1.0.1",
|
|
63
62
|
"@tsconfig/node14": "1.0.3",
|
|
64
63
|
"@types/node": "^14.14.31",
|