@aws-sdk/client-geo-places 3.1077.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.
- package/dist-cjs/index.js +15 -73
- package/dist-es/commandBuilder.js +6 -0
- package/dist-es/commands/AutocompleteCommand.js +2 -14
- package/dist-es/commands/GeocodeCommand.js +2 -14
- package/dist-es/commands/GetPlaceCommand.js +2 -14
- package/dist-es/commands/ReverseGeocodeCommand.js +2 -14
- package/dist-es/commands/SearchNearbyCommand.js +2 -14
- package/dist-es/commands/SearchTextCommand.js +2 -14
- package/dist-es/commands/SuggestCommand.js +2 -14
- package/dist-es/index.js +1 -0
- package/dist-types/commandBuilder.d.ts +18 -0
- package/dist-types/commands/AutocompleteCommand.d.ts +3 -8
- package/dist-types/commands/GeocodeCommand.d.ts +3 -8
- package/dist-types/commands/GetPlaceCommand.d.ts +3 -8
- package/dist-types/commands/ReverseGeocodeCommand.d.ts +3 -8
- package/dist-types/commands/SearchNearbyCommand.d.ts +3 -8
- package/dist-types/commands/SearchTextCommand.d.ts +3 -8
- package/dist-types/commands/SuggestCommand.d.ts +3 -8
- package/dist-types/index.d.ts +1 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/dist-types/ts3.4/commands/AutocompleteCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GeocodeCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetPlaceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ReverseGeocodeCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/SearchNearbyCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/SearchTextCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/SuggestCommand.d.ts +7 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/package.json +8 -8
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,
|
|
4
|
-
|
|
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");
|
|
@@ -68,7 +69,7 @@ const commonParams = {
|
|
|
68
69
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
69
70
|
};
|
|
70
71
|
|
|
71
|
-
var version = "3.
|
|
72
|
+
var version = "3.1077.0";
|
|
72
73
|
var packageInfo = {
|
|
73
74
|
version: version};
|
|
74
75
|
|
|
@@ -1181,88 +1182,29 @@ class GeoPlacesClient extends Client {
|
|
|
1181
1182
|
}
|
|
1182
1183
|
}
|
|
1183
1184
|
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
})
|
|
1190
|
-
.s("PlacesService", "Autocomplete", {})
|
|
1191
|
-
.n("GeoPlacesClient", "AutocompleteCommand")
|
|
1192
|
-
.sc(Autocomplete$)
|
|
1193
|
-
.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$) {
|
|
1194
1190
|
}
|
|
1195
1191
|
|
|
1196
|
-
class GeocodeCommand extends
|
|
1197
|
-
.classBuilder()
|
|
1198
|
-
.ep(commonParams)
|
|
1199
|
-
.m(function (Command, cs, config, o) {
|
|
1200
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1201
|
-
})
|
|
1202
|
-
.s("PlacesService", "Geocode", {})
|
|
1203
|
-
.n("GeoPlacesClient", "GeocodeCommand")
|
|
1204
|
-
.sc(Geocode$)
|
|
1205
|
-
.build() {
|
|
1192
|
+
class GeocodeCommand extends command(_ep0, _mw0, "Geocode", Geocode$) {
|
|
1206
1193
|
}
|
|
1207
1194
|
|
|
1208
|
-
class GetPlaceCommand extends
|
|
1209
|
-
.classBuilder()
|
|
1210
|
-
.ep(commonParams)
|
|
1211
|
-
.m(function (Command, cs, config, o) {
|
|
1212
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1213
|
-
})
|
|
1214
|
-
.s("PlacesService", "GetPlace", {})
|
|
1215
|
-
.n("GeoPlacesClient", "GetPlaceCommand")
|
|
1216
|
-
.sc(GetPlace$)
|
|
1217
|
-
.build() {
|
|
1195
|
+
class GetPlaceCommand extends command(_ep0, _mw0, "GetPlace", GetPlace$) {
|
|
1218
1196
|
}
|
|
1219
1197
|
|
|
1220
|
-
class ReverseGeocodeCommand extends
|
|
1221
|
-
.classBuilder()
|
|
1222
|
-
.ep(commonParams)
|
|
1223
|
-
.m(function (Command, cs, config, o) {
|
|
1224
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1225
|
-
})
|
|
1226
|
-
.s("PlacesService", "ReverseGeocode", {})
|
|
1227
|
-
.n("GeoPlacesClient", "ReverseGeocodeCommand")
|
|
1228
|
-
.sc(ReverseGeocode$)
|
|
1229
|
-
.build() {
|
|
1198
|
+
class ReverseGeocodeCommand extends command(_ep0, _mw0, "ReverseGeocode", ReverseGeocode$) {
|
|
1230
1199
|
}
|
|
1231
1200
|
|
|
1232
|
-
class SearchNearbyCommand extends
|
|
1233
|
-
.classBuilder()
|
|
1234
|
-
.ep(commonParams)
|
|
1235
|
-
.m(function (Command, cs, config, o) {
|
|
1236
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1237
|
-
})
|
|
1238
|
-
.s("PlacesService", "SearchNearby", {})
|
|
1239
|
-
.n("GeoPlacesClient", "SearchNearbyCommand")
|
|
1240
|
-
.sc(SearchNearby$)
|
|
1241
|
-
.build() {
|
|
1201
|
+
class SearchNearbyCommand extends command(_ep0, _mw0, "SearchNearby", SearchNearby$) {
|
|
1242
1202
|
}
|
|
1243
1203
|
|
|
1244
|
-
class SearchTextCommand extends
|
|
1245
|
-
.classBuilder()
|
|
1246
|
-
.ep(commonParams)
|
|
1247
|
-
.m(function (Command, cs, config, o) {
|
|
1248
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1249
|
-
})
|
|
1250
|
-
.s("PlacesService", "SearchText", {})
|
|
1251
|
-
.n("GeoPlacesClient", "SearchTextCommand")
|
|
1252
|
-
.sc(SearchText$)
|
|
1253
|
-
.build() {
|
|
1204
|
+
class SearchTextCommand extends command(_ep0, _mw0, "SearchText", SearchText$) {
|
|
1254
1205
|
}
|
|
1255
1206
|
|
|
1256
|
-
class SuggestCommand extends
|
|
1257
|
-
.classBuilder()
|
|
1258
|
-
.ep(commonParams)
|
|
1259
|
-
.m(function (Command, cs, config, o) {
|
|
1260
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1261
|
-
})
|
|
1262
|
-
.s("PlacesService", "Suggest", {})
|
|
1263
|
-
.n("GeoPlacesClient", "SuggestCommand")
|
|
1264
|
-
.sc(Suggest$)
|
|
1265
|
-
.build() {
|
|
1207
|
+
class SuggestCommand extends command(_ep0, _mw0, "Suggest", Suggest$) {
|
|
1266
1208
|
}
|
|
1267
1209
|
|
|
1268
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 {
|
|
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
|
|
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 {
|
|
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
|
|
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 {
|
|
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
|
|
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 {
|
|
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
|
|
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 {
|
|
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
|
|
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 {
|
|
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
|
|
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 {
|
|
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
|
|
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
|
@@ -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>
|
package/dist-types/index.d.ts
CHANGED
|
@@ -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";
|
|
@@ -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";
|
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.
|
|
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,13 +19,13 @@
|
|
|
19
19
|
"module": "./dist-es/index.js",
|
|
20
20
|
"sideEffects": false,
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@aws-sdk/core": "^3.974.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
-
"@aws-sdk/types": "^3.973.
|
|
25
|
-
"@smithy/core": "^3.
|
|
26
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
27
|
-
"@smithy/node-http-handler": "^4.9.
|
|
28
|
-
"@smithy/types": "^4.15.
|
|
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",
|
|
29
29
|
"tslib": "^2.6.2"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|