@aws-sdk/client-location 3.485.0 → 3.489.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.
|
@@ -45,6 +45,9 @@ declare const CreateMapCommand_base: {
|
|
|
45
45
|
* Configuration: { // MapConfiguration
|
|
46
46
|
* Style: "STRING_VALUE", // required
|
|
47
47
|
* PoliticalView: "STRING_VALUE",
|
|
48
|
+
* CustomLayers: [ // CustomLayerList
|
|
49
|
+
* "STRING_VALUE",
|
|
50
|
+
* ],
|
|
48
51
|
* },
|
|
49
52
|
* PricingPlan: "STRING_VALUE",
|
|
50
53
|
* Description: "STRING_VALUE",
|
|
@@ -46,6 +46,9 @@ declare const DescribeMapCommand_base: {
|
|
|
46
46
|
* // Configuration: { // MapConfiguration
|
|
47
47
|
* // Style: "STRING_VALUE", // required
|
|
48
48
|
* // PoliticalView: "STRING_VALUE",
|
|
49
|
+
* // CustomLayers: [ // CustomLayerList
|
|
50
|
+
* // "STRING_VALUE",
|
|
51
|
+
* // ],
|
|
49
52
|
* // },
|
|
50
53
|
* // Description: "STRING_VALUE", // required
|
|
51
54
|
* // Tags: { // TagMap
|
|
@@ -39,6 +39,9 @@ declare const UpdateMapCommand_base: {
|
|
|
39
39
|
* Description: "STRING_VALUE",
|
|
40
40
|
* ConfigurationUpdate: { // MapConfigurationUpdate
|
|
41
41
|
* PoliticalView: "STRING_VALUE",
|
|
42
|
+
* CustomLayers: [ // CustomLayerList
|
|
43
|
+
* "STRING_VALUE",
|
|
44
|
+
* ],
|
|
42
45
|
* },
|
|
43
46
|
* };
|
|
44
47
|
* const command = new UpdateMapCommand(input);
|
|
@@ -2398,6 +2398,15 @@ export interface MapConfiguration {
|
|
|
2398
2398
|
* </note>
|
|
2399
2399
|
*/
|
|
2400
2400
|
PoliticalView?: string;
|
|
2401
|
+
/**
|
|
2402
|
+
* @public
|
|
2403
|
+
* <p>Specifies the custom layers for the style. Leave unset to not enable any custom layer, or, for styles that support custom layers, you can enable layer(s), such as POI layer for the VectorEsriNavigation style.
|
|
2404
|
+
* Default is <code>unset</code>.</p>
|
|
2405
|
+
* <note>
|
|
2406
|
+
* <p>Not all map resources or styles support custom layers. See Custom Layers for more information.</p>
|
|
2407
|
+
* </note>
|
|
2408
|
+
*/
|
|
2409
|
+
CustomLayers?: string[];
|
|
2401
2410
|
}
|
|
2402
2411
|
/**
|
|
2403
2412
|
* @public
|
|
@@ -5179,6 +5188,15 @@ export interface MapConfigurationUpdate {
|
|
|
5179
5188
|
* </note>
|
|
5180
5189
|
*/
|
|
5181
5190
|
PoliticalView?: string;
|
|
5191
|
+
/**
|
|
5192
|
+
* @public
|
|
5193
|
+
* <p>Specifies the custom layers for the style. Leave unset to not enable any custom layer, or, for styles that support custom layers, you can enable layer(s), such as POI layer for the VectorEsriNavigation style.
|
|
5194
|
+
* Default is <code>unset</code>.</p>
|
|
5195
|
+
* <note>
|
|
5196
|
+
* <p>Not all map resources or styles support custom layers. See Custom Layers for more information.</p>
|
|
5197
|
+
* </note>
|
|
5198
|
+
*/
|
|
5199
|
+
CustomLayers?: string[];
|
|
5182
5200
|
}
|
|
5183
5201
|
/**
|
|
5184
5202
|
* @public
|
|
@@ -392,6 +392,7 @@ export interface CreateGeofenceCollectionResponse {
|
|
|
392
392
|
export interface MapConfiguration {
|
|
393
393
|
Style: string | undefined;
|
|
394
394
|
PoliticalView?: string;
|
|
395
|
+
CustomLayers?: string[];
|
|
395
396
|
}
|
|
396
397
|
export interface CreateMapRequest {
|
|
397
398
|
MapName: string | undefined;
|
|
@@ -828,6 +829,7 @@ export interface ListTrackersResponse {
|
|
|
828
829
|
}
|
|
829
830
|
export interface MapConfigurationUpdate {
|
|
830
831
|
PoliticalView?: string;
|
|
832
|
+
CustomLayers?: string[];
|
|
831
833
|
}
|
|
832
834
|
export interface UpdateMapRequest {
|
|
833
835
|
MapName: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-location",
|
|
3
3
|
"description": "AWS SDK for JavaScript Location Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.489.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.489.0",
|
|
24
24
|
"@aws-sdk/core": "3.485.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.489.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.489.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.489.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.489.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.489.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.489.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.489.0",
|
|
32
|
+
"@aws-sdk/types": "3.489.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.489.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.489.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.489.0",
|
|
36
36
|
"@smithy/config-resolver": "^2.0.23",
|
|
37
37
|
"@smithy/core": "^1.2.2",
|
|
38
38
|
"@smithy/fetch-http-handler": "^2.3.2",
|