@aws-sdk/client-polly 3.1045.0 → 3.1047.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 (67) hide show
  1. package/dist-cjs/auth/httpAuthSchemeProvider.js +4 -4
  2. package/dist-cjs/endpoint/bdd.js +2 -2
  3. package/dist-cjs/endpoint/endpointResolver.js +4 -4
  4. package/dist-cjs/index.js +38 -39
  5. package/dist-cjs/models/PollyServiceException.js +3 -3
  6. package/dist-cjs/runtimeConfig.browser.js +15 -17
  7. package/dist-cjs/runtimeConfig.js +20 -24
  8. package/dist-cjs/runtimeConfig.native.js +2 -2
  9. package/dist-cjs/runtimeConfig.shared.js +10 -12
  10. package/dist-es/Polly.js +1 -1
  11. package/dist-es/PollyClient.js +6 -6
  12. package/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  13. package/dist-es/commands/DeleteLexiconCommand.js +2 -2
  14. package/dist-es/commands/DescribeVoicesCommand.js +2 -2
  15. package/dist-es/commands/GetLexiconCommand.js +2 -2
  16. package/dist-es/commands/GetSpeechSynthesisTaskCommand.js +2 -2
  17. package/dist-es/commands/ListLexiconsCommand.js +2 -2
  18. package/dist-es/commands/ListSpeechSynthesisTasksCommand.js +2 -2
  19. package/dist-es/commands/PutLexiconCommand.js +2 -2
  20. package/dist-es/commands/StartSpeechSynthesisStreamCommand.js +2 -2
  21. package/dist-es/commands/StartSpeechSynthesisTaskCommand.js +2 -2
  22. package/dist-es/commands/SynthesizeSpeechCommand.js +2 -2
  23. package/dist-es/endpoint/bdd.js +1 -1
  24. package/dist-es/endpoint/endpointResolver.js +1 -1
  25. package/dist-es/models/PollyServiceException.js +1 -1
  26. package/dist-es/runtimeConfig.browser.js +5 -7
  27. package/dist-es/runtimeConfig.js +5 -9
  28. package/dist-es/runtimeConfig.native.js +1 -1
  29. package/dist-es/runtimeConfig.shared.js +3 -5
  30. package/dist-es/runtimeExtensions.js +2 -2
  31. package/dist-types/PollyClient.d.ts +6 -6
  32. package/dist-types/commands/DeleteLexiconCommand.d.ts +6 -4
  33. package/dist-types/commands/DescribeVoicesCommand.d.ts +6 -4
  34. package/dist-types/commands/GetLexiconCommand.d.ts +6 -4
  35. package/dist-types/commands/GetSpeechSynthesisTaskCommand.d.ts +6 -4
  36. package/dist-types/commands/ListLexiconsCommand.d.ts +6 -4
  37. package/dist-types/commands/ListSpeechSynthesisTasksCommand.d.ts +6 -4
  38. package/dist-types/commands/PutLexiconCommand.d.ts +6 -4
  39. package/dist-types/commands/StartSpeechSynthesisStreamCommand.d.ts +6 -4
  40. package/dist-types/commands/StartSpeechSynthesisTaskCommand.d.ts +6 -4
  41. package/dist-types/commands/SynthesizeSpeechCommand.d.ts +6 -4
  42. package/dist-types/endpoint/bdd.d.ts +1 -1
  43. package/dist-types/extensionConfiguration.d.ts +1 -1
  44. package/dist-types/models/PollyServiceException.d.ts +1 -1
  45. package/dist-types/models/errors.d.ts +1 -1
  46. package/dist-types/runtimeConfig.browser.d.ts +2 -2
  47. package/dist-types/runtimeConfig.d.ts +2 -2
  48. package/dist-types/runtimeConfig.native.d.ts +2 -2
  49. package/dist-types/ts3.4/PollyClient.d.ts +12 -18
  50. package/dist-types/ts3.4/commands/DeleteLexiconCommand.d.ts +6 -4
  51. package/dist-types/ts3.4/commands/DescribeVoicesCommand.d.ts +6 -4
  52. package/dist-types/ts3.4/commands/GetLexiconCommand.d.ts +6 -4
  53. package/dist-types/ts3.4/commands/GetSpeechSynthesisTaskCommand.d.ts +6 -4
  54. package/dist-types/ts3.4/commands/ListLexiconsCommand.d.ts +6 -4
  55. package/dist-types/ts3.4/commands/ListSpeechSynthesisTasksCommand.d.ts +6 -4
  56. package/dist-types/ts3.4/commands/PutLexiconCommand.d.ts +6 -4
  57. package/dist-types/ts3.4/commands/StartSpeechSynthesisStreamCommand.d.ts +6 -4
  58. package/dist-types/ts3.4/commands/StartSpeechSynthesisTaskCommand.d.ts +6 -4
  59. package/dist-types/ts3.4/commands/SynthesizeSpeechCommand.d.ts +6 -4
  60. package/dist-types/ts3.4/endpoint/bdd.d.ts +1 -1
  61. package/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
  62. package/dist-types/ts3.4/models/PollyServiceException.d.ts +1 -1
  63. package/dist-types/ts3.4/models/errors.d.ts +1 -1
  64. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
  65. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
  66. package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -3
  67. package/package.json +16 -41
@@ -1,5 +1,5 @@
1
- import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
4
  import { SynthesizeSpeech$ } from "../schemas/schemas_0";
5
5
  export { $Command };
@@ -1,4 +1,4 @@
1
- import { BinaryDecisionDiagram } from "@smithy/util-endpoints";
1
+ import { BinaryDecisionDiagram } from "@smithy/core/endpoints";
2
2
  const k = "ref";
3
3
  const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
4
4
  const _data = {
@@ -1,5 +1,5 @@
1
1
  import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
2
- import { customEndpointFunctions, decideEndpoint, EndpointCache } from "@smithy/util-endpoints";
2
+ import { customEndpointFunctions, decideEndpoint, EndpointCache } from "@smithy/core/endpoints";
3
3
  import { bdd } from "./bdd";
4
4
  const cache = new EndpointCache({
5
5
  size: 50,
@@ -1,4 +1,4 @@
1
- import { ServiceException as __ServiceException, } from "@smithy/smithy-client";
1
+ import { ServiceException as __ServiceException, } from "@smithy/core/client";
2
2
  export { __ServiceException };
3
3
  export class PollyServiceException extends __ServiceException {
4
4
  constructor(options) {
@@ -1,14 +1,12 @@
1
1
  import packageInfo from "../package.json";
2
2
  import { Sha256 } from "@aws-crypto/sha256-browser";
3
3
  import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser";
4
- import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver";
5
- import { eventStreamSerdeProvider } from "@smithy/eventstream-serde-browser";
4
+ import { invalidFunction, invalidProvider, loadConfigsForDefaultMode } from "@smithy/core/client";
5
+ import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, resolveDefaultsModeConfig, } from "@smithy/core/config";
6
+ import { eventStreamSerdeProvider } from "@smithy/core/event-streams";
7
+ import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/core/retry";
8
+ import { calculateBodyLength } from "@smithy/core/serde";
6
9
  import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler";
7
- import { invalidFunction, invalidProvider } from "@smithy/invalid-dependency";
8
- import { loadConfigsForDefaultMode } from "@smithy/smithy-client";
9
- import { calculateBodyLength } from "@smithy/util-body-length-browser";
10
- import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser";
11
- import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry";
12
10
  import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
13
11
  export const getRuntimeConfig = (config) => {
14
12
  const defaultsMode = resolveDefaultsModeConfig(config);
@@ -4,16 +4,12 @@ import { NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } from "@aws-sdk/core/httpAuthSchem
4
4
  import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
5
5
  import { eventStreamPayloadHandlerProvider } from "@aws-sdk/eventstream-handler-node";
6
6
  import { createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS } from "@aws-sdk/util-user-agent-node";
7
- import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@smithy/config-resolver";
8
- import { eventStreamSerdeProvider } from "@smithy/eventstream-serde-node";
9
- import { Hash } from "@smithy/hash-node";
10
- import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry";
11
- import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider";
7
+ import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/core/client";
8
+ import { loadConfig as loadNodeConfig, NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, resolveDefaultsModeConfig, } from "@smithy/core/config";
9
+ import { eventStreamSerdeProvider } from "@smithy/core/event-streams";
10
+ import { DEFAULT_RETRY_MODE, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS, } from "@smithy/core/retry";
11
+ import { calculateBodyLength, Hash } from "@smithy/core/serde";
12
12
  import { NodeHttp2Handler as RequestHandler, streamCollector } from "@smithy/node-http-handler";
13
- import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client";
14
- import { calculateBodyLength } from "@smithy/util-body-length-node";
15
- import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node";
16
- import { DEFAULT_RETRY_MODE } from "@smithy/util-retry";
17
13
  import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
18
14
  export const getRuntimeConfig = (config) => {
19
15
  emitWarningIfUnsupportedVersion(process.version);
@@ -1,5 +1,5 @@
1
1
  import { Sha256 } from "@aws-crypto/sha256-js";
2
- import { invalidFunction } from "@smithy/invalid-dependency";
2
+ import { invalidFunction } from "@smithy/core/client";
3
3
  import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser";
4
4
  export const getRuntimeConfig = (config) => {
5
5
  const browserDefaults = getBrowserRuntimeConfig(config);
@@ -1,10 +1,8 @@
1
1
  import { AwsSdkSigV4Signer } from "@aws-sdk/core/httpAuthSchemes";
2
2
  import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
3
- import { NoOpLogger } from "@smithy/smithy-client";
4
- import { parseUrl } from "@smithy/url-parser";
5
- import { fromBase64, toBase64 } from "@smithy/util-base64";
6
- import { sdkStreamMixin } from "@smithy/util-stream";
7
- import { fromUtf8, toUtf8 } from "@smithy/util-utf8";
3
+ import { NoOpLogger } from "@smithy/core/client";
4
+ import { parseUrl } from "@smithy/core/protocols";
5
+ import { fromBase64, fromUtf8, sdkStreamMixin, toBase64, toUtf8 } from "@smithy/core/serde";
8
6
  import { defaultPollyHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider";
9
7
  import { defaultEndpointResolver } from "./endpoint/endpointResolver";
10
8
  import { errorTypeRegistries } from "./schemas/schemas_0";
@@ -1,6 +1,6 @@
1
1
  import { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, } from "@aws-sdk/region-config-resolver";
2
- import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } from "@smithy/protocol-http";
3
- import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client";
2
+ import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/core/client";
3
+ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } from "@smithy/core/protocols";
4
4
  import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration";
5
5
  export const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
6
6
  const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
@@ -2,12 +2,12 @@ import { type EventStreamInputConfig, type EventStreamResolvedConfig } from "@aw
2
2
  import { type HostHeaderInputConfig, type HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
3
  import { type UserAgentInputConfig, type UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
4
4
  import { EventStreamPayloadHandlerProvider as __EventStreamPayloadHandlerProvider } from "@aws-sdk/types";
5
- import { type RegionInputConfig, type RegionResolvedConfig } from "@smithy/config-resolver";
6
- import { type EventStreamSerdeInputConfig, type EventStreamSerdeResolvedConfig } from "@smithy/eventstream-serde-config-resolver";
7
- import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/middleware-endpoint";
8
- import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
9
- import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
10
- import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
5
+ import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/core/client";
6
+ import { type RegionInputConfig, type RegionResolvedConfig } from "@smithy/core/config";
7
+ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/core/endpoints";
8
+ import { type EventStreamSerdeInputConfig, type EventStreamSerdeResolvedConfig } from "@smithy/core/event-streams";
9
+ import { type HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
10
+ import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/core/retry";
11
11
  import type { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, EventStreamSerdeProvider as __EventStreamSerdeProvider, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, SdkStreamMixinInjector as __SdkStreamMixinInjector, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
12
12
  import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
13
13
  import type { DeleteLexiconCommandInput, DeleteLexiconCommandOutput } from "./commands/DeleteLexiconCommand";
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { DeleteLexiconInput, DeleteLexiconOutput } from "../models/models_0";
4
4
  import type { PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PollyClient";
@@ -22,9 +22,11 @@ export interface DeleteLexiconCommandInput extends DeleteLexiconInput {
22
22
  export interface DeleteLexiconCommandOutput extends DeleteLexiconOutput, __MetadataBearer {
23
23
  }
24
24
  declare const DeleteLexiconCommand_base: {
25
- new (input: DeleteLexiconCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteLexiconCommandInput, DeleteLexiconCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DeleteLexiconCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteLexiconCommandInput, DeleteLexiconCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: DeleteLexiconCommandInput): import("@smithy/core/client").CommandImpl<DeleteLexiconCommandInput, DeleteLexiconCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: DeleteLexiconCommandInput): import("@smithy/core/client").CommandImpl<DeleteLexiconCommandInput, DeleteLexiconCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * <p>Deletes the specified pronunciation lexicon stored in an Amazon Web Services Region. A lexicon which has been deleted is not available for
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { DescribeVoicesInput, DescribeVoicesOutput } from "../models/models_0";
4
4
  import type { PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PollyClient";
@@ -22,9 +22,11 @@ export interface DescribeVoicesCommandInput extends DescribeVoicesInput {
22
22
  export interface DescribeVoicesCommandOutput extends DescribeVoicesOutput, __MetadataBearer {
23
23
  }
24
24
  declare const DescribeVoicesCommand_base: {
25
- new (input: DescribeVoicesCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeVoicesCommandInput, DescribeVoicesCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [DescribeVoicesCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeVoicesCommandInput, DescribeVoicesCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: DescribeVoicesCommandInput): import("@smithy/core/client").CommandImpl<DescribeVoicesCommandInput, DescribeVoicesCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [DescribeVoicesCommandInput]): import("@smithy/core/client").CommandImpl<DescribeVoicesCommandInput, DescribeVoicesCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * <p>Returns the list of voices that are available for use when
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { GetLexiconInput, GetLexiconOutput } from "../models/models_0";
4
4
  import type { PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PollyClient";
@@ -22,9 +22,11 @@ export interface GetLexiconCommandInput extends GetLexiconInput {
22
22
  export interface GetLexiconCommandOutput extends GetLexiconOutput, __MetadataBearer {
23
23
  }
24
24
  declare const GetLexiconCommand_base: {
25
- new (input: GetLexiconCommandInput): import("@smithy/smithy-client").CommandImpl<GetLexiconCommandInput, GetLexiconCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: GetLexiconCommandInput): import("@smithy/smithy-client").CommandImpl<GetLexiconCommandInput, GetLexiconCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: GetLexiconCommandInput): import("@smithy/core/client").CommandImpl<GetLexiconCommandInput, GetLexiconCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: GetLexiconCommandInput): import("@smithy/core/client").CommandImpl<GetLexiconCommandInput, GetLexiconCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * <p>Returns the content of the specified pronunciation lexicon stored
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { GetSpeechSynthesisTaskInput, GetSpeechSynthesisTaskOutput } from "../models/models_0";
4
4
  import type { PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PollyClient";
@@ -22,9 +22,11 @@ export interface GetSpeechSynthesisTaskCommandInput extends GetSpeechSynthesisTa
22
22
  export interface GetSpeechSynthesisTaskCommandOutput extends GetSpeechSynthesisTaskOutput, __MetadataBearer {
23
23
  }
24
24
  declare const GetSpeechSynthesisTaskCommand_base: {
25
- new (input: GetSpeechSynthesisTaskCommandInput): import("@smithy/smithy-client").CommandImpl<GetSpeechSynthesisTaskCommandInput, GetSpeechSynthesisTaskCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: GetSpeechSynthesisTaskCommandInput): import("@smithy/smithy-client").CommandImpl<GetSpeechSynthesisTaskCommandInput, GetSpeechSynthesisTaskCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: GetSpeechSynthesisTaskCommandInput): import("@smithy/core/client").CommandImpl<GetSpeechSynthesisTaskCommandInput, GetSpeechSynthesisTaskCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: GetSpeechSynthesisTaskCommandInput): import("@smithy/core/client").CommandImpl<GetSpeechSynthesisTaskCommandInput, GetSpeechSynthesisTaskCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * <p>Retrieves a specific SpeechSynthesisTask object based on its TaskID.
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { ListLexiconsInput, ListLexiconsOutput } from "../models/models_0";
4
4
  import type { PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PollyClient";
@@ -22,9 +22,11 @@ export interface ListLexiconsCommandInput extends ListLexiconsInput {
22
22
  export interface ListLexiconsCommandOutput extends ListLexiconsOutput, __MetadataBearer {
23
23
  }
24
24
  declare const ListLexiconsCommand_base: {
25
- new (input: ListLexiconsCommandInput): import("@smithy/smithy-client").CommandImpl<ListLexiconsCommandInput, ListLexiconsCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListLexiconsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListLexiconsCommandInput, ListLexiconsCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: ListLexiconsCommandInput): import("@smithy/core/client").CommandImpl<ListLexiconsCommandInput, ListLexiconsCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [ListLexiconsCommandInput]): import("@smithy/core/client").CommandImpl<ListLexiconsCommandInput, ListLexiconsCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * <p>Returns a list of pronunciation lexicons stored in an Amazon Web Services Region. For more information, see <a href="https://docs.aws.amazon.com/polly/latest/dg/managing-lexicons.html">Managing Lexicons</a>.</p>
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { ListSpeechSynthesisTasksInput, ListSpeechSynthesisTasksOutput } from "../models/models_0";
4
4
  import type { PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PollyClient";
@@ -22,9 +22,11 @@ export interface ListSpeechSynthesisTasksCommandInput extends ListSpeechSynthesi
22
22
  export interface ListSpeechSynthesisTasksCommandOutput extends ListSpeechSynthesisTasksOutput, __MetadataBearer {
23
23
  }
24
24
  declare const ListSpeechSynthesisTasksCommand_base: {
25
- new (input: ListSpeechSynthesisTasksCommandInput): import("@smithy/smithy-client").CommandImpl<ListSpeechSynthesisTasksCommandInput, ListSpeechSynthesisTasksCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListSpeechSynthesisTasksCommandInput]): import("@smithy/smithy-client").CommandImpl<ListSpeechSynthesisTasksCommandInput, ListSpeechSynthesisTasksCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: ListSpeechSynthesisTasksCommandInput): import("@smithy/core/client").CommandImpl<ListSpeechSynthesisTasksCommandInput, ListSpeechSynthesisTasksCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [ListSpeechSynthesisTasksCommandInput]): import("@smithy/core/client").CommandImpl<ListSpeechSynthesisTasksCommandInput, ListSpeechSynthesisTasksCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * <p>Returns a list of SpeechSynthesisTask objects ordered by their
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { PutLexiconInput, PutLexiconOutput } from "../models/models_0";
4
4
  import type { PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PollyClient";
@@ -22,9 +22,11 @@ export interface PutLexiconCommandInput extends PutLexiconInput {
22
22
  export interface PutLexiconCommandOutput extends PutLexiconOutput, __MetadataBearer {
23
23
  }
24
24
  declare const PutLexiconCommand_base: {
25
- new (input: PutLexiconCommandInput): import("@smithy/smithy-client").CommandImpl<PutLexiconCommandInput, PutLexiconCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: PutLexiconCommandInput): import("@smithy/smithy-client").CommandImpl<PutLexiconCommandInput, PutLexiconCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: PutLexiconCommandInput): import("@smithy/core/client").CommandImpl<PutLexiconCommandInput, PutLexiconCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: PutLexiconCommandInput): import("@smithy/core/client").CommandImpl<PutLexiconCommandInput, PutLexiconCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * <p>Stores a pronunciation lexicon in an Amazon Web Services Region. If
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { StartSpeechSynthesisStreamInput, StartSpeechSynthesisStreamOutput } from "../models/models_0";
4
4
  import type { PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PollyClient";
@@ -22,9 +22,11 @@ export interface StartSpeechSynthesisStreamCommandInput extends StartSpeechSynth
22
22
  export interface StartSpeechSynthesisStreamCommandOutput extends StartSpeechSynthesisStreamOutput, __MetadataBearer {
23
23
  }
24
24
  declare const StartSpeechSynthesisStreamCommand_base: {
25
- new (input: StartSpeechSynthesisStreamCommandInput): import("@smithy/smithy-client").CommandImpl<StartSpeechSynthesisStreamCommandInput, StartSpeechSynthesisStreamCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: StartSpeechSynthesisStreamCommandInput): import("@smithy/smithy-client").CommandImpl<StartSpeechSynthesisStreamCommandInput, StartSpeechSynthesisStreamCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: StartSpeechSynthesisStreamCommandInput): import("@smithy/core/client").CommandImpl<StartSpeechSynthesisStreamCommandInput, StartSpeechSynthesisStreamCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: StartSpeechSynthesisStreamCommandInput): import("@smithy/core/client").CommandImpl<StartSpeechSynthesisStreamCommandInput, StartSpeechSynthesisStreamCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * <p>Synthesizes UTF-8 input, plain text, or SSML over a bidirectional streaming connection.
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { StartSpeechSynthesisTaskInput, StartSpeechSynthesisTaskOutput } from "../models/models_0";
4
4
  import type { PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PollyClient";
@@ -22,9 +22,11 @@ export interface StartSpeechSynthesisTaskCommandInput extends StartSpeechSynthes
22
22
  export interface StartSpeechSynthesisTaskCommandOutput extends StartSpeechSynthesisTaskOutput, __MetadataBearer {
23
23
  }
24
24
  declare const StartSpeechSynthesisTaskCommand_base: {
25
- new (input: StartSpeechSynthesisTaskCommandInput): import("@smithy/smithy-client").CommandImpl<StartSpeechSynthesisTaskCommandInput, StartSpeechSynthesisTaskCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: StartSpeechSynthesisTaskCommandInput): import("@smithy/smithy-client").CommandImpl<StartSpeechSynthesisTaskCommandInput, StartSpeechSynthesisTaskCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: StartSpeechSynthesisTaskCommandInput): import("@smithy/core/client").CommandImpl<StartSpeechSynthesisTaskCommandInput, StartSpeechSynthesisTaskCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: StartSpeechSynthesisTaskCommandInput): import("@smithy/core/client").CommandImpl<StartSpeechSynthesisTaskCommandInput, StartSpeechSynthesisTaskCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * <p>Allows the creation of an asynchronous synthesis task, by starting a
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types";
3
3
  import type { SynthesizeSpeechInput, SynthesizeSpeechOutput } from "../models/models_0";
4
4
  import type { PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PollyClient";
@@ -23,9 +23,11 @@ export interface SynthesizeSpeechCommandOutput extends Omit<SynthesizeSpeechOutp
23
23
  AudioStream?: StreamingBlobPayloadOutputTypes;
24
24
  }
25
25
  declare const SynthesizeSpeechCommand_base: {
26
- new (input: SynthesizeSpeechCommandInput): import("@smithy/smithy-client").CommandImpl<SynthesizeSpeechCommandInput, SynthesizeSpeechCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- new (input: SynthesizeSpeechCommandInput): import("@smithy/smithy-client").CommandImpl<SynthesizeSpeechCommandInput, SynthesizeSpeechCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
28
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ new (input: SynthesizeSpeechCommandInput): import("@smithy/core/client").CommandImpl<SynthesizeSpeechCommandInput, SynthesizeSpeechCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ new (input: SynthesizeSpeechCommandInput): import("@smithy/core/client").CommandImpl<SynthesizeSpeechCommandInput, SynthesizeSpeechCommandOutput, PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
28
+ getEndpointParameterInstructions(): {
29
+ [x: string]: unknown;
30
+ };
29
31
  };
30
32
  /**
31
33
  * <p>Synthesizes UTF-8 input, plain text or SSML, to a stream of bytes.
@@ -1,2 +1,2 @@
1
- import { BinaryDecisionDiagram } from "@smithy/util-endpoints";
1
+ import { BinaryDecisionDiagram } from "@smithy/core/endpoints";
2
2
  export declare const bdd: BinaryDecisionDiagram;
@@ -1,5 +1,5 @@
1
1
  import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
2
- import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
2
+ import type { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
3
3
  import type { DefaultExtensionConfiguration } from "@smithy/types";
4
4
  import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
5
5
  /**
@@ -1,4 +1,4 @@
1
- import { type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException } from "@smithy/smithy-client";
1
+ import { type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException } from "@smithy/core/client";
2
2
  export type { __ServiceExceptionOptions };
3
3
  export { __ServiceException };
4
4
  /**
@@ -1,4 +1,4 @@
1
- import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
1
+ import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/client";
2
2
  import type { QuotaCode, ServiceCode, ValidationExceptionReason } from "./enums";
3
3
  import type { ThrottlingReason, ValidationExceptionField } from "./models_0";
4
4
  import { PollyServiceException as __BaseException } from "./PollyServiceException";
@@ -5,7 +5,7 @@ import type { PollyClientConfig } from "./PollyClient";
5
5
  */
6
6
  export declare const getRuntimeConfig: (config: PollyClientConfig) => {
7
7
  runtime: string;
8
- defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
9
9
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
11
11
  defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
@@ -13,7 +13,7 @@ export declare const getRuntimeConfig: (config: PollyClientConfig) => {
13
13
  eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
14
14
  maxAttempts: number | import("@smithy/types").Provider<number>;
15
15
  region: string | import("@smithy/types").Provider<any>;
16
- requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
16
+ requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
17
17
  retryMode: string | import("@smithy/types").Provider<string>;
18
18
  sha256: import("@smithy/types").HashConstructor;
19
19
  streamCollector: import("@smithy/types").StreamCollector;
@@ -5,7 +5,7 @@ import type { PollyClientConfig } from "./PollyClient";
5
5
  */
6
6
  export declare const getRuntimeConfig: (config: PollyClientConfig) => {
7
7
  runtime: string;
8
- defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
9
9
  authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
10
10
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
11
11
  credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit) => import("@aws-sdk/credential-provider-node/dist-types/runtime/memoize-chain").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
@@ -14,7 +14,7 @@ export declare const getRuntimeConfig: (config: PollyClientConfig) => {
14
14
  eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
15
15
  maxAttempts: number | import("@smithy/types").Provider<number>;
16
16
  region: string | import("@smithy/types").Provider<string>;
17
- requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
17
+ requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
18
18
  retryMode: string | import("@smithy/types").Provider<string>;
19
19
  sha256: import("@smithy/types").HashConstructor;
20
20
  streamCollector: import("@smithy/types").StreamCollector;
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: PollyClientConfig) => {
6
6
  runtime: string;
7
7
  eventStreamPayloadHandlerProvider: import("@smithy/types").EventStreamPayloadHandlerProvider;
8
8
  sha256: import("@smithy/types").HashConstructor;
9
- requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
+ requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
10
10
  cacheMiddleware?: boolean;
11
11
  protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
12
12
  protocolSettings: {
@@ -34,7 +34,7 @@ export declare const getRuntimeConfig: (config: PollyClientConfig) => {
34
34
  logger: import("@smithy/types").Logger;
35
35
  extensions: import("./runtimeExtensions").RuntimeExtension[];
36
36
  eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
37
- defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
37
+ defaultsMode: import("@smithy/core/client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
38
38
  sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
39
39
  customUserAgent?: string | import("@smithy/types").UserAgent;
40
40
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
@@ -11,29 +11,23 @@ import {
11
11
  UserAgentResolvedConfig,
12
12
  } from "@aws-sdk/middleware-user-agent";
13
13
  import { EventStreamPayloadHandlerProvider as __EventStreamPayloadHandlerProvider } from "@aws-sdk/types";
14
- import {
15
- RegionInputConfig,
16
- RegionResolvedConfig,
17
- } from "@smithy/config-resolver";
18
- import {
19
- EventStreamSerdeInputConfig,
20
- EventStreamSerdeResolvedConfig,
21
- } from "@smithy/eventstream-serde-config-resolver";
22
- import {
23
- EndpointInputConfig,
24
- EndpointResolvedConfig,
25
- } from "@smithy/middleware-endpoint";
26
- import {
27
- RetryInputConfig,
28
- RetryResolvedConfig,
29
- } from "@smithy/middleware-retry";
30
- import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
31
14
  import {
32
15
  DefaultsMode as __DefaultsMode,
33
16
  SmithyConfiguration as __SmithyConfiguration,
34
17
  SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
35
18
  Client as __Client,
36
- } from "@smithy/smithy-client";
19
+ } from "@smithy/core/client";
20
+ import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
21
+ import {
22
+ EndpointInputConfig,
23
+ EndpointResolvedConfig,
24
+ } from "@smithy/core/endpoints";
25
+ import {
26
+ EventStreamSerdeInputConfig,
27
+ EventStreamSerdeResolvedConfig,
28
+ } from "@smithy/core/event-streams";
29
+ import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
30
+ import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
37
31
  import {
38
32
  AwsCredentialIdentityProvider,
39
33
  BodyLengthCalculator as __BodyLengthCalculator,
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { DeleteLexiconInput, DeleteLexiconOutput } from "../models/models_0";
4
4
  import {
@@ -15,7 +15,7 @@ export interface DeleteLexiconCommandOutput
15
15
  declare const DeleteLexiconCommand_base: {
16
16
  new (
17
17
  input: DeleteLexiconCommandInput
18
- ): import("@smithy/smithy-client").CommandImpl<
18
+ ): import("@smithy/core/client").CommandImpl<
19
19
  DeleteLexiconCommandInput,
20
20
  DeleteLexiconCommandOutput,
21
21
  PollyClientResolvedConfig,
@@ -24,14 +24,16 @@ declare const DeleteLexiconCommand_base: {
24
24
  >;
25
25
  new (
26
26
  input: DeleteLexiconCommandInput
27
- ): import("@smithy/smithy-client").CommandImpl<
27
+ ): import("@smithy/core/client").CommandImpl<
28
28
  DeleteLexiconCommandInput,
29
29
  DeleteLexiconCommandOutput,
30
30
  PollyClientResolvedConfig,
31
31
  ServiceInputTypes,
32
32
  ServiceOutputTypes
33
33
  >;
34
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
34
+ getEndpointParameterInstructions(): {
35
+ [x: string]: unknown;
36
+ };
35
37
  };
36
38
  export declare class DeleteLexiconCommand extends DeleteLexiconCommand_base {
37
39
  protected static __types: {
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { DescribeVoicesInput, DescribeVoicesOutput } from "../models/models_0";
4
4
  import {
@@ -15,7 +15,7 @@ export interface DescribeVoicesCommandOutput
15
15
  declare const DescribeVoicesCommand_base: {
16
16
  new (
17
17
  input: DescribeVoicesCommandInput
18
- ): import("@smithy/smithy-client").CommandImpl<
18
+ ): import("@smithy/core/client").CommandImpl<
19
19
  DescribeVoicesCommandInput,
20
20
  DescribeVoicesCommandOutput,
21
21
  PollyClientResolvedConfig,
@@ -24,14 +24,16 @@ declare const DescribeVoicesCommand_base: {
24
24
  >;
25
25
  new (
26
26
  ...[input]: [] | [DescribeVoicesCommandInput]
27
- ): import("@smithy/smithy-client").CommandImpl<
27
+ ): import("@smithy/core/client").CommandImpl<
28
28
  DescribeVoicesCommandInput,
29
29
  DescribeVoicesCommandOutput,
30
30
  PollyClientResolvedConfig,
31
31
  ServiceInputTypes,
32
32
  ServiceOutputTypes
33
33
  >;
34
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
34
+ getEndpointParameterInstructions(): {
35
+ [x: string]: unknown;
36
+ };
35
37
  };
36
38
  export declare class DescribeVoicesCommand extends DescribeVoicesCommand_base {
37
39
  protected static __types: {
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { GetLexiconInput, GetLexiconOutput } from "../models/models_0";
4
4
  import {
@@ -15,7 +15,7 @@ export interface GetLexiconCommandOutput
15
15
  declare const GetLexiconCommand_base: {
16
16
  new (
17
17
  input: GetLexiconCommandInput
18
- ): import("@smithy/smithy-client").CommandImpl<
18
+ ): import("@smithy/core/client").CommandImpl<
19
19
  GetLexiconCommandInput,
20
20
  GetLexiconCommandOutput,
21
21
  PollyClientResolvedConfig,
@@ -24,14 +24,16 @@ declare const GetLexiconCommand_base: {
24
24
  >;
25
25
  new (
26
26
  input: GetLexiconCommandInput
27
- ): import("@smithy/smithy-client").CommandImpl<
27
+ ): import("@smithy/core/client").CommandImpl<
28
28
  GetLexiconCommandInput,
29
29
  GetLexiconCommandOutput,
30
30
  PollyClientResolvedConfig,
31
31
  ServiceInputTypes,
32
32
  ServiceOutputTypes
33
33
  >;
34
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
34
+ getEndpointParameterInstructions(): {
35
+ [x: string]: unknown;
36
+ };
35
37
  };
36
38
  export declare class GetLexiconCommand extends GetLexiconCommand_base {
37
39
  protected static __types: {