@aws-sdk/client-geo-maps 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
 
@@ -608,64 +609,23 @@ class GeoMapsClient extends Client {
608
609
  }
609
610
  }
610
611
 
611
- class GetGlyphsCommand extends Command
612
- .classBuilder()
613
- .ep(commonParams)
614
- .m(function (Command, cs, config, o) {
615
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
616
- })
617
- .s("MapsService", "GetGlyphs", {})
618
- .n("GeoMapsClient", "GetGlyphsCommand")
619
- .sc(GetGlyphs$)
620
- .build() {
612
+ const command = makeBuilder(commonParams, "MapsService", "GeoMapsClient", getEndpointPlugin);
613
+ const _ep0 = {};
614
+ const _mw0 = (Command, cs, config, o) => [];
615
+
616
+ class GetGlyphsCommand extends command(_ep0, _mw0, "GetGlyphs", GetGlyphs$) {
621
617
  }
622
618
 
623
- class GetSpritesCommand extends Command
624
- .classBuilder()
625
- .ep(commonParams)
626
- .m(function (Command, cs, config, o) {
627
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
628
- })
629
- .s("MapsService", "GetSprites", {})
630
- .n("GeoMapsClient", "GetSpritesCommand")
631
- .sc(GetSprites$)
632
- .build() {
619
+ class GetSpritesCommand extends command(_ep0, _mw0, "GetSprites", GetSprites$) {
633
620
  }
634
621
 
635
- class GetStaticMapCommand extends Command
636
- .classBuilder()
637
- .ep(commonParams)
638
- .m(function (Command, cs, config, o) {
639
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
640
- })
641
- .s("MapsService", "GetStaticMap", {})
642
- .n("GeoMapsClient", "GetStaticMapCommand")
643
- .sc(GetStaticMap$)
644
- .build() {
622
+ class GetStaticMapCommand extends command(_ep0, _mw0, "GetStaticMap", GetStaticMap$) {
645
623
  }
646
624
 
647
- class GetStyleDescriptorCommand extends Command
648
- .classBuilder()
649
- .ep(commonParams)
650
- .m(function (Command, cs, config, o) {
651
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
652
- })
653
- .s("MapsService", "GetStyleDescriptor", {})
654
- .n("GeoMapsClient", "GetStyleDescriptorCommand")
655
- .sc(GetStyleDescriptor$)
656
- .build() {
625
+ class GetStyleDescriptorCommand extends command(_ep0, _mw0, "GetStyleDescriptor", GetStyleDescriptor$) {
657
626
  }
658
627
 
659
- class GetTileCommand extends Command
660
- .classBuilder()
661
- .ep(commonParams)
662
- .m(function (Command, cs, config, o) {
663
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
664
- })
665
- .s("MapsService", "GetTile", {})
666
- .n("GeoMapsClient", "GetTileCommand")
667
- .sc(GetTile$)
668
- .build() {
628
+ class GetTileCommand extends command(_ep0, _mw0, "GetTile", GetTile$) {
669
629
  }
670
630
 
671
631
  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, "MapsService", "GeoMapsClient", 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 { GetGlyphs$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class GetGlyphsCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("MapsService", "GetGlyphs", {})
13
- .n("GeoMapsClient", "GetGlyphsCommand")
14
- .sc(GetGlyphs$)
15
- .build() {
3
+ export class GetGlyphsCommand extends command(_ep0, _mw0, "GetGlyphs", GetGlyphs$) {
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 { GetSprites$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class GetSpritesCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("MapsService", "GetSprites", {})
13
- .n("GeoMapsClient", "GetSpritesCommand")
14
- .sc(GetSprites$)
15
- .build() {
3
+ export class GetSpritesCommand extends command(_ep0, _mw0, "GetSprites", GetSprites$) {
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 { GetStaticMap$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class GetStaticMapCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("MapsService", "GetStaticMap", {})
13
- .n("GeoMapsClient", "GetStaticMapCommand")
14
- .sc(GetStaticMap$)
15
- .build() {
3
+ export class GetStaticMapCommand extends command(_ep0, _mw0, "GetStaticMap", GetStaticMap$) {
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 { GetStyleDescriptor$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class GetStyleDescriptorCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("MapsService", "GetStyleDescriptor", {})
13
- .n("GeoMapsClient", "GetStyleDescriptorCommand")
14
- .sc(GetStyleDescriptor$)
15
- .build() {
3
+ export class GetStyleDescriptorCommand extends command(_ep0, _mw0, "GetStyleDescriptor", GetStyleDescriptor$) {
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 { GetTile$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class GetTileCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("MapsService", "GetTile", {})
13
- .n("GeoMapsClient", "GetTileCommand")
14
- .sc(GetTile$)
15
- .build() {
3
+ export class GetTileCommand extends command(_ep0, _mw0, "GetTile", GetTile$) {
16
4
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./GeoMapsClient";
2
2
  export * from "./GeoMaps";
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 { GeoMapsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./GeoMapsClient";
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, GeoMapsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
8
+ new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, GeoMapsClientResolvedConfig, 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,13 +1,10 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { Uint8ArrayBlobAdapter } from "@smithy/core/serde";
3
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
- import type { GeoMapsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoMapsClient";
5
3
  import type { GetGlyphsRequest, GetGlyphsResponse } from "../models/models_0";
6
4
  /**
7
5
  * @public
8
6
  */
9
7
  export type { __MetadataBearer };
10
- export { $Command };
11
8
  /**
12
9
  * @public
13
10
  *
@@ -29,11 +26,9 @@ export type GetGlyphsCommandOutputType = Omit<GetGlyphsResponse, "Blob"> & {
29
26
  export interface GetGlyphsCommandOutput extends GetGlyphsCommandOutputType, __MetadataBearer {
30
27
  }
31
28
  declare const GetGlyphsCommand_base: {
32
- new (input: GetGlyphsCommandInput): import("@smithy/core/client").CommandImpl<GetGlyphsCommandInput, GetGlyphsCommandOutput, GeoMapsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
33
- new (input: GetGlyphsCommandInput): import("@smithy/core/client").CommandImpl<GetGlyphsCommandInput, GetGlyphsCommandOutput, GeoMapsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
29
+ new (input: GetGlyphsCommandInput): import("@smithy/core/client").CommandImpl<GetGlyphsCommandInput, GetGlyphsCommandOutput, import("..").GeoMapsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
30
+ new (input: GetGlyphsCommandInput): import("@smithy/core/client").CommandImpl<GetGlyphsCommandInput, GetGlyphsCommandOutput, import("..").GeoMapsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
32
  };
38
33
  /**
39
34
  * <p> <code>GetGlyphs</code> returns the map's glyphs.</p> <p>For more information, see <a href="https://docs.aws.amazon.com/location/latest/developerguide/styling-labels-with-glyphs.html">Style labels with glyphs</a> in the <i>Amazon Location Service Developer Guide</i>.</p>
@@ -1,13 +1,10 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { Uint8ArrayBlobAdapter } from "@smithy/core/serde";
3
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
- import type { GeoMapsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoMapsClient";
5
3
  import type { GetSpritesRequest, GetSpritesResponse } from "../models/models_0";
6
4
  /**
7
5
  * @public
8
6
  */
9
7
  export type { __MetadataBearer };
10
- export { $Command };
11
8
  /**
12
9
  * @public
13
10
  *
@@ -29,11 +26,9 @@ export type GetSpritesCommandOutputType = Omit<GetSpritesResponse, "Blob"> & {
29
26
  export interface GetSpritesCommandOutput extends GetSpritesCommandOutputType, __MetadataBearer {
30
27
  }
31
28
  declare const GetSpritesCommand_base: {
32
- new (input: GetSpritesCommandInput): import("@smithy/core/client").CommandImpl<GetSpritesCommandInput, GetSpritesCommandOutput, GeoMapsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
33
- new (input: GetSpritesCommandInput): import("@smithy/core/client").CommandImpl<GetSpritesCommandInput, GetSpritesCommandOutput, GeoMapsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
29
+ new (input: GetSpritesCommandInput): import("@smithy/core/client").CommandImpl<GetSpritesCommandInput, GetSpritesCommandOutput, import("..").GeoMapsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
30
+ new (input: GetSpritesCommandInput): import("@smithy/core/client").CommandImpl<GetSpritesCommandInput, GetSpritesCommandOutput, import("..").GeoMapsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
32
  };
38
33
  /**
39
34
  * <p> <code>GetSprites</code> returns the map's sprites.</p> <p>For more information, see <a href="https://docs.aws.amazon.com/location/latest/developerguide/styling-iconography-with-sprites.html">Style iconography with sprites</a> in the <i>Amazon Location Service Developer Guide</i>.</p>
@@ -1,13 +1,10 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { Uint8ArrayBlobAdapter } from "@smithy/core/serde";
3
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
- import type { GeoMapsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoMapsClient";
5
3
  import type { GetStaticMapRequest, GetStaticMapResponse } from "../models/models_0";
6
4
  /**
7
5
  * @public
8
6
  */
9
7
  export type { __MetadataBearer };
10
- export { $Command };
11
8
  /**
12
9
  * @public
13
10
  *
@@ -29,11 +26,9 @@ export type GetStaticMapCommandOutputType = Omit<GetStaticMapResponse, "Blob"> &
29
26
  export interface GetStaticMapCommandOutput extends GetStaticMapCommandOutputType, __MetadataBearer {
30
27
  }
31
28
  declare const GetStaticMapCommand_base: {
32
- new (input: GetStaticMapCommandInput): import("@smithy/core/client").CommandImpl<GetStaticMapCommandInput, GetStaticMapCommandOutput, GeoMapsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
33
- new (input: GetStaticMapCommandInput): import("@smithy/core/client").CommandImpl<GetStaticMapCommandInput, GetStaticMapCommandOutput, GeoMapsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
29
+ new (input: GetStaticMapCommandInput): import("@smithy/core/client").CommandImpl<GetStaticMapCommandInput, GetStaticMapCommandOutput, import("..").GeoMapsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
30
+ new (input: GetStaticMapCommandInput): import("@smithy/core/client").CommandImpl<GetStaticMapCommandInput, GetStaticMapCommandOutput, import("..").GeoMapsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
32
  };
38
33
  /**
39
34
  * <note> <p>This operation is not supported in <code>ap-southeast-1</code> and <code>ap-southeast-5</code> regions for <a href="https://docs.aws.amazon.com/location/latest/developerguide/GrabMaps.html">GrabMaps</a> customers. </p> </note> <p> <code>GetStaticMap</code> provides high-quality static map images with customizable options. You can modify the map's appearance and overlay additional information. It's an ideal solution for applications requiring tailored static map snapshots.</p> <p>For more information, see the following topics in the <i>Amazon Location Service Developer Guide</i>:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/location/latest/developerguide/static-maps.html">Static maps</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/location/latest/developerguide/customizing-static-maps.html">Customize static maps</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/location/latest/developerguide/overlaying-static-map.html">Overlay on the static map</a> </p> </li> </ul>
@@ -1,13 +1,10 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { Uint8ArrayBlobAdapter } from "@smithy/core/serde";
3
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
- import type { GeoMapsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoMapsClient";
5
3
  import type { GetStyleDescriptorRequest, GetStyleDescriptorResponse } from "../models/models_0";
6
4
  /**
7
5
  * @public
8
6
  */
9
7
  export type { __MetadataBearer };
10
- export { $Command };
11
8
  /**
12
9
  * @public
13
10
  *
@@ -29,11 +26,9 @@ export type GetStyleDescriptorCommandOutputType = Omit<GetStyleDescriptorRespons
29
26
  export interface GetStyleDescriptorCommandOutput extends GetStyleDescriptorCommandOutputType, __MetadataBearer {
30
27
  }
31
28
  declare const GetStyleDescriptorCommand_base: {
32
- new (input: GetStyleDescriptorCommandInput): import("@smithy/core/client").CommandImpl<GetStyleDescriptorCommandInput, GetStyleDescriptorCommandOutput, GeoMapsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
33
- new (input: GetStyleDescriptorCommandInput): import("@smithy/core/client").CommandImpl<GetStyleDescriptorCommandInput, GetStyleDescriptorCommandOutput, GeoMapsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
29
+ new (input: GetStyleDescriptorCommandInput): import("@smithy/core/client").CommandImpl<GetStyleDescriptorCommandInput, GetStyleDescriptorCommandOutput, import("..").GeoMapsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
30
+ new (input: GetStyleDescriptorCommandInput): import("@smithy/core/client").CommandImpl<GetStyleDescriptorCommandInput, GetStyleDescriptorCommandOutput, import("..").GeoMapsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
32
  };
38
33
  /**
39
34
  * <p> <code>GetStyleDescriptor</code> returns information about the style.</p> <p>For more information, see <a href="https://docs.aws.amazon.com/location/latest/developerguide/styling-dynamic-maps.html">Style dynamic maps</a> in the <i>Amazon Location Service Developer Guide</i>.</p>
@@ -1,13 +1,10 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { Uint8ArrayBlobAdapter } from "@smithy/core/serde";
3
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
- import type { GeoMapsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoMapsClient";
5
3
  import type { GetTileRequest, GetTileResponse } from "../models/models_0";
6
4
  /**
7
5
  * @public
8
6
  */
9
7
  export type { __MetadataBearer };
10
- export { $Command };
11
8
  /**
12
9
  * @public
13
10
  *
@@ -29,11 +26,9 @@ export type GetTileCommandOutputType = Omit<GetTileResponse, "Blob"> & {
29
26
  export interface GetTileCommandOutput extends GetTileCommandOutputType, __MetadataBearer {
30
27
  }
31
28
  declare const GetTileCommand_base: {
32
- new (input: GetTileCommandInput): import("@smithy/core/client").CommandImpl<GetTileCommandInput, GetTileCommandOutput, GeoMapsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
33
- new (input: GetTileCommandInput): import("@smithy/core/client").CommandImpl<GetTileCommandInput, GetTileCommandOutput, GeoMapsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
29
+ new (input: GetTileCommandInput): import("@smithy/core/client").CommandImpl<GetTileCommandInput, GetTileCommandOutput, import("..").GeoMapsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
30
+ new (input: GetTileCommandInput): import("@smithy/core/client").CommandImpl<GetTileCommandInput, GetTileCommandOutput, import("..").GeoMapsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
32
  };
38
33
  /**
39
34
  * <p> <code>GetTile</code> returns a tile. Map tiles are used by clients to render a map. They're addressed using a grid arrangement with an X coordinate, Y coordinate, and Z (zoom) level.</p> <p>For more information, see <a href="https://docs.aws.amazon.com/location/latest/developerguide/tiles.html">Tiles</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 { GeoMapsExtensionConfiguration } 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
+ GeoMapsClientResolvedConfig,
4
+ ServiceInputTypes,
5
+ ServiceOutputTypes,
6
+ } from "./GeoMapsClient";
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
+ GeoMapsClientResolvedConfig,
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
+ GeoMapsClientResolvedConfig,
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,14 +1,7 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { Uint8ArrayBlobAdapter } from "@smithy/core/serde";
3
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
- import {
5
- GeoMapsClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../GeoMapsClient";
9
3
  import { GetGlyphsRequest, GetGlyphsResponse } from "../models/models_0";
10
4
  export { __MetadataBearer };
11
- export { $Command };
12
5
  export interface GetGlyphsCommandInput extends GetGlyphsRequest {}
13
6
  export type GetGlyphsCommandOutputType = Pick<
14
7
  GetGlyphsResponse,
@@ -23,20 +16,18 @@ declare const GetGlyphsCommand_base: {
23
16
  new (input: GetGlyphsCommandInput): import("@smithy/core/client").CommandImpl<
24
17
  GetGlyphsCommandInput,
25
18
  GetGlyphsCommandOutput,
26
- GeoMapsClientResolvedConfig,
27
- ServiceInputTypes,
28
- ServiceOutputTypes
19
+ import("..").GeoMapsClientResolvedConfig,
20
+ import("..").ServiceInputTypes,
21
+ import("..").ServiceOutputTypes
29
22
  >;
30
23
  new (input: GetGlyphsCommandInput): import("@smithy/core/client").CommandImpl<
31
24
  GetGlyphsCommandInput,
32
25
  GetGlyphsCommandOutput,
33
- GeoMapsClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").GeoMapsClientResolvedConfig,
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 GetGlyphsCommand extends GetGlyphsCommand_base {
42
33
  protected static __types: {
@@ -1,14 +1,7 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { Uint8ArrayBlobAdapter } from "@smithy/core/serde";
3
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
- import {
5
- GeoMapsClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../GeoMapsClient";
9
3
  import { GetSpritesRequest, GetSpritesResponse } from "../models/models_0";
10
4
  export { __MetadataBearer };
11
- export { $Command };
12
5
  export interface GetSpritesCommandInput extends GetSpritesRequest {}
13
6
  export type GetSpritesCommandOutputType = Pick<
14
7
  GetSpritesResponse,
@@ -25,22 +18,20 @@ declare const GetSpritesCommand_base: {
25
18
  ): import("@smithy/core/client").CommandImpl<
26
19
  GetSpritesCommandInput,
27
20
  GetSpritesCommandOutput,
28
- GeoMapsClientResolvedConfig,
29
- ServiceInputTypes,
30
- ServiceOutputTypes
21
+ import("..").GeoMapsClientResolvedConfig,
22
+ import("..").ServiceInputTypes,
23
+ import("..").ServiceOutputTypes
31
24
  >;
32
25
  new (
33
26
  input: GetSpritesCommandInput
34
27
  ): import("@smithy/core/client").CommandImpl<
35
28
  GetSpritesCommandInput,
36
29
  GetSpritesCommandOutput,
37
- GeoMapsClientResolvedConfig,
38
- ServiceInputTypes,
39
- ServiceOutputTypes
30
+ import("..").GeoMapsClientResolvedConfig,
31
+ import("..").ServiceInputTypes,
32
+ import("..").ServiceOutputTypes
40
33
  >;
41
- getEndpointParameterInstructions(): {
42
- [x: string]: unknown;
43
- };
34
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
44
35
  };
45
36
  export declare class GetSpritesCommand extends GetSpritesCommand_base {
46
37
  protected static __types: {
@@ -1,14 +1,7 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { Uint8ArrayBlobAdapter } from "@smithy/core/serde";
3
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
- import {
5
- GeoMapsClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../GeoMapsClient";
9
3
  import { GetStaticMapRequest, GetStaticMapResponse } from "../models/models_0";
10
4
  export { __MetadataBearer };
11
- export { $Command };
12
5
  export interface GetStaticMapCommandInput extends GetStaticMapRequest {}
13
6
  export type GetStaticMapCommandOutputType = Pick<
14
7
  GetStaticMapResponse,
@@ -25,22 +18,20 @@ declare const GetStaticMapCommand_base: {
25
18
  ): import("@smithy/core/client").CommandImpl<
26
19
  GetStaticMapCommandInput,
27
20
  GetStaticMapCommandOutput,
28
- GeoMapsClientResolvedConfig,
29
- ServiceInputTypes,
30
- ServiceOutputTypes
21
+ import("..").GeoMapsClientResolvedConfig,
22
+ import("..").ServiceInputTypes,
23
+ import("..").ServiceOutputTypes
31
24
  >;
32
25
  new (
33
26
  input: GetStaticMapCommandInput
34
27
  ): import("@smithy/core/client").CommandImpl<
35
28
  GetStaticMapCommandInput,
36
29
  GetStaticMapCommandOutput,
37
- GeoMapsClientResolvedConfig,
38
- ServiceInputTypes,
39
- ServiceOutputTypes
30
+ import("..").GeoMapsClientResolvedConfig,
31
+ import("..").ServiceInputTypes,
32
+ import("..").ServiceOutputTypes
40
33
  >;
41
- getEndpointParameterInstructions(): {
42
- [x: string]: unknown;
43
- };
34
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
44
35
  };
45
36
  export declare class GetStaticMapCommand extends GetStaticMapCommand_base {
46
37
  protected static __types: {
@@ -1,17 +1,10 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { Uint8ArrayBlobAdapter } from "@smithy/core/serde";
3
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
- import {
5
- GeoMapsClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../GeoMapsClient";
9
3
  import {
10
4
  GetStyleDescriptorRequest,
11
5
  GetStyleDescriptorResponse,
12
6
  } from "../models/models_0";
13
7
  export { __MetadataBearer };
14
- export { $Command };
15
8
  export interface GetStyleDescriptorCommandInput
16
9
  extends GetStyleDescriptorRequest {}
17
10
  export type GetStyleDescriptorCommandOutputType = Pick<
@@ -29,22 +22,20 @@ declare const GetStyleDescriptorCommand_base: {
29
22
  ): import("@smithy/core/client").CommandImpl<
30
23
  GetStyleDescriptorCommandInput,
31
24
  GetStyleDescriptorCommandOutput,
32
- GeoMapsClientResolvedConfig,
33
- ServiceInputTypes,
34
- ServiceOutputTypes
25
+ import("..").GeoMapsClientResolvedConfig,
26
+ import("..").ServiceInputTypes,
27
+ import("..").ServiceOutputTypes
35
28
  >;
36
29
  new (
37
30
  input: GetStyleDescriptorCommandInput
38
31
  ): import("@smithy/core/client").CommandImpl<
39
32
  GetStyleDescriptorCommandInput,
40
33
  GetStyleDescriptorCommandOutput,
41
- GeoMapsClientResolvedConfig,
42
- ServiceInputTypes,
43
- ServiceOutputTypes
34
+ import("..").GeoMapsClientResolvedConfig,
35
+ import("..").ServiceInputTypes,
36
+ import("..").ServiceOutputTypes
44
37
  >;
45
- getEndpointParameterInstructions(): {
46
- [x: string]: unknown;
47
- };
38
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
48
39
  };
49
40
  export declare class GetStyleDescriptorCommand extends GetStyleDescriptorCommand_base {
50
41
  protected static __types: {
@@ -1,14 +1,7 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { Uint8ArrayBlobAdapter } from "@smithy/core/serde";
3
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
- import {
5
- GeoMapsClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../GeoMapsClient";
9
3
  import { GetTileRequest, GetTileResponse } from "../models/models_0";
10
4
  export { __MetadataBearer };
11
- export { $Command };
12
5
  export interface GetTileCommandInput extends GetTileRequest {}
13
6
  export type GetTileCommandOutputType = Pick<
14
7
  GetTileResponse,
@@ -23,20 +16,18 @@ declare const GetTileCommand_base: {
23
16
  new (input: GetTileCommandInput): import("@smithy/core/client").CommandImpl<
24
17
  GetTileCommandInput,
25
18
  GetTileCommandOutput,
26
- GeoMapsClientResolvedConfig,
27
- ServiceInputTypes,
28
- ServiceOutputTypes
19
+ import("..").GeoMapsClientResolvedConfig,
20
+ import("..").ServiceInputTypes,
21
+ import("..").ServiceOutputTypes
29
22
  >;
30
23
  new (input: GetTileCommandInput): import("@smithy/core/client").CommandImpl<
31
24
  GetTileCommandInput,
32
25
  GetTileCommandOutput,
33
- GeoMapsClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").GeoMapsClientResolvedConfig,
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 GetTileCommand extends GetTileCommand_base {
42
33
  protected static __types: {
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
4
  export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { GeoMapsExtensionConfiguration } 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-maps",
3
3
  "description": "AWS SDK for JavaScript Geo Maps 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": {