@aws-sdk/client-geo-routes 3.928.0 → 3.929.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 (29) hide show
  1. package/dist-cjs/index.js +3359 -3145
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/GeoRoutesClient.js +2 -0
  4. package/dist-es/commands/CalculateIsolinesCommand.js +3 -10
  5. package/dist-es/commands/CalculateRouteMatrixCommand.js +3 -10
  6. package/dist-es/commands/CalculateRoutesCommand.js +3 -10
  7. package/dist-es/commands/OptimizeWaypointsCommand.js +3 -10
  8. package/dist-es/commands/SnapToRoadsCommand.js +3 -10
  9. package/dist-es/models/models_0.js +0 -1319
  10. package/dist-es/runtimeConfig.shared.js +2 -0
  11. package/dist-es/schemas/schemas_0.js +3259 -0
  12. package/dist-types/GeoRoutesClient.d.ts +10 -1
  13. package/dist-types/models/models_0.d.ts +0 -732
  14. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  15. package/dist-types/runtimeConfig.d.ts +1 -0
  16. package/dist-types/runtimeConfig.native.d.ts +1 -0
  17. package/dist-types/runtimeConfig.shared.d.ts +2 -5
  18. package/dist-types/schemas/schemas_0.d.ts +345 -0
  19. package/dist-types/ts3.4/GeoRoutesClient.d.ts +4 -0
  20. package/dist-types/ts3.4/models/models_0.d.ts +0 -529
  21. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  22. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  23. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  24. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  25. package/dist-types/ts3.4/schemas/schemas_0.d.ts +351 -0
  26. package/package.json +2 -2
  27. package/dist-es/protocols/Aws_restJson1.js +0 -1518
  28. package/dist-types/protocols/Aws_restJson1.d.ts +0 -47
  29. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -65
@@ -2,6 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getRuntimeConfig = void 0;
4
4
  const core_1 = require("@aws-sdk/core");
5
+ const protocols_1 = require("@aws-sdk/core/protocols");
5
6
  const smithy_client_1 = require("@smithy/smithy-client");
6
7
  const url_parser_1 = require("@smithy/url-parser");
7
8
  const util_base64_1 = require("@smithy/util-base64");
@@ -25,6 +26,7 @@ const getRuntimeConfig = (config) => {
25
26
  },
26
27
  ],
27
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
+ protocol: config?.protocol ?? new protocols_1.AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.georoutes" }),
28
30
  serviceId: config?.serviceId ?? "Geo Routes",
29
31
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
30
32
  utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
@@ -4,6 +4,7 @@ import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detec
4
4
  import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
5
5
  import { resolveRegionConfig } from "@smithy/config-resolver";
6
6
  import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, getHttpSigningPlugin, } from "@smithy/core";
7
+ import { getSchemaSerdePlugin } from "@smithy/core/schema";
7
8
  import { getContentLengthPlugin } from "@smithy/middleware-content-length";
8
9
  import { resolveEndpointConfig } from "@smithy/middleware-endpoint";
9
10
  import { getRetryPlugin, resolveRetryConfig } from "@smithy/middleware-retry";
@@ -28,6 +29,7 @@ export class GeoRoutesClient extends __Client {
28
29
  const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
29
30
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
30
31
  this.config = _config_8;
32
+ this.middlewareStack.use(getSchemaSerdePlugin(this.config));
31
33
  this.middlewareStack.use(getUserAgentPlugin(this.config));
32
34
  this.middlewareStack.use(getRetryPlugin(this.config));
33
35
  this.middlewareStack.use(getContentLengthPlugin(this.config));
@@ -1,23 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { CalculateIsolinesRequestFilterSensitiveLog, CalculateIsolinesResponseFilterSensitiveLog, } from "../models/models_0";
6
- import { de_CalculateIsolinesCommand, se_CalculateIsolinesCommand } from "../protocols/Aws_restJson1";
4
+ import { CalculateIsolines } from "../schemas/schemas_0";
7
5
  export { $Command };
8
6
  export class CalculateIsolinesCommand extends $Command
9
7
  .classBuilder()
10
8
  .ep(commonParams)
11
9
  .m(function (Command, cs, config, o) {
12
- return [
13
- getSerdePlugin(config, this.serialize, this.deserialize),
14
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
15
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
16
11
  })
17
12
  .s("RoutesService", "CalculateIsolines", {})
18
13
  .n("GeoRoutesClient", "CalculateIsolinesCommand")
19
- .f(CalculateIsolinesRequestFilterSensitiveLog, CalculateIsolinesResponseFilterSensitiveLog)
20
- .ser(se_CalculateIsolinesCommand)
21
- .de(de_CalculateIsolinesCommand)
14
+ .sc(CalculateIsolines)
22
15
  .build() {
23
16
  }
@@ -1,23 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { CalculateRouteMatrixRequestFilterSensitiveLog, CalculateRouteMatrixResponseFilterSensitiveLog, } from "../models/models_0";
6
- import { de_CalculateRouteMatrixCommand, se_CalculateRouteMatrixCommand } from "../protocols/Aws_restJson1";
4
+ import { CalculateRouteMatrix } from "../schemas/schemas_0";
7
5
  export { $Command };
8
6
  export class CalculateRouteMatrixCommand extends $Command
9
7
  .classBuilder()
10
8
  .ep(commonParams)
11
9
  .m(function (Command, cs, config, o) {
12
- return [
13
- getSerdePlugin(config, this.serialize, this.deserialize),
14
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
15
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
16
11
  })
17
12
  .s("RoutesService", "CalculateRouteMatrix", {})
18
13
  .n("GeoRoutesClient", "CalculateRouteMatrixCommand")
19
- .f(CalculateRouteMatrixRequestFilterSensitiveLog, CalculateRouteMatrixResponseFilterSensitiveLog)
20
- .ser(se_CalculateRouteMatrixCommand)
21
- .de(de_CalculateRouteMatrixCommand)
14
+ .sc(CalculateRouteMatrix)
22
15
  .build() {
23
16
  }
@@ -1,23 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { CalculateRoutesRequestFilterSensitiveLog, CalculateRoutesResponseFilterSensitiveLog, } from "../models/models_0";
6
- import { de_CalculateRoutesCommand, se_CalculateRoutesCommand } from "../protocols/Aws_restJson1";
4
+ import { CalculateRoutes } from "../schemas/schemas_0";
7
5
  export { $Command };
8
6
  export class CalculateRoutesCommand extends $Command
9
7
  .classBuilder()
10
8
  .ep(commonParams)
11
9
  .m(function (Command, cs, config, o) {
12
- return [
13
- getSerdePlugin(config, this.serialize, this.deserialize),
14
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
15
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
16
11
  })
17
12
  .s("RoutesService", "CalculateRoutes", {})
18
13
  .n("GeoRoutesClient", "CalculateRoutesCommand")
19
- .f(CalculateRoutesRequestFilterSensitiveLog, CalculateRoutesResponseFilterSensitiveLog)
20
- .ser(se_CalculateRoutesCommand)
21
- .de(de_CalculateRoutesCommand)
14
+ .sc(CalculateRoutes)
22
15
  .build() {
23
16
  }
@@ -1,23 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { OptimizeWaypointsRequestFilterSensitiveLog, OptimizeWaypointsResponseFilterSensitiveLog, } from "../models/models_0";
6
- import { de_OptimizeWaypointsCommand, se_OptimizeWaypointsCommand } from "../protocols/Aws_restJson1";
4
+ import { OptimizeWaypoints } from "../schemas/schemas_0";
7
5
  export { $Command };
8
6
  export class OptimizeWaypointsCommand extends $Command
9
7
  .classBuilder()
10
8
  .ep(commonParams)
11
9
  .m(function (Command, cs, config, o) {
12
- return [
13
- getSerdePlugin(config, this.serialize, this.deserialize),
14
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
15
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
16
11
  })
17
12
  .s("RoutesService", "OptimizeWaypoints", {})
18
13
  .n("GeoRoutesClient", "OptimizeWaypointsCommand")
19
- .f(OptimizeWaypointsRequestFilterSensitiveLog, OptimizeWaypointsResponseFilterSensitiveLog)
20
- .ser(se_OptimizeWaypointsCommand)
21
- .de(de_OptimizeWaypointsCommand)
14
+ .sc(OptimizeWaypoints)
22
15
  .build() {
23
16
  }
@@ -1,23 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { SnapToRoadsRequestFilterSensitiveLog, SnapToRoadsResponseFilterSensitiveLog, } from "../models/models_0";
6
- import { de_SnapToRoadsCommand, se_SnapToRoadsCommand } from "../protocols/Aws_restJson1";
4
+ import { SnapToRoads } from "../schemas/schemas_0";
7
5
  export { $Command };
8
6
  export class SnapToRoadsCommand extends $Command
9
7
  .classBuilder()
10
8
  .ep(commonParams)
11
9
  .m(function (Command, cs, config, o) {
12
- return [
13
- getSerdePlugin(config, this.serialize, this.deserialize),
14
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
15
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
16
11
  })
17
12
  .s("RoutesService", "SnapToRoads", {})
18
13
  .n("GeoRoutesClient", "SnapToRoadsCommand")
19
- .f(SnapToRoadsRequestFilterSensitiveLog, SnapToRoadsResponseFilterSensitiveLog)
20
- .ser(se_SnapToRoadsCommand)
21
- .de(de_SnapToRoadsCommand)
14
+ .sc(SnapToRoads)
22
15
  .build() {
23
16
  }