@aws-sdk/client-geo-places 3.1076.0 → 3.1078.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 (41) hide show
  1. package/dist-cjs/index.js +18 -75
  2. package/dist-es/commandBuilder.js +6 -0
  3. package/dist-es/commands/AutocompleteCommand.js +2 -14
  4. package/dist-es/commands/GeocodeCommand.js +2 -14
  5. package/dist-es/commands/GetPlaceCommand.js +2 -14
  6. package/dist-es/commands/ReverseGeocodeCommand.js +2 -14
  7. package/dist-es/commands/SearchNearbyCommand.js +2 -14
  8. package/dist-es/commands/SearchTextCommand.js +2 -14
  9. package/dist-es/commands/SuggestCommand.js +2 -14
  10. package/dist-es/index.js +1 -0
  11. package/dist-es/runtimeConfig.browser.js +0 -2
  12. package/dist-es/runtimeConfig.js +1 -2
  13. package/dist-es/runtimeConfig.native.js +0 -2
  14. package/dist-es/runtimeConfig.shared.js +2 -0
  15. package/dist-types/commandBuilder.d.ts +18 -0
  16. package/dist-types/commands/AutocompleteCommand.d.ts +3 -8
  17. package/dist-types/commands/GeocodeCommand.d.ts +3 -8
  18. package/dist-types/commands/GetPlaceCommand.d.ts +3 -8
  19. package/dist-types/commands/ReverseGeocodeCommand.d.ts +3 -8
  20. package/dist-types/commands/SearchNearbyCommand.d.ts +3 -8
  21. package/dist-types/commands/SearchTextCommand.d.ts +3 -8
  22. package/dist-types/commands/SuggestCommand.d.ts +3 -8
  23. package/dist-types/index.d.ts +1 -0
  24. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  25. package/dist-types/runtimeConfig.d.ts +1 -1
  26. package/dist-types/runtimeConfig.native.d.ts +1 -1
  27. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  28. package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
  29. package/dist-types/ts3.4/commands/AutocompleteCommand.d.ts +7 -16
  30. package/dist-types/ts3.4/commands/GeocodeCommand.d.ts +7 -16
  31. package/dist-types/ts3.4/commands/GetPlaceCommand.d.ts +7 -16
  32. package/dist-types/ts3.4/commands/ReverseGeocodeCommand.d.ts +7 -16
  33. package/dist-types/ts3.4/commands/SearchNearbyCommand.d.ts +7 -16
  34. package/dist-types/ts3.4/commands/SearchTextCommand.d.ts +7 -16
  35. package/dist-types/ts3.4/commands/SuggestCommand.d.ts +7 -16
  36. package/dist-types/ts3.4/index.d.ts +1 -0
  37. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  38. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  39. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  40. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
  41. package/package.json +8 -10
package/dist-cjs/index.js CHANGED
@@ -1,7 +1,8 @@
1
1
  const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
2
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin } = require("@smithy/core");
3
- const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
4
- exports.$Command = Command;
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, makeBuilder, createAggregatedClient } = require("@smithy/core/client");
4
+ const { Command: $Command } = require("@smithy/core/client");
5
+ exports.$Command = $Command;
5
6
  exports.__Client = Client;
6
7
  const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
8
  const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
@@ -10,9 +11,10 @@ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CON
10
11
  const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
12
  const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
13
  const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
- const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
14
15
  const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
16
  const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
17
+ const { Sha256 } = require("@smithy/core/checksum");
16
18
 
17
19
  const defaultGeoPlacesHttpAuthSchemeParametersProvider = async (config, context, input) => {
18
20
  return {
@@ -67,7 +69,7 @@ const commonParams = {
67
69
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
68
70
  };
69
71
 
70
- var version = "3.1075.0";
72
+ var version = "3.1077.0";
71
73
  var packageInfo = {
72
74
  version: version};
73
75
 
@@ -1059,6 +1061,7 @@ const getRuntimeConfig$1 = (config) => {
1059
1061
  serviceTarget: "PlacesService",
1060
1062
  },
1061
1063
  serviceId: config?.serviceId ?? "Geo Places",
1064
+ sha256: config?.sha256 ?? Sha256,
1062
1065
  urlParser: config?.urlParser ?? parseUrl,
1063
1066
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1064
1067
  utf8Encoder: config?.utf8Encoder ?? toUtf8,
@@ -1092,7 +1095,6 @@ const getRuntimeConfig = (config) => {
1092
1095
  ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1093
1096
  default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1094
1097
  }, config),
1095
- sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
1096
1098
  streamCollector: config?.streamCollector ?? streamCollector,
1097
1099
  useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1098
1100
  useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
@@ -1180,88 +1182,29 @@ class GeoPlacesClient extends Client {
1180
1182
  }
1181
1183
  }
1182
1184
 
1183
- class AutocompleteCommand extends Command
1184
- .classBuilder()
1185
- .ep(commonParams)
1186
- .m(function (Command, cs, config, o) {
1187
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1188
- })
1189
- .s("PlacesService", "Autocomplete", {})
1190
- .n("GeoPlacesClient", "AutocompleteCommand")
1191
- .sc(Autocomplete$)
1192
- .build() {
1185
+ const command = makeBuilder(commonParams, "PlacesService", "GeoPlacesClient", getEndpointPlugin);
1186
+ const _ep0 = {};
1187
+ const _mw0 = (Command, cs, config, o) => [];
1188
+
1189
+ class AutocompleteCommand extends command(_ep0, _mw0, "Autocomplete", Autocomplete$) {
1193
1190
  }
1194
1191
 
1195
- class GeocodeCommand extends Command
1196
- .classBuilder()
1197
- .ep(commonParams)
1198
- .m(function (Command, cs, config, o) {
1199
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1200
- })
1201
- .s("PlacesService", "Geocode", {})
1202
- .n("GeoPlacesClient", "GeocodeCommand")
1203
- .sc(Geocode$)
1204
- .build() {
1192
+ class GeocodeCommand extends command(_ep0, _mw0, "Geocode", Geocode$) {
1205
1193
  }
1206
1194
 
1207
- class GetPlaceCommand extends Command
1208
- .classBuilder()
1209
- .ep(commonParams)
1210
- .m(function (Command, cs, config, o) {
1211
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1212
- })
1213
- .s("PlacesService", "GetPlace", {})
1214
- .n("GeoPlacesClient", "GetPlaceCommand")
1215
- .sc(GetPlace$)
1216
- .build() {
1195
+ class GetPlaceCommand extends command(_ep0, _mw0, "GetPlace", GetPlace$) {
1217
1196
  }
1218
1197
 
1219
- class ReverseGeocodeCommand extends Command
1220
- .classBuilder()
1221
- .ep(commonParams)
1222
- .m(function (Command, cs, config, o) {
1223
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1224
- })
1225
- .s("PlacesService", "ReverseGeocode", {})
1226
- .n("GeoPlacesClient", "ReverseGeocodeCommand")
1227
- .sc(ReverseGeocode$)
1228
- .build() {
1198
+ class ReverseGeocodeCommand extends command(_ep0, _mw0, "ReverseGeocode", ReverseGeocode$) {
1229
1199
  }
1230
1200
 
1231
- class SearchNearbyCommand extends Command
1232
- .classBuilder()
1233
- .ep(commonParams)
1234
- .m(function (Command, cs, config, o) {
1235
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1236
- })
1237
- .s("PlacesService", "SearchNearby", {})
1238
- .n("GeoPlacesClient", "SearchNearbyCommand")
1239
- .sc(SearchNearby$)
1240
- .build() {
1201
+ class SearchNearbyCommand extends command(_ep0, _mw0, "SearchNearby", SearchNearby$) {
1241
1202
  }
1242
1203
 
1243
- class SearchTextCommand extends Command
1244
- .classBuilder()
1245
- .ep(commonParams)
1246
- .m(function (Command, cs, config, o) {
1247
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1248
- })
1249
- .s("PlacesService", "SearchText", {})
1250
- .n("GeoPlacesClient", "SearchTextCommand")
1251
- .sc(SearchText$)
1252
- .build() {
1204
+ class SearchTextCommand extends command(_ep0, _mw0, "SearchText", SearchText$) {
1253
1205
  }
1254
1206
 
1255
- class SuggestCommand extends Command
1256
- .classBuilder()
1257
- .ep(commonParams)
1258
- .m(function (Command, cs, config, o) {
1259
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1260
- })
1261
- .s("PlacesService", "Suggest", {})
1262
- .n("GeoPlacesClient", "SuggestCommand")
1263
- .sc(Suggest$)
1264
- .build() {
1207
+ class SuggestCommand extends command(_ep0, _mw0, "Suggest", Suggest$) {
1265
1208
  }
1266
1209
 
1267
1210
  const commands = {
@@ -0,0 +1,6 @@
1
+ import { makeBuilder } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "./endpoint/EndpointParameters";
4
+ export const command = makeBuilder(commonParams, "PlacesService", "GeoPlacesClient", getEndpointPlugin);
5
+ export const _ep0 = {};
6
+ export const _mw0 = (Command, cs, config, o) => [];
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { Autocomplete$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class AutocompleteCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("PlacesService", "Autocomplete", {})
13
- .n("GeoPlacesClient", "AutocompleteCommand")
14
- .sc(Autocomplete$)
15
- .build() {
3
+ export class AutocompleteCommand extends command(_ep0, _mw0, "Autocomplete", Autocomplete$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { Geocode$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class GeocodeCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("PlacesService", "Geocode", {})
13
- .n("GeoPlacesClient", "GeocodeCommand")
14
- .sc(Geocode$)
15
- .build() {
3
+ export class GeocodeCommand extends command(_ep0, _mw0, "Geocode", Geocode$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { GetPlace$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class GetPlaceCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("PlacesService", "GetPlace", {})
13
- .n("GeoPlacesClient", "GetPlaceCommand")
14
- .sc(GetPlace$)
15
- .build() {
3
+ export class GetPlaceCommand extends command(_ep0, _mw0, "GetPlace", GetPlace$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { ReverseGeocode$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class ReverseGeocodeCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("PlacesService", "ReverseGeocode", {})
13
- .n("GeoPlacesClient", "ReverseGeocodeCommand")
14
- .sc(ReverseGeocode$)
15
- .build() {
3
+ export class ReverseGeocodeCommand extends command(_ep0, _mw0, "ReverseGeocode", ReverseGeocode$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { SearchNearby$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class SearchNearbyCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("PlacesService", "SearchNearby", {})
13
- .n("GeoPlacesClient", "SearchNearbyCommand")
14
- .sc(SearchNearby$)
15
- .build() {
3
+ export class SearchNearbyCommand extends command(_ep0, _mw0, "SearchNearby", SearchNearby$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { SearchText$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class SearchTextCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("PlacesService", "SearchText", {})
13
- .n("GeoPlacesClient", "SearchTextCommand")
14
- .sc(SearchText$)
15
- .build() {
3
+ export class SearchTextCommand extends command(_ep0, _mw0, "SearchText", SearchText$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { Suggest$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class SuggestCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("PlacesService", "Suggest", {})
13
- .n("GeoPlacesClient", "SuggestCommand")
14
- .sc(Suggest$)
15
- .build() {
3
+ export class SuggestCommand extends command(_ep0, _mw0, "Suggest", Suggest$) {
16
4
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./GeoPlacesClient";
2
2
  export * from "./GeoPlaces";
3
3
  export * from "./commands";
4
+ export { Command as $Command } from "@smithy/core/client";
4
5
  export * from "./schemas/schemas_0";
5
6
  export * from "./models/enums";
6
7
  export * from "./models/errors";
@@ -1,5 +1,4 @@
1
1
  import packageInfo from "../package.json";
2
- import { Sha256 } from "@aws-crypto/sha256-browser";
3
2
  import { createDefaultUserAgentProvider } from "@aws-sdk/core/client";
4
3
  import { invalidProvider, loadConfigsForDefaultMode } from "@smithy/core/client";
5
4
  import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, resolveDefaultsModeConfig, } from "@smithy/core/config";
@@ -23,7 +22,6 @@ export const getRuntimeConfig = (config) => {
23
22
  region: config?.region ?? invalidProvider("Region is missing"),
24
23
  requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
25
24
  retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE),
26
- sha256: config?.sha256 ?? Sha256,
27
25
  streamCollector: config?.streamCollector ?? streamCollector,
28
26
  useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(DEFAULT_USE_DUALSTACK_ENDPOINT)),
29
27
  useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(DEFAULT_USE_FIPS_ENDPOINT)),
@@ -5,7 +5,7 @@ import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credentia
5
5
  import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/core/client";
6
6
  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";
7
7
  import { DEFAULT_RETRY_MODE, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS, } from "@smithy/core/retry";
8
- import { calculateBodyLength, Hash } from "@smithy/core/serde";
8
+ import { calculateBodyLength } from "@smithy/core/serde";
9
9
  import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler";
10
10
  import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
11
11
  export const getRuntimeConfig = (config) => {
@@ -35,7 +35,6 @@ export const getRuntimeConfig = (config) => {
35
35
  ...NODE_RETRY_MODE_CONFIG_OPTIONS,
36
36
  default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
37
37
  }, config),
38
- sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
39
38
  streamCollector: config?.streamCollector ?? streamCollector,
40
39
  useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
41
40
  useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
@@ -1,4 +1,3 @@
1
- import { Sha256 } from "@aws-crypto/sha256-js";
2
1
  import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser";
3
2
  export const getRuntimeConfig = (config) => {
4
3
  const browserDefaults = getBrowserRuntimeConfig(config);
@@ -6,6 +5,5 @@ export const getRuntimeConfig = (config) => {
6
5
  ...browserDefaults,
7
6
  ...config,
8
7
  runtime: "react-native",
9
- sha256: config?.sha256 ?? Sha256,
10
8
  };
11
9
  };
@@ -1,5 +1,6 @@
1
1
  import { AwsSdkSigV4Signer } from "@aws-sdk/core/httpAuthSchemes";
2
2
  import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
3
+ import { Sha256 } from "@smithy/core/checksum";
3
4
  import { NoOpLogger } from "@smithy/core/client";
4
5
  import { parseUrl } from "@smithy/core/protocols";
5
6
  import { fromBase64, fromUtf8, toBase64, toUtf8 } from "@smithy/core/serde";
@@ -31,6 +32,7 @@ export const getRuntimeConfig = (config) => {
31
32
  serviceTarget: "PlacesService",
32
33
  },
33
34
  serviceId: config?.serviceId ?? "Geo Places",
35
+ sha256: config?.sha256 ?? Sha256,
34
36
  urlParser: config?.urlParser ?? parseUrl,
35
37
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,
36
38
  utf8Encoder: config?.utf8Encoder ?? toUtf8,
@@ -0,0 +1,18 @@
1
+ import type { EndpointParameterInstructions } from "@smithy/types";
2
+ import type { GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./GeoPlacesClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(added: EndpointParameterInstructions, plugins: (CommandCtor: any, clientStack: any, config: any, options: any) => import("@smithy/types").Pluggable<any, any>[], op: string, $: import("@smithy/types").StaticOperationSchema, smithyContext?: Record<string, unknown>) => {
7
+ new (input: I): import("@smithy/core/client").CommandImpl<I, O, GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
8
+ new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
9
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
10
+ };
11
+ /**
12
+ * @internal
13
+ */
14
+ export declare const _ep0: EndpointParameterInstructions;
15
+ /**
16
+ * @internal
17
+ */
18
+ export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoPlacesClient";
4
2
  import type { AutocompleteRequest, AutocompleteResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface AutocompleteCommandInput extends AutocompleteRequest {
22
19
  export interface AutocompleteCommandOutput extends AutocompleteResponse, __MetadataBearer {
23
20
  }
24
21
  declare const AutocompleteCommand_base: {
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
- };
22
+ new (input: AutocompleteCommandInput): import("@smithy/core/client").CommandImpl<AutocompleteCommandInput, AutocompleteCommandOutput, import("..").GeoPlacesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: AutocompleteCommandInput): import("@smithy/core/client").CommandImpl<AutocompleteCommandInput, AutocompleteCommandOutput, import("..").GeoPlacesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <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,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoPlacesClient";
4
2
  import type { GeocodeRequest, GeocodeResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface GeocodeCommandInput extends GeocodeRequest {
22
19
  export interface GeocodeCommandOutput extends GeocodeResponse, __MetadataBearer {
23
20
  }
24
21
  declare const GeocodeCommand_base: {
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
- };
22
+ new (input: GeocodeCommandInput): import("@smithy/core/client").CommandImpl<GeocodeCommandInput, GeocodeCommandOutput, import("..").GeoPlacesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [GeocodeCommandInput]): import("@smithy/core/client").CommandImpl<GeocodeCommandInput, GeocodeCommandOutput, import("..").GeoPlacesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <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,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoPlacesClient";
4
2
  import type { GetPlaceRequest, GetPlaceResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface GetPlaceCommandInput extends GetPlaceRequest {
22
19
  export interface GetPlaceCommandOutput extends GetPlaceResponse, __MetadataBearer {
23
20
  }
24
21
  declare const GetPlaceCommand_base: {
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
- };
22
+ new (input: GetPlaceCommandInput): import("@smithy/core/client").CommandImpl<GetPlaceCommandInput, GetPlaceCommandOutput, import("..").GeoPlacesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: GetPlaceCommandInput): import("@smithy/core/client").CommandImpl<GetPlaceCommandInput, GetPlaceCommandOutput, import("..").GeoPlacesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <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,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoPlacesClient";
4
2
  import type { ReverseGeocodeRequest, ReverseGeocodeResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ReverseGeocodeCommandInput extends ReverseGeocodeRequest {
22
19
  export interface ReverseGeocodeCommandOutput extends ReverseGeocodeResponse, __MetadataBearer {
23
20
  }
24
21
  declare const ReverseGeocodeCommand_base: {
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
- };
22
+ new (input: ReverseGeocodeCommandInput): import("@smithy/core/client").CommandImpl<ReverseGeocodeCommandInput, ReverseGeocodeCommandOutput, import("..").GeoPlacesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ReverseGeocodeCommandInput): import("@smithy/core/client").CommandImpl<ReverseGeocodeCommandInput, ReverseGeocodeCommandOutput, import("..").GeoPlacesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <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,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoPlacesClient";
4
2
  import type { SearchNearbyRequest, SearchNearbyResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface SearchNearbyCommandInput extends SearchNearbyRequest {
22
19
  export interface SearchNearbyCommandOutput extends SearchNearbyResponse, __MetadataBearer {
23
20
  }
24
21
  declare const SearchNearbyCommand_base: {
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
- };
22
+ new (input: SearchNearbyCommandInput): import("@smithy/core/client").CommandImpl<SearchNearbyCommandInput, SearchNearbyCommandOutput, import("..").GeoPlacesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: SearchNearbyCommandInput): import("@smithy/core/client").CommandImpl<SearchNearbyCommandInput, SearchNearbyCommandOutput, import("..").GeoPlacesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <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,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoPlacesClient";
4
2
  import type { SearchTextRequest, SearchTextResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface SearchTextCommandInput extends SearchTextRequest {
22
19
  export interface SearchTextCommandOutput extends SearchTextResponse, __MetadataBearer {
23
20
  }
24
21
  declare const SearchTextCommand_base: {
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
- };
22
+ new (input: SearchTextCommandInput): import("@smithy/core/client").CommandImpl<SearchTextCommandInput, SearchTextCommandOutput, import("..").GeoPlacesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [SearchTextCommandInput]): import("@smithy/core/client").CommandImpl<SearchTextCommandInput, SearchTextCommandOutput, import("..").GeoPlacesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <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,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoPlacesClient";
4
2
  import type { SuggestRequest, SuggestResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface SuggestCommandInput extends SuggestRequest {
22
19
  export interface SuggestCommandOutput extends SuggestResponse, __MetadataBearer {
23
20
  }
24
21
  declare const SuggestCommand_base: {
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
- };
22
+ new (input: SuggestCommandInput): import("@smithy/core/client").CommandImpl<SuggestCommandInput, SuggestCommandOutput, import("..").GeoPlacesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: SuggestCommandInput): import("@smithy/core/client").CommandImpl<SuggestCommandInput, SuggestCommandOutput, import("..").GeoPlacesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <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>
@@ -9,6 +9,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
9
9
  export type { RuntimeExtension } from "./runtimeExtensions";
10
10
  export type { GeoPlacesExtensionConfiguration } from "./extensionConfiguration";
11
11
  export * from "./commands";
12
+ export { Command as $Command } from "@smithy/core/client";
12
13
  export * from "./schemas/schemas_0";
13
14
  export * from "./models/enums";
14
15
  export * from "./models/errors";
@@ -13,7 +13,6 @@ export declare const getRuntimeConfig: (config: GeoPlacesClientConfig) => {
13
13
  region: string | import("@smithy/types").Provider<any>;
14
14
  requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
15
15
  retryMode: string | import("@smithy/types").Provider<string>;
16
- sha256: import("@smithy/types").HashConstructor;
17
16
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
18
17
  useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
19
18
  useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
@@ -24,6 +23,7 @@ export declare const getRuntimeConfig: (config: GeoPlacesClientConfig) => {
24
23
  [setting: string]: unknown;
25
24
  };
26
25
  apiVersion: string;
26
+ sha256: import("@smithy/types").HashConstructor;
27
27
  urlParser: import("@smithy/types").UrlParser;
28
28
  base64Decoder: import("@smithy/types").Decoder;
29
29
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -14,7 +14,6 @@ export declare const getRuntimeConfig: (config: GeoPlacesClientConfig) => {
14
14
  region: string | import("@smithy/types").Provider<string>;
15
15
  requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
16
16
  retryMode: string | import("@smithy/types").Provider<string>;
17
- sha256: import("@smithy/types").HashConstructor;
18
17
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
19
18
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
19
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
@@ -26,6 +25,7 @@ export declare const getRuntimeConfig: (config: GeoPlacesClientConfig) => {
26
25
  [setting: string]: unknown;
27
26
  };
28
27
  apiVersion: string;
28
+ sha256: import("@smithy/types").HashConstructor;
29
29
  urlParser: import("@smithy/types").UrlParser;
30
30
  base64Decoder: import("@smithy/types").Decoder;
31
31
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -4,7 +4,6 @@ import type { GeoPlacesClientConfig } from "./GeoPlacesClient";
4
4
  */
5
5
  export declare const getRuntimeConfig: (config: GeoPlacesClientConfig) => {
6
6
  runtime: string;
7
- sha256: import("@smithy/types").HashConstructor;
8
7
  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
8
  cacheMiddleware?: boolean;
10
9
  protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
@@ -13,6 +12,7 @@ export declare const getRuntimeConfig: (config: GeoPlacesClientConfig) => {
13
12
  [setting: string]: unknown;
14
13
  };
15
14
  apiVersion: string;
15
+ sha256: import("@smithy/types").HashConstructor;
16
16
  urlParser: import("@smithy/types").UrlParser;
17
17
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
18
18
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
@@ -21,6 +21,7 @@ export declare const getRuntimeConfig: (config: GeoPlacesClientConfig) => {
21
21
  defaultNamespace?: string;
22
22
  };
23
23
  serviceId: string;
24
+ sha256: import("@smithy/types").HashConstructor;
24
25
  urlParser: import("@smithy/types").UrlParser;
25
26
  utf8Decoder: import("@smithy/types").Decoder;
26
27
  utf8Encoder: (input: Uint8Array | string) => string;
@@ -0,0 +1,46 @@
1
+ import { EndpointParameterInstructions } from "@smithy/types";
2
+ import {
3
+ GeoPlacesClientResolvedConfig,
4
+ ServiceInputTypes,
5
+ ServiceOutputTypes,
6
+ } from "./GeoPlacesClient";
7
+ export declare const command: <
8
+ I extends ServiceInputTypes,
9
+ O extends ServiceOutputTypes
10
+ >(
11
+ added: EndpointParameterInstructions,
12
+ plugins: (
13
+ CommandCtor: any,
14
+ clientStack: any,
15
+ config: any,
16
+ options: any
17
+ ) => import("@smithy/types").Pluggable<any, any>[],
18
+ op: string,
19
+ $: import("@smithy/types").StaticOperationSchema,
20
+ smithyContext?: Record<string, unknown>
21
+ ) => {
22
+ new (input: I): import("@smithy/core/client").CommandImpl<
23
+ I,
24
+ O,
25
+ GeoPlacesClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: import("@smithy/types").OptionalParameter<I>
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ I,
33
+ O,
34
+ GeoPlacesClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
39
+ };
40
+ export declare const _ep0: EndpointParameterInstructions;
41
+ export declare const _mw0: (
42
+ Command: any,
43
+ cs: any,
44
+ config: any,
45
+ o: any
46
+ ) => never[];
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- GeoPlacesClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../GeoPlacesClient";
8
2
  import { AutocompleteRequest, AutocompleteResponse } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface AutocompleteCommandInput extends AutocompleteRequest {}
12
5
  export interface AutocompleteCommandOutput
13
6
  extends AutocompleteResponse,
@@ -18,22 +11,20 @@ declare const AutocompleteCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  AutocompleteCommandInput,
20
13
  AutocompleteCommandOutput,
21
- GeoPlacesClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").GeoPlacesClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: AutocompleteCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  AutocompleteCommandInput,
29
22
  AutocompleteCommandOutput,
30
- GeoPlacesClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").GeoPlacesClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class AutocompleteCommand extends AutocompleteCommand_base {
39
30
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- GeoPlacesClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../GeoPlacesClient";
8
2
  import { GeocodeRequest, GeocodeResponse } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface GeocodeCommandInput extends GeocodeRequest {}
12
5
  export interface GeocodeCommandOutput
13
6
  extends GeocodeResponse,
@@ -16,22 +9,20 @@ declare const GeocodeCommand_base: {
16
9
  new (input: GeocodeCommandInput): import("@smithy/core/client").CommandImpl<
17
10
  GeocodeCommandInput,
18
11
  GeocodeCommandOutput,
19
- GeoPlacesClientResolvedConfig,
20
- ServiceInputTypes,
21
- ServiceOutputTypes
12
+ import("..").GeoPlacesClientResolvedConfig,
13
+ import("..").ServiceInputTypes,
14
+ import("..").ServiceOutputTypes
22
15
  >;
23
16
  new (
24
17
  ...[input]: [] | [GeocodeCommandInput]
25
18
  ): import("@smithy/core/client").CommandImpl<
26
19
  GeocodeCommandInput,
27
20
  GeocodeCommandOutput,
28
- GeoPlacesClientResolvedConfig,
29
- ServiceInputTypes,
30
- ServiceOutputTypes
21
+ import("..").GeoPlacesClientResolvedConfig,
22
+ import("..").ServiceInputTypes,
23
+ import("..").ServiceOutputTypes
31
24
  >;
32
- getEndpointParameterInstructions(): {
33
- [x: string]: unknown;
34
- };
25
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
35
26
  };
36
27
  export declare class GeocodeCommand extends GeocodeCommand_base {
37
28
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- GeoPlacesClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../GeoPlacesClient";
8
2
  import { GetPlaceRequest, GetPlaceResponse } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface GetPlaceCommandInput extends GetPlaceRequest {}
12
5
  export interface GetPlaceCommandOutput
13
6
  extends GetPlaceResponse,
@@ -16,20 +9,18 @@ declare const GetPlaceCommand_base: {
16
9
  new (input: GetPlaceCommandInput): import("@smithy/core/client").CommandImpl<
17
10
  GetPlaceCommandInput,
18
11
  GetPlaceCommandOutput,
19
- GeoPlacesClientResolvedConfig,
20
- ServiceInputTypes,
21
- ServiceOutputTypes
12
+ import("..").GeoPlacesClientResolvedConfig,
13
+ import("..").ServiceInputTypes,
14
+ import("..").ServiceOutputTypes
22
15
  >;
23
16
  new (input: GetPlaceCommandInput): import("@smithy/core/client").CommandImpl<
24
17
  GetPlaceCommandInput,
25
18
  GetPlaceCommandOutput,
26
- GeoPlacesClientResolvedConfig,
27
- ServiceInputTypes,
28
- ServiceOutputTypes
19
+ import("..").GeoPlacesClientResolvedConfig,
20
+ import("..").ServiceInputTypes,
21
+ import("..").ServiceOutputTypes
29
22
  >;
30
- getEndpointParameterInstructions(): {
31
- [x: string]: unknown;
32
- };
23
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
33
24
  };
34
25
  export declare class GetPlaceCommand extends GetPlaceCommand_base {
35
26
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- GeoPlacesClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../GeoPlacesClient";
8
2
  import {
9
3
  ReverseGeocodeRequest,
10
4
  ReverseGeocodeResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ReverseGeocodeCommandInput extends ReverseGeocodeRequest {}
15
8
  export interface ReverseGeocodeCommandOutput
16
9
  extends ReverseGeocodeResponse,
@@ -21,22 +14,20 @@ declare const ReverseGeocodeCommand_base: {
21
14
  ): import("@smithy/core/client").CommandImpl<
22
15
  ReverseGeocodeCommandInput,
23
16
  ReverseGeocodeCommandOutput,
24
- GeoPlacesClientResolvedConfig,
25
- ServiceInputTypes,
26
- ServiceOutputTypes
17
+ import("..").GeoPlacesClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
27
20
  >;
28
21
  new (
29
22
  input: ReverseGeocodeCommandInput
30
23
  ): import("@smithy/core/client").CommandImpl<
31
24
  ReverseGeocodeCommandInput,
32
25
  ReverseGeocodeCommandOutput,
33
- GeoPlacesClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").GeoPlacesClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
36
29
  >;
37
- getEndpointParameterInstructions(): {
38
- [x: string]: unknown;
39
- };
30
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
40
31
  };
41
32
  export declare class ReverseGeocodeCommand extends ReverseGeocodeCommand_base {
42
33
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- GeoPlacesClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../GeoPlacesClient";
8
2
  import { SearchNearbyRequest, SearchNearbyResponse } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface SearchNearbyCommandInput extends SearchNearbyRequest {}
12
5
  export interface SearchNearbyCommandOutput
13
6
  extends SearchNearbyResponse,
@@ -18,22 +11,20 @@ declare const SearchNearbyCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  SearchNearbyCommandInput,
20
13
  SearchNearbyCommandOutput,
21
- GeoPlacesClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").GeoPlacesClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: SearchNearbyCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  SearchNearbyCommandInput,
29
22
  SearchNearbyCommandOutput,
30
- GeoPlacesClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").GeoPlacesClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class SearchNearbyCommand extends SearchNearbyCommand_base {
39
30
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- GeoPlacesClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../GeoPlacesClient";
8
2
  import { SearchTextRequest, SearchTextResponse } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface SearchTextCommandInput extends SearchTextRequest {}
12
5
  export interface SearchTextCommandOutput
13
6
  extends SearchTextResponse,
@@ -18,22 +11,20 @@ declare const SearchTextCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  SearchTextCommandInput,
20
13
  SearchTextCommandOutput,
21
- GeoPlacesClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").GeoPlacesClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  ...[input]: [] | [SearchTextCommandInput]
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  SearchTextCommandInput,
29
22
  SearchTextCommandOutput,
30
- GeoPlacesClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").GeoPlacesClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class SearchTextCommand extends SearchTextCommand_base {
39
30
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- GeoPlacesClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../GeoPlacesClient";
8
2
  import { SuggestRequest, SuggestResponse } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface SuggestCommandInput extends SuggestRequest {}
12
5
  export interface SuggestCommandOutput
13
6
  extends SuggestResponse,
@@ -16,20 +9,18 @@ declare const SuggestCommand_base: {
16
9
  new (input: SuggestCommandInput): import("@smithy/core/client").CommandImpl<
17
10
  SuggestCommandInput,
18
11
  SuggestCommandOutput,
19
- GeoPlacesClientResolvedConfig,
20
- ServiceInputTypes,
21
- ServiceOutputTypes
12
+ import("..").GeoPlacesClientResolvedConfig,
13
+ import("..").ServiceInputTypes,
14
+ import("..").ServiceOutputTypes
22
15
  >;
23
16
  new (input: SuggestCommandInput): import("@smithy/core/client").CommandImpl<
24
17
  SuggestCommandInput,
25
18
  SuggestCommandOutput,
26
- GeoPlacesClientResolvedConfig,
27
- ServiceInputTypes,
28
- ServiceOutputTypes
19
+ import("..").GeoPlacesClientResolvedConfig,
20
+ import("..").ServiceInputTypes,
21
+ import("..").ServiceOutputTypes
29
22
  >;
30
- getEndpointParameterInstructions(): {
31
- [x: string]: unknown;
32
- };
23
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
33
24
  };
34
25
  export declare class SuggestCommand extends SuggestCommand_base {
35
26
  protected static __types: {
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
4
  export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { GeoPlacesExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
+ export { Command as $Command } from "@smithy/core/client";
7
8
  export * from "./schemas/schemas_0";
8
9
  export * from "./models/enums";
9
10
  export * from "./models/errors";
@@ -20,7 +20,6 @@ export declare const getRuntimeConfig: (config: GeoPlacesClientConfig) => {
20
20
  | import("@smithy/core/protocols").HttpHandler<any>
21
21
  | RequestHandler;
22
22
  retryMode: string | import("@smithy/types").Provider<string>;
23
- sha256: import("@smithy/types").HashConstructor;
24
23
  streamCollector: (
25
24
  stream:
26
25
  | import("stream").Readable
@@ -42,6 +41,7 @@ export declare const getRuntimeConfig: (config: GeoPlacesClientConfig) => {
42
41
  [setting: string]: unknown;
43
42
  };
44
43
  apiVersion: string;
44
+ sha256: import("@smithy/types").HashConstructor;
45
45
  urlParser: import("@smithy/types").UrlParser;
46
46
  base64Decoder: import("@smithy/types").Decoder;
47
47
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -21,7 +21,6 @@ export declare const getRuntimeConfig: (config: GeoPlacesClientConfig) => {
21
21
  | RequestHandler
22
22
  | import("@smithy/core/protocols").HttpHandler<any>;
23
23
  retryMode: string | import("@smithy/types").Provider<string>;
24
- sha256: import("@smithy/types").HashConstructor;
25
24
  streamCollector: (
26
25
  stream:
27
26
  | import("stream").Readable
@@ -42,6 +41,7 @@ export declare const getRuntimeConfig: (config: GeoPlacesClientConfig) => {
42
41
  [setting: string]: unknown;
43
42
  };
44
43
  apiVersion: string;
44
+ sha256: import("@smithy/types").HashConstructor;
45
45
  urlParser: import("@smithy/types").UrlParser;
46
46
  base64Decoder: import("@smithy/types").Decoder;
47
47
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -1,7 +1,6 @@
1
1
  import { GeoPlacesClientConfig } from "./GeoPlacesClient";
2
2
  export declare const getRuntimeConfig: (config: GeoPlacesClientConfig) => {
3
3
  runtime: string;
4
- sha256: import("@smithy/types").HashConstructor;
5
4
  requestHandler:
6
5
  | import("@smithy/types").NodeHttpHandlerOptions
7
6
  | import("@smithy/types").FetchHttpHandlerOptions
@@ -18,6 +17,7 @@ export declare const getRuntimeConfig: (config: GeoPlacesClientConfig) => {
18
17
  [setting: string]: unknown;
19
18
  };
20
19
  apiVersion: string;
20
+ sha256: import("@smithy/types").HashConstructor;
21
21
  urlParser: import("@smithy/types").UrlParser;
22
22
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
23
23
  streamCollector: (
@@ -24,6 +24,7 @@ export declare const getRuntimeConfig: (config: GeoPlacesClientConfig) => {
24
24
  defaultNamespace?: string;
25
25
  };
26
26
  serviceId: string;
27
+ sha256: import("@smithy/types").HashConstructor;
27
28
  urlParser: import("@smithy/types").UrlParser;
28
29
  utf8Decoder: import("@smithy/types").Decoder;
29
30
  utf8Encoder: (input: Uint8Array | string) => string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-geo-places",
3
3
  "description": "AWS SDK for JavaScript Geo Places Client for Node.js, Browser and React Native",
4
- "version": "3.1076.0",
4
+ "version": "3.1078.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline",
@@ -19,15 +19,13 @@
19
19
  "module": "./dist-es/index.js",
20
20
  "sideEffects": false,
21
21
  "dependencies": {
22
- "@aws-crypto/sha256-browser": "5.2.0",
23
- "@aws-crypto/sha256-js": "5.2.0",
24
- "@aws-sdk/core": "^3.974.24",
25
- "@aws-sdk/credential-provider-node": "^3.972.59",
26
- "@aws-sdk/types": "^3.973.14",
27
- "@smithy/core": "^3.27.0",
28
- "@smithy/fetch-http-handler": "^5.6.0",
29
- "@smithy/node-http-handler": "^4.9.0",
30
- "@smithy/types": "^4.15.0",
22
+ "@aws-sdk/core": "^3.974.26",
23
+ "@aws-sdk/credential-provider-node": "^3.972.61",
24
+ "@aws-sdk/types": "^3.973.15",
25
+ "@smithy/core": "^3.29.0",
26
+ "@smithy/fetch-http-handler": "^5.6.2",
27
+ "@smithy/node-http-handler": "^4.9.2",
28
+ "@smithy/types": "^4.15.1",
31
29
  "tslib": "^2.6.2"
32
30
  },
33
31
  "devDependencies": {