@aws/amazon-location-client 1.1.0 → 1.2.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/README.md +5 -5
- package/dist/amazonLocationClient.js +5971 -568
- package/dist/cjs/amazonLocationClient.cjs +12 -12
- package/package.json +3 -3
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
var clientLocation = require('@aws-sdk/client-location');
|
|
8
8
|
var credentialProviders = require('@aws-sdk/credential-providers');
|
|
9
9
|
var amazonLocationUtilitiesAuthHelper = require('@aws/amazon-location-utilities-auth-helper');
|
|
10
|
-
var
|
|
11
|
-
var
|
|
12
|
-
var
|
|
10
|
+
var clientGeoMaps = require('@aws-sdk/client-geo-maps');
|
|
11
|
+
var clientGeoPlaces = require('@aws-sdk/client-geo-places');
|
|
12
|
+
var clientGeoRoutes = require('@aws-sdk/client-geo-routes');
|
|
13
13
|
|
|
14
14
|
function _interopNamespaceDefault(e) {
|
|
15
15
|
var n = Object.create(null);
|
|
@@ -28,9 +28,9 @@ function _interopNamespaceDefault(e) {
|
|
|
28
28
|
return Object.freeze(n);
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
-
var
|
|
32
|
-
var
|
|
33
|
-
var
|
|
31
|
+
var clientGeoMaps__namespace = /*#__PURE__*/_interopNamespaceDefault(clientGeoMaps);
|
|
32
|
+
var clientGeoPlaces__namespace = /*#__PURE__*/_interopNamespaceDefault(clientGeoPlaces);
|
|
33
|
+
var clientGeoRoutes__namespace = /*#__PURE__*/_interopNamespaceDefault(clientGeoRoutes);
|
|
34
34
|
|
|
35
35
|
|
|
36
36
|
|
|
@@ -44,19 +44,19 @@ Object.defineProperty(exports, "withIdentityPoolId", {
|
|
|
44
44
|
});
|
|
45
45
|
Object.defineProperty(exports, "GeoMapsClient", {
|
|
46
46
|
enumerable: true,
|
|
47
|
-
get: function () { return
|
|
47
|
+
get: function () { return clientGeoMaps.GeoMapsClient; }
|
|
48
48
|
});
|
|
49
|
-
exports.maps =
|
|
49
|
+
exports.maps = clientGeoMaps__namespace;
|
|
50
50
|
Object.defineProperty(exports, "GeoPlacesClient", {
|
|
51
51
|
enumerable: true,
|
|
52
|
-
get: function () { return
|
|
52
|
+
get: function () { return clientGeoPlaces.GeoPlacesClient; }
|
|
53
53
|
});
|
|
54
|
-
exports.places =
|
|
54
|
+
exports.places = clientGeoPlaces__namespace;
|
|
55
55
|
Object.defineProperty(exports, "GeoRoutesClient", {
|
|
56
56
|
enumerable: true,
|
|
57
|
-
get: function () { return
|
|
57
|
+
get: function () { return clientGeoRoutes.GeoRoutesClient; }
|
|
58
58
|
});
|
|
59
|
-
exports.routes =
|
|
59
|
+
exports.routes = clientGeoRoutes__namespace;
|
|
60
60
|
Object.keys(clientLocation).forEach(function (k) {
|
|
61
61
|
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
62
62
|
enumerable: true,
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@aws/amazon-location-client",
|
|
3
3
|
"description": "Amazon Location Client Bundle",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.2.0",
|
|
6
6
|
"keywords": [],
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "Amazon Web Services",
|
|
@@ -48,11 +48,11 @@
|
|
|
48
48
|
"lint-staged": {},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@aws-sdk/client-location": "^3.682.0",
|
|
51
|
-
"@aws-sdk/credential-providers": "^3.
|
|
51
|
+
"@aws-sdk/credential-providers": "^3.685.0",
|
|
52
52
|
"@aws-sdk/client-geo-maps": "^3.683.0",
|
|
53
53
|
"@aws-sdk/client-geo-places": "^3.683.0",
|
|
54
54
|
"@aws-sdk/client-geo-routes": "^3.683.0",
|
|
55
|
-
"@aws/amazon-location-utilities-auth-helper": "^1.
|
|
55
|
+
"@aws/amazon-location-utilities-auth-helper": "^1.2.0"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@rollup/plugin-commonjs": "^28.0.1",
|