@aws-sdk/polly-request-presigner 3.1087.0 → 3.1088.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.
|
@@ -22,4 +22,4 @@ export interface PresignedPollyInput {
|
|
|
22
22
|
*/
|
|
23
23
|
options?: PresignedPollyOptions;
|
|
24
24
|
}
|
|
25
|
-
export declare const getSynthesizeSpeechUrl: (input: PresignedPollyInput) => Promise<
|
|
25
|
+
export declare const getSynthesizeSpeechUrl: (input: PresignedPollyInput) => Promise<string>;
|
|
@@ -7,6 +7,4 @@ export interface PresignedPollyInput {
|
|
|
7
7
|
params: SynthesizeSpeechInput;
|
|
8
8
|
options?: PresignedPollyOptions;
|
|
9
9
|
}
|
|
10
|
-
export declare const getSynthesizeSpeechUrl: (
|
|
11
|
-
input: PresignedPollyInput
|
|
12
|
-
) => Promise<String>;
|
|
10
|
+
export declare const getSynthesizeSpeechUrl: (input: PresignedPollyInput) => Promise<string>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/polly-request-presigner",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1088.0",
|
|
4
|
+
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/packages/polly-request-presigner",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "AWS SDK for JavaScript Team",
|
|
8
|
+
"url": "https://aws.amazon.com/sdk-for-javascript/"
|
|
9
|
+
},
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/aws/aws-sdk-js-v3.git",
|
|
13
|
+
"directory": "packages/polly-request-presigner"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist-*/**"
|
|
17
|
+
],
|
|
18
|
+
"sideEffects": false,
|
|
19
|
+
"main": "./dist-cjs/index.js",
|
|
20
|
+
"module": "./dist-es/index.js",
|
|
21
|
+
"types": "./dist-types/index.d.ts",
|
|
22
|
+
"typesVersions": {
|
|
23
|
+
"<4.5": {
|
|
24
|
+
"dist-types/*": [
|
|
25
|
+
"dist-types/ts3.4/*"
|
|
26
|
+
]
|
|
27
|
+
}
|
|
28
|
+
},
|
|
4
29
|
"scripts": {
|
|
5
30
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
6
31
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
@@ -15,21 +40,12 @@
|
|
|
15
40
|
"test:integration": "yarn g:vitest run -c vitest.config.integ.mts",
|
|
16
41
|
"test:integration:watch": "yarn g:vitest watch -c vitest.config.integ.mts"
|
|
17
42
|
},
|
|
18
|
-
"main": "./dist-cjs/index.js",
|
|
19
|
-
"module": "./dist-es/index.js",
|
|
20
|
-
"types": "./dist-types/index.d.ts",
|
|
21
|
-
"sideEffects": false,
|
|
22
|
-
"author": {
|
|
23
|
-
"name": "AWS SDK for JavaScript Team",
|
|
24
|
-
"url": "https://aws.amazon.com/sdk-for-javascript/"
|
|
25
|
-
},
|
|
26
|
-
"license": "Apache-2.0",
|
|
27
43
|
"dependencies": {
|
|
28
|
-
"@aws-sdk/client-polly": "3.
|
|
29
|
-
"@aws-sdk/core": "^3.975.
|
|
30
|
-
"@aws-sdk/types": "^3.974.
|
|
31
|
-
"@smithy/core": "^3.29.
|
|
32
|
-
"@smithy/signature-v4": "^5.6.
|
|
44
|
+
"@aws-sdk/client-polly": "3.1088.0",
|
|
45
|
+
"@aws-sdk/core": "^3.975.3",
|
|
46
|
+
"@aws-sdk/types": "^3.974.2",
|
|
47
|
+
"@smithy/core": "^3.29.4",
|
|
48
|
+
"@smithy/signature-v4": "^5.6.5",
|
|
33
49
|
"@smithy/types": "^4.16.1",
|
|
34
50
|
"tslib": "^2.6.2"
|
|
35
51
|
},
|
|
@@ -43,21 +59,5 @@
|
|
|
43
59
|
},
|
|
44
60
|
"engines": {
|
|
45
61
|
"node": ">=20.0.0"
|
|
46
|
-
},
|
|
47
|
-
"typesVersions": {
|
|
48
|
-
"<4.5": {
|
|
49
|
-
"dist-types/*": [
|
|
50
|
-
"dist-types/ts3.4/*"
|
|
51
|
-
]
|
|
52
|
-
}
|
|
53
|
-
},
|
|
54
|
-
"files": [
|
|
55
|
-
"dist-*/**"
|
|
56
|
-
],
|
|
57
|
-
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/packages/polly-request-presigner",
|
|
58
|
-
"repository": {
|
|
59
|
-
"type": "git",
|
|
60
|
-
"url": "https://github.com/aws/aws-sdk-js-v3.git",
|
|
61
|
-
"directory": "packages/polly-request-presigner"
|
|
62
62
|
}
|
|
63
63
|
}
|