@aws-sdk/client-lex-models-v2 3.431.0 → 3.433.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.
|
@@ -5114,7 +5114,7 @@ export interface PromptSpecification {
|
|
|
5114
5114
|
* @public
|
|
5115
5115
|
* <p>Specifies the advanced settings on each attempt of the prompt.</p>
|
|
5116
5116
|
*/
|
|
5117
|
-
promptAttemptsSpecification?: Record<PromptAttempt, PromptAttemptSpecification
|
|
5117
|
+
promptAttemptsSpecification?: Partial<Record<PromptAttempt, PromptAttemptSpecification>>;
|
|
5118
5118
|
}
|
|
5119
5119
|
/**
|
|
5120
5120
|
* @public
|
|
@@ -804,12 +804,12 @@ export interface IntentClassificationTestResultItemCounts {
|
|
|
804
804
|
* @public
|
|
805
805
|
* <p>The number of matched, mismatched, and execution error results for speech transcription for the intent.</p>
|
|
806
806
|
*/
|
|
807
|
-
speechTranscriptionResultCounts?: Record<TestResultMatchStatus, number
|
|
807
|
+
speechTranscriptionResultCounts?: Partial<Record<TestResultMatchStatus, number>>;
|
|
808
808
|
/**
|
|
809
809
|
* @public
|
|
810
810
|
* <p>The number of matched and mismatched results for intent recognition for the intent.</p>
|
|
811
811
|
*/
|
|
812
|
-
intentMatchResultCounts: Record<TestResultMatchStatus, number
|
|
812
|
+
intentMatchResultCounts: Partial<Record<TestResultMatchStatus, number>> | undefined;
|
|
813
813
|
}
|
|
814
814
|
/**
|
|
815
815
|
* @public
|
|
@@ -906,12 +906,12 @@ export interface SlotResolutionTestResultItemCounts {
|
|
|
906
906
|
* @public
|
|
907
907
|
* <p>The number of matched, mismatched and execution error results for speech transcription for the slot.</p>
|
|
908
908
|
*/
|
|
909
|
-
speechTranscriptionResultCounts?: Record<TestResultMatchStatus, number
|
|
909
|
+
speechTranscriptionResultCounts?: Partial<Record<TestResultMatchStatus, number>>;
|
|
910
910
|
/**
|
|
911
911
|
* @public
|
|
912
912
|
* <p>The number of matched and mismatched results for slot resolution for the slot.</p>
|
|
913
913
|
*/
|
|
914
|
-
slotMatchResultCounts: Record<TestResultMatchStatus, number
|
|
914
|
+
slotMatchResultCounts: Partial<Record<TestResultMatchStatus, number>> | undefined;
|
|
915
915
|
}
|
|
916
916
|
/**
|
|
917
917
|
* @public
|
|
@@ -3282,12 +3282,12 @@ export interface OverallTestResultItem {
|
|
|
3282
3282
|
* @public
|
|
3283
3283
|
* <p>The number of speech transcription results in the overall test.</p>
|
|
3284
3284
|
*/
|
|
3285
|
-
speechTranscriptionResultCounts?: Record<TestResultMatchStatus, number
|
|
3285
|
+
speechTranscriptionResultCounts?: Partial<Record<TestResultMatchStatus, number>>;
|
|
3286
3286
|
/**
|
|
3287
3287
|
* @public
|
|
3288
3288
|
* <p>The number of results that succeeded.</p>
|
|
3289
3289
|
*/
|
|
3290
|
-
endToEndResultCounts: Record<TestResultMatchStatus, number
|
|
3290
|
+
endToEndResultCounts: Partial<Record<TestResultMatchStatus, number>> | undefined;
|
|
3291
3291
|
}
|
|
3292
3292
|
/**
|
|
3293
3293
|
* @public
|
|
@@ -1142,9 +1142,8 @@ export interface PromptSpecification {
|
|
|
1142
1142
|
maxRetries: number | undefined;
|
|
1143
1143
|
allowInterrupt?: boolean;
|
|
1144
1144
|
messageSelectionStrategy?: MessageSelectionStrategy;
|
|
1145
|
-
promptAttemptsSpecification?:
|
|
1146
|
-
PromptAttempt,
|
|
1147
|
-
PromptAttemptSpecification
|
|
1145
|
+
promptAttemptsSpecification?: Partial<
|
|
1146
|
+
Record<PromptAttempt, PromptAttemptSpecification>
|
|
1148
1147
|
>;
|
|
1149
1148
|
}
|
|
1150
1149
|
export interface KendraConfiguration {
|
|
@@ -331,8 +331,12 @@ export interface RuntimeHintValue {
|
|
|
331
331
|
}
|
|
332
332
|
export interface IntentClassificationTestResultItemCounts {
|
|
333
333
|
totalResultCount: number | undefined;
|
|
334
|
-
speechTranscriptionResultCounts?:
|
|
335
|
-
|
|
334
|
+
speechTranscriptionResultCounts?: Partial<
|
|
335
|
+
Record<TestResultMatchStatus, number>
|
|
336
|
+
>;
|
|
337
|
+
intentMatchResultCounts:
|
|
338
|
+
| Partial<Record<TestResultMatchStatus, number>>
|
|
339
|
+
| undefined;
|
|
336
340
|
}
|
|
337
341
|
export interface IntentClassificationTestResultItem {
|
|
338
342
|
intentName: string | undefined;
|
|
@@ -360,8 +364,12 @@ export interface IntentFilter {
|
|
|
360
364
|
}
|
|
361
365
|
export interface SlotResolutionTestResultItemCounts {
|
|
362
366
|
totalResultCount: number | undefined;
|
|
363
|
-
speechTranscriptionResultCounts?:
|
|
364
|
-
|
|
367
|
+
speechTranscriptionResultCounts?: Partial<
|
|
368
|
+
Record<TestResultMatchStatus, number>
|
|
369
|
+
>;
|
|
370
|
+
slotMatchResultCounts:
|
|
371
|
+
| Partial<Record<TestResultMatchStatus, number>>
|
|
372
|
+
| undefined;
|
|
365
373
|
}
|
|
366
374
|
export interface SlotResolutionTestResultItem {
|
|
367
375
|
slotName: string | undefined;
|
|
@@ -837,8 +845,12 @@ export interface ListTestExecutionResultItemsRequest {
|
|
|
837
845
|
export interface OverallTestResultItem {
|
|
838
846
|
multiTurnConversation: boolean | undefined;
|
|
839
847
|
totalResultCount: number | undefined;
|
|
840
|
-
speechTranscriptionResultCounts?:
|
|
841
|
-
|
|
848
|
+
speechTranscriptionResultCounts?: Partial<
|
|
849
|
+
Record<TestResultMatchStatus, number>
|
|
850
|
+
>;
|
|
851
|
+
endToEndResultCounts:
|
|
852
|
+
| Partial<Record<TestResultMatchStatus, number>>
|
|
853
|
+
| undefined;
|
|
842
854
|
}
|
|
843
855
|
export interface OverallTestResults {
|
|
844
856
|
items: OverallTestResultItem[] | undefined;
|
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.433.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,41 +21,41 @@
|
|
|
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/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.0.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.2.
|
|
38
|
-
"@smithy/hash-node": "^2.0.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
42
|
-
"@smithy/middleware-retry": "^2.0.
|
|
43
|
-
"@smithy/middleware-serde": "^2.0.
|
|
44
|
-
"@smithy/middleware-stack": "^2.0.
|
|
45
|
-
"@smithy/node-config-provider": "^2.1.
|
|
46
|
-
"@smithy/node-http-handler": "^2.1.
|
|
47
|
-
"@smithy/protocol-http": "^3.0.
|
|
48
|
-
"@smithy/smithy-client": "^2.1.
|
|
49
|
-
"@smithy/types": "^2.
|
|
50
|
-
"@smithy/url-parser": "^2.0.
|
|
24
|
+
"@aws-sdk/client-sts": "3.433.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.433.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.433.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.433.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.433.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.433.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.433.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.433.0",
|
|
32
|
+
"@aws-sdk/types": "3.433.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.433.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.433.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.433.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.16",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.2.4",
|
|
38
|
+
"@smithy/hash-node": "^2.0.12",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.0.12",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.0.14",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.3",
|
|
42
|
+
"@smithy/middleware-retry": "^2.0.18",
|
|
43
|
+
"@smithy/middleware-serde": "^2.0.12",
|
|
44
|
+
"@smithy/middleware-stack": "^2.0.6",
|
|
45
|
+
"@smithy/node-config-provider": "^2.1.3",
|
|
46
|
+
"@smithy/node-http-handler": "^2.1.8",
|
|
47
|
+
"@smithy/protocol-http": "^3.0.8",
|
|
48
|
+
"@smithy/smithy-client": "^2.1.12",
|
|
49
|
+
"@smithy/types": "^2.4.0",
|
|
50
|
+
"@smithy/url-parser": "^2.0.12",
|
|
51
51
|
"@smithy/util-base64": "^2.0.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
56
|
-
"@smithy/util-retry": "^2.0.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.0.16",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.0.21",
|
|
56
|
+
"@smithy/util-retry": "^2.0.5",
|
|
57
57
|
"@smithy/util-utf8": "^2.0.0",
|
|
58
|
-
"@smithy/util-waiter": "^2.0.
|
|
58
|
+
"@smithy/util-waiter": "^2.0.12",
|
|
59
59
|
"tslib": "^2.5.0"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|