@aws-sdk/client-transcribe 3.102.0 → 3.105.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
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **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))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.102.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.101.0...v3.102.0) (2022-05-31)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -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 TranscribeClient 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
|
}
|
|
@@ -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 TranscribeClient = (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;
|
|
@@ -401,9 +401,7 @@ export interface CallAnalyticsJobSettings {
|
|
|
401
401
|
* parameter with the <code>VocabularyName</code> or
|
|
402
402
|
* <code>VocabularyFilterName</code> (or both) sub-parameter.</p>
|
|
403
403
|
*/
|
|
404
|
-
LanguageIdSettings?:
|
|
405
|
-
[key: string]: LanguageIdSettings;
|
|
406
|
-
};
|
|
404
|
+
LanguageIdSettings?: Record<string, LanguageIdSettings>;
|
|
407
405
|
}
|
|
408
406
|
export declare namespace CallAnalyticsJobSettings {
|
|
409
407
|
/**
|
|
@@ -2651,9 +2649,7 @@ export interface TranscriptionJob {
|
|
|
2651
2649
|
* parameter with the <code>VocabularyName</code> or
|
|
2652
2650
|
* <code>VocabularyFilterName</code> (or both) sub-parameter.</p>
|
|
2653
2651
|
*/
|
|
2654
|
-
LanguageIdSettings?:
|
|
2655
|
-
[key: string]: LanguageIdSettings;
|
|
2656
|
-
};
|
|
2652
|
+
LanguageIdSettings?: Record<string, LanguageIdSettings>;
|
|
2657
2653
|
}
|
|
2658
2654
|
export declare namespace TranscriptionJob {
|
|
2659
2655
|
/**
|
|
@@ -3772,9 +3768,7 @@ export interface StartMedicalTranscriptionJobRequest {
|
|
|
3772
3768
|
* encryption context</a> and <a href="https://docs.aws.amazon.com/transcribe/latest/dg/symmetric-asymmetric.html">Asymmetric keys in
|
|
3773
3769
|
* KMS</a>.</p>
|
|
3774
3770
|
*/
|
|
3775
|
-
KMSEncryptionContext?:
|
|
3776
|
-
[key: string]: string;
|
|
3777
|
-
};
|
|
3771
|
+
KMSEncryptionContext?: Record<string, string>;
|
|
3778
3772
|
/**
|
|
3779
3773
|
* <p>Specify additional optional settings in your
|
|
3780
3774
|
* request, including channel identification, alternative transcriptions, and speaker labeling; allows
|
|
@@ -4007,9 +4001,7 @@ export interface StartTranscriptionJobRequest {
|
|
|
4007
4001
|
* encryption context</a> and <a href="https://docs.aws.amazon.com/transcribe/latest/dg/symmetric-asymmetric.html">Asymmetric keys in
|
|
4008
4002
|
* KMS</a>.</p>
|
|
4009
4003
|
*/
|
|
4010
|
-
KMSEncryptionContext?:
|
|
4011
|
-
[key: string]: string;
|
|
4012
|
-
};
|
|
4004
|
+
KMSEncryptionContext?: Record<string, string>;
|
|
4013
4005
|
/**
|
|
4014
4006
|
* <p>Specify additional optional settings in your
|
|
4015
4007
|
* request, including channel identification, alternative transcriptions, speaker labeling; allows
|
|
@@ -4128,9 +4120,7 @@ export interface StartTranscriptionJobRequest {
|
|
|
4128
4120
|
* parameter with the <code>VocabularyName</code> or
|
|
4129
4121
|
* <code>VocabularyFilterName</code> (or both) sub-parameter.</p>
|
|
4130
4122
|
*/
|
|
4131
|
-
LanguageIdSettings?:
|
|
4132
|
-
[key: string]: LanguageIdSettings;
|
|
4133
|
-
};
|
|
4123
|
+
LanguageIdSettings?: Record<string, LanguageIdSettings>;
|
|
4134
4124
|
}
|
|
4135
4125
|
export declare namespace StartTranscriptionJobRequest {
|
|
4136
4126
|
/**
|
|
@@ -177,9 +177,7 @@ export interface CallAnalyticsJobSettings {
|
|
|
177
177
|
|
|
178
178
|
LanguageOptions?: (LanguageCode | string)[];
|
|
179
179
|
|
|
180
|
-
LanguageIdSettings?:
|
|
181
|
-
[key: string]: LanguageIdSettings;
|
|
182
|
-
};
|
|
180
|
+
LanguageIdSettings?: Record<string, LanguageIdSettings>;
|
|
183
181
|
}
|
|
184
182
|
export declare namespace CallAnalyticsJobSettings {
|
|
185
183
|
|
|
@@ -1030,9 +1028,7 @@ export interface TranscriptionJob {
|
|
|
1030
1028
|
|
|
1031
1029
|
Subtitles?: SubtitlesOutput;
|
|
1032
1030
|
|
|
1033
|
-
LanguageIdSettings?:
|
|
1034
|
-
[key: string]: LanguageIdSettings;
|
|
1035
|
-
};
|
|
1031
|
+
LanguageIdSettings?: Record<string, LanguageIdSettings>;
|
|
1036
1032
|
}
|
|
1037
1033
|
export declare namespace TranscriptionJob {
|
|
1038
1034
|
|
|
@@ -1450,9 +1446,7 @@ export interface StartMedicalTranscriptionJobRequest {
|
|
|
1450
1446
|
|
|
1451
1447
|
OutputEncryptionKMSKeyId?: string;
|
|
1452
1448
|
|
|
1453
|
-
KMSEncryptionContext?:
|
|
1454
|
-
[key: string]: string;
|
|
1455
|
-
};
|
|
1449
|
+
KMSEncryptionContext?: Record<string, string>;
|
|
1456
1450
|
|
|
1457
1451
|
Settings?: MedicalTranscriptionSetting;
|
|
1458
1452
|
|
|
@@ -1505,9 +1499,7 @@ export interface StartTranscriptionJobRequest {
|
|
|
1505
1499
|
|
|
1506
1500
|
OutputEncryptionKMSKeyId?: string;
|
|
1507
1501
|
|
|
1508
|
-
KMSEncryptionContext?:
|
|
1509
|
-
[key: string]: string;
|
|
1510
|
-
};
|
|
1502
|
+
KMSEncryptionContext?: Record<string, string>;
|
|
1511
1503
|
|
|
1512
1504
|
Settings?: Settings;
|
|
1513
1505
|
|
|
@@ -1527,9 +1519,7 @@ export interface StartTranscriptionJobRequest {
|
|
|
1527
1519
|
|
|
1528
1520
|
Tags?: Tag[];
|
|
1529
1521
|
|
|
1530
|
-
LanguageIdSettings?:
|
|
1531
|
-
[key: string]: LanguageIdSettings;
|
|
1532
|
-
};
|
|
1522
|
+
LanguageIdSettings?: Record<string, LanguageIdSettings>;
|
|
1533
1523
|
}
|
|
1534
1524
|
export declare namespace StartTranscriptionJobRequest {
|
|
1535
1525
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-transcribe",
|
|
3
3
|
"description": "AWS SDK for JavaScript Transcribe Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.105.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,15 +18,16 @@
|
|
|
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.
|
|
21
|
+
"@aws-sdk/client-sts": "3.105.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.80.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.105.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.78.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.78.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.78.0",
|
|
27
27
|
"@aws-sdk/middleware-content-length": "3.78.0",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "3.78.0",
|
|
29
29
|
"@aws-sdk/middleware-logger": "3.78.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.105.0",
|
|
30
31
|
"@aws-sdk/middleware-retry": "3.80.0",
|
|
31
32
|
"@aws-sdk/middleware-serde": "3.78.0",
|
|
32
33
|
"@aws-sdk/middleware-signing": "3.78.0",
|