@aws-sdk/polly-request-presigner 3.168.0 → 3.170.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,22 @@
|
|
|
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.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/polly-request-presigner
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/polly-request-presigner
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.168.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.167.0...v3.168.0) (2022-09-09)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @aws-sdk/polly-request-presigner
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export declare const ALGORITHM_QUERY_PARAM = "X-Amz-Algorithm";
|
|
2
|
-
export declare const CREDENTIAL_QUERY_PARAM = "X-Amz-Credential";
|
|
3
|
-
export declare const AMZ_DATE_QUERY_PARAM = "X-Amz-Date";
|
|
4
|
-
export declare const SIGNED_HEADERS_QUERY_PARAM = "X-Amz-SignedHeaders";
|
|
5
|
-
export declare const EXPIRES_QUERY_PARAM = "X-Amz-Expires";
|
|
6
|
-
export declare const HOST_HEADER = "host";
|
|
7
|
-
export declare const ALGORITHM_IDENTIFIER = "AWS4-HMAC-SHA256";
|
|
1
|
+
export declare const ALGORITHM_QUERY_PARAM = "X-Amz-Algorithm";
|
|
2
|
+
export declare const CREDENTIAL_QUERY_PARAM = "X-Amz-Credential";
|
|
3
|
+
export declare const AMZ_DATE_QUERY_PARAM = "X-Amz-Date";
|
|
4
|
+
export declare const SIGNED_HEADERS_QUERY_PARAM = "X-Amz-SignedHeaders";
|
|
5
|
+
export declare const EXPIRES_QUERY_PARAM = "X-Amz-Expires";
|
|
6
|
+
export declare const HOST_HEADER = "host";
|
|
7
|
+
export declare const ALGORITHM_IDENTIFIER = "AWS4-HMAC-SHA256";
|
|
@@ -1,2 +1,6 @@
|
|
|
1
|
-
import { PollyClient, SynthesizeSpeechCommand } from "@aws-sdk/client-polly";
|
|
2
|
-
export declare const getSignedUrl: (
|
|
1
|
+
import { PollyClient, SynthesizeSpeechCommand } from "@aws-sdk/client-polly";
|
|
2
|
+
export declare const getSignedUrl: (
|
|
3
|
+
client: PollyClient,
|
|
4
|
+
command: SynthesizeSpeechCommand,
|
|
5
|
+
options?: any
|
|
6
|
+
) => Promise<string>;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { PollyClient, SynthesizeSpeechInput } from "@aws-sdk/client-polly";
|
|
2
|
-
export interface PresignedPollyOptions {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
1
|
+
import { PollyClient, SynthesizeSpeechInput } from "@aws-sdk/client-polly";
|
|
2
|
+
export interface PresignedPollyOptions {
|
|
3
|
+
expiresIn?: number;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
export interface PresignedPollyInput {
|
|
7
|
+
client: PollyClient;
|
|
8
|
+
|
|
9
|
+
params: SynthesizeSpeechInput;
|
|
10
|
+
|
|
11
|
+
options?: PresignedPollyOptions;
|
|
12
|
+
}
|
|
13
|
+
export declare const getSynthesizeSpeechUrl: (
|
|
14
|
+
input: PresignedPollyInput
|
|
15
|
+
) => Promise<String>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./getSynthesizeSpeechUrl";
|
|
1
|
+
export * from "./getSynthesizeSpeechUrl";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/polly-request-presigner",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.170.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
6
6
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,20 +20,20 @@
|
|
|
20
20
|
},
|
|
21
21
|
"license": "Apache-2.0",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@aws-sdk/client-polly": "3.
|
|
24
|
-
"@aws-sdk/protocol-http": "3.
|
|
25
|
-
"@aws-sdk/signature-v4": "3.
|
|
26
|
-
"@aws-sdk/types": "3.
|
|
27
|
-
"@aws-sdk/util-create-request": "3.
|
|
28
|
-
"@aws-sdk/util-format-url": "3.
|
|
23
|
+
"@aws-sdk/client-polly": "3.170.0",
|
|
24
|
+
"@aws-sdk/protocol-http": "3.170.0",
|
|
25
|
+
"@aws-sdk/signature-v4": "3.170.0",
|
|
26
|
+
"@aws-sdk/types": "3.170.0",
|
|
27
|
+
"@aws-sdk/util-create-request": "3.170.0",
|
|
28
|
+
"@aws-sdk/util-format-url": "3.170.0",
|
|
29
29
|
"tslib": "^2.3.1"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@aws-sdk/hash-node": "3.
|
|
32
|
+
"@aws-sdk/hash-node": "3.170.0",
|
|
33
33
|
"@tsconfig/recommended": "1.0.1",
|
|
34
34
|
"@types/node": "^12.0.2",
|
|
35
35
|
"concurrently": "7.0.0",
|
|
36
|
-
"downlevel-dts": "0.
|
|
36
|
+
"downlevel-dts": "0.10.1",
|
|
37
37
|
"rimraf": "3.0.2",
|
|
38
38
|
"typedoc": "0.19.2",
|
|
39
39
|
"typescript": "~4.6.2"
|