@aws-sdk/client-polly 3.496.0 → 3.501.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-cjs/index.js +31 -30
- package/package.json +3 -3
package/dist-cjs/index.js
CHANGED
|
@@ -1862,52 +1862,53 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
|
1862
1862
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1863
1863
|
|
|
1864
1864
|
0 && (module.exports = {
|
|
1865
|
+
PollyServiceException,
|
|
1866
|
+
__Client,
|
|
1867
|
+
PollyClient,
|
|
1868
|
+
Polly,
|
|
1869
|
+
$Command,
|
|
1865
1870
|
DeleteLexiconCommand,
|
|
1866
1871
|
DescribeVoicesCommand,
|
|
1867
|
-
Engine,
|
|
1868
|
-
EngineNotSupportedException,
|
|
1869
|
-
Gender,
|
|
1870
1872
|
GetLexiconCommand,
|
|
1871
|
-
GetLexiconOutputFilterSensitiveLog,
|
|
1872
1873
|
GetSpeechSynthesisTaskCommand,
|
|
1873
|
-
|
|
1874
|
+
ListLexiconsCommand,
|
|
1875
|
+
ListSpeechSynthesisTasksCommand,
|
|
1876
|
+
PutLexiconCommand,
|
|
1877
|
+
StartSpeechSynthesisTaskCommand,
|
|
1878
|
+
SynthesizeSpeechCommand,
|
|
1879
|
+
paginateListSpeechSynthesisTasks,
|
|
1880
|
+
LexiconNotFoundException,
|
|
1881
|
+
ServiceFailureException,
|
|
1882
|
+
Engine,
|
|
1883
|
+
LanguageCode,
|
|
1884
|
+
Gender,
|
|
1885
|
+
VoiceId,
|
|
1874
1886
|
InvalidNextTokenException,
|
|
1887
|
+
EngineNotSupportedException,
|
|
1888
|
+
OutputFormat,
|
|
1889
|
+
SpeechMarkType,
|
|
1890
|
+
TaskStatus,
|
|
1891
|
+
TextType,
|
|
1892
|
+
InvalidTaskIdException,
|
|
1893
|
+
SynthesisTaskNotFoundException,
|
|
1894
|
+
InvalidLexiconException,
|
|
1875
1895
|
InvalidS3BucketException,
|
|
1876
1896
|
InvalidS3KeyException,
|
|
1877
1897
|
InvalidSampleRateException,
|
|
1878
1898
|
InvalidSnsTopicArnException,
|
|
1879
1899
|
InvalidSsmlException,
|
|
1880
|
-
InvalidTaskIdException,
|
|
1881
|
-
LanguageCode,
|
|
1882
1900
|
LanguageNotSupportedException,
|
|
1883
|
-
LexiconFilterSensitiveLog,
|
|
1884
|
-
LexiconNotFoundException,
|
|
1885
1901
|
LexiconSizeExceededException,
|
|
1886
|
-
ListLexiconsCommand,
|
|
1887
|
-
ListSpeechSynthesisTasksCommand,
|
|
1888
1902
|
MarksNotSupportedForFormatException,
|
|
1889
1903
|
MaxLexemeLengthExceededException,
|
|
1890
1904
|
MaxLexiconsNumberExceededException,
|
|
1891
|
-
OutputFormat,
|
|
1892
|
-
Polly,
|
|
1893
|
-
PollyClient,
|
|
1894
|
-
PollyServiceException,
|
|
1895
|
-
PutLexiconCommand,
|
|
1896
|
-
PutLexiconInputFilterSensitiveLog,
|
|
1897
|
-
ServiceFailureException,
|
|
1898
|
-
SpeechMarkType,
|
|
1899
|
-
SsmlMarksNotSupportedForTextTypeException,
|
|
1900
|
-
StartSpeechSynthesisTaskCommand,
|
|
1901
|
-
SynthesisTaskNotFoundException,
|
|
1902
|
-
SynthesizeSpeechCommand,
|
|
1903
|
-
SynthesizeSpeechOutputFilterSensitiveLog,
|
|
1904
|
-
TaskStatus,
|
|
1905
|
-
TextLengthExceededException,
|
|
1906
|
-
TextType,
|
|
1907
1905
|
UnsupportedPlsAlphabetException,
|
|
1908
1906
|
UnsupportedPlsLanguageException,
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
|
|
1907
|
+
SsmlMarksNotSupportedForTextTypeException,
|
|
1908
|
+
TextLengthExceededException,
|
|
1909
|
+
LexiconFilterSensitiveLog,
|
|
1910
|
+
GetLexiconOutputFilterSensitiveLog,
|
|
1911
|
+
PutLexiconInputFilterSensitiveLog,
|
|
1912
|
+
SynthesizeSpeechOutputFilterSensitiveLog
|
|
1912
1913
|
});
|
|
1913
1914
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-polly",
|
|
3
3
|
"description": "AWS SDK for JavaScript Polly Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.501.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-polly",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.501.0",
|
|
24
24
|
"@aws-sdk/core": "3.496.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.501.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.496.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.496.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.496.0",
|