@aws-sdk/client-geo-maps 3.936.0 → 3.940.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
@@ -946,6 +946,65 @@ class GeoMaps extends GeoMapsClient {
946
946
  }
947
947
  smithyClient.createAggregatedClient(commands, GeoMaps);
948
948
 
949
+ const ColorScheme = {
950
+ DARK: "Dark",
951
+ LIGHT: "Light",
952
+ };
953
+ const ContourDensity = {
954
+ MEDIUM: "Medium",
955
+ };
956
+ const MapStyle = {
957
+ HYBRID: "Hybrid",
958
+ MONOCHROME: "Monochrome",
959
+ SATELLITE: "Satellite",
960
+ STANDARD: "Standard",
961
+ };
962
+ const Variant = {
963
+ DEFAULT: "Default",
964
+ };
965
+ const LabelSize = {
966
+ LARGE: "Large",
967
+ SMALL: "Small",
968
+ };
969
+ const MapFeatureMode = {
970
+ DISABLED: "Disabled",
971
+ ENABLED: "Enabled",
972
+ };
973
+ const ScaleBarUnit = {
974
+ KILOMETERS: "Kilometers",
975
+ KILOMETERS_MILES: "KilometersMiles",
976
+ MILES: "Miles",
977
+ MILES_KILOMETERS: "MilesKilometers",
978
+ };
979
+ const StaticMapStyle = {
980
+ SATELLITE: "Satellite",
981
+ STANDARD: "Standard",
982
+ };
983
+ const ValidationExceptionReason = {
984
+ CANNOT_PARSE: "CannotParse",
985
+ FIELD_VALIDATION_FAILED: "FieldValidationFailed",
986
+ MISSING: "Missing",
987
+ OTHER: "Other",
988
+ UNKNOWN_FIELD: "UnknownField",
989
+ UNKNOWN_OPERATION: "UnknownOperation",
990
+ };
991
+ const Terrain = {
992
+ HILLSHADE: "Hillshade",
993
+ };
994
+ const Traffic = {
995
+ ALL: "All",
996
+ };
997
+ const TravelMode = {
998
+ TRANSIT: "Transit",
999
+ TRUCK: "Truck",
1000
+ };
1001
+ const TileAdditionalFeature = {
1002
+ CONTOUR_LINES: "ContourLines",
1003
+ HILLSHADE: "Hillshade",
1004
+ LOGISTICS: "Logistics",
1005
+ TRANSIT: "Transit",
1006
+ };
1007
+
949
1008
  Object.defineProperty(exports, "$Command", {
950
1009
  enumerable: true,
951
1010
  get: function () { return smithyClient.Command; }
@@ -955,6 +1014,8 @@ Object.defineProperty(exports, "__Client", {
955
1014
  get: function () { return smithyClient.Client; }
956
1015
  });
957
1016
  exports.AccessDeniedException = AccessDeniedException$1;
1017
+ exports.ColorScheme = ColorScheme;
1018
+ exports.ContourDensity = ContourDensity;
958
1019
  exports.GeoMaps = GeoMaps;
959
1020
  exports.GeoMapsClient = GeoMapsClient;
960
1021
  exports.GeoMapsServiceException = GeoMapsServiceException$1;
@@ -964,6 +1025,17 @@ exports.GetStaticMapCommand = GetStaticMapCommand;
964
1025
  exports.GetStyleDescriptorCommand = GetStyleDescriptorCommand;
965
1026
  exports.GetTileCommand = GetTileCommand;
966
1027
  exports.InternalServerException = InternalServerException$1;
1028
+ exports.LabelSize = LabelSize;
1029
+ exports.MapFeatureMode = MapFeatureMode;
1030
+ exports.MapStyle = MapStyle;
967
1031
  exports.ResourceNotFoundException = ResourceNotFoundException$1;
1032
+ exports.ScaleBarUnit = ScaleBarUnit;
1033
+ exports.StaticMapStyle = StaticMapStyle;
1034
+ exports.Terrain = Terrain;
968
1035
  exports.ThrottlingException = ThrottlingException$1;
1036
+ exports.TileAdditionalFeature = TileAdditionalFeature;
1037
+ exports.Traffic = Traffic;
1038
+ exports.TravelMode = TravelMode;
969
1039
  exports.ValidationException = ValidationException$1;
1040
+ exports.ValidationExceptionReason = ValidationExceptionReason;
1041
+ exports.Variant = Variant;
package/dist-es/index.js CHANGED
@@ -1,5 +1,6 @@
1
1
  export * from "./GeoMapsClient";
2
2
  export * from "./GeoMaps";
3
3
  export * from "./commands";
4
+ export * from "./models/enums";
4
5
  export * from "./models/errors";
5
6
  export { GeoMapsServiceException } from "./models/GeoMapsServiceException";
@@ -0,0 +1,58 @@
1
+ export const ColorScheme = {
2
+ DARK: "Dark",
3
+ LIGHT: "Light",
4
+ };
5
+ export const ContourDensity = {
6
+ MEDIUM: "Medium",
7
+ };
8
+ export const MapStyle = {
9
+ HYBRID: "Hybrid",
10
+ MONOCHROME: "Monochrome",
11
+ SATELLITE: "Satellite",
12
+ STANDARD: "Standard",
13
+ };
14
+ export const Variant = {
15
+ DEFAULT: "Default",
16
+ };
17
+ export const LabelSize = {
18
+ LARGE: "Large",
19
+ SMALL: "Small",
20
+ };
21
+ export const MapFeatureMode = {
22
+ DISABLED: "Disabled",
23
+ ENABLED: "Enabled",
24
+ };
25
+ export const ScaleBarUnit = {
26
+ KILOMETERS: "Kilometers",
27
+ KILOMETERS_MILES: "KilometersMiles",
28
+ MILES: "Miles",
29
+ MILES_KILOMETERS: "MilesKilometers",
30
+ };
31
+ export const StaticMapStyle = {
32
+ SATELLITE: "Satellite",
33
+ STANDARD: "Standard",
34
+ };
35
+ export const ValidationExceptionReason = {
36
+ CANNOT_PARSE: "CannotParse",
37
+ FIELD_VALIDATION_FAILED: "FieldValidationFailed",
38
+ MISSING: "Missing",
39
+ OTHER: "Other",
40
+ UNKNOWN_FIELD: "UnknownField",
41
+ UNKNOWN_OPERATION: "UnknownOperation",
42
+ };
43
+ export const Terrain = {
44
+ HILLSHADE: "Hillshade",
45
+ };
46
+ export const Traffic = {
47
+ ALL: "All",
48
+ };
49
+ export const TravelMode = {
50
+ TRANSIT: "Transit",
51
+ TRUCK: "Truck",
52
+ };
53
+ export const TileAdditionalFeature = {
54
+ CONTOUR_LINES: "ContourLines",
55
+ HILLSHADE: "Hillshade",
56
+ LOGISTICS: "Logistics",
57
+ TRANSIT: "Transit",
58
+ };
@@ -1,58 +1 @@
1
- export const ColorScheme = {
2
- DARK: "Dark",
3
- LIGHT: "Light",
4
- };
5
- export const ContourDensity = {
6
- MEDIUM: "Medium",
7
- };
8
- export const MapStyle = {
9
- HYBRID: "Hybrid",
10
- MONOCHROME: "Monochrome",
11
- SATELLITE: "Satellite",
12
- STANDARD: "Standard",
13
- };
14
- export const Variant = {
15
- DEFAULT: "Default",
16
- };
17
- export const LabelSize = {
18
- LARGE: "Large",
19
- SMALL: "Small",
20
- };
21
- export const MapFeatureMode = {
22
- DISABLED: "Disabled",
23
- ENABLED: "Enabled",
24
- };
25
- export const ScaleBarUnit = {
26
- KILOMETERS: "Kilometers",
27
- KILOMETERS_MILES: "KilometersMiles",
28
- MILES: "Miles",
29
- MILES_KILOMETERS: "MilesKilometers",
30
- };
31
- export const StaticMapStyle = {
32
- SATELLITE: "Satellite",
33
- STANDARD: "Standard",
34
- };
35
- export const ValidationExceptionReason = {
36
- CANNOT_PARSE: "CannotParse",
37
- FIELD_VALIDATION_FAILED: "FieldValidationFailed",
38
- MISSING: "Missing",
39
- OTHER: "Other",
40
- UNKNOWN_FIELD: "UnknownField",
41
- UNKNOWN_OPERATION: "UnknownOperation",
42
- };
43
- export const Terrain = {
44
- HILLSHADE: "Hillshade",
45
- };
46
- export const Traffic = {
47
- ALL: "All",
48
- };
49
- export const TravelMode = {
50
- TRANSIT: "Transit",
51
- TRUCK: "Truck",
52
- };
53
- export const TileAdditionalFeature = {
54
- CONTOUR_LINES: "ContourLines",
55
- HILLSHADE: "Hillshade",
56
- LOGISTICS: "Logistics",
57
- TRANSIT: "Transit",
58
- };
1
+ export {};
@@ -9,6 +9,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
9
9
  export type { RuntimeExtension } from "./runtimeExtensions";
10
10
  export type { GeoMapsExtensionConfiguration } from "./extensionConfiguration";
11
11
  export * from "./commands";
12
+ export * from "./models/enums";
12
13
  export * from "./models/errors";
13
14
  export type * from "./models/models_0";
14
15
  export { GeoMapsServiceException } from "./models/GeoMapsServiceException";
@@ -0,0 +1,196 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const ColorScheme: {
6
+ readonly DARK: "Dark";
7
+ readonly LIGHT: "Light";
8
+ };
9
+ /**
10
+ * @public
11
+ */
12
+ export type ColorScheme = (typeof ColorScheme)[keyof typeof ColorScheme];
13
+ /**
14
+ * @public
15
+ * @enum
16
+ */
17
+ export declare const ContourDensity: {
18
+ readonly MEDIUM: "Medium";
19
+ };
20
+ /**
21
+ * @public
22
+ */
23
+ export type ContourDensity = (typeof ContourDensity)[keyof typeof ContourDensity];
24
+ /**
25
+ * @public
26
+ * @enum
27
+ */
28
+ export declare const MapStyle: {
29
+ readonly HYBRID: "Hybrid";
30
+ readonly MONOCHROME: "Monochrome";
31
+ readonly SATELLITE: "Satellite";
32
+ readonly STANDARD: "Standard";
33
+ };
34
+ /**
35
+ * @public
36
+ */
37
+ export type MapStyle = (typeof MapStyle)[keyof typeof MapStyle];
38
+ /**
39
+ * @public
40
+ * @enum
41
+ */
42
+ export declare const Variant: {
43
+ readonly DEFAULT: "Default";
44
+ };
45
+ /**
46
+ * @public
47
+ */
48
+ export type Variant = (typeof Variant)[keyof typeof Variant];
49
+ /**
50
+ * @public
51
+ * @enum
52
+ */
53
+ export declare const LabelSize: {
54
+ readonly LARGE: "Large";
55
+ readonly SMALL: "Small";
56
+ };
57
+ /**
58
+ * @public
59
+ */
60
+ export type LabelSize = (typeof LabelSize)[keyof typeof LabelSize];
61
+ /**
62
+ * @public
63
+ * @enum
64
+ */
65
+ export declare const MapFeatureMode: {
66
+ readonly DISABLED: "Disabled";
67
+ readonly ENABLED: "Enabled";
68
+ };
69
+ /**
70
+ * @public
71
+ */
72
+ export type MapFeatureMode = (typeof MapFeatureMode)[keyof typeof MapFeatureMode];
73
+ /**
74
+ * @public
75
+ * @enum
76
+ */
77
+ export declare const ScaleBarUnit: {
78
+ readonly KILOMETERS: "Kilometers";
79
+ readonly KILOMETERS_MILES: "KilometersMiles";
80
+ readonly MILES: "Miles";
81
+ readonly MILES_KILOMETERS: "MilesKilometers";
82
+ };
83
+ /**
84
+ * @public
85
+ */
86
+ export type ScaleBarUnit = (typeof ScaleBarUnit)[keyof typeof ScaleBarUnit];
87
+ /**
88
+ * @public
89
+ * @enum
90
+ */
91
+ export declare const StaticMapStyle: {
92
+ readonly SATELLITE: "Satellite";
93
+ readonly STANDARD: "Standard";
94
+ };
95
+ /**
96
+ * @public
97
+ */
98
+ export type StaticMapStyle = (typeof StaticMapStyle)[keyof typeof StaticMapStyle];
99
+ /**
100
+ * @public
101
+ * @enum
102
+ */
103
+ export declare const ValidationExceptionReason: {
104
+ /**
105
+ * The input cannot be parsed. For example a required JSON document, ARN identifier,
106
+ * date value, or numeric field cannot be parsed.
107
+ *
108
+ */
109
+ readonly CANNOT_PARSE: "CannotParse";
110
+ /**
111
+ * The input is present and parsable, but it is otherwise invalid. For example, a
112
+ * required numeric argument is outside the allowed range.
113
+ *
114
+ */
115
+ readonly FIELD_VALIDATION_FAILED: "FieldValidationFailed";
116
+ /**
117
+ * The required input is missing.
118
+ */
119
+ readonly MISSING: "Missing";
120
+ /**
121
+ * The input is invalid but no more specific reason is applicable.
122
+ */
123
+ readonly OTHER: "Other";
124
+ /**
125
+ * No such field is supported.
126
+ */
127
+ readonly UNKNOWN_FIELD: "UnknownField";
128
+ /**
129
+ * No such operation is supported.
130
+ */
131
+ readonly UNKNOWN_OPERATION: "UnknownOperation";
132
+ };
133
+ /**
134
+ * @public
135
+ */
136
+ export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
137
+ /**
138
+ * @public
139
+ * @enum
140
+ */
141
+ export declare const Terrain: {
142
+ readonly HILLSHADE: "Hillshade";
143
+ };
144
+ /**
145
+ * @public
146
+ */
147
+ export type Terrain = (typeof Terrain)[keyof typeof Terrain];
148
+ /**
149
+ * @public
150
+ * @enum
151
+ */
152
+ export declare const Traffic: {
153
+ readonly ALL: "All";
154
+ };
155
+ /**
156
+ * @public
157
+ */
158
+ export type Traffic = (typeof Traffic)[keyof typeof Traffic];
159
+ /**
160
+ * @public
161
+ * @enum
162
+ */
163
+ export declare const TravelMode: {
164
+ readonly TRANSIT: "Transit";
165
+ readonly TRUCK: "Truck";
166
+ };
167
+ /**
168
+ * @public
169
+ */
170
+ export type TravelMode = (typeof TravelMode)[keyof typeof TravelMode];
171
+ /**
172
+ * @public
173
+ * @enum
174
+ */
175
+ export declare const TileAdditionalFeature: {
176
+ /**
177
+ * Map elevation contour lines.
178
+ */
179
+ readonly CONTOUR_LINES: "ContourLines";
180
+ /**
181
+ * Map hillshading details for shading elevation changes.
182
+ */
183
+ readonly HILLSHADE: "Hillshade";
184
+ /**
185
+ * Map logistics details, including advanced pois and road networks.
186
+ */
187
+ readonly LOGISTICS: "Logistics";
188
+ /**
189
+ * Map transit details.
190
+ */
191
+ readonly TRANSIT: "Transit";
192
+ };
193
+ /**
194
+ * @public
195
+ */
196
+ export type TileAdditionalFeature = (typeof TileAdditionalFeature)[keyof typeof TileAdditionalFeature];
@@ -1,6 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { ValidationExceptionReason } from "./enums";
2
3
  import { GeoMapsServiceException as __BaseException } from "./GeoMapsServiceException";
3
- import { ValidationExceptionField, ValidationExceptionReason } from "./models_0";
4
+ import { ValidationExceptionField } from "./models_0";
4
5
  /**
5
6
  * <p>The request was denied because of insufficient access or permissions. Check with an administrator to verify your permissions.</p>
6
7
  * @public
@@ -1,26 +1,4 @@
1
- /**
2
- * @public
3
- * @enum
4
- */
5
- export declare const ColorScheme: {
6
- readonly DARK: "Dark";
7
- readonly LIGHT: "Light";
8
- };
9
- /**
10
- * @public
11
- */
12
- export type ColorScheme = (typeof ColorScheme)[keyof typeof ColorScheme];
13
- /**
14
- * @public
15
- * @enum
16
- */
17
- export declare const ContourDensity: {
18
- readonly MEDIUM: "Medium";
19
- };
20
- /**
21
- * @public
22
- */
23
- export type ContourDensity = (typeof ContourDensity)[keyof typeof ContourDensity];
1
+ import { ColorScheme, ContourDensity, LabelSize, MapFeatureMode, MapStyle, ScaleBarUnit, StaticMapStyle, Terrain, TileAdditionalFeature, Traffic, TravelMode, Variant } from "./enums";
24
2
  /**
25
3
  * @public
26
4
  */
@@ -61,31 +39,6 @@ export interface GetGlyphsResponse {
61
39
  */
62
40
  ETag?: string | undefined;
63
41
  }
64
- /**
65
- * @public
66
- * @enum
67
- */
68
- export declare const MapStyle: {
69
- readonly HYBRID: "Hybrid";
70
- readonly MONOCHROME: "Monochrome";
71
- readonly SATELLITE: "Satellite";
72
- readonly STANDARD: "Standard";
73
- };
74
- /**
75
- * @public
76
- */
77
- export type MapStyle = (typeof MapStyle)[keyof typeof MapStyle];
78
- /**
79
- * @public
80
- * @enum
81
- */
82
- export declare const Variant: {
83
- readonly DEFAULT: "Default";
84
- };
85
- /**
86
- * @public
87
- */
88
- export type Variant = (typeof Variant)[keyof typeof Variant];
89
42
  /**
90
43
  * @public
91
44
  */
@@ -136,56 +89,6 @@ export interface GetSpritesResponse {
136
89
  */
137
90
  ETag?: string | undefined;
138
91
  }
139
- /**
140
- * @public
141
- * @enum
142
- */
143
- export declare const LabelSize: {
144
- readonly LARGE: "Large";
145
- readonly SMALL: "Small";
146
- };
147
- /**
148
- * @public
149
- */
150
- export type LabelSize = (typeof LabelSize)[keyof typeof LabelSize];
151
- /**
152
- * @public
153
- * @enum
154
- */
155
- export declare const MapFeatureMode: {
156
- readonly DISABLED: "Disabled";
157
- readonly ENABLED: "Enabled";
158
- };
159
- /**
160
- * @public
161
- */
162
- export type MapFeatureMode = (typeof MapFeatureMode)[keyof typeof MapFeatureMode];
163
- /**
164
- * @public
165
- * @enum
166
- */
167
- export declare const ScaleBarUnit: {
168
- readonly KILOMETERS: "Kilometers";
169
- readonly KILOMETERS_MILES: "KilometersMiles";
170
- readonly MILES: "Miles";
171
- readonly MILES_KILOMETERS: "MilesKilometers";
172
- };
173
- /**
174
- * @public
175
- */
176
- export type ScaleBarUnit = (typeof ScaleBarUnit)[keyof typeof ScaleBarUnit];
177
- /**
178
- * @public
179
- * @enum
180
- */
181
- export declare const StaticMapStyle: {
182
- readonly SATELLITE: "Satellite";
183
- readonly STANDARD: "Standard";
184
- };
185
- /**
186
- * @public
187
- */
188
- export type StaticMapStyle = (typeof StaticMapStyle)[keyof typeof StaticMapStyle];
189
92
  /**
190
93
  * @public
191
94
  */
@@ -337,78 +240,6 @@ export interface ValidationExceptionField {
337
240
  */
338
241
  Message: string | undefined;
339
242
  }
340
- /**
341
- * @public
342
- * @enum
343
- */
344
- export declare const ValidationExceptionReason: {
345
- /**
346
- * The input cannot be parsed. For example a required JSON document, ARN identifier,
347
- * date value, or numeric field cannot be parsed.
348
- *
349
- */
350
- readonly CANNOT_PARSE: "CannotParse";
351
- /**
352
- * The input is present and parsable, but it is otherwise invalid. For example, a
353
- * required numeric argument is outside the allowed range.
354
- *
355
- */
356
- readonly FIELD_VALIDATION_FAILED: "FieldValidationFailed";
357
- /**
358
- * The required input is missing.
359
- */
360
- readonly MISSING: "Missing";
361
- /**
362
- * The input is invalid but no more specific reason is applicable.
363
- */
364
- readonly OTHER: "Other";
365
- /**
366
- * No such field is supported.
367
- */
368
- readonly UNKNOWN_FIELD: "UnknownField";
369
- /**
370
- * No such operation is supported.
371
- */
372
- readonly UNKNOWN_OPERATION: "UnknownOperation";
373
- };
374
- /**
375
- * @public
376
- */
377
- export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
378
- /**
379
- * @public
380
- * @enum
381
- */
382
- export declare const Terrain: {
383
- readonly HILLSHADE: "Hillshade";
384
- };
385
- /**
386
- * @public
387
- */
388
- export type Terrain = (typeof Terrain)[keyof typeof Terrain];
389
- /**
390
- * @public
391
- * @enum
392
- */
393
- export declare const Traffic: {
394
- readonly ALL: "All";
395
- };
396
- /**
397
- * @public
398
- */
399
- export type Traffic = (typeof Traffic)[keyof typeof Traffic];
400
- /**
401
- * @public
402
- * @enum
403
- */
404
- export declare const TravelMode: {
405
- readonly TRANSIT: "Transit";
406
- readonly TRUCK: "Truck";
407
- };
408
- /**
409
- * @public
410
- */
411
- export type TravelMode = (typeof TravelMode)[keyof typeof TravelMode];
412
243
  /**
413
244
  * @public
414
245
  */
@@ -479,32 +310,6 @@ export interface GetStyleDescriptorResponse {
479
310
  */
480
311
  ETag?: string | undefined;
481
312
  }
482
- /**
483
- * @public
484
- * @enum
485
- */
486
- export declare const TileAdditionalFeature: {
487
- /**
488
- * Map elevation contour lines.
489
- */
490
- readonly CONTOUR_LINES: "ContourLines";
491
- /**
492
- * Map hillshading details for shading elevation changes.
493
- */
494
- readonly HILLSHADE: "Hillshade";
495
- /**
496
- * Map logistics details, including advanced pois and road networks.
497
- */
498
- readonly LOGISTICS: "Logistics";
499
- /**
500
- * Map transit details.
501
- */
502
- readonly TRANSIT: "Transit";
503
- };
504
- /**
505
- * @public
506
- */
507
- export type TileAdditionalFeature = (typeof TileAdditionalFeature)[keyof typeof TileAdditionalFeature];
508
313
  /**
509
314
  * @public
510
315
  */
@@ -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 * from "./models/enums";
7
8
  export * from "./models/errors";
8
9
  export * from "./models/models_0";
9
10
  export { GeoMapsServiceException } from "./models/GeoMapsServiceException";
@@ -0,0 +1,76 @@
1
+ export declare const ColorScheme: {
2
+ readonly DARK: "Dark";
3
+ readonly LIGHT: "Light";
4
+ };
5
+ export type ColorScheme = (typeof ColorScheme)[keyof typeof ColorScheme];
6
+ export declare const ContourDensity: {
7
+ readonly MEDIUM: "Medium";
8
+ };
9
+ export type ContourDensity =
10
+ (typeof ContourDensity)[keyof typeof ContourDensity];
11
+ export declare const MapStyle: {
12
+ readonly HYBRID: "Hybrid";
13
+ readonly MONOCHROME: "Monochrome";
14
+ readonly SATELLITE: "Satellite";
15
+ readonly STANDARD: "Standard";
16
+ };
17
+ export type MapStyle = (typeof MapStyle)[keyof typeof MapStyle];
18
+ export declare const Variant: {
19
+ readonly DEFAULT: "Default";
20
+ };
21
+ export type Variant = (typeof Variant)[keyof typeof Variant];
22
+ export declare const LabelSize: {
23
+ readonly LARGE: "Large";
24
+ readonly SMALL: "Small";
25
+ };
26
+ export type LabelSize = (typeof LabelSize)[keyof typeof LabelSize];
27
+ export declare const MapFeatureMode: {
28
+ readonly DISABLED: "Disabled";
29
+ readonly ENABLED: "Enabled";
30
+ };
31
+ export type MapFeatureMode =
32
+ (typeof MapFeatureMode)[keyof typeof MapFeatureMode];
33
+ export declare const ScaleBarUnit: {
34
+ readonly KILOMETERS: "Kilometers";
35
+ readonly KILOMETERS_MILES: "KilometersMiles";
36
+ readonly MILES: "Miles";
37
+ readonly MILES_KILOMETERS: "MilesKilometers";
38
+ };
39
+ export type ScaleBarUnit = (typeof ScaleBarUnit)[keyof typeof ScaleBarUnit];
40
+ export declare const StaticMapStyle: {
41
+ readonly SATELLITE: "Satellite";
42
+ readonly STANDARD: "Standard";
43
+ };
44
+ export type StaticMapStyle =
45
+ (typeof StaticMapStyle)[keyof typeof StaticMapStyle];
46
+ export declare const ValidationExceptionReason: {
47
+ readonly CANNOT_PARSE: "CannotParse";
48
+ readonly FIELD_VALIDATION_FAILED: "FieldValidationFailed";
49
+ readonly MISSING: "Missing";
50
+ readonly OTHER: "Other";
51
+ readonly UNKNOWN_FIELD: "UnknownField";
52
+ readonly UNKNOWN_OPERATION: "UnknownOperation";
53
+ };
54
+ export type ValidationExceptionReason =
55
+ (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
56
+ export declare const Terrain: {
57
+ readonly HILLSHADE: "Hillshade";
58
+ };
59
+ export type Terrain = (typeof Terrain)[keyof typeof Terrain];
60
+ export declare const Traffic: {
61
+ readonly ALL: "All";
62
+ };
63
+ export type Traffic = (typeof Traffic)[keyof typeof Traffic];
64
+ export declare const TravelMode: {
65
+ readonly TRANSIT: "Transit";
66
+ readonly TRUCK: "Truck";
67
+ };
68
+ export type TravelMode = (typeof TravelMode)[keyof typeof TravelMode];
69
+ export declare const TileAdditionalFeature: {
70
+ readonly CONTOUR_LINES: "ContourLines";
71
+ readonly HILLSHADE: "Hillshade";
72
+ readonly LOGISTICS: "Logistics";
73
+ readonly TRANSIT: "Transit";
74
+ };
75
+ export type TileAdditionalFeature =
76
+ (typeof TileAdditionalFeature)[keyof typeof TileAdditionalFeature];
@@ -1,9 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { ValidationExceptionReason } from "./enums";
2
3
  import { GeoMapsServiceException as __BaseException } from "./GeoMapsServiceException";
3
- import {
4
- ValidationExceptionField,
5
- ValidationExceptionReason,
6
- } from "./models_0";
4
+ import { ValidationExceptionField } from "./models_0";
7
5
  export declare class AccessDeniedException extends __BaseException {
8
6
  readonly name: "AccessDeniedException";
9
7
  readonly $fault: "client";
@@ -1,13 +1,17 @@
1
- export declare const ColorScheme: {
2
- readonly DARK: "Dark";
3
- readonly LIGHT: "Light";
4
- };
5
- export type ColorScheme = (typeof ColorScheme)[keyof typeof ColorScheme];
6
- export declare const ContourDensity: {
7
- readonly MEDIUM: "Medium";
8
- };
9
- export type ContourDensity =
10
- (typeof ContourDensity)[keyof typeof ContourDensity];
1
+ import {
2
+ ColorScheme,
3
+ ContourDensity,
4
+ LabelSize,
5
+ MapFeatureMode,
6
+ MapStyle,
7
+ ScaleBarUnit,
8
+ StaticMapStyle,
9
+ Terrain,
10
+ TileAdditionalFeature,
11
+ Traffic,
12
+ TravelMode,
13
+ Variant,
14
+ } from "./enums";
11
15
  export interface GetGlyphsRequest {
12
16
  FontStack: string | undefined;
13
17
  FontUnicodeRange: string | undefined;
@@ -18,17 +22,6 @@ export interface GetGlyphsResponse {
18
22
  CacheControl?: string | undefined;
19
23
  ETag?: string | undefined;
20
24
  }
21
- export declare const MapStyle: {
22
- readonly HYBRID: "Hybrid";
23
- readonly MONOCHROME: "Monochrome";
24
- readonly SATELLITE: "Satellite";
25
- readonly STANDARD: "Standard";
26
- };
27
- export type MapStyle = (typeof MapStyle)[keyof typeof MapStyle];
28
- export declare const Variant: {
29
- readonly DEFAULT: "Default";
30
- };
31
- export type Variant = (typeof Variant)[keyof typeof Variant];
32
25
  export interface GetSpritesRequest {
33
26
  FileName: string | undefined;
34
27
  Style: MapStyle | undefined;
@@ -41,30 +34,6 @@ export interface GetSpritesResponse {
41
34
  CacheControl?: string | undefined;
42
35
  ETag?: string | undefined;
43
36
  }
44
- export declare const LabelSize: {
45
- readonly LARGE: "Large";
46
- readonly SMALL: "Small";
47
- };
48
- export type LabelSize = (typeof LabelSize)[keyof typeof LabelSize];
49
- export declare const MapFeatureMode: {
50
- readonly DISABLED: "Disabled";
51
- readonly ENABLED: "Enabled";
52
- };
53
- export type MapFeatureMode =
54
- (typeof MapFeatureMode)[keyof typeof MapFeatureMode];
55
- export declare const ScaleBarUnit: {
56
- readonly KILOMETERS: "Kilometers";
57
- readonly KILOMETERS_MILES: "KilometersMiles";
58
- readonly MILES: "Miles";
59
- readonly MILES_KILOMETERS: "MilesKilometers";
60
- };
61
- export type ScaleBarUnit = (typeof ScaleBarUnit)[keyof typeof ScaleBarUnit];
62
- export declare const StaticMapStyle: {
63
- readonly SATELLITE: "Satellite";
64
- readonly STANDARD: "Standard";
65
- };
66
- export type StaticMapStyle =
67
- (typeof StaticMapStyle)[keyof typeof StaticMapStyle];
68
37
  export interface GetStaticMapRequest {
69
38
  BoundingBox?: string | undefined;
70
39
  BoundedPositions?: string | undefined;
@@ -98,29 +67,6 @@ export interface ValidationExceptionField {
98
67
  Name: string | undefined;
99
68
  Message: string | undefined;
100
69
  }
101
- export declare const ValidationExceptionReason: {
102
- readonly CANNOT_PARSE: "CannotParse";
103
- readonly FIELD_VALIDATION_FAILED: "FieldValidationFailed";
104
- readonly MISSING: "Missing";
105
- readonly OTHER: "Other";
106
- readonly UNKNOWN_FIELD: "UnknownField";
107
- readonly UNKNOWN_OPERATION: "UnknownOperation";
108
- };
109
- export type ValidationExceptionReason =
110
- (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
111
- export declare const Terrain: {
112
- readonly HILLSHADE: "Hillshade";
113
- };
114
- export type Terrain = (typeof Terrain)[keyof typeof Terrain];
115
- export declare const Traffic: {
116
- readonly ALL: "All";
117
- };
118
- export type Traffic = (typeof Traffic)[keyof typeof Traffic];
119
- export declare const TravelMode: {
120
- readonly TRANSIT: "Transit";
121
- readonly TRUCK: "Truck";
122
- };
123
- export type TravelMode = (typeof TravelMode)[keyof typeof TravelMode];
124
70
  export interface GetStyleDescriptorRequest {
125
71
  Style: MapStyle | undefined;
126
72
  ColorScheme?: ColorScheme | undefined;
@@ -137,14 +83,6 @@ export interface GetStyleDescriptorResponse {
137
83
  CacheControl?: string | undefined;
138
84
  ETag?: string | undefined;
139
85
  }
140
- export declare const TileAdditionalFeature: {
141
- readonly CONTOUR_LINES: "ContourLines";
142
- readonly HILLSHADE: "Hillshade";
143
- readonly LOGISTICS: "Logistics";
144
- readonly TRANSIT: "Transit";
145
- };
146
- export type TileAdditionalFeature =
147
- (typeof TileAdditionalFeature)[keyof typeof TileAdditionalFeature];
148
86
  export interface GetTileRequest {
149
87
  AdditionalFeatures?: TileAdditionalFeature[] | undefined;
150
88
  Tileset: string | undefined;
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.936.0",
4
+ "version": "3.940.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-geo-maps",
@@ -20,17 +20,17 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.936.0",
24
- "@aws-sdk/credential-provider-node": "3.936.0",
23
+ "@aws-sdk/core": "3.940.0",
24
+ "@aws-sdk/credential-provider-node": "3.940.0",
25
25
  "@aws-sdk/middleware-host-header": "3.936.0",
26
26
  "@aws-sdk/middleware-logger": "3.936.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.936.0",
28
- "@aws-sdk/middleware-user-agent": "3.936.0",
28
+ "@aws-sdk/middleware-user-agent": "3.940.0",
29
29
  "@aws-sdk/region-config-resolver": "3.936.0",
30
30
  "@aws-sdk/types": "3.936.0",
31
31
  "@aws-sdk/util-endpoints": "3.936.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.936.0",
33
- "@aws-sdk/util-user-agent-node": "3.936.0",
33
+ "@aws-sdk/util-user-agent-node": "3.940.0",
34
34
  "@smithy/config-resolver": "^4.4.3",
35
35
  "@smithy/core": "^3.18.5",
36
36
  "@smithy/fetch-http-handler": "^5.3.6",