@aws-sdk/client-geo-maps 3.1020.0 → 3.1021.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
@@ -192,6 +192,8 @@ const ColorScheme = {
192
192
  LIGHT: "Light",
193
193
  };
194
194
  const ContourDensity = {
195
+ HIGH: "High",
196
+ LOW: "Low",
195
197
  MEDIUM: "Medium",
196
198
  };
197
199
  const MapStyle = {
@@ -235,6 +237,7 @@ const Terrain = {
235
237
  };
236
238
  const Traffic = {
237
239
  ALL: "All",
240
+ CONGESTION: "Congestion",
238
241
  };
239
242
  const TravelMode = {
240
243
  TRANSIT: "Transit",
@@ -6,6 +6,8 @@ export const ColorScheme = {
6
6
  LIGHT: "Light",
7
7
  };
8
8
  export const ContourDensity = {
9
+ HIGH: "High",
10
+ LOW: "Low",
9
11
  MEDIUM: "Medium",
10
12
  };
11
13
  export const MapStyle = {
@@ -49,6 +51,7 @@ export const Terrain = {
49
51
  };
50
52
  export const Traffic = {
51
53
  ALL: "All",
54
+ CONGESTION: "Congestion",
52
55
  };
53
56
  export const TravelMode = {
54
57
  TRANSIT: "Transit",
@@ -26,6 +26,8 @@ export type ColorScheme = (typeof ColorScheme)[keyof typeof ColorScheme];
26
26
  * @enum
27
27
  */
28
28
  export declare const ContourDensity: {
29
+ readonly HIGH: "High";
30
+ readonly LOW: "Low";
29
31
  readonly MEDIUM: "Medium";
30
32
  };
31
33
  /**
@@ -163,6 +165,7 @@ export type Terrain = (typeof Terrain)[keyof typeof Terrain];
163
165
  */
164
166
  export declare const Traffic: {
165
167
  readonly ALL: "All";
168
+ readonly CONGESTION: "Congestion";
166
169
  };
167
170
  /**
168
171
  * @public
@@ -54,7 +54,7 @@ export interface GetSpritesRequest {
54
54
  */
55
55
  Style: MapStyle | undefined;
56
56
  /**
57
- * <p>Sets color tone for map such as dark and light for specific map styles. It applies to only vector map styles such as Standard and Monochrome.</p> <p>Example: <code>Light</code> </p> <p>Default value: <code>Light</code> </p> <note> <p>Valid values for ColorScheme are case sensitive.</p> </note>
57
+ * <p>Sets the color tone for the map sprites, such as dark and light.</p> <p>Example: <code>Light</code> </p> <p>Default value: <code>Light</code> </p> <note> <p>Valid values for ColorScheme are case sensitive.</p> </note>
58
58
  * @public
59
59
  */
60
60
  ColorScheme: ColorScheme | undefined;
@@ -109,7 +109,7 @@ export interface GetStaticMapRequest {
109
109
  */
110
110
  Center?: string | undefined;
111
111
  /**
112
- * <p>Sets color tone for map, such as dark and light for specific map styles. It only applies to vector map styles, such as Standard.</p> <p>Example: <code>Light</code> </p> <p>Default value: <code>Light</code> </p> <note> <p>Valid values for <code>ColorScheme</code> are case sensitive.</p> </note>
112
+ * <p>Sets the color tone for the map, such as dark and light.</p> <p>Example: <code>Light</code> </p> <p>Default value: <code>Light</code> </p> <note> <p>Valid values for <code>ColorScheme</code> are case sensitive.</p> </note>
113
113
  * @public
114
114
  */
115
115
  ColorScheme?: ColorScheme | undefined;
@@ -250,7 +250,7 @@ export interface GetStyleDescriptorRequest {
250
250
  */
251
251
  Style: MapStyle | undefined;
252
252
  /**
253
- * <p>Sets color tone for map such as dark and light for specific map styles. It applies to only vector map styles such as Standard and Monochrome.</p> <p>Example: <code>Light</code> </p> <p>Default value: <code>Light</code> </p> <note> <p>Valid values for ColorScheme are case sensitive.</p> </note>
253
+ * <p>Sets the color tone for the map, such as dark and light.</p> <p>Example: <code>Light</code> </p> <p>Default value: <code>Light</code> </p> <note> <p>Valid values for ColorScheme are case sensitive.</p> </note>
254
254
  * @public
255
255
  */
256
256
  ColorScheme?: ColorScheme | undefined;
@@ -265,17 +265,17 @@ export interface GetStyleDescriptorRequest {
265
265
  */
266
266
  Terrain?: Terrain | undefined;
267
267
  /**
268
- * <p>Displays the shape and steepness of terrain features using elevation lines. The density value controls how densely the available contour line information is rendered on the map.</p> <p>This parameter is valid only for the <code>Standard</code>, <code>Monochrome</code>, and <code>Hybrid</code> map styles.</p>
268
+ * <p>Displays the shape and steepness of terrain features using elevation lines. The density value controls how densely the available contour line information is rendered on the map.</p> <p>This parameter is valid for all map styles except <code>Satellite</code>.</p>
269
269
  * @public
270
270
  */
271
271
  ContourDensity?: ContourDensity | undefined;
272
272
  /**
273
- * <p>Displays real-time traffic information overlay on map, such as incident events and flow events.</p> <p>This parameter is valid only for the <code>Standard</code> map style.</p>
273
+ * <p>Displays real-time traffic information overlay on map, such as incident events and flow events.</p> <p>This parameter is valid for all map styles except <code>Satellite</code>.</p>
274
274
  * @public
275
275
  */
276
276
  Traffic?: Traffic | undefined;
277
277
  /**
278
- * <p>Renders additional map information relevant to selected travel modes. Information for multiple travel modes can be displayed simultaneously, although this increases the overall information density rendered on the map.</p> <p>This parameter is valid only for the <code>Standard</code> map style.</p>
278
+ * <p>Renders additional map information relevant to selected travel modes. Information for multiple travel modes can be displayed simultaneously, although this increases the overall information density rendered on the map.</p> <p>This parameter is valid for all map styles except <code>Satellite</code>.</p>
279
279
  * @public
280
280
  */
281
281
  TravelModes?: TravelMode[] | undefined;
@@ -8,6 +8,8 @@ export declare const ColorScheme: {
8
8
  };
9
9
  export type ColorScheme = (typeof ColorScheme)[keyof typeof ColorScheme];
10
10
  export declare const ContourDensity: {
11
+ readonly HIGH: "High";
12
+ readonly LOW: "Low";
11
13
  readonly MEDIUM: "Medium";
12
14
  };
13
15
  export type ContourDensity =
@@ -64,6 +66,7 @@ export declare const Terrain: {
64
66
  export type Terrain = (typeof Terrain)[keyof typeof Terrain];
65
67
  export declare const Traffic: {
66
68
  readonly ALL: "All";
69
+ readonly CONGESTION: "Congestion";
67
70
  };
68
71
  export type Traffic = (typeof Traffic)[keyof typeof Traffic];
69
72
  export declare const TravelMode: {
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.1020.0",
4
+ "version": "3.1021.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 client-geo-maps",
@@ -22,16 +22,16 @@
22
22
  "@aws-crypto/sha256-browser": "5.2.0",
23
23
  "@aws-crypto/sha256-js": "5.2.0",
24
24
  "@aws-sdk/core": "^3.973.26",
25
- "@aws-sdk/credential-provider-node": "^3.972.28",
25
+ "@aws-sdk/credential-provider-node": "^3.972.29",
26
26
  "@aws-sdk/middleware-host-header": "^3.972.8",
27
27
  "@aws-sdk/middleware-logger": "^3.972.8",
28
28
  "@aws-sdk/middleware-recursion-detection": "^3.972.9",
29
- "@aws-sdk/middleware-user-agent": "^3.972.27",
29
+ "@aws-sdk/middleware-user-agent": "^3.972.28",
30
30
  "@aws-sdk/region-config-resolver": "^3.972.10",
31
31
  "@aws-sdk/types": "^3.973.6",
32
32
  "@aws-sdk/util-endpoints": "^3.996.5",
33
33
  "@aws-sdk/util-user-agent-browser": "^3.972.8",
34
- "@aws-sdk/util-user-agent-node": "^3.973.13",
34
+ "@aws-sdk/util-user-agent-node": "^3.973.14",
35
35
  "@smithy/config-resolver": "^4.4.13",
36
36
  "@smithy/core": "^3.23.13",
37
37
  "@smithy/fetch-http-handler": "^5.3.15",
@@ -39,7 +39,7 @@
39
39
  "@smithy/invalid-dependency": "^4.2.12",
40
40
  "@smithy/middleware-content-length": "^4.2.12",
41
41
  "@smithy/middleware-endpoint": "^4.4.28",
42
- "@smithy/middleware-retry": "^4.4.45",
42
+ "@smithy/middleware-retry": "^4.4.46",
43
43
  "@smithy/middleware-serde": "^4.2.16",
44
44
  "@smithy/middleware-stack": "^4.2.12",
45
45
  "@smithy/node-config-provider": "^4.3.12",
@@ -55,7 +55,7 @@
55
55
  "@smithy/util-defaults-mode-node": "^4.2.48",
56
56
  "@smithy/util-endpoints": "^3.3.3",
57
57
  "@smithy/util-middleware": "^4.2.12",
58
- "@smithy/util-retry": "^4.2.12",
58
+ "@smithy/util-retry": "^4.2.13",
59
59
  "@smithy/util-stream": "^4.5.21",
60
60
  "@smithy/util-utf8": "^4.2.2",
61
61
  "tslib": "^2.6.2"