@aws-sdk/client-polly 3.489.0 → 3.495.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.
Files changed (34) hide show
  1. package/dist-cjs/Polly.js +1 -29
  2. package/dist-cjs/PollyClient.js +1 -56
  3. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +1 -43
  4. package/dist-cjs/auth/httpAuthSchemeProvider.js +1 -1
  5. package/dist-cjs/commands/DeleteLexiconCommand.js +1 -28
  6. package/dist-cjs/commands/DescribeVoicesCommand.js +1 -28
  7. package/dist-cjs/commands/GetLexiconCommand.js +1 -29
  8. package/dist-cjs/commands/GetSpeechSynthesisTaskCommand.js +1 -28
  9. package/dist-cjs/commands/ListLexiconsCommand.js +1 -28
  10. package/dist-cjs/commands/ListSpeechSynthesisTasksCommand.js +1 -28
  11. package/dist-cjs/commands/PutLexiconCommand.js +1 -29
  12. package/dist-cjs/commands/StartSpeechSynthesisTaskCommand.js +1 -28
  13. package/dist-cjs/commands/SynthesizeSpeechCommand.js +1 -29
  14. package/dist-cjs/commands/index.js +1 -12
  15. package/dist-cjs/endpoint/EndpointParameters.js +1 -18
  16. package/dist-cjs/extensionConfiguration.js +1 -2
  17. package/dist-cjs/index.js +1910 -11
  18. package/dist-cjs/models/PollyServiceException.js +1 -12
  19. package/dist-cjs/models/index.js +1 -4
  20. package/dist-cjs/models/models_0.js +1 -466
  21. package/dist-cjs/pagination/Interfaces.js +1 -2
  22. package/dist-cjs/pagination/ListSpeechSynthesisTasksPaginator.js +1 -7
  23. package/dist-cjs/pagination/index.js +1 -5
  24. package/dist-cjs/protocols/Aws_restJson1.js +1 -925
  25. package/dist-cjs/runtimeConfig.shared.js +1 -1
  26. package/dist-cjs/runtimeExtensions.js +1 -25
  27. package/dist-es/PollyClient.js +8 -8
  28. package/dist-es/auth/httpAuthSchemeProvider.js +2 -2
  29. package/dist-es/runtimeConfig.shared.js +2 -2
  30. package/dist-types/PollyClient.d.ts +2 -2
  31. package/dist-types/auth/httpAuthSchemeProvider.d.ts +4 -4
  32. package/dist-types/ts3.4/PollyClient.d.ts +2 -2
  33. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +6 -6
  34. package/package.json +41 -41
@@ -22,7 +22,7 @@ const getRuntimeConfig = (config) => {
22
22
  {
23
23
  schemeId: "aws.auth#sigv4",
24
24
  identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
25
- signer: new core_1.AWSSDKSigV4Signer(),
25
+ signer: new core_1.AwsSdkSigV4Signer(),
26
26
  },
27
27
  ],
28
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
@@ -1,25 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.resolveRuntimeExtensions = void 0;
4
- const region_config_resolver_1 = require("@aws-sdk/region-config-resolver");
5
- const protocol_http_1 = require("@smithy/protocol-http");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- const httpAuthExtensionConfiguration_1 = require("./auth/httpAuthExtensionConfiguration");
8
- const asPartial = (t) => t;
9
- const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
10
- const extensionConfiguration = {
11
- ...asPartial((0, region_config_resolver_1.getAwsRegionExtensionConfiguration)(runtimeConfig)),
12
- ...asPartial((0, smithy_client_1.getDefaultExtensionConfiguration)(runtimeConfig)),
13
- ...asPartial((0, protocol_http_1.getHttpHandlerExtensionConfiguration)(runtimeConfig)),
14
- ...asPartial((0, httpAuthExtensionConfiguration_1.getHttpAuthExtensionConfiguration)(runtimeConfig)),
15
- };
16
- extensions.forEach((extension) => extension.configure(extensionConfiguration));
17
- return {
18
- ...runtimeConfig,
19
- ...(0, region_config_resolver_1.resolveAwsRegionExtensionConfiguration)(extensionConfiguration),
20
- ...(0, smithy_client_1.resolveDefaultRuntimeConfig)(extensionConfiguration),
21
- ...(0, protocol_http_1.resolveHttpHandlerRuntimeConfig)(extensionConfiguration),
22
- ...(0, httpAuthExtensionConfiguration_1.resolveHttpAuthRuntimeConfig)(extensionConfiguration),
23
- };
24
- };
25
- exports.resolveRuntimeExtensions = resolveRuntimeExtensions;
1
+ module.exports = require("./index.js");
@@ -14,14 +14,6 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
14
14
  import { resolveRuntimeExtensions } from "./runtimeExtensions";
15
15
  export { __Client };
16
16
  export class PollyClient extends __Client {
17
- getDefaultHttpAuthSchemeParametersProvider() {
18
- return defaultPollyHttpAuthSchemeParametersProvider;
19
- }
20
- getIdentityProviderConfigProvider() {
21
- return async (config) => new DefaultIdentityProviderConfig({
22
- "aws.auth#sigv4": config.credentials,
23
- });
24
- }
25
17
  constructor(...[configuration]) {
26
18
  const _config_0 = __getRuntimeConfig(configuration || {});
27
19
  const _config_1 = resolveClientEndpointParameters(_config_0);
@@ -49,4 +41,12 @@ export class PollyClient extends __Client {
49
41
  destroy() {
50
42
  super.destroy();
51
43
  }
44
+ getDefaultHttpAuthSchemeParametersProvider() {
45
+ return defaultPollyHttpAuthSchemeParametersProvider;
46
+ }
47
+ getIdentityProviderConfigProvider() {
48
+ return async (config) => new DefaultIdentityProviderConfig({
49
+ "aws.auth#sigv4": config.credentials,
50
+ });
51
+ }
52
52
  }
@@ -1,4 +1,4 @@
1
- import { resolveAWSSDKSigV4Config, } from "@aws-sdk/core";
1
+ import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core";
2
2
  import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware";
3
3
  export const defaultPollyHttpAuthSchemeParametersProvider = async (config, context, input) => {
4
4
  return {
@@ -34,7 +34,7 @@ export const defaultPollyHttpAuthSchemeProvider = (authParameters) => {
34
34
  return options;
35
35
  };
36
36
  export const resolveHttpAuthSchemeConfig = (config) => {
37
- const config_0 = resolveAWSSDKSigV4Config(config);
37
+ const config_0 = resolveAwsSdkSigV4Config(config);
38
38
  return {
39
39
  ...config_0,
40
40
  };
@@ -1,4 +1,4 @@
1
- import { AWSSDKSigV4Signer } from "@aws-sdk/core";
1
+ import { AwsSdkSigV4Signer } from "@aws-sdk/core";
2
2
  import { NoOpLogger } from "@smithy/smithy-client";
3
3
  import { parseUrl } from "@smithy/url-parser";
4
4
  import { fromBase64, toBase64 } from "@smithy/util-base64";
@@ -19,7 +19,7 @@ export const getRuntimeConfig = (config) => {
19
19
  {
20
20
  schemeId: "aws.auth#sigv4",
21
21
  identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
22
- signer: new AWSSDKSigV4Signer(),
22
+ signer: new AwsSdkSigV4Signer(),
23
23
  },
24
24
  ],
25
25
  logger: config?.logger ?? new NoOpLogger(),
@@ -178,8 +178,6 @@ export declare class PollyClient extends __Client<__HttpHandlerOptions, ServiceI
178
178
  * The resolved configuration of PollyClient class. This is resolved and normalized from the {@link PollyClientConfig | constructor configuration interface}.
179
179
  */
180
180
  readonly config: PollyClientResolvedConfig;
181
- private getDefaultHttpAuthSchemeParametersProvider;
182
- private getIdentityProviderConfigProvider;
183
181
  constructor(...[configuration]: __CheckOptionalClientConfig<PollyClientConfig>);
184
182
  /**
185
183
  * Destroy underlying resources, like sockets. It's usually not necessary to do this.
@@ -187,4 +185,6 @@ export declare class PollyClient extends __Client<__HttpHandlerOptions, ServiceI
187
185
  * Otherwise, sockets might stay open for quite a long time before the server terminates them.
188
186
  */
189
187
  destroy(): void;
188
+ private getDefaultHttpAuthSchemeParametersProvider;
189
+ private getIdentityProviderConfigProvider;
190
190
  }
@@ -1,4 +1,4 @@
1
- import { AWSSDKSigV4AuthInputConfig, AWSSDKSigV4AuthResolvedConfig, AWSSDKSigV4PreviouslyResolved } from "@aws-sdk/core";
1
+ import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core";
2
2
  import { HandlerExecutionContext, HttpAuthScheme, HttpAuthSchemeParameters, HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider } from "@smithy/types";
3
3
  import { PollyClientResolvedConfig } from "../PollyClient";
4
4
  /**
@@ -28,7 +28,7 @@ export declare const defaultPollyHttpAuthSchemeProvider: PollyHttpAuthSchemeProv
28
28
  /**
29
29
  * @internal
30
30
  */
31
- export interface HttpAuthSchemeInputConfig extends AWSSDKSigV4AuthInputConfig {
31
+ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
32
32
  /**
33
33
  * experimentalIdentityAndAuth: Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
34
34
  * @internal
@@ -43,7 +43,7 @@ export interface HttpAuthSchemeInputConfig extends AWSSDKSigV4AuthInputConfig {
43
43
  /**
44
44
  * @internal
45
45
  */
46
- export interface HttpAuthSchemeResolvedConfig extends AWSSDKSigV4AuthResolvedConfig {
46
+ export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
47
47
  /**
48
48
  * experimentalIdentityAndAuth: Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
49
49
  * @internal
@@ -58,4 +58,4 @@ export interface HttpAuthSchemeResolvedConfig extends AWSSDKSigV4AuthResolvedCon
58
58
  /**
59
59
  * @internal
60
60
  */
61
- export declare const resolveHttpAuthSchemeConfig: <T>(config: T & HttpAuthSchemeInputConfig & AWSSDKSigV4PreviouslyResolved) => T & HttpAuthSchemeResolvedConfig;
61
+ export declare const resolveHttpAuthSchemeConfig: <T>(config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved) => T & HttpAuthSchemeResolvedConfig;
@@ -167,10 +167,10 @@ export declare class PollyClient extends __Client<
167
167
  PollyClientResolvedConfig
168
168
  > {
169
169
  readonly config: PollyClientResolvedConfig;
170
- private getDefaultHttpAuthSchemeParametersProvider;
171
- private getIdentityProviderConfigProvider;
172
170
  constructor(
173
171
  ...[configuration]: __CheckOptionalClientConfig<PollyClientConfig>
174
172
  );
175
173
  destroy(): void;
174
+ private getDefaultHttpAuthSchemeParametersProvider;
175
+ private getIdentityProviderConfigProvider;
176
176
  }
@@ -1,7 +1,7 @@
1
1
  import {
2
- AWSSDKSigV4AuthInputConfig,
3
- AWSSDKSigV4AuthResolvedConfig,
4
- AWSSDKSigV4PreviouslyResolved,
2
+ AwsSdkSigV4AuthInputConfig,
3
+ AwsSdkSigV4AuthResolvedConfig,
4
+ AwsSdkSigV4PreviouslyResolved,
5
5
  } from "@aws-sdk/core";
6
6
  import {
7
7
  HandlerExecutionContext,
@@ -30,15 +30,15 @@ export declare const defaultPollyHttpAuthSchemeParametersProvider: (
30
30
  export interface PollyHttpAuthSchemeProvider
31
31
  extends HttpAuthSchemeProvider<PollyHttpAuthSchemeParameters> {}
32
32
  export declare const defaultPollyHttpAuthSchemeProvider: PollyHttpAuthSchemeProvider;
33
- export interface HttpAuthSchemeInputConfig extends AWSSDKSigV4AuthInputConfig {
33
+ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
34
34
  httpAuthSchemes?: HttpAuthScheme[];
35
35
  httpAuthSchemeProvider?: PollyHttpAuthSchemeProvider;
36
36
  }
37
37
  export interface HttpAuthSchemeResolvedConfig
38
- extends AWSSDKSigV4AuthResolvedConfig {
38
+ extends AwsSdkSigV4AuthResolvedConfig {
39
39
  readonly httpAuthSchemes: HttpAuthScheme[];
40
40
  readonly httpAuthSchemeProvider: PollyHttpAuthSchemeProvider;
41
41
  }
42
42
  export declare const resolveHttpAuthSchemeConfig: <T>(
43
- config: T & HttpAuthSchemeInputConfig & AWSSDKSigV4PreviouslyResolved
43
+ config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
44
44
  ) => T & HttpAuthSchemeResolvedConfig;
package/package.json CHANGED
@@ -1,10 +1,10 @@
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.489.0",
4
+ "version": "3.495.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
- "build:cjs": "tsc -p tsconfig.cjs.json",
7
+ "build:cjs": "node ../../scripts/compilation/inline client-polly",
8
8
  "build:es": "tsc -p tsconfig.es.json",
9
9
  "build:include:deps": "lerna run --scope $npm_package_name --include-dependencies build",
10
10
  "build:types": "tsc -p tsconfig.types.json",
@@ -20,48 +20,48 @@
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.489.0",
24
- "@aws-sdk/core": "3.485.0",
25
- "@aws-sdk/credential-provider-node": "3.489.0",
26
- "@aws-sdk/middleware-host-header": "3.489.0",
27
- "@aws-sdk/middleware-logger": "3.489.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.489.0",
29
- "@aws-sdk/middleware-user-agent": "3.489.0",
30
- "@aws-sdk/region-config-resolver": "3.489.0",
31
- "@aws-sdk/types": "3.489.0",
32
- "@aws-sdk/util-endpoints": "3.489.0",
33
- "@aws-sdk/util-user-agent-browser": "3.489.0",
34
- "@aws-sdk/util-user-agent-node": "3.489.0",
35
- "@smithy/config-resolver": "^2.0.23",
36
- "@smithy/core": "^1.2.2",
37
- "@smithy/fetch-http-handler": "^2.3.2",
38
- "@smithy/hash-node": "^2.0.18",
39
- "@smithy/invalid-dependency": "^2.0.16",
40
- "@smithy/middleware-content-length": "^2.0.18",
41
- "@smithy/middleware-endpoint": "^2.3.0",
42
- "@smithy/middleware-retry": "^2.0.26",
43
- "@smithy/middleware-serde": "^2.0.16",
44
- "@smithy/middleware-stack": "^2.0.10",
45
- "@smithy/node-config-provider": "^2.1.9",
46
- "@smithy/node-http-handler": "^2.2.2",
47
- "@smithy/protocol-http": "^3.0.12",
48
- "@smithy/smithy-client": "^2.2.1",
49
- "@smithy/types": "^2.8.0",
50
- "@smithy/url-parser": "^2.0.16",
51
- "@smithy/util-base64": "^2.0.1",
52
- "@smithy/util-body-length-browser": "^2.0.1",
53
- "@smithy/util-body-length-node": "^2.1.0",
54
- "@smithy/util-defaults-mode-browser": "^2.0.24",
55
- "@smithy/util-defaults-mode-node": "^2.0.32",
56
- "@smithy/util-endpoints": "^1.0.8",
57
- "@smithy/util-middleware": "^2.0.9",
58
- "@smithy/util-retry": "^2.0.9",
59
- "@smithy/util-stream": "^2.0.24",
60
- "@smithy/util-utf8": "^2.0.2",
23
+ "@aws-sdk/client-sts": "3.495.0",
24
+ "@aws-sdk/core": "3.495.0",
25
+ "@aws-sdk/credential-provider-node": "3.495.0",
26
+ "@aws-sdk/middleware-host-header": "3.495.0",
27
+ "@aws-sdk/middleware-logger": "3.495.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.495.0",
29
+ "@aws-sdk/middleware-user-agent": "3.495.0",
30
+ "@aws-sdk/region-config-resolver": "3.495.0",
31
+ "@aws-sdk/types": "3.495.0",
32
+ "@aws-sdk/util-endpoints": "3.495.0",
33
+ "@aws-sdk/util-user-agent-browser": "3.495.0",
34
+ "@aws-sdk/util-user-agent-node": "3.495.0",
35
+ "@smithy/config-resolver": "^2.1.0",
36
+ "@smithy/core": "^1.3.0",
37
+ "@smithy/fetch-http-handler": "^2.4.0",
38
+ "@smithy/hash-node": "^2.1.0",
39
+ "@smithy/invalid-dependency": "^2.1.0",
40
+ "@smithy/middleware-content-length": "^2.1.0",
41
+ "@smithy/middleware-endpoint": "^2.4.0",
42
+ "@smithy/middleware-retry": "^2.1.0",
43
+ "@smithy/middleware-serde": "^2.1.0",
44
+ "@smithy/middleware-stack": "^2.1.0",
45
+ "@smithy/node-config-provider": "^2.2.0",
46
+ "@smithy/node-http-handler": "^2.3.0",
47
+ "@smithy/protocol-http": "^3.1.0",
48
+ "@smithy/smithy-client": "^2.3.0",
49
+ "@smithy/types": "^2.9.0",
50
+ "@smithy/url-parser": "^2.1.0",
51
+ "@smithy/util-base64": "^2.1.0",
52
+ "@smithy/util-body-length-browser": "^2.1.0",
53
+ "@smithy/util-body-length-node": "^2.2.0",
54
+ "@smithy/util-defaults-mode-browser": "^2.1.0",
55
+ "@smithy/util-defaults-mode-node": "^2.1.0",
56
+ "@smithy/util-endpoints": "^1.1.0",
57
+ "@smithy/util-middleware": "^2.1.0",
58
+ "@smithy/util-retry": "^2.1.0",
59
+ "@smithy/util-stream": "^2.1.0",
60
+ "@smithy/util-utf8": "^2.1.0",
61
61
  "tslib": "^2.5.0"
62
62
  },
63
63
  "devDependencies": {
64
- "@smithy/service-client-documentation-generator": "^2.0.0",
64
+ "@smithy/service-client-documentation-generator": "^2.1.0",
65
65
  "@tsconfig/node14": "1.0.3",
66
66
  "@types/node": "^14.14.31",
67
67
  "concurrently": "7.0.0",