@aws-sdk/client-geo-routes 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 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");
@@ -68,7 +69,7 @@ const commonParams = {
68
69
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
69
70
  };
70
71
 
71
- var version = "3.1076.0";
72
+ var version = "3.1077.0";
72
73
  var packageInfo = {
73
74
  version: version};
74
75
 
@@ -2958,64 +2959,23 @@ class GeoRoutesClient extends Client {
2958
2959
  }
2959
2960
  }
2960
2961
 
2961
- class CalculateIsolinesCommand extends Command
2962
- .classBuilder()
2963
- .ep(commonParams)
2964
- .m(function (Command, cs, config, o) {
2965
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2966
- })
2967
- .s("RoutesService", "CalculateIsolines", {})
2968
- .n("GeoRoutesClient", "CalculateIsolinesCommand")
2969
- .sc(CalculateIsolines$)
2970
- .build() {
2962
+ const command = makeBuilder(commonParams, "RoutesService", "GeoRoutesClient", getEndpointPlugin);
2963
+ const _ep0 = {};
2964
+ const _mw0 = (Command, cs, config, o) => [];
2965
+
2966
+ class CalculateIsolinesCommand extends command(_ep0, _mw0, "CalculateIsolines", CalculateIsolines$) {
2971
2967
  }
2972
2968
 
2973
- class CalculateRouteMatrixCommand extends Command
2974
- .classBuilder()
2975
- .ep(commonParams)
2976
- .m(function (Command, cs, config, o) {
2977
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2978
- })
2979
- .s("RoutesService", "CalculateRouteMatrix", {})
2980
- .n("GeoRoutesClient", "CalculateRouteMatrixCommand")
2981
- .sc(CalculateRouteMatrix$)
2982
- .build() {
2969
+ class CalculateRouteMatrixCommand extends command(_ep0, _mw0, "CalculateRouteMatrix", CalculateRouteMatrix$) {
2983
2970
  }
2984
2971
 
2985
- class CalculateRoutesCommand extends Command
2986
- .classBuilder()
2987
- .ep(commonParams)
2988
- .m(function (Command, cs, config, o) {
2989
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2990
- })
2991
- .s("RoutesService", "CalculateRoutes", {})
2992
- .n("GeoRoutesClient", "CalculateRoutesCommand")
2993
- .sc(CalculateRoutes$)
2994
- .build() {
2972
+ class CalculateRoutesCommand extends command(_ep0, _mw0, "CalculateRoutes", CalculateRoutes$) {
2995
2973
  }
2996
2974
 
2997
- class OptimizeWaypointsCommand extends Command
2998
- .classBuilder()
2999
- .ep(commonParams)
3000
- .m(function (Command, cs, config, o) {
3001
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
3002
- })
3003
- .s("RoutesService", "OptimizeWaypoints", {})
3004
- .n("GeoRoutesClient", "OptimizeWaypointsCommand")
3005
- .sc(OptimizeWaypoints$)
3006
- .build() {
2975
+ class OptimizeWaypointsCommand extends command(_ep0, _mw0, "OptimizeWaypoints", OptimizeWaypoints$) {
3007
2976
  }
3008
2977
 
3009
- class SnapToRoadsCommand extends Command
3010
- .classBuilder()
3011
- .ep(commonParams)
3012
- .m(function (Command, cs, config, o) {
3013
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
3014
- })
3015
- .s("RoutesService", "SnapToRoads", {})
3016
- .n("GeoRoutesClient", "SnapToRoadsCommand")
3017
- .sc(SnapToRoads$)
3018
- .build() {
2978
+ class SnapToRoadsCommand extends command(_ep0, _mw0, "SnapToRoads", SnapToRoads$) {
3019
2979
  }
3020
2980
 
3021
2981
  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, "RoutesService", "GeoRoutesClient", 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 { CalculateIsolines$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class CalculateIsolinesCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("RoutesService", "CalculateIsolines", {})
13
- .n("GeoRoutesClient", "CalculateIsolinesCommand")
14
- .sc(CalculateIsolines$)
15
- .build() {
3
+ export class CalculateIsolinesCommand extends command(_ep0, _mw0, "CalculateIsolines", CalculateIsolines$) {
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 { CalculateRouteMatrix$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class CalculateRouteMatrixCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("RoutesService", "CalculateRouteMatrix", {})
13
- .n("GeoRoutesClient", "CalculateRouteMatrixCommand")
14
- .sc(CalculateRouteMatrix$)
15
- .build() {
3
+ export class CalculateRouteMatrixCommand extends command(_ep0, _mw0, "CalculateRouteMatrix", CalculateRouteMatrix$) {
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 { CalculateRoutes$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class CalculateRoutesCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("RoutesService", "CalculateRoutes", {})
13
- .n("GeoRoutesClient", "CalculateRoutesCommand")
14
- .sc(CalculateRoutes$)
15
- .build() {
3
+ export class CalculateRoutesCommand extends command(_ep0, _mw0, "CalculateRoutes", CalculateRoutes$) {
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 { OptimizeWaypoints$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class OptimizeWaypointsCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("RoutesService", "OptimizeWaypoints", {})
13
- .n("GeoRoutesClient", "OptimizeWaypointsCommand")
14
- .sc(OptimizeWaypoints$)
15
- .build() {
3
+ export class OptimizeWaypointsCommand extends command(_ep0, _mw0, "OptimizeWaypoints", OptimizeWaypoints$) {
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 { SnapToRoads$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class SnapToRoadsCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("RoutesService", "SnapToRoads", {})
13
- .n("GeoRoutesClient", "SnapToRoadsCommand")
14
- .sc(SnapToRoads$)
15
- .build() {
3
+ export class SnapToRoadsCommand extends command(_ep0, _mw0, "SnapToRoads", SnapToRoads$) {
16
4
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./GeoRoutesClient";
2
2
  export * from "./GeoRoutes";
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";
@@ -0,0 +1,18 @@
1
+ import type { EndpointParameterInstructions } from "@smithy/types";
2
+ import type { GeoRoutesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./GeoRoutesClient";
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, GeoRoutesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
8
+ new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, GeoRoutesClientResolvedConfig, 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 { GeoRoutesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoRoutesClient";
4
2
  import type { CalculateIsolinesRequest, CalculateIsolinesResponse } 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 CalculateIsolinesCommandInput extends CalculateIsolinesRequest
22
19
  export interface CalculateIsolinesCommandOutput extends CalculateIsolinesResponse, __MetadataBearer {
23
20
  }
24
21
  declare const CalculateIsolinesCommand_base: {
25
- new (input: CalculateIsolinesCommandInput): import("@smithy/core/client").CommandImpl<CalculateIsolinesCommandInput, CalculateIsolinesCommandOutput, GeoRoutesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: CalculateIsolinesCommandInput): import("@smithy/core/client").CommandImpl<CalculateIsolinesCommandInput, CalculateIsolinesCommandOutput, GeoRoutesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: CalculateIsolinesCommandInput): import("@smithy/core/client").CommandImpl<CalculateIsolinesCommandInput, CalculateIsolinesCommandOutput, import("..").GeoRoutesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: CalculateIsolinesCommandInput): import("@smithy/core/client").CommandImpl<CalculateIsolinesCommandInput, CalculateIsolinesCommandOutput, import("..").GeoRoutesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Calculates areas that can be reached within specified time or distance thresholds from a given point. For example, you can use this operation to determine the area within a 30-minute drive of a store location, find neighborhoods within walking distance of a school, or identify delivery zones based on drive time.</p> <p>Isolines (also known as isochrones for time-based calculations) are useful for various applications including:</p> <ul> <li> <p>Service area visualization - Show customers the area you can serve within promised delivery times</p> </li> <li> <p>Site selection - Analyze potential business locations based on population within travel distance</p> </li> <li> <p>Site selection - Determine areas that can be reached within specified response times</p> </li> </ul> <note> <p>Route preferences such as avoiding toll roads or ferries are treated as preferences rather than absolute restrictions. If a viable route cannot be calculated while honoring all preferences, some may be ignored.</p> </note> <p>For more information, see <a href="https://docs.aws.amazon.com/location/latest/developerguide/calculate-isolines.html">Calculate isolines</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 { GeoRoutesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoRoutesClient";
4
2
  import type { CalculateRouteMatrixRequest, CalculateRouteMatrixResponse } 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 CalculateRouteMatrixCommandInput extends CalculateRouteMatrixRe
22
19
  export interface CalculateRouteMatrixCommandOutput extends CalculateRouteMatrixResponse, __MetadataBearer {
23
20
  }
24
21
  declare const CalculateRouteMatrixCommand_base: {
25
- new (input: CalculateRouteMatrixCommandInput): import("@smithy/core/client").CommandImpl<CalculateRouteMatrixCommandInput, CalculateRouteMatrixCommandOutput, GeoRoutesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: CalculateRouteMatrixCommandInput): import("@smithy/core/client").CommandImpl<CalculateRouteMatrixCommandInput, CalculateRouteMatrixCommandOutput, GeoRoutesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: CalculateRouteMatrixCommandInput): import("@smithy/core/client").CommandImpl<CalculateRouteMatrixCommandInput, CalculateRouteMatrixCommandOutput, import("..").GeoRoutesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: CalculateRouteMatrixCommandInput): import("@smithy/core/client").CommandImpl<CalculateRouteMatrixCommandInput, CalculateRouteMatrixCommandOutput, import("..").GeoRoutesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p> Use <code>CalculateRouteMatrix</code> to compute results for all pairs of Origins to Destinations. Each row corresponds to one entry in Origins. Each entry in the row corresponds to the route from that entry in Origins to an entry in Destinations positions.</p> <p>For more information, see <a href="https://docs.aws.amazon.com/location/latest/developerguide/calculate-route-matrix.html">Calculate route matrix</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 { GeoRoutesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoRoutesClient";
4
2
  import type { CalculateRoutesRequest, CalculateRoutesResponse } 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 CalculateRoutesCommandInput extends CalculateRoutesRequest {
22
19
  export interface CalculateRoutesCommandOutput extends CalculateRoutesResponse, __MetadataBearer {
23
20
  }
24
21
  declare const CalculateRoutesCommand_base: {
25
- new (input: CalculateRoutesCommandInput): import("@smithy/core/client").CommandImpl<CalculateRoutesCommandInput, CalculateRoutesCommandOutput, GeoRoutesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: CalculateRoutesCommandInput): import("@smithy/core/client").CommandImpl<CalculateRoutesCommandInput, CalculateRoutesCommandOutput, GeoRoutesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: CalculateRoutesCommandInput): import("@smithy/core/client").CommandImpl<CalculateRoutesCommandInput, CalculateRoutesCommandOutput, import("..").GeoRoutesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: CalculateRoutesCommandInput): import("@smithy/core/client").CommandImpl<CalculateRoutesCommandInput, CalculateRoutesCommandOutput, import("..").GeoRoutesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p> <code>CalculateRoutes</code> computes routes given the following required parameters: <code>Origin</code> and <code>Destination</code>.</p> <p>For more information, see <a href="https://docs.aws.amazon.com/location/latest/developerguide/calculate-routes.html">Calculate routes</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 { GeoRoutesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoRoutesClient";
4
2
  import type { OptimizeWaypointsRequest, OptimizeWaypointsResponse } 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 OptimizeWaypointsCommandInput extends OptimizeWaypointsRequest
22
19
  export interface OptimizeWaypointsCommandOutput extends OptimizeWaypointsResponse, __MetadataBearer {
23
20
  }
24
21
  declare const OptimizeWaypointsCommand_base: {
25
- new (input: OptimizeWaypointsCommandInput): import("@smithy/core/client").CommandImpl<OptimizeWaypointsCommandInput, OptimizeWaypointsCommandOutput, GeoRoutesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: OptimizeWaypointsCommandInput): import("@smithy/core/client").CommandImpl<OptimizeWaypointsCommandInput, OptimizeWaypointsCommandOutput, GeoRoutesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: OptimizeWaypointsCommandInput): import("@smithy/core/client").CommandImpl<OptimizeWaypointsCommandInput, OptimizeWaypointsCommandOutput, import("..").GeoRoutesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: OptimizeWaypointsCommandInput): import("@smithy/core/client").CommandImpl<OptimizeWaypointsCommandInput, OptimizeWaypointsCommandOutput, import("..").GeoRoutesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p> <code>OptimizeWaypoints</code> calculates the optimal order to travel between a set of waypoints to minimize either the travel time or the distance travelled during the journey, based on road network restrictions and the traffic pattern data.</p> <p>For more information, see <a href="https://docs.aws.amazon.com/location/latest/developerguide/actions-optimize-waypoints.html">Optimize waypoints</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 { GeoRoutesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoRoutesClient";
4
2
  import type { SnapToRoadsRequest, SnapToRoadsResponse } 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 SnapToRoadsCommandInput extends SnapToRoadsRequest {
22
19
  export interface SnapToRoadsCommandOutput extends SnapToRoadsResponse, __MetadataBearer {
23
20
  }
24
21
  declare const SnapToRoadsCommand_base: {
25
- new (input: SnapToRoadsCommandInput): import("@smithy/core/client").CommandImpl<SnapToRoadsCommandInput, SnapToRoadsCommandOutput, GeoRoutesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: SnapToRoadsCommandInput): import("@smithy/core/client").CommandImpl<SnapToRoadsCommandInput, SnapToRoadsCommandOutput, GeoRoutesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: SnapToRoadsCommandInput): import("@smithy/core/client").CommandImpl<SnapToRoadsCommandInput, SnapToRoadsCommandOutput, import("..").GeoRoutesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: SnapToRoadsCommandInput): import("@smithy/core/client").CommandImpl<SnapToRoadsCommandInput, SnapToRoadsCommandOutput, import("..").GeoRoutesClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p> <code>SnapToRoads</code> matches GPS trace to roads most likely traveled on.</p> <p>For more information, see <a href="https://docs.aws.amazon.com/location/latest/developerguide/snap-to-roads.html">Snap to Roads</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 { GeoRoutesExtensionConfiguration } 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
+ GeoRoutesClientResolvedConfig,
4
+ ServiceInputTypes,
5
+ ServiceOutputTypes,
6
+ } from "./GeoRoutesClient";
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
+ GeoRoutesClientResolvedConfig,
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
+ GeoRoutesClientResolvedConfig,
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,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- GeoRoutesClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../GeoRoutesClient";
8
2
  import {
9
3
  CalculateIsolinesRequest,
10
4
  CalculateIsolinesResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface CalculateIsolinesCommandInput
15
8
  extends CalculateIsolinesRequest {}
16
9
  export interface CalculateIsolinesCommandOutput
@@ -22,22 +15,20 @@ declare const CalculateIsolinesCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  CalculateIsolinesCommandInput,
24
17
  CalculateIsolinesCommandOutput,
25
- GeoRoutesClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").GeoRoutesClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: CalculateIsolinesCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  CalculateIsolinesCommandInput,
33
26
  CalculateIsolinesCommandOutput,
34
- GeoRoutesClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").GeoRoutesClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class CalculateIsolinesCommand extends CalculateIsolinesCommand_base {
43
34
  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
- GeoRoutesClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../GeoRoutesClient";
8
2
  import {
9
3
  CalculateRouteMatrixRequest,
10
4
  CalculateRouteMatrixResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface CalculateRouteMatrixCommandInput
15
8
  extends CalculateRouteMatrixRequest {}
16
9
  export interface CalculateRouteMatrixCommandOutput
@@ -22,22 +15,20 @@ declare const CalculateRouteMatrixCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  CalculateRouteMatrixCommandInput,
24
17
  CalculateRouteMatrixCommandOutput,
25
- GeoRoutesClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").GeoRoutesClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: CalculateRouteMatrixCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  CalculateRouteMatrixCommandInput,
33
26
  CalculateRouteMatrixCommandOutput,
34
- GeoRoutesClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").GeoRoutesClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class CalculateRouteMatrixCommand extends CalculateRouteMatrixCommand_base {
43
34
  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
- GeoRoutesClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../GeoRoutesClient";
8
2
  import {
9
3
  CalculateRoutesRequest,
10
4
  CalculateRoutesResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface CalculateRoutesCommandInput extends CalculateRoutesRequest {}
15
8
  export interface CalculateRoutesCommandOutput
16
9
  extends CalculateRoutesResponse,
@@ -21,22 +14,20 @@ declare const CalculateRoutesCommand_base: {
21
14
  ): import("@smithy/core/client").CommandImpl<
22
15
  CalculateRoutesCommandInput,
23
16
  CalculateRoutesCommandOutput,
24
- GeoRoutesClientResolvedConfig,
25
- ServiceInputTypes,
26
- ServiceOutputTypes
17
+ import("..").GeoRoutesClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
27
20
  >;
28
21
  new (
29
22
  input: CalculateRoutesCommandInput
30
23
  ): import("@smithy/core/client").CommandImpl<
31
24
  CalculateRoutesCommandInput,
32
25
  CalculateRoutesCommandOutput,
33
- GeoRoutesClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").GeoRoutesClientResolvedConfig,
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 CalculateRoutesCommand extends CalculateRoutesCommand_base {
42
33
  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
- GeoRoutesClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../GeoRoutesClient";
8
2
  import {
9
3
  OptimizeWaypointsRequest,
10
4
  OptimizeWaypointsResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface OptimizeWaypointsCommandInput
15
8
  extends OptimizeWaypointsRequest {}
16
9
  export interface OptimizeWaypointsCommandOutput
@@ -22,22 +15,20 @@ declare const OptimizeWaypointsCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  OptimizeWaypointsCommandInput,
24
17
  OptimizeWaypointsCommandOutput,
25
- GeoRoutesClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").GeoRoutesClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: OptimizeWaypointsCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  OptimizeWaypointsCommandInput,
33
26
  OptimizeWaypointsCommandOutput,
34
- GeoRoutesClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").GeoRoutesClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class OptimizeWaypointsCommand extends OptimizeWaypointsCommand_base {
43
34
  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
- GeoRoutesClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../GeoRoutesClient";
8
2
  import { SnapToRoadsRequest, SnapToRoadsResponse } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface SnapToRoadsCommandInput extends SnapToRoadsRequest {}
12
5
  export interface SnapToRoadsCommandOutput
13
6
  extends SnapToRoadsResponse,
@@ -18,22 +11,20 @@ declare const SnapToRoadsCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  SnapToRoadsCommandInput,
20
13
  SnapToRoadsCommandOutput,
21
- GeoRoutesClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").GeoRoutesClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: SnapToRoadsCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  SnapToRoadsCommandInput,
29
22
  SnapToRoadsCommandOutput,
30
- GeoRoutesClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").GeoRoutesClientResolvedConfig,
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 SnapToRoadsCommand extends SnapToRoadsCommand_base {
39
30
  protected static __types: {
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
4
  export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { GeoRoutesExtensionConfiguration } 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-routes",
3
3
  "description": "AWS SDK for JavaScript Geo Routes Client for Node.js, Browser and React Native",
4
- "version": "3.1077.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,13 +19,13 @@
19
19
  "module": "./dist-es/index.js",
20
20
  "sideEffects": false,
21
21
  "dependencies": {
22
- "@aws-sdk/core": "^3.974.25",
23
- "@aws-sdk/credential-provider-node": "^3.972.60",
24
- "@aws-sdk/types": "^3.973.14",
25
- "@smithy/core": "^3.28.0",
26
- "@smithy/fetch-http-handler": "^5.6.1",
27
- "@smithy/node-http-handler": "^4.9.1",
28
- "@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",
29
29
  "tslib": "^2.6.2"
30
30
  },
31
31
  "devDependencies": {