@aws-sdk/client-lex-models-v2 3.445.0 → 3.449.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/CreateBotAliasCommand.d.ts +4 -0
- package/dist-types/commands/DescribeBotAliasCommand.d.ts +2 -0
- package/dist-types/commands/UpdateBotAliasCommand.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +10 -0
- package/dist-types/ts3.4/models/models_0.d.ts +2 -0
- package/package.json +12 -12
|
@@ -59,6 +59,7 @@ export interface CreateBotAliasCommandOutput extends CreateBotAliasResponse, __M
|
|
|
59
59
|
* logPrefix: "STRING_VALUE", // required
|
|
60
60
|
* },
|
|
61
61
|
* },
|
|
62
|
+
* selectiveLoggingEnabled: true || false,
|
|
62
63
|
* },
|
|
63
64
|
* ],
|
|
64
65
|
* audioLogSettings: [ // AudioLogSettingsList
|
|
@@ -71,6 +72,7 @@ export interface CreateBotAliasCommandOutput extends CreateBotAliasResponse, __M
|
|
|
71
72
|
* logPrefix: "STRING_VALUE", // required
|
|
72
73
|
* },
|
|
73
74
|
* },
|
|
75
|
+
* selectiveLoggingEnabled: true || false,
|
|
74
76
|
* },
|
|
75
77
|
* ],
|
|
76
78
|
* },
|
|
@@ -110,6 +112,7 @@ export interface CreateBotAliasCommandOutput extends CreateBotAliasResponse, __M
|
|
|
110
112
|
* // logPrefix: "STRING_VALUE", // required
|
|
111
113
|
* // },
|
|
112
114
|
* // },
|
|
115
|
+
* // selectiveLoggingEnabled: true || false,
|
|
113
116
|
* // },
|
|
114
117
|
* // ],
|
|
115
118
|
* // audioLogSettings: [ // AudioLogSettingsList
|
|
@@ -122,6 +125,7 @@ export interface CreateBotAliasCommandOutput extends CreateBotAliasResponse, __M
|
|
|
122
125
|
* // logPrefix: "STRING_VALUE", // required
|
|
123
126
|
* // },
|
|
124
127
|
* // },
|
|
128
|
+
* // selectiveLoggingEnabled: true || false,
|
|
125
129
|
* // },
|
|
126
130
|
* // ],
|
|
127
131
|
* // },
|
|
@@ -62,6 +62,7 @@ export interface DescribeBotAliasCommandOutput extends DescribeBotAliasResponse,
|
|
|
62
62
|
* // logPrefix: "STRING_VALUE", // required
|
|
63
63
|
* // },
|
|
64
64
|
* // },
|
|
65
|
+
* // selectiveLoggingEnabled: true || false,
|
|
65
66
|
* // },
|
|
66
67
|
* // ],
|
|
67
68
|
* // audioLogSettings: [ // AudioLogSettingsList
|
|
@@ -74,6 +75,7 @@ export interface DescribeBotAliasCommandOutput extends DescribeBotAliasResponse,
|
|
|
74
75
|
* // logPrefix: "STRING_VALUE", // required
|
|
75
76
|
* // },
|
|
76
77
|
* // },
|
|
78
|
+
* // selectiveLoggingEnabled: true || false,
|
|
77
79
|
* // },
|
|
78
80
|
* // ],
|
|
79
81
|
* // },
|
|
@@ -56,6 +56,7 @@ export interface UpdateBotAliasCommandOutput extends UpdateBotAliasResponse, __M
|
|
|
56
56
|
* logPrefix: "STRING_VALUE", // required
|
|
57
57
|
* },
|
|
58
58
|
* },
|
|
59
|
+
* selectiveLoggingEnabled: true || false,
|
|
59
60
|
* },
|
|
60
61
|
* ],
|
|
61
62
|
* audioLogSettings: [ // AudioLogSettingsList
|
|
@@ -68,6 +69,7 @@ export interface UpdateBotAliasCommandOutput extends UpdateBotAliasResponse, __M
|
|
|
68
69
|
* logPrefix: "STRING_VALUE", // required
|
|
69
70
|
* },
|
|
70
71
|
* },
|
|
72
|
+
* selectiveLoggingEnabled: true || false,
|
|
71
73
|
* },
|
|
72
74
|
* ],
|
|
73
75
|
* },
|
|
@@ -104,6 +106,7 @@ export interface UpdateBotAliasCommandOutput extends UpdateBotAliasResponse, __M
|
|
|
104
106
|
* // logPrefix: "STRING_VALUE", // required
|
|
105
107
|
* // },
|
|
106
108
|
* // },
|
|
109
|
+
* // selectiveLoggingEnabled: true || false,
|
|
107
110
|
* // },
|
|
108
111
|
* // ],
|
|
109
112
|
* // audioLogSettings: [ // AudioLogSettingsList
|
|
@@ -116,6 +119,7 @@ export interface UpdateBotAliasCommandOutput extends UpdateBotAliasResponse, __M
|
|
|
116
119
|
* // logPrefix: "STRING_VALUE", // required
|
|
117
120
|
* // },
|
|
118
121
|
* // },
|
|
122
|
+
* // selectiveLoggingEnabled: true || false,
|
|
119
123
|
* // },
|
|
120
124
|
* // ],
|
|
121
125
|
* // },
|
|
@@ -2290,6 +2290,11 @@ export interface AudioLogSetting {
|
|
|
2290
2290
|
* is enabled for a bot.</p>
|
|
2291
2291
|
*/
|
|
2292
2292
|
destination: AudioLogDestination | undefined;
|
|
2293
|
+
/**
|
|
2294
|
+
* @public
|
|
2295
|
+
* <p>The option to enable selective conversation log capture for audio.</p>
|
|
2296
|
+
*/
|
|
2297
|
+
selectiveLoggingEnabled?: boolean;
|
|
2293
2298
|
}
|
|
2294
2299
|
/**
|
|
2295
2300
|
* @public
|
|
@@ -4259,6 +4264,11 @@ export interface TextLogSetting {
|
|
|
4259
4264
|
* conversation text logs.</p>
|
|
4260
4265
|
*/
|
|
4261
4266
|
destination: TextLogDestination | undefined;
|
|
4267
|
+
/**
|
|
4268
|
+
* @public
|
|
4269
|
+
* <p>The option to enable selective conversation log capture for text.</p>
|
|
4270
|
+
*/
|
|
4271
|
+
selectiveLoggingEnabled?: boolean;
|
|
4262
4272
|
}
|
|
4263
4273
|
/**
|
|
4264
4274
|
* @public
|
|
@@ -430,6 +430,7 @@ export interface AudioLogDestination {
|
|
|
430
430
|
export interface AudioLogSetting {
|
|
431
431
|
enabled: boolean | undefined;
|
|
432
432
|
destination: AudioLogDestination | undefined;
|
|
433
|
+
selectiveLoggingEnabled?: boolean;
|
|
433
434
|
}
|
|
434
435
|
export interface NewCustomVocabularyItem {
|
|
435
436
|
phrase: string | undefined;
|
|
@@ -957,6 +958,7 @@ export interface TextLogDestination {
|
|
|
957
958
|
export interface TextLogSetting {
|
|
958
959
|
enabled: boolean | undefined;
|
|
959
960
|
destination: TextLogDestination | undefined;
|
|
961
|
+
selectiveLoggingEnabled?: boolean;
|
|
960
962
|
}
|
|
961
963
|
export interface ConversationLogSettings {
|
|
962
964
|
textLogSettings?: TextLogSetting[];
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-lex-models-v2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Lex Models V2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.449.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,19 +21,19 @@
|
|
|
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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.449.0",
|
|
25
25
|
"@aws-sdk/core": "3.445.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-signing": "3.
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.449.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.449.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.449.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.449.0",
|
|
30
|
+
"@aws-sdk/middleware-signing": "3.449.0",
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "3.449.0",
|
|
32
32
|
"@aws-sdk/region-config-resolver": "3.433.0",
|
|
33
|
-
"@aws-sdk/types": "3.
|
|
34
|
-
"@aws-sdk/util-endpoints": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
36
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/types": "3.449.0",
|
|
34
|
+
"@aws-sdk/util-endpoints": "3.449.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-browser": "3.449.0",
|
|
36
|
+
"@aws-sdk/util-user-agent-node": "3.449.0",
|
|
37
37
|
"@smithy/config-resolver": "^2.0.16",
|
|
38
38
|
"@smithy/fetch-http-handler": "^2.2.4",
|
|
39
39
|
"@smithy/hash-node": "^2.0.12",
|