@aws-sdk/client-geo-maps 3.687.0 → 3.691.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.
|
@@ -292,22 +292,22 @@ export interface GetGlyphsResponse {
|
|
|
292
292
|
* <p>The Glyph, as a binary blob.</p>
|
|
293
293
|
* @public
|
|
294
294
|
*/
|
|
295
|
-
Blob?: Uint8Array;
|
|
295
|
+
Blob?: Uint8Array | undefined;
|
|
296
296
|
/**
|
|
297
297
|
* <p>Header that represents the format of the response. The response returns the following as the HTTP body.</p>
|
|
298
298
|
* @public
|
|
299
299
|
*/
|
|
300
|
-
ContentType?: string;
|
|
300
|
+
ContentType?: string | undefined;
|
|
301
301
|
/**
|
|
302
302
|
* <p>Header that instructs caching configuration for the client.</p>
|
|
303
303
|
* @public
|
|
304
304
|
*/
|
|
305
|
-
CacheControl?: string;
|
|
305
|
+
CacheControl?: string | undefined;
|
|
306
306
|
/**
|
|
307
307
|
* <p>The glyph's Etag.</p>
|
|
308
308
|
* @public
|
|
309
309
|
*/
|
|
310
|
-
ETag?: string;
|
|
310
|
+
ETag?: string | undefined;
|
|
311
311
|
}
|
|
312
312
|
/**
|
|
313
313
|
* @public
|
|
@@ -384,22 +384,22 @@ export interface GetSpritesResponse {
|
|
|
384
384
|
* depending on input).</p>
|
|
385
385
|
* @public
|
|
386
386
|
*/
|
|
387
|
-
Blob?: Uint8Array;
|
|
387
|
+
Blob?: Uint8Array | undefined;
|
|
388
388
|
/**
|
|
389
389
|
* <p>Header that represents the format of the response. The response returns the following as the HTTP body.</p>
|
|
390
390
|
* @public
|
|
391
391
|
*/
|
|
392
|
-
ContentType?: string;
|
|
392
|
+
ContentType?: string | undefined;
|
|
393
393
|
/**
|
|
394
394
|
* <p>Header that instructs caching configuration for the client.</p>
|
|
395
395
|
* @public
|
|
396
396
|
*/
|
|
397
|
-
CacheControl?: string;
|
|
397
|
+
CacheControl?: string | undefined;
|
|
398
398
|
/**
|
|
399
399
|
* <p>The sprite's Etag.</p>
|
|
400
400
|
* @public
|
|
401
401
|
*/
|
|
402
|
-
ETag?: string;
|
|
402
|
+
ETag?: string | undefined;
|
|
403
403
|
}
|
|
404
404
|
/**
|
|
405
405
|
* @public
|
|
@@ -436,7 +436,7 @@ export interface GetStaticMapRequest {
|
|
|
436
436
|
* <p>Example: -123.17075,49.26959,-123.08125,49.31429</p>
|
|
437
437
|
* @public
|
|
438
438
|
*/
|
|
439
|
-
BoundingBox?: string;
|
|
439
|
+
BoundingBox?: string | undefined;
|
|
440
440
|
/**
|
|
441
441
|
* <p>Takes in two or more pair of coordinates, [Lon, Lat], with each coordinate separated by
|
|
442
442
|
* a comma. The API will generate an image to encompass all of the provided coordinates. </p>
|
|
@@ -447,7 +447,7 @@ export interface GetStaticMapRequest {
|
|
|
447
447
|
* <p>Example: 97.170451,78.039098,99.045536,27.176178</p>
|
|
448
448
|
* @public
|
|
449
449
|
*/
|
|
450
|
-
BoundedPositions?: string;
|
|
450
|
+
BoundedPositions?: string | undefined;
|
|
451
451
|
/**
|
|
452
452
|
* <p>Takes in a pair of coordinates, [Lon, Lat], which becomes the center point of the image.
|
|
453
453
|
* This parameter requires that either zoom or radius is set.</p>
|
|
@@ -458,7 +458,7 @@ export interface GetStaticMapRequest {
|
|
|
458
458
|
* <p>Example: 49.295,-123.108</p>
|
|
459
459
|
* @public
|
|
460
460
|
*/
|
|
461
|
-
Center?: string;
|
|
461
|
+
Center?: string | undefined;
|
|
462
462
|
/**
|
|
463
463
|
* <p>Takes in a string to draw geometries on the image. The input is a comma separated format as follows format:
|
|
464
464
|
* <code>[Lon, Lat]</code>
|
|
@@ -471,7 +471,7 @@ export interface GetStaticMapRequest {
|
|
|
471
471
|
* </note>
|
|
472
472
|
* @public
|
|
473
473
|
*/
|
|
474
|
-
CompactOverlay?: string;
|
|
474
|
+
CompactOverlay?: string | undefined;
|
|
475
475
|
/**
|
|
476
476
|
* <p>Takes in a string to draw geometries on the image. The input is a valid GeoJSON
|
|
477
477
|
* collection object. </p>
|
|
@@ -480,7 +480,7 @@ export interface GetStaticMapRequest {
|
|
|
480
480
|
* </p>
|
|
481
481
|
* @public
|
|
482
482
|
*/
|
|
483
|
-
GeoJsonOverlay?: string;
|
|
483
|
+
GeoJsonOverlay?: string | undefined;
|
|
484
484
|
/**
|
|
485
485
|
* <p>Specifies the height of the map image.</p>
|
|
486
486
|
* @public
|
|
@@ -491,7 +491,7 @@ export interface GetStaticMapRequest {
|
|
|
491
491
|
* signature must be provided when making a request. </p>
|
|
492
492
|
* @public
|
|
493
493
|
*/
|
|
494
|
-
Key?: string;
|
|
494
|
+
Key?: string | undefined;
|
|
495
495
|
/**
|
|
496
496
|
* <p>Applies additional space (in pixels) around overlay feature to prevent them from being
|
|
497
497
|
* cut or obscured.</p>
|
|
@@ -506,7 +506,7 @@ export interface GetStaticMapRequest {
|
|
|
506
506
|
* </p>
|
|
507
507
|
* @public
|
|
508
508
|
*/
|
|
509
|
-
Padding?: number;
|
|
509
|
+
Padding?: number | undefined;
|
|
510
510
|
/**
|
|
511
511
|
* <p>Used with center parameter, it specifies the zoom of the image where you can control it
|
|
512
512
|
* on a granular level. Takes in any value <code>>= 1</code>. </p>
|
|
@@ -521,7 +521,7 @@ export interface GetStaticMapRequest {
|
|
|
521
521
|
* <p/>
|
|
522
522
|
* @public
|
|
523
523
|
*/
|
|
524
|
-
Radius?: number;
|
|
524
|
+
Radius?: number | undefined;
|
|
525
525
|
/**
|
|
526
526
|
* <p>The map scaling parameter to size the image, icons, and labels. It follows the pattern
|
|
527
527
|
* of <code>^map(@2x)?$</code>.</p>
|
|
@@ -537,12 +537,12 @@ export interface GetStaticMapRequest {
|
|
|
537
537
|
* </p>
|
|
538
538
|
* @public
|
|
539
539
|
*/
|
|
540
|
-
ScaleBarUnit?: ScaleBarUnit;
|
|
540
|
+
ScaleBarUnit?: ScaleBarUnit | undefined;
|
|
541
541
|
/**
|
|
542
542
|
* <p>Style specifies the desired map style for the <code>Style</code> APIs.</p>
|
|
543
543
|
* @public
|
|
544
544
|
*/
|
|
545
|
-
Style?: StaticMapStyle;
|
|
545
|
+
Style?: StaticMapStyle | undefined;
|
|
546
546
|
/**
|
|
547
547
|
* <p>Specifies the width of the map image.</p>
|
|
548
548
|
* @public
|
|
@@ -555,7 +555,7 @@ export interface GetStaticMapRequest {
|
|
|
555
555
|
* </note>
|
|
556
556
|
* @public
|
|
557
557
|
*/
|
|
558
|
-
Zoom?: number;
|
|
558
|
+
Zoom?: number | undefined;
|
|
559
559
|
}
|
|
560
560
|
/**
|
|
561
561
|
* @public
|
|
@@ -566,22 +566,22 @@ export interface GetStaticMapResponse {
|
|
|
566
566
|
* the <code>GetStaticMap</code> API.</p>
|
|
567
567
|
* @public
|
|
568
568
|
*/
|
|
569
|
-
Blob?: Uint8Array;
|
|
569
|
+
Blob?: Uint8Array | undefined;
|
|
570
570
|
/**
|
|
571
571
|
* <p>Header that represents the format of the response. The response returns the following as the HTTP body.</p>
|
|
572
572
|
* @public
|
|
573
573
|
*/
|
|
574
|
-
ContentType?: string;
|
|
574
|
+
ContentType?: string | undefined;
|
|
575
575
|
/**
|
|
576
576
|
* <p>Header that instructs caching configuration for the client.</p>
|
|
577
577
|
* @public
|
|
578
578
|
*/
|
|
579
|
-
CacheControl?: string;
|
|
579
|
+
CacheControl?: string | undefined;
|
|
580
580
|
/**
|
|
581
581
|
* <p>The static map's Etag.</p>
|
|
582
582
|
* @public
|
|
583
583
|
*/
|
|
584
|
-
ETag?: string;
|
|
584
|
+
ETag?: string | undefined;
|
|
585
585
|
/**
|
|
586
586
|
* <p>The pricing bucket for which the request is charged at.</p>
|
|
587
587
|
* @public
|
|
@@ -713,7 +713,7 @@ export interface GetStyleDescriptorRequest {
|
|
|
713
713
|
* </note>
|
|
714
714
|
* @public
|
|
715
715
|
*/
|
|
716
|
-
ColorScheme?: ColorScheme;
|
|
716
|
+
ColorScheme?: ColorScheme | undefined;
|
|
717
717
|
/**
|
|
718
718
|
* <p>Specifies the political view using ISO 3166-2 or ISO 3166-3 country code format.</p>
|
|
719
719
|
* <p>The following political views are currently supported:</p>
|
|
@@ -781,13 +781,13 @@ export interface GetStyleDescriptorRequest {
|
|
|
781
781
|
* </ul>
|
|
782
782
|
* @public
|
|
783
783
|
*/
|
|
784
|
-
PoliticalView?: string;
|
|
784
|
+
PoliticalView?: string | undefined;
|
|
785
785
|
/**
|
|
786
786
|
* <p>Optional: The API key to be used for authorization. Either an API key or valid SigV4
|
|
787
787
|
* signature must be provided when making a request. </p>
|
|
788
788
|
* @public
|
|
789
789
|
*/
|
|
790
|
-
Key?: string;
|
|
790
|
+
Key?: string | undefined;
|
|
791
791
|
}
|
|
792
792
|
/**
|
|
793
793
|
* @public
|
|
@@ -797,22 +797,22 @@ export interface GetStyleDescriptorResponse {
|
|
|
797
797
|
* <p>This Blob contains the body of the style descriptor which is in application/json format.</p>
|
|
798
798
|
* @public
|
|
799
799
|
*/
|
|
800
|
-
Blob?: Uint8Array;
|
|
800
|
+
Blob?: Uint8Array | undefined;
|
|
801
801
|
/**
|
|
802
802
|
* <p>Header that represents the format of the response. The response returns the following as the HTTP body.</p>
|
|
803
803
|
* @public
|
|
804
804
|
*/
|
|
805
|
-
ContentType?: string;
|
|
805
|
+
ContentType?: string | undefined;
|
|
806
806
|
/**
|
|
807
807
|
* <p>Header that instructs caching configuration for the client.</p>
|
|
808
808
|
* @public
|
|
809
809
|
*/
|
|
810
|
-
CacheControl?: string;
|
|
810
|
+
CacheControl?: string | undefined;
|
|
811
811
|
/**
|
|
812
812
|
* <p>The style descriptor's Etag.</p>
|
|
813
813
|
* @public
|
|
814
814
|
*/
|
|
815
|
-
ETag?: string;
|
|
815
|
+
ETag?: string | undefined;
|
|
816
816
|
}
|
|
817
817
|
/**
|
|
818
818
|
* @public
|
|
@@ -845,7 +845,7 @@ export interface GetTileRequest {
|
|
|
845
845
|
* signature must be provided when making a request. </p>
|
|
846
846
|
* @public
|
|
847
847
|
*/
|
|
848
|
-
Key?: string;
|
|
848
|
+
Key?: string | undefined;
|
|
849
849
|
}
|
|
850
850
|
/**
|
|
851
851
|
* @public
|
|
@@ -856,22 +856,22 @@ export interface GetTileResponse {
|
|
|
856
856
|
* <code>GetTile</code> API.</p>
|
|
857
857
|
* @public
|
|
858
858
|
*/
|
|
859
|
-
Blob?: Uint8Array;
|
|
859
|
+
Blob?: Uint8Array | undefined;
|
|
860
860
|
/**
|
|
861
861
|
* <p>Header that represents the format of the response. The response returns the following as the HTTP body.</p>
|
|
862
862
|
* @public
|
|
863
863
|
*/
|
|
864
|
-
ContentType?: string;
|
|
864
|
+
ContentType?: string | undefined;
|
|
865
865
|
/**
|
|
866
866
|
* <p>Header that instructs caching configuration for the client.</p>
|
|
867
867
|
* @public
|
|
868
868
|
*/
|
|
869
|
-
CacheControl?: string;
|
|
869
|
+
CacheControl?: string | undefined;
|
|
870
870
|
/**
|
|
871
871
|
* <p>The pricing bucket for which the request is charged at.</p>
|
|
872
872
|
* @public
|
|
873
873
|
*/
|
|
874
|
-
ETag?: string;
|
|
874
|
+
ETag?: string | undefined;
|
|
875
875
|
/**
|
|
876
876
|
* <p>The pricing bucket for which the request is charged at.</p>
|
|
877
877
|
* @public
|
|
@@ -18,10 +18,10 @@ export interface GetGlyphsRequest {
|
|
|
18
18
|
FontUnicodeRange: string | undefined;
|
|
19
19
|
}
|
|
20
20
|
export interface GetGlyphsResponse {
|
|
21
|
-
Blob?: Uint8Array;
|
|
22
|
-
ContentType?: string;
|
|
23
|
-
CacheControl?: string;
|
|
24
|
-
ETag?: string;
|
|
21
|
+
Blob?: Uint8Array | undefined;
|
|
22
|
+
ContentType?: string | undefined;
|
|
23
|
+
CacheControl?: string | undefined;
|
|
24
|
+
ETag?: string | undefined;
|
|
25
25
|
}
|
|
26
26
|
export declare const MapStyle: {
|
|
27
27
|
readonly HYBRID: "Hybrid";
|
|
@@ -41,10 +41,10 @@ export interface GetSpritesRequest {
|
|
|
41
41
|
Variant: Variant | undefined;
|
|
42
42
|
}
|
|
43
43
|
export interface GetSpritesResponse {
|
|
44
|
-
Blob?: Uint8Array;
|
|
45
|
-
ContentType?: string;
|
|
46
|
-
CacheControl?: string;
|
|
47
|
-
ETag?: string;
|
|
44
|
+
Blob?: Uint8Array | undefined;
|
|
45
|
+
ContentType?: string | undefined;
|
|
46
|
+
CacheControl?: string | undefined;
|
|
47
|
+
ETag?: string | undefined;
|
|
48
48
|
}
|
|
49
49
|
export declare const ScaleBarUnit: {
|
|
50
50
|
readonly KILOMETERS: "Kilometers";
|
|
@@ -59,26 +59,26 @@ export declare const StaticMapStyle: {
|
|
|
59
59
|
export type StaticMapStyle =
|
|
60
60
|
(typeof StaticMapStyle)[keyof typeof StaticMapStyle];
|
|
61
61
|
export interface GetStaticMapRequest {
|
|
62
|
-
BoundingBox?: string;
|
|
63
|
-
BoundedPositions?: string;
|
|
64
|
-
Center?: string;
|
|
65
|
-
CompactOverlay?: string;
|
|
66
|
-
GeoJsonOverlay?: string;
|
|
62
|
+
BoundingBox?: string | undefined;
|
|
63
|
+
BoundedPositions?: string | undefined;
|
|
64
|
+
Center?: string | undefined;
|
|
65
|
+
CompactOverlay?: string | undefined;
|
|
66
|
+
GeoJsonOverlay?: string | undefined;
|
|
67
67
|
Height: number | undefined;
|
|
68
|
-
Key?: string;
|
|
69
|
-
Padding?: number;
|
|
70
|
-
Radius?: number;
|
|
68
|
+
Key?: string | undefined;
|
|
69
|
+
Padding?: number | undefined;
|
|
70
|
+
Radius?: number | undefined;
|
|
71
71
|
FileName: string | undefined;
|
|
72
|
-
ScaleBarUnit?: ScaleBarUnit;
|
|
73
|
-
Style?: StaticMapStyle;
|
|
72
|
+
ScaleBarUnit?: ScaleBarUnit | undefined;
|
|
73
|
+
Style?: StaticMapStyle | undefined;
|
|
74
74
|
Width: number | undefined;
|
|
75
|
-
Zoom?: number;
|
|
75
|
+
Zoom?: number | undefined;
|
|
76
76
|
}
|
|
77
77
|
export interface GetStaticMapResponse {
|
|
78
|
-
Blob?: Uint8Array;
|
|
79
|
-
ContentType?: string;
|
|
80
|
-
CacheControl?: string;
|
|
81
|
-
ETag?: string;
|
|
78
|
+
Blob?: Uint8Array | undefined;
|
|
79
|
+
ContentType?: string | undefined;
|
|
80
|
+
CacheControl?: string | undefined;
|
|
81
|
+
ETag?: string | undefined;
|
|
82
82
|
PricingBucket: string | undefined;
|
|
83
83
|
}
|
|
84
84
|
export declare class InternalServerException extends __BaseException {
|
|
@@ -125,28 +125,28 @@ export declare class ValidationException extends __BaseException {
|
|
|
125
125
|
}
|
|
126
126
|
export interface GetStyleDescriptorRequest {
|
|
127
127
|
Style: MapStyle | undefined;
|
|
128
|
-
ColorScheme?: ColorScheme;
|
|
129
|
-
PoliticalView?: string;
|
|
130
|
-
Key?: string;
|
|
128
|
+
ColorScheme?: ColorScheme | undefined;
|
|
129
|
+
PoliticalView?: string | undefined;
|
|
130
|
+
Key?: string | undefined;
|
|
131
131
|
}
|
|
132
132
|
export interface GetStyleDescriptorResponse {
|
|
133
|
-
Blob?: Uint8Array;
|
|
134
|
-
ContentType?: string;
|
|
135
|
-
CacheControl?: string;
|
|
136
|
-
ETag?: string;
|
|
133
|
+
Blob?: Uint8Array | undefined;
|
|
134
|
+
ContentType?: string | undefined;
|
|
135
|
+
CacheControl?: string | undefined;
|
|
136
|
+
ETag?: string | undefined;
|
|
137
137
|
}
|
|
138
138
|
export interface GetTileRequest {
|
|
139
139
|
Tileset: string | undefined;
|
|
140
140
|
Z: string | undefined;
|
|
141
141
|
X: string | undefined;
|
|
142
142
|
Y: string | undefined;
|
|
143
|
-
Key?: string;
|
|
143
|
+
Key?: string | undefined;
|
|
144
144
|
}
|
|
145
145
|
export interface GetTileResponse {
|
|
146
|
-
Blob?: Uint8Array;
|
|
147
|
-
ContentType?: string;
|
|
148
|
-
CacheControl?: string;
|
|
149
|
-
ETag?: string;
|
|
146
|
+
Blob?: Uint8Array | undefined;
|
|
147
|
+
ContentType?: string | undefined;
|
|
148
|
+
CacheControl?: string | undefined;
|
|
149
|
+
ETag?: string | undefined;
|
|
150
150
|
PricingBucket: string | undefined;
|
|
151
151
|
}
|
|
152
152
|
export declare const GetStaticMapRequestFilterSensitiveLog: (
|
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.
|
|
4
|
+
"version": "3.691.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": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.691.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.691.0",
|
|
25
|
+
"@aws-sdk/core": "3.691.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.691.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.686.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.686.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.691.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.686.0",
|
|
32
32
|
"@aws-sdk/types": "3.686.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.686.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.691.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.10",
|
|
37
37
|
"@smithy/core": "^2.5.1",
|
|
38
38
|
"@smithy/fetch-http-handler": "^4.0.0",
|