@aws-sdk/client-geo-places 3.1044.0 → 3.1046.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 (56) 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 +30 -31
  5. package/dist-cjs/models/GeoPlacesServiceException.js +3 -3
  6. package/dist-cjs/runtimeConfig.browser.js +12 -14
  7. package/dist-cjs/runtimeConfig.js +18 -22
  8. package/dist-cjs/runtimeConfig.shared.js +9 -10
  9. package/dist-es/GeoPlaces.js +1 -1
  10. package/dist-es/GeoPlacesClient.js +5 -5
  11. package/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  12. package/dist-es/commands/AutocompleteCommand.js +2 -2
  13. package/dist-es/commands/GeocodeCommand.js +2 -2
  14. package/dist-es/commands/GetPlaceCommand.js +2 -2
  15. package/dist-es/commands/ReverseGeocodeCommand.js +2 -2
  16. package/dist-es/commands/SearchNearbyCommand.js +2 -2
  17. package/dist-es/commands/SearchTextCommand.js +2 -2
  18. package/dist-es/commands/SuggestCommand.js +2 -2
  19. package/dist-es/endpoint/bdd.js +1 -1
  20. package/dist-es/endpoint/endpointResolver.js +1 -1
  21. package/dist-es/models/GeoPlacesServiceException.js +1 -1
  22. package/dist-es/runtimeConfig.browser.js +4 -6
  23. package/dist-es/runtimeConfig.js +4 -8
  24. package/dist-es/runtimeConfig.shared.js +3 -4
  25. package/dist-es/runtimeExtensions.js +2 -2
  26. package/dist-types/GeoPlacesClient.d.ts +5 -5
  27. package/dist-types/commands/AutocompleteCommand.d.ts +6 -4
  28. package/dist-types/commands/GeocodeCommand.d.ts +6 -4
  29. package/dist-types/commands/GetPlaceCommand.d.ts +6 -4
  30. package/dist-types/commands/ReverseGeocodeCommand.d.ts +6 -4
  31. package/dist-types/commands/SearchNearbyCommand.d.ts +6 -4
  32. package/dist-types/commands/SearchTextCommand.d.ts +6 -4
  33. package/dist-types/commands/SuggestCommand.d.ts +6 -4
  34. package/dist-types/endpoint/bdd.d.ts +1 -1
  35. package/dist-types/extensionConfiguration.d.ts +1 -1
  36. package/dist-types/models/GeoPlacesServiceException.d.ts +1 -1
  37. package/dist-types/models/errors.d.ts +1 -1
  38. package/dist-types/runtimeConfig.browser.d.ts +2 -2
  39. package/dist-types/runtimeConfig.d.ts +2 -2
  40. package/dist-types/runtimeConfig.native.d.ts +2 -2
  41. package/dist-types/ts3.4/GeoPlacesClient.d.ts +8 -14
  42. package/dist-types/ts3.4/commands/AutocompleteCommand.d.ts +6 -4
  43. package/dist-types/ts3.4/commands/GeocodeCommand.d.ts +6 -4
  44. package/dist-types/ts3.4/commands/GetPlaceCommand.d.ts +6 -8
  45. package/dist-types/ts3.4/commands/ReverseGeocodeCommand.d.ts +6 -4
  46. package/dist-types/ts3.4/commands/SearchNearbyCommand.d.ts +6 -4
  47. package/dist-types/ts3.4/commands/SearchTextCommand.d.ts +6 -4
  48. package/dist-types/ts3.4/commands/SuggestCommand.d.ts +6 -4
  49. package/dist-types/ts3.4/endpoint/bdd.d.ts +1 -1
  50. package/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
  51. package/dist-types/ts3.4/models/GeoPlacesServiceException.d.ts +1 -1
  52. package/dist-types/ts3.4/models/errors.d.ts +1 -1
  53. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
  54. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
  55. package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -3
  56. package/package.json +13 -34
@@ -1,10 +1,10 @@
1
1
  import { type HostHeaderInputConfig, type HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
2
2
  import { type UserAgentInputConfig, type UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
3
- import { type RegionInputConfig, type RegionResolvedConfig } from "@smithy/config-resolver";
4
- import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/middleware-endpoint";
5
- import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
6
- import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
7
- import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
3
+ import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/core/client";
4
+ import { type RegionInputConfig, type RegionResolvedConfig } from "@smithy/core/config";
5
+ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/core/endpoints";
6
+ import { type HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
7
+ import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/core/retry";
8
8
  import type { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
9
9
  import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
10
10
  import type { AutocompleteCommandInput, AutocompleteCommandOutput } from "./commands/AutocompleteCommand";
@@ -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 { GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoPlacesClient";
4
4
  import type { AutocompleteRequest, AutocompleteResponse } from "../models/models_0";
@@ -22,9 +22,11 @@ export interface AutocompleteCommandInput extends AutocompleteRequest {
22
22
  export interface AutocompleteCommandOutput extends AutocompleteResponse, __MetadataBearer {
23
23
  }
24
24
  declare const AutocompleteCommand_base: {
25
- new (input: AutocompleteCommandInput): import("@smithy/smithy-client").CommandImpl<AutocompleteCommandInput, AutocompleteCommandOutput, GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: AutocompleteCommandInput): import("@smithy/smithy-client").CommandImpl<AutocompleteCommandInput, AutocompleteCommandOutput, GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: AutocompleteCommandInput): import("@smithy/core/client").CommandImpl<AutocompleteCommandInput, AutocompleteCommandOutput, GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: AutocompleteCommandInput): import("@smithy/core/client").CommandImpl<AutocompleteCommandInput, AutocompleteCommandOutput, GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * <p> <code>Autocomplete</code> completes potential places and addresses as the user types, based on the partial input. The API enhances the efficiency and accuracy of address by completing query based on a few entered keystrokes. It helps you by completing partial queries with valid address completion. Also, the API supports the filtering of results based on geographic location, country, or specific place types, and can be tailored using optional parameters like language and political views.</p> <p>For more information, see <a href="https://docs.aws.amazon.com/location/latest/developerguide/autocomplete.html">Autocomplete</a> in the <i>Amazon Location Service Developer Guide</i>.</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 { GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoPlacesClient";
4
4
  import type { GeocodeRequest, GeocodeResponse } from "../models/models_0";
@@ -22,9 +22,11 @@ export interface GeocodeCommandInput extends GeocodeRequest {
22
22
  export interface GeocodeCommandOutput extends GeocodeResponse, __MetadataBearer {
23
23
  }
24
24
  declare const GeocodeCommand_base: {
25
- new (input: GeocodeCommandInput): import("@smithy/smithy-client").CommandImpl<GeocodeCommandInput, GeocodeCommandOutput, GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [GeocodeCommandInput]): import("@smithy/smithy-client").CommandImpl<GeocodeCommandInput, GeocodeCommandOutput, GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: GeocodeCommandInput): import("@smithy/core/client").CommandImpl<GeocodeCommandInput, GeocodeCommandOutput, GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [GeocodeCommandInput]): import("@smithy/core/client").CommandImpl<GeocodeCommandInput, GeocodeCommandOutput, GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * <p> <code>Geocode</code> converts a textual address or place into geographic coordinates. You can obtain geographic coordinates, address component, and other related information. It supports flexible queries, including free-form text or structured queries with components like street names, postal codes, and regions. The Geocode API can also provide additional features such as time zone information and the inclusion of political views.</p> <p>For more information, see <a href="https://docs.aws.amazon.com/location/latest/developerguide/geocode.html">Geocode</a> in the <i>Amazon Location Service Developer Guide</i>.</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 { GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoPlacesClient";
4
4
  import type { GetPlaceRequest, GetPlaceResponse } from "../models/models_0";
@@ -22,9 +22,11 @@ export interface GetPlaceCommandInput extends GetPlaceRequest {
22
22
  export interface GetPlaceCommandOutput extends GetPlaceResponse, __MetadataBearer {
23
23
  }
24
24
  declare const GetPlaceCommand_base: {
25
- new (input: GetPlaceCommandInput): import("@smithy/smithy-client").CommandImpl<GetPlaceCommandInput, GetPlaceCommandOutput, GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: GetPlaceCommandInput): import("@smithy/smithy-client").CommandImpl<GetPlaceCommandInput, GetPlaceCommandOutput, GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: GetPlaceCommandInput): import("@smithy/core/client").CommandImpl<GetPlaceCommandInput, GetPlaceCommandOutput, GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: GetPlaceCommandInput): import("@smithy/core/client").CommandImpl<GetPlaceCommandInput, GetPlaceCommandOutput, GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * <p> <code>GetPlace</code> finds a place by its unique ID. A <code>PlaceId</code> is returned by other place operations.</p> <p>For more information, see <a href="https://docs.aws.amazon.com/location/latest/developerguide/get-place.html">GetPlace</a> in the <i>Amazon Location Service Developer Guide</i>.</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 { GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoPlacesClient";
4
4
  import type { ReverseGeocodeRequest, ReverseGeocodeResponse } from "../models/models_0";
@@ -22,9 +22,11 @@ export interface ReverseGeocodeCommandInput extends ReverseGeocodeRequest {
22
22
  export interface ReverseGeocodeCommandOutput extends ReverseGeocodeResponse, __MetadataBearer {
23
23
  }
24
24
  declare const ReverseGeocodeCommand_base: {
25
- new (input: ReverseGeocodeCommandInput): import("@smithy/smithy-client").CommandImpl<ReverseGeocodeCommandInput, ReverseGeocodeCommandOutput, GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: ReverseGeocodeCommandInput): import("@smithy/smithy-client").CommandImpl<ReverseGeocodeCommandInput, ReverseGeocodeCommandOutput, GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: ReverseGeocodeCommandInput): import("@smithy/core/client").CommandImpl<ReverseGeocodeCommandInput, ReverseGeocodeCommandOutput, GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: ReverseGeocodeCommandInput): import("@smithy/core/client").CommandImpl<ReverseGeocodeCommandInput, ReverseGeocodeCommandOutput, GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * <p> <code>ReverseGeocode</code> converts geographic coordinates into a human-readable address or place. You can obtain address component, and other related information such as place type, category, street information. The Reverse Geocode API supports filtering to on place type so that you can refine result based on your need. Also, The Reverse Geocode API can also provide additional features such as time zone information and the inclusion of political views.</p> <p>For more information, see <a href="https://docs.aws.amazon.com/location/latest/developerguide/reverse-geocode.html">Reverse Geocode</a> in the <i>Amazon Location Service Developer Guide</i>.</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 { GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoPlacesClient";
4
4
  import type { SearchNearbyRequest, SearchNearbyResponse } from "../models/models_0";
@@ -22,9 +22,11 @@ export interface SearchNearbyCommandInput extends SearchNearbyRequest {
22
22
  export interface SearchNearbyCommandOutput extends SearchNearbyResponse, __MetadataBearer {
23
23
  }
24
24
  declare const SearchNearbyCommand_base: {
25
- new (input: SearchNearbyCommandInput): import("@smithy/smithy-client").CommandImpl<SearchNearbyCommandInput, SearchNearbyCommandOutput, GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: SearchNearbyCommandInput): import("@smithy/smithy-client").CommandImpl<SearchNearbyCommandInput, SearchNearbyCommandOutput, GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: SearchNearbyCommandInput): import("@smithy/core/client").CommandImpl<SearchNearbyCommandInput, SearchNearbyCommandOutput, GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: SearchNearbyCommandInput): import("@smithy/core/client").CommandImpl<SearchNearbyCommandInput, SearchNearbyCommandOutput, GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * <p> <code>SearchNearby</code> queries for points of interest within a radius from a central coordinates, returning place results with optional filters such as categories, business chains, food types and more. The API returns details such as a place name, address, phone, category, food type, contact, opening hours. Also, the API can return phonemes, time zones and more based on requested parameters.</p> <p>For more information, see <a href="https://docs.aws.amazon.com/location/latest/developerguide/search-nearby.html">Search Nearby</a> in the <i>Amazon Location Service Developer Guide</i>.</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 { GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoPlacesClient";
4
4
  import type { SearchTextRequest, SearchTextResponse } from "../models/models_0";
@@ -22,9 +22,11 @@ export interface SearchTextCommandInput extends SearchTextRequest {
22
22
  export interface SearchTextCommandOutput extends SearchTextResponse, __MetadataBearer {
23
23
  }
24
24
  declare const SearchTextCommand_base: {
25
- new (input: SearchTextCommandInput): import("@smithy/smithy-client").CommandImpl<SearchTextCommandInput, SearchTextCommandOutput, GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [SearchTextCommandInput]): import("@smithy/smithy-client").CommandImpl<SearchTextCommandInput, SearchTextCommandOutput, GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: SearchTextCommandInput): import("@smithy/core/client").CommandImpl<SearchTextCommandInput, SearchTextCommandOutput, GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [SearchTextCommandInput]): import("@smithy/core/client").CommandImpl<SearchTextCommandInput, SearchTextCommandOutput, GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * <p> <code>SearchText</code> searches for geocode and place information. You can then complete a follow-up query suggested from the <code>Suggest</code> API via a query id.</p> <p>For more information, see <a href="https://docs.aws.amazon.com/location/latest/developerguide/search-text.html">Search Text</a> in the <i>Amazon Location Service Developer Guide</i>.</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 { GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoPlacesClient";
4
4
  import type { SuggestRequest, SuggestResponse } from "../models/models_0";
@@ -22,9 +22,11 @@ export interface SuggestCommandInput extends SuggestRequest {
22
22
  export interface SuggestCommandOutput extends SuggestResponse, __MetadataBearer {
23
23
  }
24
24
  declare const SuggestCommand_base: {
25
- new (input: SuggestCommandInput): import("@smithy/smithy-client").CommandImpl<SuggestCommandInput, SuggestCommandOutput, GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: SuggestCommandInput): import("@smithy/smithy-client").CommandImpl<SuggestCommandInput, SuggestCommandOutput, GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ new (input: SuggestCommandInput): import("@smithy/core/client").CommandImpl<SuggestCommandInput, SuggestCommandOutput, GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: SuggestCommandInput): import("@smithy/core/client").CommandImpl<SuggestCommandInput, SuggestCommandOutput, GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
28
30
  };
29
31
  /**
30
32
  * <p> <code>Suggest</code> provides intelligent predictions or recommendations based on the user's input or context, such as relevant places, points of interest, query terms or search category. It is designed to help users find places or point of interests candidates or identify a follow on query based on incomplete or misspelled queries. It returns a list of possible matches or refinements that can be used to formulate a more accurate query. Users can select the most appropriate suggestion and use it for further searching. The API provides options for filtering results by location and other attributes, and allows for additional features like phonemes and timezones. The response includes refined query terms and detailed place information.</p> <p>For more information, see <a href="https://docs.aws.amazon.com/location/latest/developerguide/suggest.html">Suggest</a> in the <i>Amazon Location Service Developer Guide</i>.</p>
@@ -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 { ValidationExceptionReason } from "./enums";
3
3
  import { GeoPlacesServiceException as __BaseException } from "./GeoPlacesServiceException";
4
4
  import type { ValidationExceptionField } from "./models_0";
@@ -5,13 +5,13 @@ import type { GeoPlacesClientConfig } from "./GeoPlacesClient";
5
5
  */
6
6
  export declare const getRuntimeConfig: (config: GeoPlacesClientConfig) => {
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>;
12
12
  maxAttempts: number | import("@smithy/types").Provider<number>;
13
13
  region: string | import("@smithy/types").Provider<any>;
14
- requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
14
+ requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
15
15
  retryMode: string | import("@smithy/types").Provider<string>;
16
16
  sha256: import("@smithy/types").HashConstructor;
17
17
  streamCollector: import("@smithy/types").StreamCollector;
@@ -5,14 +5,14 @@ import type { GeoPlacesClientConfig } from "./GeoPlacesClient";
5
5
  */
6
6
  export declare const getRuntimeConfig: (config: GeoPlacesClientConfig) => {
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);
12
12
  defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
13
13
  maxAttempts: number | import("@smithy/types").Provider<number>;
14
14
  region: string | import("@smithy/types").Provider<string>;
15
- requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
15
+ requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
16
16
  retryMode: string | import("@smithy/types").Provider<string>;
17
17
  sha256: import("@smithy/types").HashConstructor;
18
18
  streamCollector: import("@smithy/types").StreamCollector;
@@ -5,7 +5,7 @@ import type { GeoPlacesClientConfig } from "./GeoPlacesClient";
5
5
  export declare const getRuntimeConfig: (config: GeoPlacesClientConfig) => {
6
6
  runtime: string;
7
7
  sha256: import("@smithy/types").HashConstructor;
8
- requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
8
+ requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
9
  cacheMiddleware?: boolean;
10
10
  protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
11
11
  protocolSettings: {
@@ -32,7 +32,7 @@ export declare const getRuntimeConfig: (config: GeoPlacesClientConfig) => {
32
32
  retryMode: string | import("@smithy/types").Provider<string>;
33
33
  logger: import("@smithy/types").Logger;
34
34
  extensions: import("./runtimeExtensions").RuntimeExtension[];
35
- defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
35
+ defaultsMode: import("@smithy/core/client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
36
36
  customUserAgent?: string | import("@smithy/types").UserAgent;
37
37
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
38
38
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
@@ -6,25 +6,19 @@ import {
6
6
  UserAgentInputConfig,
7
7
  UserAgentResolvedConfig,
8
8
  } from "@aws-sdk/middleware-user-agent";
9
- import {
10
- RegionInputConfig,
11
- RegionResolvedConfig,
12
- } from "@smithy/config-resolver";
13
- import {
14
- EndpointInputConfig,
15
- EndpointResolvedConfig,
16
- } from "@smithy/middleware-endpoint";
17
- import {
18
- RetryInputConfig,
19
- RetryResolvedConfig,
20
- } from "@smithy/middleware-retry";
21
- import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
22
9
  import {
23
10
  DefaultsMode as __DefaultsMode,
24
11
  SmithyConfiguration as __SmithyConfiguration,
25
12
  SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
26
13
  Client as __Client,
27
- } from "@smithy/smithy-client";
14
+ } from "@smithy/core/client";
15
+ import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
16
+ import {
17
+ EndpointInputConfig,
18
+ EndpointResolvedConfig,
19
+ } from "@smithy/core/endpoints";
20
+ import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
21
+ import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
28
22
  import {
29
23
  AwsCredentialIdentityProvider,
30
24
  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 {
4
4
  GeoPlacesClientResolvedConfig,
@@ -15,7 +15,7 @@ export interface AutocompleteCommandOutput
15
15
  declare const AutocompleteCommand_base: {
16
16
  new (
17
17
  input: AutocompleteCommandInput
18
- ): import("@smithy/smithy-client").CommandImpl<
18
+ ): import("@smithy/core/client").CommandImpl<
19
19
  AutocompleteCommandInput,
20
20
  AutocompleteCommandOutput,
21
21
  GeoPlacesClientResolvedConfig,
@@ -24,14 +24,16 @@ declare const AutocompleteCommand_base: {
24
24
  >;
25
25
  new (
26
26
  input: AutocompleteCommandInput
27
- ): import("@smithy/smithy-client").CommandImpl<
27
+ ): import("@smithy/core/client").CommandImpl<
28
28
  AutocompleteCommandInput,
29
29
  AutocompleteCommandOutput,
30
30
  GeoPlacesClientResolvedConfig,
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 AutocompleteCommand extends AutocompleteCommand_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 {
4
4
  GeoPlacesClientResolvedConfig,
@@ -13,7 +13,7 @@ export interface GeocodeCommandOutput
13
13
  extends GeocodeResponse,
14
14
  __MetadataBearer {}
15
15
  declare const GeocodeCommand_base: {
16
- new (input: GeocodeCommandInput): import("@smithy/smithy-client").CommandImpl<
16
+ new (input: GeocodeCommandInput): import("@smithy/core/client").CommandImpl<
17
17
  GeocodeCommandInput,
18
18
  GeocodeCommandOutput,
19
19
  GeoPlacesClientResolvedConfig,
@@ -22,14 +22,16 @@ declare const GeocodeCommand_base: {
22
22
  >;
23
23
  new (
24
24
  ...[input]: [] | [GeocodeCommandInput]
25
- ): import("@smithy/smithy-client").CommandImpl<
25
+ ): import("@smithy/core/client").CommandImpl<
26
26
  GeocodeCommandInput,
27
27
  GeocodeCommandOutput,
28
28
  GeoPlacesClientResolvedConfig,
29
29
  ServiceInputTypes,
30
30
  ServiceOutputTypes
31
31
  >;
32
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
32
+ getEndpointParameterInstructions(): {
33
+ [x: string]: unknown;
34
+ };
33
35
  };
34
36
  export declare class GeocodeCommand extends GeocodeCommand_base {
35
37
  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 {
4
4
  GeoPlacesClientResolvedConfig,
@@ -13,25 +13,23 @@ export interface GetPlaceCommandOutput
13
13
  extends GetPlaceResponse,
14
14
  __MetadataBearer {}
15
15
  declare const GetPlaceCommand_base: {
16
- new (
17
- input: GetPlaceCommandInput
18
- ): import("@smithy/smithy-client").CommandImpl<
16
+ new (input: GetPlaceCommandInput): import("@smithy/core/client").CommandImpl<
19
17
  GetPlaceCommandInput,
20
18
  GetPlaceCommandOutput,
21
19
  GeoPlacesClientResolvedConfig,
22
20
  ServiceInputTypes,
23
21
  ServiceOutputTypes
24
22
  >;
25
- new (
26
- input: GetPlaceCommandInput
27
- ): import("@smithy/smithy-client").CommandImpl<
23
+ new (input: GetPlaceCommandInput): import("@smithy/core/client").CommandImpl<
28
24
  GetPlaceCommandInput,
29
25
  GetPlaceCommandOutput,
30
26
  GeoPlacesClientResolvedConfig,
31
27
  ServiceInputTypes,
32
28
  ServiceOutputTypes
33
29
  >;
34
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
30
+ getEndpointParameterInstructions(): {
31
+ [x: string]: unknown;
32
+ };
35
33
  };
36
34
  export declare class GetPlaceCommand extends GetPlaceCommand_base {
37
35
  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 {
4
4
  GeoPlacesClientResolvedConfig,
@@ -18,7 +18,7 @@ export interface ReverseGeocodeCommandOutput
18
18
  declare const ReverseGeocodeCommand_base: {
19
19
  new (
20
20
  input: ReverseGeocodeCommandInput
21
- ): import("@smithy/smithy-client").CommandImpl<
21
+ ): import("@smithy/core/client").CommandImpl<
22
22
  ReverseGeocodeCommandInput,
23
23
  ReverseGeocodeCommandOutput,
24
24
  GeoPlacesClientResolvedConfig,
@@ -27,14 +27,16 @@ declare const ReverseGeocodeCommand_base: {
27
27
  >;
28
28
  new (
29
29
  input: ReverseGeocodeCommandInput
30
- ): import("@smithy/smithy-client").CommandImpl<
30
+ ): import("@smithy/core/client").CommandImpl<
31
31
  ReverseGeocodeCommandInput,
32
32
  ReverseGeocodeCommandOutput,
33
33
  GeoPlacesClientResolvedConfig,
34
34
  ServiceInputTypes,
35
35
  ServiceOutputTypes
36
36
  >;
37
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
37
+ getEndpointParameterInstructions(): {
38
+ [x: string]: unknown;
39
+ };
38
40
  };
39
41
  export declare class ReverseGeocodeCommand extends ReverseGeocodeCommand_base {
40
42
  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 {
4
4
  GeoPlacesClientResolvedConfig,
@@ -15,7 +15,7 @@ export interface SearchNearbyCommandOutput
15
15
  declare const SearchNearbyCommand_base: {
16
16
  new (
17
17
  input: SearchNearbyCommandInput
18
- ): import("@smithy/smithy-client").CommandImpl<
18
+ ): import("@smithy/core/client").CommandImpl<
19
19
  SearchNearbyCommandInput,
20
20
  SearchNearbyCommandOutput,
21
21
  GeoPlacesClientResolvedConfig,
@@ -24,14 +24,16 @@ declare const SearchNearbyCommand_base: {
24
24
  >;
25
25
  new (
26
26
  input: SearchNearbyCommandInput
27
- ): import("@smithy/smithy-client").CommandImpl<
27
+ ): import("@smithy/core/client").CommandImpl<
28
28
  SearchNearbyCommandInput,
29
29
  SearchNearbyCommandOutput,
30
30
  GeoPlacesClientResolvedConfig,
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 SearchNearbyCommand extends SearchNearbyCommand_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 {
4
4
  GeoPlacesClientResolvedConfig,
@@ -15,7 +15,7 @@ export interface SearchTextCommandOutput
15
15
  declare const SearchTextCommand_base: {
16
16
  new (
17
17
  input: SearchTextCommandInput
18
- ): import("@smithy/smithy-client").CommandImpl<
18
+ ): import("@smithy/core/client").CommandImpl<
19
19
  SearchTextCommandInput,
20
20
  SearchTextCommandOutput,
21
21
  GeoPlacesClientResolvedConfig,
@@ -24,14 +24,16 @@ declare const SearchTextCommand_base: {
24
24
  >;
25
25
  new (
26
26
  ...[input]: [] | [SearchTextCommandInput]
27
- ): import("@smithy/smithy-client").CommandImpl<
27
+ ): import("@smithy/core/client").CommandImpl<
28
28
  SearchTextCommandInput,
29
29
  SearchTextCommandOutput,
30
30
  GeoPlacesClientResolvedConfig,
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 SearchTextCommand extends SearchTextCommand_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 {
4
4
  GeoPlacesClientResolvedConfig,
@@ -13,21 +13,23 @@ export interface SuggestCommandOutput
13
13
  extends SuggestResponse,
14
14
  __MetadataBearer {}
15
15
  declare const SuggestCommand_base: {
16
- new (input: SuggestCommandInput): import("@smithy/smithy-client").CommandImpl<
16
+ new (input: SuggestCommandInput): import("@smithy/core/client").CommandImpl<
17
17
  SuggestCommandInput,
18
18
  SuggestCommandOutput,
19
19
  GeoPlacesClientResolvedConfig,
20
20
  ServiceInputTypes,
21
21
  ServiceOutputTypes
22
22
  >;
23
- new (input: SuggestCommandInput): import("@smithy/smithy-client").CommandImpl<
23
+ new (input: SuggestCommandInput): import("@smithy/core/client").CommandImpl<
24
24
  SuggestCommandInput,
25
25
  SuggestCommandOutput,
26
26
  GeoPlacesClientResolvedConfig,
27
27
  ServiceInputTypes,
28
28
  ServiceOutputTypes
29
29
  >;
30
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
30
+ getEndpointParameterInstructions(): {
31
+ [x: string]: unknown;
32
+ };
31
33
  };
32
34
  export declare class SuggestCommand extends SuggestCommand_base {
33
35
  protected static __types: {
@@ -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 { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
2
- import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
2
+ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
3
3
  import { DefaultExtensionConfiguration } from "@smithy/types";
4
4
  import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
5
5
  export interface GeoPlacesExtensionConfiguration
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  ServiceExceptionOptions as __ServiceExceptionOptions,
3
3
  ServiceException as __ServiceException,
4
- } from "@smithy/smithy-client";
4
+ } from "@smithy/core/client";
5
5
  export { __ServiceExceptionOptions };
6
6
  export { __ServiceException };
7
7
  export declare class GeoPlacesServiceException extends __ServiceException {
@@ -1,4 +1,4 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/client";
2
2
  import { ValidationExceptionReason } from "./enums";
3
3
  import { GeoPlacesServiceException as __BaseException } from "./GeoPlacesServiceException";
4
4
  import { ValidationExceptionField } from "./models_0";
@@ -3,7 +3,7 @@ import { GeoPlacesClientConfig } from "./GeoPlacesClient";
3
3
  export declare const getRuntimeConfig: (config: GeoPlacesClientConfig) => {
4
4
  runtime: string;
5
5
  defaultsMode: import("@smithy/types").Provider<
6
- import("@smithy/smithy-client").ResolvedDefaultsMode
6
+ import("@smithy/core/client").ResolvedDefaultsMode
7
7
  >;
8
8
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
9
  credentialDefaultProvider:
@@ -17,7 +17,7 @@ export declare const getRuntimeConfig: (config: GeoPlacesClientConfig) => {
17
17
  maxAttempts: number | import("@smithy/types").Provider<number>;
18
18
  region: string | import("@smithy/types").Provider<any>;
19
19
  requestHandler:
20
- | import("@smithy/protocol-http").HttpHandler<any>
20
+ | import("@smithy/core/protocols").HttpHandler<any>
21
21
  | RequestHandler;
22
22
  retryMode: string | import("@smithy/types").Provider<string>;
23
23
  sha256: import("@smithy/types").HashConstructor;
@@ -3,7 +3,7 @@ import { GeoPlacesClientConfig } from "./GeoPlacesClient";
3
3
  export declare const getRuntimeConfig: (config: GeoPlacesClientConfig) => {
4
4
  runtime: string;
5
5
  defaultsMode: import("@smithy/types").Provider<
6
- import("@smithy/smithy-client").ResolvedDefaultsMode
6
+ import("@smithy/core/client").ResolvedDefaultsMode
7
7
  >;
8
8
  authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
9
9
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
@@ -19,7 +19,7 @@ export declare const getRuntimeConfig: (config: GeoPlacesClientConfig) => {
19
19
  region: string | import("@smithy/types").Provider<string>;
20
20
  requestHandler:
21
21
  | RequestHandler
22
- | import("@smithy/protocol-http").HttpHandler<any>;
22
+ | import("@smithy/core/protocols").HttpHandler<any>;
23
23
  retryMode: string | import("@smithy/types").Provider<string>;
24
24
  sha256: import("@smithy/types").HashConstructor;
25
25
  streamCollector: import("@smithy/types").StreamCollector;